Autoreformat all the things
|
@ -1,5 +1,5 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="374px" height="320px" viewBox="0 0 374 320" version="1.1">
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="374px" height="320px" viewBox="0 0 374 320" version="1.1">
|
||||
<g id="surface1">
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;" d="M 0 319.828125 L 0 0.171875 L 374 0.171875 L 374 319.828125 Z M 0 319.828125 "/>
|
||||
<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:4;" d="M 242.249286 -557.997672 L 188.252605 -557.997672 L 188.252605 -522.003338 L 242.249286 -522.003338 Z M 242.249286 -557.997672 " transform="matrix(0.563041,0,0,0.564759,2.252164,317.56781)"/>
|
||||
|
|
Before Width: | Height: | Size: 306 KiB After Width: | Height: | Size: 305 KiB |
|
@ -1,5 +1,5 @@
|
|||
import {Tag} from "../../Tags/Tag";
|
||||
import OsmChangeAction, {OsmCreateAction} from "./OsmChangeAction";
|
||||
import {OsmCreateAction} from "./OsmChangeAction";
|
||||
import {Changes} from "../Changes";
|
||||
import {ChangeDescription} from "./ChangeDescription";
|
||||
import {And} from "../../Tags/And";
|
||||
|
|
|
@ -8,7 +8,6 @@ import {Utils} from "../../Utils";
|
|||
import Locale from "../../UI/i18n/Locale";
|
||||
import ElementsState from "./ElementsState";
|
||||
import SelectedElementTagsUpdater from "../Actors/SelectedElementTagsUpdater";
|
||||
import {log} from "util";
|
||||
|
||||
/**
|
||||
* The part of the state which keeps track of user-related stuff, e.g. the OSM-connection,
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
import {UIEventSource} from "../UIEventSource";
|
||||
import * as idb from "idb-keyval"
|
||||
import ScriptUtils from "../../scripts/ScriptUtils";
|
||||
import {Utils} from "../../Utils";
|
||||
|
||||
/**
|
||||
* UIEventsource-wrapper around indexedDB key-value
|
||||
*/
|
||||
|
|
|
@ -3,7 +3,6 @@ import LayerConfig from "../LayerConfig";
|
|||
import {LayerConfigJson} from "../Json/LayerConfigJson";
|
||||
import Translations from "../../../UI/i18n/Translations";
|
||||
import {TagsFilter} from "../../../Logic/Tags/TagsFilter";
|
||||
import {Tag} from "../../../Logic/Tags/Tag";
|
||||
import {And} from "../../../Logic/Tags/And";
|
||||
|
||||
export default class CreateNoteImportLayer extends Conversion<LayerConfig, LayerConfigJson> {
|
||||
|
|
|
@ -1,6 +1,3 @@
|
|||
import {control} from "leaflet";
|
||||
|
||||
|
||||
export interface TileRange {
|
||||
xstart: number,
|
||||
ystart: number,
|
||||
|
|
|
@ -10,7 +10,6 @@ import IndexText from "./BigComponents/IndexText";
|
|||
import FeaturedMessage from "./BigComponents/FeaturedMessage";
|
||||
import Toggle from "./Input/Toggle";
|
||||
import {SubtleButton} from "./Base/SubtleButton";
|
||||
import Title from "./Base/Title";
|
||||
|
||||
export default class AllThemesGui {
|
||||
constructor() {
|
||||
|
|
|
@ -18,7 +18,7 @@ export default class Combine extends BaseUIElement {
|
|||
|
||||
AsMarkdown(): string {
|
||||
let sep = " ";
|
||||
if(this.HasClass("flex-col")){
|
||||
if (this.HasClass("flex-col")) {
|
||||
sep = "\n\n"
|
||||
}
|
||||
return this.uiElements.map(el => el.AsMarkdown()).join(sep);
|
||||
|
@ -56,11 +56,10 @@ export default class Combine extends BaseUIElement {
|
|||
|
||||
return el;
|
||||
}
|
||||
|
||||
public getElements(): BaseUIElement[]{
|
||||
|
||||
public getElements(): BaseUIElement[] {
|
||||
return this.uiElements
|
||||
}
|
||||
|
||||
|
||||
|
||||
}
|
|
@ -21,6 +21,6 @@ export class FixedUiElement extends BaseUIElement {
|
|||
e.innerHTML = this.content
|
||||
return e;
|
||||
}
|
||||
|
||||
|
||||
|
||||
}
|
|
@ -53,17 +53,17 @@ export default class Img extends BaseUIElement {
|
|||
}
|
||||
return el;
|
||||
}
|
||||
|
||||
|
||||
AsMarkdown(): string {
|
||||
if(this._rawSvg === true){
|
||||
if (this._rawSvg === true) {
|
||||
console.warn("Converting raw svgs to markdown is not supported");
|
||||
return undefined
|
||||
}
|
||||
let src = this._src
|
||||
if(this._src.startsWith("./")){
|
||||
src = "https://mapcomplete.osm.be/"+src
|
||||
if (this._src.startsWith("./")) {
|
||||
src = "https://mapcomplete.osm.be/" + src
|
||||
}
|
||||
return "![]("+src+")";
|
||||
return "![](" + src + ")";
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -13,7 +13,7 @@ export default class Link extends BaseUIElement {
|
|||
this._embeddedShow = Translations.W(embeddedShow);
|
||||
this._href = href;
|
||||
this._newTab = newTab;
|
||||
if(this._embeddedShow === undefined){
|
||||
if (this._embeddedShow === undefined) {
|
||||
throw "Error: got a link where embeddedShow is undefined"
|
||||
}
|
||||
|
||||
|
@ -43,16 +43,16 @@ export default class Link extends BaseUIElement {
|
|||
el.appendChild(embeddedShow)
|
||||
return el;
|
||||
}
|
||||
|
||||
public static OsmWiki(key: string, value?: string, hideKey = false){
|
||||
if(value !== undefined){
|
||||
|
||||
public static OsmWiki(key: string, value?: string, hideKey = false) {
|
||||
if (value !== undefined) {
|
||||
let k = "";
|
||||
if(!hideKey){
|
||||
k = key+"="
|
||||
if (!hideKey) {
|
||||
k = key + "="
|
||||
}
|
||||
return new Link(k+value,`https://wiki.openstreetmap.org/wiki/Tag:${key}%3D${value}`)
|
||||
return new Link(k + value, `https://wiki.openstreetmap.org/wiki/Tag:${key}%3D${value}`)
|
||||
}
|
||||
return new Link(key, "https://wiki.openstreetmap.org/wiki/Key:" + key)
|
||||
return new Link(key, "https://wiki.openstreetmap.org/wiki/Key:" + key)
|
||||
}
|
||||
|
||||
}
|
|
@ -37,8 +37,8 @@ export default class Minimap {
|
|||
public static createMiniMap: (options: MinimapOptions) => (BaseUIElement & MinimapObj) = (_) => {
|
||||
throw "CreateMinimap hasn't been initialized yet. Please call MinimapImplementation.initialize()"
|
||||
}
|
||||
|
||||
private constructor() {
|
||||
|
||||
private constructor() {
|
||||
}
|
||||
|
||||
|
||||
|
|
|
@ -25,7 +25,7 @@ export default class MinimapImplementation extends BaseUIElement implements Mini
|
|||
private readonly _attribution: BaseUIElement | boolean;
|
||||
private readonly _bounds: UIEventSource<BBox> | undefined;
|
||||
private readonly _addLayerControl: boolean;
|
||||
private readonly _options : MinimapOptions;
|
||||
private readonly _options: MinimapOptions;
|
||||
|
||||
private constructor(options: MinimapOptions) {
|
||||
super()
|
||||
|
@ -48,7 +48,7 @@ export default class MinimapImplementation extends BaseUIElement implements Mini
|
|||
public static initialize() {
|
||||
Minimap.createMiniMap = options => new MinimapImplementation(options)
|
||||
}
|
||||
|
||||
|
||||
public installBounds(factor: number | BBox, showRange?: boolean) {
|
||||
this.leafletMap.addCallbackD(leaflet => {
|
||||
let bounds;
|
||||
|
@ -105,7 +105,7 @@ export default class MinimapImplementation extends BaseUIElement implements Mini
|
|||
}
|
||||
})
|
||||
}
|
||||
|
||||
|
||||
Destroy() {
|
||||
super.Destroy();
|
||||
console.warn("Decomissioning minimap", this._id)
|
||||
|
@ -134,10 +134,10 @@ export default class MinimapImplementation extends BaseUIElement implements Mini
|
|||
const self = this;
|
||||
// @ts-ignore
|
||||
const resizeObserver = new ResizeObserver(_ => {
|
||||
if(wrapper.clientHeight === 0 || wrapper.clientWidth === 0){
|
||||
if (wrapper.clientHeight === 0 || wrapper.clientWidth === 0) {
|
||||
return;
|
||||
}
|
||||
if(wrapper.offsetParent === null || window.getComputedStyle(wrapper).display === 'none'){
|
||||
if (wrapper.offsetParent === null || window.getComputedStyle(wrapper).display === 'none') {
|
||||
// Not visible
|
||||
return;
|
||||
}
|
||||
|
|
|
@ -76,6 +76,7 @@ export default class ScrollableFullScreen extends UIElement {
|
|||
ScrollableFullScreen._currentlyOpen = this;
|
||||
fs.classList.remove("hidden")
|
||||
}
|
||||
|
||||
private BuildComponent(title: BaseUIElement, content: BaseUIElement, isShown: UIEventSource<boolean>) {
|
||||
const returnToTheMap =
|
||||
new Combine([
|
||||
|
|
|
@ -21,7 +21,7 @@ export class SubtleButton extends UIElement {
|
|||
}
|
||||
|
||||
protected InnerRender(): string | BaseUIElement {
|
||||
const classes= "block flex p-3 my-2 bg-blue-100 rounded-lg hover:shadow-xl hover:bg-blue-200 link-no-underline";
|
||||
const classes = "block flex p-3 my-2 bg-blue-100 rounded-lg hover:shadow-xl hover:bg-blue-200 link-no-underline";
|
||||
const message = Translations.W(this.message);
|
||||
let img;
|
||||
if ((this.imageUrl ?? "") === "") {
|
||||
|
|
|
@ -10,8 +10,8 @@ import {Utils} from "../../Utils";
|
|||
|
||||
export default class TableOfContents extends Combine {
|
||||
|
||||
private readonly titles: Title[]
|
||||
|
||||
private readonly titles: Title[]
|
||||
|
||||
constructor(elements: Combine | Title[], options?: {
|
||||
noTopLevel: false | boolean,
|
||||
maxDepth?: number
|
||||
|
@ -28,9 +28,9 @@ private readonly titles: Title[]
|
|||
let content: BaseUIElement
|
||||
if (title.title instanceof Translation) {
|
||||
content = title.title.Clone()
|
||||
}else if(title.title instanceof FixedUiElement){
|
||||
} else if (title.title instanceof FixedUiElement) {
|
||||
content = title.title
|
||||
}else if(Utils.runningFromConsole){
|
||||
} else if (Utils.runningFromConsole) {
|
||||
content = new FixedUiElement(title.AsMarkdown())
|
||||
} else {
|
||||
content = new FixedUiElement(title.title.ConstructElement().innerText)
|
||||
|
@ -48,12 +48,12 @@ private readonly titles: Title[]
|
|||
els.push({level: title.level, content: vis})
|
||||
|
||||
}
|
||||
const minLevel = Math.min(...els.map(e => e.level))
|
||||
const minLevel = Math.min(...els.map(e => e.level))
|
||||
if (options?.noTopLevel) {
|
||||
els = els.filter(e => e.level !== minLevel )
|
||||
els = els.filter(e => e.level !== minLevel)
|
||||
}
|
||||
|
||||
if(options?.maxDepth){
|
||||
|
||||
if (options?.maxDepth) {
|
||||
els = els.filter(e => e.level <= (options.maxDepth + minLevel))
|
||||
}
|
||||
|
||||
|
@ -63,18 +63,18 @@ private readonly titles: Title[]
|
|||
this.titles = titles;
|
||||
}
|
||||
|
||||
private static getTitles(elements: BaseUIElement[]): Title[]{
|
||||
private static getTitles(elements: BaseUIElement[]): Title[] {
|
||||
const titles = []
|
||||
for (const uiElement of elements){
|
||||
if(uiElement instanceof Combine){
|
||||
for (const uiElement of elements) {
|
||||
if (uiElement instanceof Combine) {
|
||||
titles.push(...TableOfContents.getTitles(uiElement.getElements()))
|
||||
}else if(uiElement instanceof Title){
|
||||
} else if (uiElement instanceof Title) {
|
||||
titles.push(uiElement)
|
||||
}
|
||||
}
|
||||
return titles
|
||||
}
|
||||
|
||||
|
||||
private static mergeLevel(elements: { level: number, content: BaseUIElement }[]): BaseUIElement[] {
|
||||
const maxLevel = Math.max(...elements.map(e => e.level))
|
||||
const minLevel = Math.min(...elements.map(e => e.level))
|
||||
|
@ -108,16 +108,16 @@ private readonly titles: Title[]
|
|||
}
|
||||
|
||||
AsMarkdown(): string {
|
||||
const depthIcons = ["1."," -"," +"," *"]
|
||||
const depthIcons = ["1.", " -", " +", " *"]
|
||||
const lines = ["## Table of contents\n"];
|
||||
const minLevel = Math.min(...this.titles.map(t => t.level))
|
||||
for (const title of this.titles) {
|
||||
const prefix = depthIcons[title.level - minLevel] ?? " ~"
|
||||
const text = title.title.AsMarkdown().replace("\n","")
|
||||
const text = title.title.AsMarkdown().replace("\n", "")
|
||||
const link = title.id
|
||||
lines.push(prefix + " ["+text+"](#"+link+")")
|
||||
lines.push(prefix + " [" + text + "](#" + link + ")")
|
||||
}
|
||||
|
||||
return lines.join("\n")+"\n\n"
|
||||
|
||||
return lines.join("\n") + "\n\n"
|
||||
}
|
||||
}
|
|
@ -5,13 +5,13 @@ import {Utils} from "../../Utils";
|
|||
export default class Title extends BaseUIElement {
|
||||
public readonly title: BaseUIElement;
|
||||
public readonly level: number;
|
||||
public readonly id : string
|
||||
|
||||
private static readonly defaultClassesPerLevel = ["", "text-3xl font-bold","text-2xl font-bold","text-xl font-bold", "text-lg font-bold"]
|
||||
public readonly id: string
|
||||
|
||||
private static readonly defaultClassesPerLevel = ["", "text-3xl font-bold", "text-2xl font-bold", "text-xl font-bold", "text-lg font-bold"]
|
||||
|
||||
constructor(embedded: string | BaseUIElement, level: number = 3) {
|
||||
super()
|
||||
if(embedded === undefined){
|
||||
if (embedded === undefined) {
|
||||
throw "A title should have some content. Undefined is not allowed"
|
||||
}
|
||||
if (typeof embedded === "string") {
|
||||
|
@ -20,20 +20,20 @@ export default class Title extends BaseUIElement {
|
|||
this.title = embedded
|
||||
}
|
||||
this.level = level;
|
||||
|
||||
let innerText : string = undefined;
|
||||
if(typeof embedded === "string" ) {
|
||||
|
||||
let innerText: string = undefined;
|
||||
if (typeof embedded === "string") {
|
||||
innerText = embedded
|
||||
}else if(embedded instanceof FixedUiElement){
|
||||
} else if (embedded instanceof FixedUiElement) {
|
||||
innerText = embedded.content
|
||||
}else{
|
||||
if(Utils.runningFromConsole){
|
||||
console.log("Not constructing an anchor for title with embedded content of "+embedded)
|
||||
}else{
|
||||
} else {
|
||||
if (Utils.runningFromConsole) {
|
||||
console.log("Not constructing an anchor for title with embedded content of " + embedded)
|
||||
} else {
|
||||
innerText = embedded.ConstructElement()?.innerText
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
this.id = innerText?.replace(/ /g, '-')
|
||||
?.replace(/[?#.;:/]/, "")
|
||||
?.toLowerCase() ?? ""
|
||||
|
|
|
@ -15,7 +15,7 @@ export class Accordeon extends Combine {
|
|||
}
|
||||
}))
|
||||
}
|
||||
|
||||
|
||||
super(toggles);
|
||||
}
|
||||
|
||||
|
@ -33,24 +33,24 @@ export default class Toggleable extends Combine {
|
|||
this.onClick(() => self.isVisible.setData(!self.isVisible.data))
|
||||
const contentElement = content.ConstructElement()
|
||||
|
||||
if(title instanceof Title){
|
||||
if (title instanceof Title) {
|
||||
Hash.hash.addCallbackAndRun(h => {
|
||||
if(h === title.id){
|
||||
if (h === title.id) {
|
||||
self.isVisible.setData(true)
|
||||
content.RemoveClass("border-gray-300")
|
||||
content.SetClass("border-red-300")
|
||||
}else{
|
||||
} else {
|
||||
content.SetClass("border-gray-300")
|
||||
content.RemoveClass("border-red-300")
|
||||
}
|
||||
})
|
||||
this.isVisible.addCallbackAndRun(isVis => {
|
||||
if(isVis){
|
||||
if (isVis) {
|
||||
Hash.hash.setData(title.id)
|
||||
}
|
||||
})
|
||||
}
|
||||
|
||||
|
||||
this.isVisible.addCallbackAndRun(isVisible => {
|
||||
if (isVisible) {
|
||||
contentElement.style.maxHeight = "100vh"
|
||||
|
|
|
@ -9,7 +9,7 @@ export class VariableUiElement extends BaseUIElement {
|
|||
super();
|
||||
this._contents = contents;
|
||||
}
|
||||
|
||||
|
||||
Destroy() {
|
||||
super.Destroy();
|
||||
this.isDestroyed = true;
|
||||
|
@ -19,7 +19,7 @@ export class VariableUiElement extends BaseUIElement {
|
|||
const el = document.createElement("span");
|
||||
const self = this;
|
||||
this._contents.addCallbackAndRun((contents) => {
|
||||
if(self.isDestroyed){
|
||||
if (self.isDestroyed) {
|
||||
return true;
|
||||
}
|
||||
while (el.firstChild) {
|
||||
|
@ -47,13 +47,13 @@ export class VariableUiElement extends BaseUIElement {
|
|||
});
|
||||
return el;
|
||||
}
|
||||
|
||||
|
||||
AsMarkdown(): string {
|
||||
const d = this._contents.data;
|
||||
if(typeof d === "string"){
|
||||
if (typeof d === "string") {
|
||||
return d;
|
||||
}
|
||||
if(d instanceof BaseUIElement){
|
||||
if (d instanceof BaseUIElement) {
|
||||
return d.AsMarkdown()
|
||||
}
|
||||
return new Combine(<BaseUIElement[]>d).AsMarkdown()
|
||||
|
|
|
@ -4,8 +4,6 @@ import MapControlButton from "../MapControlButton";
|
|||
import GeoLocationHandler from "../../Logic/Actors/GeoLocationHandler";
|
||||
import Svg from "../../Svg";
|
||||
import MapState from "../../Logic/State/MapState";
|
||||
import ShowDataLayer from "../ShowDataLayer/ShowDataLayer";
|
||||
import AllKnownLayers from "../../Customizations/AllKnownLayers";
|
||||
|
||||
export default class RightControls extends Combine {
|
||||
|
||||
|
|
|
@ -16,6 +16,7 @@ import ShowDataLayer from "../ShowDataLayer/ShowDataLayer";
|
|||
import BaseUIElement from "../BaseUIElement";
|
||||
import Toggle from "./Toggle";
|
||||
import * as matchpoint from "../../assets/layers/matchpoint/matchpoint.json"
|
||||
|
||||
export default class LocationInput extends InputElement<Loc> implements MinimapObj {
|
||||
|
||||
private static readonly matchLayer = new LayerConfig(matchpoint, "LocationInput.matchpoint", true)
|
||||
|
|
|
@ -6,7 +6,6 @@ import {FixedUiElement} from "../Base/FixedUiElement";
|
|||
import Translations from "../i18n/Translations";
|
||||
import {Utils} from "../../Utils";
|
||||
import Img from "../Base/Img";
|
||||
import {ImageCarousel} from "../Image/ImageCarousel";
|
||||
import {SlideShow} from "../Image/SlideShow";
|
||||
import {UIEventSource} from "../../Logic/UIEventSource";
|
||||
import {OsmConnection} from "../../Logic/Osm/OsmConnection";
|
||||
|
|
|
@ -17,6 +17,7 @@ import ShowDataMultiLayer from "../ShowDataLayer/ShowDataMultiLayer";
|
|||
import LayerConfig from "../../Models/ThemeConfig/LayerConfig";
|
||||
import {BBox} from "../../Logic/BBox";
|
||||
import * as split_point from "../../assets/layers/split_point/split_point.json"
|
||||
|
||||
export default class SplitRoadWizard extends Toggle {
|
||||
// @ts-ignore
|
||||
private static splitLayerStyling = new LayerConfig(split_point, "(BUILTIN) SplitRoadWizard.ts", true)
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="374px" height="192px" viewBox="0 0 374 192" version="1.1">
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="374px" height="192px" viewBox="0 0 374 192" version="1.1">
|
||||
<g id="surface1">
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(28.627452%,35.294119%,67.843139%);fill-opacity:1;" d="M 30.789062 0 L 343.210938 0 C 360.152344 0 373.792969 13.683594 373.792969 30.683594 L 373.792969 161.316406 C 373.792969 178.316406 360.152344 192 343.210938 192 L 30.789062 192 C 13.847656 192 0.210938 178.316406 0.210938 161.316406 L 0.210938 30.683594 C 0.210938 13.683594 13.847656 0 30.789062 0 Z M 30.789062 0 "/>
|
||||
<path style="fill:none;stroke-width:5.0152;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:4;" d="M 8.748 22.773565 L 8.748 65.005769 C 15.786133 65.005769 22.824266 72.045066 22.824266 79.084363 L 148.642328 79.084363 C 148.642328 72.045066 155.68046 65.005769 162.720387 65.005769 L 162.720387 22.773565 C 155.68046 22.773565 148.642328 15.734268 148.642328 8.694971 L 22.824266 8.694971 C 22.824266 15.734268 15.786133 22.773565 8.748 22.773565 Z M 8.748 22.773565 " transform="matrix(2.177313,0,0,2.184722,0.210677,0.000000000000015502)"/>
|
||||
|
|
Before Width: | Height: | Size: 1.2 KiB After Width: | Height: | Size: 1.2 KiB |
|
@ -1,5 +1,5 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="375px" height="375px" viewBox="0 0 375 375" version="1.1">
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="375px" height="375px" viewBox="0 0 375 375" version="1.1">
|
||||
<g id="surface1">
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(32.156864%,60.392159%,86.666667%);fill-opacity:1;" d="M 375 187.5 C 375 291.054688 291.054688 375 187.5 375 C 83.945312 375 0 291.054688 0 187.5 C 0 83.945312 83.945312 0 187.5 0 C 291.054688 0 375 83.945312 375 187.5 "/>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(40.000001%,40.000001%,40.000001%);fill-opacity:1;" d="M 93.726562 93.984375 L 93.726562 349.667969 C 108.414062 358.132812 124.183594 364.566406 140.601562 368.796875 L 140.601562 93.980469 Z M 93.726562 93.984375 "/>
|
||||
|
|
Before Width: | Height: | Size: 3.4 KiB After Width: | Height: | Size: 3.4 KiB |
|
@ -1,5 +1,5 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="375px" height="375px" viewBox="0 0 375 375" version="1.1">
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="375px" height="375px" viewBox="0 0 375 375" version="1.1">
|
||||
<g id="surface1">
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60.784316%,74.509805%,33.333334%);fill-opacity:1;" d="M 375 187.5 C 375 291.054688 291.054688 375 187.5 375 C 83.949219 375 0 291.054688 0 187.5 C 0 83.949219 83.949219 0 187.5 0 C 291.054688 0 375 83.949219 375 187.5 "/>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:0.2;" d="M 58.65625 117.183594 C 52.089844 117.183594 46.804688 122.46875 46.804688 129.03125 L 46.804688 175.644531 C 46.804688 182.207031 52.089844 187.492188 58.65625 187.492188 L 93.679688 187.492188 L 93.679688 210.929688 L 46.804688 210.929688 L 46.804688 234.367188 L 93.679688 234.367188 L 93.679688 281.242188 L 117.117188 281.242188 L 117.117188 234.367188 L 257.742188 234.367188 L 257.742188 281.242188 L 281.179688 281.242188 L 281.179688 234.367188 L 328.054688 234.367188 L 328.054688 210.929688 L 281.179688 210.929688 L 281.179688 187.492188 L 316.203125 187.492188 C 322.769531 187.492188 328.054688 182.207031 328.054688 175.644531 L 328.054688 129.03125 C 328.054688 122.46875 322.769531 117.183594 316.203125 117.183594 Z M 117.117188 187.492188 L 257.742188 187.492188 L 257.742188 210.929688 L 117.117188 210.929688 Z M 117.117188 187.492188 "/>
|
||||
|
|
Before Width: | Height: | Size: 4.1 KiB After Width: | Height: | Size: 4 KiB |
|
@ -1,5 +1,5 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="375px" height="375px" viewBox="0 0 375 375" version="1.1">
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="375px" height="375px" viewBox="0 0 375 375" version="1.1">
|
||||
<g id="surface1">
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(49.019608%,91.764706%,49.411765%);fill-opacity:1;" d="M 200.011719 363.828125 C 194.3125 376.257812 176.652344 376.257812 170.949219 363.828125 L 72.644531 149.554688 C 67.785156 138.964844 75.523438 126.898438 87.175781 126.898438 L 283.785156 126.898438 C 295.4375 126.898438 303.175781 138.964844 298.316406 149.554688 Z M 200.011719 363.828125 "/>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(49.019608%,91.764706%,49.411765%);fill-opacity:1;" d="M 342.433594 155.679688 C 342.433594 242.214844 272.28125 312.363281 185.746094 312.363281 C 99.210938 312.363281 29.0625 242.214844 29.0625 155.679688 C 29.0625 69.144531 99.210938 -1.007812 185.746094 -1.007812 C 272.28125 -1.007812 342.433594 69.144531 342.433594 155.679688 Z M 342.433594 155.679688 "/>
|
||||
|
|
Before Width: | Height: | Size: 8.5 KiB After Width: | Height: | Size: 8.5 KiB |
|
@ -1,5 +1,5 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="313px" height="374px" viewBox="0 0 313 374" version="1.1">
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="313px" height="374px" viewBox="0 0 313 374" version="1.1">
|
||||
<g id="surface1">
|
||||
<path style="fill:none;stroke-width:0.82687;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:4;" d="M 41.280465 238.515911 C 41.280465 239.055692 40.663043 239.49477 39.894824 239.507722 C 39.883498 239.508046 29.019382 239.508046 29.007732 239.508046 C 28.223333 239.508046 27.587466 239.063787 27.587466 238.515911 C 27.587466 237.968359 28.223333 237.524424 29.007732 237.524424 C 29.023265 237.524424 39.891264 237.524424 39.906473 237.524748 C 40.669515 237.541586 41.280465 237.979045 41.280465 238.515911 Z M 41.280465 238.515911 " transform="matrix(12.071348,0,0,12.063634,-254.510092,-2708.802357)"/>
|
||||
<path style="fill:none;stroke-width:0.82687;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:4;" d="M 43.666021 238.479645 C 43.666021 240.039408 42.312092 241.306452 40.630683 241.334299 C 40.612238 241.334623 28.023351 241.334623 28.004582 241.334623 C 26.297285 241.334623 24.913909 240.056246 24.913909 238.479645 C 24.913909 236.903045 26.297285 235.624991 28.004582 235.624991 C 28.027557 235.624991 40.620652 235.625315 40.643303 235.625963 C 42.318888 235.659315 43.666021 236.924092 43.666021 238.479969 Z M 43.666021 238.479645 " transform="matrix(12.071348,0,0,12.063634,-254.510092,-2708.802357)"/>
|
||||
|
|
Before Width: | Height: | Size: 2.8 KiB After Width: | Height: | Size: 2.7 KiB |
|
@ -1,5 +1,5 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="373px" height="264px" viewBox="0 0 373 264" version="1.1">
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="373px" height="264px" viewBox="0 0 373 264" version="1.1">
|
||||
<g id="surface1">
|
||||
<path style="fill:none;stroke-width:1.685897;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:4;" d="M 52.819462 187.17936 C 52.819462 188.594501 51.200611 189.745829 49.184795 189.779484 C 49.154887 189.780027 20.66321 189.780027 20.632758 189.780027 C 18.575615 189.780027 16.907279 188.615671 16.907279 187.17936 C 16.907279 185.742506 18.575615 184.57815 20.632758 184.57815 C 20.673542 184.57815 49.175007 184.578693 49.215247 184.579236 C 51.216924 184.623747 52.819462 185.770733 52.819462 187.178817 Z M 52.819462 187.17936 " transform="matrix(7.18343,0,0,7.19617,-61.01085,-1171.138615)"/>
|
||||
<path style="fill:none;stroke-width:1.925465;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:4;" d="M 56.121332 187.102279 C 56.121332 190.688714 53.007612 193.603676 49.141293 193.666643 C 49.098877 193.667186 20.14607 193.667729 20.103654 193.667729 C 16.178062 193.667729 12.995281 190.72834 12.995281 187.102279 C 12.995281 183.476218 16.178062 180.536829 20.103654 180.536829 C 20.155858 180.536829 49.11791 180.537372 49.169569 180.539001 C 53.023382 180.615539 56.121332 183.525073 56.121332 187.102822 Z M 56.121332 187.102279 " transform="matrix(7.18343,0,0,7.19617,-61.01085,-1171.138615)"/>
|
||||
|
|
Before Width: | Height: | Size: 3 KiB After Width: | Height: | Size: 2.9 KiB |
|
@ -1,5 +1,5 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="296px" height="374px" viewBox="0 0 296 374" version="1.1">
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="296px" height="374px" viewBox="0 0 296 374" version="1.1">
|
||||
<g id="surface1">
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(41.960785%,76.862746%,96.862745%);fill-opacity:1;" d="M 296 147.789062 C 296 229.414062 229.738281 295.582031 148 295.582031 C 66.261719 295.582031 0 229.414062 0 147.789062 C 0 66.167969 66.261719 0 148 0 C 229.738281 0 296 66.167969 296 147.789062 Z M 296 147.789062 "/>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(41.960785%,76.862746%,96.862745%);fill-opacity:1;" d="M 166.257812 344.121094 C 160.871094 355.847656 144.191406 355.847656 138.804688 344.121094 L 45.949219 142.015625 C 41.359375 132.023438 48.667969 120.644531 59.675781 120.644531 L 245.386719 120.644531 C 256.394531 120.644531 263.703125 132.023438 259.113281 142.015625 Z M 166.257812 344.121094 "/>
|
||||
|
|
Before Width: | Height: | Size: 6.4 KiB After Width: | Height: | Size: 6.3 KiB |
|
@ -1,5 +1,5 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="375px" height="375px" viewBox="0 0 375 375" version="1.1">
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="375px" height="375px" viewBox="0 0 375 375" version="1.1">
|
||||
<g id="surface1">
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(41.960785%,76.862746%,96.862745%);fill-opacity:1;" d="M 375 187.5 C 375 291.054688 291.054688 375 187.5 375 C 83.945312 375 0 291.054688 0 187.5 C 0 83.945312 83.945312 0 187.5 0 C 291.054688 0 375 83.945312 375 187.5 Z M 375 187.5 "/>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(100%,100%,98.823529%);fill-opacity:1;" d="M 112.082031 141.519531 C 112.761719 145.027344 116.449219 148.15625 120.320312 148.511719 C 124.179688 148.871094 126.761719 146.3125 126.082031 142.804688 L 123.097656 127.578125 C 122.417969 124.078125 118.730469 120.941406 114.863281 120.585938 C 111 120.234375 108.425781 122.789062 109.105469 126.289062 Z M 112.082031 141.519531 "/>
|
||||
|
|
Before Width: | Height: | Size: 6 KiB After Width: | Height: | Size: 5.9 KiB |
|
@ -1,5 +1,5 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="375px" height="375px" viewBox="0 0 375 375" version="1.1">
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="375px" height="375px" viewBox="0 0 375 375" version="1.1">
|
||||
<g id="surface1">
|
||||
<path style="fill:none;stroke-width:15;stroke-linecap:round;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:4;" d="M 150 20 L 150 285 " transform="matrix(1.25,0,0,1.25,0,0)"/>
|
||||
<path style="fill:none;stroke-width:15;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:4;" d="M 210 104.7875 C 210 137.925 183.1375 164.7875 150 164.7875 C 116.8625 164.7875 90 137.925 90 104.7875 C 90 71.65 116.8625 44.7875 150 44.7875 C 183.1375 44.7875 210 71.65 210 104.7875 Z M 210 104.7875 " transform="matrix(1.25,0,0,1.25,0,0)"/>
|
||||
|
|
Before Width: | Height: | Size: 841 B After Width: | Height: | Size: 798 B |
|
@ -1,5 +1,5 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="375px" height="375px" viewBox="0 0 375 375" version="1.1">
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="375px" height="375px" viewBox="0 0 375 375" version="1.1">
|
||||
<g id="surface1">
|
||||
<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:7.155;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 119.1 90.2 L 133.7 162.4 L 189.5 173.3 C 206.1 158.3 222.7 143.3 239.3 128.3 C 243.5 124 243.3 117.1 239.1 113.1 C 234.8 109 227.6 109.4 223.6 114.2 C 211.2 125.4 198.7 136.5 186.3 147.7 C 175.7 145.5 165.1 143.3 154.4 141.2 C 150.3 122.4 146.2 103.6 142.1 84.8 C 134.6 86.7 126.8 88.5 119.1 90.2 Z M 119.1 90.2 " transform="matrix(1.25,0,0,1.25,0,0)"/>
|
||||
<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:7.7355;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 62.2 116.1 L 78 194.2 L 138.4 206 C 156.4 189.8 174.3 173.6 192.3 157.4 C 196.8 152.7 196.6 145.3 192.1 141 C 187.4 136.6 179.6 137 175.3 142.2 C 161.9 154.3 148.4 166.3 135 178.4 C 123.5 176 112 173.7 100.6 171.3 C 96.2 151 91.8 130.7 87.4 110.4 C 78.9 112.3 70.6 114.2 62.2 116.1 Z M 62.2 116.1 " transform="matrix(1.25,0,0,1.25,0,0)"/>
|
||||
|
|
Before Width: | Height: | Size: 1.3 KiB After Width: | Height: | Size: 1.3 KiB |
|
@ -1,5 +1,5 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="375px" height="375px" viewBox="0 0 375 375" version="1.1">
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="375px" height="375px" viewBox="0 0 375 375" version="1.1">
|
||||
<g id="surface1">
|
||||
<path style="fill:none;stroke-width:7.155;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -200.9 90.2 L -186.3 162.4 L -130.5 173.3 C -113.9 158.3 -97.3 143.3 -80.7 128.3 C -76.5 124 -76.7 117.1 -80.9 113.1 C -85.2 109 -92.4 109.4 -96.4 114.2 C -108.8 125.4 -121.3 136.5 -133.7 147.7 C -144.3 145.5 -154.9 143.3 -165.6 141.2 C -169.7 122.4 -173.8 103.6 -177.9 84.8 C -185.4 86.7 -193.2 88.5 -200.9 90.2 Z M -200.9 90.2 " transform="matrix(1.25,0,0,1.25,0,0)"/>
|
||||
<path style="fill:none;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0.392157%,0.784314%,0.784314%);stroke-opacity:1;stroke-miterlimit:10;" d="M 100.3 80.9 C 92.5 84.3 87.3 89.5 84.1 93.4 C 70.9 114 57.6 134.7 44.4 155.3 C 43.4 158.7 41.2 168.2 45.4 178.7 C 46.7 182 50.2 190.8 59.5 195.5 C 64.5 198 69.2 198.4 72 198.4 L 124.5 180 C 120.2 179.2 115.8 178.5 111.5 177.7 C 98.3 181.2 85.2 184.8 72 188.3 C 70.1 188.3 64.4 188 59.4 183.8 C 54.4 179.6 53.2 174.1 52.6 171.3 C 51.2 164.8 52.7 159.3 53.6 156.8 C 65.8 137.8 77.9 118.8 90.1 99.9 C 92.4 96.6 96.4 91.9 102.7 88.6 C 108.8 85.5 114.4 85 117.3 84.9 C 129.6 84.2 165 84.4 212.6 85.9 C 213.3 85.9 218.9 86.2 222.4 91.2 C 226.2 96.5 224.2 102.3 224 102.9 L 190.8 177.2 C 188.1 182.2 184.7 190.1 184.4 200.2 C 184.2 207.3 183.8 216.3 190.2 224.2 C 196.6 232 205.8 233.6 208.6 233.9 C 220.3 235.4 228.7 229.2 230.5 227.9 C 241 220.8 251.5 213.7 262 206.6 C 257.8 206.1 253.6 205.6 249.3 205.1 C 238.4 211.1 227.5 217 216.6 223 C 214.6 223.4 207 224.4 201.4 219.8 C 195.1 214.6 195.4 205.7 195.5 200.3 C 195.6 191.4 198.5 184.3 201.1 179.7 C 211.9 155.5 222.8 131.3 233.6 107.1 C 234.3 104.9 235.3 100.6 234.4 95.3 C 234.1 93.5 233.4 89.5 230.4 85.5 C 229.8 84.6 226.6 80.3 220.5 77.8 C 216 76 212.1 75.9 209.8 76.1 C 161 75.7 124.7 76.5 112.5 77.8 C 109.6 78.1 105.3 78.7 100.3 80.9 Z M 100.3 80.9 " transform="matrix(1.25,0,0,1.25,0,0)"/>
|
||||
|
|
Before Width: | Height: | Size: 5.4 KiB After Width: | Height: | Size: 5.3 KiB |
|
@ -1,5 +1,5 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="375px" height="375px" viewBox="0 0 375 375" version="1.1">
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="375px" height="375px" viewBox="0 0 375 375" version="1.1">
|
||||
<g id="surface1">
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0.784314%,0.784314%,1.176471%);fill-opacity:1;" d="M 280.125 169 L 280.125 150.75 L 267.875 150.75 L 267.875 112.875 L 246.5 91.5 L 225.125 112.875 L 225.125 150.75 L 210 150.75 L 210 112.875 L 188.625 91.5 L 167.25 112.875 L 167.25 150.75 L 152 150.75 L 152 112.875 L 130.625 91.5 L 109.375 112.875 L 109.375 150.75 L 97.125 150.75 L 97.125 169 L 109.375 169 L 109.375 227 L 97.125 227 L 97.125 245.25 L 109.375 245.25 L 109.375 275.75 L 152.125 275.75 L 152.125 245.25 L 167.375 245.25 L 167.375 275.75 L 210 275.75 L 210 245.25 L 225.25 245.25 L 225.25 275.75 L 268 275.75 L 268 245.25 L 280.25 245.25 L 280.25 227 L 268 227 L 268 169 Z M 268 156.875 L 274.125 156.875 L 274.125 163 L 268 163 Z M 109.375 239.25 L 103.25 239.25 L 103.25 233.125 L 109.375 233.125 Z M 109.375 163 L 103.25 163 L 103.25 156.875 L 109.375 156.875 Z M 145.875 269.75 L 115.375 269.75 L 115.375 115.375 L 130.625 100.125 L 145.875 115.375 Z M 167.25 239.25 L 152 239.25 L 152 233.125 L 167.25 233.125 Z M 167.25 227 L 152 227 L 152 169 L 167.25 169 Z M 167.25 163 L 152 163 L 152 156.875 L 167.25 156.875 Z M 203.875 269.75 L 173.375 269.75 L 173.375 115.375 L 188.625 100.125 L 203.875 115.375 Z M 225.25 239.25 L 210 239.25 L 210 233.125 L 225.25 233.125 Z M 225.25 227 L 210 227 L 210 169 L 225.25 169 Z M 225.25 163 L 210 163 L 210 156.875 L 225.25 156.875 Z M 261.875 227 L 261.875 269.75 L 231.375 269.75 L 231.375 115.375 L 246.625 100.125 L 261.875 115.375 Z M 274 233.125 L 274 239.25 L 267.875 239.25 L 267.875 233.125 Z M 274 233.125 "/>
|
||||
</g>
|
||||
|
|
Before Width: | Height: | Size: 1.8 KiB After Width: | Height: | Size: 1.7 KiB |
|
@ -1,5 +1,5 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="375px" height="375px" viewBox="0 0 375 375" version="1.1">
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="375px" height="375px" viewBox="0 0 375 375" version="1.1">
|
||||
<g id="surface1">
|
||||
<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:7.155;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 175.8 63.9 C 172.7 61.6 168.6 61.7 167.6 61.7 C 164.2 61.8 153.1 61.7 136.7 61.7 C 128.6 61.7 120.5 61.6 112.4 61.6 C 109.5 61.6 104.6 61.6 101.8 61.6 C 87.2 61.6 76.2 61.7 70.9 61.7 C 69.6 61.7 65.7 61.6 62.7 63.9 C 58.9 66.8 59.4 70.8 59.4 71.2 C 59.4 110.6 59.4 149.9 59.4 189.3 C 63.1 189.2 66.9 189.2 70.6 189.1 C 70.5 127.8 70.6 82.9 71 78.7 C 71.1 78 71.2 75.9 72.8 74.5 C 74.4 73.1 76.6 73 77.5 73 C 82 72.9 115.3 72.9 161 73 C 162.4 73 164.3 73.2 165.7 74.5 C 167.2 75.9 167.4 78 167.5 78.7 C 167.8 82.9 168 127.8 167.9 189.1 C 171.6 189.2 175.4 189.2 179.1 189.3 C 179.1 149.9 179.1 110.6 179.1 71.2 C 179.1 70.8 179.5 66.8 175.8 63.9 Z M 175.8 63.9 " transform="matrix(1.25,0,0,1.25,0,0)"/>
|
||||
<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:7.155;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 203.3 92.4 C 200.2 90.1 196.1 90.2 195.1 90.2 C 191.7 90.3 180.6 90.2 164.2 90.2 C 156.1 90.2 148 90.1 139.9 90.1 C 137 90.1 132.1 90.1 129.3 90.1 C 114.7 90.1 103.7 90.2 98.4 90.2 C 97.1 90.2 93.2 90.1 90.2 92.4 C 86.4 95.3 86.9 99.3 86.9 99.7 C 86.9 139.1 86.9 178.4 86.9 217.8 C 90.6 217.7 94.4 217.7 98.1 217.6 C 98 156.3 98.1 111.4 98.5 107.2 C 98.6 106.5 98.7 104.4 100.3 103 C 101.9 101.6 104.1 101.5 105 101.5 C 109.5 101.4 142.8 101.4 188.5 101.5 C 189.9 101.5 191.8 101.7 193.2 103 C 194.7 104.4 194.9 106.5 195 107.2 C 195.3 111.4 195.5 156.3 195.4 217.6 C 199.1 217.7 202.9 217.7 206.6 217.8 C 206.6 178.4 206.6 139.1 206.6 99.7 C 206.7 99.3 207.1 95.3 203.3 92.4 Z M 203.3 92.4 " transform="matrix(1.25,0,0,1.25,0,0)"/>
|
||||
|
|
Before Width: | Height: | Size: 3 KiB After Width: | Height: | Size: 2.9 KiB |
|
@ -1,5 +1,5 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="375px" height="375px" viewBox="0 0 375 375" version="1.1">
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="375px" height="375px" viewBox="0 0 375 375" version="1.1">
|
||||
<g id="surface1">
|
||||
<path style="fill:none;stroke-width:4.6057;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:4;" d="M 133.7 168.1 L 181.9 168.1 L 201.2 210.9 L 165.8 210.9 M 124 156 L 139 156 L 133.6 168.1 M 115.4 210.9 L 127.2 182.3 L 131.5 173.5 L 133.6 168 M 150 194.4 L 143.9 184.5 L 133.7 168 M 150 194.4 L 154.1 201 M 178.7 169.2 L 185.1 156 L 163.7 204.3 L 174.4 180.1 M 150 194.4 L 157.3 206.5 " transform="matrix(1.25,0,0,1.25,0,0)"/>
|
||||
<path style="fill:none;stroke-width:2.3029;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:4;" d="M 160.6 202.5 C 164.1 202.5 167 205.4 167 209 C 167 212.6 164.1 215.5 160.6 215.5 C 157.1 215.5 154.2 212.6 154.2 209 C 154.3 205.4 157.1 202.5 160.6 202.5 Z M 160.6 202.5 " transform="matrix(1.25,0,0,1.25,0,0)"/>
|
||||
|
|
Before Width: | Height: | Size: 3.9 KiB After Width: | Height: | Size: 3.9 KiB |
|
@ -1,5 +1,5 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="375px" height="375px" viewBox="0 0 375 375" version="1.1">
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="375px" height="375px" viewBox="0 0 375 375" version="1.1">
|
||||
<g id="surface1">
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0.784314%,0.784314%,1.176471%);fill-opacity:1;" d="M 319.125 266.75 L 319.125 285 C 319.125 287.5 317.125 289.5 314.625 289.5 L 91.25 289.5 C 88.75 289.5 86.75 287.5 86.75 285 L 86.75 266.75 C 86.75 264.25 88.75 262.25 91.25 262.25 L 104.875 262.25 L 104.875 234.875 L 50.25 234.875 C 47.75 234.875 45.75 232.875 45.75 230.375 L 45.75 212.125 C 45.75 209.625 47.75 207.625 50.25 207.625 L 63.875 207.625 L 63.875 131 C 63.875 126.5 66 122.25 69.625 119.5 C 76 114.75 85 115.875 89.75 122.25 C 93.875 116.625 101.375 114.875 107.625 118.125 C 111.25 120 114 123.25 115.125 127.25 L 135.875 207.75 L 146 207.75 L 146 131.125 C 146 126.625 148.125 122.375 151.75 119.625 C 158.125 114.75 167.125 116 171.875 122.375 C 172.875 121 174.25 119.75 175.625 118.875 C 176.75 118.125 178 117.625 179.375 117.25 C 187 115.125 195 119.625 197.125 127.375 L 217.875 207.875 L 228 207.875 L 228 131.25 C 228 126.75 230.125 122.5 233.75 119.75 C 240.125 115 249.125 116.125 253.875 122.5 C 258 116.875 265.5 115.125 271.75 118.375 C 275.375 120.25 278.125 123.5 279.25 127.5 L 300.5 209.875 C 300.875 211.125 301 212.375 301 213.625 L 301 262.75 L 314.625 262.75 C 317.125 262.125 319.125 264.25 319.125 266.75 Z M 310 280.375 L 310 271.25 L 300.875 271.25 L 300.875 280.375 Z M 291.75 280.375 L 291.75 271.25 L 278.125 271.25 L 278.125 280.375 Z M 291.75 262.125 L 291.75 213 C 291.75 212.5 291.625 212 291.5 211.5 L 270.25 129.125 C 269.875 127.75 268.875 126.5 267.5 125.875 C 266.75 125.5 265.875 125.25 265.125 125.375 C 262.125 125.375 259.875 127.75 259.875 130.75 L 259.875 140.625 L 277.625 209.25 C 277.875 210 278 210.75 278 211.5 C 278 211.625 278.125 211.875 278.125 212 L 278.125 262.125 Z M 269 280.375 L 269 271.25 L 218.875 271.25 L 218.875 280.375 Z M 269 262.125 L 269 234.75 L 218.875 234.75 L 218.875 262.125 Z M 269 225.75 L 269 216.625 L 259.875 216.625 L 259.875 225.75 Z M 267.75 207.5 L 259.875 177.125 L 259.875 207.5 Z M 250.75 225.75 L 250.75 216.625 L 218.875 216.625 L 218.875 225.75 Z M 250.75 207.5 L 250.75 141.875 L 247.5 129.375 C 247.125 128 246.125 126.75 244.75 126.125 C 244 125.75 243.125 125.5 242.375 125.625 C 239.375 125.625 237.125 128 237.125 131 L 237.125 207.5 Z M 209.75 280.375 L 209.75 271.25 L 196.125 271.25 L 196.125 280.375 Z M 209.75 262.125 L 209.75 234.75 L 196.125 234.75 L 196.125 262.125 Z M 209.75 225.75 L 209.75 216.625 L 196.125 216.625 L 196.125 225.75 Z M 208.5 207.5 L 188.25 129.25 C 187.625 127 185.5 125.375 183.125 125.375 C 180.125 125.375 177.875 127.75 177.875 130.75 L 177.875 140.625 L 195.125 207.5 Z M 187 280.375 L 187 271.25 L 136.875 271.25 L 136.875 280.375 Z M 187 262.125 L 187 234.75 L 136.875 234.75 L 136.875 262.125 Z M 187 225.75 L 187 216.625 L 136.875 216.625 L 136.875 225.75 Z M 185.75 207.5 L 177.875 177.125 L 177.875 207.5 Z M 168.75 207.5 L 168.75 141.875 L 165.5 129.375 C 164.875 127.125 162.75 125.5 160.375 125.5 C 157.375 125.5 155.125 127.875 155.125 130.875 L 155.125 207.5 Z M 127.75 280.375 L 127.75 271.25 L 114 271.25 L 114 280.375 Z M 127.75 262.125 L 127.75 234.75 L 114 234.75 L 114 262.125 Z M 127.75 225.75 L 127.75 216.625 L 114 216.625 L 114 225.75 Z M 126.375 207.5 L 106.25 129.25 C 105.875 127.875 104.875 126.625 103.5 126 C 102.75 125.625 101.875 125.375 101.125 125.5 C 98.125 125.5 95.875 127.875 95.875 130.875 L 95.875 140.75 L 113 207.5 Z M 104.875 280.375 L 104.875 271.25 L 95.75 271.25 L 95.75 280.375 Z M 104.875 225.75 L 104.875 216.625 L 73 216.625 L 73 225.75 Z M 103.625 207.5 L 95.75 177.125 L 95.75 207.5 Z M 86.625 207.5 L 86.625 141.875 L 83.375 129.375 C 83 128 82 126.75 80.625 126.125 C 79.875 125.75 79 125.5 78.25 125.625 C 75.25 125.625 73 128 73 131 L 73 207.5 Z M 63.875 225.75 L 63.875 216.625 L 54.75 216.625 L 54.75 225.75 Z M 63.875 225.75 "/>
|
||||
</g>
|
||||
|
|
Before Width: | Height: | Size: 4 KiB After Width: | Height: | Size: 3.9 KiB |
|
@ -1,5 +1,5 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="375px" height="375px" viewBox="0 0 375 375" version="1.1">
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="375px" height="375px" viewBox="0 0 375 375" version="1.1">
|
||||
<g id="surface1">
|
||||
<path style="fill-rule:nonzero;fill:rgb(100%,98.823529%,100%);fill-opacity:1;stroke-width:3.509;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:4;" d="M 47.663415 21.641872 L 71.627478 21.641872 L 71.627478 25.63231 L 47.663415 25.63231 Z M 47.663415 21.641872 " transform="matrix(3.826531,0,0,3.826531,-47.701923,-7.977349)"/>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;" d="M 168.296875 96.378906 L 193.230469 96.378906 L 193.230469 130.757812 L 168.296875 130.757812 Z M 168.296875 96.378906 "/>
|
||||
|
|
Before Width: | Height: | Size: 2.5 KiB After Width: | Height: | Size: 2.4 KiB |
|
@ -1,5 +1,5 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="375px" height="375px" viewBox="0 0 375 375" version="1.1">
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="375px" height="375px" viewBox="0 0 375 375" version="1.1">
|
||||
<g id="surface1">
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(3.137255%,0%,0%);fill-opacity:1;" d="M 202.777344 351.15625 C 197.339844 363.003906 180.503906 363.003906 175.066406 351.15625 L 81.335938 146.859375 C 76.703125 136.761719 84.082031 125.257812 95.191406 125.257812 L 282.648438 125.257812 C 293.757812 125.257812 301.136719 136.761719 296.503906 146.859375 Z M 202.777344 351.15625 "/>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(3.137255%,0%,0%);fill-opacity:1;" d="M 336.785156 155.746094 C 336.785156 238.253906 269.902344 305.136719 187.398438 305.136719 C 104.890625 305.136719 38.007812 238.253906 38.007812 155.746094 C 38.007812 73.238281 104.890625 6.355469 187.398438 6.355469 C 269.902344 6.355469 336.785156 73.238281 336.785156 155.746094 Z M 336.785156 155.746094 "/>
|
||||
|
|
Before Width: | Height: | Size: 5.8 KiB After Width: | Height: | Size: 5.8 KiB |
|
@ -1,5 +1,5 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="298px" height="374px" viewBox="0 0 298 374" version="1.1">
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="298px" height="374px" viewBox="0 0 298 374" version="1.1">
|
||||
<g id="surface1">
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(67.058825%,46.27451%,83.529413%);fill-opacity:1;" d="M 164.339844 343.878906 C 158.917969 355.699219 142.125 355.699219 136.703125 343.878906 L 43.21875 140.128906 C 38.597656 130.058594 45.957031 118.585938 57.035156 118.585938 L 244.003906 118.585938 C 255.085938 118.585938 262.445312 130.058594 257.824219 140.128906 Z M 164.339844 343.878906 "/>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(67.058825%,46.27451%,83.529413%);fill-opacity:1;" d="M 298 148.992188 C 298 231.277344 231.289062 297.984375 149 297.984375 C 66.710938 297.984375 0 231.277344 0 148.992188 C 0 66.707031 66.710938 0 149 0 C 231.289062 0 298 66.707031 298 148.992188 Z M 298 148.992188 "/>
|
||||
|
|
Before Width: | Height: | Size: 2.1 KiB After Width: | Height: | Size: 2 KiB |
|
@ -1,5 +1,5 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="374px" height="342px" viewBox="0 0 374 342" version="1.1">
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="374px" height="342px" viewBox="0 0 374 342" version="1.1">
|
||||
<g id="surface1">
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(50.980395%,50.980395%,50.980395%);fill-opacity:1;" d="M 293.472656 24.730469 C 292.90625 23.320312 291.773438 22.21875 290.351562 21.695312 C 288.929688 21.183594 287.347656 21.277344 286.015625 21.984375 L 158.789062 89.125 C 156.394531 90.382812 155.328125 93.238281 156.300781 95.761719 L 158.917969 102.609375 L 85.476562 142.890625 C 83.070312 144.207031 82.054688 147.113281 83.101562 149.625 L 85.539062 155.492188 L 7.542969 192.769531 C 4.980469 194 3.824219 197.011719 4.914062 199.640625 L 20.921875 238.222656 C 21.777344 240.277344 23.753906 241.527344 25.859375 241.527344 C 26.457031 241.527344 27.054688 241.429688 27.644531 241.21875 L 109.121094 212.351562 L 111.558594 218.21875 C 112.402344 220.257812 114.378906 221.519531 116.496094 221.519531 C 116.988281 221.519531 117.480469 221.457031 117.980469 221.304688 L 195.730469 198.894531 L 198.058594 204.976562 C 198.851562 207.082031 200.871094 208.40625 203.027344 208.40625 C 203.550781 208.40625 204.074219 208.332031 204.597656 208.171875 L 343.511719 165.421875 C 344.945312 164.984375 346.121094 163.96875 346.761719 162.621094 C 347.402344 161.273438 347.457031 159.714844 346.902344 158.335938 Z M 28.851562 229.449219 L 16.734375 200.230469 L 89.640625 165.378906 L 105.019531 202.464844 Z M 119.582031 209.722656 L 117.039062 203.585938 L 97.347656 156.082031 L 94.804688 149.957031 L 162.507812 112.816406 L 187.875 178.375 L 191.882812 188.859375 Z M 206.234375 196.488281 L 204.066406 190.816406 C 204.03125 190.695312 204.054688 190.558594 204 190.441406 L 197.398438 173.371094 L 167.96875 96.359375 L 285.757812 34.210938 L 334.824219 156.902344 Z M 206.234375 196.488281 "/>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(50.980395%,50.980395%,50.980395%);fill-opacity:1;" d="M 309.5 3.355469 C 308.402344 0.609375 305.28125 -0.714844 302.554688 0.375 C 299.820312 1.476562 298.484375 4.585938 299.574219 7.320312 L 363.6875 167.632812 C 364.53125 169.726562 366.542969 171 368.65625 171 C 369.320312 171 369.992188 170.882812 370.644531 170.617188 C 373.378906 169.515625 374.714844 166.40625 373.625 163.667969 Z M 309.5 3.355469 "/>
|
||||
|
|
Before Width: | Height: | Size: 3.5 KiB After Width: | Height: | Size: 3.5 KiB |
|
@ -1,5 +1,5 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="375px" height="375px" viewBox="0 0 375 375" version="1.1">
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="375px" height="375px" viewBox="0 0 375 375" version="1.1">
|
||||
<g id="surface1">
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;" d="M 373.683594 188.011719 C 373.683594 291.125 290.097656 374.710938 186.988281 374.710938 C 83.875 374.710938 0.289062 291.125 0.289062 188.011719 C 0.289062 84.902344 83.875 1.316406 186.988281 1.316406 C 290.097656 1.316406 373.683594 84.902344 373.683594 188.011719 Z M 373.683594 188.011719 "/>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(58.039218%,73.333335%,15.686275%);fill-opacity:1;" d="M 114.238281 62.703125 L 114.238281 97.605469 L 162.941406 97.605469 L 162.941406 62.703125 Z M 209.59375 62.703125 L 209.59375 97.605469 L 258.371094 97.605469 L 258.371094 62.703125 Z M 209.59375 108.53125 L 209.59375 204.894531 C 209.59375 209.515625 213.316406 213.242188 217.9375 213.242188 L 226.285156 213.242188 L 226.285156 306.644531 C 226.285156 311.113281 229.933594 314.761719 234.402344 314.761719 L 306.011719 314.761719 C 310.480469 314.761719 314.128906 311.113281 314.128906 306.644531 L 314.128906 248.523438 L 314.277344 240.023438 L 283.253906 108.53125 Z M 89.128906 108.671875 L 58.027344 240.164062 L 58.179688 248.738281 L 58.179688 306.859375 C 58.179688 311.328125 61.828125 314.980469 66.296875 314.980469 L 137.90625 314.980469 C 142.453125 314.980469 146.101562 311.328125 146.101562 306.859375 L 146.101562 213.53125 L 154.367188 213.53125 C 158.992188 213.53125 162.714844 209.734375 162.714844 205.109375 L 162.714844 108.671875 Z M 173.484375 108.671875 L 173.484375 198.28125 L 198.746094 198.28125 L 198.746094 108.671875 Z M 173.484375 108.671875 "/>
|
||||
|
|
Before Width: | Height: | Size: 1.8 KiB After Width: | Height: | Size: 1.7 KiB |
|
@ -1,5 +1,5 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="375px" height="375px" viewBox="0 0 375 375" version="1.1">
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="375px" height="375px" viewBox="0 0 375 375" version="1.1">
|
||||
<g id="surface1">
|
||||
<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:1.827933;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:4;" d="M 13.077605 7.029604 C 13.077605 10.188792 10.383042 12.749626 7.059354 12.749626 C 3.735521 12.749626 1.041104 10.188792 1.041104 7.029604 C 1.041104 3.870563 3.735521 1.309583 7.059354 1.309583 C 10.383042 1.309583 13.077605 3.870563 13.077605 7.029604 Z M 13.077605 7.029604 " transform="matrix(26.785713,0,0,26.785713,0,0)"/>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(58.039218%,73.333335%,15.686275%);fill-opacity:1;" d="M 143.890625 141.386719 L 143.890625 162.296875 L 176.820312 162.296875 L 176.820312 141.386719 Z M 208.367188 141.386719 L 208.367188 162.296875 L 241.347656 162.296875 L 241.347656 141.386719 Z M 208.367188 168.84375 L 208.367188 226.578125 C 208.367188 229.347656 210.882812 231.578125 214.007812 231.578125 L 219.652344 231.578125 L 219.652344 287.539062 C 219.652344 290.214844 222.121094 292.402344 225.140625 292.402344 L 273.558594 292.402344 C 276.578125 292.402344 279.046875 290.214844 279.046875 287.539062 L 279.046875 252.71875 L 279.148438 247.625 L 258.171875 168.84375 Z M 126.914062 168.9375 L 105.882812 247.71875 L 105.988281 252.855469 L 105.988281 287.675781 C 105.988281 290.351562 108.457031 292.539062 111.476562 292.539062 L 159.894531 292.539062 C 162.96875 292.539062 165.433594 290.351562 165.433594 287.675781 L 165.433594 231.761719 L 171.027344 231.761719 C 174.152344 231.761719 176.667969 229.484375 176.667969 226.714844 L 176.667969 168.933594 Z M 183.953125 168.9375 L 183.953125 222.621094 L 201.03125 222.621094 L 201.03125 168.933594 Z M 183.953125 168.9375 "/>
|
||||
|
|
Before Width: | Height: | Size: 2.7 KiB After Width: | Height: | Size: 2.7 KiB |
|
@ -1,5 +1,5 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="375px" height="375px" viewBox="0 0 375 375" version="1.1">
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="375px" height="375px" viewBox="0 0 375 375" version="1.1">
|
||||
<g id="surface1">
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(78.039217%,45.490196%,0%);fill-opacity:1;" d="M 46.875 46.875 L 46.875 187.5 C 46.875 234.375 93.75 257.8125 152.34375 257.8125 C 210.9375 257.8125 257.8125 234.375 257.8125 187.5 L 304.6875 187.5 C 328.125 187.5 351.5625 164.0625 351.5625 140.625 L 351.5625 117.1875 C 351.5625 93.75 328.125 70.3125 304.6875 70.3125 L 257.8125 70.3125 L 257.8125 46.875 Z M 257.8125 99.609375 L 298.828125 99.609375 C 314.480469 99.609375 322.265625 112.800781 322.265625 128.90625 C 322.265625 145.011719 313.167969 158.203125 298.828125 158.203125 L 257.8125 158.203125 Z M 23.4375 281.25 C 23.4375 304.6875 46.875 328.125 70.3125 328.125 L 234.375 328.125 C 257.8125 328.125 281.25 304.6875 281.25 281.25 Z M 23.4375 281.25 "/>
|
||||
</g>
|
||||
|
|
Before Width: | Height: | Size: 1,011 B After Width: | Height: | Size: 968 B |
|
@ -1,5 +1,5 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="375px" height="375px" viewBox="0 0 375 375" version="1.1">
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="375px" height="375px" viewBox="0 0 375 375" version="1.1">
|
||||
<g id="surface1">
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(78.039217%,45.490196%,0%);fill-opacity:1;" d="M 70.3125 46.875 L 117.1875 328.125 L 257.8125 328.125 L 304.6875 46.875 Z M 99.609375 70.3125 L 275.390625 70.3125 L 267.65625 117.1875 L 106.875 117.1875 Z M 99.609375 70.3125 "/>
|
||||
</g>
|
||||
|
|
Before Width: | Height: | Size: 523 B After Width: | Height: | Size: 480 B |
|
@ -1,5 +1,5 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="375px" height="375px" viewBox="0 0 375 375" version="1.1">
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="375px" height="375px" viewBox="0 0 375 375" version="1.1">
|
||||
<g id="surface1">
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 187.382812 20.808594 C 126.03125 20.851562 72.445312 54.054688 43.554688 103.464844 L 43.664062 138.886719 L 28.105469 138.734375 C 23.386719 154.183594 20.851562 170.585938 20.859375 187.578125 C 20.867188 202.363281 22.800781 216.695312 26.417969 230.339844 L 43.71875 230.148438 L 43.703125 271.78125 C 72.652344 321.101562 126.234375 354.207031 187.539062 354.191406 C 248.671875 354.175781 302.113281 321.230469 331.097656 272.097656 L 331.269531 230.347656 L 348.542969 230.433594 C 352.195312 216.710938 354.140625 202.292969 354.140625 187.417969 C 354.121094 170.558594 351.609375 154.285156 346.949219 138.953125 L 331.132812 138.996094 L 331.078125 102.859375 C 302.0625 53.699219 248.558594 20.769531 187.382812 20.808594 Z M 172.457031 47.660156 L 172.609375 69.042969 C 172.640625 72.496094 178.097656 76.847656 180.792969 76.824219 L 194.457031 76.75 C 197.824219 76.707031 202.476562 71.855469 202.511719 68.578125 L 202.589844 47.734375 C 245.472656 52.402344 282.585938 76.308594 305.066406 110.636719 L 305.082031 166.835938 L 324.949219 166.78125 L 324.835938 201.957031 L 305.089844 202.160156 L 305.109375 264.132812 C 282.640625 298.484375 245.523438 322.417969 202.601562 327.09375 L 202.582031 306.464844 C 202.527344 303.09375 198.226562 298.101562 194.738281 298.0625 L 180.644531 297.960938 C 177.226562 298.011719 172.523438 302.972656 172.578125 306.882812 L 172.597656 327.191406 C 129.503906 322.769531 92.164062 298.945312 69.503906 264.605469 L 69.496094 201.929688 L 50.078125 201.988281 L 50.121094 167.082031 L 69.335938 167.03125 L 69.242188 110.632812 C 91.84375 76.125 129.238281 52.136719 172.453125 47.660156 Z M 256.652344 164.035156 C 244.453125 164.054688 234.585938 173.957031 234.601562 186.144531 C 234.617188 198.335938 244.515625 208.199219 256.714844 208.191406 C 268.910156 208.183594 278.796875 198.300781 278.796875 186.078125 C 278.761719 173.859375 268.847656 164.011719 256.652344 164.035156 Z M 112.894531 164.070312 C 100.699219 164.089844 90.828125 173.992188 90.847656 186.183594 C 90.863281 198.371094 100.765625 208.234375 112.964844 208.226562 C 125.160156 208.21875 135.042969 198.335938 135.042969 186.113281 C 135.007812 173.894531 125.09375 164.046875 112.894531 164.070312 Z M 112.894531 164.070312 "/>
|
||||
</g>
|
||||
|
|
Before Width: | Height: | Size: 2.5 KiB After Width: | Height: | Size: 2.5 KiB |
|
@ -1,5 +1,5 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="375px" height="375px" viewBox="0 0 375 375" version="1.1">
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="375px" height="375px" viewBox="0 0 375 375" version="1.1">
|
||||
<g id="surface1">
|
||||
<path style="fill:none;stroke-width:65;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:4;" d="M 581.246803 506.647491 C 581.246803 546.786179 550.308507 579.326301 512.141941 579.326301 C 473.975375 579.326301 443.037078 546.786179 443.037078 506.647491 C 443.037078 466.508803 473.975375 433.96868 512.141941 433.96868 C 550.308507 433.96868 581.246803 466.508803 581.246803 506.647491 Z M 581.246803 506.647491 " transform="matrix(0.599858,0,0,0.5989,-35.083685,-113.96246)"/>
|
||||
<path style="fill:none;stroke-width:65;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:4;" d="M 302.678408 506.647491 C 302.678408 546.786179 271.740112 579.326301 233.573546 579.326301 C 195.40698 579.326301 164.468683 546.786179 164.468683 506.647491 C 164.468683 466.508803 195.40698 433.96868 233.573546 433.96868 C 271.740112 433.96868 302.678408 466.508803 302.678408 506.647491 Z M 302.678408 506.647491 " transform="matrix(0.599858,0,0,0.5989,-35.083685,-113.96246)"/>
|
||||
|
|
Before Width: | Height: | Size: 8.2 KiB After Width: | Height: | Size: 8.2 KiB |
|
@ -1,5 +1,5 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="374px" height="314px" viewBox="0 0 374 314" version="1.1">
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="374px" height="314px" viewBox="0 0 374 314" version="1.1">
|
||||
<g id="surface1">
|
||||
<path style="fill-rule:evenodd;fill:rgb(0%,0%,0%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:4;" d="M 184.859585 610.923762 C 190.197805 601.515266 205.474704 616.428734 217.184006 613.958082 C 228.893309 611.482161 238.579042 601.225531 251.526727 594.761799 C 287.835051 575.755161 332.985954 566.588989 370.72764 566.478363 C 421.511866 568.395884 444.998978 573.895587 486.893198 595.773239 C 497.985944 601.557409 509.210433 614.226745 518.205833 615.975693 C 527.206504 617.724641 548.754361 599.302742 555.583909 609.917591 C 564.126114 623.187469 529.319659 649.31106 529.319659 649.31106 L 476.791157 679.617375 L 409.112231 698.80839 L 329.307694 699.819829 L 270.719023 684.669306 L 215.160436 652.340111 C 215.160436 652.340111 176.412235 625.800355 184.859585 610.923762 Z M 184.859585 610.923762 " transform="matrix(0.741264,0,0,0.741517,-83.553239,-218.557395)"/>
|
||||
<path style="fill:none;stroke-width:30;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:4;" d="M 313.366812 418.671202 C 313.366812 466.193064 276.199524 504.722595 230.34775 504.722595 C 184.501245 504.722595 147.333958 466.193064 147.333958 418.671202 C 147.333958 371.14934 184.501245 332.625077 230.34775 332.625077 C 276.199524 332.625077 313.366812 371.14934 313.366812 418.671202 Z M 313.366812 418.671202 " transform="matrix(0.741264,0,0,0.741517,-83.553239,-218.557395)"/>
|
||||
|
|
Before Width: | Height: | Size: 9.4 KiB After Width: | Height: | Size: 9.4 KiB |
|
@ -1,5 +1,5 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="316px" height="372px" viewBox="0 0 316 372" version="1.1">
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="316px" height="372px" viewBox="0 0 316 372" version="1.1">
|
||||
<g id="surface1">
|
||||
<path style="fill-rule:evenodd;fill:rgb(0%,0%,0%);fill-opacity:1;stroke-width:9.569277;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:4;" d="M 528.809562 495.932438 C 528.809562 585.61708 456.752397 658.318662 367.858235 658.318662 C 278.964073 658.318662 206.900737 585.61708 206.900737 495.932438 C 206.900737 406.253974 278.964073 333.552392 367.858235 333.552392 C 456.752397 333.552392 528.809562 406.253974 528.809562 495.932438 Z M 528.809562 495.932438 " transform="matrix(0.632907,0,0,0.632294,-75.351225,-124.297596)"/>
|
||||
<path style="fill-rule:evenodd;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:9.945179;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:4;" d="M 356.113072 428.79097 C 356.113072 461.750091 328.752951 488.475707 294.998721 488.475707 C 261.250663 488.475707 233.890543 461.750091 233.890543 428.79097 C 233.890543 395.831849 261.250663 369.106233 294.998721 369.106233 C 328.752951 369.106233 356.113072 395.831849 356.113072 428.79097 Z M 356.113072 428.79097 " transform="matrix(0.632907,0,0,0.632294,-75.351225,-124.297596)"/>
|
||||
|
|
Before Width: | Height: | Size: 10 KiB After Width: | Height: | Size: 10 KiB |
|
@ -1,5 +1,5 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="375px" height="375px" viewBox="0 0 375 375" version="1.1">
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="375px" height="375px" viewBox="0 0 375 375" version="1.1">
|
||||
<g id="surface1">
|
||||
<path style="fill:none;stroke-width:17.875193;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:4;" d="M 320.63498 784.307291 C 320.63498 798.33729 308.98498 809.71229 294.619981 809.71229 C 280.249982 809.71229 268.599983 798.33729 268.599983 784.307291 C 268.599983 770.272292 280.249982 758.902293 294.619981 758.902293 C 308.98498 758.902293 320.63498 770.272292 320.63498 784.307291 Z M 320.63498 784.307291 " transform="matrix(0.78125,0,0,0.78125,0,-447.158079)"/>
|
||||
<path style="fill:none;stroke-width:17.875193;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:4;" d="M 237.319985 784.307291 C 237.319985 798.33729 225.674986 809.71229 211.304987 809.71229 C 196.934987 809.71229 185.284988 798.33729 185.284988 784.307291 C 185.284988 770.272292 196.934987 758.902293 211.304987 758.902293 C 225.674986 758.902293 237.319985 770.272292 237.319985 784.307291 Z M 237.319985 784.307291 " transform="matrix(0.78125,0,0,0.78125,0,-447.158079)"/>
|
||||
|
|
Before Width: | Height: | Size: 7.2 KiB After Width: | Height: | Size: 7.2 KiB |
|
@ -1,5 +1,5 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="375px" height="375px" viewBox="0 0 375 375" version="1.1">
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="375px" height="375px" viewBox="0 0 375 375" version="1.1">
|
||||
<g id="surface1">
|
||||
<path style="fill:none;stroke-width:24.266453;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:4;" d="M 330.48 883.842122 C 330.48 902.887122 314.67 918.332122 295.16 918.332122 C 275.655 918.332122 259.84 902.887122 259.84 883.842122 C 259.84 864.792122 275.655 849.352122 295.16 849.352122 C 314.67 849.352122 330.48 864.792122 330.48 883.842122 Z M 330.48 883.842122 " transform="matrix(0.78125,0,0,0.78125,0,-447.157907)"/>
|
||||
<path style="fill:none;stroke-width:24.266453;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:4;" d="M 217.38 883.842122 C 217.38 902.887122 201.565 918.332122 182.06 918.332122 C 162.55 918.332122 146.735 902.887122 146.735 883.842122 C 146.735 864.792122 162.55 849.352122 182.06 849.352122 C 201.565 849.352122 217.38 864.792122 217.38 883.842122 Z M 217.38 883.842122 " transform="matrix(0.78125,0,0,0.78125,0,-447.157907)"/>
|
||||
|
|
Before Width: | Height: | Size: 4.8 KiB After Width: | Height: | Size: 4.8 KiB |
|
@ -1,5 +1,5 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="375px" height="375px" viewBox="0 0 375 375" version="1.1">
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="375px" height="375px" viewBox="0 0 375 375" version="1.1">
|
||||
<g id="surface1">
|
||||
<path style="fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;stroke-width:0.184114;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:4;" d="M 63.116174 171.409692 C 63.116174 171.409692 41.832384 172.788348 31.802205 180.281349 C 26.926816 183.923427 24.018516 200.08065 22.859994 206.056706 C 19.353382 224.148562 29.898616 224.36164 44.953762 234.988718 C 60.082285 245.669419 117.109522 241.821319 87.037331 236.567752 C 13.035838 223.63774 63.116174 171.409692 63.116174 171.409692 Z M 63.116174 171.409692 " transform="matrix(2.768208,0,0,2.768208,0.0000211198,-447.157923)"/>
|
||||
<path style="fill:none;stroke-width:23;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:4;" d="M 455.973483 566.026029 C 455.973483 584.082715 440.984925 598.719193 422.497121 598.719193 C 404.002131 598.719193 389.013573 584.082715 389.013573 566.026029 C 389.013573 547.976529 404.002131 533.340051 422.497121 533.340051 C 440.984925 533.340051 455.973483 547.976529 455.973483 566.026029 Z M 455.973483 566.026029 " transform="matrix(0.543644,0,0,0.543644,31.593287,-153.107197)"/>
|
||||
|
|
Before Width: | Height: | Size: 6.5 KiB After Width: | Height: | Size: 6.4 KiB |
|
@ -1,5 +1,5 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="375px" height="375px" viewBox="0 0 375 375" version="1.1">
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="375px" height="375px" viewBox="0 0 375 375" version="1.1">
|
||||
<g id="surface1">
|
||||
<path style="fill:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:4;" d="M -5.965296 29.423413 C -5.965296 39.852383 -14.419314 48.305573 -24.847456 48.305573 C -35.275598 48.305573 -43.729617 39.852383 -43.729617 29.423413 L -43.729617 12.949467 C -43.729617 2.520497 -35.275598 -5.932693 -24.847456 -5.932693 C -14.419314 -5.932693 -5.965296 2.520497 -5.965296 12.949467 Z M -5.965296 29.423413 " transform="matrix(4.715306,0,0,4.715306,304.663348,87.599462)"/>
|
||||
<path style="fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;stroke-width:1.934773;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:4;" d="M -33.823379 29.499627 C -33.823379 30.34213 -34.505996 31.023919 -35.34767 31.023919 C -36.189344 31.023919 -36.871962 30.34213 -36.871962 29.499627 C -36.871962 28.657953 -36.189344 27.976164 -35.34767 27.976164 C -34.505996 27.976164 -33.823379 28.657953 -33.823379 29.499627 Z M -33.823379 29.499627 " transform="matrix(4.715306,0,0,4.715306,304.663348,87.599462)"/>
|
||||
|
|
Before Width: | Height: | Size: 4.6 KiB After Width: | Height: | Size: 4.6 KiB |
|
@ -1,5 +1,5 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="373px" height="374px" viewBox="0 0 373 374" version="1.1">
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="373px" height="374px" viewBox="0 0 373 374" version="1.1">
|
||||
<g id="surface1">
|
||||
<path style="fill:none;stroke-width:1.322917;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:4;" d="M 52.916604 270.475504 C 52.916604 285.124745 41.100326 296.999852 26.52448 296.999852 C 11.948633 296.999852 0.132355 285.124745 0.132355 270.475504 C 0.132355 255.826263 11.948633 243.951156 26.52448 243.951156 C 41.100326 243.951156 52.916604 255.826263 52.916604 270.475504 Z M 52.916604 270.475504 " transform="matrix(6.893628,0,0,6.878556,3.650092,-1673.480939)"/>
|
||||
<path style="fill:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:4;" d="M 29.537905 253.601846 C 29.537905 255.266326 28.18872 256.615628 26.52448 256.615628 C 24.860239 256.615628 23.511054 255.266326 23.511054 253.601846 C 23.511054 251.937934 24.860239 250.588631 26.52448 250.588631 C 28.18872 250.588631 29.537905 251.937934 29.537905 253.601846 Z M 29.537905 253.601846 " transform="matrix(6.893628,0,0,6.878556,3.650092,-1673.480939)"/>
|
||||
|
|
Before Width: | Height: | Size: 1.9 KiB After Width: | Height: | Size: 1.9 KiB |
|
@ -1,5 +1,5 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="379px" height="293px" viewBox="0 0 379 293" version="1.1">
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="379px" height="293px" viewBox="0 0 379 293" version="1.1">
|
||||
<g id="surface1">
|
||||
<path style="fill:none;stroke-width:1.125885;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:0.922222;stroke-miterlimit:4;" d="M -57.142719 221.950279 C -57.142719 231.632493 -67.352694 239.48171 -79.948995 239.482675 C -92.544812 239.48364 -102.757205 231.63587 -102.759624 221.953657 C -102.762043 212.271443 -92.553519 204.420778 -79.957702 204.417883 C -67.361401 204.414989 -57.147557 212.261311 -57.142719 221.943524 " transform="matrix(-8.074977,0,0,8.09595,-456.101941,-1650.39845)"/>
|
||||
<path style="fill:none;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.922222;stroke-miterlimit:4;" d="M 95.928142 223.116468 L 87.13071 223.19415 L 83.996026 225.137154 L 75.906317 225.137154 " transform="matrix(8.074977,0,0,8.09595,-456.101941,-1650.39845)"/>
|
||||
|
|
Before Width: | Height: | Size: 2.6 KiB After Width: | Height: | Size: 2.6 KiB |
|
@ -1,5 +1,5 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="379px" height="293px" viewBox="0 0 379 293" version="1.1">
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="379px" height="293px" viewBox="0 0 379 293" version="1.1">
|
||||
<g id="surface1">
|
||||
<path style="fill:none;stroke-width:1.125885;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:0.922222;stroke-miterlimit:4;" d="M -57.142719 221.950279 C -57.142719 231.632493 -67.352694 239.48171 -79.948995 239.482675 C -92.544812 239.48364 -102.757205 231.63587 -102.759624 221.953657 C -102.762043 212.271443 -92.553519 204.420778 -79.957702 204.417883 C -67.361401 204.414989 -57.147557 212.261311 -57.142719 221.943524 " transform="matrix(-8.074977,0,0,8.09595,-456.101941,-1650.39845)"/>
|
||||
<path style="fill:none;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.922222;stroke-miterlimit:4;" d="M 95.928142 223.116468 L 87.13071 223.19415 L 83.996026 225.137154 L 75.906317 225.137154 " transform="matrix(8.074977,0,0,8.09595,-456.101941,-1650.39845)"/>
|
||||
|
|
Before Width: | Height: | Size: 3.3 KiB After Width: | Height: | Size: 3.3 KiB |
|
@ -1,5 +1,5 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="374px" height="326px" viewBox="0 0 374 326" version="1.1">
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="374px" height="326px" viewBox="0 0 374 326" version="1.1">
|
||||
<g id="surface1">
|
||||
<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:17;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(80.000001%,0%,0%);stroke-opacity:1;stroke-miterlimit:4;" d="M 92.499367 8.499836 L 8.499711 152.499325 L 176.499023 152.499325 Z M 92.499367 8.499836 " transform="matrix(2.021632,0,0,2.024855,0.000305411,0)"/>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 189.972656 227.03125 C 189.535156 228.285156 188.539062 229.265625 187.277344 229.6875 C 186.019531 230.109375 184.636719 229.921875 183.53125 229.179688 L 179.238281 222.726562 L 179.238281 188.3125 L 166.351562 209.824219 L 142.730469 196.917969 L 162.058594 158.203125 L 149.171875 158.203125 L 131.992188 188.3125 L 125.550781 181.863281 L 125.550781 175.410156 L 142.730469 145.296875 L 185.679688 145.296875 C 190.421875 145.296875 194.269531 149.148438 194.269531 153.902344 Z M 224.332031 252.839844 L 136.289062 179.710938 L 138.433594 173.257812 L 228.628906 248.539062 L 245.808594 227.03125 C 247.601562 223.320312 251.355469 220.964844 255.472656 220.964844 C 259.585938 220.964844 263.339844 223.320312 265.132812 227.03125 L 312.378906 289.40625 L 189.972656 289.40625 L 217.890625 254.992188 Z M 164.203125 214.125 L 179.238281 235.632812 L 181.382812 289.40625 C 175.96875 288.75 171.1875 285.554688 168.5 280.800781 L 166.351562 244.238281 L 149.171875 220.578125 L 110.519531 287.253906 C 108.613281 286.390625 107.085938 284.863281 106.222656 282.953125 L 104.078125 270.046875 L 140.582031 201.21875 Z M 192.121094 136.695312 C 192.121094 128.378906 198.851562 121.636719 207.152344 121.636719 C 215.457031 121.636719 222.183594 128.378906 222.183594 136.695312 C 222.183594 145.007812 215.457031 151.75 207.152344 151.75 C 198.851562 151.75 192.121094 145.007812 192.121094 136.695312 "/>
|
||||
|
|
Before Width: | Height: | Size: 2 KiB After Width: | Height: | Size: 2 KiB |
|
@ -1,5 +1,5 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="372px" height="345px" viewBox="0 0 372 345" version="1.1">
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="372px" height="345px" viewBox="0 0 372 345" version="1.1">
|
||||
<g id="surface1">
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 343.089844 18.445312 C 348.691406 18.445312 353.855469 23.03125 353.855469 28.632812 L 353.855469 124.007812 C 353.855469 129.617188 348.515625 134.199219 342.914062 134.199219 L 29.089844 134.199219 C 23.484375 134.199219 18.144531 129.613281 18.144531 124.007812 L 18.144531 28.632812 C 18.144531 23.027344 23.484375 18.445312 29.089844 18.445312 L 342.511719 18.445312 M 342.914062 0.285156 L 29.089844 0.285156 C 13.175781 0.285156 0 12.710938 0 28.632812 L 0 124.007812 C 0 139.929688 13.175781 152.359375 29.089844 152.359375 L 342.914062 152.359375 C 358.828125 152.359375 372 139.929688 372 124.007812 L 372 28.632812 C 372 12.710938 358.828125 0.285156 342.914062 0.285156 Z M 342.914062 0.285156 "/>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 102.074219 95.613281 C 102.074219 96.863281 101.050781 97.882812 99.804688 97.882812 L 72.585938 97.882812 C 71.335938 97.882812 70.316406 96.863281 70.316406 95.613281 L 70.316406 72.917969 C 70.316406 71.667969 71.335938 70.648438 72.585938 70.648438 L 99.804688 70.648438 C 101.050781 70.648438 102.074219 71.667969 102.074219 72.917969 Z M 102.074219 95.613281 "/>
|
||||
|
|
Before Width: | Height: | Size: 5.1 KiB After Width: | Height: | Size: 5.1 KiB |
|
@ -1,5 +1,5 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="371px" height="190px" viewBox="0 0 371 190" version="1.1">
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="371px" height="190px" viewBox="0 0 371 190" version="1.1">
|
||||
<g id="surface1">
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(100%,35.294119%,67.843139%);fill-opacity:1;" d="M 30.542969 0 L 340.457031 0 C 357.261719 0 370.792969 13.542969 370.792969 30.363281 L 370.792969 159.636719 C 370.792969 176.457031 357.261719 190 340.457031 190 L 30.542969 190 C 13.738281 190 0.210938 176.457031 0.210938 159.636719 L 0.210938 30.363281 C 0.210938 13.542969 13.738281 0 30.542969 0 Z M 30.542969 0 "/>
|
||||
<path style="fill:none;stroke-width:5.0152;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:4;" d="M 8.747177 22.772972 L 8.747177 65.005236 C 15.786155 65.005236 22.825134 72.044549 22.825134 79.083862 L 148.642348 79.083862 C 148.642348 72.044549 155.681326 65.005236 162.720304 65.005236 L 162.720304 22.772972 C 155.681326 22.772972 148.642348 15.733659 148.642348 8.694346 L 22.825134 8.694346 C 22.825134 15.733659 15.786155 22.772972 8.747177 22.772972 Z M 8.747177 22.772972 " transform="matrix(2.159848,0,0,2.161965,0.208987,0.000000000000015341)"/>
|
||||
|
|
Before Width: | Height: | Size: 1.3 KiB After Width: | Height: | Size: 1.2 KiB |
|
@ -1,5 +1,5 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="374px" height="328px" viewBox="0 0 374 328" version="1.1">
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="374px" height="328px" viewBox="0 0 374 328" version="1.1">
|
||||
<g id="surface1">
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(92.941177%,10.980392%,14.117648%);fill-opacity:1;" d="M 170.21875 318.898438 C 173.652344 324.359375 179.734375 327.785156 186.757812 327.785156 C 193.464844 327.785156 196.4375 324.503906 200.023438 319.519531 L 370.292969 33.160156 C 376.230469 25.363281 374.816406 13.035156 367.640625 5.863281 C 363.582031 1.808594 358.898438 -0.0625 353.59375 0.246094 L 16.335938 0.402344 C 12.4375 1.027344 8.6875 2.898438 5.722656 5.863281 C -0.0507812 11.789062 -1.457031 20.367188 1.507812 27.703125 Z M 170.21875 318.898438 "/>
|
||||
<path style=" stroke:none;fill-rule:evenodd;fill:rgb(100%,100%,100%);fill-opacity:1;" d="M 187.070312 267.273438 L 316.917969 42.828125 L 57.222656 42.828125 Z M 187.070312 267.273438 "/>
|
||||
|
|
Before Width: | Height: | Size: 6.2 KiB After Width: | Height: | Size: 6.1 KiB |
|
@ -1,5 +1,5 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="374px" height="328px" viewBox="0 0 374 328" version="1.1">
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="374px" height="328px" viewBox="0 0 374 328" version="1.1">
|
||||
<g id="surface1">
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(92.941177%,10.980392%,14.117648%);fill-opacity:1;" d="M 170.21875 318.898438 C 173.652344 324.359375 179.734375 327.785156 186.757812 327.785156 C 193.464844 327.785156 196.4375 324.503906 200.023438 319.519531 L 370.292969 33.160156 C 376.230469 25.363281 374.816406 13.035156 367.640625 5.863281 C 363.582031 1.808594 358.898438 -0.0625 353.59375 0.246094 L 16.335938 0.402344 C 12.4375 1.027344 8.6875 2.898438 5.722656 5.863281 C -0.0507812 11.789062 -1.457031 20.367188 1.507812 27.703125 Z M 170.21875 318.898438 "/>
|
||||
<path style=" stroke:none;fill-rule:evenodd;fill:rgb(100%,100%,100%);fill-opacity:1;" d="M 316.917969 42.828125 L 57.222656 42.828125 L 187.070312 267.273438 Z M 316.917969 42.828125 "/>
|
||||
|
|
Before Width: | Height: | Size: 6.2 KiB After Width: | Height: | Size: 6.1 KiB |
|
@ -1,5 +1,5 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="375px" height="375px" viewBox="0 0 375 375" version="1.1">
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="375px" height="375px" viewBox="0 0 375 375" version="1.1">
|
||||
<g id="surface1">
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(32.156864%,60.392159%,86.666667%);fill-opacity:1;" d="M 375 187.5 C 375 291.054688 291.054688 375 187.5 375 C 83.949219 375 0 291.054688 0 187.5 C 0 83.949219 83.949219 0 187.5 0 C 291.054688 0 375 83.949219 375 187.5 "/>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:0.2;" d="M 270.765625 234.351562 L 319.683594 320.417969 C 328.539062 311.613281 336.519531 301.929688 343.484375 291.507812 L 299.964844 234.351562 Z M 77.339844 234.375 L 32.359375 292.84375 C 39.398438 303.183594 47.460938 312.765625 56.375 321.488281 L 106.636719 234.375 Z M 127.230469 234.375 L 80.042969 341.0625 C 85.429688 344.839844 91.011719 348.355469 96.796875 351.5625 L 123.050781 351.5625 L 155.277344 234.375 Z M 172.851562 234.375 L 161.082031 351.574219 L 213.816406 351.574219 L 202.148438 234.375 Z M 221.203125 234.375 L 251.964844 351.5625 L 278.320312 351.5625 C 285.136719 347.78125 291.691406 343.585938 297.953125 339.011719 L 251.019531 234.375 Z M 221.203125 234.375 "/>
|
||||
|
|
Before Width: | Height: | Size: 7.8 KiB After Width: | Height: | Size: 7.8 KiB |
|
@ -1,5 +1,5 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="375px" height="375px" viewBox="0 0 375 375" version="1.1">
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="375px" height="375px" viewBox="0 0 375 375" version="1.1">
|
||||
<g id="surface1">
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(32.156864%,60.392159%,86.666667%);fill-opacity:1;" d="M 349.863281 281.234375 C 298.09375 370.898438 183.4375 401.621094 93.777344 349.855469 C 4.113281 298.085938 -26.609375 183.429688 25.15625 93.765625 C 76.925781 4.105469 191.582031 -26.621094 281.242188 25.148438 C 370.90625 76.914062 401.632812 191.570312 349.863281 281.234375 "/>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:0.2;" d="M 127.234375 58.613281 L 127.234375 82.046875 L 80.367188 82.046875 C 77.277344 118.269531 97.992188 118.703125 127.234375 140.632812 L 127.234375 164.066406 L 80.367188 164.066406 C 77.277344 200.285156 97.992188 200.71875 127.234375 222.652344 L 127.234375 246.085938 L 80.367188 246.085938 C 77.277344 282.304688 97.992188 282.738281 127.234375 304.671875 L 127.234375 339.820312 L 244.398438 339.820312 L 244.398438 304.671875 C 273.640625 282.738281 294.355469 282.304688 291.265625 246.085938 L 244.398438 246.085938 L 244.398438 222.652344 C 273.640625 200.71875 294.355469 200.289062 291.265625 164.066406 L 244.398438 164.066406 L 244.398438 140.632812 C 273.640625 118.703125 294.355469 118.269531 291.265625 82.046875 L 244.398438 82.046875 L 244.398438 58.613281 Z M 127.234375 58.613281 "/>
|
||||
|
|
Before Width: | Height: | Size: 6.7 KiB After Width: | Height: | Size: 6.6 KiB |
|
@ -1,5 +1,5 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="375px" height="375px" viewBox="0 0 375 375" version="1.1">
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="375px" height="375px" viewBox="0 0 375 375" version="1.1">
|
||||
<g id="surface1">
|
||||
<rect x="0" y="0" width="375" height="375" style="fill:rgb(16.078432%,73.333335%,24.313726%);fill-opacity:1;stroke:none;"/>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;" d="M 279.210938 32.8125 L 309.375 32.8125 L 309.375 63.179688 L 339.742188 63.179688 L 339.742188 93.34375 L 309.375 93.34375 L 309.375 123.710938 L 279.210938 123.710938 L 279.210938 93.34375 L 248.84375 93.34375 L 248.84375 63.179688 L 279.210938 63.179688 Z M 279.210938 32.8125 "/>
|
||||
|
|
Before Width: | Height: | Size: 1.4 KiB After Width: | Height: | Size: 1.4 KiB |
|
@ -1,5 +1,5 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="375px" height="375px" viewBox="0 0 375 375" version="1.1">
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="375px" height="375px" viewBox="0 0 375 375" version="1.1">
|
||||
<g id="surface1">
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 63.628906 7.519531 C 61.664062 7.894531 60.253906 9.632812 60.289062 11.636719 L 60.289062 361.71875 L 23.269531 361.71875 C 23.011719 361.691406 22.753906 361.691406 22.496094 361.71875 C 20.226562 361.929688 18.554688 363.945312 18.769531 366.222656 C 18.980469 368.496094 20.996094 370.167969 23.269531 369.953125 L 352.339844 369.953125 C 353.820312 369.976562 355.199219 369.195312 355.949219 367.914062 C 356.695312 366.628906 356.695312 365.042969 355.949219 363.761719 C 355.199219 362.476562 353.820312 361.695312 352.339844 361.71875 L 315.316406 361.71875 L 315.316406 11.636719 C 315.316406 9.363281 313.476562 7.519531 311.203125 7.519531 L 64.402344 7.519531 C 64.144531 7.496094 63.886719 7.496094 63.628906 7.519531 Z M 68.515625 15.753906 L 307.089844 15.753906 L 307.089844 361.71875 L 282.410156 361.71875 L 282.410156 44.585938 C 282.410156 42.3125 280.570312 40.46875 278.296875 40.46875 L 97.308594 40.46875 C 97.050781 40.441406 96.792969 40.441406 96.539062 40.46875 C 94.570312 40.84375 93.160156 42.582031 93.195312 44.585938 L 93.195312 361.71875 L 68.515625 361.71875 Z M 101.421875 48.703125 L 274.183594 48.703125 L 274.183594 361.71875 L 101.421875 361.71875 Z M 237.164062 199.03125 C 234.121094 199.03125 231.515625 200.691406 230.09375 203.152344 L 212.484375 203.152344 C 212.226562 203.128906 211.96875 203.128906 211.710938 203.152344 C 209.449219 203.375 207.789062 205.386719 208.003906 207.65625 C 208.214844 209.921875 210.21875 211.589844 212.484375 211.390625 L 230.09375 211.390625 C 231.515625 213.847656 234.121094 215.507812 237.164062 215.507812 C 241.707031 215.507812 245.390625 211.820312 245.390625 207.269531 C 245.390625 202.722656 241.707031 199.03125 237.164062 199.03125 Z M 237.164062 199.03125 "/>
|
||||
</g>
|
||||
|
|
Before Width: | Height: | Size: 2 KiB After Width: | Height: | Size: 2 KiB |
|
@ -1,5 +1,5 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="375px" height="375px" viewBox="0 0 375 375" version="1.1">
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="375px" height="375px" viewBox="0 0 375 375" version="1.1">
|
||||
<g id="surface1">
|
||||
<path style="fill:none;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:4;" d="M 0 1031.362212 L 114.000007 1031.362212 " transform="matrix(3.307291,0,0,3.307291,0,-3105.468564)"/>
|
||||
<path style="fill-rule:nonzero;fill:rgb(88.627452%,88.627452%,88.627452%);fill-opacity:1;stroke-width:2;stroke-linecap:square;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:4;" d="M 34.500002 951.362601 L 94.500006 951.362601 L 94.500006 1031.362212 L 34.500002 1031.362212 Z M 34.500002 951.362601 " transform="matrix(3.307291,0,0,3.307291,0,-3105.468564)"/>
|
||||
|
|
Before Width: | Height: | Size: 3.6 KiB After Width: | Height: | Size: 3.5 KiB |
|
@ -1,5 +1,5 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="374px" height="260px" viewBox="0 0 374 260" version="1.1">
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="374px" height="260px" viewBox="0 0 374 260" version="1.1">
|
||||
<g id="surface1">
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 77.988281 48.621094 L 77.988281 59.058594 L 69.695312 59.058594 C 64.503906 59.058594 60.796875 59.632812 58.570312 60.78125 C 56.347656 61.933594 55.230469 63.621094 55.230469 65.851562 C 55.230469 67.675781 56.246094 69.160156 58.265625 70.308594 C 60.289062 71.457031 63.695312 72.035156 68.480469 72.035156 C 72.597656 72.035156 76.4375 71.59375 80.007812 70.714844 C 83.585938 69.835938 86.515625 68.855469 88.804688 67.773438 L 88.804688 79.835938 C 86.316406 80.980469 83.246094 81.929688 79.605469 82.671875 C 75.964844 83.347656 71.886719 83.683594 67.371094 83.683594 C 57.863281 83.683594 50.984375 82.203125 46.738281 79.226562 C 42.492188 76.253906 40.367188 72.300781 40.367188 67.371094 C 40.367188 63.316406 41.582031 60.277344 44.007812 58.25 C 46.503906 56.222656 49.773438 54.835938 53.820312 54.097656 L 53.820312 53.589844 C 50.316406 52.777344 47.683594 51.289062 45.933594 49.128906 C 44.179688 46.898438 43.300781 44.128906 43.300781 40.816406 C 43.300781 37.304688 44.378906 34.5 46.539062 32.40625 C 48.695312 30.246094 51.59375 28.6875 55.230469 27.746094 C 58.871094 26.796875 62.921875 26.328125 67.371094 26.328125 C 71.210938 26.328125 75.054688 26.699219 78.898438 27.441406 C 82.738281 28.1875 86.074219 29.195312 88.910156 30.480469 L 84.253906 41.425781 C 81.828125 40.414062 79.300781 39.5 76.671875 38.691406 C 74.113281 37.878906 71.144531 37.472656 67.773438 37.472656 C 60.425781 37.472656 56.75 39.199219 56.75 42.644531 C 56.75 44.804688 57.832031 46.359375 59.984375 47.300781 C 62.214844 48.183594 65.683594 48.621094 70.40625 48.621094 Z M 77.988281 48.621094 "/>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 143.210938 27.339844 L 143.210938 38.691406 L 123.59375 38.691406 L 123.59375 65.34375 C 123.59375 67.4375 124.199219 69.027344 125.414062 70.105469 C 126.625 71.121094 128.210938 71.625 130.167969 71.625 C 131.851562 71.625 133.472656 71.457031 135.019531 71.121094 C 136.574219 70.78125 138.121094 70.378906 139.675781 69.902344 L 139.675781 81.152344 C 138.191406 81.828125 136.300781 82.402344 134.011719 82.878906 C 131.785156 83.417969 129.355469 83.683594 126.730469 83.683594 C 123.289062 83.683594 120.1875 83.144531 117.425781 82.066406 C 114.726562 80.980469 112.570312 79.125 110.957031 76.492188 C 109.335938 73.789062 108.527344 70.074219 108.527344 65.34375 L 108.527344 38.691406 L 94.671875 38.691406 L 94.671875 32.40625 L 103.371094 27.339844 Z M 143.210938 27.339844 "/>
|
||||
|
|
Before Width: | Height: | Size: 13 KiB After Width: | Height: | Size: 13 KiB |
|
@ -1,5 +1,5 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="352px" height="375px" viewBox="0 0 352 375" version="1.1">
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="352px" height="375px" viewBox="0 0 352 375" version="1.1">
|
||||
<g id="surface1">
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0.392157%,49.803922%,0%);fill-opacity:1;" d="M 330.257812 7.449219 C 321.976562 9.625 304.480469 13.554688 291.433594 16.140625 C 258.203125 22.660156 252.921875 24.628906 238.117188 35.597656 C 217.101562 51.222656 202.398438 81.4375 202.503906 108.859375 C 202.605469 119.308594 204.160156 126.757812 205.921875 124.792969 C 206.335938 124.277344 207.785156 121.273438 209.027344 118.171875 C 215.339844 102.960938 233.664062 79.78125 249.296875 67.261719 C 257.269531 60.84375 273.316406 54.53125 273.316406 57.84375 C 273.316406 58.980469 267.832031 65.8125 261.308594 72.640625 C 255.199219 79.160156 253.128906 81.851562 241.636719 98.511719 C 229.730469 115.996094 214.203125 147.246094 203.746094 175.082031 C 193.601562 202.089844 186.144531 223.613281 181.175781 239.753906 C 172.789062 267.382812 165.234375 289.21875 163.886719 289.632812 C 162.230469 290.253906 157.675781 275.457031 148.152344 238.722656 C 133.347656 181.1875 127.03125 161.425781 111.914062 125.414062 C 101.5625 100.890625 87.894531 81.230469 60.152344 51.117188 C 44.933594 34.457031 23.292969 18.523438 10.25 14.175781 C 1.761719 11.277344 1.035156 12.726562 7.453125 19.867188 C 37.683594 53.910156 55.179688 79.160156 73.714844 115.066406 C 89.347656 145.59375 100.113281 175.910156 119.679688 245.445312 C 124.648438 263.246094 135.625 308.566406 139.144531 326.160156 C 143.078125 345.714844 147.425781 364.859375 148.566406 367.859375 C 148.980469 368.792969 150.53125 370.03125 152.085938 370.445312 C 155.605469 371.378906 172.582031 371.378906 176.207031 370.445312 C 181.589844 368.894531 182.625 364.652344 190.078125 315.8125 C 195.050781 282.800781 199.292969 263.039062 207.785156 233.546875 C 222.175781 183.257812 237.496094 146.417969 246.8125 140.417969 C 248.160156 139.589844 254.785156 137.933594 261.722656 136.796875 C 288.640625 132.347656 310.277344 120.445312 325.601562 101.511719 C 335.847656 88.886719 338.542969 79.574219 341.128906 48.53125 C 342.476562 32.078125 343.304688 27.421875 346.410156 17.589844 C 348.375 11.175781 349.722656 5.378906 349.515625 4.65625 C 348.789062 2.792969 347.132812 3 330.257812 7.449219 Z M 330.257812 7.449219 "/>
|
||||
</g>
|
||||
|
|
Before Width: | Height: | Size: 2.4 KiB After Width: | Height: | Size: 2.4 KiB |
|
@ -1,5 +1,5 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="375px" height="375px" viewBox="0 0 375 375" version="1.1">
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="375px" height="375px" viewBox="0 0 375 375" version="1.1">
|
||||
<g id="surface1">
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(78.039217%,45.490196%,0%);fill-opacity:1;" d="M 140.625 93.75 C 70.3125 93.75 45.9375 140.644531 46.875 164.0625 L 46.875 187.5 L 328.125 187.5 L 328.125 164.0625 C 328.125 140.625 304.6875 93.75 234.375 93.75 Z M 46.875 210.9375 C 23.4375 210.9375 23.4375 234.375 46.875 234.375 L 328.125 234.375 C 351.5625 234.375 351.5625 210.9375 328.125 210.9375 Z M 46.875 258.546875 L 46.875 273.195312 C 46.875 289.230469 65.996094 304.6875 82.03125 304.6875 L 292.96875 304.6875 C 309.003906 304.6875 328.125 289.230469 328.125 273.195312 L 328.125 258.546875 Z M 46.875 258.546875 "/>
|
||||
</g>
|
||||
|
|
Before Width: | Height: | Size: 874 B After Width: | Height: | Size: 831 B |
|
@ -1,5 +1,5 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="375px" height="375px" viewBox="0 0 375 375" version="1.1">
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="375px" height="375px" viewBox="0 0 375 375" version="1.1">
|
||||
<g id="surface1">
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(100%,74.117649%,28.235295%);fill-opacity:1;" d="M 212.800781 7.222656 L 212.800781 159.65625 L 180.308594 159.65625 L 180.308594 18.984375 C 180.308594 16.554688 181.539062 14.285156 183.582031 12.953125 L 201.625 1.183594 C 206.433594 -1.945312 212.800781 1.492188 212.800781 7.222656 Z M 212.800781 7.222656 "/>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(100%,61.176473%,14.901961%);fill-opacity:1;" d="M 211.484375 34.316406 C 203.230469 34.316406 196.261719 40.480469 195.28125 48.644531 L 192.40625 72.621094 L 192.40625 61.109375 C 192.40625 55.601562 189.644531 50.507812 185.015625 47.5 L 180.308594 44.429688 L 180.308594 159.660156 L 212.800781 159.660156 L 212.800781 34.371094 C 212.363281 34.332031 211.921875 34.316406 211.484375 34.316406 Z M 211.484375 34.316406 "/>
|
||||
|
|
Before Width: | Height: | Size: 5 KiB After Width: | Height: | Size: 5 KiB |
|
@ -1,5 +1,5 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="375px" height="375px" viewBox="0 0 375 375" version="1.1">
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="375px" height="375px" viewBox="0 0 375 375" version="1.1">
|
||||
<g id="surface1">
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(78.039217%,45.490196%,0%);fill-opacity:1;" d="M 40.179688 0 C 33.480469 0 26.785156 6.695312 26.785156 20.089844 L 26.785156 187.5 C 26.785156 214.285156 73.660156 214.285156 73.660156 241.070312 L 60.269531 375 L 127.230469 375 L 113.839844 241.070312 C 113.839844 214.285156 160.714844 214.285156 160.714844 187.5 L 160.714844 20.089844 C 160.714844 -6.695312 133.929688 -6.695312 133.929688 20.089844 L 133.929688 160.714844 C 133.929688 175.800781 107.144531 175.800781 107.144531 160.714844 L 107.144531 20.089844 C 107.144531 -6.695312 80.355469 -6.695312 80.355469 20.089844 L 80.355469 160.714844 C 80.355469 174.839844 53.570312 174.839844 53.570312 160.714844 L 53.570312 20.089844 C 53.570312 6.695312 46.875 0 40.179688 0 Z M 267.855469 0 C 241.070312 0 187.5 53.570312 187.5 133.929688 C 187.5 214.285156 247.769531 241.070312 247.769531 241.070312 L 234.375 375 L 301.339844 375 L 287.945312 241.070312 C 287.945312 241.070312 348.214844 214.285156 348.214844 133.929688 C 348.214844 53.570312 294.644531 0 267.855469 0 Z M 267.855469 0 "/>
|
||||
</g>
|
||||
|
|
Before Width: | Height: | Size: 1.3 KiB After Width: | Height: | Size: 1.3 KiB |
|
@ -1,5 +1,5 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="301px" height="374px" viewBox="0 0 301 374" version="1.1">
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="301px" height="374px" viewBox="0 0 301 374" version="1.1">
|
||||
<g id="surface1">
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(9.019608%,8.627451%,8.235294%);fill-opacity:1;" d="M 162.921875 343.632812 C 157.445312 355.546875 140.484375 355.546875 135.007812 343.632812 L 40.582031 138.210938 C 35.914062 128.058594 43.347656 116.492188 54.539062 116.492188 L 243.390625 116.492188 C 254.582031 116.492188 262.015625 128.058594 257.347656 138.210938 Z M 162.921875 343.632812 "/>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(9.019608%,8.627451%,8.235294%);fill-opacity:1;" d="M 301 150.214844 C 301 233.171875 233.617188 300.425781 150.5 300.425781 C 67.382812 300.425781 0 233.171875 0 150.214844 C 0 67.253906 67.382812 0 150.5 0 C 233.617188 0 301 67.253906 301 150.214844 Z M 301 150.214844 "/>
|
||||
|
|
Before Width: | Height: | Size: 4 KiB After Width: | Height: | Size: 3.9 KiB |
|
@ -1,5 +1,5 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="375px" height="375px" viewBox="0 0 375 375" version="1.1">
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="375px" height="375px" viewBox="0 0 375 375" version="1.1">
|
||||
<g id="surface1">
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;" d="M 376.589844 187.5 C 376.589844 291.054688 292.640625 375 189.089844 375 C 85.535156 375 1.589844 291.054688 1.589844 187.5 C 1.589844 83.945312 85.535156 0 189.089844 0 C 292.640625 0 376.589844 83.945312 376.589844 187.5 Z M 376.589844 187.5 "/>
|
||||
<path style=" stroke:none;fill-rule:evenodd;fill:rgb(33.333334%,33.333334%,33.333334%);fill-opacity:1;" d="M 60.382812 60.382812 C 60.382812 145.128906 60.382812 229.871094 60.382812 314.617188 L 78.542969 314.617188 L 78.542969 260.140625 L 296.457031 260.140625 L 296.457031 314.617188 L 314.617188 314.617188 C 314.617188 229.871094 314.617188 145.128906 314.617188 60.382812 C 229.871094 60.382812 145.128906 60.382812 60.382812 60.382812 Z M 78.542969 78.542969 L 296.457031 78.542969 L 296.457031 241.980469 L 78.542969 241.980469 Z M 133.019531 114.859375 L 133.019531 133.019531 L 241.980469 133.019531 L 241.980469 114.859375 Z M 96.699219 151.179688 L 96.699219 169.339844 L 278.300781 169.339844 L 278.300781 151.179688 Z M 96.699219 187.5 L 96.699219 205.660156 L 278.300781 205.660156 L 278.300781 187.5 Z M 96.699219 187.5 "/>
|
||||
|
|
Before Width: | Height: | Size: 1.4 KiB After Width: | Height: | Size: 1.3 KiB |
|
@ -1,5 +1,5 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="373px" height="102px" viewBox="0 0 373 102" version="1.1">
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="373px" height="102px" viewBox="0 0 373 102" version="1.1">
|
||||
<g id="surface1">
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,51.372552%,47.450981%);fill-opacity:1;" d="M 201.476562 1.953125 C 190.464844 1.953125 181.167969 5.902344 173.371094 13.710938 C 165.675781 21.402344 161.726562 30.804688 161.726562 41.816406 C 161.726562 52.722656 165.675781 62.117188 173.371094 69.925781 C 181.167969 77.617188 190.464844 81.574219 201.476562 81.574219 C 212.484375 81.574219 221.78125 77.617188 229.585938 69.925781 C 237.382812 62.117188 241.332031 52.722656 241.332031 41.816406 C 241.332031 30.804688 237.382812 21.402344 229.585938 13.710938 C 221.78125 5.902344 212.484375 1.953125 201.476562 1.953125 C 190.46875 1.953125 201.476562 1.953125 201.476562 1.953125 Z M 213.226562 53.683594 C 209.921875 56.882812 206.070312 58.484375 201.476562 58.484375 C 196.773438 58.484375 192.925781 56.882812 189.613281 53.683594 C 186.402344 50.363281 184.804688 46.414062 184.804688 41.816406 C 184.804688 37.222656 186.402344 33.265625 189.613281 30.0625 C 192.925781 26.746094 196.773438 25.148438 201.476562 25.148438 C 206.070312 25.148438 209.921875 26.746094 213.226562 30.0625 C 216.644531 33.265625 218.25 37.222656 218.25 41.816406 C 218.25 46.414062 216.644531 50.363281 213.226562 53.683594 C 209.808594 57 213.226562 53.683594 213.226562 53.683594 Z M 270.738281 50.507812 L 300.65625 50.507812 L 300.65625 31.910156 L 270.738281 31.910156 L 270.738281 24.964844 L 301.1875 24.964844 L 301.1875 4.660156 L 247.65625 4.660156 L 247.65625 78.832031 L 301.300781 78.832031 L 301.300781 57.878906 L 270.738281 57.878906 Z M 348.785156 4.6875 L 348.785156 33.835938 L 307.6875 3.398438 L 307.6875 78.847656 L 330.796875 78.847656 L 330.796875 49.691406 L 371.894531 80.132812 L 371.894531 4.6875 Z M 146.222656 58.542969 C 152.375 52.390625 155.578125 44.757812 155.621094 36.078125 L 155.621094 35.996094 C 155.578125 27.3125 152.375 19.683594 146.222656 13.527344 C 140.023438 7.332031 132.328125 4.660156 123.574219 4.660156 L 86.816406 4.660156 L 86.816406 78.828125 L 110 78.828125 L 110 67.414062 L 121.921875 67.414062 L 146.542969 100.28125 L 165.03125 86.386719 L 145.007812 59.652344 C 145.414062 59.285156 145.828125 58.941406 146.222656 58.542969 C 146.613281 58.144531 146.222656 58.542969 146.222656 58.542969 Z M 110 27.421875 L 123.574219 27.421875 C 128.4375 27.421875 132.246094 31.296875 132.316406 36.039062 C 132.246094 40.777344 128.4375 44.648438 123.574219 44.648438 L 110 44.648438 Z M 80.304688 36.277344 L 42.207031 36.277344 L 42.207031 50.976562 L 55.082031 50.976562 C 54.441406 51.945312 53.691406 52.808594 52.832031 53.664062 C 49.613281 56.878906 45.632812 58.492188 41.023438 58.492188 C 36.414062 58.492188 32.4375 56.878906 29.117188 53.664062 C 25.890625 50.335938 24.285156 46.363281 24.285156 41.753906 C 24.285156 37.128906 25.890625 33.167969 29.117188 29.945312 C 32.4375 26.617188 36.414062 25.007812 41.023438 25.007812 C 45.632812 25.007812 48.863281 25.96875 52.078125 29.191406 L 69.25 13.519531 C 61.414062 5.6875 52.078125 1.722656 41.023438 1.722656 C 30.078125 1.722656 20.632812 5.6875 12.800781 13.519531 C 4.964844 21.246094 1.109375 30.699219 1.109375 41.753906 C 1.109375 52.699219 4.964844 62.140625 12.800781 69.976562 C 20.632812 77.707031 30.078125 81.675781 41.023438 81.675781 C 52.078125 81.675781 61.414062 77.707031 69.25 69.976562 C 77.082031 62.140625 80.304688 52.699219 80.304688 41.753906 Z M 80.304688 36.277344 "/>
|
||||
</g>
|
||||
|
|
Before Width: | Height: | Size: 3.6 KiB After Width: | Height: | Size: 3.5 KiB |
Before Width: | Height: | Size: 7.9 KiB After Width: | Height: | Size: 7.9 KiB |
|
@ -1,5 +1,5 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="375px" height="375px" viewBox="0 0 375 375" version="1.1">
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="375px" height="375px" viewBox="0 0 375 375" version="1.1">
|
||||
<g id="surface1">
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(33.333334%,33.333334%,33.333334%);fill-opacity:1;" d="M 187.5 0 L 53.570312 53.570312 L 53.570312 160.714844 L 321.429688 160.714844 L 321.429688 53.570312 Z M 80.355469 80.355469 L 133.929688 80.355469 L 133.929688 133.929688 L 80.355469 133.929688 Z M 160.714844 80.355469 L 214.285156 80.355469 L 214.285156 133.929688 L 160.714844 133.929688 Z M 241.070312 80.355469 L 294.644531 80.355469 L 294.644531 133.929688 L 241.070312 133.929688 Z M 104.632812 177.457031 L 80.355469 375 L 120.535156 375 L 125.558594 335.660156 L 187.5 294.644531 L 249.441406 336.496094 L 254.464844 375 L 294.644531 375 L 270.367188 178.292969 Z M 143.136719 192.523438 L 231.863281 193.359375 L 236.886719 235.210938 L 187.5 267.855469 L 138.113281 235.210938 Z M 134.765625 259.488281 L 167.410156 281.25 L 128.90625 307.199219 Z M 240.234375 259.488281 L 246.09375 307.199219 L 207.589844 281.25 Z M 240.234375 259.488281 "/>
|
||||
</g>
|
||||
|
|
Before Width: | Height: | Size: 1.2 KiB After Width: | Height: | Size: 1.1 KiB |
|
@ -1,5 +1,5 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="375px" height="375px" viewBox="0 0 375 375" version="1.1">
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="375px" height="375px" viewBox="0 0 375 375" version="1.1">
|
||||
<g id="surface1">
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(100%,80.784315%,0%);fill-opacity:1;" d="M 163.273438 373.449219 C 71.164062 361.566406 0 282.84375 0 187.5 C 0 83.945312 83.945312 0 187.5 0 C 291.054688 0 375 83.945312 375 187.5 C 375 282.84375 303.835938 361.566406 211.726562 373.449219 Z M 163.273438 373.449219 "/>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(100%,63.921571%,0%);fill-opacity:1;" d="M 211.535156 373.472656 C 303.738281 361.675781 375 282.910156 375 187.5 C 375 183.949219 374.902344 180.421875 374.707031 176.921875 L 284.097656 86.3125 L 104.957031 276.8125 L 199.65625 371.511719 Z M 211.535156 373.472656 "/>
|
||||
|
|
Before Width: | Height: | Size: 4.4 KiB After Width: | Height: | Size: 4.4 KiB |
|
@ -1,5 +1,5 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="374px" height="310px" viewBox="0 0 374 310" version="1.1">
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="374px" height="310px" viewBox="0 0 374 310" version="1.1">
|
||||
<g id="surface1">
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(54.901963%,40.392157%,14.901961%);fill-opacity:0.984314;" d="M 300.898438 137.203125 L 265.503906 136.078125 L 247.078125 90.785156 L 268.132812 90.785156 C 277.101562 90.785156 284.402344 83.46875 284.402344 74.46875 L 284.402344 64.058594 C 284.402344 55.0625 277.101562 47.742188 268.132812 47.742188 L 106.035156 47.742188 C 97.0625 47.742188 89.761719 55.0625 89.761719 64.058594 L 89.761719 74.46875 C 89.761719 83.46875 97.0625 90.785156 106.035156 90.785156 L 126.921875 90.785156 L 111.113281 139.082031 L 73.097656 139.082031 C 64.550781 139.082031 57.597656 146.054688 57.597656 154.625 C 56.855469 168.753906 57.023438 190.515625 73.097656 191.007812 L 88.140625 191.007812 L 63.773438 254 C 63.050781 255.863281 63.289062 257.964844 64.417969 259.617188 C 65.546875 261.269531 67.414062 262.257812 69.410156 262.257812 L 97.359375 262.257812 C 99.847656 262.257812 102.089844 260.71875 102.992188 258.394531 L 129.210938 191.007812 L 244.789062 191.007812 L 271.007812 258.394531 C 271.910156 260.71875 274.148438 262.257812 276.636719 262.257812 L 304.589844 262.257812 C 306.585938 262.257812 308.453125 261.269531 309.582031 259.617188 C 310.710938 257.964844 310.953125 255.863281 310.226562 254 L 285.859375 191.007812 L 300.902344 191.007812 C 309.449219 191.007812 316.402344 184.039062 316.402344 175.46875 C 316.402344 167.894531 316.402344 160.320312 316.402344 152.746094 C 316.402344 144.175781 309.292969 138.832031 300.898438 137.203125 Z M 205.796875 90.785156 L 229.902344 152.75 L 144.09375 152.75 L 168.203125 90.785156 Z M 205.796875 90.785156 "/>
|
||||
</g>
|
||||
|
|
Before Width: | Height: | Size: 1.8 KiB After Width: | Height: | Size: 1.8 KiB |
Before Width: | Height: | Size: 25 KiB After Width: | Height: | Size: 25 KiB |
|
@ -1,5 +1,5 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="375px" height="375px" viewBox="0 0 375 375" version="1.1">
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="375px" height="375px" viewBox="0 0 375 375" version="1.1">
|
||||
<g id="surface1">
|
||||
<path style=" stroke:none;fill-rule:evenodd;fill:rgb(93.333334%,67.843139%,10.196079%);fill-opacity:1;" d="M 7.5 193.75 L 15 195 C 16.605469 197.589844 17.597656 197.875 18.75 201.25 C 24.398438 209.53125 14.222656 240.039062 2.5 222.5 C -1.6875 217.191406 0.972656 207.6875 1.25 198.75 C 3.539062 197.359375 5.640625 195.679688 7.5 193.75 Z M 80 193.75 L 88.75 195 C 89.761719 196.832031 91.023438 198.515625 92.5 200 C 92.730469 209.148438 92.433594 217.808594 90 223.75 C 86.527344 225.53125 82.652344 226.394531 78.75 226.25 C 77.359375 223.960938 75.679688 221.859375 73.75 220 C 73.519531 210.851562 73.816406 202.191406 76.25 196.25 C 77.628906 195.628906 78.898438 194.785156 80 193.75 Z M 290 193.75 C 293.785156 193.726562 297.5625 194.144531 301.25 195 C 303.570312 203.554688 304.75 216.4375 301.25 225 C 296.007812 227.625 290.046875 229.199219 287.5 222.5 C 281.699219 214 287.0625 198.363281 290 193.75 Z M 328.75 193.75 L 336.25 195 C 337.261719 196.832031 338.523438 198.515625 340 200 C 340.546875 211.414062 343.515625 222.875 335 226.25 C 333.226562 227.453125 330.910156 227.46875 327.5 227.5 C 326.109375 225.210938 324.429688 223.109375 322.5 221.25 C 322.375 213.089844 322.472656 203.828125 323.75 197.5 C 325.582031 196.488281 327.265625 195.226562 328.75 193.75 Z M 41.25 195 C 45.035156 194.976562 48.8125 195.394531 52.5 196.25 C 54.375 202.652344 55.074219 211.5625 55 221.25 C 54 222.527344 54.554688 221.59375 53.75 223.75 C 50.21875 225.808594 49.46875 227.015625 43.75 227.5 C 41.582031 225.34375 40.269531 225.625 38.75 222.5 C 36.09375 219.335938 34.347656 205.792969 37.5 201.25 C 38.597656 197.851562 39.632812 197.578125 41.25 195 Z M 362.5 195 L 370 195 C 371.390625 197.289062 373.070312 199.390625 375 201.25 C 375.117188 208.691406 374.894531 216.847656 373.75 222.5 C 369.945312 224.726562 368.949219 225.976562 362.5 226.25 C 360.894531 223.957031 360.039062 224.109375 358.75 221.25 C 356.167969 217.3125 357.335938 206.164062 357.5 200 Z M 362.5 195 "/>
|
||||
<path style=" stroke:none;fill-rule:evenodd;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 187.5 88.75 L 203.75 90 C 208.742188 97.351562 212.589844 98.933594 212.5 112.5 C 208.625 116.492188 205.019531 120.984375 201.25 125 C 188.75 125.550781 180.441406 123.917969 177.5 115 C 173.136719 109.691406 175.960938 102.15625 177.5 96.25 C 181.074219 94.085938 184.421875 91.574219 187.5 88.75 Z M 185 136.25 C 210.71875 136.6875 217.070312 162.0625 235 170 C 242.355469 173.25 258.5 173.339844 266.25 175 C 268.308594 178.53125 269.515625 179.28125 270 185 C 264.703125 190.179688 262.808594 191.574219 251.25 191.25 C 244.765625 187.171875 233.25 189.808594 226.25 186.25 C 219.292969 182.710938 215.339844 174.125 207.5 171.25 L 207.5 172.5 C 213.304688 182.25 207.035156 206.980469 211.25 218.75 C 213.839844 225.980469 221.082031 233.613281 225 240 C 232.640625 252.460938 237.363281 265.035156 245 277.5 C 250.585938 286.625 259.046875 293.804688 260 307.5 C 258.421875 309.199219 258.292969 309.710938 257.5 312.5 C 253.71875 313.421875 253.089844 314.328125 248.75 315 C 232.8125 298.226562 221.046875 273.773438 208.75 253.75 C 204.046875 246.09375 201.832031 235.421875 195 230 L 193.75 228.75 C 192.421875 240.152344 182.5 267.519531 176.25 275 C 171.640625 280.519531 163.902344 284.847656 158.75 290 C 151.886719 296.863281 148.640625 306.03125 135 306.25 C 132.027344 301.8125 130.179688 301.769531 130 293.75 C 154.828125 274.652344 169.152344 253 177.5 217.5 C 176.667969 200 175.832031 182.5 175 165 L 173.75 165 L 152.5 181.25 C 147.445312 190.257812 148.910156 211.265625 145 221.25 C 141.527344 223.03125 137.652344 223.894531 133.75 223.75 C 132.359375 221.460938 130.679688 219.359375 128.75 217.5 C 130.832031 202.917969 132.917969 188.332031 135 173.75 C 146.445312 165.144531 156.90625 153.332031 168.75 145 C 173.65625 141.550781 180.625 140.269531 185 136.25 Z M 185 136.25 "/>
|
||||
|
|
Before Width: | Height: | Size: 4 KiB After Width: | Height: | Size: 4 KiB |
|
@ -1,5 +1,5 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="372px" height="250px" viewBox="0 0 372 250" version="1.1">
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="372px" height="250px" viewBox="0 0 372 250" version="1.1">
|
||||
<g id="surface1">
|
||||
<path style="fill:none;stroke-width:0.301;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:3.863;" d="M 11.947711 103.576168 L 143.44739 103.514429 C 149.707652 103.514429 154.762077 98.451843 154.762077 92.183726 L 154.822288 11.541421 C 154.822288 5.21319 149.766235 0.150604 143.509227 0.150604 L 11.466027 0.150604 C 5.207392 0.150604 0.149713 5.21319 0.149713 11.541421 L 0.149713 92.365693 C 0.149713 98.633811 5.205765 103.696396 11.4644 103.696396 Z M 11.947711 103.576168 " transform="matrix(2.400434,0,0,2.40428,0,0.161343)"/>
|
||||
<path style="fill-rule:evenodd;fill:rgb(0%,44.313726%,70.19608%);fill-opacity:1;stroke-width:0.301;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,44.313726%,70.19608%);stroke-opacity:1;stroke-miterlimit:3.863;" d="M 145.793971 94.656529 L 9.23824 94.656529 L 9.23824 9.190471 L 145.793971 9.190471 Z M 145.793971 94.656529 " transform="matrix(2.400434,0,0,2.40428,0,0.161343)"/>
|
||||
|
|
Before Width: | Height: | Size: 10 KiB After Width: | Height: | Size: 10 KiB |
|
@ -1,5 +1,5 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="375px" height="375px" viewBox="0 0 375 375" version="1.1">
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="375px" height="375px" viewBox="0 0 375 375" version="1.1">
|
||||
<g id="surface1">
|
||||
<path style=" stroke:none;fill-rule:evenodd;fill:rgb(48.627451%,72.156864%,18.431373%);fill-opacity:1;" d="M 272.273438 157.882812 L 283.375 157.882812 C 288.652344 165.753906 291.933594 165.835938 292.25 180.070312 C 290.464844 182.335938 291.460938 180.675781 290.03125 184.507812 C 277.820312 189.164062 271.804688 188.195312 272.28125 206.695312 L 294.46875 208.914062 C 296.546875 216.011719 298.328125 216.671875 298.90625 226.664062 C 297.121094 228.929688 298.121094 227.273438 296.6875 231.101562 C 289.433594 234.800781 279.160156 237.371094 276.71875 246.636719 C 278.53125 249.414062 280.019531 252.390625 281.15625 255.511719 C 290.601562 253.023438 293.042969 251.417969 303.34375 253.289062 C 307.664062 260.136719 309.75 260.90625 310 273.261719 C 305.496094 277.316406 299.335938 283.054688 296.6875 288.792969 C 301.132812 292.03125 304.28125 296.753906 305.5625 302.105469 C 298.082031 306.832031 288.304688 314.675781 283.375 322.074219 L 281.15625 319.855469 C 276.300781 315.09375 274.558594 309.6875 267.839844 306.542969 C 263.117188 311.179688 259.230469 312.5625 250.089844 313.199219 C 242.449219 305.4375 238.898438 305.515625 238.992188 288.792969 C 246.722656 284.199219 251.640625 281.191406 252.304688 268.824219 C 248.203125 263.660156 246.070312 255.285156 243.429688 248.851562 C 228 252.199219 218.445312 248.316406 219.023438 228.882812 C 223.527344 224.675781 223.160156 222.507812 230.121094 220.007812 C 232.734375 218.226562 233.851562 218.292969 238.996094 217.789062 L 238.996094 188.945312 C 230.628906 189.390625 222.269531 187.871094 214.59375 184.507812 C 210.328125 174.875 208.296875 166.847656 216.808594 160.097656 C 222.082031 155.863281 228.984375 155.527344 239.007812 155.660156 C 239.984375 138.234375 247.496094 128.8125 250.109375 113.503906 C 241.621094 108.589844 237.609375 104.257812 236.796875 91.304688 C 241.304688 87.097656 240.933594 84.933594 247.898438 82.429688 C 254.5625 78.410156 263.371094 84.683594 265.648438 82.429688 C 272.574219 76.933594 277.238281 66.347656 281.179688 58.023438 L 285.617188 58.023438 C 290.53125 65.144531 300.5625 73.269531 307.804688 77.992188 C 302.410156 87.1875 295.917969 93.621094 294.492188 106.839844 C 302.097656 110.167969 303.164062 113.722656 303.367188 124.585938 C 296.0625 131.789062 296.640625 135.480469 281.179688 135.6875 C 279.03125 135.128906 280.339844 133.945312 278.960938 135.6875 C 273.894531 141.015625 272.519531 147.5 272.273438 157.882812 Z M 134.710938 220 C 142.441406 221.007812 143.582031 222.675781 150.242188 224.4375 C 160.09375 262.695312 135.609375 243.113281 125.835938 255.5 C 121.367188 260.699219 116.984375 275.273438 119.175781 279.90625 C 127.613281 288.382812 132.558594 288.351562 132.488281 306.535156 C 110.574219 320.394531 111.136719 306.554688 99.207031 310.972656 C 96.609375 313.625 94.371094 316.609375 92.550781 319.847656 L 90.332031 317.625 C 81.683594 312.539062 76.1875 305.25 68.144531 299.875 C 74.421875 283.742188 61.578125 285.785156 59.269531 266.59375 C 63.777344 262.386719 63.40625 260.222656 70.367188 257.71875 C 77.035156 253.699219 85.84375 259.972656 88.121094 257.71875 C 91.910156 253.835938 94.183594 247.40625 92.558594 244.40625 C 86.613281 239.894531 80.65625 240.578125 77.027344 233.308594 C 71.148438 226.582031 73.574219 221.398438 77.027344 213.335938 C 85.859375 209.261719 90.203125 209.660156 101.433594 211.117188 L 103.652344 191.148438 C 97.617188 191.164062 93.453125 191.0625 90.339844 188.929688 C 79.980469 185.71875 78.78125 180.734375 79.238281 166.742188 C 83.839844 163.894531 84.351562 162.132812 90.339844 160.085938 C 92.71875 158.417969 92.4375 158.75 96.996094 157.867188 C 96.734375 147.457031 94.519531 143.71875 92.558594 135.679688 L 90.339844 135.679688 C 80.449219 145.390625 56.421875 137.050781 61.492188 120.144531 C 63.628906 113.027344 73.335938 109.183594 77.027344 102.398438 C 71.832031 97.230469 68.972656 89.742188 63.714844 84.644531 L 65.929688 82.425781 C 69.007812 77.230469 83.890625 60.351562 88.121094 64.675781 C 96.648438 71.597656 97.175781 81.941406 110.308594 84.644531 C 114.320312 79.976562 116.785156 80.203125 125.839844 80.207031 C 128.691406 84.277344 130.207031 84.007812 132.496094 89.082031 C 134.628906 92.230469 134.671875 96.347656 134.714844 102.398438 C 129.207031 107.234375 121.945312 112.566406 119.183594 120.144531 C 125.105469 126.921875 124.863281 139.265625 130.28125 146.769531 C 136.535156 150.308594 146.789062 148.214844 154.6875 151.207031 C 157.644531 156.65625 159.171875 162.761719 159.125 168.960938 C 136.238281 188.308594 133.339844 175.308594 134.710938 220 Z M 134.710938 220 "/>
|
||||
<path style=" stroke:none;fill-rule:evenodd;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 327.65625 314.523438 C 309.714844 330.761719 292.589844 347.335938 274.117188 355.800781 C 189.65625 394.488281 50.484375 376.417969 9.558594 249.324219 C -11.550781 183.789062 2.785156 123.921875 47.828125 62.105469 C 67.183594 35.542969 101.910156 21.191406 121.824219 14.445312 C 196.671875 -10.898438 241.960938 -0.636719 312.3125 49.839844 C 333.476562 65.027344 354.664062 95.429688 362.011719 116.265625 C 380.277344 168.0625 379.984375 222.621094 356.632812 271.675781 C 349.894531 285.828125 332.128906 299.265625 327.65625 314.523438 Z M 307.34375 294.71875 C 311.160156 282.03125 325.570312 271.214844 331.21875 259.246094 C 350.277344 218.898438 352.019531 167.929688 335.210938 125.339844 C 297.398438 29.5 193.949219 19.59375 130.898438 41.246094 C 114.214844 46.972656 84.453125 59.261719 68.136719 81.929688 C 28.8125 136.554688 17.351562 193.199219 40.277344 251.308594 C 80.84375 354.171875 199.46875 361.386719 266.6875 327.570312 Z M 307.34375 294.71875 "/>
|
||||
|
|
Before Width: | Height: | Size: 5.8 KiB After Width: | Height: | Size: 5.8 KiB |
|
@ -1,5 +1,5 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="375px" height="375px" viewBox="0 0 375 375" version="1.1">
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="375px" height="375px" viewBox="0 0 375 375" version="1.1">
|
||||
<g id="surface1">
|
||||
<path style=" stroke:none;fill-rule:evenodd;fill:rgb(48.627451%,72.156864%,18.431373%);fill-opacity:1;" d="M 230.199219 33.09375 C 231.085938 57.15625 238.554688 79.945312 243.398438 101.355469 C 250.78125 133.902344 243.464844 172.535156 243.398438 204.847656 L 267.628906 204.847656 C 266.207031 142.3125 285.941406 118.410156 309.464844 83.742188 L 311.667969 83.742188 C 314.03125 90.511719 331.988281 107.789062 327.082031 112.363281 C 311.246094 137.46875 300.714844 154.710938 300.65625 198.242188 L 305.070312 198.242188 C 318.519531 188.671875 333.375 181.242188 349.105469 176.222656 L 349.105469 211.449219 C 341.890625 215.308594 305.628906 230.382812 302.867188 235.671875 C 307.515625 242.21875 320.480469 279.710938 320.480469 279.710938 C 317.511719 289.179688 307.964844 300.742188 298.460938 303.933594 L 298.460938 301.730469 C 284.726562 288.203125 275.035156 261.226562 272.039062 237.875 L 243.410156 237.875 C 239.945312 248.027344 241.039062 266.054688 241.207031 279.710938 C 235.121094 289.125 230.542969 331.453125 230.199219 345.769531 C 218.023438 347.144531 209.125 349.882812 194.964844 350.175781 L 194.964844 345.769531 C 206.542969 327.621094 208.4375 269.433594 210.378906 242.277344 C 205.398438 240.699219 200.191406 239.957031 194.964844 240.078125 C 191.554688 237.765625 185.96875 237.808594 179.550781 237.875 C 169.644531 278.777344 136.511719 304.097656 111.292969 330.355469 L 109.089844 328.15625 C 98.292969 325.453125 89.179688 317.726562 82.664062 310.539062 L 84.867188 310.539062 C 89.410156 304.171875 93.957031 304.160156 100.28125 299.53125 C 114.09375 289.402344 141.527344 251.820312 146.523438 233.472656 C 110.667969 226.574219 76.121094 208.964844 49.636719 191.632812 C 38.136719 184.109375 28.136719 186.804688 27.617188 167.410156 C 31.960938 160.117188 28.964844 149.914062 36.425781 145.394531 C 52.261719 164.75 122.34375 198.570312 155.332031 200.441406 C 158.980469 189.726562 157.699219 170.664062 157.53125 156.402344 C 149.019531 143.894531 149.816406 125.3125 142.117188 112.363281 C 129.683594 91.441406 109.046875 76.832031 95.878906 57.3125 C 105.851562 51.496094 113.089844 44.070312 126.707031 41.898438 C 159.90625 92.382812 198.394531 114.03125 188.359375 204.847656 C 193.75 206.714844 201.976562 207.132812 210.378906 207.046875 C 214.019531 140.160156 206.417969 82.433594 194.964844 28.6875 L 210.378906 28.6875 C 214.605469 31.542969 224.140625 32.472656 230.199219 33.09375 Z M 230.199219 33.09375 "/>
|
||||
<path style=" stroke:none;fill-rule:evenodd;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 103.101562 20.96875 C 125.570312 12.359375 147.398438 3.140625 167.578125 1.925781 C 259.792969 -3.613281 382.351562 63.125 374.65625 195.675781 C 370.6875 264.027344 335.894531 314.390625 271.929688 355.535156 C 244.441406 373.21875 207.085938 374.058594 186.183594 373.15625 C 107.675781 369.773438 69.359375 343.988281 22.261719 271.917969 C 8.089844 250.234375 -0.636719 214.433594 0.0351562 192.472656 C 1.703125 137.875 21.570312 87.394531 60.851562 50.300781 C 72.175781 39.59375 93.472656 33.515625 103.101562 20.96875 Z M 114.820312 46.636719 C 106.566406 57.242188 89.03125 61.109375 79.941406 70.957031 C 49.171875 104.296875 26.828125 145.746094 28.144531 193.703125 C 30.019531 261.929688 84.765625 323.949219 128.945312 336.542969 C 140.777344 339.914062 151.019531 339.851562 163.355469 342.363281 C 184.375 346.644531 221.957031 352.195312 252.089844 332.871094 C 310.738281 295.246094 343.273438 256.554688 346.558594 194.484375 C 352.097656 89.671875 254.433594 26.941406 182.078125 28.902344 C 160.671875 29.464844 138.144531 37.800781 114.820312 46.640625 Z M 114.820312 46.636719 "/>
|
||||
|
|
Before Width: | Height: | Size: 3.8 KiB After Width: | Height: | Size: 3.8 KiB |
|
@ -1,5 +1,5 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="375px" height="375px" viewBox="0 0 375 375" version="1.1">
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="375px" height="375px" viewBox="0 0 375 375" version="1.1">
|
||||
<g id="surface1">
|
||||
<path style=" stroke:none;fill-rule:evenodd;fill:rgb(48.627451%,72.156864%,18.431373%);fill-opacity:1;" d="M 333.800781 180.238281 C 335.074219 239.417969 325.039062 300.375 281.121094 314.121094 L 281.121094 305.34375 C 297.15625 282.25 300.730469 216.773438 300.875 178.042969 C 292.953125 175.320312 279.183594 175.691406 267.953125 175.847656 C 269.804688 234.945312 260.300781 271.710938 241.617188 307.539062 C 233.339844 323.402344 232.773438 344.371094 208.691406 344.851562 C 203.972656 348.007812 192.652344 347.292969 184.550781 347.046875 L 184.550781 344.847656 C 206.972656 317.617188 225.933594 275.949219 235.03125 237.296875 C 240.042969 215.996094 235 200.847656 235.03125 180.230469 C 213.050781 182.160156 200.867188 190.921875 202.105469 217.546875 C 197.71875 233.640625 193.328125 249.734375 188.9375 265.832031 C 178.035156 291.496094 155.660156 321.988281 136.261719 340.457031 C 127.066406 333.660156 112.398438 334.472656 107.722656 322.898438 C 110.292969 320.273438 112.507812 317.320312 114.308594 314.117188 C 65.386719 291.617188 26.136719 261.082031 26.519531 189.015625 L 28.710938 189.015625 L 28.710938 191.210938 C 62.417969 223.378906 82.183594 279.066406 138.457031 287.785156 C 142.414062 275.390625 151.328125 271.40625 153.820312 257.054688 C 99.910156 235.339844 50.902344 193.054688 33.101562 136.339844 C 40.8125 125.972656 40.527344 109.265625 52.855469 103.417969 L 52.855469 105.613281 C 59.667969 113.976562 60.503906 123.90625 66.023438 134.152344 C 85.367188 170.042969 120.113281 219.3125 167 226.335938 C 168.054688 212.738281 171.277344 203.144531 169.195312 191.21875 C 156.234375 187.011719 148.335938 176.445312 138.464844 169.269531 C 98.945312 140.554688 93.035156 120.464844 74.816406 70.503906 C 84.699219 64.214844 91.289062 54.734375 103.355469 50.75 L 103.355469 52.941406 C 105.0625 55.28125 106.625 61.046875 107.746094 63.917969 C 128.207031 51.53125 171.195312 18.105469 208.71875 26.605469 C 226.703125 30.679688 242.488281 37.964844 259.199219 41.96875 L 259.199219 46.359375 C 218.074219 46.726562 125.835938 72.738281 118.726562 101.230469 C 126.03125 109.515625 125.792969 122.109375 138.480469 125.375 C 166.828125 83.222656 234.304688 77.128906 305.265625 77.078125 C 312.109375 88.738281 320.953125 97.152344 327.214844 110 L 243.816406 110 C 218.964844 125.457031 173.816406 117.050781 162.605469 149.507812 L 164.800781 149.507812 C 171.261719 156.527344 179.503906 163.097656 191.140625 164.871094 C 218.019531 131.320312 292.359375 146.769531 342.585938 147.3125 L 342.585938 151.703125 C 347.164062 158.445312 347.125 171.40625 346.972656 182.429688 L 344.777344 182.429688 C 341.929688 180.503906 339.359375 180.46875 333.800781 180.238281 Z M 333.800781 180.238281 "/>
|
||||
<path style=" stroke:none;fill-rule:evenodd;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 164.898438 0.628906 C 188.9375 0.285156 212.582031 -0.851562 231.925781 4.953125 C 320.324219 31.484375 412.316406 136.25 359.492188 257.929688 C 332.25 320.671875 282.304688 355.941406 208.140625 372.523438 C 176.273438 379.65625 140.945312 367.585938 121.652344 359.550781 C 49.183594 329.367188 22.113281 292 2.734375 208.199219 C -3.105469 182.984375 1.035156 146.40625 9.222656 126.035156 C 29.570312 75.398438 65.570312 34.886719 115.167969 13.601562 C 129.484375 7.457031 151.550781 9.082031 164.898438 0.628906 Z M 167.058594 28.738281 C 155.890625 35.703125 138.039062 34.328125 125.976562 39.546875 C 81.789062 58.671875 48.464844 97.664062 33.003906 145.496094 C 23.46875 175 30.554688 215.132812 39.492188 238.46875 C 63.625 301.480469 131.304688 366.320312 227.601562 340.089844 C 294.777344 321.792969 373.089844 234.09375 337.871094 136.847656 C 313.910156 70.683594 258.921875 27.769531 167.058594 28.738281 Z M 167.058594 28.738281 "/>
|
||||
|
|
Before Width: | Height: | Size: 3.9 KiB After Width: | Height: | Size: 3.9 KiB |
|
@ -1,5 +1,5 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="375px" height="362px" viewBox="0 0 375 362" version="1.1">
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="375px" height="362px" viewBox="0 0 375 362" version="1.1">
|
||||
<g id="surface1">
|
||||
<path style=" stroke:none;fill-rule:evenodd;fill:rgb(48.627451%,72.156864%,18.431373%);fill-opacity:1;" d="M 126.679688 250.605469 C 169.714844 250.964844 189.925781 229.25 220.539062 220.070312 L 220.539062 230.25 C 222.910156 233.992188 221.535156 238.816406 222.578125 240.425781 C 202.3125 259.195312 164.109375 268.324219 128.71875 270.957031 C 128.902344 304.433594 148.933594 313.34375 157.285156 336.089844 L 155.246094 336.089844 C 151.125 339.769531 143.410156 340.9375 136.878906 342.195312 C 128.660156 318.511719 109.761719 310.722656 108.3125 272.992188 C 94.679688 273.171875 81.050781 272.492188 67.503906 270.957031 C 67.148438 300.375 79.890625 313.824219 83.828125 336.089844 L 79.75 336.089844 C 72.710938 329.660156 62.910156 327.789062 57.304688 319.804688 C 47.816406 307.429688 54.066406 282.910156 45.0625 268.921875 C 40.191406 265.324219 33.277344 264.863281 24.65625 264.851562 C 23.976562 257.390625 23.292969 249.925781 22.613281 242.460938 L 24.652344 242.460938 C 28.570312 245.097656 37.40625 245.953125 43.015625 246.53125 C 41.820312 189.5 52.3125 160.789062 94.027344 144.765625 L 94.027344 148.832031 C 71.253906 170.292969 63.382812 204.035156 63.421875 248.566406 L 65.460938 250.605469 C 77.164062 251.386719 90.066406 252.617188 104.230469 252.636719 L 106.269531 250.605469 C 105.027344 209.894531 122.082031 153.894531 149.121094 144.765625 L 165.445312 152.90625 L 165.445312 156.976562 C 139.707031 172.074219 122.179688 212.226562 126.679688 250.605469 Z M 126.679688 250.605469 "/>
|
||||
<path style=" stroke:none;fill-rule:evenodd;fill:rgb(48.627451%,72.156864%,18.431373%);fill-opacity:1;" d="M 303.203125 104.746094 C 322.128906 103.695312 333.34375 95.164062 350.203125 92.515625 C 350.03125 100.273438 350.496094 107.945312 352.246094 112.898438 L 348.160156 112.898438 C 338.925781 120.074219 319.46875 124.097656 305.246094 125.128906 C 305.023438 150.160156 314.34375 165.582031 319.550781 184.242188 C 315.464844 188.320312 311.378906 192.394531 307.289062 196.472656 L 305.246094 194.433594 C 292.089844 183.789062 286.304688 152.640625 284.8125 131.242188 L 225.550781 131.242188 C 225.273438 143.25 221.636719 167.382812 213.292969 172.011719 C 209.035156 165.703125 202.316406 162.707031 198.988281 155.703125 C 203.761719 149.1875 205.011719 137.957031 205.117188 127.167969 C 194.644531 127.425781 155.085938 117.171875 151.988281 112.898438 L 151.988281 92.515625 L 154.03125 90.476562 C 169.671875 97.46875 183.832031 105.667969 205.117188 106.785156 C 205.402344 76.414062 192.238281 58.199219 184.683594 37.480469 C 190.195312 36.332031 195.199219 33.480469 198.988281 29.324219 C 202.570312 30.609375 200.972656 29.722656 203.074219 31.363281 C 216.367188 42.441406 220.898438 73.652344 225.550781 92.515625 C 227.113281 98.835938 224.996094 104.78125 227.59375 108.820312 C 234.386719 113.253906 253.871094 111.125 264.378906 110.859375 C 267.355469 112.332031 273.132812 111.179688 280.726562 110.859375 L 282.769531 108.820312 C 281.734375 80.464844 286.945312 38.292969 305.246094 29.324219 C 309.742188 34.980469 316.234375 36.613281 319.550781 43.59375 C 305.910156 54.40625 302.972656 80.261719 303.203125 104.746094 Z M 303.203125 104.746094 "/>
|
||||
|
|
Before Width: | Height: | Size: 5.9 KiB After Width: | Height: | Size: 5.9 KiB |
|
@ -1,5 +1,5 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="375px" height="375px" viewBox="0 0 375 375" version="1.1">
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="375px" height="375px" viewBox="0 0 375 375" version="1.1">
|
||||
<g id="surface1">
|
||||
<path style=" stroke:none;fill-rule:evenodd;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 282.5 131.25 C 335.359375 134.671875 323.75 191.765625 323.75 246.25 C 323.75 267.972656 327.5 295.558594 322.5 315 C 314.070312 347.796875 286.097656 366.015625 252.5 373.75 L 188.75 375 C 148.859375 375 108.625 377.257812 85 361.25 L 77.5 352.5 C 68.195312 345.464844 59.324219 336.710938 55 325 C 50.066406 311.632812 52.710938 290.734375 52.5 273.75 C 52.144531 245.480469 44.035156 174.304688 55 155 C 58.953125 148.042969 67.539062 138.308594 75 135 C 80.652344 132.5 87.609375 133.210938 92.5 130 C 96.519531 123.664062 93.890625 88.117188 93.75 77.5 C 97.914062 70.863281 96.917969 59.632812 100 52.5 C 107.453125 35.25 122.132812 19.457031 137.5 10 C 148.308594 3.347656 162.726562 1.261719 180 1.25 C 193.199219 1.242188 210.109375 -0.859375 221.25 2.5 C 249.890625 11.136719 273.046875 36.242188 281.25 65 C 286.382812 82.992188 282.695312 110.828125 282.5 131.25 Z M 163.75 20 C 156.8125 24.558594 146.839844 25.054688 140 30 C 113.414062 49.21875 111.011719 81.910156 111.25 127.5 C 123.34375 131.492188 144.261719 128.75 158.75 128.75 L 261.25 128.75 C 263.179688 129.632812 261.417969 128.910156 265 128.75 L 265 95 C 260.472656 87.4375 264.464844 70.136719 261.25 62.5 C 257.554688 53.726562 250.289062 47 245 40 C 227.632812 17 203.53125 19.605469 163.75 20 Z M 108.75 146.25 C 95.859375 154.046875 81.816406 145.515625 72.5 161.25 C 66.328125 171.671875 66.757812 221.292969 70 236.25 L 71.25 315 C 75.75 331.339844 93.480469 346.898438 108.75 352.5 C 125.898438 358.789062 156.042969 355 177.5 355 C 228.785156 355 274.476562 360.058594 296.25 330 C 305.851562 316.75 305 295.921875 305 272.5 C 305 236.171875 307.894531 195.375 303.75 161.25 C 298.261719 157.625 294.546875 152.3125 287.5 150 C 270.988281 144.585938 245.332031 147.5 225 147.5 Z M 186.25 200 C 200.59375 202.578125 220.679688 215.125 210 236.25 C 204.40625 247.316406 198.113281 240.578125 197.5 260 C 188.609375 275.296875 206.972656 302.042969 185 305 C 183.300781 303.421875 182.789062 303.292969 180 302.5 C 176.410156 288.191406 178.652344 266.699219 178.75 247.5 C 170.375 245.234375 168.804688 239.101562 163.75 233.75 C 162.339844 220 164.523438 207.578125 176.25 203.75 C 178.679688 201.9375 183.648438 201.785156 186.25 200 Z M 186.25 200 "/>
|
||||
</g>
|
||||
|
|
Before Width: | Height: | Size: 2.5 KiB After Width: | Height: | Size: 2.5 KiB |
|
@ -1,5 +1,5 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="375px" height="375px" viewBox="0 0 375 375" version="1.1">
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="375px" height="375px" viewBox="0 0 375 375" version="1.1">
|
||||
<g id="surface1">
|
||||
<path style=" stroke:none;fill-rule:evenodd;fill:rgb(48.627451%,72.156864%,18.431373%);fill-opacity:1;" d="M 343.351562 141.199219 C 355.417969 147.125 362.21875 157.804688 362.601562 175.425781 C 347.664062 194.730469 344.769531 210.105469 309.128906 209.648438 C 306.945312 207.9375 308.542969 208.890625 304.851562 207.507812 C 300.984375 201.695312 296.769531 199.929688 294.15625 192.535156 L 309.128906 177.5625 L 311.265625 177.5625 C 313.351562 186.246094 313.785156 187.402344 324.101562 188.257812 C 330.730469 182.824219 335.847656 182.597656 339.074219 173.285156 C 340.683594 170.992188 340.355469 171.261719 341.210938 166.867188 C 326.636719 154.953125 334.386719 153.820312 343.351562 141.199219 Z M 176.511719 308.042969 L 182.929688 308.042969 C 185.671875 312.472656 187.371094 312.960938 189.34375 318.734375 C 194.140625 324.746094 193.914062 335.238281 193.625 346.542969 C 184.984375 355.433594 176.84375 363.570312 167.957031 372.210938 C 146.714844 373.402344 136.472656 372.546875 127.316406 357.238281 L 140.148438 344.402344 L 144.425781 344.402344 L 152.984375 352.960938 C 167.082031 350.277344 172.753906 345.058594 172.234375 327.292969 C 166.886719 324.175781 167.621094 326.039062 165.816406 318.734375 C 170.476562 315.90625 174.09375 313.339844 176.511719 308.042969 Z M 176.511719 308.042969 "/>
|
||||
<path style=" stroke:none;fill-rule:evenodd;fill:rgb(48.627451%,72.156864%,18.431373%);fill-opacity:1;" d="M 255.652344 87.726562 L 266.347656 87.726562 C 269.128906 92.898438 270.199219 93.785156 270.625 102.699219 C 265.746094 105.320312 265.8125 106.203125 257.792969 106.976562 C 251.429688 99.308594 250.757812 96.898438 255.652344 87.726562 Z M 292.015625 111.253906 C 299.703125 113.296875 300.109375 115.570312 304.851562 119.8125 C 303.5 123.5625 304.4375 121.886719 302.710938 124.089844 C 300.570312 129.96875 299.632812 128.785156 296.292969 132.644531 C 292.542969 131.296875 294.21875 132.230469 292.015625 130.507812 C 284.820312 128.109375 284.929688 128.082031 283.460938 119.8125 C 285.171875 117.628906 284.21875 119.226562 285.597656 115.535156 C 287.960938 114.472656 290.128906 113.027344 292.015625 111.253906 Z M 229.984375 115.535156 L 240.679688 115.535156 C 243.460938 120.707031 244.53125 121.59375 244.957031 130.507812 C 239.785156 133.285156 238.898438 134.355469 229.984375 134.785156 C 225.390625 126.65625 225.613281 123.648438 229.984375 115.535156 Z M 266.347656 139.0625 L 272.765625 139.0625 C 276.417969 144.890625 278.191406 144.410156 279.183594 154.035156 C 276.046875 155.765625 273.167969 157.925781 270.625 160.453125 C 266.875 159.101562 268.550781 160.039062 266.347656 158.3125 C 258.898438 155.386719 259.773438 153.429688 259.933594 143.339844 C 262.292969 142.28125 264.460938 140.832031 266.347656 139.0625 Z M 108.0625 239.59375 C 117.300781 243.210938 118.886719 243.3125 118.757812 256.707031 C 113.585938 259.488281 112.699219 260.554688 103.785156 260.984375 C 101.003906 255.8125 99.9375 254.925781 99.507812 246.011719 C 101.21875 243.828125 100.269531 245.425781 101.648438 241.734375 C 106.089844 240.9375 105.761719 241.214844 108.0625 239.59375 Z M 133.730469 265.261719 L 144.425781 265.261719 C 147.363281 270.699219 148.527344 272.75 148.703125 282.375 L 142.289062 284.511719 C 129.78125 295.277344 129.625 272.085938 133.730469 265.261719 Z M 73.839844 269.539062 L 86.675781 269.539062 C 89.296875 274.417969 90.179688 274.355469 90.953125 282.375 C 85.675781 286.539062 85.714844 287.984375 75.980469 288.789062 C 72.382812 282.429688 70.960938 277.816406 73.839844 269.539062 Z M 110.203125 293.070312 L 120.898438 295.207031 C 122.433594 300.046875 123.15625 305.105469 123.039062 310.179688 L 116.621094 312.320312 C 107.578125 318.390625 103.183594 308.832031 103.785156 297.347656 C 106.148438 296.285156 108.316406 294.839844 110.203125 293.070312 Z M 110.203125 293.070312 "/>
|
||||
|
|
Before Width: | Height: | Size: 5.3 KiB After Width: | Height: | Size: 5.3 KiB |
|
@ -1,5 +1,5 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="375px" height="375px" viewBox="0 0 375 375" version="1.1">
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="375px" height="375px" viewBox="0 0 375 375" version="1.1">
|
||||
<g id="surface1">
|
||||
<path style=" stroke:none;fill-rule:evenodd;fill:rgb(48.627451%,72.156864%,18.431373%);fill-opacity:1;" d="M 219.085938 348.417969 L 174.640625 350.640625 L 174.640625 348.417969 C 185.355469 338.324219 202.695312 318.003906 205.753906 301.746094 C 198.550781 292.28125 196.863281 275.757812 192.417969 263.96875 C 170.167969 256.414062 146.988281 251.929688 123.523438 250.632812 C 117.464844 258.246094 107.4375 260.851562 103.523438 270.632812 C 95.914062 283.023438 101.488281 309.882812 96.855469 323.972656 C 84.382812 317.6875 76.800781 306.949219 65.742188 299.527344 C 67.925781 293.761719 69.65625 280.746094 65.742188 275.085938 C 56.914062 269.785156 48.78125 275.050781 45.742188 268.417969 C 37.644531 261.949219 32.792969 246.625 30.1875 235.082031 L 32.40625 235.082031 C 39.945312 240.351562 74.964844 245.199219 83.523438 239.527344 C 112.179688 230.429688 106.824219 192.660156 105.746094 155.070312 C 103.960938 152.800781 104.957031 154.460938 103.523438 150.625 C 96.144531 148.167969 93.175781 141.726562 87.96875 139.515625 L 47.964844 139.515625 C 44.210938 142.054688 37.085938 141.882812 30.1875 141.734375 L 30.1875 137.289062 L 43.519531 108.402344 L 65.742188 106.175781 L 61.296875 81.734375 L 90.1875 57.292969 L 101.300781 110.628906 C 107.835938 114.195312 113.824219 118.6875 119.078125 123.964844 C 129.910156 123.765625 183.046875 108.925781 187.972656 103.960938 C 191.675781 92.109375 195.382812 80.257812 199.085938 68.40625 C 189.601562 59.019531 178.957031 39.640625 174.640625 26.179688 L 207.980469 26.179688 L 207.980469 28.402344 C 220.125 33.285156 215.417969 43.742188 230.203125 46.183594 C 237.417969 39.042969 244.425781 38.660156 254.644531 39.515625 C 262.652344 46.84375 276.359375 49.160156 281.3125 59.515625 C 268.472656 62.28125 235.550781 73.085938 230.199219 83.957031 C 225.816406 89.226562 219.308594 109.273438 221.308594 112.847656 C 223.386719 119.394531 256.882812 166.398438 261.3125 168.410156 L 305.757812 168.410156 L 305.757812 166.1875 C 317.910156 162.039062 330.375 145.132812 336.875 135.074219 C 337.613281 135.8125 338.351562 136.554688 339.09375 137.296875 C 345.257812 145.203125 347.222656 162.519531 347.984375 175.074219 C 341.898438 178.878906 337.199219 183.105469 334.648438 190.632812 C 342.179688 195.230469 346.941406 199.035156 347.984375 210.636719 C 343.113281 218.175781 341.054688 235.304688 339.09375 243.96875 L 336.875 243.96875 L 336.875 241.746094 C 321.453125 229.34375 316.578125 202.527344 290.203125 201.746094 C 264.804688 184.917969 225.730469 241.9375 223.53125 257.304688 C 228.113281 263.390625 232.957031 292.167969 236.863281 295.085938 C 239.148438 296.789062 291.640625 301.328125 299.09375 303.972656 L 296.867188 306.195312 C 291.328125 314.167969 275.417969 327.683594 265.753906 330.636719 C 254.957031 333.945312 239.660156 325.222656 232.417969 328.417969 C 225.3125 332.863281 220.460938 340.148438 219.085938 348.417969 Z M 139.085938 219.527344 C 154.515625 221.46875 185.628906 233.507812 196.867188 228.417969 C 205.183594 224.519531 229.195312 193.328125 232.425781 183.96875 L 230.203125 183.96875 C 226.328125 170.507812 202.847656 137.703125 185.753906 137.300781 C 174.007812 146.132812 152.453125 148.902344 139.085938 155.078125 Z M 139.085938 219.527344 "/>
|
||||
<path style=" stroke:none;fill-rule:evenodd;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 209.375 0.0390625 C 233.011719 5.542969 256.453125 10.171875 273.988281 20.554688 C 354.144531 68.023438 418.8125 193.003906 337.496094 299.371094 C 295.566406 354.222656 238.054688 376.625 161.378906 374.867188 C 128.425781 374.105469 96.75 353.695312 79.804688 341.144531 C 16.140625 293.96875 -1.300781 250.792969 0.0742188 163.980469 C 0.488281 137.863281 13.421875 103.03125 26.390625 85.066406 C 58.625 40.402344 103.734375 9.460938 157.496094 0.660156 C 173.023438 -1.875 194.25 5.078125 209.375 0.0390625 Z M 204.667969 28.101562 C 192.035156 32.210938 174.878906 26.53125 161.792969 28.710938 C 114.261719 36.640625 71.523438 67.160156 44.972656 109.914062 C 28.308594 136.757812 24.917969 178.304688 28.742188 202.574219 C 31.40625 219.511719 31.375 234.792969 37.296875 249.664062 C 52.882812 288.761719 109.40625 348.066406 179.335938 347.851562 C 261.902344 347.578125 361.371094 277.421875 344.128906 163.878906 C 334.234375 98.730469 290.101562 48.324219 204.667969 28.097656 Z M 204.667969 28.101562 "/>
|
||||
|
|
Before Width: | Height: | Size: 4.5 KiB After Width: | Height: | Size: 4.5 KiB |
|
@ -1,5 +1,5 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="375px" height="375px" viewBox="0 0 375 375" version="1.1">
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="375px" height="375px" viewBox="0 0 375 375" version="1.1">
|
||||
<g id="surface1">
|
||||
<path style=" stroke:none;fill-rule:evenodd;fill:rgb(48.627451%,72.156864%,18.431373%);fill-opacity:1;" d="M 46.25 122.5 C 61.464844 122.265625 82.5625 120.515625 93.75 125 C 95.414062 128.070312 96.273438 131.507812 96.25 135 L 92.5 138.75 C 88.109375 142.375 48.597656 142.210938 43.75 138.75 C 40.785156 136.632812 41.109375 131.5 41.25 126.25 C 43.082031 125.238281 44.765625 123.976562 46.25 122.5 Z M 57.5 152.5 C 67.148438 152.179688 76.800781 153.019531 86.25 155 C 87.730469 160.605469 90.332031 168.207031 83.75 171.25 L 13.75 171.25 C 11.109375 172.75 9.460938 171.640625 5 171.25 C -15.863281 139.0625 41.839844 161.566406 57.5 152.5 Z M 22.5 183.75 C 38.367188 183.515625 60.730469 181.535156 72.5 186.25 C 74.164062 189.320312 75.023438 192.757812 75 196.25 L 71.25 200 C 63.199219 206.359375 27.429688 203.558594 18.75 200 C 15.464844 194.625 14.8125 192.734375 17.5 186.25 C 19.265625 185.632812 20.945312 184.792969 22.5 183.75 Z M 22.5 183.75 "/>
|
||||
<path style=" stroke:none;fill-rule:evenodd;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 313.75 71.25 C 318.957031 71.15625 323.359375 71.558594 326.25 73.75 C 335.53125 76.441406 339.097656 83.75 338.75 96.25 C 337.441406 98.109375 336.585938 100.25 336.25 102.5 C 332.230469 105.050781 328.460938 107.980469 325 111.25 C 300.777344 113.390625 295.210938 99.585938 301.25 78.75 C 304.792969 76.625 310.382812 74.03125 313.75 71.25 Z M 181.25 110 C 188.179688 109.953125 191.214844 111.273438 196.25 112.5 C 201.574219 119.609375 205.140625 121.34375 205 135 C 201.011719 139.277344 200.046875 144.0625 193.75 146.25 C 187.328125 151.519531 178.757812 146.824219 172.5 145 C 168.566406 138.488281 166.183594 135.226562 166.25 123.75 C 169.398438 120.5 171.222656 115.027344 175 112.5 C 177.023438 111.144531 179.550781 111.382812 181.25 110 Z M 258.75 136.25 L 255 165 C 250.949219 167.558594 249.960938 168.734375 242.5 168.75 L 240 165 C 233.117188 156.339844 241.433594 131.550781 243.75 122.5 C 246.039062 121.109375 248.140625 119.429688 250 117.5 C 271.8125 117.144531 304.902344 116.457031 313.75 130 C 318.65625 136.632812 320.351562 150.410156 323.75 157.5 C 325.941406 156.710938 324.964844 157.257812 326.25 156.25 C 341.910156 151.363281 349.375 135.863281 368.75 135 C 371.335938 139.015625 373.175781 139.625 373.75 146.25 C 362.207031 156.992188 336.535156 178.460938 316.25 178.75 C 313.773438 174.632812 310.207031 168.992188 306.25 166.25 C 301.667969 180 297.082031 193.75 292.5 207.5 C 302.609375 213.8125 316.480469 223.183594 316.25 240 C 312.894531 245.226562 314.34375 253.050781 312.5 260 C 308.578125 274.785156 305.835938 292.398438 302.5 307.5 C 298.96875 309.558594 298.21875 310.765625 292.5 311.25 C 287.519531 306.167969 285.953125 304.855469 286.25 293.75 C 290.375 287.425781 296.683594 245.308594 297.5 235 C 287.207031 228.859375 280.441406 216.601562 268.75 212.5 L 268.75 215 C 263.25 223.203125 266.058594 237.050781 261.25 246.25 C 259.5 249.605469 255.140625 251.199219 252.5 253.75 C 242.152344 251.949219 201.507812 240.671875 198.75 233.75 C 195.363281 229.140625 198.335938 224 202.5 222.5 C 211.699219 216.816406 236.402344 234.546875 245 231.25 C 250.679688 222.261719 248.875 208.355469 252.5 197.5 L 278.75 137.5 L 268.75 137.5 C 266.636719 136.074219 262.625 136.167969 258.75 136.25 Z M 118.75 260 C 120.359375 225.820312 134.109375 197.199219 146.25 172.5 L 131.25 172.5 L 130 173.75 C 129.949219 183.453125 127.171875 204.011719 121.25 208.75 C 119.15625 210.804688 116.128906 211.597656 113.296875 210.824219 C 110.46875 210.050781 108.257812 207.835938 107.5 205 C 103.125 198.425781 114.230469 157.039062 120 155 C 129.109375 147.925781 166.597656 154.019531 177.5 155 C 179.570312 158.449219 183.335938 161.203125 185 165 C 188.125 172.148438 188.347656 179.148438 192.5 185 L 192.5 187.5 L 196.25 187.5 C 202.300781 181.75 214.042969 175.105469 223.75 173.75 C 225.316406 174.773438 226.992188 175.609375 228.75 176.25 C 230.140625 179.34375 230.859375 180.292969 231.25 185 C 218.992188 197.230469 203.207031 211.519531 181.25 210 L 176.25 198.75 L 175 200 C 171.96875 203.328125 159.914062 233.625 160 233.75 C 163.375 238.902344 167.605469 241.300781 172.5 245 C 177.625 248.875 180.519531 255.433594 185 260 C 185.558594 278.179688 180.257812 294.75 176.25 310 C 174.191406 317.839844 175.710938 328.164062 171.25 333.75 C 169.066406 336.484375 163.773438 336.304688 158.75 336.25 C 157.738281 334.417969 156.476562 332.734375 155 331.25 C 154.671875 306.929688 163.195312 287.117188 166.25 265 C 155.972656 259.683594 151.238281 247.777344 140 243.75 C 140.175781 254.238281 137.277344 276.425781 130 280 C 126.484375 282.425781 117.742188 281.339844 113.75 280 C 100.890625 275.675781 70 272.613281 70 256.25 L 73.75 252.5 C 81.027344 246.875 107.09375 258.773438 118.75 260 Z M 118.75 260 "/>
|
||||
|
|
Before Width: | Height: | Size: 4.9 KiB After Width: | Height: | Size: 4.9 KiB |
|
@ -1,5 +1,5 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="375px" height="375px" viewBox="0 0 375 375" version="1.1">
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="375px" height="375px" viewBox="0 0 375 375" version="1.1">
|
||||
<g id="surface1">
|
||||
<path style=" stroke:none;fill-rule:evenodd;fill:rgb(48.627451%,72.156864%,18.431373%);fill-opacity:1;" d="M 101.847656 144.1875 C 124.574219 152.203125 173.082031 215.425781 192.519531 234.859375 C 202.675781 245.015625 219.066406 254.273438 224.253906 268.859375 L 199.320312 268.859375 C 196.644531 267.042969 195.507812 267.105469 190.25 266.59375 C 185.019531 252.183594 133.417969 202.988281 119.980469 189.523438 L 104.113281 175.921875 C 100.097656 168.539062 101.863281 154.730469 101.847656 144.1875 Z M 101.847656 144.1875 "/>
|
||||
<path style=" stroke:none;fill-rule:evenodd;fill:rgb(48.627451%,72.156864%,18.431373%);fill-opacity:1;" d="M 322.425781 285.507812 C 338.246094 285.214844 344.890625 288.765625 355.726562 291.75 C 359.519531 297.832031 365.164062 307.289062 370.292969 312.5625 C 371.089844 329.933594 368.0625 339.363281 364.050781 354.1875 C 344.726562 365.941406 333.085938 369.679688 305.777344 362.511719 C 297.660156 350.144531 289.988281 341.613281 289.125 320.886719 C 293.128906 315.683594 293.558594 307.609375 297.453125 302.15625 C 303.433594 293.765625 314.351562 291.910156 322.425781 285.507812 Z M 324.507812 306.316406 C 317.515625 313.566406 311.824219 316.226562 309.941406 329.214844 C 319.019531 341.832031 315.375 346.707031 339.074219 345.859375 C 343.03125 341.636719 345.050781 341.976562 347.402344 335.457031 C 353.488281 327.839844 349.75 321.679688 347.402344 312.5625 C 344.351562 310.875 341.546875 308.773438 339.074219 306.316406 Z M 324.507812 306.316406 "/>
|
||||
|
|
Before Width: | Height: | Size: 3.1 KiB After Width: | Height: | Size: 3.1 KiB |
|
@ -1,5 +1,5 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="375px" height="375px" viewBox="0 0 375 375" version="1.1">
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="375px" height="375px" viewBox="0 0 375 375" version="1.1">
|
||||
<g id="surface1">
|
||||
<path style=" stroke:none;fill-rule:evenodd;fill:rgb(48.627451%,72.156864%,18.431373%);fill-opacity:1;" d="M 300.332031 14.683594 C 301.84375 34.292969 303.347656 53.902344 304.863281 73.515625 C 322.304688 75.441406 339.425781 77.910156 359.171875 78.046875 C 357.660156 85.585938 356.15625 93.125 354.640625 100.671875 L 343.328125 100.671875 C 336.558594 96.300781 316.316406 96.363281 307.125 96.144531 L 304.863281 98.410156 C 306.640625 109.632812 307.398438 120.992188 307.125 132.351562 L 343.328125 134.613281 L 343.328125 139.136719 C 337.488281 145.433594 335.925781 153.289062 327.488281 157.238281 C 323.664062 154.65625 316.410156 154.828125 309.390625 154.976562 C 309.585938 163.003906 310.25 176.167969 309.390625 177.605469 C 303.984375 183.523438 299.136719 187.40625 289.023438 188.921875 L 286.761719 152.710938 L 250.558594 150.449219 C 251.308594 167.792969 252.066406 185.140625 252.820312 202.492188 L 230.191406 204.753906 C 229.4375 185.902344 228.679688 167.042969 227.929688 148.1875 L 173.621094 143.664062 L 173.621094 123.285156 C 177.242188 121.917969 181.066406 121.152344 184.933594 121.023438 C 192.535156 125.914062 215.273438 125.480469 225.667969 125.546875 L 223.402344 89.34375 L 189.460938 87.082031 L 189.460938 82.554688 C 196.359375 74.796875 194.632812 67.015625 207.5625 64.453125 C 210.773438 66.625 214.972656 66.664062 221.144531 66.714844 L 221.144531 41.835938 L 241.503906 30.523438 L 241.503906 44.097656 C 244.761719 48.964844 244.027344 60.632812 243.769531 68.988281 L 282.234375 71.25 L 277.710938 16.941406 C 283.238281 15.023438 291.691406 14.597656 300.332031 14.683594 Z M 246.023438 91.621094 L 248.285156 127.824219 L 284.496094 130.085938 C 284.929688 117.976562 284.167969 105.847656 282.234375 93.882812 L 264.128906 93.882812 C 260.300781 91.292969 253.042969 91.46875 246.023438 91.605469 Z M 246.023438 91.621094 "/>
|
||||
<path style=" stroke:none;fill-rule:evenodd;fill:rgb(48.627451%,72.156864%,18.431373%);fill-opacity:1;" d="M 289.992188 265.09375 C 320.226562 270.261719 325.429688 277.945312 341.714844 295.261719 C 343.410156 338.308594 329.78125 351.347656 296.457031 359.914062 C 290.476562 361.453125 278.929688 362.070312 272.75 357.757812 C 257.808594 353.0625 256.144531 341.746094 246.886719 331.894531 C 244.917969 306.488281 244.609375 280.929688 266.285156 273.710938 C 272.21875 268.507812 283.003906 269.683594 289.992188 265.09375 Z M 279.214844 288.796875 C 275.121094 293.175781 273.023438 292.824219 270.59375 299.574219 C 266.480469 304.691406 266.164062 311.398438 266.285156 321.125 C 271.46875 326.859375 271.058594 332.917969 279.214844 336.210938 C 289.0625 344.179688 300.941406 337.117188 311.542969 334.054688 C 317.464844 322.65625 321.386719 313.808594 318.003906 297.414062 C 314.058594 295.019531 310.4375 292.121094 307.230469 288.796875 Z M 279.214844 288.796875 "/>
|
||||
|
|
Before Width: | Height: | Size: 5.2 KiB After Width: | Height: | Size: 5.1 KiB |
|
@ -1,5 +1,5 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="375px" height="375px" viewBox="0 0 375 375" version="1.1">
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="375px" height="375px" viewBox="0 0 375 375" version="1.1">
|
||||
<g id="surface1">
|
||||
<path style=" stroke:none;fill-rule:evenodd;fill:rgb(48.627451%,72.156864%,18.431373%);fill-opacity:1;" d="M 333.800781 180.238281 C 335.074219 239.417969 325.039062 300.375 281.121094 314.121094 L 281.121094 305.34375 C 297.15625 282.25 300.730469 216.773438 300.875 178.042969 C 292.953125 175.320312 279.183594 175.691406 267.953125 175.847656 C 269.804688 234.945312 260.300781 271.710938 241.617188 307.539062 C 233.339844 323.402344 232.773438 344.371094 208.691406 344.851562 C 203.972656 348.007812 192.652344 347.292969 184.550781 347.046875 L 184.550781 344.847656 C 206.972656 317.617188 225.933594 275.949219 235.03125 237.296875 C 240.042969 215.996094 235 200.847656 235.03125 180.230469 C 213.050781 182.160156 200.867188 190.921875 202.105469 217.546875 C 197.71875 233.640625 193.328125 249.734375 188.9375 265.832031 C 178.035156 291.496094 155.660156 321.988281 136.261719 340.457031 C 127.066406 333.660156 112.398438 334.472656 107.722656 322.898438 C 110.292969 320.273438 112.507812 317.320312 114.308594 314.117188 C 65.386719 291.617188 26.136719 261.082031 26.519531 189.015625 L 28.710938 189.015625 L 28.710938 191.210938 C 62.417969 223.378906 82.183594 279.066406 138.457031 287.785156 C 142.414062 275.390625 151.328125 271.40625 153.820312 257.054688 C 99.910156 235.339844 50.902344 193.054688 33.101562 136.339844 C 40.8125 125.972656 40.527344 109.265625 52.855469 103.417969 L 52.855469 105.613281 C 59.667969 113.976562 60.503906 123.90625 66.023438 134.152344 C 85.367188 170.042969 120.113281 219.3125 167 226.335938 C 168.054688 212.738281 171.277344 203.144531 169.195312 191.21875 C 156.234375 187.011719 148.335938 176.445312 138.464844 169.269531 C 98.945312 140.554688 93.035156 120.464844 74.816406 70.503906 C 84.699219 64.214844 91.289062 54.734375 103.355469 50.75 L 103.355469 52.941406 C 105.0625 55.28125 106.625 61.046875 107.746094 63.917969 C 128.207031 51.53125 171.195312 18.105469 208.71875 26.605469 C 226.703125 30.679688 242.488281 37.964844 259.199219 41.96875 L 259.199219 46.359375 C 218.074219 46.726562 125.835938 72.738281 118.726562 101.230469 C 126.03125 109.515625 125.792969 122.109375 138.480469 125.375 C 166.828125 83.222656 234.304688 77.128906 305.265625 77.078125 C 312.109375 88.738281 320.953125 97.152344 327.214844 110 L 243.816406 110 C 218.964844 125.457031 173.816406 117.050781 162.605469 149.507812 L 164.800781 149.507812 C 171.261719 156.527344 179.503906 163.097656 191.140625 164.871094 C 218.019531 131.320312 292.359375 146.769531 342.585938 147.3125 L 342.585938 151.703125 C 347.164062 158.445312 347.125 171.40625 346.972656 182.429688 L 344.777344 182.429688 C 341.929688 180.503906 339.359375 180.46875 333.800781 180.238281 Z M 333.800781 180.238281 "/>
|
||||
<path style=" stroke:none;fill-rule:evenodd;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 164.898438 0.628906 C 188.9375 0.285156 212.582031 -0.851562 231.925781 4.953125 C 320.324219 31.484375 412.316406 136.25 359.492188 257.929688 C 332.25 320.671875 282.304688 355.941406 208.140625 372.523438 C 176.273438 379.65625 140.945312 367.585938 121.652344 359.550781 C 49.183594 329.367188 22.113281 292 2.734375 208.199219 C -3.105469 182.984375 1.035156 146.40625 9.222656 126.035156 C 29.570312 75.398438 65.570312 34.886719 115.167969 13.601562 C 129.484375 7.457031 151.550781 9.082031 164.898438 0.628906 Z M 167.058594 28.738281 C 155.890625 35.703125 138.039062 34.328125 125.976562 39.546875 C 81.789062 58.671875 48.464844 97.664062 33.003906 145.496094 C 23.46875 175 30.554688 215.132812 39.492188 238.46875 C 63.625 301.480469 131.304688 366.320312 227.601562 340.089844 C 294.777344 321.792969 373.089844 234.09375 337.871094 136.847656 C 313.910156 70.683594 258.921875 27.769531 167.058594 28.738281 Z M 167.058594 28.738281 "/>
|
||||
|
|
Before Width: | Height: | Size: 3.9 KiB After Width: | Height: | Size: 3.9 KiB |
|
@ -1,5 +1,5 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="375px" height="375px" viewBox="0 0 375 375" version="1.1">
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="375px" height="375px" viewBox="0 0 375 375" version="1.1">
|
||||
<g id="surface1">
|
||||
<path style="fill:none;stroke-width:3;stroke-linecap:round;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:4;" d="M 50.142866 82.148801 L 50.142866 39.815463 C 50.424458 33.621693 52.916581 31.750081 59.531165 30.427164 L 76.729084 27.78133 " transform="matrix(6.200787,0,0,6.200787,-197.253346,-157.8247)"/>
|
||||
<path style="fill:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:4;" d="M 71.302826 41.539063 C 71.302557 42.583758 70.419972 43.5493 68.987594 44.071864 C 67.554692 44.593707 65.78979 44.594173 64.357158 44.071322 C 62.92505 43.549191 62.04211 42.584017 62.042478 41.5387 Z M 71.302826 41.539063 " transform="matrix(6.124445,-0.970017,0.970017,6.124445,-197.253346,-157.8247)"/>
|
||||
|
|
Before Width: | Height: | Size: 1.4 KiB After Width: | Height: | Size: 1.3 KiB |
|
@ -1,5 +1,5 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="375px" height="375px" viewBox="0 0 375 375" version="1.1">
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="375px" height="375px" viewBox="0 0 375 375" version="1.1">
|
||||
<g id="surface1">
|
||||
<path style="fill:none;stroke-width:3;stroke-linecap:round;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:4;" d="M 50.206848 82.148801 L 50.142592 39.815463 C 50.424184 33.621693 52.916938 31.750081 59.531522 30.427164 L 76.72944 27.78133 " transform="matrix(6.200787,0,0,6.200787,-123.821962,-157.8247)"/>
|
||||
<path style="fill:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:4;" d="M 71.302556 41.53902 C 71.302909 42.583813 70.420324 43.549356 68.987323 44.071821 C 67.555044 44.593762 65.790142 44.594229 64.35751 44.071377 C 62.924779 43.549148 62.042462 42.584073 62.042208 41.538657 Z M 71.302556 41.53902 " transform="matrix(6.124445,-0.970017,0.970017,6.124445,-123.821962,-157.8247)"/>
|
||||
|
|
Before Width: | Height: | Size: 2.2 KiB After Width: | Height: | Size: 2.1 KiB |
|
@ -1,5 +1,5 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="375px" height="375px" viewBox="0 0 375 375" version="1.1">
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="375px" height="375px" viewBox="0 0 375 375" version="1.1">
|
||||
<g id="surface1">
|
||||
<path style="fill:none;stroke-width:1.14286;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:4;" d="M 60.65172 71.512176 L 60.65172 45.305829 " transform="matrix(11.07422,0,0,11.07422,-483.861879,-432.203273)"/>
|
||||
<path style="fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;stroke-width:1.14286;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:4;" d="M 58.356129 69.272317 L 62.891578 69.272317 L 62.891578 71.540042 L 58.356129 71.540042 Z M 58.356129 69.272317 " transform="matrix(11.07422,0,0,11.07422,-483.861879,-432.203273)"/>
|
||||
|
|
Before Width: | Height: | Size: 3.3 KiB After Width: | Height: | Size: 3.2 KiB |
|
@ -1,5 +1,5 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="375px" height="375px" viewBox="0 0 375 375" version="1.1">
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="375px" height="375px" viewBox="0 0 375 375" version="1.1">
|
||||
<g id="surface1">
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;" d="M 370.085938 188.761719 C 370.085938 290.742188 287.238281 373.410156 185.042969 373.410156 C 82.847656 373.410156 0 290.742188 0 188.761719 C 0 86.78125 82.847656 4.113281 185.042969 4.113281 C 287.238281 4.113281 370.085938 86.78125 370.085938 188.761719 Z M 370.085938 188.761719 "/>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(45.09804%,29.019609%,3.137255%);fill-opacity:1;" d="M 172.925781 76.054688 L 172.925781 302.253906 L 197.160156 302.253906 L 197.160156 76.054688 Z M 112.335938 92.214844 C 98.953125 92.214844 88.101562 103.0625 88.101562 116.449219 C 88.101562 129.832031 98.953125 140.683594 112.335938 140.683594 C 125.722656 140.683594 136.570312 129.832031 136.570312 116.449219 C 136.570312 103.0625 125.722656 92.214844 112.335938 92.214844 Z M 257.75 92.214844 C 244.363281 92.214844 233.511719 103.0625 233.511719 116.449219 C 233.511719 129.832031 244.363281 140.683594 257.75 140.683594 C 271.132812 140.683594 281.984375 129.832031 281.984375 116.449219 C 281.984375 103.0625 271.132812 92.214844 257.75 92.214844 Z M 96.179688 156.839844 C 86.488281 156.839844 80.023438 166.027344 80.023438 172.996094 C 80.023438 181.515625 100.21875 197.179688 100.21875 205.3125 C 100.21875 214.292969 71.945312 221.46875 71.945312 253.78125 L 100.21875 253.78125 L 100.21875 302.253906 L 124.453125 302.253906 L 124.453125 253.78125 L 152.730469 253.78125 C 152.730469 221.46875 124.453125 213.867188 124.453125 205.3125 C 124.453125 196.757812 144.648438 181.90625 144.648438 172.996094 C 144.648438 166.414062 137.789062 156.839844 128.492188 156.839844 Z M 233.511719 156.839844 C 224.992188 156.839844 217.355469 164.605469 217.355469 172.996094 C 217.355469 189.15625 245.628906 237.882812 245.628906 253.78125 L 245.628906 302.253906 L 269.867188 302.253906 L 269.867188 253.78125 C 269.867188 238.199219 298.140625 189.15625 298.140625 172.996094 C 298.140625 164.058594 290.890625 156.839844 281.984375 156.839844 Z M 233.511719 156.839844 "/>
|
||||
|
|
Before Width: | Height: | Size: 2.3 KiB After Width: | Height: | Size: 2.2 KiB |
|
@ -1,5 +1,5 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="375px" height="375px" viewBox="0 0 375 375" version="1.1">
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="375px" height="375px" viewBox="0 0 375 375" version="1.1">
|
||||
<g id="surface1">
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;" d="M 375 187.5 C 375 291.054688 291.054688 375 187.5 375 C 83.945312 375 0 291.054688 0 187.5 C 0 83.945312 83.945312 0 187.5 0 C 291.054688 0 375 83.945312 375 187.5 Z M 375 187.5 "/>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(45.09804%,29.019609%,3.137255%);fill-opacity:1;" d="M 185.683594 68.652344 C 185.683594 82.882812 173.253906 94.417969 157.925781 94.417969 C 142.59375 94.417969 130.167969 82.882812 130.167969 68.652344 C 130.167969 54.425781 142.59375 42.890625 157.925781 42.890625 C 173.253906 42.890625 185.683594 54.425781 185.683594 68.652344 Z M 185.683594 68.652344 "/>
|
||||
|
|
Before Width: | Height: | Size: 3.6 KiB After Width: | Height: | Size: 3.6 KiB |
|
@ -1,5 +1,5 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="328px" height="374px" viewBox="0 0 328 374" version="1.1">
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="328px" height="374px" viewBox="0 0 328 374" version="1.1">
|
||||
<g id="surface1">
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;" d="M 328.25 186.207031 C 328.25 289.484375 254.78125 373.207031 164.152344 373.207031 C 73.523438 373.207031 0.0507812 289.484375 0.0507812 186.207031 C 0.0507812 82.929688 73.523438 -0.792969 164.152344 -0.792969 C 254.78125 -0.792969 328.25 82.929688 328.25 186.207031 Z M 328.25 186.207031 "/>
|
||||
<path style=" stroke:none;fill-rule:evenodd;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 128.941406 108.324219 C 140.230469 107.28125 149 97.5625 149 86.191406 C 149 73.957031 139.011719 63.976562 126.769531 63.976562 C 114.527344 63.976562 104.542969 73.957031 104.542969 86.191406 C 104.542969 89.925781 105.585938 93.742188 107.324219 96.953125 L 115.242188 208.34375 L 196.8125 208.367188 L 230.265625 286.71875 L 274.191406 269.5 L 267.390625 253.3125 L 242.808594 262.179688 L 210.4375 187.484375 L 134.597656 187.992188 L 133.554688 173.886719 L 188.457031 173.90625 L 188.457031 153.035156 L 131.460938 153.011719 Z M 128.941406 108.324219 "/>
|
||||
|
|
Before Width: | Height: | Size: 1.8 KiB After Width: | Height: | Size: 1.8 KiB |
|
@ -1,5 +1,5 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="375px" height="375px" viewBox="0 0 375 375" version="1.1">
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="375px" height="375px" viewBox="0 0 375 375" version="1.1">
|
||||
<g id="surface1">
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(98.823529%,84.313726%,28.235295%);fill-opacity:1;" d="M 375 187.5 C 375 291.054688 291.054688 375 187.5 375 C 83.945312 375 0 291.054688 0 187.5 C 0 83.945312 83.945312 0 187.5 0 C 291.054688 0 375 83.945312 375 187.5 Z M 375 187.5 "/>
|
||||
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(98.039216%,74.901962%,25.098041%);fill-opacity:1;" d="M 375 187.5 C 375 175.265625 373.8125 163.3125 371.578125 151.730469 L 308.929688 89.082031 L 213.179688 159.253906 L 134.214844 80.289062 L 74.527344 206.832031 L 106.984375 239.292969 L 84.605469 294.871094 L 163.164062 373.429688 C 171.128906 374.460938 179.253906 375 187.5 375 C 291.054688 375 375 291.054688 375 187.5 Z M 375 187.5 "/>
|
||||
|
|
Before Width: | Height: | Size: 4.8 KiB After Width: | Height: | Size: 4.7 KiB |