Initial commit
255
00-templates/boxes.typ
Normal file
@ -0,0 +1,255 @@
|
|||||||
|
//
|
||||||
|
// Description: Creating nice looking information boxes with different logos
|
||||||
|
// Author : Silvan Zahno
|
||||||
|
//
|
||||||
|
#import "constants.typ": *
|
||||||
|
|
||||||
|
#let iconbox(
|
||||||
|
width: 100%,
|
||||||
|
radius: 4pt,
|
||||||
|
border: 4pt,
|
||||||
|
inset: 10pt,
|
||||||
|
outset: -10pt,
|
||||||
|
linecolor: code-border,
|
||||||
|
icon: none,
|
||||||
|
iconheight: 1cm,
|
||||||
|
body
|
||||||
|
) = {
|
||||||
|
if body != none {
|
||||||
|
align(left,
|
||||||
|
rect(
|
||||||
|
stroke: (left:linecolor+border, rest:code-border+0.1pt),
|
||||||
|
radius: (left:0pt, right:radius),
|
||||||
|
fill: code-bg,
|
||||||
|
outset: (left:outset, right:outset),
|
||||||
|
inset: (left:inset*2, top:inset, right:inset*2, bottom:inset),
|
||||||
|
width: width)[
|
||||||
|
#if icon != none {
|
||||||
|
align(left,
|
||||||
|
table(
|
||||||
|
stroke:none,
|
||||||
|
align:left+horizon,
|
||||||
|
columns: (auto,auto),
|
||||||
|
image(icon, height:iconheight), [#body]
|
||||||
|
)
|
||||||
|
)
|
||||||
|
} else {
|
||||||
|
body
|
||||||
|
}
|
||||||
|
]
|
||||||
|
)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
#let infobox(
|
||||||
|
width: 100%,
|
||||||
|
radius: 4pt,
|
||||||
|
border: 4pt,
|
||||||
|
inset:10pt,
|
||||||
|
outset: -10pt,
|
||||||
|
body
|
||||||
|
) = {
|
||||||
|
iconbox(
|
||||||
|
width: width,
|
||||||
|
radius: radius,
|
||||||
|
border: border,
|
||||||
|
inset: inset,
|
||||||
|
outset: outset,
|
||||||
|
linecolor: color-info,
|
||||||
|
icon: icon-info,
|
||||||
|
)[#body]
|
||||||
|
}
|
||||||
|
|
||||||
|
#let warningbox(
|
||||||
|
width: 100%,
|
||||||
|
radius: 4pt,
|
||||||
|
border: 4pt,
|
||||||
|
inset:10pt,
|
||||||
|
outset: -10pt,
|
||||||
|
body
|
||||||
|
) = {
|
||||||
|
iconbox(
|
||||||
|
width: width,
|
||||||
|
radius: radius,
|
||||||
|
border: border,
|
||||||
|
inset: inset,
|
||||||
|
outset: outset,
|
||||||
|
linecolor: color-warning,
|
||||||
|
icon: icon-warning,
|
||||||
|
)[#body]
|
||||||
|
}
|
||||||
|
|
||||||
|
#let ideabox(
|
||||||
|
width: 100%,
|
||||||
|
radius: 4pt,
|
||||||
|
border: 4pt,
|
||||||
|
inset:10pt,
|
||||||
|
outset: -10pt,
|
||||||
|
body
|
||||||
|
) = {
|
||||||
|
iconbox(
|
||||||
|
width: width,
|
||||||
|
radius: radius,
|
||||||
|
border: border,
|
||||||
|
inset: inset,
|
||||||
|
outset: outset,
|
||||||
|
linecolor: color-idea,
|
||||||
|
icon: icon-idea
|
||||||
|
)[#body]
|
||||||
|
}
|
||||||
|
|
||||||
|
#let firebox(
|
||||||
|
width: 100%,
|
||||||
|
radius: 4pt,
|
||||||
|
border: 4pt,
|
||||||
|
inset:10pt,
|
||||||
|
outset: -10pt,
|
||||||
|
body
|
||||||
|
) = {
|
||||||
|
iconbox(
|
||||||
|
width: width,
|
||||||
|
radius: radius,
|
||||||
|
border: border,
|
||||||
|
inset: inset,
|
||||||
|
outset: outset,
|
||||||
|
linecolor: color-fire,
|
||||||
|
icon: icon-fire,
|
||||||
|
)[#body]
|
||||||
|
}
|
||||||
|
|
||||||
|
#let importantbox(
|
||||||
|
width: 100%,
|
||||||
|
radius: 4pt,
|
||||||
|
border: 4pt,
|
||||||
|
inset:10pt,
|
||||||
|
outset: -10pt,
|
||||||
|
body
|
||||||
|
) = {
|
||||||
|
iconbox(
|
||||||
|
width: width,
|
||||||
|
radius: radius,
|
||||||
|
border: border,
|
||||||
|
inset: inset,
|
||||||
|
outset: outset,
|
||||||
|
linecolor: color-important,
|
||||||
|
icon: icon-important,
|
||||||
|
)[#body]
|
||||||
|
}
|
||||||
|
|
||||||
|
#let rocketbox(
|
||||||
|
width: 100%,
|
||||||
|
radius: 4pt,
|
||||||
|
border: 4pt,
|
||||||
|
inset:10pt,
|
||||||
|
outset: -10pt,
|
||||||
|
body
|
||||||
|
) = {
|
||||||
|
iconbox(
|
||||||
|
width: width,
|
||||||
|
radius: radius,
|
||||||
|
border: border,
|
||||||
|
inset: inset,
|
||||||
|
outset: outset,
|
||||||
|
linecolor: color-rocket,
|
||||||
|
icon: icon-rocket,
|
||||||
|
)[#body]
|
||||||
|
}
|
||||||
|
|
||||||
|
#let todobox(
|
||||||
|
width: 100%,
|
||||||
|
radius: 4pt,
|
||||||
|
border: 4pt,
|
||||||
|
inset:10pt,
|
||||||
|
outset: -10pt,
|
||||||
|
body
|
||||||
|
) = {
|
||||||
|
iconbox(
|
||||||
|
width: width,
|
||||||
|
radius: radius,
|
||||||
|
border: border,
|
||||||
|
inset: inset,
|
||||||
|
outset: outset,
|
||||||
|
linecolor: color-todo,
|
||||||
|
icon: icon-todo,
|
||||||
|
)[#body]
|
||||||
|
}
|
||||||
|
|
||||||
|
// Creating nice looking information boxes with different headings
|
||||||
|
#let colorbox(
|
||||||
|
title: "title",
|
||||||
|
color: color-todo,
|
||||||
|
stroke: 0.5pt,
|
||||||
|
radius: 4pt,
|
||||||
|
width: auto,
|
||||||
|
body
|
||||||
|
) = {
|
||||||
|
let strokeColor = color
|
||||||
|
let backgroundColor = color.lighten(50%)
|
||||||
|
|
||||||
|
return box(
|
||||||
|
fill: backgroundColor,
|
||||||
|
stroke: stroke + strokeColor,
|
||||||
|
radius: radius,
|
||||||
|
width: width
|
||||||
|
)[
|
||||||
|
#block(
|
||||||
|
fill: strokeColor,
|
||||||
|
inset: 8pt,
|
||||||
|
radius: (top-left: radius, bottom-right: radius),
|
||||||
|
)[
|
||||||
|
#text(fill: white, weight: "bold")[#title]
|
||||||
|
]
|
||||||
|
#block(
|
||||||
|
width: 100%,
|
||||||
|
inset: (x: 8pt, bottom: 8pt)
|
||||||
|
)[
|
||||||
|
#body
|
||||||
|
]
|
||||||
|
]
|
||||||
|
}
|
||||||
|
|
||||||
|
#let slantedBackground(
|
||||||
|
color: black, body) = {
|
||||||
|
set text(fill: white, weight: "bold")
|
||||||
|
style(styles => {
|
||||||
|
let size = measure(body, styles)
|
||||||
|
let inset = 8pt
|
||||||
|
[#block()[
|
||||||
|
#polygon(
|
||||||
|
fill: color,
|
||||||
|
(0pt, 0pt),
|
||||||
|
(0pt, size.height + (2*inset)),
|
||||||
|
(size.width + (2*inset), size.height + (2*inset)),
|
||||||
|
(size.width + (2*inset) + 6pt, 0cm)
|
||||||
|
)
|
||||||
|
#place(center + top, dy: size.height, dx: -3pt)[#body]
|
||||||
|
]]
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
#let slantedColorbox(
|
||||||
|
title: "title",
|
||||||
|
color: color-todo,
|
||||||
|
stroke: 0.5pt,
|
||||||
|
radius: 4pt,
|
||||||
|
width: auto,
|
||||||
|
body
|
||||||
|
) = {
|
||||||
|
let strokeColor = color
|
||||||
|
let backgroundColor = color.lighten(50%)
|
||||||
|
|
||||||
|
return box(
|
||||||
|
fill: backgroundColor,
|
||||||
|
stroke: stroke + strokeColor,
|
||||||
|
radius: radius,
|
||||||
|
width: width
|
||||||
|
)[
|
||||||
|
#slantedBackground(color: strokeColor)[#title]
|
||||||
|
#block(
|
||||||
|
width: 100%,
|
||||||
|
inset: (top: -2pt, x: 10pt, bottom: 10pt)
|
||||||
|
)[
|
||||||
|
#body
|
||||||
|
]
|
||||||
|
]
|
||||||
|
}
|
87
00-templates/constants.typ
Normal file
@ -0,0 +1,87 @@
|
|||||||
|
//
|
||||||
|
// Description: Commonly used constants in the templates
|
||||||
|
// Author : Silvan Zahno
|
||||||
|
//
|
||||||
|
// Fontsizes
|
||||||
|
#let tinyer = 6pt
|
||||||
|
#let tiny = 8pt
|
||||||
|
#let smaller = 9pt
|
||||||
|
#let small = 10pt
|
||||||
|
#let normal = 11pt
|
||||||
|
#let large = 14pt
|
||||||
|
#let larger = 16pt
|
||||||
|
#let huge = 24pt
|
||||||
|
#let huger = 36pt
|
||||||
|
|
||||||
|
// fontsize+
|
||||||
|
#let tinyer_p = tinyer+5pt
|
||||||
|
#let tiny_p = tiny+5pt
|
||||||
|
#let smaller_p = smaller+5pt
|
||||||
|
#let small_p = small+5pt
|
||||||
|
#let normal_p = normal+5pt
|
||||||
|
#let large_p = large+5pt
|
||||||
|
#let larger_p = larger+5pt
|
||||||
|
#let huge_p = huge+5pt
|
||||||
|
#let huger_p = huger+5pt
|
||||||
|
|
||||||
|
// fontsizes++
|
||||||
|
#let tinyer_pp = tinyer+10pt
|
||||||
|
#let tiny_pp = tiny+10pt
|
||||||
|
#let smaller_pp = smaller+10pt
|
||||||
|
#let small_pp = small+10pt
|
||||||
|
#let normal_pp = normal+10pt
|
||||||
|
#let large_pp = large+10pt
|
||||||
|
#let larger_pp = larger+10pt
|
||||||
|
#let huge_pp = huge+10pt
|
||||||
|
#let huger_pp = huger+10pt
|
||||||
|
|
||||||
|
// Colors
|
||||||
|
#let box-border = rgb("#252525")
|
||||||
|
#let code-bg = rgb("#F5F5F5")
|
||||||
|
#let code-border = rgb("#F5F5F5").darken(10%)
|
||||||
|
#let gray-80 = rgb("#000000").lighten(20%)
|
||||||
|
#let gray-70 = rgb("#000000").lighten(30%)
|
||||||
|
#let gray-60 = rgb("#000000").lighten(40%)
|
||||||
|
#let gray-50 = rgb("#000000").lighten(50%)
|
||||||
|
#let gray-40 = rgb("#000000").lighten(60%)
|
||||||
|
#let gray-30 = rgb("#000000").lighten(70%)
|
||||||
|
#let gray-20 = rgb("#000000").lighten(80%)
|
||||||
|
#let gray-10 = rgb("#000000").lighten(90%)
|
||||||
|
#let hei-orange = rgb("#eb6a28").darken(20%)
|
||||||
|
#let hei-blue = rgb("#0095d8").darken(20%)
|
||||||
|
#let hei-pink = rgb("#da0066").darken(20%)
|
||||||
|
#let hei-yellow = rgb("#f5c400").darken(20%)
|
||||||
|
#let hei-green = rgb("#00925a").darken(20%)
|
||||||
|
#let spl-green = rgb("#bed600").darken(20%)
|
||||||
|
#let spl-blue = rgb("#00a9e0").darken(20%)
|
||||||
|
#let spl-pink = rgb("#da0066").darken(20%)
|
||||||
|
#let color-info = rgb("#5b75a0ff")
|
||||||
|
#let color-idea = rgb("#ffe082ff")
|
||||||
|
#let color-warning = rgb("#ffce31ff")
|
||||||
|
#let color-important = rgb("#f44336ff")
|
||||||
|
#let color-fire = rgb("#fc9502ff")
|
||||||
|
#let color-rocket = rgb("#bc5fd3ff")
|
||||||
|
#let color-todo = rgb("#F5F5F5").darken(10%)
|
||||||
|
|
||||||
|
// Resources
|
||||||
|
#let icons-folder = "../00-templates/icons/"
|
||||||
|
#let resources-folder = "../04-resources/"
|
||||||
|
#let icon = resources-folder + "icon.svg"
|
||||||
|
#let icon-check-badge = icons-folder + "check-badge.svg"
|
||||||
|
#let icon-check-circle = icons-folder + "check-circle.svg"
|
||||||
|
#let icon-check-square = icons-folder + "check-square.svg"
|
||||||
|
#let icon-check = icons-folder + "check.svg"
|
||||||
|
#let icon-circle = icons-folder + "circle.svg"
|
||||||
|
#let icon-file = icons-folder + "file.svg"
|
||||||
|
#let icon-fire = icons-folder + "fire.svg"
|
||||||
|
#let icon-folder = icons-folder + "folder.svg"
|
||||||
|
#let icon-idea = icons-folder + "idea.svg"
|
||||||
|
#let icon-important = icons-folder + "important.svg"
|
||||||
|
#let icon-info = icons-folder + "info.svg"
|
||||||
|
#let icon-rocket = icons-folder + "rocket.svg"
|
||||||
|
#let icon-square = icons-folder + "square.svg"
|
||||||
|
#let icon-todo = icons-folder + "todo.svg"
|
||||||
|
#let icon-warning = icons-folder + "warning.svg"
|
||||||
|
#let icon-x-circle = icons-folder + "x-circle.svg"
|
||||||
|
#let icon-x-square = icons-folder + "x-square.svg"
|
||||||
|
#let icon-x = icons-folder + "x.svg"
|
276
00-templates/helpers.typ
Normal file
@ -0,0 +1,276 @@
|
|||||||
|
//
|
||||||
|
// Description: Import other modules so you only need to import the helpers
|
||||||
|
// Use : #import "../00-templates/helpers.typ": *
|
||||||
|
// Author : Silvan Zahno
|
||||||
|
//
|
||||||
|
#import "../00-templates/boxes.typ": *
|
||||||
|
#import "../00-templates/constants.typ": *
|
||||||
|
#import "../00-templates/items.typ": *
|
||||||
|
#import "../00-templates/sections.typ": *
|
||||||
|
#import "../00-templates/tablex.typ": *
|
||||||
|
#import "../01-settings/metadata.typ": *
|
||||||
|
#import "../03-tail/glossary.typ": *
|
||||||
|
|
||||||
|
// External Plugins
|
||||||
|
// Fancy pretty print with line numbers and stuff
|
||||||
|
#import "@preview/codelst:2.0.1": sourcecode
|
||||||
|
|
||||||
|
#let myref(label) = locate(loc =>{
|
||||||
|
if query(label,loc).len() != 0 {
|
||||||
|
ref(label)
|
||||||
|
} else {
|
||||||
|
text(fill: red)[?]
|
||||||
|
}
|
||||||
|
})
|
||||||
|
|
||||||
|
//-------------------------------------
|
||||||
|
// Acronym functions
|
||||||
|
//
|
||||||
|
#let acrshort(item) = {
|
||||||
|
item.abbr
|
||||||
|
}
|
||||||
|
#let acrlong(item) = {
|
||||||
|
[#item.long)]
|
||||||
|
}
|
||||||
|
#let acrfull(item) = {
|
||||||
|
[#item.long (#item.abbr)]
|
||||||
|
}
|
||||||
|
|
||||||
|
//-------------------------------------
|
||||||
|
// Table of content
|
||||||
|
//
|
||||||
|
#let toc(
|
||||||
|
lang: "en",
|
||||||
|
tableof: (
|
||||||
|
toc: true,
|
||||||
|
minitoc : false,
|
||||||
|
tof: false,
|
||||||
|
tot: false,
|
||||||
|
tol: false,
|
||||||
|
toe: false,
|
||||||
|
),
|
||||||
|
indent: true,
|
||||||
|
depth: none,
|
||||||
|
) = {
|
||||||
|
// Table of content
|
||||||
|
if tableof.toc == true {
|
||||||
|
outline(
|
||||||
|
title: [#if lang == "de" {"Inhalt"} else if lang == "fr" {"Contenu"} else {"Contents"}],
|
||||||
|
indent: indent,
|
||||||
|
depth: depth,
|
||||||
|
)
|
||||||
|
}
|
||||||
|
|
||||||
|
// Table of figures
|
||||||
|
if tableof.tof == true {
|
||||||
|
outline(
|
||||||
|
title: [#if lang == "de" {"Abbildungen"} else if lang == "fr" {"Figures"} else {"Figures"}],
|
||||||
|
target: figure.where(kind: image),
|
||||||
|
indent: indent,
|
||||||
|
depth: depth,
|
||||||
|
)
|
||||||
|
}
|
||||||
|
|
||||||
|
// Table of tables
|
||||||
|
if tableof.tot == true {
|
||||||
|
outline(
|
||||||
|
title: [#if lang == "de" {[Tabellen]} else if lang == "fr" {[Tables]} else {[Tables]}],
|
||||||
|
target: figure.where(kind: table),
|
||||||
|
indent: indent,
|
||||||
|
depth: depth,
|
||||||
|
)
|
||||||
|
}
|
||||||
|
|
||||||
|
// Table of listings
|
||||||
|
if tableof.tol == true {
|
||||||
|
outline(
|
||||||
|
title: [#if lang == "de" {"Programme"} else if lang == "fr" {"Programmes"} else {"Listings"}],
|
||||||
|
target: figure.where(kind: raw),
|
||||||
|
indent: indent,
|
||||||
|
depth: depth,
|
||||||
|
)
|
||||||
|
}
|
||||||
|
|
||||||
|
// Table of equation
|
||||||
|
if tableof.toe == true {
|
||||||
|
outline(
|
||||||
|
title: [#if lang == "de" {"Gleichungen"} else if lang == "fr" {"Équations"} else {"Equations"}],
|
||||||
|
target: math.equation.where(block:true),
|
||||||
|
indent: indent,
|
||||||
|
depth: depth,
|
||||||
|
)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
#let minitoc(
|
||||||
|
after: none,
|
||||||
|
before: none,
|
||||||
|
addline: true,
|
||||||
|
stroke: 0.5pt,
|
||||||
|
length: 100%
|
||||||
|
) = {
|
||||||
|
v(2em)
|
||||||
|
text(large, [*Contents*])
|
||||||
|
if addline == true {
|
||||||
|
line(length:length, stroke:stroke)
|
||||||
|
}
|
||||||
|
outline(
|
||||||
|
title: none,
|
||||||
|
target: selector(heading)
|
||||||
|
.after(after)
|
||||||
|
.before(before, inclusive: false)
|
||||||
|
)
|
||||||
|
if addline == true {
|
||||||
|
line(length:length, stroke:stroke)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
//-------------------------------------
|
||||||
|
// Heading shift
|
||||||
|
//
|
||||||
|
#let unshift_prefix(prefix, content) = style((s) => {
|
||||||
|
pad(left: -measure(prefix, s).width, prefix + content)
|
||||||
|
})
|
||||||
|
|
||||||
|
//-------------------------------------
|
||||||
|
// Research
|
||||||
|
//
|
||||||
|
// item, item, item and item List
|
||||||
|
//
|
||||||
|
#let enumerating_authors(
|
||||||
|
items: none,
|
||||||
|
) = {
|
||||||
|
let i = 1
|
||||||
|
if items != none {
|
||||||
|
for item in items {
|
||||||
|
if item != none {
|
||||||
|
if item.name != none and item.institute != none {
|
||||||
|
[#item.name#super(repr(item.institute))]
|
||||||
|
} else if item.name != none {
|
||||||
|
[#item.name]
|
||||||
|
}
|
||||||
|
if i < items.len() {
|
||||||
|
[, ]
|
||||||
|
}
|
||||||
|
}
|
||||||
|
i = i + 1
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
#let enumerating_institutes(
|
||||||
|
items: none,
|
||||||
|
) = {
|
||||||
|
let i = 1
|
||||||
|
if items != none {
|
||||||
|
for item in items {
|
||||||
|
if item != none {
|
||||||
|
[_#super(repr(i))_ #if item.research_group != none { [_ #item.research_group - _]} _ #item.name __, #item.address _ \ ]
|
||||||
|
i = i + 1
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
//-------------------------------------
|
||||||
|
// Script
|
||||||
|
//
|
||||||
|
// item, item, item and item List
|
||||||
|
//
|
||||||
|
#let enumerating_items(
|
||||||
|
items: none,
|
||||||
|
) = {
|
||||||
|
let i = 1
|
||||||
|
if items != none {
|
||||||
|
for item in items {
|
||||||
|
if item != none {
|
||||||
|
[#item]
|
||||||
|
if i < items.len() {
|
||||||
|
[, ]
|
||||||
|
}
|
||||||
|
}
|
||||||
|
i = i + 1
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
#let enumerating_links(
|
||||||
|
names: none,
|
||||||
|
links: none,
|
||||||
|
) = {
|
||||||
|
if names != none {
|
||||||
|
let i = 0
|
||||||
|
for name in names {
|
||||||
|
if name != none {
|
||||||
|
[#link(links.at(i))[#name]]
|
||||||
|
if i+1 < names.len() {
|
||||||
|
[, ]
|
||||||
|
}
|
||||||
|
}
|
||||||
|
i = i + 1
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
#let enumerating_emails(
|
||||||
|
names: none,
|
||||||
|
emails: none,
|
||||||
|
) = {
|
||||||
|
if names != none {
|
||||||
|
let i = 0
|
||||||
|
for name in names {
|
||||||
|
if name != none {
|
||||||
|
[#link("mailto:"+emails.at(i))[#name]]
|
||||||
|
if i+1 < names.len() {
|
||||||
|
[, ]
|
||||||
|
}
|
||||||
|
}
|
||||||
|
i = i + 1
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
//-------------------------------------
|
||||||
|
// safe_link
|
||||||
|
//
|
||||||
|
#let safe_link(
|
||||||
|
name: none,
|
||||||
|
url: none,
|
||||||
|
) = {
|
||||||
|
if name != none {
|
||||||
|
if url != none {
|
||||||
|
link(url)[#name]
|
||||||
|
} else {
|
||||||
|
name
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
//-------------------------------------
|
||||||
|
// Counter
|
||||||
|
//
|
||||||
|
#let word_counter_init() = {[
|
||||||
|
#show regex("\b\w+\b"): it => counter("words").step() + it
|
||||||
|
]}
|
||||||
|
#let word_count(preamble:"Word count:") = {[
|
||||||
|
#preamble #counter("words").display()
|
||||||
|
]}
|
||||||
|
|
||||||
|
#let char_counter_init() = {
|
||||||
|
show regex(".+"): it => counter("chars").step() + it
|
||||||
|
}
|
||||||
|
#let char_count(preamble:"Char count:") = {[
|
||||||
|
#preamble #counter("chars").display()
|
||||||
|
]}
|
||||||
|
|
||||||
|
//-------------------------------------
|
||||||
|
// Option Style
|
||||||
|
//
|
||||||
|
#let option_style(
|
||||||
|
type: "draft",
|
||||||
|
size: small,
|
||||||
|
style: "italic",
|
||||||
|
fill: gray-40,
|
||||||
|
body) = {[
|
||||||
|
#if option.type == type {text(size:size, style:style, fill:fill)[#body]
|
||||||
|
}
|
||||||
|
]}
|
57
00-templates/icons/check-badge.svg
Normal file
@ -0,0 +1,57 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||||
|
<!-- Uploaded to: SVG Repo, www.svgrepo.com, Generator: SVG Repo Mixer Tools -->
|
||||||
|
|
||||||
|
<svg
|
||||||
|
width="800px"
|
||||||
|
height="800px"
|
||||||
|
viewBox="0 0 24 24"
|
||||||
|
fill="none"
|
||||||
|
version="1.1"
|
||||||
|
id="svg583"
|
||||||
|
sodipodi:docname="check-badge.svg"
|
||||||
|
inkscape:version="1.2.2 (b0a84865, 2022-12-01)"
|
||||||
|
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||||
|
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||||
|
xmlns="http://www.w3.org/2000/svg"
|
||||||
|
xmlns:svg="http://www.w3.org/2000/svg">
|
||||||
|
<defs
|
||||||
|
id="defs587" />
|
||||||
|
<sodipodi:namedview
|
||||||
|
id="namedview585"
|
||||||
|
pagecolor="#ffffff"
|
||||||
|
bordercolor="#999999"
|
||||||
|
borderopacity="1"
|
||||||
|
inkscape:showpageshadow="0"
|
||||||
|
inkscape:pageopacity="0"
|
||||||
|
inkscape:pagecheckerboard="0"
|
||||||
|
inkscape:deskcolor="#d1d1d1"
|
||||||
|
showgrid="false"
|
||||||
|
inkscape:zoom="0.295"
|
||||||
|
inkscape:cx="291.52542"
|
||||||
|
inkscape:cy="323.72881"
|
||||||
|
inkscape:window-width="1720"
|
||||||
|
inkscape:window-height="1387"
|
||||||
|
inkscape:window-x="0"
|
||||||
|
inkscape:window-y="25"
|
||||||
|
inkscape:window-maximized="0"
|
||||||
|
inkscape:current-layer="svg583" />
|
||||||
|
<path
|
||||||
|
opacity="0.1"
|
||||||
|
d="M13.8179 4.54512L13.6275 4.27845C12.8298 3.16176 11.1702 3.16176 10.3725 4.27845L10.1821 4.54512C9.76092 5.13471 9.05384 5.45043 8.33373 5.37041L7.48471 5.27608C6.21088 5.13454 5.13454 6.21088 5.27608 7.48471L5.37041 8.33373C5.45043 9.05384 5.13471 9.76092 4.54512 10.1821L4.27845 10.3725C3.16176 11.1702 3.16176 12.8298 4.27845 13.6275L4.54512 13.8179C5.13471 14.2391 5.45043 14.9462 5.37041 15.6663L5.27608 16.5153C5.13454 17.7891 6.21088 18.8655 7.48471 18.7239L8.33373 18.6296C9.05384 18.5496 9.76092 18.8653 10.1821 19.4549L10.3725 19.7215C11.1702 20.8382 12.8298 20.8382 13.6275 19.7215L13.8179 19.4549C14.2391 18.8653 14.9462 18.5496 15.6663 18.6296L16.5153 18.7239C17.7891 18.8655 18.8655 17.7891 18.7239 16.5153L18.6296 15.6663C18.5496 14.9462 18.8653 14.2391 19.4549 13.8179L19.7215 13.6275C20.8382 12.8298 20.8382 11.1702 19.7215 10.3725L19.4549 10.1821C18.8653 9.76092 18.5496 9.05384 18.6296 8.33373L18.7239 7.48471C18.8655 6.21088 17.7891 5.13454 16.5153 5.27608L15.6663 5.37041C14.9462 5.45043 14.2391 5.13471 13.8179 4.54512Z"
|
||||||
|
fill="#323232"
|
||||||
|
id="path577" />
|
||||||
|
<path
|
||||||
|
d="M13.8179 4.54512L13.6275 4.27845C12.8298 3.16176 11.1702 3.16176 10.3725 4.27845L10.1821 4.54512C9.76092 5.13471 9.05384 5.45043 8.33373 5.37041L7.48471 5.27608C6.21088 5.13454 5.13454 6.21088 5.27608 7.48471L5.37041 8.33373C5.45043 9.05384 5.13471 9.76092 4.54512 10.1821L4.27845 10.3725C3.16176 11.1702 3.16176 12.8298 4.27845 13.6275L4.54512 13.8179C5.13471 14.2391 5.45043 14.9462 5.37041 15.6663L5.27608 16.5153C5.13454 17.7891 6.21088 18.8655 7.48471 18.7239L8.33373 18.6296C9.05384 18.5496 9.76092 18.8653 10.1821 19.4549L10.3725 19.7215C11.1702 20.8382 12.8298 20.8382 13.6275 19.7215L13.8179 19.4549C14.2391 18.8653 14.9462 18.5496 15.6663 18.6296L16.5153 18.7239C17.7891 18.8655 18.8655 17.7891 18.7239 16.5153L18.6296 15.6663C18.5496 14.9462 18.8653 14.2391 19.4549 13.8179L19.7215 13.6275C20.8382 12.8298 20.8382 11.1702 19.7215 10.3725L19.4549 10.1821C18.8653 9.76092 18.5496 9.05384 18.6296 8.33373L18.7239 7.48471C18.8655 6.21088 17.7891 5.13454 16.5153 5.27608L15.6663 5.37041C14.9462 5.45043 14.2391 5.13471 13.8179 4.54512Z"
|
||||||
|
stroke="#323232"
|
||||||
|
stroke-width="2"
|
||||||
|
stroke-linecap="round"
|
||||||
|
stroke-linejoin="round"
|
||||||
|
id="path579" />
|
||||||
|
<path
|
||||||
|
d="M9 12L10.8189 13.8189V13.8189C10.9189 13.9189 11.0811 13.9189 11.1811 13.8189V13.8189L15 10"
|
||||||
|
stroke="#323232"
|
||||||
|
stroke-width="2"
|
||||||
|
stroke-linecap="round"
|
||||||
|
stroke-linejoin="round"
|
||||||
|
id="path581" />
|
||||||
|
</svg>
|
After Width: | Height: | Size: 3.6 KiB |
55
00-templates/icons/check-circle.svg
Normal file
@ -0,0 +1,55 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||||
|
<!-- Uploaded to: SVG Repo, www.svgrepo.com, Generator: SVG Repo Mixer Tools -->
|
||||||
|
|
||||||
|
<svg
|
||||||
|
width="800px"
|
||||||
|
height="800px"
|
||||||
|
viewBox="0 0 24 24"
|
||||||
|
fill="none"
|
||||||
|
version="1.1"
|
||||||
|
id="svg718"
|
||||||
|
sodipodi:docname="check-circle.svg"
|
||||||
|
inkscape:version="1.2.2 (b0a84865, 2022-12-01)"
|
||||||
|
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||||
|
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||||
|
xmlns="http://www.w3.org/2000/svg"
|
||||||
|
xmlns:svg="http://www.w3.org/2000/svg">
|
||||||
|
<defs
|
||||||
|
id="defs722" />
|
||||||
|
<sodipodi:namedview
|
||||||
|
id="namedview720"
|
||||||
|
pagecolor="#ffffff"
|
||||||
|
bordercolor="#999999"
|
||||||
|
borderopacity="1"
|
||||||
|
inkscape:showpageshadow="0"
|
||||||
|
inkscape:pageopacity="0"
|
||||||
|
inkscape:pagecheckerboard="0"
|
||||||
|
inkscape:deskcolor="#d1d1d1"
|
||||||
|
showgrid="false"
|
||||||
|
inkscape:zoom="0.295"
|
||||||
|
inkscape:cx="305.08475"
|
||||||
|
inkscape:cy="333.89831"
|
||||||
|
inkscape:window-width="1720"
|
||||||
|
inkscape:window-height="1387"
|
||||||
|
inkscape:window-x="0"
|
||||||
|
inkscape:window-y="25"
|
||||||
|
inkscape:window-maximized="0"
|
||||||
|
inkscape:current-layer="svg718" />
|
||||||
|
<path
|
||||||
|
opacity="0.1"
|
||||||
|
d="M21 12C21 16.9706 16.9706 21 12 21C7.02944 21 3 16.9706 3 12C3 7.02944 7.02944 3 12 3C16.9706 3 21 7.02944 21 12Z"
|
||||||
|
fill="#323232"
|
||||||
|
id="path712" />
|
||||||
|
<path
|
||||||
|
d="M21 12C21 16.9706 16.9706 21 12 21C7.02944 21 3 16.9706 3 12C3 7.02944 7.02944 3 12 3C16.9706 3 21 7.02944 21 12Z"
|
||||||
|
stroke="#323232"
|
||||||
|
stroke-width="2"
|
||||||
|
id="path714" />
|
||||||
|
<path
|
||||||
|
d="M9 12L10.6828 13.6828V13.6828C10.858 13.858 11.142 13.858 11.3172 13.6828V13.6828L15 10"
|
||||||
|
stroke="#323232"
|
||||||
|
stroke-width="2"
|
||||||
|
stroke-linecap="round"
|
||||||
|
stroke-linejoin="round"
|
||||||
|
id="path716" />
|
||||||
|
</svg>
|
After Width: | Height: | Size: 1.7 KiB |
6
00-templates/icons/check-square.svg
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?><!-- Uploaded to: SVG Repo, www.svgrepo.com, Generator: SVG Repo Mixer Tools -->
|
||||||
|
<svg width="800px" height="800px" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||||
|
<path opacity="0.1" d="M3 12C3 4.5885 4.5885 3 12 3C19.4115 3 21 4.5885 21 12C21 19.4115 19.4115 21 12 21C4.5885 21 3 19.4115 3 12Z" fill="#323232"/>
|
||||||
|
<path d="M3 12C3 4.5885 4.5885 3 12 3C19.4115 3 21 4.5885 21 12C21 19.4115 19.4115 21 12 21C4.5885 21 3 19.4115 3 12Z" stroke="#323232" stroke-width="2"/>
|
||||||
|
<path d="M9 12L10.6828 13.6828V13.6828C10.858 13.858 11.142 13.858 11.3172 13.6828V13.6828L15 10" stroke="#323232" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 718 B |
4
00-templates/icons/check.svg
Normal file
@ -0,0 +1,4 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?><!-- Uploaded to: SVG Repo, www.svgrepo.com, Generator: SVG Repo Mixer Tools -->
|
||||||
|
<svg width="800px" height="800px" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||||
|
<path d="M7 12L9.89075 14.8907V14.8907C9.95114 14.951 10.049 14.9511 10.1094 14.8907V14.8907L17 8" stroke="#323232" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 412 B |
5
00-templates/icons/circle.svg
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?><!-- Uploaded to: SVG Repo, www.svgrepo.com, Generator: SVG Repo Mixer Tools -->
|
||||||
|
<svg width="800px" height="800px" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||||
|
<path opacity="0.1" d="M21 12C21 16.9706 16.9706 21 12 21C7.02944 21 3 16.9706 3 12C3 7.02944 7.02944 3 12 3C16.9706 3 21 7.02944 21 12Z" fill="#323232"/>
|
||||||
|
<path d="M21 12C21 16.9706 16.9706 21 12 21C7.02944 21 3 16.9706 3 12C3 7.02944 7.02944 3 12 3C16.9706 3 21 7.02944 21 12Z" stroke="#323232" stroke-width="2"/>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 546 B |
5
00-templates/icons/file.svg
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?><!-- Uploaded to: SVG Repo, www.svgrepo.com, Generator: SVG Repo Mixer Tools -->
|
||||||
|
<svg width="800px" height="800px" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||||
|
<path opacity="0.1" d="M17.8284 6.82843C18.4065 7.40649 18.6955 7.69552 18.8478 8.06306C19 8.4306 19 8.83935 19 9.65685L19 17C19 18.8856 19 19.8284 18.4142 20.4142C17.8284 21 16.8856 21 15 21H9C7.11438 21 6.17157 21 5.58579 20.4142C5 19.8284 5 18.8856 5 17L5 7C5 5.11438 5 4.17157 5.58579 3.58579C6.17157 3 7.11438 3 9 3H12.3431C13.1606 3 13.5694 3 13.9369 3.15224C14.3045 3.30448 14.5935 3.59351 15.1716 4.17157L17.8284 6.82843Z" fill="#323232"/>
|
||||||
|
<path d="M17.8284 6.82843C18.4065 7.40649 18.6955 7.69552 18.8478 8.06306C19 8.4306 19 8.83935 19 9.65685L19 17C19 18.8856 19 19.8284 18.4142 20.4142C17.8284 21 16.8856 21 15 21H9C7.11438 21 6.17157 21 5.58579 20.4142C5 19.8284 5 18.8856 5 17L5 7C5 5.11438 5 4.17157 5.58579 3.58579C6.17157 3 7.11438 3 9 3H12.3431C13.1606 3 13.5694 3 13.9369 3.15224C14.3045 3.30448 14.5935 3.59351 15.1716 4.17157L17.8284 6.82843Z" stroke="#323232" stroke-width="2" stroke-linejoin="round"/>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 1.1 KiB |
30
00-templates/icons/fire.svg
Normal file
@ -0,0 +1,30 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<!-- Uploaded to: SVG Repo, www.svgrepo.com, Generator: SVG Repo Mixer Tools -->
|
||||||
|
<svg width="800px" height="800px" viewBox="-33 0 255 255" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" preserveAspectRatio="xMidYMid">
|
||||||
|
<defs>
|
||||||
|
<style>
|
||||||
|
|
||||||
|
.cls-3 {
|
||||||
|
fill: url(#linear-gradient-1);
|
||||||
|
}
|
||||||
|
|
||||||
|
.cls-4 {
|
||||||
|
fill: #fc9502;
|
||||||
|
}
|
||||||
|
|
||||||
|
.cls-5 {
|
||||||
|
fill: #fce202;
|
||||||
|
}
|
||||||
|
</style>
|
||||||
|
|
||||||
|
<linearGradient id="linear-gradient-1" gradientUnits="userSpaceOnUse" x1="94.141" y1="255" x2="94.141" y2="0.188">
|
||||||
|
<stop offset="0" stop-color="#ff4c0d"/>
|
||||||
|
<stop offset="1" stop-color="#fc9502"/>
|
||||||
|
</linearGradient>
|
||||||
|
</defs>
|
||||||
|
<g id="fire">
|
||||||
|
<path d="M187.899,164.809 C185.803,214.868 144.574,254.812 94.000,254.812 C42.085,254.812 -0.000,211.312 -0.000,160.812 C-0.000,154.062 -0.121,140.572 10.000,117.812 C16.057,104.191 19.856,95.634 22.000,87.812 C23.178,83.513 25.469,76.683 32.000,87.812 C35.851,94.374 36.000,103.812 36.000,103.812 C36.000,103.812 50.328,92.817 60.000,71.812 C74.179,41.019 62.866,22.612 59.000,9.812 C57.662,5.384 56.822,-2.574 66.000,0.812 C75.352,4.263 100.076,21.570 113.000,39.812 C131.445,65.847 138.000,90.812 138.000,90.812 C138.000,90.812 143.906,83.482 146.000,75.812 C148.365,67.151 148.400,58.573 155.999,67.813 C163.226,76.600 173.959,93.113 180.000,108.812 C190.969,137.321 187.899,164.809 187.899,164.809 Z" id="path-1" class="cls-3" fill-rule="evenodd"/>
|
||||||
|
<path d="M94.000,254.812 C58.101,254.812 29.000,225.711 29.000,189.812 C29.000,168.151 37.729,155.000 55.896,137.166 C67.528,125.747 78.415,111.722 83.042,102.172 C83.953,100.292 86.026,90.495 94.019,101.966 C98.212,107.982 104.785,118.681 109.000,127.812 C116.266,143.555 118.000,158.812 118.000,158.812 C118.000,158.812 125.121,154.616 130.000,143.812 C131.573,140.330 134.753,127.148 143.643,140.328 C150.166,150.000 159.127,167.390 159.000,189.812 C159.000,225.711 129.898,254.812 94.000,254.812 Z" id="path-2" class="cls-4" fill-rule="evenodd"/>
|
||||||
|
<path d="M95.000,183.812 C104.250,183.812 104.250,200.941 116.000,223.812 C123.824,239.041 112.121,254.812 95.000,254.812 C77.879,254.812 69.000,240.933 69.000,223.812 C69.000,206.692 85.750,183.812 95.000,183.812 Z" id="path-3" class="cls-5" fill-rule="evenodd"/>
|
||||||
|
</g>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 2.3 KiB |
5
00-templates/icons/folder.svg
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?><!-- Uploaded to: SVG Repo, www.svgrepo.com, Generator: SVG Repo Mixer Tools -->
|
||||||
|
<svg width="800px" height="800px" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||||
|
<path opacity="0.1" d="M3 9.312C3 4.93757 3.93757 4 8.312 4H9.92963C10.5983 4 11.2228 4.3342 11.5937 4.8906L12.4063 6.1094C12.7772 6.6658 13.4017 7 14.0704 7C15.9647 7 17.8145 7 19.1258 7C20.1807 7 21.0128 7.82095 21.0029 8.8758C21.0013 9.05376 21 9.20638 21 9.312V14.688C21 19.0624 20.0624 20 15.688 20H8.312C3.93757 20 3 19.0624 3 14.688V9.312Z" fill="#323232"/>
|
||||||
|
<path d="M3 9.312C3 4.93757 3.93757 4 8.312 4H9.92963C10.5983 4 11.2228 4.3342 11.5937 4.8906L12.4063 6.1094C12.7772 6.6658 13.4017 7 14.0704 7C15.9647 7 17.8145 7 19.1258 7C20.1807 7 21.0128 7.82095 21.0029 8.8758C21.0013 9.05376 21 9.20638 21 9.312V14.688C21 19.0624 20.0624 20 15.688 20H8.312C3.93757 20 3 19.0624 3 14.688V9.312Z" stroke="#323232" stroke-width="2"/>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 966 B |
2
00-templates/icons/idea.svg
Normal file
@ -0,0 +1,2 @@
|
|||||||
|
<?xml version="1.0" ?><!-- Uploaded to: SVG Repo, www.svgrepo.com, Generator: SVG Repo Mixer Tools -->
|
||||||
|
<svg width="800px" height="800px" viewBox="0 0 128 128" data-name="Слой 1" id="Слой_1" xmlns="http://www.w3.org/2000/svg"><defs><style>.cls-1{fill:#ffe082;}.cls-2{fill:#404040;}.cls-3{fill:#9e9e9e;}.cls-4{fill:#f5f5f5;}</style></defs><title/><path class="cls-1" d="M82,93V81.82a20.38,20.38,0,0,1,6.65-15.23,37,37,0,1,0-49.39-.09A20.59,20.59,0,0,1,46,81.82V92.59"/><path class="cls-2" d="M82,95a2,2,0,0,1-2-2V81.82A22.38,22.38,0,0,1,87.31,65.1,35,35,0,1,0,40.59,65,22.61,22.61,0,0,1,48,81.82V92.58a2,2,0,0,1-4,0V81.82A18.6,18.6,0,0,0,37.92,68,39,39,0,1,1,90,68.08a18.38,18.38,0,0,0-6,13.74V93A2,2,0,0,1,82,95Z"/><path class="cls-3" d="M82,92v16a18.05,18.05,0,0,1-18,18h0a18.05,18.05,0,0,1-18-18V92Z"/><path class="cls-2" d="M64,128a20,20,0,0,1-20-20V92a2,2,0,0,1,2-2H82a2,2,0,0,1,2,2v16A20,20,0,0,1,64,128ZM48,94v14a16,16,0,0,0,32,0V94Z"/><line class="cls-4" x1="54" x2="82" y1="102" y2="98"/><path class="cls-2" d="M54,104a2,2,0,0,1-.28-4l28-4a2,2,0,0,1,.57,4l-28,4Z"/><line class="cls-4" x1="54" x2="82" y1="110" y2="106"/><path class="cls-2" d="M54,112a2,2,0,0,1-.28-4l28-4a2,2,0,0,1,.57,4l-28,4Z"/></svg>
|
After Width: | Height: | Size: 1.2 KiB |
3
00-templates/icons/important.svg
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<!-- Uploaded to: SVG Repo, www.svgrepo.com, Generator: SVG Repo Mixer Tools -->
|
||||||
|
<svg width="800px" height="800px" viewBox="0 0 1024 1024" class="icon" version="1.1" xmlns="http://www.w3.org/2000/svg"><path d="M452.266667 955.733333l-384-384c-34.133333-34.133333-34.133333-87.466667 0-121.6l384-384c34.133333-34.133333 87.466667-34.133333 121.6 0l384 384c34.133333 34.133333 34.133333 87.466667 0 121.6l-384 384c-34.133333 34.133333-89.6 34.133333-121.6 0z" fill="#F44336" /><path d="M460.8 697.6c0-6.4 2.133333-12.8 4.266667-19.2 2.133333-6.4 6.4-10.666667 10.666666-14.933333 4.266667-4.266667 10.666667-8.533333 17.066667-10.666667s12.8-4.266667 21.333333-4.266667 14.933333 2.133333 21.333334 4.266667c6.4 2.133333 12.8 6.4 17.066666 10.666667 4.266667 4.266667 8.533333 8.533333 10.666667 14.933333 2.133333 6.4 4.266667 12.8 4.266667 19.2s-2.133333 12.8-4.266667 19.2-6.4 10.666667-10.666667 14.933333c-4.266667 4.266667-10.666667 8.533333-17.066666 10.666667-6.4 2.133333-12.8 4.266667-21.333334 4.266667s-14.933333-2.133333-21.333333-4.266667-10.666667-6.4-17.066667-10.666667c-4.266667-4.266667-8.533333-8.533333-10.666666-14.933333s-4.266667-10.666667-4.266667-19.2z m89.6-98.133333h-76.8L462.933333 277.333333h98.133334l-10.666667 322.133334z" fill="#FFFFFF" /></svg>
|
After Width: | Height: | Size: 1.3 KiB |
7
00-templates/icons/info.svg
Normal file
@ -0,0 +1,7 @@
|
|||||||
|
<?xml version="1.0" ?><!-- Uploaded to: SVG Repo, www.svgrepo.com, Generator: SVG Repo Mixer Tools -->
|
||||||
|
<svg width="800px" height="800px" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"><defs><style>
|
||||||
|
.cls-1 {
|
||||||
|
fill: #5b75a0;
|
||||||
|
fill-rule: evenodd;
|
||||||
|
}
|
||||||
|
</style></defs><path class="cls-1" d="M1050,360a30,30,0,1,1,30,30A30,30,0,0,1,1050,360Zm30,18a4,4,0,0,1-4-4V358a4,4,0,0,1,8,0v16A4,4,0,0,1,1080,378Zm0-36a4,4,0,1,1-4,4A4,4,0,0,1,1080,342Z" id="info" transform="translate(-1050 -330)"/></svg>
|
After Width: | Height: | Size: 524 B |
130
00-templates/icons/rocket.svg
Normal file
@ -0,0 +1,130 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||||
|
<!-- Uploaded to: SVG Repo, www.svgrepo.com, Generator: SVG Repo Mixer Tools -->
|
||||||
|
|
||||||
|
<svg
|
||||||
|
width="800px"
|
||||||
|
height="800px"
|
||||||
|
viewBox="0 0 72 72"
|
||||||
|
id="emoji"
|
||||||
|
version="1.1"
|
||||||
|
sodipodi:docname="rocket.svg"
|
||||||
|
inkscape:version="1.2.2 (b0a84865, 2022-12-01)"
|
||||||
|
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||||
|
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||||
|
xmlns="http://www.w3.org/2000/svg"
|
||||||
|
xmlns:svg="http://www.w3.org/2000/svg">
|
||||||
|
<defs
|
||||||
|
id="defs9566" />
|
||||||
|
<sodipodi:namedview
|
||||||
|
id="namedview9564"
|
||||||
|
pagecolor="#ffffff"
|
||||||
|
bordercolor="#999999"
|
||||||
|
borderopacity="1"
|
||||||
|
inkscape:showpageshadow="0"
|
||||||
|
inkscape:pageopacity="0"
|
||||||
|
inkscape:pagecheckerboard="0"
|
||||||
|
inkscape:deskcolor="#d1d1d1"
|
||||||
|
showgrid="false"
|
||||||
|
inkscape:zoom="1.18"
|
||||||
|
inkscape:cx="350"
|
||||||
|
inkscape:cy="313.13559"
|
||||||
|
inkscape:window-width="1720"
|
||||||
|
inkscape:window-height="1387"
|
||||||
|
inkscape:window-x="0"
|
||||||
|
inkscape:window-y="25"
|
||||||
|
inkscape:window-maximized="0"
|
||||||
|
inkscape:current-layer="color" />
|
||||||
|
<g
|
||||||
|
id="color">
|
||||||
|
<path
|
||||||
|
fill="#FCEA2B"
|
||||||
|
d="M16.12,48.114 c-3.1584,3.1634-4.6518,7.5601-3.97,11.688c4.128,0.6763,8.5223-0.8196,11.683-3.977c3.1584-3.1634,4.6518-7.5601,3.97-11.688 C23.675,43.4607,19.2807,44.9566,16.12,48.114z"
|
||||||
|
id="path9530" />
|
||||||
|
<path
|
||||||
|
fill="#61B2E4"
|
||||||
|
d="M31.973,45.839 c-0.1919,0.966-0.6657,1.8536-1.3616,2.5507c-0.3389,0.3373-0.7246,0.6241-1.1452,0.8516 c2.1626,2.9716,3.7579,6.2847,4.6952,9.7506c0.7092-0.6216,1.3906-1.2786,2.0417-1.9685c1.9136-2.0343,3.5491-4.3376,4.8516-6.8326 c1.2507-2.4201,2.1751-4.9922,2.7442-7.6354c-3.7285,1.9544-7.7719,3.0771-11.826,3.2837L31.973,45.839z"
|
||||||
|
id="path9532" />
|
||||||
|
<path
|
||||||
|
fill="#92D3F5"
|
||||||
|
d="M14.923,35.749 c-0.69,0.65-1.3472,1.3303-1.9691,2.0383c3.4682,0.9313,6.7846,2.521,9.7604,4.6784c0.2264-0.414,0.5104-0.7939,0.8435-1.1281 c0.6949-0.6935,1.5791-1.1665,2.5417-1.3598c0.2106-4.0507,1.3364-8.0899,3.293-11.814c0.0019-0.0037,0.0037-0.0074,0.0056-0.0112 c-2.645,0.5687-5.2188,1.4928-7.6405,2.7434C19.2616,32.199,16.9577,33.8349,14.923,35.749L14.923,35.749z"
|
||||||
|
id="path9534" />
|
||||||
|
<path
|
||||||
|
fill="#EA5A47"
|
||||||
|
d="M34.821,20.747 c-5.2314,5.2507-8.3665,12.1635-8.7228,19.233c1.6376-0.3318,3.3326,0.1781,4.515,1.3584c1.186,1.1868,1.6956,2.8903,1.356,4.5332 c7.0754-0.3609,13.9919-3.5024,19.242-8.7398c6.7117-6.7229,9.8843-16.067,8.4337-24.839 c-1.7318-0.2827-3.5044-0.3879-5.2915-0.3141c-7.1741,0.2926-14.2097,3.4508-19.532,8.7677L34.821,20.747z M45.07,20.2179 c1.8412-1.8413,4.8269-1.8418,6.6687-0.0012c0.0004,0.0004,0.0008,0.0008,0.0012,0.0012c1.8418,1.8407,1.8424,4.8255,0.0012,6.6667 c-0.0004,0.0004-0.0008,0.0008-0.0012,0.0012c-1.8419,1.8404-4.8274,1.8398-6.6685-0.0014 C43.2297,25.0438,43.229,22.0592,45.07,20.2179z"
|
||||||
|
id="path9536"
|
||||||
|
style="fill:#bc5fd3" />
|
||||||
|
<path
|
||||||
|
fill="#F1B31C"
|
||||||
|
d="M26.538,52.037 c-0.8756,0.9831-1.8894,1.8467-3.0072,2.5617c-3.4907,2.2228-7.7244,2.8345-11.441,1.653c-0.1495,1.1964-0.1293,2.3916,0.06,3.5496 c4.128,0.6763,8.5223-0.8195,11.683-3.9769c1.1048-1.1131,2.0209-2.3956,2.7055-3.7874L26.538,52.037z"
|
||||||
|
id="path9538" />
|
||||||
|
<path
|
||||||
|
fill="#D22F27"
|
||||||
|
d="M26.204,38.687 c-0.033,0.4281-0.0559,0.8558-0.0684,1.283c1.6271-0.316,3.305,0.1967,4.4773,1.3682c1.186,1.1868,1.6956,2.8903,1.356,4.5332 c7.075-0.3618,13.9907-3.5038,19.24-8.7412c1.4932-1.5067,2.8266-3.1619,3.9746-4.9339c-1.3472,1.2267-2.8051,2.3344-4.353,3.3074 c-7.5574,4.7109-16.6938,5.8918-24.627,3.1832L26.204,38.687z"
|
||||||
|
id="path9540"
|
||||||
|
style="fill:#892ca0" />
|
||||||
|
<polygon
|
||||||
|
points="36.1664,-14.4511 36.1664,-14.4511 36.1664,-14.4511"
|
||||||
|
id="polygon9542" />
|
||||||
|
<path
|
||||||
|
fill="#61B2E4"
|
||||||
|
d="M24.039,48.551 c0.8703-0.4372,1.7206-0.9178,2.5501-1.438c2.4433-1.5323,4.6776-3.4046,6.6294-5.5552l0.0028-0.0028 c1.8803-2.0911,3.4745-4.4187,4.7329-6.9122c0.061-0.1204,0.0967-0.252,0.1047-0.3867 C34.6604,33.5028,23.2129,44.5071,24.039,48.551L24.039,48.551z"
|
||||||
|
id="path9544" />
|
||||||
|
</g>
|
||||||
|
<g
|
||||||
|
id="hair" />
|
||||||
|
<g
|
||||||
|
id="skin" />
|
||||||
|
<g
|
||||||
|
id="skin-shadow" />
|
||||||
|
<g
|
||||||
|
id="line">
|
||||||
|
<path
|
||||||
|
d="M48.405,29.49c-3.2761,0-5.941-2.6641-5.941-5.9392s2.6649-5.9392,5.941-5.9392c3.2761,0,5.941,2.6641,5.941,5.9392 S51.6811,29.49,48.405,29.49z M48.405,19.5913c-2.1839,0-3.9607,1.7757-3.9607,3.9595c0,2.1837,1.7768,3.9595,3.9607,3.9595 c2.1838,0,3.9607-1.7758,3.9607-3.9595C52.3657,21.367,50.5888,19.5913,48.405,19.5913z"
|
||||||
|
id="path9550" />
|
||||||
|
<path
|
||||||
|
fill="none"
|
||||||
|
stroke="#000000"
|
||||||
|
stroke-linecap="round"
|
||||||
|
stroke-linejoin="round"
|
||||||
|
stroke-miterlimit="10"
|
||||||
|
stroke-width="1.949"
|
||||||
|
d="M20.653,45.063c-1.678,0.7083-3.2222,1.7475-4.5331,3.0508c-3.1581,3.1631-4.6517,7.5594-3.9703,11.687 c4.128,0.6762,8.5221-0.8196,11.683-3.9769c1.3043-1.3104,2.3446-2.8541,3.0537-4.5318"
|
||||||
|
id="path9552" />
|
||||||
|
<path
|
||||||
|
fill="none"
|
||||||
|
stroke="#000000"
|
||||||
|
stroke-linecap="round"
|
||||||
|
stroke-linejoin="round"
|
||||||
|
stroke-miterlimit="10"
|
||||||
|
stroke-width="1.949"
|
||||||
|
d="M14.923,35.749c-0.69,0.65-1.3472,1.3303-1.9691,2.0383c3.4682,0.9313,6.7846,2.521,9.7604,4.6784 c0.2264-0.414,0.5104-0.7939,0.8435-1.1281c0.6949-0.6935,1.5791-1.1665,2.5417-1.3598c0.2106-4.0507,1.3364-8.0899,3.293-11.814 c0.0019-0.0037,0.0037-0.0074,0.0056-0.0112c-2.645,0.5687-5.2188,1.4928-7.6405,2.7434 C19.2616,32.199,16.9577,33.8349,14.923,35.749L14.923,35.749z"
|
||||||
|
id="path9554" />
|
||||||
|
<path
|
||||||
|
fill="none"
|
||||||
|
stroke="#000000"
|
||||||
|
stroke-linecap="round"
|
||||||
|
stroke-linejoin="round"
|
||||||
|
stroke-miterlimit="10"
|
||||||
|
stroke-width="1.949"
|
||||||
|
d="M31.973,45.839c-0.1919,0.966-0.6657,1.8536-1.3616,2.5507c-0.3389,0.3373-0.7246,0.6241-1.1452,0.8516 c2.1626,2.9716,3.7579,6.2847,4.6952,9.7506c0.7092-0.6216,1.3906-1.2786,2.0417-1.9685c1.9136-2.0343,3.5491-4.3376,4.8516-6.8326 c1.2507-2.4201,2.1751-4.9922,2.7442-7.6354c-3.7285,1.9544-7.7719,3.0771-11.826,3.2837L31.973,45.839z"
|
||||||
|
id="path9556" />
|
||||||
|
<path
|
||||||
|
fill="none"
|
||||||
|
stroke="#000000"
|
||||||
|
stroke-linecap="round"
|
||||||
|
stroke-linejoin="round"
|
||||||
|
stroke-miterlimit="10"
|
||||||
|
stroke-width="1.949"
|
||||||
|
d="M31.83,43.345c0.2696,0.8863,0.2506,1.6919,0.1371,2.5245c7.0759-0.3611,13.993-3.5031,19.243-8.7412 c6.7106-6.7215,9.8836-16.063,8.4351-24.834c-8.7712-1.4365-18.108,1.742-24.823,8.4508 c-5.2322,5.2509-8.3679,12.164-8.7242,19.234c0.9413-0.1907,1.8984-0.0942,2.7693,0.2387"
|
||||||
|
id="path9558" />
|
||||||
|
<path
|
||||||
|
fill="none"
|
||||||
|
stroke="#000000"
|
||||||
|
stroke-linecap="round"
|
||||||
|
stroke-linejoin="round"
|
||||||
|
stroke-miterlimit="10"
|
||||||
|
stroke-width="1.949"
|
||||||
|
d="M37.072,34.196l-0.0002,0c-2.4156,1.2183-4.6724,2.7626-6.6996,4.5844c-2.0849,1.8911-3.9,4.0556-5.3844,6.4211 c-0.5039,0.8031-0.9684,1.6273-1.3917,2.4694"
|
||||||
|
id="path9560" />
|
||||||
|
</g>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 6.7 KiB |
5
00-templates/icons/square.svg
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?><!-- Uploaded to: SVG Repo, www.svgrepo.com, Generator: SVG Repo Mixer Tools -->
|
||||||
|
<svg width="800px" height="800px" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||||
|
<path opacity="0.1" d="M3 12C3 4.5885 4.5885 3 12 3C19.4115 3 21 4.5885 21 12C21 19.4115 19.4115 21 12 21C4.5885 21 3 19.4115 3 12Z" fill="#323232"/>
|
||||||
|
<path d="M3 12C3 4.5885 4.5885 3 12 3C19.4115 3 21 4.5885 21 12C21 19.4115 19.4115 21 12 21C4.5885 21 3 19.4115 3 12Z" stroke="#323232" stroke-width="2"/>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 536 B |
3
00-templates/icons/todo.svg
Normal file
After Width: | Height: | Size: 6.1 KiB |
12
00-templates/icons/warning.svg
Normal file
@ -0,0 +1,12 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<!-- Uploaded to: SVG Repo, www.svgrepo.com, Generator: SVG Repo Mixer Tools -->
|
||||||
|
<svg width="800px" height="800px" viewBox="0 0 64 64" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" aria-hidden="true" role="img" class="iconify iconify--emojione" preserveAspectRatio="xMidYMid meet">
|
||||||
|
<path d="M5.9 62c-3.3 0-4.8-2.4-3.3-5.3L29.3 4.2c1.5-2.9 3.9-2.9 5.4 0l26.7 52.5c1.5 2.9 0 5.3-3.3 5.3H5.9z" fill="#ffce31">
|
||||||
|
</path>
|
||||||
|
<g fill="#231f20">
|
||||||
|
<path d="M27.8 23.6l2.8 18.5c.3 1.8 2.6 1.8 2.9 0l2.7-18.5c.5-7.2-8.9-7.2-8.4 0">
|
||||||
|
</path>
|
||||||
|
<circle cx="32" cy="49.6" r="4.2">
|
||||||
|
</circle>
|
||||||
|
</g>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 661 B |
7
00-templates/icons/x-circle.svg
Normal file
@ -0,0 +1,7 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?><!-- Uploaded to: SVG Repo, www.svgrepo.com, Generator: SVG Repo Mixer Tools -->
|
||||||
|
<svg width="800px" height="800px" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||||
|
<path opacity="0.1" d="M21 12C21 16.9706 16.9706 21 12 21C7.02944 21 3 16.9706 3 12C3 7.02944 7.02944 3 12 3C16.9706 3 21 7.02944 21 12Z" fill="#323232"/>
|
||||||
|
<path d="M21 12C21 16.9706 16.9706 21 12 21C7.02944 21 3 16.9706 3 12C3 7.02944 7.02944 3 12 3C16.9706 3 21 7.02944 21 12Z" stroke="#323232" stroke-width="2"/>
|
||||||
|
<path d="M9 9L15 15" stroke="#323232" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M15 9L9 15" stroke="#323232" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 756 B |
7
00-templates/icons/x-square.svg
Normal file
@ -0,0 +1,7 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?><!-- Uploaded to: SVG Repo, www.svgrepo.com, Generator: SVG Repo Mixer Tools -->
|
||||||
|
<svg width="800px" height="800px" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||||
|
<path opacity="0.1" d="M3 12C3 4.5885 4.5885 3 12 3C19.4115 3 21 4.5885 21 12C21 19.4115 19.4115 21 12 21C4.5885 21 3 19.4115 3 12Z" fill="#323232"/>
|
||||||
|
<path d="M9 9L15 15" stroke="#323232" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M15 9L9 15" stroke="#323232" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M3 12C3 4.5885 4.5885 3 12 3C19.4115 3 21 4.5885 21 12C21 19.4115 19.4115 21 12 21C4.5885 21 3 19.4115 3 12Z" stroke="#323232" stroke-width="2"/>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 746 B |
53
00-templates/icons/x.svg
Normal file
@ -0,0 +1,53 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||||
|
<!-- Uploaded to: SVG Repo, www.svgrepo.com, Generator: SVG Repo Mixer Tools -->
|
||||||
|
|
||||||
|
<svg
|
||||||
|
width="800px"
|
||||||
|
height="800px"
|
||||||
|
viewBox="0 0 24 24"
|
||||||
|
fill="none"
|
||||||
|
version="1.1"
|
||||||
|
id="svg184"
|
||||||
|
sodipodi:docname="x.svg"
|
||||||
|
xml:space="preserve"
|
||||||
|
inkscape:version="1.2.2 (b0a84865, 2022-12-01)"
|
||||||
|
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||||
|
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||||
|
xmlns="http://www.w3.org/2000/svg"
|
||||||
|
xmlns:svg="http://www.w3.org/2000/svg"><defs
|
||||||
|
id="defs188" /><sodipodi:namedview
|
||||||
|
id="namedview186"
|
||||||
|
pagecolor="#ffffff"
|
||||||
|
bordercolor="#999999"
|
||||||
|
borderopacity="1"
|
||||||
|
inkscape:showpageshadow="0"
|
||||||
|
inkscape:pageopacity="0"
|
||||||
|
inkscape:pagecheckerboard="0"
|
||||||
|
inkscape:deskcolor="#d1d1d1"
|
||||||
|
showgrid="false"
|
||||||
|
inkscape:zoom="1.18"
|
||||||
|
inkscape:cx="331.35593"
|
||||||
|
inkscape:cy="458.89831"
|
||||||
|
inkscape:window-width="1720"
|
||||||
|
inkscape:window-height="1359"
|
||||||
|
inkscape:window-x="0"
|
||||||
|
inkscape:window-y="25"
|
||||||
|
inkscape:window-maximized="0"
|
||||||
|
inkscape:current-layer="svg184" /><g
|
||||||
|
style="fill:none"
|
||||||
|
id="g390"
|
||||||
|
transform="translate(-7.8305085,-27.152542)"><g
|
||||||
|
id="g495"
|
||||||
|
transform="matrix(1.1207627,0,0,1.1207627,-2.3947859,-4.6635387)"><path
|
||||||
|
d="m 16.830508,35.617373 6,6"
|
||||||
|
stroke="#323232"
|
||||||
|
stroke-width="2"
|
||||||
|
stroke-linecap="round"
|
||||||
|
stroke-linejoin="round"
|
||||||
|
id="path376" /><path
|
||||||
|
d="m 22.830508,35.617373 -6,6"
|
||||||
|
stroke="#323232"
|
||||||
|
stroke-width="2"
|
||||||
|
stroke-linecap="round"
|
||||||
|
stroke-linejoin="round"
|
||||||
|
id="path378" /></g></g></svg>
|
After Width: | Height: | Size: 1.7 KiB |
124
00-templates/items.typ
Normal file
@ -0,0 +1,124 @@
|
|||||||
|
//
|
||||||
|
// Description: Creating nice looking item list with different icons
|
||||||
|
// Author : Silvan Zahno
|
||||||
|
//
|
||||||
|
#import "constants.typ": *
|
||||||
|
|
||||||
|
#let item-list(
|
||||||
|
content: none,
|
||||||
|
height: normal,
|
||||||
|
icon: icon-check-square,
|
||||||
|
) = {
|
||||||
|
if content != none {
|
||||||
|
v(-9pt)
|
||||||
|
table(
|
||||||
|
stroke: none,
|
||||||
|
columns: 2,
|
||||||
|
align: left+horizon,
|
||||||
|
column-gutter: -2pt,
|
||||||
|
image(icon, height:normal), content
|
||||||
|
)
|
||||||
|
v(-9pt)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
#let item-checkbadge(
|
||||||
|
content: none,
|
||||||
|
height: normal,
|
||||||
|
) = {
|
||||||
|
item-list(
|
||||||
|
content: content,
|
||||||
|
height: height,
|
||||||
|
icon: icon-check-badge,
|
||||||
|
)
|
||||||
|
}
|
||||||
|
#let item-checkcircle(
|
||||||
|
content: none,
|
||||||
|
height: normal,
|
||||||
|
) = {
|
||||||
|
item-list(
|
||||||
|
content: content,
|
||||||
|
height: height,
|
||||||
|
icon: icon-check-circle,
|
||||||
|
)
|
||||||
|
}
|
||||||
|
#let item-checksquare(
|
||||||
|
content: none,
|
||||||
|
height: normal,
|
||||||
|
) = {
|
||||||
|
item-list(
|
||||||
|
content: content,
|
||||||
|
height: height,
|
||||||
|
icon: icon-check-square,
|
||||||
|
)
|
||||||
|
}
|
||||||
|
#let item-check(
|
||||||
|
content: none,
|
||||||
|
height: normal,
|
||||||
|
) = {
|
||||||
|
item-list(
|
||||||
|
content: content,
|
||||||
|
height: height,
|
||||||
|
icon: icon-check,
|
||||||
|
)
|
||||||
|
}
|
||||||
|
#let item-circle(
|
||||||
|
content: none,
|
||||||
|
height: normal,
|
||||||
|
) = {
|
||||||
|
item-list(
|
||||||
|
content: content,
|
||||||
|
height: height,
|
||||||
|
icon: icon-circle,
|
||||||
|
)
|
||||||
|
}
|
||||||
|
#let item-file(
|
||||||
|
content: none,
|
||||||
|
height: normal,
|
||||||
|
) = {
|
||||||
|
item-list(
|
||||||
|
content: content,
|
||||||
|
height: height,
|
||||||
|
icon: icon-file,
|
||||||
|
)
|
||||||
|
}
|
||||||
|
#let item-folder(
|
||||||
|
content: none,
|
||||||
|
height: normal,
|
||||||
|
) = {
|
||||||
|
item-list(
|
||||||
|
content: content,
|
||||||
|
height: height,
|
||||||
|
icon: icon-folder,
|
||||||
|
)
|
||||||
|
}
|
||||||
|
#let item-xcircle(
|
||||||
|
content: none,
|
||||||
|
height: normal,
|
||||||
|
) = {
|
||||||
|
item-list(
|
||||||
|
content: content,
|
||||||
|
height: height,
|
||||||
|
icon: icon-x-circle,
|
||||||
|
)
|
||||||
|
}
|
||||||
|
#let item-xsquare(
|
||||||
|
content: none,
|
||||||
|
height: normal,
|
||||||
|
) = {
|
||||||
|
item-list(
|
||||||
|
content: content,
|
||||||
|
height: height,
|
||||||
|
icon: icon-x-square,
|
||||||
|
)
|
||||||
|
}
|
||||||
|
#let item-x(
|
||||||
|
content: none,
|
||||||
|
height: normal,
|
||||||
|
) = {
|
||||||
|
item-list(
|
||||||
|
content: content,
|
||||||
|
height: height,
|
||||||
|
icon: icon-x,
|
||||||
|
)
|
||||||
|
}
|
46
00-templates/page-reportinfo.typ
Normal file
@ -0,0 +1,46 @@
|
|||||||
|
//
|
||||||
|
// Description: Report info page for thesis template
|
||||||
|
// Author : Silvan Zahno
|
||||||
|
//
|
||||||
|
#import "../00-templates/helpers.typ": *
|
||||||
|
|
||||||
|
#let page-reportinfo(
|
||||||
|
author: (),
|
||||||
|
date: none,
|
||||||
|
signature: none,
|
||||||
|
) = {
|
||||||
|
heading(numbering:none, outlined: false)[Information about this report]
|
||||||
|
|
||||||
|
v(2em)
|
||||||
|
[*Contact Information*]
|
||||||
|
|
||||||
|
tablex(
|
||||||
|
columns: (auto, auto),
|
||||||
|
stroke: none,
|
||||||
|
align: left + top,
|
||||||
|
rowspanx(3)[Author:], [#author.name],
|
||||||
|
[#author.degree Student],
|
||||||
|
[#author.affiliation],
|
||||||
|
[Email:], [#link("mailto:author.email")[#author.email]],
|
||||||
|
)
|
||||||
|
|
||||||
|
v(5em)
|
||||||
|
|
||||||
|
[
|
||||||
|
*Declaration of honor*
|
||||||
|
I, undersigned, #author.name, hereby declare that the work submitted is the result of a personal work. I certify that I have not resorted to plagiarism or other forms of fraud. All sources of information used and the author quotes were clearly mentioned.
|
||||||
|
]
|
||||||
|
|
||||||
|
tablex(
|
||||||
|
stroke: none,
|
||||||
|
columns: (auto,auto),
|
||||||
|
align: left + horizon,
|
||||||
|
[Place, date:], [#author.place, #date],
|
||||||
|
[Signature:],
|
||||||
|
if signature != none {
|
||||||
|
[#line(start: (0cm,2cm),length:5cm) #v(-0.4cm) #pad(x: 2.5em, image(author.signature, width:3cm))]
|
||||||
|
} else {
|
||||||
|
[#line(start: (0cm,2cm),length:7cm)]
|
||||||
|
},
|
||||||
|
)
|
||||||
|
}
|
61
00-templates/page-title-thesis.typ
Normal file
@ -0,0 +1,61 @@
|
|||||||
|
//
|
||||||
|
// Description: Title page for the thesis template
|
||||||
|
// Author : Silvan Zahno
|
||||||
|
//
|
||||||
|
#import "../00-templates/helpers.typ": *
|
||||||
|
|
||||||
|
#let page-title-thesis(
|
||||||
|
title: none,
|
||||||
|
subtitle: subtitle,
|
||||||
|
date: (),
|
||||||
|
school: (),
|
||||||
|
author: (),
|
||||||
|
professor: (),
|
||||||
|
icons: (
|
||||||
|
topleft: none,
|
||||||
|
topright: none,
|
||||||
|
bottomleft: none,
|
||||||
|
bottomright: none,
|
||||||
|
),
|
||||||
|
) = {
|
||||||
|
table(
|
||||||
|
stroke:none,
|
||||||
|
columns: (50%, 50%),
|
||||||
|
align: (x, y) => (left, right).at(x),
|
||||||
|
[#if icons.topleft != none {[#image(icons.topleft, width:6cm)]} else {[]}],
|
||||||
|
[#if icons.topright != none {[#image(icons.topright, width:4cm)]} else {[]}],
|
||||||
|
)
|
||||||
|
|
||||||
|
v(1fr)
|
||||||
|
|
||||||
|
v(1em)
|
||||||
|
align(center, [#text(size:larger, school.orientation)])
|
||||||
|
v(1em)
|
||||||
|
align(center, [#text(size:large, [Major #school.specialisation])])
|
||||||
|
v(2em)
|
||||||
|
v(1em)
|
||||||
|
align(center, [#text(size:large, [#author.name])])
|
||||||
|
v(2em)
|
||||||
|
|
||||||
|
titlebox(
|
||||||
|
title: title,
|
||||||
|
)
|
||||||
|
align(center, [#text(size:small, [#subtitle])])
|
||||||
|
|
||||||
|
[
|
||||||
|
|
||||||
|
#v(1fr)
|
||||||
|
_Submission date of the report_ \
|
||||||
|
#date.submission
|
||||||
|
|
||||||
|
]
|
||||||
|
|
||||||
|
|
||||||
|
table(
|
||||||
|
stroke:none,
|
||||||
|
columns: (50%, 50%),
|
||||||
|
align: (x, y) => (left+horizon, right+horizon).at(x),
|
||||||
|
[#if icons.bottomleft != none {[#image(icons.bottomleft, width:4cm)]} else {[]}],
|
||||||
|
[#if icons.bottomright != none {[#image(icons.bottomright, width:1.5cm)]} else {[]}],
|
||||||
|
)
|
||||||
|
}
|
399
00-templates/sections.typ
Normal file
@ -0,0 +1,399 @@
|
|||||||
|
//
|
||||||
|
// Description: Some recurrent section elements mainly for exams
|
||||||
|
// Author : Silvan Zahno
|
||||||
|
//
|
||||||
|
#import "constants.typ": *
|
||||||
|
#import "boxes.typ": *
|
||||||
|
#import "tablex.typ": *
|
||||||
|
|
||||||
|
#let part(
|
||||||
|
title: [],
|
||||||
|
number: 1,
|
||||||
|
size: huge,
|
||||||
|
) = {
|
||||||
|
pagebreak()
|
||||||
|
v(1fr)
|
||||||
|
align(center, smallcaps(text(size, [Part #number])))
|
||||||
|
v(2em)
|
||||||
|
align(center, smallcaps(text(size, title)))
|
||||||
|
v(1fr)
|
||||||
|
pagebreak()
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
#let titlebox(
|
||||||
|
width: 100%,
|
||||||
|
radius: 4pt,
|
||||||
|
border: 1pt,
|
||||||
|
inset: 20pt,
|
||||||
|
outset: -10pt,
|
||||||
|
linecolor: box-border,
|
||||||
|
titlesize: huge,
|
||||||
|
subtitlesize: larger,
|
||||||
|
title: [],
|
||||||
|
subtitle: [],
|
||||||
|
) = {
|
||||||
|
if title != [] {
|
||||||
|
align(center,
|
||||||
|
rect(
|
||||||
|
stroke: (left:linecolor+border, top:linecolor+border, rest:linecolor+(border+1pt)),
|
||||||
|
radius: radius,
|
||||||
|
outset: (left:outset, right:outset),
|
||||||
|
inset: (left:inset*2, top:inset, right:inset*2, bottom:inset),
|
||||||
|
width: width)[
|
||||||
|
#align(center,
|
||||||
|
[
|
||||||
|
#if subtitle != [] {
|
||||||
|
[#text(titlesize, title) \ \ #text(subtitlesize, subtitle)]
|
||||||
|
} else {
|
||||||
|
text(titlesize, title)
|
||||||
|
}
|
||||||
|
]
|
||||||
|
)
|
||||||
|
]
|
||||||
|
)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
#let exam_header(
|
||||||
|
nbrEx: 5+1,
|
||||||
|
pts: 10,
|
||||||
|
lang: "en" // "de" "fr"
|
||||||
|
) = {
|
||||||
|
if nbrEx == 0 {
|
||||||
|
tablex(
|
||||||
|
columns: (2cm, 90%),
|
||||||
|
align: center + top,
|
||||||
|
stroke: none,
|
||||||
|
(), (),
|
||||||
|
if lang == "en" or lang == "de" {[#text(large, "Name:")]} else {[#text(large, "Nom:")]
|
||||||
|
},
|
||||||
|
[#line(start: (0cm, 0.7cm), length:(100%), stroke:(dash:"loosely-dashed"))],
|
||||||
|
)
|
||||||
|
} else if nbrEx == 1 {
|
||||||
|
tablex(
|
||||||
|
columns: (2cm, 90%-1.3cm, 1.3cm),
|
||||||
|
align: center + top,
|
||||||
|
stroke: none,
|
||||||
|
[], [], if lang == "en" {[#v(-0.4cm)#text(small, "Grade")]} else {[#v(-0.4cm)#text(small, "Note")]},
|
||||||
|
if lang == "en" or lang == "de" {[#text(large, "Name:")]} else {[#text(large, "Nom:")]
|
||||||
|
},
|
||||||
|
[#line(start: (0cm, 0.7cm), length:(100%), stroke:(dash:"loosely-dashed"))],
|
||||||
|
[#v(-0.3cm)#rect(height:1cm, width:1.2cm, stroke:2pt)],
|
||||||
|
)
|
||||||
|
} else if nbrEx == 2 {
|
||||||
|
tablex(
|
||||||
|
columns: (2cm, 90%-2.3cm, 1cm, 1.3cm),
|
||||||
|
align: center + top,
|
||||||
|
stroke: none,
|
||||||
|
[], [], [#v(-0.4cm)#text(small, "1")], if lang == "en" {[#v(-0.4cm)#text(small, "Grade")]} else {[#v(-0.4cm)#text(small, "Note")]},
|
||||||
|
if lang == "en" or lang == "de" {[#text(large, "Name:")]} else {[#text(large, "Nom:")]
|
||||||
|
},
|
||||||
|
[#line(start: (0cm, 0.7cm), length:(100%), stroke:(dash:"loosely-dashed"))],
|
||||||
|
[#v(-0.3cm)#square(size:1cm, stroke:1pt)],
|
||||||
|
[#v(-0.3cm)#rect(height:1cm, width:1.2cm, stroke:2pt)],
|
||||||
|
[], [], [#v(-0.2cm)#text(small, [(#pts)])], [],
|
||||||
|
)
|
||||||
|
} else if nbrEx == 3 {
|
||||||
|
tablex(
|
||||||
|
columns: (2cm, 90%-3.3cm, 1cm, 1cm, 1.3cm),
|
||||||
|
align: center + top,
|
||||||
|
stroke: none,
|
||||||
|
[], [], [#v(-0.4cm)#text(small, "1")], [#v(-0.4cm)#text(small, "2")], if lang == "en" {[#v(-0.4cm)#text(small, "Grade")]} else {[#v(-0.4cm)#text(small, "Note")]},
|
||||||
|
if lang == "en" or lang == "de" {[#text(large, "Name:")]} else {[#text(large, "Nom:")]
|
||||||
|
},
|
||||||
|
[#line(start: (0cm, 0.7cm), length:(100%), stroke:(dash:"loosely-dashed"))],
|
||||||
|
[#v(-0.3cm)#square(size:1cm, stroke:1pt)],
|
||||||
|
[#v(-0.3cm)#square(size:1cm, stroke:1pt)],
|
||||||
|
[#v(-0.3cm)#rect(height:1cm, width:1.2cm, stroke:2pt)],
|
||||||
|
[], [], [#v(-0.2cm)#text(small, [(#pts)])], [#v(-0.2cm)#text(small, [(#pts)])], [],
|
||||||
|
)
|
||||||
|
} else if nbrEx == 4 {
|
||||||
|
tablex(
|
||||||
|
columns: (2cm, 90%-4.3cm, 1cm, 1cm, 1cm, 1.3cm),
|
||||||
|
align: center + top,
|
||||||
|
stroke: none,
|
||||||
|
[], [], [#v(-0.4cm)#text(small, "1")], [#v(-0.4cm)#text(small, "2")], [#v(-0.4cm)#text(small, "3")], if lang == "en" {[#v(-0.4cm)#text(small, "Grade")]} else {[#v(-0.4cm)#text(small, "Note")]},
|
||||||
|
if lang == "en" or lang == "de" {[#text(large, "Name:")]} else {[#text(large, "Nom:")]
|
||||||
|
},
|
||||||
|
[#line(start: (0cm, 0.7cm), length:(100%), stroke:(dash:"loosely-dashed"))],
|
||||||
|
[#v(-0.3cm)#square(size:1cm, stroke:1pt)],
|
||||||
|
[#v(-0.3cm)#square(size:1cm, stroke:1pt)],
|
||||||
|
[#v(-0.3cm)#square(size:1cm, stroke:1pt)],
|
||||||
|
[#v(-0.3cm)#rect(height:1cm, width:1.2cm, stroke:2pt)],
|
||||||
|
[], [], [#v(-0.2cm)#text(small, [(#pts)])], [#v(-0.2cm)#text(small, [(#pts)])], [#v(-0.2cm)#text(small, [(#pts)])], [],
|
||||||
|
)
|
||||||
|
} else if nbrEx == 5 {
|
||||||
|
tablex(
|
||||||
|
columns: (2cm, 90%-5.3cm, 1cm, 1cm, 1cm, 1cm, 1.3cm),
|
||||||
|
align: center + top,
|
||||||
|
stroke: none,
|
||||||
|
[], [], [#v(-0.4cm)#text(small, "1")], [#v(-0.4cm)#text(small, "2")], [#v(-0.4cm)#text(small, "3")], [#v(-0.4cm)#text(small, "4")], if lang == "en" {[#v(-0.4cm)#text(small, "Grade")]} else {[#v(-0.4cm)#text(small, "Note")]},
|
||||||
|
if lang == "en" or lang == "de" {[#text(large, "Name:")]} else {[#text(large, "Nom:")]
|
||||||
|
},
|
||||||
|
[#line(start: (0cm, 0.7cm), length:(100%), stroke:(dash:"loosely-dashed"))],
|
||||||
|
[#v(-0.3cm)#square(size:1cm, stroke:1pt)],
|
||||||
|
[#v(-0.3cm)#square(size:1cm, stroke:1pt)],
|
||||||
|
[#v(-0.3cm)#square(size:1cm, stroke:1pt)],
|
||||||
|
[#v(-0.3cm)#square(size:1cm, stroke:1pt)],
|
||||||
|
[#v(-0.3cm)#rect(height:1cm, width:1.2cm, stroke:2pt)],
|
||||||
|
[], [], [#v(-0.2cm)#text(small, [(#pts)])], [#v(-0.2cm)#text(small, [(#pts)])], [#v(-0.2cm)#text(small, [(#pts)])], [#v(-0.2cm)#text(small, [(#pts)])], [],
|
||||||
|
)
|
||||||
|
} else if nbrEx == 6 {
|
||||||
|
tablex(
|
||||||
|
columns: (2cm, 90%-6.3cm, 1cm, 1cm, 1cm, 1cm, 1cm, 1.3cm),
|
||||||
|
align: center + top,
|
||||||
|
stroke: none,
|
||||||
|
[], [], [#v(-0.4cm)#text(small, "1")], [#v(-0.4cm)#text(small, "2")], [#v(-0.4cm)#text(small, "3")], [#v(-0.4cm)#text(small, "4")], [#v(-0.4cm)#text(small, "5")], if lang == "en" {[#v(-0.4cm)#text(small, "Grade")]} else {[#v(-0.4cm)#text(small, "Note")]},
|
||||||
|
if lang == "en" or lang == "de" {[#text(large, "Name:")]} else {[#text(large, "Nom:")]
|
||||||
|
},
|
||||||
|
[#line(start: (0cm, 0.7cm), length:(100%), stroke:(dash:"loosely-dashed"))],
|
||||||
|
[#v(-0.3cm)#square(size:1cm, stroke:1pt)],
|
||||||
|
[#v(-0.3cm)#square(size:1cm, stroke:1pt)],
|
||||||
|
[#v(-0.3cm)#square(size:1cm, stroke:1pt)],
|
||||||
|
[#v(-0.3cm)#square(size:1cm, stroke:1pt)],
|
||||||
|
[#v(-0.3cm)#square(size:1cm, stroke:1pt)],
|
||||||
|
[#v(-0.3cm)#rect(height:1cm, width:1.2cm, stroke:2pt)],
|
||||||
|
[], [], [#v(-0.2cm)#text(small, [(#pts)])], [#v(-0.2cm)#text(small, [(#pts)])], [#v(-0.2cm)#text(small, [(#pts)])], [#v(-0.2cm)#text(small, [(#pts)])], [#v(-0.2cm)#text(small, [(#pts)])], [],
|
||||||
|
)
|
||||||
|
} else if nbrEx == 7 {
|
||||||
|
tablex(
|
||||||
|
columns: (2cm, 90%-7.3cm, 1cm, 1cm, 1cm, 1cm, 1cm, 1cm, 1.3cm),
|
||||||
|
align: center + top,
|
||||||
|
stroke: none,
|
||||||
|
[], [], [#v(-0.4cm)#text(small, "1")], [#v(-0.4cm)#text(small, "2")], [#v(-0.4cm)#text(small, "3")], [#v(-0.4cm)#text(small, "4")], [#v(-0.4cm)#text(small, "5")], [#v(-0.4cm)#text(small, "6")], if lang == "en" {[#v(-0.4cm)#text(small, "Grade")]} else {[#v(-0.4cm)#text(small, "Note")]},
|
||||||
|
if lang == "en" or lang == "de" {[#text(large, "Name:")]} else {[#text(large, "Nom:")]
|
||||||
|
},
|
||||||
|
[#line(start: (0cm, 0.7cm), length:(100%), stroke:(dash:"loosely-dashed"))],
|
||||||
|
[#v(-0.3cm)#square(size:1cm, stroke:1pt)],
|
||||||
|
[#v(-0.3cm)#square(size:1cm, stroke:1pt)],
|
||||||
|
[#v(-0.3cm)#square(size:1cm, stroke:1pt)],
|
||||||
|
[#v(-0.3cm)#square(size:1cm, stroke:1pt)],
|
||||||
|
[#v(-0.3cm)#square(size:1cm, stroke:1pt)],
|
||||||
|
[#v(-0.3cm)#square(size:1cm, stroke:1pt)],
|
||||||
|
[#v(-0.3cm)#rect(height:1cm, width:1.2cm, stroke:2pt)],
|
||||||
|
[], [], [#v(-0.2cm)#text(small, [(#pts)])], [#v(-0.2cm)#text(small, [(#pts)])], [#v(-0.2cm)#text(small, [(#pts)])], [#v(-0.2cm)#text(small, [(#pts)])], [#v(-0.2cm)#text(small, [(#pts)])], [#v(-0.2cm)#text(small, [(#pts)])], [],
|
||||||
|
)
|
||||||
|
} else if nbrEx == 8 {
|
||||||
|
tablex(
|
||||||
|
columns: (2cm, 90%-8.3cm, 1cm, 1cm, 1cm, 1cm, 1cm, 1cm, 1cm, 1.3cm),
|
||||||
|
align: center + top,
|
||||||
|
stroke: none,
|
||||||
|
[], [], [#v(-0.4cm)#text(small, "1")], [#v(-0.4cm)#text(small, "2")], [#v(-0.4cm)#text(small, "3")], [#v(-0.4cm)#text(small, "4")], [#v(-0.4cm)#text(small, "5")], [#v(-0.4cm)#text(small, "6")], [#v(-0.4cm)#text(small, "7")], if lang == "en" {[#v(-0.4cm)#text(small, "Grade")]} else {[#v(-0.4cm)#text(small, "Note")]},
|
||||||
|
if lang == "en" or lang == "de" {[#text(large, "Name:")]} else {[#text(large, "Nom:")]
|
||||||
|
},
|
||||||
|
[#line(start: (0cm, 0.7cm), length:(100%), stroke:(dash:"loosely-dashed"))],
|
||||||
|
[#v(-0.3cm)#square(size:1cm, stroke:1pt)],
|
||||||
|
[#v(-0.3cm)#square(size:1cm, stroke:1pt)],
|
||||||
|
[#v(-0.3cm)#square(size:1cm, stroke:1pt)],
|
||||||
|
[#v(-0.3cm)#square(size:1cm, stroke:1pt)],
|
||||||
|
[#v(-0.3cm)#square(size:1cm, stroke:1pt)],
|
||||||
|
[#v(-0.3cm)#square(size:1cm, stroke:1pt)],
|
||||||
|
[#v(-0.3cm)#square(size:1cm, stroke:1pt)],
|
||||||
|
[#v(-0.3cm)#rect(height:1cm, width:1.2cm, stroke:2pt)],
|
||||||
|
[], [], [#v(-0.2cm)#text(small, [(#pts)])], [#v(-0.2cm)#text(small, [(#pts)])], [#v(-0.2cm)#text(small, [(#pts)])], [#v(-0.2cm)#text(small, [(#pts)])], [#v(-0.2cm)#text(small, [(#pts)])], [#v(-0.2cm)#text(small, [(#pts)])], [#v(-0.2cm)#text(small, [(#pts)])], [],
|
||||||
|
)
|
||||||
|
} else if nbrEx == 9 {
|
||||||
|
tablex(
|
||||||
|
columns: (2cm, 90%-9.3cm, 1cm, 1cm, 1cm, 1cm, 1cm, 1cm, 1cm, 1cm, 1.3cm),
|
||||||
|
align: center + top,
|
||||||
|
stroke: none,
|
||||||
|
[], [], [#v(-0.4cm)#text(small, "1")], [#v(-0.4cm)#text(small, "2")], [#v(-0.4cm)#text(small, "3")], [#v(-0.4cm)#text(small, "4")], [#v(-0.4cm)#text(small, "5")], [#v(-0.4cm)#text(small, "6")], [#v(-0.4cm)#text(small, "7")], [#v(-0.4cm)#text(small, "8")], if lang == "en" {[#v(-0.4cm)#text(small, "Grade")]} else {[#v(-0.4cm)#text(small, "Note")]},
|
||||||
|
if lang == "en" or lang == "de" {[#text(large, "Name:")]} else {[#text(large, "Nom:")]
|
||||||
|
},
|
||||||
|
[#line(start: (0cm, 0.7cm), length:(100%), stroke:(dash:"loosely-dashed"))],
|
||||||
|
[#v(-0.3cm)#square(size:1cm, stroke:1pt)],
|
||||||
|
[#v(-0.3cm)#square(size:1cm, stroke:1pt)],
|
||||||
|
[#v(-0.3cm)#square(size:1cm, stroke:1pt)],
|
||||||
|
[#v(-0.3cm)#square(size:1cm, stroke:1pt)],
|
||||||
|
[#v(-0.3cm)#square(size:1cm, stroke:1pt)],
|
||||||
|
[#v(-0.3cm)#square(size:1cm, stroke:1pt)],
|
||||||
|
[#v(-0.3cm)#square(size:1cm, stroke:1pt)],
|
||||||
|
[#v(-0.3cm)#square(size:1cm, stroke:1pt)],
|
||||||
|
[#v(-0.3cm)#rect(height:1cm, width:1.2cm, stroke:2pt)],
|
||||||
|
[], [], [#v(-0.2cm)#text(small, [(#pts)])], [#v(-0.2cm)#text(small, [(#pts)])], [#v(-0.2cm)#text(small, [(#pts)])], [#v(-0.2cm)#text(small, [(#pts)])], [#v(-0.2cm)#text(small, [(#pts)])], [#v(-0.2cm)#text(small, [(#pts)])], [#v(-0.2cm)#text(small, [(#pts)])], [#v(-0.2cm)#text(small, [(#pts)])], [],
|
||||||
|
)
|
||||||
|
} else if nbrEx == 10 {
|
||||||
|
tablex(
|
||||||
|
columns: (2cm, 90%-10.3cm, 1cm, 1cm, 1cm, 1cm, 1cm, 1cm, 1cm, 1cm, 1cm, 1.3cm),
|
||||||
|
align: center + top,
|
||||||
|
stroke: none,
|
||||||
|
[], [], [#v(-0.4cm)#text(small, "1")], [#v(-0.4cm)#text(small, "2")], [#v(-0.4cm)#text(small, "3")], [#v(-0.4cm)#text(small, "4")], [#v(-0.4cm)#text(small, "5")], [#v(-0.4cm)#text(small, "6")], [#v(-0.4cm)#text(small, "7")], [#v(-0.4cm)#text(small, "8")], [#v(-0.4cm)#text(small, "9")], if lang == "en" {[#v(-0.4cm)#text(small, "Grade")]} else {[#v(-0.4cm)#text(small, "Note")]},
|
||||||
|
if lang == "en" or lang == "de" {[#text(large, "Name:")]} else {[#text(large, "Nom:")]
|
||||||
|
},
|
||||||
|
[#line(start: (0cm, 0.7cm), length:(100%), stroke:(dash:"loosely-dashed"))],
|
||||||
|
[#v(-0.3cm)#square(size:1cm, stroke:1pt)],
|
||||||
|
[#v(-0.3cm)#square(size:1cm, stroke:1pt)],
|
||||||
|
[#v(-0.3cm)#square(size:1cm, stroke:1pt)],
|
||||||
|
[#v(-0.3cm)#square(size:1cm, stroke:1pt)],
|
||||||
|
[#v(-0.3cm)#square(size:1cm, stroke:1pt)],
|
||||||
|
[#v(-0.3cm)#square(size:1cm, stroke:1pt)],
|
||||||
|
[#v(-0.3cm)#square(size:1cm, stroke:1pt)],
|
||||||
|
[#v(-0.3cm)#square(size:1cm, stroke:1pt)],
|
||||||
|
[#v(-0.3cm)#square(size:1cm, stroke:1pt)],
|
||||||
|
[#v(-0.3cm)#rect(height:1cm, width:1.2cm, stroke:2pt)],
|
||||||
|
[], [], [#v(-0.2cm)#text(small, [(#pts)])], [#v(-0.2cm)#text(small, [(#pts)])], [#v(-0.2cm)#text(small, [(#pts)])], [#v(-0.2cm)#text(small, [(#pts)])], [#v(-0.2cm)#text(small, [(#pts)])], [#v(-0.2cm)#text(small, [(#pts)])], [#v(-0.2cm)#text(small, [(#pts)])], [#v(-0.2cm)#text(small, [(#pts)])], [#v(-0.2cm)#text(small, [(#pts)])], [],
|
||||||
|
)
|
||||||
|
}
|
||||||
|
/*if lang == "en" {
|
||||||
|
[#text(large, "Name:")]
|
||||||
|
} else if lang == "fr" {
|
||||||
|
[#text(large, "Nom:")]
|
||||||
|
} else if lang == "de" {
|
||||||
|
[#text(large, "Name:")]
|
||||||
|
}
|
||||||
|
line(start: (2cm, 0cm), length:(80%-nbrEx*5%), stroke:(dash:"loosely-dashed"))
|
||||||
|
if nbrEx != 0 {
|
||||||
|
let i = 0
|
||||||
|
while i <= nbrEx {
|
||||||
|
if i == nbrEx {
|
||||||
|
square(size:1.3cm, stroke:2pt)
|
||||||
|
} else {
|
||||||
|
square(size:1cm, stroke:1pt)
|
||||||
|
}
|
||||||
|
i = i + 1
|
||||||
|
}
|
||||||
|
}*/
|
||||||
|
}
|
||||||
|
|
||||||
|
#let exam_reminder_did(
|
||||||
|
lang: "en" // "de" "fr",
|
||||||
|
) = {
|
||||||
|
if lang == "en" {
|
||||||
|
infobox[
|
||||||
|
*Exam Reminder:* \
|
||||||
|
You can only use the following items:
|
||||||
|
- a laptop without internet connection
|
||||||
|
- a pocketcalculator
|
||||||
|
- all paper documents you want
|
||||||
|
It is forbidden to use generative AI.
|
||||||
|
\
|
||||||
|
*Good Luck!*
|
||||||
|
]
|
||||||
|
} else if lang == "fr" {
|
||||||
|
infobox[
|
||||||
|
*Rappel d'examen :* \
|
||||||
|
Vous ne pouvez utiliser que les éléments suivants :
|
||||||
|
- un ordinateur portable sans connexion internet
|
||||||
|
- une calculatrice de poche
|
||||||
|
- tous les documents papier que vous souhaitez
|
||||||
|
Il est interdit d'utiliser l'IA générative.
|
||||||
|
\
|
||||||
|
*Bonne chance!*
|
||||||
|
]
|
||||||
|
} else if lang == "de" {
|
||||||
|
infobox[
|
||||||
|
*Prüfungserinnerung:* \
|
||||||
|
Sie können nur die folgenden Gegenstände verwenden:
|
||||||
|
- ein Laptop ohne Internetanschluss
|
||||||
|
- einen Taschenrechner
|
||||||
|
- alle Papierdokumente
|
||||||
|
Es ist verboten, generative KI zu verwenden.
|
||||||
|
\
|
||||||
|
*Viel Glück!*
|
||||||
|
]
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
#let exam_reminder_car(
|
||||||
|
lang: "en" // "de" "fr",
|
||||||
|
) = {
|
||||||
|
if lang == "en" {
|
||||||
|
infobox[
|
||||||
|
*Exam Reminder:*
|
||||||
|
\ \
|
||||||
|
You can only use the following items:
|
||||||
|
- the two-page summary you created.
|
||||||
|
- a pocketcalculator
|
||||||
|
In addition, properly comment all high-level and assembler code to explain its purpose and how it fits into the program structure.
|
||||||
|
\ \
|
||||||
|
*Good Luck!*
|
||||||
|
]
|
||||||
|
} else if lang == "fr" {
|
||||||
|
infobox[
|
||||||
|
*Rappel d'examen :*
|
||||||
|
\ \
|
||||||
|
Vous ne pouvez utiliser que les éléments suivants :
|
||||||
|
- le résumé de deux pages que vous avez créé.
|
||||||
|
- une calculatrice de poche
|
||||||
|
Commenter également tout le code de haut niveau et le code assembleur de manière appropriée afin d'expliquer son but et son intégration dans la structure du programme.
|
||||||
|
\ \
|
||||||
|
*Bonne chance!*
|
||||||
|
]
|
||||||
|
} else if lang == "de" {
|
||||||
|
infobox[
|
||||||
|
*Prüfungserinnerung:*
|
||||||
|
\ \
|
||||||
|
Sie können nur die folgenden Elemente verwenden:
|
||||||
|
- die zweiseitige Zusammenfassung, die Sie erstellt haben.
|
||||||
|
- einen Taschenrechner
|
||||||
|
Kommentieren Sie ausserdem den gesamten High-Level- und Assembler-Code ordnungsgemäss aus, um seinen Zweck und seine Einbindung in die Programmstruktur zu erklären.
|
||||||
|
\ \
|
||||||
|
*Viel Glück!*
|
||||||
|
]
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
#let exam_reminder_syd(
|
||||||
|
lang: "en" // "de" "fr",
|
||||||
|
) = {
|
||||||
|
if lang == "en" {
|
||||||
|
infobox[
|
||||||
|
*Exam Reminder:*
|
||||||
|
\
|
||||||
|
You can only use the following items:
|
||||||
|
- your personal notes
|
||||||
|
- the couse slides
|
||||||
|
//- A one-page summary (front and back) prepared by you.
|
||||||
|
It is forbidden to use generative AI.
|
||||||
|
\
|
||||||
|
*Good Luck!*
|
||||||
|
]
|
||||||
|
} else if lang == "fr" {
|
||||||
|
infobox[
|
||||||
|
*Rappel d'examen :*
|
||||||
|
\
|
||||||
|
Vous ne pouvez utiliser que les éléments suivants :
|
||||||
|
- vos notes personnelles
|
||||||
|
- les diapositives du cours
|
||||||
|
Il est interdit d'utiliser l'IA générative.
|
||||||
|
\
|
||||||
|
*Bonne chance!*
|
||||||
|
]
|
||||||
|
} else if lang == "de" {
|
||||||
|
infobox[
|
||||||
|
*Prüfungserinnerung:*
|
||||||
|
\
|
||||||
|
Sie können nur die folgenden Elemente verwenden:
|
||||||
|
- Ihre persönlichen Notizen
|
||||||
|
- die Vorlesungsfolien
|
||||||
|
Es ist verboten, generative KI zu verwenden.
|
||||||
|
\
|
||||||
|
*Viel Glück!*
|
||||||
|
]
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
#let exercises_solution_hints(
|
||||||
|
lang: "en" // "de" "fr",
|
||||||
|
) = {
|
||||||
|
if lang == "en" {
|
||||||
|
infobox[
|
||||||
|
*Solution vs. Hints:*
|
||||||
|
\
|
||||||
|
While not every response provided herein constitutes a comprehensive solution, some serve as helpful hints intended to guide you toward discovering the solution independently. In certain instances, only a portion of the solution is presented.
|
||||||
|
]
|
||||||
|
} else if lang == "fr" {
|
||||||
|
infobox[
|
||||||
|
*Solution vs. Hints:*
|
||||||
|
\
|
||||||
|
Toutes les réponses fournies ici ne sont pas des solutions complètes. Certaines ne sont que des indices pour vous aider à trouver la solution vous-même. Dans d'autres cas, seule une partie de la solution est fournie.
|
||||||
|
]
|
||||||
|
} else if lang == "de" {
|
||||||
|
infobox[
|
||||||
|
*Lösung vs. Hinweise:*
|
||||||
|
\
|
||||||
|
Nicht alle hier gegebenen Antworten sind vollständige Lösungen. Einige dienen lediglich als Hinweise, um Ihnen bei der eigenständigen Lösungsfindung zu helfen. In anderen Fällen wird nur ein Teil der Lösung präsentiert.
|
||||||
|
]
|
||||||
|
}
|
||||||
|
}
|
1040
00-templates/syntax/VHDL.sublime-syntax
Normal file
2470
00-templates/tablex.typ
Normal file
137
00-templates/template-thesis.typ
Normal file
@ -0,0 +1,137 @@
|
|||||||
|
//
|
||||||
|
// Description: HEVS Thesis Typst Template
|
||||||
|
// Author : Silvan Zahno
|
||||||
|
//
|
||||||
|
#import "helpers.typ": *
|
||||||
|
#import "page-title-thesis.typ": *
|
||||||
|
#import "page-reportinfo.typ": *
|
||||||
|
|
||||||
|
#let thesis(
|
||||||
|
title: none,
|
||||||
|
subtitle: none,
|
||||||
|
version: none,
|
||||||
|
author: (),
|
||||||
|
professor: (),
|
||||||
|
expert: (),
|
||||||
|
school: (),
|
||||||
|
date: (),
|
||||||
|
lang:"en",
|
||||||
|
tableof : (
|
||||||
|
toc: true,
|
||||||
|
tof: false,
|
||||||
|
tot: false,
|
||||||
|
tol: false,
|
||||||
|
toe: false,
|
||||||
|
),
|
||||||
|
icons: (
|
||||||
|
topleft: none,
|
||||||
|
topright: none,
|
||||||
|
bottomleft: none,
|
||||||
|
bottomright: none,
|
||||||
|
),
|
||||||
|
body) = {
|
||||||
|
// Set the document's basic properties.
|
||||||
|
set document(author: author.name, title: title)
|
||||||
|
set page(margin: (top:3.5cm, bottom:3.5cm, rest:3.5cm))
|
||||||
|
|
||||||
|
// header and footer
|
||||||
|
set page(
|
||||||
|
header: locate(loc => if loc.page() >=2 [
|
||||||
|
#set text(small)
|
||||||
|
#h(1fr) #smallcaps(title)
|
||||||
|
]),
|
||||||
|
footer: locate(loc => if loc.page() >=2 [
|
||||||
|
#set text(small)
|
||||||
|
#h(1fr) #counter(page).display("1 / 1", both: true)
|
||||||
|
]),
|
||||||
|
)
|
||||||
|
|
||||||
|
// font & language
|
||||||
|
set text(
|
||||||
|
font: (
|
||||||
|
"New CM Sans",
|
||||||
|
"New Computer Modern Sans",
|
||||||
|
"Linux Libertine",
|
||||||
|
"Fira Sans",
|
||||||
|
"New Computer Modern",
|
||||||
|
),
|
||||||
|
fallback: true,
|
||||||
|
lang:lang
|
||||||
|
)
|
||||||
|
// paragraph
|
||||||
|
show par: set block(spacing: 1em)
|
||||||
|
//set par(leading: 0.55em, first-line-indent: 1.8em, justify: true)
|
||||||
|
|
||||||
|
// heading
|
||||||
|
show heading: set block(above: 1.2em, below: 1.2em)
|
||||||
|
set heading(numbering: "1.1")
|
||||||
|
|
||||||
|
show heading.where(level: 1): (it) => {
|
||||||
|
set text(size: huge)
|
||||||
|
set block(above: 1.2em, below: 1.2em)
|
||||||
|
if it.numbering != none {
|
||||||
|
let num = numbering(it.numbering, ..counter(heading).at(it.location()))
|
||||||
|
let prefix = num + h(0.5em) + text(code-border)[|] + h(0.5em)
|
||||||
|
unshift_prefix(prefix, it.body)
|
||||||
|
} else {
|
||||||
|
it
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
show heading.where(level: 2): (it) => {
|
||||||
|
let num = numbering(it.numbering, ..counter(heading).at(it.location()))
|
||||||
|
unshift_prefix(num + h(0.8em), it.body)
|
||||||
|
}
|
||||||
|
//show heading.where(level: 1): set text(size:huge)
|
||||||
|
//show heading.where(level: 1): set pad(size:huge)
|
||||||
|
|
||||||
|
// link color
|
||||||
|
//show link: it => text(fill:blue, underline(it))
|
||||||
|
show link: it => text(fill:hei-blue, it)
|
||||||
|
|
||||||
|
// Math numbering
|
||||||
|
set math.equation(numbering: "(1)")
|
||||||
|
|
||||||
|
// code blocks
|
||||||
|
set raw(syntaxes:"syntax/VHDL.sublime-syntax")
|
||||||
|
show raw.where(block: false): set text(weight: "semibold")
|
||||||
|
//show raw.where(block: false): it => {
|
||||||
|
// highlight(
|
||||||
|
// fill:code-bg,
|
||||||
|
// top-edge: "ascender",
|
||||||
|
// bottom-edge: "bounds",
|
||||||
|
// extent:1pt, it)
|
||||||
|
//}
|
||||||
|
show raw.where(block: true): set text(size: tiny)
|
||||||
|
show raw.where(block: true): it => {
|
||||||
|
block(
|
||||||
|
fill: code-bg,
|
||||||
|
width:100%,
|
||||||
|
inset: 10pt,
|
||||||
|
radius: 4pt,
|
||||||
|
stroke: 0.1pt + code-border,
|
||||||
|
it,
|
||||||
|
)
|
||||||
|
}
|
||||||
|
|
||||||
|
// Title page
|
||||||
|
page-title-thesis(
|
||||||
|
title: title,
|
||||||
|
date: date,
|
||||||
|
school: school,
|
||||||
|
author: author,
|
||||||
|
icons: icons,
|
||||||
|
)
|
||||||
|
|
||||||
|
// Table of content
|
||||||
|
pagebreak()
|
||||||
|
toc(
|
||||||
|
lang: lang,
|
||||||
|
tableof: tableof,
|
||||||
|
)
|
||||||
|
|
||||||
|
// Main body
|
||||||
|
set par(justify: true)
|
||||||
|
|
||||||
|
body
|
||||||
|
}
|
56
01-settings/metadata.typ
Normal file
@ -0,0 +1,56 @@
|
|||||||
|
|
||||||
|
//
|
||||||
|
// Description: Metadata of the document
|
||||||
|
//
|
||||||
|
#import "../00-templates/constants.typ": *
|
||||||
|
|
||||||
|
#let title= "Antenna"
|
||||||
|
#let subtitle= "Deisng, simulate and make an Antenna for 2.45 GHz"
|
||||||
|
#let version= "v0.1"
|
||||||
|
|
||||||
|
#let author= (
|
||||||
|
name: "Rémi Heredero",
|
||||||
|
email: "remi.herederostudents.@hevs.ch",
|
||||||
|
degree: "Bachelor",
|
||||||
|
affiliation: "HEI-Vs",
|
||||||
|
place: "Sion",
|
||||||
|
signature: resources-folder + "signature.png",
|
||||||
|
)
|
||||||
|
#let professor= (
|
||||||
|
name: "Prof. Alexandra Anderson",
|
||||||
|
email: "alexandra.andersson@hevs.ch",
|
||||||
|
affiliation: "HEI-Vs",
|
||||||
|
)
|
||||||
|
#let school= (
|
||||||
|
name: "University of Applied Sciences Western Switzerland, HES-SO Valais Wallis",
|
||||||
|
shortname: "HEI-VS",
|
||||||
|
orientation: "Systems Engineering",
|
||||||
|
specialisation: "Infotronics",
|
||||||
|
dean: "Dr. Cyrille Beçencon",
|
||||||
|
)
|
||||||
|
|
||||||
|
#let date= (
|
||||||
|
submission: datetime.today().display("[day].[month].[year]"),
|
||||||
|
current: datetime.today().display("[day].[month].[year]"),
|
||||||
|
year: datetime.today().display("[year]"),
|
||||||
|
)
|
||||||
|
|
||||||
|
#let tableof = (
|
||||||
|
toc: true,
|
||||||
|
tof: false,
|
||||||
|
tot: false,
|
||||||
|
tol: false,
|
||||||
|
toe: false,
|
||||||
|
)
|
||||||
|
|
||||||
|
#let icons = (
|
||||||
|
topleft: resources-folder + "logos/hei-vs-light.svg",
|
||||||
|
topright: resources-folder + "logos/hesso-logo.svg",
|
||||||
|
bottomleft: resources-folder + "logos/hevs-pictogram-only.svg",
|
||||||
|
bottomright: resources-folder + "logos/valais-excellence-logo.svg",
|
||||||
|
)
|
||||||
|
|
||||||
|
|
||||||
|
#let bib= true
|
||||||
|
#let icon="04-resources/icon.svg"
|
||||||
|
#let bibstyle="ieee" //"apa", "chicago-author-date", "chicago-notes", "mla"
|
6
03-tail/a-appendix.typ
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
#pagebreak()
|
||||||
|
#counter(heading).update(0)
|
||||||
|
#set heading(numbering:"A")
|
||||||
|
= Appendix
|
||||||
|
|
||||||
|
#lorem(50)
|
9
03-tail/bibliography.bib
Normal file
@ -0,0 +1,9 @@
|
|||||||
|
@article{stateoftheArt,
|
||||||
|
title = {State-of-the-{{Art}} Des {{State}}-of-the-{{Art}}},
|
||||||
|
author = {Fettke, Peter},
|
||||||
|
year = {2006},
|
||||||
|
pages = {257--266},
|
||||||
|
doi = {10.1007/s11576-006-0057-3},
|
||||||
|
abstract = {The world-wide increasing amount of literature makes it necessary to describe, to synthesize, to evaluate, to clarify, or to integrate the results of papers in a particular field of research. Today, the process of conducting a literature review is seen as a scientific procedure, which should be guided by appropriate research methods. This paper analyzes the achieved research level in the Information Systems discipline from a methodological point of view. As a sample we use all articles from the column ,,State-of-the-Art'' of the journal WIRTSCHAFT-SINFORMATIK. The study shows that this research method is common in Information Systems research. However, several important aspects for further development are identified: (1) Until now no mathematical-statistical analysis has been used. (2) Research methods used in the primary papers are not taken into account by reviews. (3) No explicit objectives are discussed by about one third of the articles in the sample. (4) The selection of literature used as a basis for the review is not explicated in any article. (5) About one half of the reviewed articles do not discuss further research questions.},
|
||||||
|
journal = {Wirtschaftsinformatik}
|
||||||
|
}
|
5
03-tail/bibliography.typ
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
#import "../00-templates/helpers.typ": *
|
||||||
|
#pagebreak()
|
||||||
|
|
||||||
|
#bibliography("../03-tail/bibliography.bib", style:bibstyle)
|
||||||
|
|
9
03-tail/glossary.typ
Normal file
@ -0,0 +1,9 @@
|
|||||||
|
//-----------------------------------------------------------------------------
|
||||||
|
// Glossary
|
||||||
|
//
|
||||||
|
#let gls-scrum=(name:[Scrum], description:[Scrum is an agile process framework for managing complex knowledge work, with an initial emphasis on software development, although it has been used in other fields and is slowly starting to be explored for other complex work, research and advanced technologies.])
|
||||||
|
|
||||||
|
//-----------------------------------------------------------------------------
|
||||||
|
// Acronyms
|
||||||
|
//
|
||||||
|
#let acr-ar=(abbr:[AR], long:[Augmented Reality])
|
459
04-resources/icon.svg
Normal file
After Width: | Height: | Size: 25 KiB |
172
04-resources/logos/hei-en.svg
Normal file
@ -0,0 +1,172 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||||
|
<svg
|
||||||
|
version="1.1"
|
||||||
|
id="svg2"
|
||||||
|
xml:space="preserve"
|
||||||
|
width="415.74667"
|
||||||
|
height="170.08"
|
||||||
|
viewBox="0 0 415.74667 170.08"
|
||||||
|
sodipodi:docname="hei-en.svg"
|
||||||
|
inkscape:version="1.2.2 (b0a84865, 2022-12-01)"
|
||||||
|
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||||
|
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||||
|
xmlns="http://www.w3.org/2000/svg"
|
||||||
|
xmlns:svg="http://www.w3.org/2000/svg"
|
||||||
|
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||||
|
xmlns:cc="http://creativecommons.org/ns#"
|
||||||
|
xmlns:dc="http://purl.org/dc/elements/1.1/"><metadata
|
||||||
|
id="metadata8"><rdf:RDF><cc:Work
|
||||||
|
rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type
|
||||||
|
rdf:resource="http://purl.org/dc/dcmitype/StillImage" /></cc:Work></rdf:RDF></metadata><defs
|
||||||
|
id="defs6" /><sodipodi:namedview
|
||||||
|
pagecolor="#ffffff"
|
||||||
|
bordercolor="#666666"
|
||||||
|
borderopacity="1"
|
||||||
|
objecttolerance="10"
|
||||||
|
gridtolerance="10"
|
||||||
|
guidetolerance="10"
|
||||||
|
inkscape:pageopacity="0"
|
||||||
|
inkscape:pageshadow="2"
|
||||||
|
inkscape:window-width="1720"
|
||||||
|
inkscape:window-height="1387"
|
||||||
|
id="namedview4"
|
||||||
|
inkscape:pagecheckerboard="0"
|
||||||
|
showgrid="false"
|
||||||
|
inkscape:zoom="2.7925659"
|
||||||
|
inkscape:cx="163.29069"
|
||||||
|
inkscape:cy="56.399743"
|
||||||
|
inkscape:window-x="0"
|
||||||
|
inkscape:window-y="25"
|
||||||
|
inkscape:window-maximized="0"
|
||||||
|
inkscape:current-layer="g12"
|
||||||
|
inkscape:showpageshadow="0"
|
||||||
|
inkscape:deskcolor="#d1d1d1" /><g
|
||||||
|
id="g10"
|
||||||
|
inkscape:groupmode="layer"
|
||||||
|
inkscape:label="ink_ext_XXXXXX"
|
||||||
|
transform="matrix(1.3333333,0,0,-1.3333333,0,170.08)"><g
|
||||||
|
id="g12"
|
||||||
|
transform="scale(0.1)"><path
|
||||||
|
d="M 2044.39,1045.46 C 1889.41,717.031 1893.87,728.125 1889.43,717.035 c -8.53,-17.039 -17.33,-34.683 -39.54,-34.683 -18.32,0 -32.74,15.16 -32.74,34.461 0,10.433 2.22,15.003 9.54,30.14 4.92,10.586 0.32,0.699 148.84,316.957 10.17,21.05 19.95,41.18 42.52,41.18 18.97,0 33.25,-14.35 33.25,-33.32 0,-10.5 -3.31,-18.47 -6.91,-26.31 z m 24.11,26.31 c 0,28.26 -22.21,50.52 -50.45,50.52 -33.39,0 -47.16,-28.48 -57.21,-49.26 4.68,9.98 -0.74,-1.58 -149.31,-317.839 -8.06,-16.75 -11.55,-24.046 -11.55,-38.378 0,-28.954 21.91,-51.637 49.91,-51.637 32.76,0 45.61,25.527 54.97,44.203 l 155.04,328.781 c 4.37,9.36 8.6,19.59 8.6,33.61"
|
||||||
|
style="fill:#999999;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
id="path16" /><path
|
||||||
|
d="m 2186.48,1045.48 c -154.9,-328.382 -149.26,-320.535 -154.97,-328.398 -8.46,-17.086 -17.26,-34.73 -39.52,-34.73 -18.39,0 -32.72,15.179 -32.72,34.461 0,10.433 2.2,15.003 9.54,30.14 4.85,10.711 0.31,0.699 148.87,316.957 10.18,21.03 19.94,41.18 42.49,41.18 18.95,0 33.36,-14.35 33.36,-33.32 0,-10.5 -3.3,-18.47 -7.05,-26.29 z m -26.31,76.81 c -33.4,0 -47.15,-28.5 -57.21,-49.29 4.77,9.78 -0.76,-1.55 -149.32,-317.809 -8.03,-16.769 -11.56,-24.046 -11.56,-38.378 0,-28.954 21.95,-51.637 49.91,-51.637 32.91,0 45.68,25.527 54.99,44.293 l 155.08,328.691 c 4.2,8.91 8.59,19.59 8.59,33.61 0,28.26 -22.17,50.52 -50.48,50.52"
|
||||||
|
style="fill:#999999;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
id="path18" /><path
|
||||||
|
d="m 2303.31,925.441 c 2.79,-6.796 6.42,-12.371 15.79,-12.371 9.35,0 12.99,5.575 15.79,12.371 l 46.66,118.679 c 1.04,2.78 1.47,4.9 1.47,7.87 0,8.96 -7.82,15.37 -16.37,15.37 -7.24,0 -11.74,-4.68 -14.49,-10.45 l -33.06,-88.609 -32.98,88.609 c -2.83,5.77 -7.31,10.45 -14.56,10.45 -8.49,0 -16.37,-6.41 -16.37,-15.37 0,-2.97 0.45,-5.09 1.5,-7.87 l 46.62,-118.679"
|
||||||
|
style="fill:#999999;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
id="path20" /><path
|
||||||
|
d="m 2432.5,1034.13 h 0.38 l 19.85,-61.755 h -40.5 z m -66.89,-107.423 c 0,-8.508 7.22,-14.883 15.75,-14.883 8.7,0 13.14,4.707 15.27,11.293 l 6.44,19.828 h 59.2 l 6.42,-20.039 c 2.15,-6.375 6.63,-11.082 15.56,-11.082 7.94,0 14.69,5.762 14.69,14.039 0,1.52 -0.4,4.477 -1.7,7.918 l -41.77,115.929 c -3.61,10.2 -11.49,17.65 -22.83,17.65 -10.82,0 -19.14,-7.9 -22.75,-17.65 l -42.86,-115.929 c -0.38,-1.054 -1.42,-3.59 -1.42,-7.074"
|
||||||
|
style="fill:#999999;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
id="path22" /><path
|
||||||
|
d="m 2529.81,914.355 h 53.31 c 9.33,0 14.93,7.032 15.37,14.106 0.19,7.199 -4.52,15.328 -15.37,15.328 h -37.94 v 106.941 c 0,10.66 -6.82,16.63 -16.01,16.63 -9.09,0 -15.98,-5.97 -15.98,-16.63 V 931.84 c 0,-10.664 6.21,-17.485 16.62,-17.485"
|
||||||
|
style="fill:#999999;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
id="path24" /><path
|
||||||
|
d="m 2672.38,1034.13 h 0.47 l 19.82,-61.755 h -40.53 z m -51.17,-122.306 c 8.74,0 13.25,4.707 15.38,11.293 l 6.4,19.828 h 59.16 l 6.48,-20.039 c 2.14,-6.375 6.61,-11.082 15.52,-11.082 7.89,0 14.74,5.762 14.74,14.039 0,1.52 -0.45,4.477 -1.72,7.918 l -41.75,115.929 c -3.65,10.2 -11.49,17.65 -22.83,17.65 -10.87,0 -19.13,-7.9 -22.78,-17.65 l -42.79,-115.929 c -0.45,-1.054 -1.52,-3.59 -1.52,-7.074 0,-8.508 7.22,-14.883 15.71,-14.883"
|
||||||
|
style="fill:#999999;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
id="path26" /><path
|
||||||
|
d="m 2785.13,929.727 v 121.003 c 0,10.66 -6.82,16.63 -16.02,16.63 -9.11,0 -15.97,-5.97 -15.97,-16.63 V 929.727 c 0,-10.704 6.86,-16.637 15.97,-16.637 9.2,0 16.02,5.933 16.02,16.637"
|
||||||
|
style="fill:#999999;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
id="path28" /><path
|
||||||
|
d="m 2855.41,941.273 c -13.83,0 -25.78,8.301 -35.74,8.301 -8.76,0 -14.26,-6.844 -14.26,-15.117 0,-20.016 35.31,-23.879 51.73,-23.879 29.4,0 54.58,18.981 54.58,49.445 0,54.957 -71.2,40.917 -71.2,62.857 0,8.95 8.3,13.85 17.49,13.85 12.77,0 19.55,-6.4 28.29,-6.4 8.78,0 14.33,7.47 14.33,15.73 0,16.85 -29.85,21.3 -41.71,21.3 -28.42,0 -52.89,-18.51 -52.89,-48.32 0,-49.431 71.11,-34.313 71.11,-59.438 0,-10.473 -7.64,-18.329 -21.73,-18.329"
|
||||||
|
style="fill:#999999;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
id="path30" /><path
|
||||||
|
d="m 2427.76,860.273 c 0,6.821 -5.68,14.059 -15.12,14.059 -10.17,0 -15.05,-5.93 -16.99,-15.367 l -18.1,-90.512 h -0.46 l -27.7,93.32 c -2.35,7.684 -8.79,12.559 -16.58,12.559 -7.89,0 -14.35,-4.875 -16.65,-12.559 l -27.7,-93.32 h -0.43 l -18.13,90.512 c -1.86,9.437 -6.76,15.367 -17.01,15.367 -9.45,0 -15.15,-7.238 -15.15,-14.059 0,-3.019 0.19,-4.476 0.86,-7.265 l 27.05,-116.289 c 2.14,-8.992 9.21,-16.614 21.12,-16.614 10.41,0 18.5,6.797 21.09,15.559 l 24.68,82.172 h 0.46 l 24.71,-82.172 c 2.59,-8.762 10.68,-15.559 21.07,-15.559 11.97,0 19.02,7.622 21.17,16.614 l 26.98,116.289 c 0.66,2.789 0.83,4.246 0.83,7.265"
|
||||||
|
style="fill:#999999;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
id="path32" /><path
|
||||||
|
d="m 2468.65,780.594 20.37,61.797 h 0.32 l 19.85,-61.797 z m 43.34,77.293 c -3.66,10.301 -11.56,17.734 -22.76,17.734 -10.97,0 -19.25,-7.875 -22.86,-17.734 L 2423.56,742.02 c -0.38,-1.079 -1.48,-3.653 -1.48,-7.032 0,-8.527 7.2,-14.883 15.69,-14.883 8.69,0 13.22,4.645 15.37,11.231 l 6.44,19.805 h 59.17 l 6.44,-19.973 c 2.14,-6.418 6.61,-11.063 15.53,-11.063 7.91,0 14.73,5.743 14.73,14.059 0,1.481 -0.45,4.414 -1.69,7.856 l -41.77,115.867"
|
||||||
|
style="fill:#999999;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
id="path34" /><path
|
||||||
|
d="m 2639.63,749.559 h -37.94 v 106.933 c 0,10.684 -6.87,16.617 -16.04,16.617 -9.11,0 -15.95,-5.933 -15.95,-16.617 V 737.605 c 0,-10.64 6.23,-17.5 16.66,-17.5 h 53.27 c 9.31,0 14.9,7.051 15.27,14.04 0.29,7.285 -4.42,15.414 -15.27,15.414"
|
||||||
|
style="fill:#999999;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
id="path36" /><path
|
||||||
|
d="m 2734.63,749.559 h -37.93 v 106.933 c 0,10.684 -6.83,16.617 -16.01,16.617 -9.12,0 -15.93,-5.933 -15.93,-16.617 V 737.605 c 0,-10.64 6.2,-17.5 16.63,-17.5 h 53.24 c 9.36,0 14.89,7.051 15.31,14.04 0.25,7.285 -4.52,15.414 -15.31,15.414"
|
||||||
|
style="fill:#999999;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
id="path38" /><path
|
||||||
|
d="m 2775.76,874.355 c -9.16,0 -16,-5.933 -16,-16.617 V 736.719 c 0,-10.641 6.84,-16.614 16,-16.614 9.16,0 15.98,5.973 15.98,16.614 v 121.019 c 0,10.684 -6.82,16.617 -15.98,16.617"
|
||||||
|
style="fill:#999999;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
id="path40" /><path
|
||||||
|
d="m 2840.51,832.402 c 0,8.973 8.3,13.852 17.46,13.852 12.82,0 19.64,-6.379 28.34,-6.379 8.78,0 14.31,7.434 14.31,15.73 0,16.848 -29.83,21.325 -41.8,21.325 -28.31,0 -52.78,-18.535 -52.78,-48.328 0,-49.465 71.1,-34.309 71.1,-59.497 0,-10.406 -7.64,-18.324 -21.68,-18.324 -13.91,0 -25.78,8.321 -35.8,8.321 -8.75,0 -14.29,-6.801 -14.29,-15.122 0,-20.011 35.36,-23.875 51.78,-23.875 29.43,0 54.57,18.981 54.57,49.446 0,54.976 -71.21,40.918 -71.21,62.851"
|
||||||
|
style="fill:#999999;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
id="path42" /><path
|
||||||
|
d="m 1400.9,874.09 -18.35,5.316 c -31.8,9.102 -52.75,15.407 -52.75,36.063 0,14.98 12.86,25.086 28.15,28.953 7.67,1.937 14.87,2.375 22.02,2.375 33.21,0 53.17,-11.527 65.95,-19.246 l 4.54,1.941 c 1.62,18.301 2.15,20.192 4.16,38.031 l -2.54,3.383 c -9.25,3.375 -35.79,13.453 -73.63,13.453 -57.27,0 -103.27,-24.57 -103.27,-74.171 0,-49.614 46,-63.575 66.98,-69.809 l 16.35,-5.281 c 31.18,-9.676 53.14,-16.871 53.14,-39.012 0,-14.918 -14.77,-36.133 -55.22,-36.133 -39.35,0 -61.87,16.379 -71.09,23.113 l -5.06,-1.484 c -1.03,-19.215 -1.03,-21.629 -3.08,-40.406 l 2.5,-4.371 c 2.58,-0.918 5.17,-1.918 7.73,-2.852 19.41,-7.254 42.37,-12.062 70.03,-12.062 18.43,0 54.71,1.425 81.82,23.101 20.97,15.918 28.64,37.571 28.64,56.848 0,51.082 -46.52,65.988 -67.02,72.25"
|
||||||
|
style="fill:#999999;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
id="path44" /><path
|
||||||
|
d="m 1696.44,790.746 c -14.82,-26.449 -39.34,-32.25 -58.22,-32.25 -10.3,0 -21.05,1.93 -30.17,6.281 -40.45,19.239 -40.96,67.887 -40.96,87.157 0,20.257 1.54,48.171 15.36,67.902 17.86,26.937 46.56,27.934 56.21,27.934 28.67,0 45.04,-12.5 54.78,-27.43 12.74,-21.223 14.83,-53.5 14.83,-65.52 0.52,-10.136 0,-42.422 -11.83,-64.074 z m -55.2,193.613 c -51.12,0 -80.74,-19.714 -95.12,-33.671 -34.22,-32.247 -35.25,-79.454 -35.25,-97.766 0,-15.926 0.49,-65.016 35.25,-98.25 16.37,-15.961 45.55,-32.324 91.54,-32.324 35.81,0 65.99,8.215 88.43,29.406 16.97,15.894 27.66,34.652 33.25,58.289 3.62,14.426 4.66,30.359 4.66,46.711 -1.04,33.687 -7.66,67.437 -31.19,92.93 -22.54,24.105 -56.78,34.675 -91.57,34.675"
|
||||||
|
style="fill:#999999;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
id="path46" /><path
|
||||||
|
d="m 1186.39,883.23 c -16.86,0 -30.42,-13.636 -30.42,-30.429 0,-16.805 13.56,-30.414 30.42,-30.414 16.81,0 30.42,13.609 30.42,30.414 0,16.793 -13.61,30.429 -30.42,30.429"
|
||||||
|
style="fill:#999999;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
id="path48" /><path
|
||||||
|
d="m 516.242,1064.44 -2.531,2.92 c -40.91,-1.44 -47.559,-1.44 -90.496,-1.44 l -2.578,-2.88 c 3.605,-54.45 3.605,-68.388 4.101,-125.224 -22.496,-0.503 -45,-0.984 -68.019,-0.984 -17.903,0 -36.274,0.481 -54.164,0.481 l 1.008,127.127 -2.579,2.92 c -39.351,-1.44 -47.031,-1.44 -91.515,-1.44 l -3.067,-2.88 c 2.575,-49.63 5.676,-108.86 5.676,-228.31 0,-43.347 -1.086,-66.929 -2.07,-107.382 l 2.539,-2.922 c 37.316,1.457 46.531,1.98 91.527,1.457 l 2.555,2.871 c -3.066,59.719 -3.551,77.105 -4.074,146.891 22.48,0.972 41.39,1.472 61.398,1.472 20.375,0 40.82,-0.5 61.309,-1 1.031,-64.996 1.031,-80.859 -1.543,-148.769 l 2.574,-2.922 c 38.355,1.457 48.566,1.98 92.031,1.457 l 2.508,2.871 c -4.074,80.957 -5.574,161.363 -5.574,242.305 0,33.711 0.515,56.371 0.984,93.381"
|
||||||
|
style="fill:#999999;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
id="path50" /><path
|
||||||
|
d="m 657.781,883.359 c 1.559,14.938 5.129,35.172 24.586,46.746 6.137,3.836 13.305,5.278 20.446,5.278 16.859,0 27.05,-8.141 32.726,-16.852 7.164,-10.586 7.625,-22.129 7.625,-33.242 z m 85.383,99.258 c -12.719,3.332 -24.496,4.328 -36.266,4.328 -80.261,0 -133.468,-49.632 -133.468,-132.953 0,-22.656 4.121,-46.222 12.25,-63.09 29.691,-65.031 99.199,-70.82 136.078,-70.82 42.351,0 60.836,7.289 87.887,17.344 l 3.113,3.894 3.57,54.391 -3.57,1.461 c -19.445,-9.656 -42.524,-20.711 -79.817,-20.711 -30.668,0 -51.613,9.164 -63.918,26.539 -7.66,10.055 -9.179,19.648 -11.242,29.293 l 165.188,2.934 3.078,3.316 c -0.504,23.645 -1.02,47.734 -8.219,71.801 -17.855,56.855 -57.23,68.359 -74.664,72.273"
|
||||||
|
style="fill:#999999;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
id="path52" /><path
|
||||||
|
d="m 1028.53,883.359 -25.06,8.688 c -17.384,5.773 -31.247,11.094 -31.247,24.543 0,5.793 4.062,21.687 35.847,21.687 31.2,0 51.14,-12.547 63.92,-20.269 l 4.59,1.504 5.1,52.476 -2.56,2.887 c -24.02,6.242 -44.97,12.094 -78.19,12.094 -25.043,0 -75.192,-1.977 -101.774,-38.09 -6.66,-8.672 -13.804,-23.149 -13.804,-42.391 0,-51.566 42.445,-66.961 66.472,-75.59 l 19.391,-6.734 c 13.828,-4.363 36.345,-11.609 36.345,-28.906 0,-12.07 -11.79,-25.047 -40.384,-25.047 -14.321,0 -35.317,4.328 -54.168,13.437 -8.699,4.321 -12.84,7.758 -20.512,13.524 l -4.625,-1.914 c -1.008,-25.047 -1.488,-30.371 -3.523,-54.465 l 2.515,-4.305 c 25.071,-8.687 46.543,-16.383 83.86,-16.383 38.897,0 115.587,6.739 124.747,75.606 0.54,3.887 0.54,7.266 0.54,10.609 0,52.942 -39.33,66.93 -67.48,77.039"
|
||||||
|
style="fill:#999999;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
id="path54" /><path
|
||||||
|
d="m 648.359,350.73 18.188,6.797 c 3.734,-11.726 10.023,-16.14 21.59,-16.14 10.535,0 17.168,5.437 17.168,14.277 0,8.328 -4.59,12.922 -22.274,17.332 -21.586,5.442 -31.613,15.473 -31.613,33.488 0,18.36 13.426,30.774 35.695,30.774 17.848,0 29.407,-7.485 34.508,-22.61 l -18.016,-7.48 c -2.214,7.988 -7.824,11.895 -17.339,11.895 -9.18,0 -14.961,-4.415 -14.789,-11.387 0.168,-7.988 4.929,-11.563 23.796,-16.66 21.079,-5.782 30.254,-16.145 30.254,-34.676 0,-20.227 -14.957,-33.149 -38.414,-33.149 -21.25,0 -33.828,9.016 -38.754,27.539"
|
||||||
|
style="fill:#e20571;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
id="path56" /><path
|
||||||
|
d="m 737.094,362.805 c 0,24.468 18.019,39.265 39.269,39.265 13.934,0 24.985,-5.105 31.785,-18.015 l -14.789,-9.867 c -3.742,6.796 -9.179,10.199 -16.996,10.199 -10.879,0 -19.55,-7.992 -19.55,-21.582 0,-14.114 8.671,-21.938 19.55,-21.938 9.008,0 13.934,3.399 17.504,10.371 l 14.617,-9.519 c -6.796,-13.426 -19.375,-18.352 -33.312,-18.352 -21.418,0 -38.078,13.43 -38.078,39.438"
|
||||||
|
style="fill:#e20571;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
id="path58" /><path
|
||||||
|
d="M 893.828,368.918 V 325.234 H 873.43 v 41.817 c 0,10.027 -5.442,17.336 -15.641,17.336 -10.023,0 -15.809,-7.649 -15.809,-17.5 v -41.653 h -20.562 v 115.418 h 20.562 v -40.457 l -0.339,-7.824 c 4.929,6.125 12.414,9.699 22.949,9.699 19.547,0 29.238,-13.601 29.238,-33.152"
|
||||||
|
style="fill:#e20571;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
id="path60" /><path
|
||||||
|
d="m 968.113,362.629 c 0,12.574 -8.156,22.098 -20.226,22.098 -12.239,0 -20.231,-9.688 -20.231,-22.266 0,-12.238 7.992,-21.758 20.231,-21.758 12.07,0 20.226,9.863 20.226,21.926 z m -60.175,0 c 0,21.59 16.148,39.441 39.949,39.441 24.988,0 39.945,-17.004 39.945,-39.441 0,-21.582 -16.316,-39.438 -39.945,-39.438 -25.328,0 -39.949,17.004 -39.949,39.438"
|
||||||
|
style="fill:#e20571;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
id="path62" /><path
|
||||||
|
d="m 1058.05,362.629 c 0,12.574 -8.16,22.098 -20.23,22.098 -12.24,0 -20.23,-9.688 -20.23,-22.266 0,-12.238 7.99,-21.758 20.23,-21.758 12.07,0 20.23,9.863 20.23,21.926 z m -60.179,0 c 0,21.59 16.149,39.441 39.949,39.441 24.99,0 39.94,-17.004 39.94,-39.441 0,-21.582 -16.31,-39.438 -39.94,-39.438 -25.33,0 -39.949,17.004 -39.949,39.438"
|
||||||
|
style="fill:#e20571;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
id="path64" /><path
|
||||||
|
d="m 1092.91,440.652 h 20.56 V 325.234 h -20.56 v 115.418"
|
||||||
|
style="fill:#e20571;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
id="path66" /><path
|
||||||
|
d="m 1223.45,362.629 c 0,12.574 -8.16,22.098 -20.23,22.098 -12.23,0 -20.23,-9.688 -20.23,-22.266 0,-12.238 8,-21.758 20.23,-21.758 12.07,0 20.23,9.863 20.23,21.926 z m -60.17,0 c 0,21.59 16.14,39.441 39.94,39.441 24.99,0 39.95,-17.004 39.95,-39.441 0,-21.582 -16.32,-39.438 -39.95,-39.438 -25.32,0 -39.94,17.004 -39.94,39.438"
|
||||||
|
style="fill:#e20571;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
id="path68" /><path
|
||||||
|
d="m 1283.8,399.348 h 19.38 V 382.52 h -19.38 v -57.286 h -20.56 v 57.286 h -11.56 v 16.828 h 11.56 v 13.933 c 0,18.02 11.22,28.731 28.21,28.731 10.37,0 18.19,-3.742 23.29,-11.563 l -13.26,-11.554 c -1.69,3.234 -4.41,4.933 -8.33,4.933 -5.94,0 -9.35,-3.918 -9.35,-11.394 v -13.086"
|
||||||
|
style="fill:#e20571;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
id="path70" /><path
|
||||||
|
d="m 1415.89,343.418 v -18.184 h -64.43 v 109.805 h 62.73 v -18.184 h -41.82 v -26.179 h 37.74 v -18.352 h -37.74 v -28.906 h 43.52"
|
||||||
|
style="fill:#e20571;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
id="path72" /><path
|
||||||
|
d="m 1503.78,369.258 v -44.024 h -20.4 v 41.653 c 0,10.535 -5.27,17.5 -15.64,17.5 -10.2,0 -15.98,-7.649 -15.98,-17.676 v -41.477 h -20.56 v 74.114 h 19.03 v -8.332 c 5.1,6.972 12.92,11.054 24.31,11.054 19.55,0 29.24,-13.261 29.24,-32.812"
|
||||||
|
style="fill:#e20571;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
id="path74" /><path
|
||||||
|
d="m 1549.35,358.555 c 7.13,0 11.89,5.605 11.89,12.578 0,6.965 -4.59,12.234 -11.89,12.234 -7.83,0 -12.25,-5.269 -12.25,-12.234 0,-7.317 4.59,-12.578 12.25,-12.578 z m 40.28,24.98 h -13.43 c 2.55,-4.07 4.08,-8.664 4.08,-13.43 0,-8.152 -3.91,-14.96 -11.9,-21.25 l -8.84,-7.468 c -1.53,-1.192 -2.89,-2.215 -4.59,-2.891 h 9.18 c 16.32,0 24.82,-7.988 24.82,-21.418 0,-15.469 -13.94,-26.18 -37.74,-26.18 -18.02,0 -29.75,5.098 -35.86,16.661 l 14.27,10.879 c 4.09,-7.481 10.03,-11.219 21.42,-11.219 12.75,0 19.04,2.886 19.04,8.836 0,4.59 -3.06,6.629 -7.99,6.629 h -27.88 v 12.414 l 10.55,9.004 c -16.32,1.535 -26.86,11.386 -26.86,27.031 0,16.316 12.92,28.215 31.45,28.215 h 40.45 l -0.17,-15.813"
|
||||||
|
style="fill:#e20571;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
id="path76" /><path
|
||||||
|
d="m 1604.09,399.348 h 20.56 v -74.114 h -20.56 z m -3.24,25.664 c 0,7.476 5.96,13.433 13.6,13.433 7.48,0 13.6,-5.957 13.6,-13.433 0,-7.649 -6.12,-13.762 -13.6,-13.762 -7.64,0 -13.6,6.113 -13.6,13.762"
|
||||||
|
style="fill:#e20571;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
id="path78" /><path
|
||||||
|
d="m 1717.47,369.258 v -44.024 h -20.4 v 41.653 c 0,10.535 -5.27,17.5 -15.64,17.5 -10.2,0 -15.98,-7.649 -15.98,-17.676 v -41.477 h -20.56 v 74.114 h 19.04 v -8.332 c 5.09,6.972 12.91,11.054 24.3,11.054 19.55,0 29.24,-13.261 29.24,-32.812"
|
||||||
|
style="fill:#e20571;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
id="path80" /><path
|
||||||
|
d="m 1752.32,371.301 h 33.15 c -1.53,9.344 -6.8,14.785 -15.81,14.785 -8.5,0 -14.96,-4.926 -17.34,-14.785 z m 52.69,-13.938 h -53.2 c 1.53,-10.879 7.99,-17.511 18.53,-17.511 8.5,0 13.43,3.234 16.83,9.867 l 16.15,-6.977 c -5.79,-12.754 -17.85,-19.551 -33.49,-19.551 -21.25,0 -38.08,12.754 -38.08,39.27 0,21.926 15.13,39.609 38.25,39.609 22.27,0 35.53,-15.468 35.53,-38.078 0,-2.383 0,-4.59 -0.52,-6.629"
|
||||||
|
style="fill:#e20571;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
id="path82" /><path
|
||||||
|
d="m 1836.3,371.301 h 33.15 c -1.53,9.344 -6.8,14.785 -15.81,14.785 -8.5,0 -14.96,-4.926 -17.34,-14.785 z m 52.69,-13.938 h -53.2 c 1.53,-10.879 7.99,-17.511 18.53,-17.511 8.5,0 13.43,3.234 16.83,9.867 l 16.14,-6.977 c -5.78,-12.754 -17.84,-19.551 -33.48,-19.551 -21.25,0 -38.08,12.754 -38.08,39.27 0,21.926 15.13,39.609 38.25,39.609 22.27,0 35.53,-15.468 35.53,-38.078 0,-2.383 0,-4.59 -0.52,-6.629"
|
||||||
|
style="fill:#e20571;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
id="path84" /><path
|
||||||
|
d="m 1948.16,401.223 v -20.239 c -13.09,0 -22.95,-7.988 -22.95,-22.429 v -33.321 h -20.57 v 74.114 h 20.06 v -11.223 c 4.76,7.988 12.24,13.098 23.46,13.098"
|
||||||
|
style="fill:#e20571;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
id="path86" /><path
|
||||||
|
d="m 1960.91,399.348 h 20.57 v -74.114 h -20.57 z m -3.23,25.664 c 0,7.476 5.95,13.433 13.6,13.433 7.48,0 13.6,-5.957 13.6,-13.433 0,-7.649 -6.12,-13.762 -13.6,-13.762 -7.65,0 -13.6,6.113 -13.6,13.762"
|
||||||
|
style="fill:#e20571;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
id="path88" /><path
|
||||||
|
d="m 2074.3,369.258 v -44.024 h -20.4 v 41.653 c 0,10.535 -5.27,17.5 -15.64,17.5 -10.2,0 -15.98,-7.649 -15.98,-17.676 v -41.477 h -20.57 v 74.114 h 19.04 v -8.332 c 5.1,6.972 12.92,11.054 24.31,11.054 19.54,0 29.24,-13.261 29.24,-32.812"
|
||||||
|
style="fill:#e20571;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
id="path90" /><path
|
||||||
|
d="m 2119.86,358.555 c 7.14,0 11.9,5.605 11.9,12.578 0,6.965 -4.59,12.234 -11.9,12.234 -7.82,0 -12.24,-5.269 -12.24,-12.234 0,-7.317 4.59,-12.578 12.24,-12.578 z m 40.29,24.98 h -13.43 c 2.55,-4.07 4.08,-8.664 4.08,-13.43 0,-8.152 -3.91,-14.96 -11.9,-21.25 l -8.84,-7.468 c -1.53,-1.192 -2.89,-2.215 -4.59,-2.891 h 9.18 c 16.32,0 24.82,-7.988 24.82,-21.418 0,-15.469 -13.94,-26.18 -37.74,-26.18 -18.02,0 -29.75,5.098 -35.87,16.661 l 14.28,10.879 c 4.08,-7.481 10.03,-11.219 21.42,-11.219 12.75,0 19.04,2.886 19.04,8.836 0,4.59 -3.06,6.629 -7.99,6.629 h -27.88 v 12.414 l 10.54,9.004 c -16.31,1.535 -26.86,11.386 -26.86,27.031 0,16.316 12.92,28.215 31.45,28.215 h 40.46 l -0.17,-15.813"
|
||||||
|
style="fill:#e20571;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
id="path92" /><path
|
||||||
|
d="m 205.422,227.738 c 0,-13.058 10.594,-23.66 23.656,-23.66 h 262.293 c 13.063,0 23.652,10.602 23.652,23.66 V 490.02 c 0,13.07 -10.589,23.66 -23.652,23.66 H 229.078 c -13.062,0 -23.656,-10.59 -23.656,-23.66 V 227.738"
|
||||||
|
style="fill:#e20571;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
id="path94" /><path
|
||||||
|
d="m 377.281,415.207 h -35.75 c -1.777,-20.723 -3.48,-38.348 -5.133,-51.582 -1.664,-13.234 -3.242,-23.305 -4.746,-32.836 -1.605,-9.519 -3.214,-18.203 -4.847,-26.027 -1.364,-6.129 -3.27,-10.867 -5.926,-14.301 -2.59,-3.453 -6.399,-5.848 -11.402,-7.191 -4.18,-1.016 -8.274,-0.192 -12.383,2.472 -4.035,2.68 -6.453,5.879 -7.321,9.598 -0.609,2.754 -0.781,5.094 -0.453,7.012 0.254,1.914 0.825,3.679 1.692,5.332 0.836,1.64 1.746,3.125 2.812,4.496 0.969,1.332 2.063,2.66 3.188,4.011 0.367,0.411 2.144,2.512 5.398,6.317 3.27,3.816 5.676,7.301 7.352,10.453 1.621,3.129 5.203,10.039 6.992,18.637 1.82,8.597 5.488,38.023 5.418,63.609 -2.746,0 -15.043,0 -15.043,0 -4.246,0 -8.383,-1.391 -12.281,-3.426 -3.793,-1.996 -7.149,-5.363 -8.657,-7.285 -1.589,-1.98 -5.683,-8.613 -6.679,-9.887 -0.953,-1.285 -2.899,-4.234 -4.395,-3.781 -1.617,0.516 -1.262,2.324 -1.008,3.781 0.286,1.454 3.215,8.86 5.403,14.43 2.246,5.629 5.23,11.059 9.043,16.313 2.937,4.461 7.004,7.617 12.039,10.816 5.086,3.277 10.929,4.895 17.652,4.895 0,0 107.578,0 109.527,0 1.903,0 12.196,-0.817 12.196,-12.829 0,-11.996 -10.934,-13.027 -12.196,-13.027 -1.281,0 -31.101,0 -31.101,0 -2.602,-24.644 -3.883,-50.078 -3.883,-75.016 0,-4.527 0.754,-8.968 2.316,-13.277 1.567,-4.34 3.469,-7.641 5.731,-9.871 2.926,-2.707 6.426,-4.43 10.617,-5.219 4.223,-0.758 8.457,0.543 12.766,3.934 2.375,1.883 4.094,3.984 5.23,6.324 1.067,2.383 1.75,4.684 2.074,6.82 0.286,2.184 0.77,5.243 0.856,5.981 0.086,0.738 -0.059,3.437 3.012,3.672 3.07,0.234 3.382,-2.485 3.668,-5.442 0.257,-2.965 -1.321,-13.968 -3.793,-20.804 -2.477,-6.879 -5.461,-12.371 -8.86,-16.532 -3.426,-4.207 -6.75,-7.207 -10.035,-9.047 -3.738,-2.265 -8.101,-3.632 -13.019,-4.109 -5.004,-0.461 -9.555,0.699 -13.649,3.469 -6.808,4.976 -12.023,12.746 -15.492,23.34 -2.031,6.199 -3.07,14.351 -3.297,24.511 -0.312,10.153 0.027,20.067 0.965,29.754 l 5.402,51.512"
|
||||||
|
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
id="path96" /></g></g></svg>
|
After Width: | Height: | Size: 23 KiB |
80
04-resources/logos/hei-vs-icon.svg
Normal file
@ -0,0 +1,80 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||||
|
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||||
|
|
||||||
|
<svg
|
||||||
|
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||||
|
xmlns:cc="http://creativecommons.org/ns#"
|
||||||
|
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||||
|
xmlns:svg="http://www.w3.org/2000/svg"
|
||||||
|
xmlns="http://www.w3.org/2000/svg"
|
||||||
|
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||||
|
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||||
|
width="70.555557mm"
|
||||||
|
height="70.553787mm"
|
||||||
|
viewBox="0 0 70.555557 70.553787"
|
||||||
|
version="1.1"
|
||||||
|
id="svg8"
|
||||||
|
inkscape:version="0.92.4 (5da689c313, 2019-01-14)"
|
||||||
|
sodipodi:docname="hei-2.svg">
|
||||||
|
<defs
|
||||||
|
id="defs2" />
|
||||||
|
<sodipodi:namedview
|
||||||
|
id="base"
|
||||||
|
pagecolor="#ffffff"
|
||||||
|
bordercolor="#666666"
|
||||||
|
borderopacity="1.0"
|
||||||
|
inkscape:pageopacity="0.0"
|
||||||
|
inkscape:pageshadow="2"
|
||||||
|
inkscape:zoom="0.35"
|
||||||
|
inkscape:cx="-293.80953"
|
||||||
|
inkscape:cy="61.901392"
|
||||||
|
inkscape:document-units="mm"
|
||||||
|
inkscape:current-layer="layer1"
|
||||||
|
showgrid="false"
|
||||||
|
fit-margin-top="0"
|
||||||
|
fit-margin-left="0"
|
||||||
|
fit-margin-right="0"
|
||||||
|
fit-margin-bottom="0"
|
||||||
|
inkscape:window-width="1920"
|
||||||
|
inkscape:window-height="1017"
|
||||||
|
inkscape:window-x="-8"
|
||||||
|
inkscape:window-y="32"
|
||||||
|
inkscape:window-maximized="1" />
|
||||||
|
<metadata
|
||||||
|
id="metadata5">
|
||||||
|
<rdf:RDF>
|
||||||
|
<cc:Work
|
||||||
|
rdf:about="">
|
||||||
|
<dc:format>image/svg+xml</dc:format>
|
||||||
|
<dc:type
|
||||||
|
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||||
|
<dc:title></dc:title>
|
||||||
|
</cc:Work>
|
||||||
|
</rdf:RDF>
|
||||||
|
</metadata>
|
||||||
|
<g
|
||||||
|
inkscape:label="Layer 1"
|
||||||
|
inkscape:groupmode="layer"
|
||||||
|
id="layer1"
|
||||||
|
transform="translate(-60.728175,-94.65762)">
|
||||||
|
<g
|
||||||
|
transform="matrix(0.35277777,0,0,-0.35277777,60.728175,165.21141)"
|
||||||
|
inkscape:label="ink_ext_XXXXXX"
|
||||||
|
id="g823">
|
||||||
|
<g
|
||||||
|
transform="scale(0.1)"
|
||||||
|
id="g825">
|
||||||
|
<path
|
||||||
|
inkscape:connector-curvature="0"
|
||||||
|
id="path827"
|
||||||
|
style="fill:#e20571;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
d="M 0,152.828 C 0,68.4805 68.3789,0 152.828,0 H 1847.18 C 1931.52,0 2000,68.4805 2000,152.828 V 1847.12 c 0,84.45 -68.48,152.83 -152.82,152.83 H 152.828 C 68.3789,1999.95 0,1931.57 0,1847.12 V 152.828" />
|
||||||
|
<path
|
||||||
|
inkscape:connector-curvature="0"
|
||||||
|
id="path829"
|
||||||
|
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
d="M 1110.14,1363.84 H 879.254 C 867.793,1229.96 856.73,1116.13 846.059,1030.69 835.391,945.238 825.117,880.051 815.445,818.512 804.977,756.988 794.605,700.922 784.137,650.41 c -8.832,-39.601 -21.242,-70.262 -38.309,-92.39 -16.769,-22.329 -41.332,-37.821 -73.637,-46.45 -27.039,-6.539 -53.484,-1.289 -79.984,15.981 -26.098,17.258 -41.68,38.008 -47.387,62.027 -3.82,17.762 -4.961,32.844 -2.828,45.242 1.637,12.321 5.309,23.821 10.867,34.45 5.407,10.609 11.313,20.14 18.211,29.07 6.301,8.531 13.293,17.172 20.539,25.801 2.434,2.781 13.895,16.281 34.934,40.89 21.137,24.707 36.57,47.141 47.437,67.578 10.469,20.141 33.641,64.801 45.254,120.282 11.661,55.569 35.375,245.709 34.93,410.949 h -97.152 c -27.395,0 -54.137,-9.04 -79.34,-22.14 -24.512,-12.9 -46.149,-34.63 -55.875,-47.03 -10.27,-12.81 -36.817,-55.68 -43.219,-63.82 -6.101,-8.33 -18.707,-27.48 -28.328,-24.51 -10.477,3.37 -8.141,15.09 -6.504,24.51 1.836,9.33 20.742,57.26 34.832,93.19 14.543,36.42 33.844,71.45 58.453,105.39 19.004,28.78 45.199,49.22 77.703,69.76 32.946,21.24 70.657,31.76 114.028,31.76 h 707.568 c 12.3,0 78.8,-5.26 78.8,-82.96 0,-77.51 -70.67,-84.15 -78.8,-84.15 h -200.86 c -16.87,-159.18 -25.11,-323.42 -25.11,-484.59 0,-29.27 4.86,-57.949 14.88,-85.75 10.23,-28.07 22.53,-49.41 37.03,-63.711 19.05,-17.457 41.58,-28.668 68.57,-33.738 27.39,-4.86 54.68,3.379 82.57,25.41 15.28,12.211 26.39,25.711 33.74,40.777 6.84,15.403 11.21,30.282 13.4,44.172 1.77,13.988 4.96,33.84 5.45,38.61 0.59,4.75 -0.3,22.128 19.55,23.609 19.85,1.59 21.83,-15.969 23.62,-35.129 1.69,-19.051 -8.54,-90.211 -24.41,-134.371 -15.98,-44.449 -35.34,-79.879 -57.26,-106.777 -22.13,-27.192 -43.57,-46.543 -64.8,-58.442 -24.22,-14.59 -52.31,-23.43 -84.16,-26.512 -32.35,-3.078 -61.72,4.473 -88.12,22.34 -43.96,32.141 -77.71,82.364 -100.04,150.832 -13.19,40 -19.84,92.692 -21.34,158.301 -2.08,65.59 0.21,129.598 6.26,192.209 l 34.84,332.76" />
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 4.3 KiB |
163
04-resources/logos/hei-vs-light.svg
Normal file
@ -0,0 +1,163 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||||
|
<svg
|
||||||
|
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||||
|
xmlns:cc="http://creativecommons.org/ns#"
|
||||||
|
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||||
|
xmlns:svg="http://www.w3.org/2000/svg"
|
||||||
|
xmlns="http://www.w3.org/2000/svg"
|
||||||
|
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||||
|
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||||
|
version="1.1"
|
||||||
|
id="svg2"
|
||||||
|
xml:space="preserve"
|
||||||
|
width="415.74667"
|
||||||
|
height="170.08"
|
||||||
|
viewBox="0 0 415.74667 170.08"
|
||||||
|
sodipodi:docname="EN_HEI.eps"><metadata
|
||||||
|
id="metadata8"><rdf:RDF><cc:Work
|
||||||
|
rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type
|
||||||
|
rdf:resource="http://purl.org/dc/dcmitype/StillImage" /></cc:Work></rdf:RDF></metadata><defs
|
||||||
|
id="defs6" /><sodipodi:namedview
|
||||||
|
pagecolor="#ffffff"
|
||||||
|
bordercolor="#666666"
|
||||||
|
borderopacity="1"
|
||||||
|
objecttolerance="10"
|
||||||
|
gridtolerance="10"
|
||||||
|
guidetolerance="10"
|
||||||
|
inkscape:pageopacity="0"
|
||||||
|
inkscape:pageshadow="2"
|
||||||
|
inkscape:window-width="640"
|
||||||
|
inkscape:window-height="480"
|
||||||
|
id="namedview4" /><g
|
||||||
|
id="g10"
|
||||||
|
inkscape:groupmode="layer"
|
||||||
|
inkscape:label="ink_ext_XXXXXX"
|
||||||
|
transform="matrix(1.3333333,0,0,-1.3333333,0,170.08)"><g
|
||||||
|
id="g12"
|
||||||
|
transform="scale(0.1)"><path
|
||||||
|
d="M 3118.11,0 H 0 V 1275.59 H 3118.11 V 0"
|
||||||
|
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
id="path14" /><path
|
||||||
|
d="M 2044.39,1045.46 C 1889.41,717.031 1893.87,728.125 1889.43,717.035 c -8.53,-17.039 -17.33,-34.683 -39.54,-34.683 -18.32,0 -32.74,15.16 -32.74,34.461 0,10.433 2.22,15.003 9.54,30.14 4.92,10.586 0.32,0.699 148.84,316.957 10.17,21.05 19.95,41.18 42.52,41.18 18.97,0 33.25,-14.35 33.25,-33.32 0,-10.5 -3.31,-18.47 -6.91,-26.31 z m 24.11,26.31 c 0,28.26 -22.21,50.52 -50.45,50.52 -33.39,0 -47.16,-28.48 -57.21,-49.26 4.68,9.98 -0.74,-1.58 -149.31,-317.839 -8.06,-16.75 -11.55,-24.046 -11.55,-38.378 0,-28.954 21.91,-51.637 49.91,-51.637 32.76,0 45.61,25.527 54.97,44.203 l 155.04,328.781 c 4.37,9.36 8.6,19.59 8.6,33.61"
|
||||||
|
style="fill:#231f20;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
id="path16" /><path
|
||||||
|
d="m 2186.48,1045.48 c -154.9,-328.382 -149.26,-320.535 -154.97,-328.398 -8.46,-17.086 -17.26,-34.73 -39.52,-34.73 -18.39,0 -32.72,15.179 -32.72,34.461 0,10.433 2.2,15.003 9.54,30.14 4.85,10.711 0.31,0.699 148.87,316.957 10.18,21.03 19.94,41.18 42.49,41.18 18.95,0 33.36,-14.35 33.36,-33.32 0,-10.5 -3.3,-18.47 -7.05,-26.29 z m -26.31,76.81 c -33.4,0 -47.15,-28.5 -57.21,-49.29 4.77,9.78 -0.76,-1.55 -149.32,-317.809 -8.03,-16.769 -11.56,-24.046 -11.56,-38.378 0,-28.954 21.95,-51.637 49.91,-51.637 32.91,0 45.68,25.527 54.99,44.293 l 155.08,328.691 c 4.2,8.91 8.59,19.59 8.59,33.61 0,28.26 -22.17,50.52 -50.48,50.52"
|
||||||
|
style="fill:#231f20;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
id="path18" /><path
|
||||||
|
d="m 2303.31,925.441 c 2.79,-6.796 6.42,-12.371 15.79,-12.371 9.35,0 12.99,5.575 15.79,12.371 l 46.66,118.679 c 1.04,2.78 1.47,4.9 1.47,7.87 0,8.96 -7.82,15.37 -16.37,15.37 -7.24,0 -11.74,-4.68 -14.49,-10.45 l -33.06,-88.609 -32.98,88.609 c -2.83,5.77 -7.31,10.45 -14.56,10.45 -8.49,0 -16.37,-6.41 -16.37,-15.37 0,-2.97 0.45,-5.09 1.5,-7.87 l 46.62,-118.679"
|
||||||
|
style="fill:#231f20;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
id="path20" /><path
|
||||||
|
d="m 2432.5,1034.13 h 0.38 l 19.85,-61.755 h -40.5 z m -66.89,-107.423 c 0,-8.508 7.22,-14.883 15.75,-14.883 8.7,0 13.14,4.707 15.27,11.293 l 6.44,19.828 h 59.2 l 6.42,-20.039 c 2.15,-6.375 6.63,-11.082 15.56,-11.082 7.94,0 14.69,5.762 14.69,14.039 0,1.52 -0.4,4.477 -1.7,7.918 l -41.77,115.929 c -3.61,10.2 -11.49,17.65 -22.83,17.65 -10.82,0 -19.14,-7.9 -22.75,-17.65 l -42.86,-115.929 c -0.38,-1.054 -1.42,-3.59 -1.42,-7.074"
|
||||||
|
style="fill:#231f20;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
id="path22" /><path
|
||||||
|
d="m 2529.81,914.355 h 53.31 c 9.33,0 14.93,7.032 15.37,14.106 0.19,7.199 -4.52,15.328 -15.37,15.328 h -37.94 v 106.941 c 0,10.66 -6.82,16.63 -16.01,16.63 -9.09,0 -15.98,-5.97 -15.98,-16.63 V 931.84 c 0,-10.664 6.21,-17.485 16.62,-17.485"
|
||||||
|
style="fill:#231f20;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
id="path24" /><path
|
||||||
|
d="m 2672.38,1034.13 h 0.47 l 19.82,-61.755 h -40.53 z m -51.17,-122.306 c 8.74,0 13.25,4.707 15.38,11.293 l 6.4,19.828 h 59.16 l 6.48,-20.039 c 2.14,-6.375 6.61,-11.082 15.52,-11.082 7.89,0 14.74,5.762 14.74,14.039 0,1.52 -0.45,4.477 -1.72,7.918 l -41.75,115.929 c -3.65,10.2 -11.49,17.65 -22.83,17.65 -10.87,0 -19.13,-7.9 -22.78,-17.65 l -42.79,-115.929 c -0.45,-1.054 -1.52,-3.59 -1.52,-7.074 0,-8.508 7.22,-14.883 15.71,-14.883"
|
||||||
|
style="fill:#231f20;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
id="path26" /><path
|
||||||
|
d="m 2785.13,929.727 v 121.003 c 0,10.66 -6.82,16.63 -16.02,16.63 -9.11,0 -15.97,-5.97 -15.97,-16.63 V 929.727 c 0,-10.704 6.86,-16.637 15.97,-16.637 9.2,0 16.02,5.933 16.02,16.637"
|
||||||
|
style="fill:#231f20;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
id="path28" /><path
|
||||||
|
d="m 2855.41,941.273 c -13.83,0 -25.78,8.301 -35.74,8.301 -8.76,0 -14.26,-6.844 -14.26,-15.117 0,-20.016 35.31,-23.879 51.73,-23.879 29.4,0 54.58,18.981 54.58,49.445 0,54.957 -71.2,40.917 -71.2,62.857 0,8.95 8.3,13.85 17.49,13.85 12.77,0 19.55,-6.4 28.29,-6.4 8.78,0 14.33,7.47 14.33,15.73 0,16.85 -29.85,21.3 -41.71,21.3 -28.42,0 -52.89,-18.51 -52.89,-48.32 0,-49.431 71.11,-34.313 71.11,-59.438 0,-10.473 -7.64,-18.329 -21.73,-18.329"
|
||||||
|
style="fill:#231f20;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
id="path30" /><path
|
||||||
|
d="m 2427.76,860.273 c 0,6.821 -5.68,14.059 -15.12,14.059 -10.17,0 -15.05,-5.93 -16.99,-15.367 l -18.1,-90.512 h -0.46 l -27.7,93.32 c -2.35,7.684 -8.79,12.559 -16.58,12.559 -7.89,0 -14.35,-4.875 -16.65,-12.559 l -27.7,-93.32 h -0.43 l -18.13,90.512 c -1.86,9.437 -6.76,15.367 -17.01,15.367 -9.45,0 -15.15,-7.238 -15.15,-14.059 0,-3.019 0.19,-4.476 0.86,-7.265 l 27.05,-116.289 c 2.14,-8.992 9.21,-16.614 21.12,-16.614 10.41,0 18.5,6.797 21.09,15.559 l 24.68,82.172 h 0.46 l 24.71,-82.172 c 2.59,-8.762 10.68,-15.559 21.07,-15.559 11.97,0 19.02,7.622 21.17,16.614 l 26.98,116.289 c 0.66,2.789 0.83,4.246 0.83,7.265"
|
||||||
|
style="fill:#231f20;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
id="path32" /><path
|
||||||
|
d="m 2468.65,780.594 20.37,61.797 h 0.32 l 19.85,-61.797 z m 43.34,77.293 c -3.66,10.301 -11.56,17.734 -22.76,17.734 -10.97,0 -19.25,-7.875 -22.86,-17.734 L 2423.56,742.02 c -0.38,-1.079 -1.48,-3.653 -1.48,-7.032 0,-8.527 7.2,-14.883 15.69,-14.883 8.69,0 13.22,4.645 15.37,11.231 l 6.44,19.805 h 59.17 l 6.44,-19.973 c 2.14,-6.418 6.61,-11.063 15.53,-11.063 7.91,0 14.73,5.743 14.73,14.059 0,1.481 -0.45,4.414 -1.69,7.856 l -41.77,115.867"
|
||||||
|
style="fill:#231f20;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
id="path34" /><path
|
||||||
|
d="m 2639.63,749.559 h -37.94 v 106.933 c 0,10.684 -6.87,16.617 -16.04,16.617 -9.11,0 -15.95,-5.933 -15.95,-16.617 V 737.605 c 0,-10.64 6.23,-17.5 16.66,-17.5 h 53.27 c 9.31,0 14.9,7.051 15.27,14.04 0.29,7.285 -4.42,15.414 -15.27,15.414"
|
||||||
|
style="fill:#231f20;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
id="path36" /><path
|
||||||
|
d="m 2734.63,749.559 h -37.93 v 106.933 c 0,10.684 -6.83,16.617 -16.01,16.617 -9.12,0 -15.93,-5.933 -15.93,-16.617 V 737.605 c 0,-10.64 6.2,-17.5 16.63,-17.5 h 53.24 c 9.36,0 14.89,7.051 15.31,14.04 0.25,7.285 -4.52,15.414 -15.31,15.414"
|
||||||
|
style="fill:#231f20;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
id="path38" /><path
|
||||||
|
d="m 2775.76,874.355 c -9.16,0 -16,-5.933 -16,-16.617 V 736.719 c 0,-10.641 6.84,-16.614 16,-16.614 9.16,0 15.98,5.973 15.98,16.614 v 121.019 c 0,10.684 -6.82,16.617 -15.98,16.617"
|
||||||
|
style="fill:#231f20;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
id="path40" /><path
|
||||||
|
d="m 2840.51,832.402 c 0,8.973 8.3,13.852 17.46,13.852 12.82,0 19.64,-6.379 28.34,-6.379 8.78,0 14.31,7.434 14.31,15.73 0,16.848 -29.83,21.325 -41.8,21.325 -28.31,0 -52.78,-18.535 -52.78,-48.328 0,-49.465 71.1,-34.309 71.1,-59.497 0,-10.406 -7.64,-18.324 -21.68,-18.324 -13.91,0 -25.78,8.321 -35.8,8.321 -8.75,0 -14.29,-6.801 -14.29,-15.122 0,-20.011 35.36,-23.875 51.78,-23.875 29.43,0 54.57,18.981 54.57,49.446 0,54.976 -71.21,40.918 -71.21,62.851"
|
||||||
|
style="fill:#231f20;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
id="path42" /><path
|
||||||
|
d="m 1400.9,874.09 -18.35,5.316 c -31.8,9.102 -52.75,15.407 -52.75,36.063 0,14.98 12.86,25.086 28.15,28.953 7.67,1.937 14.87,2.375 22.02,2.375 33.21,0 53.17,-11.527 65.95,-19.246 l 4.54,1.941 c 1.62,18.301 2.15,20.192 4.16,38.031 l -2.54,3.383 c -9.25,3.375 -35.79,13.453 -73.63,13.453 -57.27,0 -103.27,-24.57 -103.27,-74.171 0,-49.614 46,-63.575 66.98,-69.809 l 16.35,-5.281 c 31.18,-9.676 53.14,-16.871 53.14,-39.012 0,-14.918 -14.77,-36.133 -55.22,-36.133 -39.35,0 -61.87,16.379 -71.09,23.113 l -5.06,-1.484 c -1.03,-19.215 -1.03,-21.629 -3.08,-40.406 l 2.5,-4.371 c 2.58,-0.918 5.17,-1.918 7.73,-2.852 19.41,-7.254 42.37,-12.062 70.03,-12.062 18.43,0 54.71,1.425 81.82,23.101 20.97,15.918 28.64,37.571 28.64,56.848 0,51.082 -46.52,65.988 -67.02,72.25"
|
||||||
|
style="fill:#231f20;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
id="path44" /><path
|
||||||
|
d="m 1696.44,790.746 c -14.82,-26.449 -39.34,-32.25 -58.22,-32.25 -10.3,0 -21.05,1.93 -30.17,6.281 -40.45,19.239 -40.96,67.887 -40.96,87.157 0,20.257 1.54,48.171 15.36,67.902 17.86,26.937 46.56,27.934 56.21,27.934 28.67,0 45.04,-12.5 54.78,-27.43 12.74,-21.223 14.83,-53.5 14.83,-65.52 0.52,-10.136 0,-42.422 -11.83,-64.074 z m -55.2,193.613 c -51.12,0 -80.74,-19.714 -95.12,-33.671 -34.22,-32.247 -35.25,-79.454 -35.25,-97.766 0,-15.926 0.49,-65.016 35.25,-98.25 16.37,-15.961 45.55,-32.324 91.54,-32.324 35.81,0 65.99,8.215 88.43,29.406 16.97,15.894 27.66,34.652 33.25,58.289 3.62,14.426 4.66,30.359 4.66,46.711 -1.04,33.687 -7.66,67.437 -31.19,92.93 -22.54,24.105 -56.78,34.675 -91.57,34.675"
|
||||||
|
style="fill:#231f20;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
id="path46" /><path
|
||||||
|
d="m 1186.39,883.23 c -16.86,0 -30.42,-13.636 -30.42,-30.429 0,-16.805 13.56,-30.414 30.42,-30.414 16.81,0 30.42,13.609 30.42,30.414 0,16.793 -13.61,30.429 -30.42,30.429"
|
||||||
|
style="fill:#231f20;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
id="path48" /><path
|
||||||
|
d="m 516.242,1064.44 -2.531,2.92 c -40.91,-1.44 -47.559,-1.44 -90.496,-1.44 l -2.578,-2.88 c 3.605,-54.45 3.605,-68.388 4.101,-125.224 -22.496,-0.503 -45,-0.984 -68.019,-0.984 -17.903,0 -36.274,0.481 -54.164,0.481 l 1.008,127.127 -2.579,2.92 c -39.351,-1.44 -47.031,-1.44 -91.515,-1.44 l -3.067,-2.88 c 2.575,-49.63 5.676,-108.86 5.676,-228.31 0,-43.347 -1.086,-66.929 -2.07,-107.382 l 2.539,-2.922 c 37.316,1.457 46.531,1.98 91.527,1.457 l 2.555,2.871 c -3.066,59.719 -3.551,77.105 -4.074,146.891 22.48,0.972 41.39,1.472 61.398,1.472 20.375,0 40.82,-0.5 61.309,-1 1.031,-64.996 1.031,-80.859 -1.543,-148.769 l 2.574,-2.922 c 38.355,1.457 48.566,1.98 92.031,1.457 l 2.508,2.871 c -4.074,80.957 -5.574,161.363 -5.574,242.305 0,33.711 0.515,56.371 0.984,93.381"
|
||||||
|
style="fill:#231f20;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
id="path50" /><path
|
||||||
|
d="m 657.781,883.359 c 1.559,14.938 5.129,35.172 24.586,46.746 6.137,3.836 13.305,5.278 20.446,5.278 16.859,0 27.05,-8.141 32.726,-16.852 7.164,-10.586 7.625,-22.129 7.625,-33.242 z m 85.383,99.258 c -12.719,3.332 -24.496,4.328 -36.266,4.328 -80.261,0 -133.468,-49.632 -133.468,-132.953 0,-22.656 4.121,-46.222 12.25,-63.09 29.691,-65.031 99.199,-70.82 136.078,-70.82 42.351,0 60.836,7.289 87.887,17.344 l 3.113,3.894 3.57,54.391 -3.57,1.461 c -19.445,-9.656 -42.524,-20.711 -79.817,-20.711 -30.668,0 -51.613,9.164 -63.918,26.539 -7.66,10.055 -9.179,19.648 -11.242,29.293 l 165.188,2.934 3.078,3.316 c -0.504,23.645 -1.02,47.734 -8.219,71.801 -17.855,56.855 -57.23,68.359 -74.664,72.273"
|
||||||
|
style="fill:#231f20;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
id="path52" /><path
|
||||||
|
d="m 1028.53,883.359 -25.06,8.688 c -17.384,5.773 -31.247,11.094 -31.247,24.543 0,5.793 4.062,21.687 35.847,21.687 31.2,0 51.14,-12.547 63.92,-20.269 l 4.59,1.504 5.1,52.476 -2.56,2.887 c -24.02,6.242 -44.97,12.094 -78.19,12.094 -25.043,0 -75.192,-1.977 -101.774,-38.09 -6.66,-8.672 -13.804,-23.149 -13.804,-42.391 0,-51.566 42.445,-66.961 66.472,-75.59 l 19.391,-6.734 c 13.828,-4.363 36.345,-11.609 36.345,-28.906 0,-12.07 -11.79,-25.047 -40.384,-25.047 -14.321,0 -35.317,4.328 -54.168,13.437 -8.699,4.321 -12.84,7.758 -20.512,13.524 l -4.625,-1.914 c -1.008,-25.047 -1.488,-30.371 -3.523,-54.465 l 2.515,-4.305 c 25.071,-8.687 46.543,-16.383 83.86,-16.383 38.897,0 115.587,6.739 124.747,75.606 0.54,3.887 0.54,7.266 0.54,10.609 0,52.942 -39.33,66.93 -67.48,77.039"
|
||||||
|
style="fill:#231f20;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
id="path54" /><path
|
||||||
|
d="m 648.359,350.73 18.188,6.797 c 3.734,-11.726 10.023,-16.14 21.59,-16.14 10.535,0 17.168,5.437 17.168,14.277 0,8.328 -4.59,12.922 -22.274,17.332 -21.586,5.442 -31.613,15.473 -31.613,33.488 0,18.36 13.426,30.774 35.695,30.774 17.848,0 29.407,-7.485 34.508,-22.61 l -18.016,-7.48 c -2.214,7.988 -7.824,11.895 -17.339,11.895 -9.18,0 -14.961,-4.415 -14.789,-11.387 0.168,-7.988 4.929,-11.563 23.796,-16.66 21.079,-5.782 30.254,-16.145 30.254,-34.676 0,-20.227 -14.957,-33.149 -38.414,-33.149 -21.25,0 -33.828,9.016 -38.754,27.539"
|
||||||
|
style="fill:#e20571;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
id="path56" /><path
|
||||||
|
d="m 737.094,362.805 c 0,24.468 18.019,39.265 39.269,39.265 13.934,0 24.985,-5.105 31.785,-18.015 l -14.789,-9.867 c -3.742,6.796 -9.179,10.199 -16.996,10.199 -10.879,0 -19.55,-7.992 -19.55,-21.582 0,-14.114 8.671,-21.938 19.55,-21.938 9.008,0 13.934,3.399 17.504,10.371 l 14.617,-9.519 c -6.796,-13.426 -19.375,-18.352 -33.312,-18.352 -21.418,0 -38.078,13.43 -38.078,39.438"
|
||||||
|
style="fill:#e20571;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
id="path58" /><path
|
||||||
|
d="M 893.828,368.918 V 325.234 H 873.43 v 41.817 c 0,10.027 -5.442,17.336 -15.641,17.336 -10.023,0 -15.809,-7.649 -15.809,-17.5 v -41.653 h -20.562 v 115.418 h 20.562 v -40.457 l -0.339,-7.824 c 4.929,6.125 12.414,9.699 22.949,9.699 19.547,0 29.238,-13.601 29.238,-33.152"
|
||||||
|
style="fill:#e20571;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
id="path60" /><path
|
||||||
|
d="m 968.113,362.629 c 0,12.574 -8.156,22.098 -20.226,22.098 -12.239,0 -20.231,-9.688 -20.231,-22.266 0,-12.238 7.992,-21.758 20.231,-21.758 12.07,0 20.226,9.863 20.226,21.926 z m -60.175,0 c 0,21.59 16.148,39.441 39.949,39.441 24.988,0 39.945,-17.004 39.945,-39.441 0,-21.582 -16.316,-39.438 -39.945,-39.438 -25.328,0 -39.949,17.004 -39.949,39.438"
|
||||||
|
style="fill:#e20571;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
id="path62" /><path
|
||||||
|
d="m 1058.05,362.629 c 0,12.574 -8.16,22.098 -20.23,22.098 -12.24,0 -20.23,-9.688 -20.23,-22.266 0,-12.238 7.99,-21.758 20.23,-21.758 12.07,0 20.23,9.863 20.23,21.926 z m -60.179,0 c 0,21.59 16.149,39.441 39.949,39.441 24.99,0 39.94,-17.004 39.94,-39.441 0,-21.582 -16.31,-39.438 -39.94,-39.438 -25.33,0 -39.949,17.004 -39.949,39.438"
|
||||||
|
style="fill:#e20571;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
id="path64" /><path
|
||||||
|
d="m 1092.91,440.652 h 20.56 V 325.234 h -20.56 v 115.418"
|
||||||
|
style="fill:#e20571;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
id="path66" /><path
|
||||||
|
d="m 1223.45,362.629 c 0,12.574 -8.16,22.098 -20.23,22.098 -12.23,0 -20.23,-9.688 -20.23,-22.266 0,-12.238 8,-21.758 20.23,-21.758 12.07,0 20.23,9.863 20.23,21.926 z m -60.17,0 c 0,21.59 16.14,39.441 39.94,39.441 24.99,0 39.95,-17.004 39.95,-39.441 0,-21.582 -16.32,-39.438 -39.95,-39.438 -25.32,0 -39.94,17.004 -39.94,39.438"
|
||||||
|
style="fill:#e20571;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
id="path68" /><path
|
||||||
|
d="m 1283.8,399.348 h 19.38 V 382.52 h -19.38 v -57.286 h -20.56 v 57.286 h -11.56 v 16.828 h 11.56 v 13.933 c 0,18.02 11.22,28.731 28.21,28.731 10.37,0 18.19,-3.742 23.29,-11.563 l -13.26,-11.554 c -1.69,3.234 -4.41,4.933 -8.33,4.933 -5.94,0 -9.35,-3.918 -9.35,-11.394 v -13.086"
|
||||||
|
style="fill:#e20571;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
id="path70" /><path
|
||||||
|
d="m 1415.89,343.418 v -18.184 h -64.43 v 109.805 h 62.73 v -18.184 h -41.82 v -26.179 h 37.74 v -18.352 h -37.74 v -28.906 h 43.52"
|
||||||
|
style="fill:#e20571;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
id="path72" /><path
|
||||||
|
d="m 1503.78,369.258 v -44.024 h -20.4 v 41.653 c 0,10.535 -5.27,17.5 -15.64,17.5 -10.2,0 -15.98,-7.649 -15.98,-17.676 v -41.477 h -20.56 v 74.114 h 19.03 v -8.332 c 5.1,6.972 12.92,11.054 24.31,11.054 19.55,0 29.24,-13.261 29.24,-32.812"
|
||||||
|
style="fill:#e20571;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
id="path74" /><path
|
||||||
|
d="m 1549.35,358.555 c 7.13,0 11.89,5.605 11.89,12.578 0,6.965 -4.59,12.234 -11.89,12.234 -7.83,0 -12.25,-5.269 -12.25,-12.234 0,-7.317 4.59,-12.578 12.25,-12.578 z m 40.28,24.98 h -13.43 c 2.55,-4.07 4.08,-8.664 4.08,-13.43 0,-8.152 -3.91,-14.96 -11.9,-21.25 l -8.84,-7.468 c -1.53,-1.192 -2.89,-2.215 -4.59,-2.891 h 9.18 c 16.32,0 24.82,-7.988 24.82,-21.418 0,-15.469 -13.94,-26.18 -37.74,-26.18 -18.02,0 -29.75,5.098 -35.86,16.661 l 14.27,10.879 c 4.09,-7.481 10.03,-11.219 21.42,-11.219 12.75,0 19.04,2.886 19.04,8.836 0,4.59 -3.06,6.629 -7.99,6.629 h -27.88 v 12.414 l 10.55,9.004 c -16.32,1.535 -26.86,11.386 -26.86,27.031 0,16.316 12.92,28.215 31.45,28.215 h 40.45 l -0.17,-15.813"
|
||||||
|
style="fill:#e20571;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
id="path76" /><path
|
||||||
|
d="m 1604.09,399.348 h 20.56 v -74.114 h -20.56 z m -3.24,25.664 c 0,7.476 5.96,13.433 13.6,13.433 7.48,0 13.6,-5.957 13.6,-13.433 0,-7.649 -6.12,-13.762 -13.6,-13.762 -7.64,0 -13.6,6.113 -13.6,13.762"
|
||||||
|
style="fill:#e20571;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
id="path78" /><path
|
||||||
|
d="m 1717.47,369.258 v -44.024 h -20.4 v 41.653 c 0,10.535 -5.27,17.5 -15.64,17.5 -10.2,0 -15.98,-7.649 -15.98,-17.676 v -41.477 h -20.56 v 74.114 h 19.04 v -8.332 c 5.09,6.972 12.91,11.054 24.3,11.054 19.55,0 29.24,-13.261 29.24,-32.812"
|
||||||
|
style="fill:#e20571;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
id="path80" /><path
|
||||||
|
d="m 1752.32,371.301 h 33.15 c -1.53,9.344 -6.8,14.785 -15.81,14.785 -8.5,0 -14.96,-4.926 -17.34,-14.785 z m 52.69,-13.938 h -53.2 c 1.53,-10.879 7.99,-17.511 18.53,-17.511 8.5,0 13.43,3.234 16.83,9.867 l 16.15,-6.977 c -5.79,-12.754 -17.85,-19.551 -33.49,-19.551 -21.25,0 -38.08,12.754 -38.08,39.27 0,21.926 15.13,39.609 38.25,39.609 22.27,0 35.53,-15.468 35.53,-38.078 0,-2.383 0,-4.59 -0.52,-6.629"
|
||||||
|
style="fill:#e20571;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
id="path82" /><path
|
||||||
|
d="m 1836.3,371.301 h 33.15 c -1.53,9.344 -6.8,14.785 -15.81,14.785 -8.5,0 -14.96,-4.926 -17.34,-14.785 z m 52.69,-13.938 h -53.2 c 1.53,-10.879 7.99,-17.511 18.53,-17.511 8.5,0 13.43,3.234 16.83,9.867 l 16.14,-6.977 c -5.78,-12.754 -17.84,-19.551 -33.48,-19.551 -21.25,0 -38.08,12.754 -38.08,39.27 0,21.926 15.13,39.609 38.25,39.609 22.27,0 35.53,-15.468 35.53,-38.078 0,-2.383 0,-4.59 -0.52,-6.629"
|
||||||
|
style="fill:#e20571;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
id="path84" /><path
|
||||||
|
d="m 1948.16,401.223 v -20.239 c -13.09,0 -22.95,-7.988 -22.95,-22.429 v -33.321 h -20.57 v 74.114 h 20.06 v -11.223 c 4.76,7.988 12.24,13.098 23.46,13.098"
|
||||||
|
style="fill:#e20571;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
id="path86" /><path
|
||||||
|
d="m 1960.91,399.348 h 20.57 v -74.114 h -20.57 z m -3.23,25.664 c 0,7.476 5.95,13.433 13.6,13.433 7.48,0 13.6,-5.957 13.6,-13.433 0,-7.649 -6.12,-13.762 -13.6,-13.762 -7.65,0 -13.6,6.113 -13.6,13.762"
|
||||||
|
style="fill:#e20571;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
id="path88" /><path
|
||||||
|
d="m 2074.3,369.258 v -44.024 h -20.4 v 41.653 c 0,10.535 -5.27,17.5 -15.64,17.5 -10.2,0 -15.98,-7.649 -15.98,-17.676 v -41.477 h -20.57 v 74.114 h 19.04 v -8.332 c 5.1,6.972 12.92,11.054 24.31,11.054 19.54,0 29.24,-13.261 29.24,-32.812"
|
||||||
|
style="fill:#e20571;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
id="path90" /><path
|
||||||
|
d="m 2119.86,358.555 c 7.14,0 11.9,5.605 11.9,12.578 0,6.965 -4.59,12.234 -11.9,12.234 -7.82,0 -12.24,-5.269 -12.24,-12.234 0,-7.317 4.59,-12.578 12.24,-12.578 z m 40.29,24.98 h -13.43 c 2.55,-4.07 4.08,-8.664 4.08,-13.43 0,-8.152 -3.91,-14.96 -11.9,-21.25 l -8.84,-7.468 c -1.53,-1.192 -2.89,-2.215 -4.59,-2.891 h 9.18 c 16.32,0 24.82,-7.988 24.82,-21.418 0,-15.469 -13.94,-26.18 -37.74,-26.18 -18.02,0 -29.75,5.098 -35.87,16.661 l 14.28,10.879 c 4.08,-7.481 10.03,-11.219 21.42,-11.219 12.75,0 19.04,2.886 19.04,8.836 0,4.59 -3.06,6.629 -7.99,6.629 h -27.88 v 12.414 l 10.54,9.004 c -16.31,1.535 -26.86,11.386 -26.86,27.031 0,16.316 12.92,28.215 31.45,28.215 h 40.46 l -0.17,-15.813"
|
||||||
|
style="fill:#e20571;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
id="path92" /><path
|
||||||
|
d="m 205.422,227.738 c 0,-13.058 10.594,-23.66 23.656,-23.66 h 262.293 c 13.063,0 23.652,10.602 23.652,23.66 V 490.02 c 0,13.07 -10.589,23.66 -23.652,23.66 H 229.078 c -13.062,0 -23.656,-10.59 -23.656,-23.66 V 227.738"
|
||||||
|
style="fill:#e20571;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
id="path94" /><path
|
||||||
|
d="m 377.281,415.207 h -35.75 c -1.777,-20.723 -3.48,-38.348 -5.133,-51.582 -1.664,-13.234 -3.242,-23.305 -4.746,-32.836 -1.605,-9.519 -3.214,-18.203 -4.847,-26.027 -1.364,-6.129 -3.27,-10.867 -5.926,-14.301 -2.59,-3.453 -6.399,-5.848 -11.402,-7.191 -4.18,-1.016 -8.274,-0.192 -12.383,2.472 -4.035,2.68 -6.453,5.879 -7.321,9.598 -0.609,2.754 -0.781,5.094 -0.453,7.012 0.254,1.914 0.825,3.679 1.692,5.332 0.836,1.64 1.746,3.125 2.812,4.496 0.969,1.332 2.063,2.66 3.188,4.011 0.367,0.411 2.144,2.512 5.398,6.317 3.27,3.816 5.676,7.301 7.352,10.453 1.621,3.129 5.203,10.039 6.992,18.637 1.82,8.597 5.488,38.023 5.418,63.609 -2.746,0 -15.043,0 -15.043,0 -4.246,0 -8.383,-1.391 -12.281,-3.426 -3.793,-1.996 -7.149,-5.363 -8.657,-7.285 -1.589,-1.98 -5.683,-8.613 -6.679,-9.887 -0.953,-1.285 -2.899,-4.234 -4.395,-3.781 -1.617,0.516 -1.262,2.324 -1.008,3.781 0.286,1.454 3.215,8.86 5.403,14.43 2.246,5.629 5.23,11.059 9.043,16.313 2.937,4.461 7.004,7.617 12.039,10.816 5.086,3.277 10.929,4.895 17.652,4.895 0,0 107.578,0 109.527,0 1.903,0 12.196,-0.817 12.196,-12.829 0,-11.996 -10.934,-13.027 -12.196,-13.027 -1.281,0 -31.101,0 -31.101,0 -2.602,-24.644 -3.883,-50.078 -3.883,-75.016 0,-4.527 0.754,-8.968 2.316,-13.277 1.567,-4.34 3.469,-7.641 5.731,-9.871 2.926,-2.707 6.426,-4.43 10.617,-5.219 4.223,-0.758 8.457,0.543 12.766,3.934 2.375,1.883 4.094,3.984 5.23,6.324 1.067,2.383 1.75,4.684 2.074,6.82 0.286,2.184 0.77,5.243 0.856,5.981 0.086,0.738 -0.059,3.437 3.012,3.672 3.07,0.234 3.382,-2.485 3.668,-5.442 0.257,-2.965 -1.321,-13.968 -3.793,-20.804 -2.477,-6.879 -5.461,-12.371 -8.86,-16.532 -3.426,-4.207 -6.75,-7.207 -10.035,-9.047 -3.738,-2.265 -8.101,-3.632 -13.019,-4.109 -5.004,-0.461 -9.555,0.699 -13.649,3.469 -6.808,4.976 -12.023,12.746 -15.492,23.34 -2.031,6.199 -3.07,14.351 -3.297,24.511 -0.312,10.153 0.027,20.067 0.965,29.754 l 5.402,51.512"
|
||||||
|
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
id="path96" /></g></g></svg>
|
After Width: | Height: | Size: 23 KiB |
390
04-resources/logos/hesso-logo.svg
Normal file
@ -0,0 +1,390 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||||
|
<svg
|
||||||
|
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||||
|
xmlns:cc="http://creativecommons.org/ns#"
|
||||||
|
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||||
|
xmlns:svg="http://www.w3.org/2000/svg"
|
||||||
|
xmlns="http://www.w3.org/2000/svg"
|
||||||
|
viewBox="0 0 270.79999 138.8"
|
||||||
|
height="138.8"
|
||||||
|
width="270.79999"
|
||||||
|
xml:space="preserve"
|
||||||
|
version="1.1"
|
||||||
|
id="svg2"><metadata
|
||||||
|
id="metadata8"><rdf:RDF><cc:Work
|
||||||
|
rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type
|
||||||
|
rdf:resource="http://purl.org/dc/dcmitype/StillImage" /></cc:Work></rdf:RDF></metadata><defs
|
||||||
|
id="defs6" /><g
|
||||||
|
transform="matrix(1.25,0,0,-1.25,0,138.8)"
|
||||||
|
id="g10"><g
|
||||||
|
transform="scale(0.1,0.1)"
|
||||||
|
id="g12"><path
|
||||||
|
id="path14"
|
||||||
|
style="fill:#aa9f93;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
d="m 957.816,609.5 c -5.812,0 -6.246,0 -12.39,-0.312 l -0.653,0.722 c 0.325,11.574 0.653,24.067 0.543,34.711 -2.523,0 -5.265,0.106 -10.312,0.106 -8.555,0 -17.992,-0.106 -25.547,-0.211 -0.117,-19.625 0.215,-26.547 0.758,-34.297 l -0.543,-0.719 c -6.035,0 -6.359,0 -12.391,-0.312 l -0.66,0.722 c 0.434,10.129 0.543,15.395 0.543,46.695 0,13.942 -0.324,18.907 -0.648,25.11 l 0.648,0.715 c 5.606,0.109 6.914,0.109 12.176,0.308 l 0.555,-0.718 c -0.11,-6.098 -0.329,-14.571 -0.329,-28.719 5.7,-0.11 8.77,-0.211 15.903,-0.211 10.082,0 14.691,0.101 19.847,0.316 -0.218,19.625 -0.218,21.895 -0.773,28.309 l 0.555,0.715 c 5.918,0.109 6.797,0.109 12.168,0.308 l 0.55,-0.718 c -0.332,-10.024 -0.437,-16.532 -0.437,-34.602 0,-20.051 0.437,-27.691 1.098,-37.199 l -0.661,-0.719" /><path
|
||||||
|
id="path16"
|
||||||
|
style="fill:#aa9f93;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
d="m 1020.65,641.004 c 0,4.336 0,10.019 -0.76,12.918 -2.3,8.055 -10.2,10.633 -18.31,10.633 -6.475,0 -12.834,-1.34 -18.982,-3.403 l -0.649,-0.621 c -0.109,-2.168 -0.109,-2.789 -0.332,-7.539 l 0.871,-0.512 c 4.617,1.856 9.547,3.915 16.676,3.915 5.476,0 8.006,-1.961 9.106,-3.825 0.99,-1.652 0.99,-3.605 0.99,-6.398 l -1.88,-0.211 c -19.735,-2.168 -32.013,-6.613 -32.013,-20.453 0,-10.227 7.68,-17.246 18.641,-17.246 8.332,0 13.272,3.715 15.362,5.261 l -0.11,-3.714 0.43,-0.621 c 5.05,0.207 5.93,0.312 11.07,0.406 l 0.56,0.527 c -0.56,6.719 -0.67,7.848 -0.67,20.652 l 0,10.231 z m -11.28,-2.481 0,-17.25 c -1.21,-1.031 -5.16,-4.543 -11.964,-4.543 -10.414,0 -10.414,8.879 -10.414,9.399 0,9.195 10.309,10.637 21.378,12.191 l 1,0.203" /><path
|
||||||
|
id="path18"
|
||||||
|
style="fill:#aa9f93;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
d="m 1089.31,662.898 c -0.22,-7.839 -0.33,-15.171 -0.33,-23.55 0,-12.7 0.33,-20.34 0.56,-24.785 0,-1.454 0.1,-2.895 0.21,-4.344 l -0.44,-0.625 c -5.26,-0.094 -6.14,-0.199 -11.18,-0.406 l -0.66,0.621 0.11,4.336 c -2.41,-1.653 -8.23,-5.883 -17.22,-5.883 -4.28,0 -8.99,0.926 -12.5,3.515 -7.02,5.364 -7.02,14.149 -7.13,22.2 l 0,6.414 c -0.22,14.769 -0.22,16.425 -0.55,21.996 l 0.55,0.726 c 5.15,0.102 6.14,0.102 11.29,0.516 l 0.67,-0.731 -0.45,-22.617 c 0,-2.789 -0.11,-4.859 0,-9.808 0.11,-4.344 0.34,-13.633 11.41,-13.633 6.47,0 11.08,3.402 13.71,5.367 0.11,5.578 0.11,10.332 0.11,16.316 0,14.368 -0.11,17.258 -0.77,23.977 l 0.66,0.715 c 5.05,0.105 6.24,0.105 11.29,0.414 l 0.66,-0.731" /><path
|
||||||
|
id="path20"
|
||||||
|
style="fill:#aa9f93;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
d="m 1134.82,617.66 c -0.32,-3.406 -0.32,-4.137 -0.43,-7.129 l -0.55,-0.621 c -2.3,-0.515 -4.17,-0.926 -8.23,-0.926 -2.63,0 -9.54,0 -12.93,5.36 -1.98,3.008 -1.98,5.484 -1.98,17.668 l 0.22,22.726 c -3.84,0 -3.95,-0.09 -7.9,-0.199 l -0.43,0.621 c 0.21,3.305 0.21,4.133 0.21,7.438 l 0.65,0.617 c 2.42,0 3.84,-0.102 7.47,0 -0.11,2.176 -0.11,4.441 -0.11,6.613 -0.11,1.969 -0.22,3.926 -0.33,5.895 l 0.55,0.715 c 4.93,1.14 6.14,1.445 11.19,2.886 l 0.76,-0.508 c -0.33,-6.82 -0.44,-8.16 -0.44,-15.703 4.61,0.102 5.92,0.102 12.17,0.313 l 0.56,-0.621 c -0.23,-2.684 -0.34,-3.821 -0.34,-7.336 l -0.54,-0.621 c -5.48,0.105 -6.15,0.211 -11.95,0.211 l -0.22,-19.223 c 0.11,-1.238 0.11,-7.121 0.11,-8.578 0,-7.531 0.98,-9.906 6.47,-9.906 2.3,0 4.06,0.507 5.26,0.929 l 0.76,-0.621" /><path
|
||||||
|
id="path22"
|
||||||
|
style="fill:#aa9f93;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
d="m 1193.61,622.617 c -1.43,-1.133 -3.84,-3 -7.9,-4.543 -3.06,-1.035 -6.36,-1.551 -9.53,-1.551 -3.41,0 -9.67,0.516 -14.15,5.579 -3.74,4.226 -4.06,9.296 -4.17,12.91 17.97,0.105 20.95,0.105 38.06,0 l 0.75,0.621 c 0.11,4.547 0.35,14.769 -5.91,21.801 -3.3,3.718 -9.32,7.121 -17.99,7.121 -14.37,0 -26.65,-9.395 -26.65,-28.61 0,-17.976 11.29,-27.683 29.28,-27.683 9.76,0 15.68,2.988 17.56,3.914 l 0.65,0.726 c 0.22,4.032 0.33,5.067 0.87,9.2 l -0.87,0.515 z m -8.22,20.356 c -10.1,-0.11 -14.26,-0.215 -27.53,-0.11 1.1,10.328 8.33,14.258 14.47,14.258 4.93,0 9.76,-2.383 11.96,-8.055 0.87,-2.378 0.99,-4.652 1.1,-6.093" /><path
|
||||||
|
id="path24"
|
||||||
|
style="fill:#aa9f93;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
d="m 1298.24,617.969 c -0.34,-3.516 -0.34,-4.235 -0.56,-7.75 l -0.77,-0.719 c -21.37,0 -24.77,-0.105 -45.61,-0.312 l -0.56,0.722 c 0.34,8.164 0.67,13.742 0.67,32.649 0,17.351 0,27.269 -0.78,39.156 l 0.67,0.715 c 21.6,0.109 25.88,0.109 46.06,0.308 l 0.66,-0.718 c -0.34,-3.106 -0.55,-4.34 -0.77,-8.055 l -0.65,-0.723 c -14.15,0.403 -18.88,0.403 -32.79,0.512 -0.34,-9.508 -0.34,-12.504 -0.34,-22 13.5,-0.109 17.66,0 31.04,0.199 l 0.54,-0.715 c -0.43,-3.621 -0.43,-4.656 -0.54,-7.965 l -0.67,-0.714 c -12.71,0.304 -15.47,0.304 -30.37,0.304 -0.22,-11.98 -0.11,-14.875 0,-24.691 16.56,0 19.95,0 34.1,0.519 l 0.67,-0.722" /><path
|
||||||
|
id="path26"
|
||||||
|
style="fill:#aa9f93;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
d="m 1355.93,621.797 c -0.45,-4.445 -0.56,-4.957 -0.89,-9.199 l -0.77,-0.731 c -3.17,-1.437 -7.44,-3.515 -15.12,-3.515 -16.57,0 -27.31,11.265 -27.31,27.39 0,16.414 10.52,28.813 27.52,28.813 7.12,0 12.17,-2.168 15.02,-3.305 l 0.43,-0.719 c -0.43,-3.715 -0.54,-5.062 -0.76,-8.16 l -0.88,-0.418 c -3.6,2.481 -7.77,4.027 -12.17,4.027 -9.1,0 -17.1,-6.605 -17.1,-19.828 0,-14.05 8.45,-19.113 16.99,-19.113 7.47,0 12.06,3.613 14.15,5.168 l 0.89,-0.41" /><path
|
||||||
|
id="path28"
|
||||||
|
style="fill:#aa9f93;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
d="m 1421.28,637.18 c -0.22,7.234 -1.66,14.465 -6.69,19.941 -4.81,5.168 -12.18,7.434 -19.63,7.434 -10.96,0 -17.32,-4.223 -20.39,-7.231 -7.35,-6.922 -7.57,-17.043 -7.57,-20.969 0,-3.406 0.1,-13.945 7.57,-21.074 3.5,-3.414 9.75,-6.929 19.63,-6.929 7.67,0 14.15,1.769 18.97,6.308 3.62,3.414 5.93,7.442 7.12,12.508 0.77,3.094 0.99,6.504 0.99,10.012 z m -11.95,-0.414 c 0.1,-2.168 0,-9.09 -2.53,-13.735 -3.17,-5.679 -8.45,-6.918 -12.51,-6.918 -2.18,0 -4.49,0.41 -6.45,1.336 -8.67,4.141 -8.78,14.563 -8.78,18.703 0,4.344 0.34,10.336 3.28,14.563 3.84,5.789 9.99,5.992 12.08,5.992 6.13,0 9.64,-2.684 11.73,-5.883 2.74,-4.554 3.18,-11.476 3.18,-14.058" /><path
|
||||||
|
id="path30"
|
||||||
|
style="fill:#aa9f93;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
d="m 1450.56,609.594 c -5.27,-0.094 -6.35,-0.199 -11.52,-0.406 l -0.54,0.722 c 0.23,7.328 0.54,16.637 0.54,36.473 0,14.254 0,29.539 -1.09,42.762 l 0.55,0.625 c 5.37,0.82 6.49,1.031 11.96,2.168 l 0.65,-0.719 c -0.77,-13.539 -0.77,-27.172 -0.77,-40.707 0,-22.629 0.32,-30.473 0.88,-40.293 l -0.66,-0.625" /><path
|
||||||
|
id="path32"
|
||||||
|
style="fill:#aa9f93;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
d="m 1515.71,622.617 c -1.43,-1.133 -3.84,-3 -7.9,-4.543 -3.06,-1.035 -6.36,-1.551 -9.53,-1.551 -3.41,0 -9.65,0.516 -14.16,5.579 -3.73,4.226 -4.05,9.296 -4.16,12.91 17.97,0.105 20.95,0.105 38.05,0 l 0.76,0.621 c 0.13,4.547 0.33,14.769 -5.91,21.801 -3.3,3.718 -9.32,7.121 -17.99,7.121 -14.37,0 -26.65,-9.395 -26.65,-28.61 0,-17.976 11.29,-27.683 29.28,-27.683 9.77,0 15.68,2.988 17.54,3.914 l 0.67,0.726 c 0.21,4.032 0.34,5.067 0.86,9.2 l -0.86,0.515 z m -8.24,20.356 c -10.08,-0.11 -14.24,-0.215 -27.51,-0.11 1.08,10.328 8.33,14.258 14.47,14.258 4.93,0 9.76,-2.383 11.96,-8.055 0.88,-2.378 0.99,-4.652 1.08,-6.093" /><path
|
||||||
|
id="path34"
|
||||||
|
style="fill:#aa9f93;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
d="m 1601.14,650.824 c 8,-3.316 18.65,-7.652 18.65,-20.875 0,-11.57 -9.12,-21.996 -28.2,-21.996 -11.63,0 -19.08,3.297 -21.71,4.539 l -0.44,0.723 c 0.44,3.625 0.55,5.582 0.87,9.508 l 1.11,0.41 c 2.75,-1.758 9.1,-6.094 19.3,-6.094 11.3,0 16.03,5.473 16.03,11.676 0,7.23 -6.39,10.015 -13.51,12.601 l -5.48,2.278 c -7.8,3.406 -18.2,7.851 -18.2,20.453 0,3.824 1.09,7.75 3.39,10.848 5.05,6.82 14.15,9.093 23.04,9.093 8.67,0 13.91,-1.558 19.73,-3.316 l 0.56,-0.82 c -0.45,-3.93 -0.56,-5.372 -0.88,-9.094 l -0.88,-0.414 c -4.71,2.277 -9.86,4.758 -18.08,4.758 -9.11,0 -14.82,-4.028 -14.82,-10.129 0,-4.641 3.29,-6.809 5.59,-8.157 1.42,-0.836 1.85,-1.035 8.45,-3.726 l 5.48,-2.266" /><path
|
||||||
|
id="path36"
|
||||||
|
style="fill:#aa9f93;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
d="m 1648.73,663.32 -0.77,0.614 c -4.92,-0.926 -6.13,-1.235 -11.5,-2.055 l -0.56,-0.629 c 1.33,-11.773 1.33,-19.004 1.42,-35.012 0,-6.101 0.11,-12.195 0.11,-18.285 0,-10.547 -0.2,-17.047 -0.43,-23.351 l 0.56,-0.618 c 3.82,0.102 7.67,0.204 11.5,0.313 l 0.67,0.621 c -0.56,9.703 -0.77,12.391 -0.87,24.781 1.53,-0.105 2.85,-0.199 4.92,-0.199 23.13,0 34.43,13.73 34.43,29.742 0,14.571 -9.75,25.313 -23.69,25.313 -8.54,0 -13.81,-3.918 -16,-5.571 l 0.21,4.336 z m 0,-45.871 c -0.11,5.992 -0.21,12.086 -0.21,18.184 0,5.265 0.1,10.539 0.21,15.91 2.53,1.648 6.69,4.344 12.62,4.344 8.78,0 14.8,-6.621 14.8,-17.364 0,-12.703 -8.34,-21.382 -22.8,-21.382 -1.88,0 -3.19,0.211 -4.62,0.308" /><path
|
||||||
|
id="path38"
|
||||||
|
style="fill:#aa9f93;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
d="m 1750.3,622.617 c -1.44,-1.133 -3.84,-3 -7.91,-4.543 -3.06,-1.035 -6.35,-1.551 -9.54,-1.551 -3.39,0 -9.65,0.516 -14.14,5.579 -3.74,4.226 -4.05,9.296 -4.18,12.91 18,0.105 20.95,0.105 38.06,0 l 0.78,0.621 c 0.09,4.547 0.32,14.769 -5.94,21.801 -3.28,3.718 -9.3,7.121 -17.97,7.121 -14.37,0 -26.66,-9.395 -26.66,-28.61 0,-17.976 11.3,-27.683 29.29,-27.683 9.76,0 15.68,2.988 17.54,3.914 l 0.67,0.726 c 0.22,4.032 0.33,5.067 0.86,9.2 l -0.86,0.515 z m -8.78,63.539 c -2.09,-0.113 -4.17,-0.113 -6.26,-0.113 -2.09,0 -4.05,0 -6.46,0.113 l -0.67,-0.527 c -2.4,-6.715 -5.59,-13.316 -6.69,-15.801 l 0.44,-0.719 c 3.85,0 5.05,0 8.01,-0.113 l 0.76,0.422 c 4.95,7.539 5.93,8.98 11.3,15.898 l -0.43,0.84 z m 0.54,-43.183 c -10.08,-0.11 -14.24,-0.215 -27.53,-0.11 1.1,10.328 8.35,14.258 14.49,14.258 4.93,0 9.76,-2.383 11.95,-8.055 0.88,-2.378 0.98,-4.652 1.09,-6.093" /><path
|
||||||
|
id="path40"
|
||||||
|
style="fill:#aa9f93;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
d="m 1811.27,621.797 c -0.45,-4.445 -0.54,-4.957 -0.88,-9.199 l -0.76,-0.731 c -3.19,-1.437 -7.46,-3.515 -15.15,-3.515 -16.56,0 -27.3,11.265 -27.3,27.39 0,16.414 10.53,28.813 27.53,28.813 7.14,0 12.17,-2.168 15.01,-3.305 l 0.45,-0.719 c -0.45,-3.715 -0.54,-5.062 -0.76,-8.16 l -0.88,-0.418 c -3.63,2.481 -7.79,4.027 -12.17,4.027 -9.1,0 -17.11,-6.605 -17.11,-19.828 0,-14.05 8.44,-19.113 17,-19.113 7.45,0 12.05,3.613 14.14,5.168 l 0.88,-0.41" /><path
|
||||||
|
id="path42"
|
||||||
|
style="fill:#aa9f93;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
d="m 1837.37,678.305 c -5.6,-0.215 -6.81,-0.309 -12.16,-0.836 l -0.67,0.621 c 0.11,1.344 0.11,2.793 0.11,4.129 0,1.863 -0.11,3.515 -0.22,5.594 l 0.78,0.609 c 5.69,0.41 6.68,0.516 12.16,1.031 l 0.66,-0.621 c -0.11,-4.234 -0.11,-5.266 0,-9.809 l -0.66,-0.718 z m -0.12,-68.711 c -5.7,-0.094 -6.57,-0.094 -11.94,-0.406 l -0.55,0.722 c 0.32,5.473 0.66,10.227 0.66,21.692 0,19.73 -0.34,23.457 -1.09,29.55 l 0.53,0.727 c 4.71,0.719 6.37,0.926 11.85,2.055 l 1.09,-0.614 c -0.32,-5.379 -0.66,-10.949 -0.66,-24.277 0,-19.215 0.23,-21.805 0.66,-28.824 l -0.55,-0.625" /><path
|
||||||
|
id="path44"
|
||||||
|
style="fill:#aa9f93;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
d="m 1899.44,641.004 c 0,4.336 0,10.019 -0.77,12.918 -2.29,8.055 -10.2,10.633 -18.32,10.633 -6.47,0 -12.82,-1.34 -18.96,-3.403 l -0.67,-0.621 c -0.1,-2.168 -0.1,-2.789 -0.31,-7.539 l 0.87,-0.512 c 4.61,1.856 9.53,3.915 16.67,3.915 5.49,0 8.01,-1.961 9.09,-3.825 0.99,-1.652 0.99,-3.605 0.99,-6.398 l -1.86,-0.211 c -19.73,-2.168 -32.01,-6.613 -32.01,-20.453 0,-10.227 7.68,-17.246 18.63,-17.246 8.33,0 13.27,3.715 15.36,5.261 l -0.12,-3.714 0.44,-0.621 c 5.05,0.207 5.94,0.312 11.08,0.406 l 0.54,0.527 c -0.54,6.719 -0.65,7.848 -0.65,20.652 l 0,10.231 z m -11.29,-2.481 0,-17.25 c -1.22,-1.031 -5.16,-4.543 -11.96,-4.543 -10.42,0 -10.42,8.879 -10.42,9.399 0,9.195 10.31,10.637 21.4,12.191 l 0.98,0.203" /><path
|
||||||
|
id="path46"
|
||||||
|
style="fill:#aa9f93;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
d="m 1931.47,609.594 c -5.26,-0.094 -6.37,-0.199 -11.51,-0.406 l -0.56,0.722 c 0.22,7.328 0.56,16.637 0.56,36.473 0,14.254 0,29.539 -1.12,42.762 l 0.56,0.625 c 5.39,0.82 6.47,1.031 11.95,2.168 l 0.65,-0.719 c -0.76,-13.539 -0.76,-27.172 -0.76,-40.707 0,-22.629 0.33,-30.473 0.89,-40.293 l -0.66,-0.625" /><path
|
||||||
|
id="path48"
|
||||||
|
style="fill:#aa9f93;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
d="m 1964.14,678.305 c -5.59,-0.215 -6.78,-0.309 -12.17,-0.836 l -0.66,0.621 c 0.11,1.344 0.11,2.793 0.11,4.129 0,1.863 -0.11,3.515 -0.2,5.594 l 0.75,0.609 c 5.71,0.41 6.69,0.516 12.17,1.031 l 0.67,-0.621 c -0.11,-4.234 -0.11,-5.266 0,-9.809 l -0.67,-0.718 z m -0.11,-68.711 c -5.69,-0.094 -6.58,-0.094 -11.95,-0.406 l -0.54,0.722 c 0.33,5.473 0.65,10.227 0.65,21.692 0,19.73 -0.32,23.457 -1.09,29.55 l 0.55,0.727 c 4.71,0.719 6.37,0.926 11.85,2.055 l 1.08,-0.614 c -0.31,-5.379 -0.65,-10.949 -0.65,-24.277 0,-19.215 0.21,-21.805 0.65,-28.824 l -0.55,-0.625" /><path
|
||||||
|
id="path50"
|
||||||
|
style="fill:#aa9f93;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
d="m 2007.46,640.898 c 4.41,-1.339 14.38,-4.543 14.38,-15.488 0,-4.137 -1.64,-8.789 -6.14,-12.195 -5.82,-4.641 -13.61,-4.953 -17.56,-4.953 -5.91,0 -10.85,1.031 -15.01,2.586 -0.56,0.199 -1.11,0.402 -1.65,0.613 l -0.55,0.926 c 0.43,4.035 0.43,4.547 0.66,8.676 l 1.11,0.312 c 1.96,-1.441 6.77,-4.953 15.23,-4.953 8.67,0 11.85,4.543 11.85,7.742 0,4.75 -4.71,6.309 -11.42,8.375 l -3.5,1.133 c -4.51,1.34 -14.36,4.332 -14.36,14.984 0,10.637 9.85,15.899 22.14,15.899 8.1,0 13.82,-2.168 15.79,-2.895 l 0.55,-0.719 c -0.44,-3.82 -0.55,-4.234 -0.86,-8.16 l -0.99,-0.41 c -2.76,1.652 -7.03,4.133 -14.15,4.133 -1.53,0 -3.07,-0.109 -4.73,-0.524 -3.3,-0.82 -6.02,-2.988 -6.02,-6.195 0,-4.445 4.49,-5.793 11.31,-7.75 l 3.92,-1.137" /><path
|
||||||
|
id="path52"
|
||||||
|
style="fill:#aa9f93;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
d="m 2081.83,622.617 c -1.43,-1.133 -3.84,-3 -7.89,-4.543 -3.07,-1.035 -6.37,-1.551 -9.55,-1.551 -3.4,0 -9.64,0.516 -14.17,5.579 -3.71,4.226 -4.05,9.296 -4.15,12.91 17.98,0.105 20.94,0.105 38.06,0 l 0.76,0.621 c 0.11,4.547 0.34,14.769 -5.92,21.801 -3.29,3.718 -9.33,7.121 -17.98,7.121 -14.36,0 -26.64,-9.395 -26.64,-28.61 0,-17.976 11.29,-27.683 29.27,-27.683 9.77,0 15.69,2.988 17.56,3.914 l 0.65,0.726 c 0.21,4.032 0.32,5.067 0.88,9.2 l -0.88,0.515 z m -8.78,63.539 c -2.07,-0.113 -4.16,-0.113 -6.25,-0.113 -2.08,0 -4.07,0 -6.46,0.113 l -0.67,-0.527 c -2.41,-6.715 -5.59,-13.316 -6.69,-15.801 l 0.44,-0.719 c 3.84,0 5.05,0 8,-0.113 l 0.78,0.422 c 4.94,7.539 5.91,8.98 11.3,15.898 l -0.45,0.84 z m 0.54,-43.183 c -10.08,-0.11 -14.24,-0.215 -27.52,-0.11 1.11,10.328 8.33,14.258 14.47,14.258 4.94,0 9.76,-2.383 11.97,-8.055 0.88,-2.378 0.99,-4.652 1.08,-6.093" /><path
|
||||||
|
id="path54"
|
||||||
|
style="fill:#aa9f93;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
d="m 2146.2,622.617 c -1.42,-1.133 -3.84,-3 -7.89,-4.543 -3.09,-1.035 -6.37,-1.551 -9.54,-1.551 -3.41,0 -9.65,0.516 -14.15,5.579 -3.73,4.226 -4.05,9.296 -4.16,12.91 17.97,0.105 20.95,0.105 38.05,0 l 0.76,0.621 c 0.11,4.547 0.34,14.769 -5.92,21.801 -3.29,3.718 -9.34,7.121 -17.99,7.121 -14.36,0 -26.64,-9.395 -26.64,-28.61 0,-17.976 11.3,-27.683 29.28,-27.683 9.76,0 15.68,2.988 17.56,3.914 l 0.64,0.726 c 0.22,4.032 0.33,5.067 0.89,9.2 l -0.89,0.515 z m -8.22,20.356 c -10.09,-0.11 -14.26,-0.215 -27.52,-0.11 1.09,10.328 8.32,14.258 14.45,14.258 4.96,0 9.78,-2.383 11.97,-8.055 0.88,-2.378 0.99,-4.652 1.1,-6.093" /><path
|
||||||
|
id="path56"
|
||||||
|
style="fill:#aa9f93;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
d="m 1047.53,565.758 c 0.54,-5.992 1.1,-12.195 0.99,-25 -2.97,0.203 -4.06,0.203 -6.36,0.203 -5.7,0 -16.12,-0.313 -24.14,-7.125 -4.6,-3.824 -9.65,-10.953 -9.65,-22.215 0,-15.699 10.09,-26.555 24.69,-26.555 8,0 12.49,3.313 15.12,5.172 l -0.22,-3.824 0.78,-0.617 c 5.04,0.207 6.35,0.305 11.18,0.305 l 0.55,0.726 c -0.45,7.125 -0.88,14.774 -0.88,30.781 0,10.329 0.11,35.954 0.88,50.313 l -0.77,0.625 c -4.94,-1.035 -6.03,-1.238 -11.63,-2.172 l -0.54,-0.617 z m 0.54,-66.942 c -1.53,-1.238 -5.58,-4.554 -12.27,-4.554 -5.71,0 -9.33,2.484 -11.31,4.652 -2.3,2.578 -4.06,6.82 -4.06,12.707 0,9.192 3.95,14.055 6.37,16.223 5.27,4.644 12.5,4.844 15.9,4.844 2.31,0 3.62,-0.2 5.48,-0.297 0.11,-16.95 0.11,-20.043 -0.11,-33.575" /><path
|
||||||
|
id="path58"
|
||||||
|
style="fill:#aa9f93;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
d="m 1124.85,499.227 c -1.43,-1.137 -3.84,-2.997 -7.9,-4.547 -3.08,-1.035 -6.36,-1.555 -9.55,-1.555 -3.39,0 -9.64,0.52 -14.13,5.578 -3.73,4.238 -4.07,9.309 -4.18,12.918 17.99,0.106 20.95,0.106 38.06,0 l 0.77,0.617 c 0.11,4.543 0.32,14.774 -5.93,21.797 -3.28,3.719 -9.31,7.125 -17.98,7.125 -14.37,0 -26.65,-9.398 -26.65,-28.613 0,-17.973 11.29,-27.68 29.29,-27.68 9.75,0 15.68,2.988 17.53,3.922 l 0.67,0.723 c 0.22,4.031 0.33,5.062 0.87,9.191 l -0.87,0.524 z m -8.23,20.351 c -10.09,-0.101 -14.26,-0.211 -27.53,-0.101 1.1,10.328 8.34,14.253 14.48,14.253 4.93,0 9.76,-2.378 11.95,-8.054 0.88,-2.379 0.99,-4.656 1.1,-6.098" /><path
|
||||||
|
id="path60"
|
||||||
|
style="fill:#aa9f93;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
d="m 1210.28,527.426 c 8.01,-3.305 18.65,-7.649 18.65,-20.871 0,-11.567 -9.11,-22 -28.2,-22 -11.61,0 -19.07,3.3 -21.71,4.554 l -0.43,0.719 c 0.43,3.613 0.54,5.57 0.87,9.496 l 1.1,0.422 c 2.74,-1.758 9.1,-6.101 19.3,-6.101 11.29,0 16.01,5.476 16.01,11.671 0,7.231 -6.36,10.02 -13.5,12.602 l -5.48,2.277 c -7.77,3.407 -18.21,7.852 -18.21,20.453 0,3.825 1.12,7.758 3.41,10.856 5.05,6.809 14.15,9.086 23.04,9.086 8.65,0 13.92,-1.547 19.74,-3.305 l 0.54,-0.824 c -0.43,-3.93 -0.54,-5.379 -0.87,-9.094 l -0.88,-0.414 c -4.72,2.274 -9.88,4.75 -18.1,4.75 -9.1,0 -14.8,-4.023 -14.8,-10.121 0,-4.648 3.28,-6.816 5.59,-8.164 1.42,-0.828 1.87,-1.027 8.44,-3.719 l 5.49,-2.273" /><path
|
||||||
|
id="path62"
|
||||||
|
style="fill:#aa9f93;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
d="m 1294.4,539.512 c -0.22,-7.844 -0.34,-15.184 -0.34,-23.551 0,-12.699 0.34,-20.352 0.56,-24.793 0,-1.449 0.11,-2.898 0.21,-4.34 l -0.43,-0.625 c -5.26,-0.101 -6.15,-0.199 -11.19,-0.406 l -0.65,0.617 0.11,4.336 c -2.42,-1.641 -8.24,-5.883 -17.22,-5.883 -4.27,0 -8.99,0.93 -12.51,3.512 -7.02,5.375 -7.02,14.152 -7.12,22.207 l 0,6.406 c -0.22,14.77 -0.22,16.426 -0.56,22 l 0.56,0.727 c 5.14,0.109 6.13,0.109 11.28,0.515 l 0.67,-0.722 -0.44,-22.617 c 0,-2.801 -0.12,-4.856 0,-9.809 0.1,-4.348 0.33,-13.645 11.4,-13.645 6.47,0 11.08,3.407 13.72,5.375 0.11,5.571 0.11,10.329 0.11,16.321 0,14.363 -0.11,17.254 -0.78,23.965 l 0.67,0.726 c 5.05,0.094 6.25,0.094 11.29,0.406 l 0.66,-0.722" /><path
|
||||||
|
id="path64"
|
||||||
|
style="fill:#aa9f93;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
d="m 1326.98,554.91 c -5.61,-0.211 -6.82,-0.312 -12.19,-0.84 l -0.66,0.629 c 0.12,1.348 0.12,2.793 0.12,4.129 0,1.863 -0.12,3.516 -0.22,5.586 l 0.76,0.617 c 5.71,0.41 6.7,0.516 12.19,1.024 l 0.65,-0.614 c -0.11,-4.23 -0.11,-5.265 0,-9.808 l -0.65,-0.723 z m -0.13,-68.707 c -5.7,-0.101 -6.58,-0.101 -11.95,-0.406 l -0.54,0.726 c 0.32,5.473 0.65,10.223 0.65,21.688 0,19.727 -0.33,23.457 -1.1,29.543 l 0.56,0.726 c 4.72,0.723 6.36,0.934 11.84,2.071 l 1.1,-0.629 c -0.34,-5.363 -0.65,-10.949 -0.65,-24.27 0,-19.222 0.22,-21.804 0.65,-28.824 l -0.56,-0.625" /><path
|
||||||
|
id="path66"
|
||||||
|
style="fill:#aa9f93;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
d="m 1370.3,517.504 c 4.38,-1.332 14.36,-4.535 14.36,-15.484 0,-4.141 -1.65,-8.79 -6.14,-12.192 -5.82,-4.652 -13.61,-4.961 -17.56,-4.961 -5.92,0 -10.85,1.035 -15.02,2.582 -0.54,0.207 -1.1,0.406 -1.64,0.621 l -0.55,0.926 c 0.44,4.031 0.44,4.547 0.66,8.676 l 1.1,0.316 c 1.97,-1.445 6.79,-4.961 15.25,-4.961 8.65,0 11.83,4.551 11.83,7.746 0,4.747 -4.71,6.313 -11.4,8.372 l -3.51,1.128 c -4.49,1.348 -14.37,4.344 -14.37,14.985 0,10.64 9.88,15.902 22.15,15.902 8.12,0 13.82,-2.168 15.8,-2.89 l 0.54,-0.719 c -0.43,-3.821 -0.54,-4.242 -0.87,-8.156 l -0.99,-0.422 c -2.74,1.66 -7.01,4.136 -14.15,4.136 -1.53,0 -3.07,-0.105 -4.72,-0.519 -3.28,-0.828 -6.03,-2.996 -6.03,-6.195 0,-4.442 4.5,-5.786 11.31,-7.743 l 3.95,-1.148" /><path
|
||||||
|
id="path68"
|
||||||
|
style="fill:#aa9f93;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
d="m 1423.15,517.504 c 4.38,-1.332 14.35,-4.535 14.35,-15.484 0,-4.141 -1.62,-8.79 -6.14,-12.192 -5.79,-4.652 -13.6,-4.961 -17.53,-4.961 -5.93,0 -10.87,1.035 -15.02,2.582 -0.55,0.207 -1.11,0.406 -1.65,0.621 l -0.54,0.926 c 0.43,4.031 0.43,4.547 0.65,8.676 l 1.09,0.316 c 1.99,-1.445 6.8,-4.961 15.24,-4.961 8.66,0 11.84,4.551 11.84,7.746 0,4.747 -4.7,6.313 -11.39,8.372 l -3.5,1.128 c -4.52,1.348 -14.38,4.344 -14.38,14.985 0,10.64 9.86,15.902 22.15,15.902 8.12,0 13.81,-2.168 15.8,-2.89 l 0.54,-0.719 c -0.44,-3.821 -0.54,-4.242 -0.87,-8.156 l -0.99,-0.422 c -2.74,1.66 -7.03,4.136 -14.14,4.136 -1.55,0 -3.08,-0.105 -4.72,-0.519 -3.3,-0.828 -6.04,-2.996 -6.04,-6.195 0,-4.442 4.51,-5.786 11.29,-7.743 l 3.96,-1.148" /><path
|
||||||
|
id="path70"
|
||||||
|
style="fill:#aa9f93;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
d="m 1497.5,499.227 c -1.43,-1.137 -3.84,-2.997 -7.9,-4.547 -3.06,-1.035 -6.36,-1.555 -9.53,-1.555 -3.41,0 -9.65,0.52 -14.15,5.578 -3.72,4.238 -4.06,9.309 -4.17,12.918 17.98,0.106 20.95,0.106 38.05,0 l 0.77,0.617 c 0.12,4.543 0.34,14.774 -5.92,21.797 -3.3,3.719 -9.32,7.125 -17.99,7.125 -14.35,0 -26.65,-9.398 -26.65,-28.613 0,-17.973 11.29,-27.68 29.28,-27.68 9.77,0 15.69,2.988 17.55,3.922 l 0.66,0.723 c 0.21,4.031 0.34,5.062 0.87,9.191 l -0.87,0.524 z m -8.22,20.351 c -10.1,-0.101 -14.26,-0.211 -27.53,-0.101 1.1,10.328 8.33,14.253 14.48,14.253 4.92,0 9.75,-2.378 11.95,-8.054 0.88,-2.379 0.99,-4.656 1.1,-6.098" /><path
|
||||||
|
id="path72"
|
||||||
|
style="fill:#aa9f93;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
d="m 1605.63,513.789 c -0.22,7.231 -1.64,14.457 -6.68,19.941 -4.82,5.168 -12.18,7.43 -19.64,7.43 -10.96,0 -17.33,-4.226 -20.39,-7.23 -7.36,-6.918 -7.57,-17.035 -7.57,-20.961 0,-3.41 0.12,-13.953 7.57,-21.082 3.51,-3.407 9.77,-6.914 19.62,-6.914 7.67,0 14.15,1.75 18.98,6.3 3.62,3.407 5.91,7.43 7.14,12.497 0.75,3.093 0.97,6.503 0.97,10.019 z m -11.94,-0.41 c 0.1,-2.168 0,-9.098 -2.54,-13.742 -3.17,-5.684 -8.44,-6.922 -12.49,-6.922 -2.2,0 -4.49,0.41 -6.47,1.348 -8.67,4.132 -8.78,14.558 -8.78,18.699 0,4.336 0.34,10.332 3.3,14.554 3.84,5.793 9.97,5.993 12.06,5.993 6.14,0 9.65,-2.676 11.74,-5.883 2.73,-4.543 3.18,-11.465 3.18,-14.047" /><path
|
||||||
|
id="path74"
|
||||||
|
style="fill:#aa9f93;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
d="m 1664.31,498.398 c -0.43,-4.445 -0.56,-4.957 -0.86,-9.199 l -0.78,-0.719 c -3.19,-1.445 -7.46,-3.507 -15.14,-3.507 -16.55,0 -27.32,11.257 -27.32,27.375 0,16.422 10.53,28.812 27.53,28.812 7.14,0 12.19,-2.168 15.03,-3.301 l 0.44,-0.726 c -0.44,-3.715 -0.54,-5.063 -0.76,-8.16 l -0.88,-0.41 c -3.61,2.48 -7.79,4.027 -12.17,4.027 -9.11,0 -17.11,-6.606 -17.11,-19.828 0,-14.059 8.44,-19.117 17,-19.117 7.45,0 12.06,3.621 14.16,5.171 l 0.86,-0.418" /><path
|
||||||
|
id="path76"
|
||||||
|
style="fill:#aa9f93;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
d="m 1719.49,498.398 c -0.47,-4.445 -0.55,-4.957 -0.9,-9.199 l -0.76,-0.719 c -3.17,-1.445 -7.46,-3.507 -15.12,-3.507 -16.57,0 -27.33,11.257 -27.33,27.375 0,16.422 10.55,28.812 27.54,28.812 7.13,0 12.17,-2.168 15.02,-3.301 l 0.43,-0.726 c -0.43,-3.715 -0.54,-5.063 -0.77,-8.16 l -0.87,-0.41 c -3.61,2.48 -7.78,4.027 -12.17,4.027 -9.1,0 -17.11,-6.606 -17.11,-19.828 0,-14.059 8.44,-19.117 16.99,-19.117 7.46,0 12.07,3.621 14.15,5.171 l 0.9,-0.418" /><path
|
||||||
|
id="path78"
|
||||||
|
style="fill:#aa9f93;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
d="m 1745.58,554.91 c -5.59,-0.211 -6.8,-0.312 -12.17,-0.84 l -0.67,0.629 c 0.11,1.348 0.11,2.793 0.11,4.129 0,1.863 -0.11,3.516 -0.2,5.586 l 0.76,0.617 c 5.69,0.41 6.69,0.516 12.17,1.024 l 0.66,-0.614 c -0.12,-4.23 -0.12,-5.265 0,-9.808 l -0.66,-0.723 z m -0.11,-68.707 c -5.69,-0.101 -6.58,-0.101 -11.95,-0.406 l -0.56,0.726 c 0.34,5.473 0.66,10.223 0.66,21.688 0,19.727 -0.32,23.457 -1.09,29.543 l 0.56,0.726 c 4.7,0.723 6.34,0.934 11.82,2.071 l 1.1,-0.629 c -0.33,-5.363 -0.67,-10.949 -0.67,-24.27 0,-19.222 0.24,-21.804 0.67,-28.824 l -0.54,-0.625" /><path
|
||||||
|
id="path80"
|
||||||
|
style="fill:#aa9f93;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
d="m 1801.95,565.758 c 0.56,-5.992 1.1,-12.195 0.99,-25 -2.97,0.203 -4.05,0.203 -6.37,0.203 -5.71,0 -16.13,-0.313 -24.13,-7.125 -4.6,-3.824 -9.65,-10.953 -9.65,-22.215 0,-15.699 10.08,-26.555 24.68,-26.555 8.01,0 12.5,3.313 15.15,5.172 l -0.24,-3.824 0.77,-0.617 c 5.05,0.207 6.35,0.305 11.2,0.305 l 0.54,0.726 c -0.45,7.125 -0.88,14.774 -0.88,30.781 0,10.329 0.11,35.954 0.88,50.313 l -0.77,0.625 c -4.92,-1.035 -6.02,-1.238 -11.61,-2.172 l -0.56,-0.617 z m 0.56,-66.942 c -1.55,-1.238 -5.61,-4.554 -12.3,-4.554 -5.7,0 -9.32,2.484 -11.29,4.652 -2.3,2.578 -4.07,6.82 -4.07,12.707 0,9.192 3.97,14.055 6.37,16.223 5.26,4.644 12.49,4.844 15.9,4.844 2.3,0 3.62,-0.2 5.5,-0.297 0.09,-16.95 0.09,-20.043 -0.11,-33.575" /><path
|
||||||
|
id="path82"
|
||||||
|
style="fill:#aa9f93;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
d="m 1879.27,499.227 c -1.43,-1.137 -3.84,-2.997 -7.89,-4.547 -3.09,-1.035 -6.37,-1.555 -9.54,-1.555 -3.41,0 -9.66,0.52 -14.15,5.578 -3.73,4.238 -4.07,9.309 -4.18,12.918 17.98,0.106 20.95,0.106 38.05,0 l 0.77,0.617 c 0.11,4.543 0.35,14.774 -5.91,21.797 -3.29,3.719 -9.32,7.125 -17.99,7.125 -14.37,0 -26.66,-9.398 -26.66,-28.613 0,-17.973 11.3,-27.68 29.29,-27.68 9.75,0 15.69,2.988 17.54,3.922 l 0.67,0.723 c 0.21,4.031 0.32,5.062 0.87,9.191 l -0.87,0.524 z m -8.23,20.351 c -10.08,-0.101 -14.25,-0.211 -27.53,-0.101 1.11,10.328 8.34,14.253 14.49,14.253 4.92,0 9.75,-2.378 11.95,-8.054 0.86,-2.379 0.99,-4.656 1.09,-6.098" /><path
|
||||||
|
id="path84"
|
||||||
|
style="fill:#aa9f93;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
d="m 1947.6,486.203 c -5.29,-0.101 -5.94,-0.101 -10.99,-0.406 l -0.75,0.726 c 0,1.133 0.11,2.266 0.11,3.407 0.1,5.058 0.1,10.121 0.1,15.187 0,15.903 -0.1,16.938 -0.66,19.106 -2.08,7.847 -8.33,7.847 -9.86,7.847 -6.59,0 -11.63,-3.605 -14.59,-5.781 -0.11,-17.969 0.11,-27.375 0.87,-39.461 l -0.65,-0.625 c -5.37,-0.101 -6.26,-0.101 -11.52,-0.406 l -0.54,0.726 c 0.11,5.782 0.32,11.356 0.32,18.997 0,16.535 -0.77,25.316 -1.31,32.234 l 0.65,0.726 c 5.48,0.934 6.46,1.137 11.62,2.071 l 0.78,-0.723 -0.11,-5.371 c 2.85,1.856 9.66,6.402 19.31,6.402 2.74,0 6.14,-0.421 9.1,-1.961 2.83,-1.554 5.16,-3.929 6.35,-6.718 1.44,-3.094 1.53,-6.196 1.65,-12.602 l 0,-12.094 c 0.31,-12.086 0.44,-16.734 0.78,-20.656 l -0.66,-0.625" /><path
|
||||||
|
id="path86"
|
||||||
|
style="fill:#aa9f93;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
d="m 1992.99,494.262 c -0.32,-3.403 -0.32,-4.129 -0.43,-7.121 l -0.56,-0.618 c -2.29,-0.519 -4.15,-0.937 -8.21,-0.937 -2.65,0 -9.55,0 -12.96,5.371 -1.96,2.996 -1.96,5.473 -1.96,17.664 l 0.21,22.731 c -3.84,0 -3.94,-0.102 -7.89,-0.211 l -0.44,0.621 c 0.21,3.316 0.21,4.136 0.21,7.441 l 0.66,0.625 c 2.41,0 3.86,-0.109 7.46,0 -0.11,2.168 -0.11,4.438 -0.11,6.606 -0.1,1.972 -0.21,3.921 -0.34,5.89 l 0.56,0.727 c 4.94,1.129 6.15,1.441 11.18,2.887 l 0.77,-0.52 c -0.32,-6.813 -0.43,-8.16 -0.43,-15.699 4.6,0.109 5.91,0.109 12.17,0.308 l 0.56,-0.613 c -0.22,-2.691 -0.34,-3.828 -0.34,-7.344 l -0.54,-0.617 c -5.49,0.11 -6.15,0.215 -11.95,0.215 l -0.24,-19.219 c 0.13,-1.238 0.13,-7.133 0.13,-8.578 0,-7.535 0.98,-9.918 6.46,-9.918 2.31,0 4.07,0.52 5.27,0.93 l 0.76,-0.621" /><path
|
||||||
|
id="path88"
|
||||||
|
style="fill:#aa9f93;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
d="m 2049.03,517.609 c 0,4.344 0,10.028 -0.77,12.918 -2.29,8.067 -10.2,10.633 -18.32,10.633 -6.46,0 -12.81,-1.332 -18.96,-3.406 l -0.67,-0.621 c -0.1,-2.164 -0.1,-2.785 -0.32,-7.539 l 0.88,-0.508 c 4.62,1.855 9.54,3.918 16.66,3.918 5.48,0 8.01,-1.961 9.1,-3.824 1,-1.653 1,-3.61 1,-6.407 l -1.87,-0.203 c -19.73,-2.172 -32.03,-6.609 -32.03,-20.457 0,-10.226 7.69,-17.246 18.66,-17.246 8.33,0 13.25,3.715 15.34,5.266 l -0.1,-3.719 0.43,-0.617 c 5.07,0.207 5.92,0.305 11.08,0.406 l 0.56,0.52 c -0.56,6.718 -0.67,7.851 -0.67,20.664 l 0,10.222 z m -11.3,-2.472 0,-17.258 c -1.21,-1.031 -5.15,-4.543 -11.94,-4.543 -10.43,0 -10.43,8.883 -10.43,9.402 0,9.188 10.31,10.641 21.4,12.192 l 0.97,0.207" /><path
|
||||||
|
id="path90"
|
||||||
|
style="fill:#aa9f93;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
d="m 2081.06,486.203 c -5.27,-0.101 -6.37,-0.199 -11.53,-0.406 l -0.54,0.726 c 0.22,7.325 0.54,16.629 0.54,36.457 0,14.266 0,29.551 -1.08,42.778 l 0.54,0.617 c 5.38,0.824 6.47,1.027 11.96,2.172 l 0.66,-0.727 c -0.77,-13.527 -0.77,-27.172 -0.77,-40.703 0,-22.621 0.32,-30.476 0.88,-40.289 l -0.66,-0.625" /><path
|
||||||
|
id="path92"
|
||||||
|
style="fill:#aa9f93;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
d="m 2146.2,499.227 c -1.42,-1.137 -3.84,-2.997 -7.89,-4.547 -3.09,-1.035 -6.37,-1.555 -9.54,-1.555 -3.41,0 -9.65,0.52 -14.15,5.578 -3.73,4.238 -4.05,9.309 -4.16,12.918 17.97,0.106 20.95,0.106 38.05,0 l 0.76,0.617 c 0.11,4.543 0.34,14.774 -5.92,21.797 -3.29,3.719 -9.34,7.125 -17.99,7.125 -14.36,0 -26.64,-9.398 -26.64,-28.613 0,-17.973 11.3,-27.68 29.28,-27.68 9.76,0 15.68,2.988 17.56,3.922 l 0.64,0.723 c 0.22,4.031 0.33,5.062 0.89,9.191 l -0.89,0.524 z m -8.22,20.351 c -10.09,-0.101 -14.26,-0.211 -27.52,-0.101 1.09,10.328 8.32,14.253 14.45,14.253 4.96,0 9.78,-2.378 11.97,-8.054 0.88,-2.379 0.99,-4.656 1.1,-6.098" /><path
|
||||||
|
id="path94"
|
||||||
|
style="fill:#aa9f93;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
d="m 649.375,337.137 c -10.859,0.304 -13.051,0.304 -26.105,0.422 -0.211,-4.454 -0.211,-20.262 0.66,-31.516 l -0.539,-0.727 c -6.043,0 -6.914,-0.093 -12.731,-0.296 l -0.547,0.71 c 0.438,7.864 0.653,13.844 0.653,44.329 0,14.66 -0.321,21.164 -0.653,27.464 l 0.547,0.727 c 7.57,-0.094 36.629,0.113 44.203,0.313 l 0.543,-0.723 c -0.433,-3.719 -0.433,-4.235 -0.66,-8.254 l -0.66,-0.637 c -13.594,0.317 -17.324,0.414 -30.695,0.414 -0.121,-4.23 -0.332,-14.656 -0.332,-20.761 l 0,-2.368 c 12.5,0.094 16.226,0.2 27.191,0.512 l 0.551,-0.617 c -0.446,-4.754 -0.446,-5.266 -0.766,-8.27 l -0.66,-0.722" /><path
|
||||||
|
id="path96"
|
||||||
|
style="fill:#aa9f93;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
d="m 706.977,336.82 c 0,4.344 0,10.024 -0.778,12.918 -2.293,8.063 -10.191,10.641 -18.312,10.641 -6.469,0 -12.828,-1.344 -18.965,-3.418 l -0.664,-0.609 c -0.113,-2.172 -0.113,-2.793 -0.328,-7.543 l 0.883,-0.512 c 4.605,1.851 9.539,3.922 16.667,3.922 5.489,0 8.004,-1.957 9.106,-3.821 0.98,-1.652 0.98,-3.609 0.98,-6.406 l -1.855,-0.203 c -19.742,-2.172 -32.027,-6.609 -32.027,-20.453 0,-10.234 7.671,-17.25 18.636,-17.25 8.34,0 13.274,3.707 15.356,5.269 l -0.11,-3.722 0.442,-0.613 c 5.047,0.203 5.922,0.296 11.078,0.402 l 0.551,0.527 c -0.551,6.711 -0.66,7.844 -0.66,20.653 l 0,10.218 z m -11.301,-2.476 0,-17.246 c -1.203,-1.032 -5.149,-4.551 -11.953,-4.551 -10.422,0 -10.422,8.887 -10.422,9.406 0,9.188 10.312,10.645 21.39,12.192 l 0.985,0.199" /><path
|
||||||
|
id="path98"
|
||||||
|
style="fill:#aa9f93;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
d="m 768.398,317.617 c -0.449,-4.433 -0.562,-4.957 -0.882,-9.191 l -0.77,-0.727 c -3.183,-1.457 -7.453,-3.515 -15.137,-3.515 -16.558,0 -27.308,11.254 -27.308,27.371 0,16.433 10.527,28.824 27.531,28.824 7.129,0 12.168,-2.164 15.023,-3.305 l 0.442,-0.722 c -0.442,-3.719 -0.551,-5.071 -0.774,-8.161 l -0.875,-0.41 c -3.617,2.481 -7.781,4.02 -12.175,4.02 -9.11,0 -17.11,-6.602 -17.11,-19.824 0,-14.043 8.45,-19.118 17,-19.118 7.461,0 12.063,3.618 14.153,5.168 l 0.882,-0.41" /><path
|
||||||
|
id="path100"
|
||||||
|
style="fill:#aa9f93;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
d="m 830.898,305.422 c -5.261,-0.106 -5.914,-0.106 -10.96,-0.402 l -0.774,0.71 0.113,3.411 c 0.114,5.371 0.114,10.851 0.114,16.222 l -0.114,11.047 c 0,2.379 0,4.754 -0.547,7.031 -1.207,4.75 -4.273,7.84 -9.867,7.84 -6.25,0 -11.082,-3.293 -14.703,-5.773 -0.105,-17.977 0.117,-27.375 0.774,-39.465 l -0.547,-0.621 c -5.039,-0.106 -6.364,-0.106 -11.742,-0.402 l -0.543,0.71 c 0.211,7.336 0.543,16.637 0.543,36.465 0,8.684 -0.11,17.364 -0.223,26.039 -0.215,9.09 -0.543,12.086 -0.863,16.735 l 0.543,0.621 c 5.261,0.824 7.007,1.137 11.953,2.168 l 0.664,-0.727 c -0.664,-11.054 -0.664,-22.203 -0.664,-33.367 3.508,2.172 10.418,6.414 19.629,6.414 2.523,0 5.046,-0.312 7.351,-1.246 4.934,-1.871 7.903,-5.566 8.988,-9.809 0.551,-2.078 0.551,-3.308 0.77,-10.234 l 0,-12.086 0.105,-4.855 c 0.219,-8.664 0.219,-10.125 0.668,-15.805 l -0.668,-0.621" /><path
|
||||||
|
id="path102"
|
||||||
|
style="fill:#aa9f93;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
d="m 899.781,305.422 c -5.269,-0.106 -5.929,-0.106 -10.976,-0.402 l -0.758,0.71 0.105,3.411 c 0.11,5.371 0.11,10.851 0.11,16.222 l -0.11,11.047 c 0,2.379 0,4.754 -0.55,7.031 -1.207,4.75 -4.278,7.84 -9.868,7.84 -6.254,0 -11.078,-3.293 -14.703,-5.773 -0.105,-17.977 0.117,-27.375 0.77,-39.465 l -0.543,-0.621 c -5.043,-0.106 -6.363,-0.106 -11.735,-0.402 l -0.55,0.71 c 0.222,7.336 0.55,16.637 0.55,36.465 0,8.684 -0.105,17.364 -0.218,26.039 -0.215,9.09 -0.559,12.086 -0.879,16.735 l 0.547,0.621 c 5.261,0.824 7.019,1.137 11.953,2.168 l 0.66,-0.727 c -0.66,-11.054 -0.66,-22.203 -0.66,-33.367 3.504,2.172 10.418,6.414 19.633,6.414 2.519,0 5.043,-0.312 7.343,-1.246 4.942,-1.871 7.895,-5.566 8.993,-9.809 0.554,-2.078 0.554,-3.308 0.769,-10.234 l 0,-12.086 0.117,-4.855 C 900,313.184 900,311.723 900.43,306.043 l -0.649,-0.621" /><path
|
||||||
|
id="path104"
|
||||||
|
style="fill:#aa9f93;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
d="m 971.492,333.008 c -0.215,7.226 -1.637,14.457 -6.683,19.941 -4.825,5.16 -12.172,7.43 -19.633,7.43 -10.961,0 -17.324,-4.227 -20.391,-7.231 -7.351,-6.914 -7.566,-17.043 -7.566,-20.972 0,-3.406 0.105,-13.949 7.566,-21.074 3.5,-3.403 9.758,-6.918 19.633,-6.918 7.672,0 14.137,1.765 18.965,6.304 3.625,3.403 5.93,7.446 7.129,12.492 0.765,3.114 0.98,6.52 0.98,10.028 z m -11.945,-0.41 c 0.105,-2.168 0,-9.098 -2.527,-13.739 -3.172,-5.675 -8.434,-6.933 -12.493,-6.933 -2.199,0 -4.507,0.418 -6.468,1.344 -8.672,4.136 -8.782,14.57 -8.782,18.707 0,4.336 0.332,10.332 3.286,14.55 3.843,5.805 9.98,6.012 12.07,6.012 6.137,0 9.644,-2.695 11.738,-5.894 2.738,-4.551 3.176,-11.465 3.176,-14.047" /><path
|
||||||
|
id="path106"
|
||||||
|
style="fill:#aa9f93;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
d="m 1030.18,317.617 c -0.44,-4.433 -0.56,-4.957 -0.89,-9.191 l -0.75,-0.727 c -3.19,-1.457 -7.47,-3.515 -15.15,-3.515 -16.554,0 -27.312,11.254 -27.312,27.371 0,16.433 10.531,28.824 27.532,28.824 7.14,0 12.18,-2.164 15.03,-3.305 l 0.44,-0.722 c -0.44,-3.719 -0.54,-5.071 -0.77,-8.161 l -0.87,-0.41 c -3.63,2.481 -7.79,4.02 -12.18,4.02 -9.11,0 -17.112,-6.602 -17.112,-19.824 0,-14.043 8.452,-19.118 17.002,-19.118 7.45,0 12.07,3.618 14.14,5.168 l 0.89,-0.41" /><path
|
||||||
|
id="path108"
|
||||||
|
style="fill:#aa9f93;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
d="m 1092.69,305.422 c -5.27,-0.106 -5.93,-0.106 -10.97,-0.402 l -0.77,0.71 0.11,3.411 c 0.12,5.371 0.12,10.851 0.12,16.222 l -0.12,11.047 c 0,2.379 0,4.754 -0.55,7.031 -1.21,4.75 -4.27,7.84 -9.87,7.84 -6.25,0 -11.08,-3.293 -14.69,-5.773 -0.11,-17.977 0.1,-27.375 0.76,-39.465 l -0.54,-0.621 c -5.05,-0.106 -6.37,-0.106 -11.74,-0.402 l -0.55,0.71 c 0.22,7.336 0.55,16.637 0.55,36.465 0,8.684 -0.1,17.364 -0.22,26.039 -0.22,9.09 -0.55,12.086 -0.88,16.735 l 0.55,0.621 c 5.26,0.824 7.03,1.137 11.96,2.168 l 0.65,-0.727 c -0.65,-11.054 -0.65,-22.203 -0.65,-33.367 3.51,2.172 10.41,6.414 19.63,6.414 2.52,0 5.04,-0.312 7.35,-1.246 4.93,-1.871 7.89,-5.566 8.99,-9.809 0.54,-2.078 0.54,-3.308 0.77,-10.234 l 0,-12.086 0.11,-4.855 c 0.22,-8.664 0.22,-10.125 0.65,-15.805 l -0.65,-0.621" /><path
|
||||||
|
id="path110"
|
||||||
|
style="fill:#aa9f93;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
d="m 1136.11,336.727 c 4.39,-1.348 14.37,-4.551 14.37,-15.497 0,-4.132 -1.65,-8.781 -6.13,-12.195 -5.83,-4.652 -13.61,-4.949 -17.56,-4.949 -5.92,0 -10.86,1.031 -15.02,2.574 -0.54,0.203 -1.1,0.418 -1.64,0.617 l -0.56,0.934 c 0.45,4.035 0.45,4.551 0.66,8.668 l 1.1,0.316 c 1.97,-1.445 6.8,-4.949 15.24,-4.949 8.67,0 11.84,4.539 11.84,7.746 0,4.754 -4.7,6.301 -11.4,8.36 l -3.5,1.148 c -4.51,1.344 -14.37,4.332 -14.37,14.973 0,10.632 9.86,15.906 22.15,15.906 8.11,0 13.81,-2.164 15.79,-2.891 l 0.55,-0.726 c -0.44,-3.813 -0.55,-4.223 -0.88,-8.16 l -0.98,-0.411 c -2.74,1.653 -7.02,4.141 -14.15,4.141 -1.54,0 -3.07,-0.113 -4.72,-0.531 -3.29,-0.813 -6.03,-2.992 -6.03,-6.188 0,-4.449 4.49,-5.789 11.3,-7.754 l 3.94,-1.132" /><path
|
||||||
|
id="path112"
|
||||||
|
style="fill:#aa9f93;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
d="m 1207.08,317.617 c -0.45,-4.433 -0.56,-4.957 -0.88,-9.191 l -0.78,-0.727 c -3.17,-1.457 -7.45,-3.515 -15.12,-3.515 -16.57,0 -27.32,11.254 -27.32,27.371 0,16.433 10.53,28.824 27.53,28.824 7.13,0 12.17,-2.164 15.02,-3.305 l 0.45,-0.722 c -0.45,-3.719 -0.56,-5.071 -0.77,-8.161 l -0.89,-0.41 c -3.61,2.481 -7.77,4.02 -12.17,4.02 -9.1,0 -17.11,-6.602 -17.11,-19.824 0,-14.043 8.46,-19.118 17.01,-19.118 7.46,0 12.06,3.618 14.15,5.168 l 0.88,-0.41" /><path
|
||||||
|
id="path114"
|
||||||
|
style="fill:#aa9f93;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
d="m 1269.58,305.422 c -5.26,-0.106 -5.91,-0.106 -10.96,-0.402 l -0.77,0.71 0.1,3.411 c 0.13,5.371 0.13,10.851 0.13,16.222 l -0.13,11.047 c 0,2.379 0,4.754 -0.54,7.031 -1.2,4.75 -4.27,7.84 -9.86,7.84 -6.26,0 -11.09,-3.293 -14.71,-5.773 -0.11,-17.977 0.11,-27.375 0.77,-39.465 l -0.55,-0.621 c -5.05,-0.106 -6.35,-0.106 -11.74,-0.402 l -0.54,0.71 c 0.22,7.336 0.54,16.637 0.54,36.465 0,8.684 -0.1,17.364 -0.22,26.039 -0.21,9.09 -0.53,12.086 -0.86,16.735 l 0.54,0.621 c 5.26,0.824 7.01,1.137 11.95,2.168 l 0.67,-0.727 c -0.67,-11.054 -0.67,-22.203 -0.67,-33.367 3.52,2.172 10.42,6.414 19.63,6.414 2.53,0 5.05,-0.312 7.36,-1.246 4.92,-1.871 7.9,-5.566 8.98,-9.809 0.56,-2.078 0.56,-3.308 0.77,-10.234 l 0,-12.086 0.11,-4.855 c 0.23,-8.664 0.23,-10.125 0.67,-15.805 l -0.67,-0.621" /><path
|
||||||
|
id="path116"
|
||||||
|
style="fill:#aa9f93;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
d="m 1338.34,358.73 c -0.21,-7.851 -0.33,-15.191 -0.33,-23.55 0,-12.711 0.33,-20.356 0.56,-24.797 0,-1.445 0.11,-2.883 0.22,-4.34 l -0.45,-0.621 c -5.26,-0.106 -6.13,-0.199 -11.18,-0.402 l -0.65,0.613 0.11,4.34 c -2.42,-1.653 -8.24,-5.887 -17.22,-5.887 -4.29,0 -8.99,0.934 -12.51,3.504 -7.01,5.375 -7.01,14.156 -7.13,22.207 l 0,6.414 c -0.22,14.777 -0.22,16.422 -0.55,22.004 l 0.55,0.715 c 5.17,0.105 6.14,0.105 11.3,0.511 l 0.66,-0.711 -0.45,-22.625 c 0,-2.781 -0.1,-4.855 0,-9.812 0.11,-4.34 0.35,-13.633 11.42,-13.633 6.47,0 11.06,3.406 13.7,5.367 0.12,5.571 0.12,10.325 0.12,16.317 0,14.367 -0.12,17.258 -0.77,23.965 l 0.65,0.726 c 5.05,0.113 6.25,0.113 11.3,0.406 l 0.65,-0.711" /><path
|
||||||
|
id="path118"
|
||||||
|
style="fill:#aa9f93;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
d="m 1370.59,305.422 c -5.26,-0.106 -6.36,-0.199 -11.5,-0.402 l -0.56,0.71 c 0.22,7.336 0.56,16.637 0.56,36.465 0,14.258 0,29.547 -1.1,42.774 l 0.54,0.621 c 5.37,0.824 6.47,1.023 11.95,2.168 l 0.65,-0.727 c -0.76,-13.531 -0.76,-27.168 -0.76,-40.703 0,-22.617 0.33,-30.469 0.88,-40.285 l -0.66,-0.621" /><path
|
||||||
|
id="path120"
|
||||||
|
style="fill:#aa9f93;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
d="m 1435.74,318.445 c -1.44,-1.148 -3.86,-3.007 -7.91,-4.554 -3.06,-1.032 -6.35,-1.547 -9.54,-1.547 -3.39,0 -9.64,0.515 -14.13,5.59 -3.74,4.222 -4.06,9.285 -4.17,12.91 17.98,0.094 20.93,0.094 38.04,0 l 0.76,0.617 c 0.13,4.539 0.34,14.773 -5.91,21.805 -3.29,3.695 -9.33,7.113 -17.98,7.113 -14.37,0 -26.64,-9.391 -26.64,-28.602 0,-17.984 11.28,-27.691 29.26,-27.691 9.77,0 15.68,2.992 17.55,3.922 l 0.67,0.711 c 0.2,4.043 0.32,5.074 0.87,9.215 l -0.87,0.511 z m -8.22,20.344 c -10.09,-0.105 -14.26,-0.199 -27.53,-0.105 1.08,10.339 8.33,14.265 14.46,14.265 4.94,0 9.75,-2.379 11.96,-8.062 0.88,-2.375 0.99,-4.653 1.11,-6.098" /><path
|
||||||
|
id="path122"
|
||||||
|
style="fill:#aa9f93;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
d="m 1562.29,305.316 c -7.46,0 -8.56,0 -15.79,-0.296 l -0.76,0.71 c -1.77,10.336 -2.43,13.333 -3.96,20.872 l -9,44.531 -9.1,-42.156 c -0.54,-2.793 -1.1,-5.676 -1.75,-8.473 -0.88,-4.438 -2.51,-11.984 -2.97,-14.461 l -0.65,-0.727 c -7.9,0 -8.33,-0.093 -15.9,-0.296 l -0.76,0.71 c -1.98,9.309 -11.08,48.45 -17,71.793 l 0.54,0.727 c 6.15,0 7.14,0.113 12.5,0.313 l 0.66,-0.723 c 0.67,-3.621 1.32,-6.922 2.31,-12.078 0.88,-4.657 1.75,-9.211 2.63,-13.75 l 7.99,-39.465 9.23,45.762 c 1.53,7.55 1.76,8.781 3.73,19.214 l 0.66,0.727 c 8.33,0.113 9.76,0.113 17.42,0.313 l 0.67,-0.723 c 0.11,-0.824 0.21,-1.66 0.32,-2.578 0.45,-2.692 2.98,-15.914 3.62,-19.426 l 8.67,-43.59 8.55,40.801 c 4.06,19.941 4.17,20.359 4.73,24.476 l 0.64,0.727 c 5.05,0 6.15,0.113 10.76,0.313 l 0.55,-0.723 c -2.53,-8.055 -3.17,-10.844 -9.22,-35.945 -2.73,-11.266 -5.69,-22.422 -8.1,-33.684 -0.11,-0.711 -0.35,-1.449 -0.44,-2.168 l -0.78,-0.727" /><path
|
||||||
|
id="path124"
|
||||||
|
style="fill:#aa9f93;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
d="m 1635.79,318.445 c -1.42,-1.148 -3.84,-3.007 -7.9,-4.554 -3.07,-1.032 -6.35,-1.547 -9.53,-1.547 -3.39,0 -9.65,0.515 -14.15,5.59 -3.72,4.222 -4.06,9.285 -4.17,12.91 17.98,0.094 20.95,0.094 38.06,0 l 0.76,0.617 c 0.11,4.539 0.34,14.773 -5.92,21.805 -3.28,3.695 -9.32,7.113 -17.97,7.113 -14.37,0 -26.66,-9.391 -26.66,-28.602 0,-17.984 11.3,-27.691 29.28,-27.691 9.76,0 15.68,2.992 17.55,3.922 l 0.65,0.711 c 0.22,4.043 0.34,5.074 0.88,9.215 l -0.88,0.511 z m -8.22,20.344 c -10.08,-0.105 -14.26,-0.199 -27.53,-0.105 1.1,10.339 8.33,14.265 14.48,14.265 4.93,0 9.75,-2.379 11.95,-8.062 0.88,-2.375 0.99,-4.653 1.1,-6.098" /><path
|
||||||
|
id="path126"
|
||||||
|
style="fill:#aa9f93;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
d="m 1678.68,336.727 c 4.38,-1.348 14.37,-4.551 14.37,-15.497 0,-4.132 -1.64,-8.781 -6.14,-12.195 -5.82,-4.652 -13.62,-4.949 -17.55,-4.949 -5.91,0 -10.85,1.031 -15.02,2.574 -0.56,0.203 -1.12,0.418 -1.65,0.617 l -0.55,0.934 c 0.43,4.035 0.43,4.551 0.65,8.668 l 1.1,0.316 c 1.98,-1.445 6.79,-4.949 15.25,-4.949 8.67,0 11.83,4.539 11.83,7.746 0,4.754 -4.71,6.301 -11.4,8.36 l -3.5,1.148 c -4.5,1.344 -14.36,4.332 -14.36,14.973 0,10.632 9.86,15.906 22.14,15.906 8.11,0 13.83,-2.164 15.79,-2.891 l 0.56,-0.726 c -0.43,-3.813 -0.56,-4.223 -0.88,-8.16 l -0.98,-0.411 c -2.75,1.653 -7.03,4.141 -14.15,4.141 -1.55,0 -3.07,-0.113 -4.73,-0.531 -3.28,-0.813 -6.01,-2.992 -6.01,-6.188 0,-4.449 4.48,-5.789 11.28,-7.754 l 3.95,-1.132" /><path
|
||||||
|
id="path128"
|
||||||
|
style="fill:#aa9f93;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
d="m 1733.52,313.477 c -0.35,-3.411 -0.35,-4.122 -0.43,-7.125 l -0.56,-0.622 c -2.32,-0.507 -4.17,-0.925 -8.22,-0.925 -2.64,0 -9.54,0 -12.96,5.371 -1.97,3.008 -1.97,5.48 -1.97,17.664 l 0.23,22.73 c -3.86,0 -3.95,-0.101 -7.91,-0.215 l -0.43,0.633 c 0.22,3.297 0.22,4.117 0.22,7.434 l 0.66,0.613 c 2.41,0 3.84,-0.105 7.46,0 -0.13,2.168 -0.13,4.449 -0.13,6.613 -0.1,1.969 -0.21,3.938 -0.32,5.895 l 0.56,0.715 c 4.94,1.148 6.15,1.441 11.19,2.898 l 0.76,-0.519 c -0.32,-6.821 -0.45,-8.168 -0.45,-15.707 4.62,0.105 5.93,0.105 12.19,0.312 l 0.54,-0.613 c -0.22,-2.688 -0.33,-3.816 -0.33,-7.348 l -0.53,-0.609 c -5.5,0.098 -6.16,0.207 -11.98,0.207 l -0.2,-19.219 c 0.1,-1.23 0.1,-7.129 0.1,-8.57 0,-7.539 0.99,-9.906 6.47,-9.906 2.31,0 4.05,0.507 5.26,0.925 l 0.78,-0.632" /><path
|
||||||
|
id="path130"
|
||||||
|
style="fill:#aa9f93;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
d="m 1770.8,336.727 c 4.4,-1.348 14.37,-4.551 14.37,-15.497 0,-4.132 -1.64,-8.781 -6.15,-12.195 -5.81,-4.652 -13.59,-4.949 -17.55,-4.949 -5.92,0 -10.84,1.031 -15.01,2.574 -0.56,0.203 -1.12,0.418 -1.66,0.617 l -0.54,0.934 c 0.44,4.035 0.44,4.551 0.65,8.668 l 1.1,0.316 c 1.97,-1.445 6.81,-4.949 15.25,-4.949 8.67,0 11.85,4.539 11.85,7.746 0,4.754 -4.73,6.301 -11.42,8.36 l -3.5,1.148 c -4.5,1.344 -14.38,4.332 -14.38,14.973 0,10.632 9.88,15.906 22.16,15.906 8.12,0 13.82,-2.164 15.81,-2.891 l 0.53,-0.726 c -0.44,-3.813 -0.53,-4.223 -0.87,-8.16 l -1,-0.411 c -2.73,1.653 -7.01,4.141 -14.13,4.141 -1.55,0 -3.09,-0.113 -4.73,-0.531 -3.28,-0.813 -6.03,-2.992 -6.03,-6.188 0,-4.449 4.5,-5.789 11.3,-7.754 l 3.95,-1.132" /><path
|
||||||
|
id="path132"
|
||||||
|
style="fill:#aa9f93;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
d="m 1841.76,317.617 c -0.45,-4.433 -0.56,-4.957 -0.89,-9.191 l -0.75,-0.727 c -3.18,-1.457 -7.47,-3.515 -15.15,-3.515 -16.55,0 -27.31,11.254 -27.31,27.371 0,16.433 10.54,28.824 27.55,28.824 7.11,0 12.16,-2.164 15.01,-3.305 l 0.43,-0.722 c -0.43,-3.719 -0.53,-5.071 -0.76,-8.161 l -0.88,-0.41 c -3.62,2.481 -7.78,4.02 -12.16,4.02 -9.11,0 -17.11,-6.602 -17.11,-19.824 0,-14.043 8.43,-19.118 17,-19.118 7.44,0 12.06,3.618 14.13,5.168 l 0.89,-0.41" /><path
|
||||||
|
id="path134"
|
||||||
|
style="fill:#aa9f93;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
d="m 1904.26,305.422 c -5.25,-0.106 -5.92,-0.106 -10.97,-0.402 l -0.77,0.71 0.13,3.411 c 0.1,5.371 0.1,10.851 0.1,16.222 l -0.1,11.047 c 0,2.379 0,4.754 -0.56,7.031 -1.19,4.75 -4.28,7.84 -9.86,7.84 -6.26,0 -11.09,-3.293 -14.7,-5.773 -0.11,-17.977 0.1,-27.375 0.76,-39.465 l -0.54,-0.621 c -5.04,-0.106 -6.36,-0.106 -11.73,-0.402 l -0.56,0.71 c 0.23,7.336 0.56,16.637 0.56,36.465 0,8.684 -0.13,17.364 -0.22,26.039 -0.22,9.09 -0.56,12.086 -0.89,16.735 l 0.55,0.621 c 5.26,0.824 7.03,1.137 11.96,2.168 l 0.66,-0.727 c -0.66,-11.054 -0.66,-22.203 -0.66,-33.367 3.52,2.172 10.42,6.414 19.62,6.414 2.54,0 5.05,-0.312 7.37,-1.246 4.93,-1.871 7.88,-5.566 8.98,-9.809 0.56,-2.078 0.56,-3.308 0.76,-10.234 l 0,-12.086 0.11,-4.855 c 0.23,-8.664 0.23,-10.125 0.66,-15.805 l -0.66,-0.621" /><path
|
||||||
|
id="path136"
|
||||||
|
style="fill:#aa9f93;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
d="m 1987.29,305.422 c -7.36,-0.106 -8.22,-0.106 -14.91,-0.402 l -0.77,0.71 c -1.32,6.305 -3.41,14.68 -5.27,22.004 l -6.36,24.805 -6.47,-25.426 c -3.29,-12.496 -4.38,-16.527 -5.38,-21.07 l -0.65,-0.621 c -7.68,-0.106 -8.23,-0.106 -15.14,-0.402 l -0.65,0.71 c -4.82,18.497 -13.05,45.551 -15.35,52.379 l 0.43,0.723 c 5.26,0.316 6.69,0.316 11.95,0.824 l 0.66,-0.621 c 0.66,-3.41 1.43,-6.605 6.16,-25.711 l 5.26,-21.289 7.12,27.789 c 3.3,13.735 3.5,15.082 4.16,18.391 l 0.76,0.715 c 6.49,0 8.35,0 15.59,0.312 l 0.65,-0.715 c 1.54,-7.129 4.17,-17.043 6.14,-24.91 l 5.82,-21.894 6.14,24.078 c 0.87,3.613 1.76,7.23 2.63,10.844 1.86,7.019 2.07,7.839 2.75,11.777 l 0.77,0.613 c 1.75,0 3.6,-0.105 5.37,-0.105 1.64,0 3.28,0.105 4.92,0.105 l 0.67,-0.613 c -2.09,-5.883 -11.73,-34.711 -16.24,-52.379 l -0.76,-0.621" /><path
|
||||||
|
id="path138"
|
||||||
|
style="fill:#aa9f93;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
d="m 2060.99,318.445 c -1.43,-1.148 -3.84,-3.007 -7.89,-4.554 -3.07,-1.032 -6.37,-1.547 -9.55,-1.547 -3.4,0 -9.64,0.515 -14.17,5.59 -3.71,4.222 -4.05,9.285 -4.15,12.91 17.98,0.094 20.94,0.094 38.06,0 l 0.76,0.617 c 0.11,4.539 0.34,14.773 -5.92,21.805 -3.29,3.695 -9.33,7.113 -17.98,7.113 -14.36,0 -26.64,-9.391 -26.64,-28.602 0,-17.984 11.29,-27.691 29.27,-27.691 9.77,0 15.69,2.992 17.56,3.922 l 0.65,0.711 c 0.21,4.043 0.32,5.074 0.88,9.215 l -0.88,0.511 z m -8.23,20.344 c -10.08,-0.105 -14.25,-0.199 -27.53,-0.105 1.11,10.339 8.33,14.265 14.49,14.265 4.92,0 9.75,-2.379 11.95,-8.062 0.88,-2.375 0.99,-4.653 1.09,-6.098" /><path
|
||||||
|
id="path140"
|
||||||
|
style="fill:#aa9f93;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
d="m 2092.9,374.121 c -5.6,-0.199 -6.8,-0.305 -12.17,-0.832 l -0.65,0.633 c 0.09,1.34 0.09,2.781 0.09,4.125 0,1.863 -0.09,3.519 -0.22,5.582 l 0.78,0.617 c 5.7,0.414 6.68,0.508 12.17,1.027 l 0.66,-0.613 c -0.1,-4.242 -0.1,-5.277 0,-9.812 l -0.66,-0.727 z m -0.1,-68.699 c -5.71,-0.106 -6.59,-0.106 -11.96,-0.402 l -0.55,0.71 c 0.33,5.485 0.66,10.235 0.66,21.696 0,19.734 -0.33,23.453 -1.11,29.535 l 0.56,0.738 c 4.73,0.723 6.35,0.93 11.85,2.067 l 1.08,-0.618 c -0.32,-5.375 -0.65,-10.957 -0.65,-24.277 0,-19.215 0.22,-21.805 0.65,-28.828 l -0.53,-0.621" /><path
|
||||||
|
id="path142"
|
||||||
|
style="fill:#aa9f93;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
d="m 2149.7,305.316 c -3.06,0 -18.08,-0.093 -21.47,-0.093 -12.85,0 -14.27,0 -20.96,-0.203 l -0.44,0.929 c 8.33,13.004 21.6,35.114 27.18,45.039 -14.45,-0.109 -17.09,-0.109 -24.12,-0.418 l -0.53,0.621 c 0.43,3.403 0.53,4.231 0.76,7.118 l 0.66,0.621 c 18.42,0 20.51,0 39.59,0.312 l 0.56,-0.82 c -9.78,-15.082 -23.69,-39.68 -26.66,-44.945 9.44,0.117 18.86,0.316 26.32,0.632 l 0.55,-0.632 c -0.45,-3.196 -0.55,-4.539 -0.77,-7.641 l -0.67,-0.52" /><path
|
||||||
|
id="path144"
|
||||||
|
style="fill:#aa9f93;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
d="m 1828.36,930.41 c 19.04,-5.824 62.36,-19.726 62.36,-67.265 0,-17.942 -7.14,-38.114 -26.66,-52.922 -25.23,-20.18 -59.03,-21.524 -76.17,-21.524 -25.7,0 -47.13,4.485 -65.21,11.211 -2.39,0.891 -4.77,1.789 -7.15,2.688 l -2.38,4.043 c 1.91,17.492 1.91,19.742 2.86,37.668 l 4.76,1.343 c 8.57,-6.273 29.51,-21.519 66.17,-21.519 37.61,0 51.42,19.726 51.42,33.629 0,20.625 -20.46,27.347 -49.51,36.328 l -15.24,4.933 c -19.52,5.829 -62.36,18.829 -62.36,65.008 0,46.199 42.84,69.079 96.16,69.079 35.25,0 59.98,-9.43 68.56,-12.56 l 2.39,-3.15 c -1.9,-16.58 -2.39,-18.373 -3.83,-35.42 l -4.28,-1.792 c -11.9,7.179 -30.46,17.941 -61.41,17.941 -6.66,0 -13.33,-0.449 -20.47,-2.246 -14.28,-3.586 -26.18,-13.004 -26.18,-26.899 0,-19.293 19.51,-25.125 49.05,-33.64 l 17.12,-4.934" /><path
|
||||||
|
id="path146"
|
||||||
|
style="fill:#aa9f93;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
d="m 2166.38,914.277 c -0.96,31.379 -7.14,62.778 -29.05,86.543 -20.94,22.42 -52.84,32.29 -85.21,32.29 -47.62,0 -75.22,-18.4 -88.57,-31.4 -31.87,-30.042 -32.84,-73.991 -32.84,-91.026 0,-14.801 0.49,-60.539 32.84,-91.481 15.24,-14.808 42.38,-30.058 85.22,-30.058 33.34,0 61.43,7.632 82.37,27.371 15.72,14.785 25.7,32.281 30.93,54.254 3.35,13.445 4.31,28.253 4.31,43.507 z m -51.9,-1.797 c 0.48,-9.414 0,-39.472 -10.96,-59.648 -13.79,-24.664 -36.64,-30.047 -54.25,-30.047 -9.54,0 -19.54,1.801 -28.11,5.832 -37.61,17.934 -38.08,63.238 -38.08,81.168 0,18.832 1.44,44.836 14.29,63.231 16.66,25.113 43.32,26.011 52.37,26.011 26.66,0 41.89,-11.66 50.93,-25.562 11.91,-19.742 13.81,-49.781 13.81,-60.985" /><path
|
||||||
|
id="path148"
|
||||||
|
style="fill:#aa9f93;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
d="m 1656.94,910.578 c 0,-15.644 -12.68,-28.34 -28.34,-28.34 -15.65,0 -28.33,12.696 -28.33,28.34 0,15.645 12.68,28.348 28.33,28.348 15.66,0 28.34,-12.703 28.34,-28.348" /><path
|
||||||
|
id="path150"
|
||||||
|
style="fill:#0979b8;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
d="m 1004.69,1107.68 c -0.47,-34.54 -0.95,-55.61 -0.95,-87 0,-75.34 1.43,-150.231 5.24,-225.571 l -2.38,-2.683 c -40.467,0.449 -49.983,0 -85.702,-1.348 l -2.375,2.695 c 2.375,63.219 2.375,78.024 1.434,138.555 -19.043,0.449 -38.086,0.899 -57.137,0.899 -18.558,0 -36.179,-0.45 -57.117,-1.348 0.469,-65.016 0.938,-81.168 3.801,-136.77 l -2.379,-2.683 c -41.887,0.449 -50.465,0 -85.215,-1.348 l -2.383,2.695 c 0.953,37.653 1.911,59.625 1.911,99.997 0,111.2 -2.864,166.37 -5.243,212.57 l 2.86,2.68 c 41.414,0 48.55,0 85.215,1.34 l 2.371,-2.68 -0.938,-118.395 c 16.66,0 33.789,-0.449 50.449,-0.449 21.438,0 42.371,0.449 63.321,0.898 -0.465,52.926 -0.465,65.916 -3.809,116.606 l 2.387,2.68 c 39.992,0 46.168,0 84.259,1.34 l 2.38,-2.68" /><path
|
||||||
|
id="path152"
|
||||||
|
style="fill:#0979b8;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
d="m 1280.73,858.781 c -18.1,-8.965 -39.53,-19.281 -74.27,-19.281 -28.56,0 -48.09,8.527 -59.52,24.672 -7.14,9.418 -8.56,18.387 -10.46,27.359 l 153.77,2.688 2.85,3.133 c -0.46,21.968 -0.95,44.406 -7.6,66.82 -16.68,52.918 -53.34,63.688 -69.52,67.278 -11.9,3.12 -22.85,4.02 -33.8,4.02 -74.75,0 -124.26,-46.185 -124.26,-123.767 0,-21.07 3.82,-43.043 11.43,-58.746 27.62,-60.531 92.36,-65.918 126.64,-65.918 39.51,0 56.66,6.734 81.88,16.149 l 2.86,3.582 3.33,50.664 -3.33,1.347 z m -144.25,80.282 c 1.42,13.902 4.75,32.73 22.85,43.488 5.71,3.59 12.39,4.937 19.04,4.937 15.72,0 25.22,-7.621 30.47,-15.695 6.66,-9.867 7.14,-20.621 7.14,-30.934 l -79.5,-1.796" /><path
|
||||||
|
id="path154"
|
||||||
|
style="fill:#0979b8;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
d="m 1481.62,939.063 c 26.19,-9.43 62.85,-22.43 62.85,-71.75 0,-3.141 0,-6.274 -0.5,-9.879 -8.55,-64.11 -79.96,-70.395 -116.14,-70.395 -34.74,0 -54.75,7.176 -78.08,15.25 l -2.37,4.031 c 1.91,22.418 2.37,27.352 3.33,50.672 l 4.28,1.789 c 7.13,-5.383 10.96,-8.519 19.05,-12.551 17.61,-8.515 37.13,-12.558 50.46,-12.558 26.65,0 37.61,12.109 37.61,23.32 0,16.145 -20.97,22.879 -33.8,26.903 l -18.1,6.289 c -22.37,8.066 -61.88,22.418 -61.88,70.402 0,17.937 6.66,31.387 12.85,39.464 24.75,33.63 71.42,35.42 94.73,35.42 30.96,0 50.48,-5.37 72.83,-11.21 l 2.39,-2.69 -4.75,-48.882 -4.3,-1.348 c -11.88,7.183 -30.46,18.836 -59.49,18.836 -29.53,0 -33.34,-14.793 -33.34,-20.172 0,-12.559 12.85,-17.484 29.05,-22.867 l 23.32,-8.074" /><path
|
||||||
|
id="path156"
|
||||||
|
style="fill:#aa9f93;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
d="m 1755.3,153.285 c -11.04,-1.547 -21.32,-2.988 -21.32,-12.164 0,-0.512 0,-9.375 10.39,-9.375 6.78,0 10.72,3.5 11.92,4.535 l 0,17.215 -0.99,-0.211 z m 12.25,-7.523 c 0,-12.774 0.11,-13.914 0.66,-20.614 l -0.55,-0.515 c -5.15,-0.102 -6.01,-0.199 -11.05,-0.41 l -0.43,0.621 0.11,3.703 c -2.07,-1.535 -6.99,-5.25 -15.31,-5.25 -10.93,0 -18.6,7.008 -18.6,17.207 0,13.812 12.25,18.246 31.95,20.402 l 1.85,0.211 c 0,2.778 0,4.742 -0.98,6.387 -1.09,1.859 -3.62,3.816 -9.08,3.816 -7.11,0 -12.03,-2.058 -16.62,-3.918 l -0.88,0.52 c 0.22,4.738 0.22,5.359 0.33,7.516 l 0.67,0.621 c 6.11,2.058 12.46,3.406 18.9,3.406 8.09,0 15.97,-2.578 18.27,-10.625 0.76,-2.875 0.76,-8.547 0.76,-12.879 l 0,-10.199" /><path
|
||||||
|
id="path158"
|
||||||
|
style="fill:#aa9f93;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
d="m 1834.4,124.633 c -5.23,-0.102 -5.88,-0.102 -10.93,-0.41 l -0.77,0.722 c 0,1.137 0.12,2.266 0.12,3.403 0.12,5.05 0.12,10.097 0.12,15.152 0,15.867 -0.12,16.898 -0.67,19.059 -2.08,7.832 -8.31,7.832 -9.82,7.832 -6.57,0 -11.62,-3.606 -14.56,-5.77 -0.13,-17.933 0.1,-27.308 0.87,-39.367 l -0.65,-0.621 c -5.36,-0.102 -6.23,-0.102 -11.49,-0.41 l -0.56,0.722 c 0.13,5.77 0.35,11.336 0.35,18.965 0,16.488 -0.78,25.242 -1.3,32.149 l 0.64,0.718 c 5.45,0.934 6.45,1.141 11.58,2.071 l 0.78,-0.731 -0.12,-5.355 c 2.84,1.855 9.63,6.39 19.26,6.39 2.72,0 6.13,-0.414 9.07,-1.957 2.85,-1.547 5.14,-3.914 6.35,-6.703 1.42,-3.09 1.51,-6.176 1.64,-12.574 l 0,-12.051 c 0.31,-12.058 0.43,-16.699 0.74,-20.613 l -0.65,-0.621" /><path
|
||||||
|
id="path160"
|
||||||
|
style="fill:#aa9f93;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
d="m 1888.37,170.703 c -1.86,0.098 -3.16,0.305 -5.46,0.305 -3.39,0 -10.61,-0.207 -15.86,-4.844 -2.39,-2.16 -6.33,-7.004 -6.33,-16.18 0,-5.875 1.75,-10.093 4.05,-12.671 1.96,-2.168 5.56,-4.637 11.25,-4.637 6.67,0 10.71,3.301 12.24,4.531 0.22,13.5 0.22,16.594 0.11,33.496 z m -0.11,33.906 c 5.6,0.926 6.68,1.133 11.6,2.157 l 0.76,-0.61 c -0.76,-14.332 -0.86,-39.883 -0.86,-50.195 0,-15.969 0.43,-23.594 0.86,-30.707 l -0.54,-0.723 c -4.82,0 -6.12,-0.097 -11.15,-0.308 l -0.78,0.621 0.22,3.808 c -2.62,-1.851 -7.1,-5.148 -15.08,-5.148 -14.55,0 -24.6,10.82 -24.6,26.48 0,11.235 5.03,18.352 9.62,22.157 7.99,6.804 18.37,7.117 24.05,7.117 2.3,0 3.39,0 6.35,-0.211 0.11,12.777 -0.45,18.965 -0.99,24.941 l 0.54,0.621" /><path
|
||||||
|
id="path162"
|
||||||
|
style="fill:#aa9f93;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
d="m 1966.56,155.031 c 3.5,0 6.99,-0.101 10.5,-0.101 3.71,0 7.65,0.101 11.48,0.101 l -10.49,34.836 -11.49,-34.836 z m 21.64,40.094 c 3.63,-11.332 7.78,-24.117 11.06,-33.906 3.38,-9.891 8.86,-25.762 12.14,-35.66 l -0.43,-0.821 c -5.71,-0.105 -8.12,-0.207 -12.7,-0.414 l -0.78,0.727 c -2.72,9.683 -3.59,12.461 -6.44,21.746 -4.36,0 -8.64,0.101 -13,0.101 -4.84,0 -9.85,-0.101 -14.21,-0.101 -3.2,-9.695 -3.85,-12.16 -6.48,-21.332 l -0.74,-0.727 c -4.71,0 -5.82,0 -11.27,-0.304 l -0.44,0.714 c 0.31,1.133 0.74,2.165 1.21,3.2 4.15,11.125 8.18,22.257 12.14,33.39 6.53,18.235 8.95,24.934 12.11,34.828 l 0.9,0.727 c 7.65,0.098 8.63,0.098 15.63,0.41 l 0.75,-0.723 0.55,-1.855" /><path
|
||||||
|
id="path164"
|
||||||
|
style="fill:#aa9f93;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
d="m 2049.05,167.402 c -1.11,0.414 -2.54,0.934 -4.39,0.934 -2.08,0 -3.6,-0.727 -4.59,-1.344 -4.49,-2.988 -4.49,-7.519 -4.49,-18.242 0,-11.648 0.34,-17.723 0.78,-23.496 l -0.56,-0.723 c -5.15,0 -6.32,-0.097 -11.58,-0.308 l -0.56,0.621 c 0.12,7.832 0.25,14.941 0.25,24.519 0,16.496 -0.35,20.719 -0.99,26.696 l 0.64,0.718 c 4.15,0.731 6.79,1.239 11.37,2.071 l 0.65,-0.621 -0.52,-8.766 c 1.3,3.301 4.02,9.894 13.34,9.894 1.39,0 2.17,-0.097 3.04,-0.308 l 0.45,-0.621 c -1.11,-4.946 -1.32,-5.977 -2.1,-10.504 l -0.74,-0.52" /><path
|
||||||
|
id="path166"
|
||||||
|
style="fill:#aa9f93;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
d="m 2093.83,132.676 c -0.34,-3.406 -0.34,-4.129 -0.47,-7.117 l -0.53,-0.614 c -2.28,-0.511 -4.15,-0.933 -8.2,-0.933 -2.63,0 -9.5,0 -12.91,5.367 -1.95,2.988 -1.95,5.461 -1.95,17.617 l 0.21,22.676 c -3.84,0 -3.93,-0.102 -7.86,-0.211 l -0.47,0.621 c 0.22,3.297 0.22,4.125 0.22,7.426 l 0.68,0.609 c 2.38,0 3.81,-0.101 7.43,0 -0.12,2.168 -0.12,4.434 -0.12,6.598 -0.09,1.957 -0.22,3.918 -0.31,5.875 l 0.53,0.719 c 4.92,1.136 6.13,1.449 11.14,2.89 l 0.78,-0.515 c -0.31,-6.801 -0.44,-8.145 -0.44,-15.668 4.58,0.101 5.92,0.101 12.14,0.312 l 0.56,-0.617 c -0.22,-2.684 -0.34,-3.813 -0.34,-7.32 l -0.56,-0.618 c -5.45,0.11 -6.09,0.207 -11.89,0.207 l -0.25,-19.167 c 0.13,-1.239 0.13,-7.114 0.13,-8.555 0,-7.524 0.98,-9.891 6.43,-9.891 2.33,0 4.07,0.512 5.28,0.93 l 0.77,-0.621" /><path
|
||||||
|
id="path168"
|
||||||
|
style="fill:#aa9f93;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
d="m 2132.6,155.863 c 4.36,-1.343 14.3,-4.535 14.3,-15.461 0,-4.121 -1.64,-8.754 -6.13,-12.16 -5.79,-4.64 -13.56,-4.945 -17.5,-4.945 -5.88,0 -10.8,1.027 -14.95,2.574 -0.56,0.211 -1.11,0.41 -1.64,0.621 l -0.56,0.93 c 0.43,4.016 0.43,4.523 0.65,8.652 l 1.08,0.313 c 1.98,-1.442 6.79,-4.949 15.21,-4.949 8.64,0 11.82,4.539 11.82,7.726 0,4.746 -4.7,6.285 -11.39,8.356 l -3.5,1.125 c -4.45,1.339 -14.31,4.328 -14.31,14.945 0,10.617 9.86,15.875 22.08,15.875 8.09,0 13.78,-2.168 15.77,-2.891 l 0.52,-0.715 c -0.44,-3.82 -0.52,-4.23 -0.87,-8.144 l -0.98,-0.41 c -2.73,1.648 -7,4.117 -14.09,4.117 -1.56,0 -3.07,-0.102 -4.71,-0.512 -3.28,-0.828 -6.01,-2.988 -6.01,-6.183 0,-4.434 4.46,-5.778 11.24,-7.735 l 3.97,-1.129" /><path
|
||||||
|
id="path170"
|
||||||
|
style="fill:#aa9f93;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
d="m 139.504,196.875 c -0.227,-9.375 -0.332,-11.852 -0.332,-19.988 0,-4.438 0,-7.735 0.105,-15.457 l 0.118,-9.278 c 0,-6.187 0,-15.05 -6.348,-21.543 -5.25,-5.355 -13.66,-7.621 -22.52,-7.621 -14.1012,0 -21.1051,5.36 -23.9489,8.348 -5.8984,6.387 -5.8984,12.574 -5.8984,24.625 l 0,10.512 c 0,14.941 0,16.699 -0.332,30.093 l 0.7656,0.727 c 6.0117,0.098 6.7773,0.098 12.2461,0.309 l 0.5469,-0.727 c -0.4375,-10.715 -0.4375,-29.371 -0.4375,-39.367 0,-10.301 0.2109,-16.586 4.0468,-20.817 1.8594,-2.168 6.1214,-5.043 13.6604,-5.043 2.738,0 11.375,0.2 15.535,7.825 2.406,4.328 2.406,10.203 2.406,18.246 0,11.953 -0.113,27.105 -0.875,38.847 l 0.535,0.727 c 5.036,0.098 5.696,0.098 10.071,0.309 l 0.656,-0.727" /><path
|
||||||
|
id="path172"
|
||||||
|
style="fill:#aa9f93;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
d="m 208.832,124.633 c -5.246,-0.102 -5.902,-0.102 -10.926,-0.41 l -0.765,0.722 c 0,1.137 0.105,2.266 0.105,3.403 0.109,5.05 0.109,10.097 0.109,15.152 0,15.867 -0.109,16.898 -0.66,19.059 -2.078,7.832 -8.304,7.832 -9.84,7.832 -6.562,0 -11.585,-3.606 -14.546,-5.77 -0.106,-17.933 0.117,-27.308 0.875,-39.367 l -0.649,-0.621 c -5.355,-0.102 -6.242,-0.102 -11.488,-0.41 l -0.539,0.722 c 0.105,5.77 0.32,11.336 0.32,18.965 0,16.488 -0.765,25.242 -1.308,32.149 l 0.66,0.718 c 5.465,0.934 6.453,1.141 11.59,2.071 l 0.765,-0.731 -0.109,-5.355 c 2.844,1.855 9.613,6.39 19.246,6.39 2.73,0 6.117,-0.414 9.07,-1.957 2.844,-1.547 5.141,-3.914 6.344,-6.703 1.426,-3.09 1.531,-6.176 1.641,-12.574 l 0,-12.051 c 0.328,-12.058 0.437,-16.699 0.765,-20.613 l -0.66,-0.621" /><path
|
||||||
|
id="path174"
|
||||||
|
style="fill:#aa9f93;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
d="m 241.355,193.168 c -5.585,-0.199 -6.781,-0.313 -12.136,-0.82 l -0.66,0.621 c 0.109,1.336 0.109,2.777 0.109,4.117 0,1.859 -0.109,3.504 -0.215,5.562 l 0.766,0.622 c 5.679,0.41 6.664,0.507 12.136,1.031 l 0.653,-0.621 c -0.11,-4.227 -0.11,-5.258 0,-9.793 l -0.653,-0.719 z m -0.109,-68.535 c -5.687,-0.102 -6.562,-0.102 -11.922,-0.41 l -0.551,0.722 c 0.332,5.465 0.661,10.2 0.661,21.641 0,19.687 -0.329,23.394 -1.094,29.473 l 0.547,0.718 c 4.703,0.731 6.347,0.934 11.812,2.071 l 1.086,-0.621 c -0.32,-5.356 -0.652,-10.922 -0.652,-24.223 0,-19.164 0.222,-21.746 0.652,-28.75 l -0.539,-0.621" /><path
|
||||||
|
id="path176"
|
||||||
|
style="fill:#aa9f93;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
d="m 285.648,124.633 c -6.121,-0.102 -7.644,-0.102 -13.992,-0.41 l -0.648,0.722 c -5.367,17.516 -11.051,34.938 -17.496,52.145 l 0.429,0.828 c 5.36,0.309 6.567,0.41 11.922,0.93 l 0.875,-0.52 c 4.043,-15.254 8.528,-30.504 13.012,-45.652 1.094,3.711 6.559,21.64 7.762,25.652 3.605,11.856 4.597,16.078 5.472,19.59 l 0.766,0.508 c 5.133,-0.199 6.008,-0.098 10.273,0 l 0.547,-0.715 c -6.675,-17.313 -12.574,-34.832 -18.261,-52.457 l -0.661,-0.621" /><path
|
||||||
|
id="path178"
|
||||||
|
style="fill:#aa9f93;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
d="m 351.992,164.004 c -2.187,5.668 -6.996,8.035 -11.918,8.035 -6.125,0 -13.34,-3.914 -14.429,-14.219 13.226,-0.101 17.382,0 27.441,0.098 -0.106,1.449 -0.219,3.711 -1.094,6.086 z m 10.176,-26.902 c -0.551,-4.114 -0.66,-5.157 -0.879,-9.172 l -0.652,-0.719 c -1.864,-0.93 -7.77,-3.914 -17.496,-3.914 -17.942,0 -29.196,9.691 -29.196,27.621 0,19.164 12.246,28.547 26.567,28.547 8.636,0 14.656,-3.406 17.929,-7.113 6.243,-7.008 6.016,-17.211 5.911,-21.747 l -0.766,-0.621 c -17.059,0.114 -20.016,0.114 -37.941,0 0.109,-3.601 0.429,-8.652 4.156,-12.882 4.48,-5.043 10.711,-5.567 14.105,-5.567 3.164,0 6.446,0.524 9.512,1.551 4.043,1.551 6.449,3.398 7.871,4.539 l 0.879,-0.523" /><path
|
||||||
|
id="path180"
|
||||||
|
style="fill:#aa9f93;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
d="m 406.605,167.402 c -1.085,0.414 -2.511,0.934 -4.371,0.934 -2.082,0 -3.605,-0.727 -4.593,-1.344 -4.489,-2.988 -4.489,-7.519 -4.489,-18.242 0,-11.648 0.332,-17.723 0.77,-23.496 l -0.543,-0.723 c -5.141,0 -6.344,-0.097 -11.594,-0.308 l -0.547,0.621 c 0.11,7.832 0.215,14.941 0.215,24.519 0,16.496 -0.32,20.719 -0.98,26.696 l 0.66,0.718 c 4.156,0.731 6.773,1.239 11.371,2.071 l 0.648,-0.621 -0.539,-8.766 c 1.309,3.301 4.035,9.894 13.34,9.894 1.418,0 2.188,-0.097 3.063,-0.308 l 0.433,-0.621 c -1.09,-4.946 -1.308,-5.977 -2.078,-10.504 l -0.766,-0.52" /><path
|
||||||
|
id="path182"
|
||||||
|
style="fill:#aa9f93;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
d="M 445.668,155.863 C 450.043,154.52 460,151.328 460,140.402 c 0,-4.121 -1.641,-8.754 -6.133,-12.16 -5.793,-4.64 -13.554,-4.945 -17.496,-4.945 -5.898,0 -10.82,1.027 -14.976,2.574 -0.543,0.211 -1.09,0.41 -1.633,0.621 l -0.551,0.93 c 0.434,4.016 0.434,4.523 0.656,8.652 l 1.094,0.313 c 1.965,-1.442 6.781,-4.949 15.195,-4.949 8.641,0 11.813,4.539 11.813,7.726 0,4.746 -4.707,6.285 -11.371,8.356 l -3.496,1.125 c -4.485,1.339 -14.332,4.328 -14.332,14.945 0,10.617 9.847,15.875 22.093,15.875 8.09,0 13.77,-2.168 15.746,-2.891 l 0.539,-0.715 c -0.429,-3.82 -0.539,-4.23 -0.875,-8.144 l -0.98,-0.41 c -2.734,1.648 -6.996,4.117 -14.105,4.117 -1.532,0 -3.063,-0.102 -4.7,-0.512 -3.281,-0.828 -6.015,-2.988 -6.015,-6.183 0,-4.434 4.484,-5.778 11.265,-7.735 l 3.93,-1.129" /><path
|
||||||
|
id="path184"
|
||||||
|
style="fill:#aa9f93;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
d="m 487.559,193.168 c -5.582,-0.199 -6.782,-0.313 -12.137,-0.82 l -0.66,0.621 c 0.109,1.336 0.109,2.777 0.109,4.117 0,1.859 -0.109,3.504 -0.219,5.562 l 0.77,0.622 c 5.683,0.41 6.664,0.507 12.137,1.031 l 0.648,-0.621 c -0.105,-4.227 -0.105,-5.258 0,-9.793 l -0.648,-0.719 z m -0.11,-68.535 c -5.687,-0.102 -6.566,-0.102 -11.922,-0.41 l -0.547,0.722 c 0.333,5.465 0.657,10.2 0.657,21.641 0,19.687 -0.324,23.394 -1.09,29.473 l 0.543,0.718 c 4.707,0.731 6.348,0.934 11.808,2.071 l 1.094,-0.621 c -0.324,-5.356 -0.656,-10.922 -0.656,-24.223 0,-19.164 0.223,-21.746 0.656,-28.75 l -0.543,-0.621" /><path
|
||||||
|
id="path186"
|
||||||
|
style="fill:#aa9f93;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
d="m 532.832,132.676 c -0.328,-3.406 -0.328,-4.129 -0.434,-7.117 l -0.55,-0.614 c -2.293,-0.511 -4.157,-0.933 -8.2,-0.933 -2.625,0 -9.511,0 -12.906,5.367 -1.965,2.988 -1.965,5.461 -1.965,17.617 l 0.215,22.676 c -3.82,0 -3.929,-0.102 -7.871,-0.211 l -0.433,0.621 c 0.214,3.297 0.214,4.125 0.214,7.426 l 0.661,0.609 c 2.402,0 3.824,-0.101 7.429,0 -0.105,2.168 -0.105,4.434 -0.105,6.598 -0.11,1.957 -0.219,3.918 -0.328,5.875 l 0.543,0.719 c 4.925,1.136 6.125,1.449 11.156,2.89 l 0.765,-0.515 c -0.332,-6.801 -0.441,-8.145 -0.441,-15.668 4.598,0.101 5.906,0.101 12.137,0.312 l 0.551,-0.617 c -0.211,-2.684 -0.332,-3.813 -0.332,-7.32 l -0.54,-0.618 c -5.468,0.11 -6.125,0.207 -11.925,0.207 l -0.215,-19.167 c 0.109,-1.239 0.109,-7.114 0.109,-8.555 0,-7.524 0.981,-9.891 6.453,-9.891 2.289,0 4.043,0.512 5.25,0.93 l 0.762,-0.621" /><path
|
||||||
|
id="path188"
|
||||||
|
style="fill:#aa9f93;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
d="m 589.988,177.508 c -6.226,-14.531 -16.726,-41.742 -19.461,-48.961 -3.386,-9.375 -6.672,-18.758 -8.961,-28.336 l -0.992,-0.8204 c -5.469,-0.1093 -6.449,-0.1093 -11.59,-0.3125 l -0.429,0.7227 0.429,0.7192 c 1.977,3.808 3.61,7.832 5.473,11.851 1.527,3.399 3.387,6.695 4.59,10.305 0.113,0.207 0.223,0.515 0.328,0.828 0,1.234 -16.293,42.769 -20.996,53.273 l 0.445,0.934 c 5.461,0.406 6.551,0.406 12.137,1.027 l 0.648,-0.621 c 2.957,-9.277 4.375,-13.601 6.786,-20.297 l 6.886,-19.687 6.235,18.14 c 2.297,7.114 5.027,15.555 6.781,21.438 l 0.766,0.617 c 2.73,0 5.679,0 10.605,0.098 l 0.32,-0.918" /><path
|
||||||
|
id="path190"
|
||||||
|
style="fill:#aa9f93;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
d="m 675.414,165.758 c -2.074,3.195 -5.57,5.871 -11.691,5.871 -2.086,0 -8.211,-0.207 -12.035,-5.977 -2.95,-4.222 -3.282,-10.199 -3.282,-14.531 0,-4.125 0.11,-14.527 8.746,-18.652 1.981,-0.934 4.27,-1.34 6.457,-1.34 4.043,0 9.289,1.238 12.465,6.906 2.516,4.637 2.621,11.539 2.516,13.703 0,2.578 -0.442,9.481 -3.176,14.02 z m 14.106,-23.606 c -1.2,-5.05 -3.5,-9.066 -7.11,-12.464 -4.805,-4.54 -11.258,-6.286 -18.914,-6.286 -9.84,0 -16.074,3.5 -19.57,6.903 -7.434,7.109 -7.539,17.625 -7.539,21.023 0,3.914 0.215,14.016 7.539,20.922 3.066,2.988 9.402,7.215 20.336,7.215 7.437,0 14.761,-2.27 19.578,-7.426 5.031,-5.457 6.449,-12.672 6.664,-19.887 0,-3.507 -0.215,-6.906 -0.984,-10" /><path
|
||||||
|
id="path192"
|
||||||
|
style="fill:#aa9f93;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
d="m 721.063,124.531 c -5.028,0 -6.012,0 -11.809,-0.308 l -0.555,0.722 c 0.555,10.821 0.555,21.953 0.555,32.875 0,5.465 0,7.317 -0.109,11.852 -2.735,-0.102 -5.461,-0.102 -7.657,-0.102 l -0.648,0.614 c 0.215,2.886 0.32,3.918 0.43,7.421 l 0.66,0.622 c 3.273,-0.11 5.468,-0.211 6.996,-0.211 l -0.11,6.808 c 0,5.145 0,6.387 0.329,8.242 2.515,11.954 16.07,11.954 19.136,11.954 1.641,0 2.735,-0.098 4.157,-0.211 l 0.542,-0.719 c -0.429,-2.891 -0.542,-4.227 -0.769,-7.418 l -0.766,-0.516 c -0.98,0.211 -1.75,0.41 -2.949,0.41 -2.297,0 -4.805,-0.41 -6.555,-3.089 -1.75,-2.579 -1.75,-5.465 -1.644,-12.364 l 0,-3.097 c 0.223,0 9.73,0.211 10.824,0.211 l 0.551,-0.622 c -0.227,-3.296 -0.332,-4.125 -0.442,-7.312 l -0.648,-0.621 c -4.707,0.101 -5.687,0.101 -10.062,0.101 0,-13.699 0.105,-27.515 0.871,-41.226 0,-1.027 0.109,-2.156 0.214,-3.293 l -0.542,-0.723" /><path
|
||||||
|
id="path194"
|
||||||
|
style="fill:#aa9f93;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
d="m 795.906,155.031 c 3.504,0 7,-0.101 10.5,-0.101 3.715,0 7.649,0.101 11.481,0.101 l -10.5,34.836 -11.481,-34.836 z m 21.649,40.094 c 3.613,-11.332 7.761,-24.117 11.043,-33.906 3.394,-9.891 8.859,-25.762 12.14,-35.66 l -0.441,-0.821 c -5.684,-0.105 -8.09,-0.207 -12.68,-0.414 l -0.765,0.727 c -2.735,9.683 -3.61,12.461 -6.454,21.746 -4.367,0 -8.636,0.101 -13.011,0.101 -4.813,0 -9.844,-0.101 -14.211,-0.101 -3.176,-9.695 -3.828,-12.16 -6.457,-21.332 l -0.766,-0.727 c -4.699,0 -5.793,0 -11.262,-0.304 l -0.433,0.714 c 0.32,1.133 0.765,2.165 1.203,3.2 4.152,11.125 8.199,22.257 12.133,33.39 6.566,18.235 8.965,24.934 12.136,34.828 l 0.875,0.727 c 7.657,0.098 8.641,0.098 15.641,0.41 l 0.766,-0.723 0.543,-1.855" /><path
|
||||||
|
id="path196"
|
||||||
|
style="fill:#aa9f93;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
d="m 869.723,132.156 c 14.425,0 22.742,8.657 22.742,21.34 0,10.711 -6.016,17.305 -14.762,17.305 -5.906,0 -10.062,-2.676 -12.582,-4.328 -0.105,-5.356 -0.215,-10.61 -0.215,-15.868 0,-6.074 0.11,-12.16 0.215,-18.136 1.426,-0.102 2.746,-0.313 4.602,-0.313 z m -4.817,41.742 c 2.196,1.649 7.438,5.567 15.961,5.567 13.891,0 23.621,-10.723 23.621,-25.25 0,-15.973 -11.265,-29.684 -34.332,-29.684 -2.074,0 -3.394,0.102 -4.922,0.207 0.114,-12.367 0.332,-15.047 0.879,-24.726 l -0.652,-0.6214 c -3.836,-0.1093 -7.656,-0.2109 -11.484,-0.3125 l -0.547,0.6211 c 0.215,6.2808 0.437,12.7698 0.437,23.2888 0,6.082 -0.117,12.157 -0.117,18.242 -0.105,15.969 -0.105,23.188 -1.414,34.934 l 0.539,0.613 c 5.355,0.828 6.566,1.141 11.488,2.071 l 0.758,-0.621 -0.215,-4.329" /><path
|
||||||
|
id="path198"
|
||||||
|
style="fill:#aa9f93;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
d="m 938.633,132.156 c 14.433,0 22.746,8.657 22.746,21.34 0,10.711 -6.02,17.305 -14.762,17.305 -5.91,0 -10.062,-2.676 -12.578,-4.328 -0.113,-5.356 -0.223,-10.61 -0.223,-15.868 0,-6.074 0.11,-12.16 0.223,-18.136 1.422,-0.102 2.738,-0.313 4.594,-0.313 z m -4.817,41.742 c 2.196,1.649 7.446,5.567 15.965,5.567 13.891,0 23.617,-10.723 23.617,-25.25 0,-15.973 -11.257,-29.684 -34.332,-29.684 -2.074,0 -3.386,0.102 -4.921,0.207 0.117,-12.367 0.332,-15.047 0.882,-24.726 l -0.656,-0.6214 c -3.836,-0.1093 -7.656,-0.2109 -11.48,-0.3125 l -0.551,0.6211 c 0.219,6.2808 0.441,12.7698 0.441,23.2888 0,6.082 -0.113,12.157 -0.113,18.242 -0.109,15.969 -0.109,23.188 -1.418,34.934 l 0.543,0.613 c 5.355,0.828 6.562,1.141 11.484,2.071 l 0.762,-0.621 -0.223,-4.329" /><path
|
||||||
|
id="path200"
|
||||||
|
style="fill:#aa9f93;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
d="m 1002.7,124.633 c -5.255,-0.102 -6.348,-0.199 -11.489,-0.41 l -0.535,0.722 c 0.215,7.313 0.535,16.598 0.535,36.383 0,14.219 0,29.473 -1.09,42.66 l 0.555,0.621 c 5.355,0.821 6.441,1.028 11.914,2.157 l 0.65,-0.719 c -0.76,-13.5 -0.76,-27.102 -0.76,-40.598 0,-22.57 0.32,-30.402 0.87,-40.195 l -0.65,-0.621" /><path
|
||||||
|
id="path202"
|
||||||
|
style="fill:#aa9f93;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
d="m 1035.38,193.168 c -5.59,-0.199 -6.79,-0.313 -12.14,-0.82 l -0.66,0.621 c 0.11,1.336 0.11,2.777 0.11,4.117 0,1.859 -0.11,3.504 -0.22,5.562 l 0.77,0.622 c 5.68,0.41 6.66,0.507 12.14,1.031 l 0.65,-0.621 c -0.11,-4.227 -0.11,-5.258 0,-9.793 l -0.65,-0.719 z m -0.12,-68.535 c -5.68,-0.102 -6.55,-0.102 -11.91,-0.41 l -0.55,0.722 c 0.33,5.465 0.66,10.2 0.66,21.641 0,19.687 -0.33,23.394 -1.1,29.473 l 0.55,0.718 c 4.7,0.731 6.34,0.934 11.81,2.071 l 1.09,-0.621 c -0.32,-5.356 -0.66,-10.922 -0.66,-24.223 0,-19.164 0.23,-21.746 0.66,-28.75 l -0.55,-0.621" /><path
|
||||||
|
id="path204"
|
||||||
|
style="fill:#aa9f93;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
d="m 1090.83,164.004 c -2.18,5.668 -6.99,8.035 -11.91,8.035 -6.12,0 -13.33,-3.914 -14.43,-14.219 13.23,-0.101 17.38,0 27.44,0.098 -0.1,1.449 -0.21,3.711 -1.1,6.086 z m 10.18,-26.902 c -0.55,-4.114 -0.65,-5.157 -0.87,-9.172 l -0.67,-0.719 c -1.85,-0.93 -7.75,-3.914 -17.49,-3.914 -17.93,0 -29.19,9.691 -29.19,27.621 0,19.164 12.25,28.547 26.58,28.547 8.63,0 14.64,-3.406 17.92,-7.113 6.24,-7.008 6.03,-17.211 5.92,-21.747 l -0.78,-0.621 c -17.06,0.114 -20,0.114 -37.94,0 0.11,-3.601 0.44,-8.652 4.16,-12.882 4.48,-5.043 10.72,-5.567 14.1,-5.567 3.18,0 6.46,0.524 9.51,1.551 4.06,1.551 6.46,3.398 7.88,4.539 l 0.87,-0.523" /><path
|
||||||
|
id="path206"
|
||||||
|
style="fill:#aa9f93;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
d="m 1156.76,170.703 c -1.86,0.098 -3.16,0.305 -5.47,0.305 -3.38,0 -10.6,-0.207 -15.85,-4.844 -2.4,-2.16 -6.33,-7.004 -6.33,-16.18 0,-5.875 1.75,-10.093 4.04,-12.671 1.97,-2.168 5.58,-4.637 11.25,-4.637 6.68,0 10.72,3.301 12.25,4.531 0.22,13.5 0.22,16.594 0.11,33.496 z m -0.11,33.906 c 5.59,0.926 6.68,1.133 11.6,2.157 l 0.76,-0.61 c -0.76,-14.332 -0.87,-39.883 -0.87,-50.195 0,-15.969 0.43,-23.594 0.87,-30.707 l -0.54,-0.723 c -4.82,0 -6.12,-0.097 -11.15,-0.308 l -0.78,0.621 0.22,3.808 c -2.61,-1.851 -7.11,-5.148 -15.08,-5.148 -14.55,0 -24.6,10.82 -24.6,26.48 0,11.235 5.03,18.352 9.61,22.157 7.99,6.804 18.38,7.117 24.06,7.117 2.3,0 3.4,0 6.35,-0.211 0.11,12.777 -0.45,18.965 -0.99,24.941 l 0.54,0.621" /><path
|
||||||
|
id="path208"
|
||||||
|
style="fill:#aa9f93;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
d="m 1254.52,165.758 c 7.96,-3.297 18.58,-7.629 18.58,-20.817 0,-11.543 -9.08,-21.953 -28.12,-21.953 -11.58,0 -19.01,3.293 -21.65,4.532 l -0.43,0.722 c 0.43,3.606 0.56,5.567 0.87,9.481 l 1.11,0.41 c 2.73,-1.746 9.08,-6.074 19.23,-6.074 11.28,0 15.98,5.453 15.98,11.64 0,7.219 -6.34,9.996 -13.47,12.574 l -5.45,2.266 c -7.77,3.399 -18.14,7.836 -18.14,20.406 0,3.817 1.08,7.727 3.37,10.825 5.05,6.796 14.12,9.062 22.98,9.062 8.64,0 13.87,-1.539 19.66,-3.297 l 0.56,-0.82 c -0.43,-3.914 -0.56,-5.356 -0.87,-9.07 l -0.9,-0.411 c -4.68,2.266 -9.81,4.735 -18.02,4.735 -9.07,0 -14.77,-4.02 -14.77,-10.09 0,-4.641 3.28,-6.809 5.58,-8.149 1.42,-0.82 1.85,-1.027 8.42,-3.71 l 5.48,-2.262" /><path
|
||||||
|
id="path210"
|
||||||
|
style="fill:#aa9f93;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
d="m 1331.34,136.797 c -0.43,-4.43 -0.54,-4.949 -0.88,-9.176 l -0.76,-0.719 c -3.17,-1.437 -7.43,-3.5 -15.1,-3.5 -16.5,0 -27.21,11.235 -27.21,27.305 0,16.387 10.5,28.758 27.43,28.758 7.11,0 12.14,-2.168 14.99,-3.301 l 0.43,-0.726 c -0.43,-3.708 -0.54,-5.047 -0.76,-8.133 l -0.88,-0.422 c -3.6,2.48 -7.76,4.027 -12.14,4.027 -9.07,0 -17.05,-6.594 -17.05,-19.789 0,-14.019 8.41,-19.062 16.94,-19.062 7.45,0 12.03,3.605 14.11,5.148 l 0.88,-0.41" /><path
|
||||||
|
id="path212"
|
||||||
|
style="fill:#aa9f93;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
d="m 1357.48,193.168 c -5.58,-0.199 -6.79,-0.313 -12.14,-0.82 l -0.65,0.621 c 0.09,1.336 0.09,2.777 0.09,4.117 0,1.859 -0.09,3.504 -0.21,5.562 l 0.77,0.622 c 5.7,0.41 6.66,0.507 12.14,1.031 l 0.65,-0.621 c -0.1,-4.227 -0.1,-5.258 0,-9.793 l -0.65,-0.719 z m -0.13,-68.535 c -5.67,-0.102 -6.56,-0.102 -11.92,-0.41 l -0.53,0.722 c 0.31,5.465 0.66,10.2 0.66,21.641 0,19.687 -0.35,23.394 -1.09,29.473 l 0.53,0.718 c 4.7,0.731 6.35,0.934 11.83,2.071 l 1.08,-0.621 c -0.34,-5.356 -0.65,-10.922 -0.65,-24.223 0,-19.164 0.22,-21.746 0.65,-28.75 l -0.56,-0.621" /><path
|
||||||
|
id="path214"
|
||||||
|
style="fill:#aa9f93;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
d="m 1412.96,164.004 c -2.19,5.668 -6.99,8.035 -11.92,8.035 -6.13,0 -13.34,-3.914 -14.42,-14.219 13.21,-0.101 17.36,0 27.43,0.098 -0.09,1.449 -0.22,3.711 -1.09,6.086 z m 10.16,-26.902 c -0.52,-4.114 -0.65,-5.157 -0.86,-9.172 l -0.65,-0.719 c -1.86,-0.93 -7.78,-3.914 -17.5,-3.914 -17.93,0 -29.2,9.691 -29.2,27.621 0,19.164 12.26,28.547 26.57,28.547 8.64,0 14.64,-3.406 17.92,-7.113 6.26,-7.008 6.04,-17.211 5.92,-21.747 l -0.77,-0.621 c -17.06,0.114 -20.01,0.114 -37.93,0 0.12,-3.601 0.43,-8.652 4.14,-12.882 4.49,-5.043 10.72,-5.567 14.12,-5.567 3.16,0 6.44,0.524 9.51,1.551 4.06,1.551 6.44,3.398 7.87,4.539 l 0.86,-0.523" /><path
|
||||||
|
id="path216"
|
||||||
|
style="fill:#aa9f93;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
d="m 1490.58,124.633 c -5.25,-0.102 -5.9,-0.102 -10.93,-0.41 l -0.77,0.722 c 0,1.137 0.1,2.266 0.1,3.403 0.11,5.05 0.11,10.097 0.11,15.152 0,15.867 -0.11,16.898 -0.65,19.059 -2.07,7.832 -8.31,7.832 -9.85,7.832 -6.54,0 -11.58,-3.606 -14.53,-5.77 -0.11,-17.933 0.11,-27.308 0.88,-39.367 l -0.67,-0.621 c -5.35,-0.102 -6.22,-0.102 -11.47,-0.41 l -0.56,0.722 c 0.13,5.77 0.34,11.336 0.34,18.965 0,16.488 -0.77,25.242 -1.31,32.149 l 0.65,0.718 c 5.46,0.934 6.45,1.141 11.6,2.071 l 0.75,-0.731 -0.1,-5.355 c 2.84,1.855 9.62,6.39 19.24,6.39 2.74,0 6.13,-0.414 9.07,-1.957 2.85,-1.547 5.14,-3.914 6.35,-6.703 1.42,-3.09 1.53,-6.176 1.64,-12.574 l 0,-12.051 c 0.33,-12.058 0.43,-16.699 0.76,-20.613 l -0.65,-0.621" /><path
|
||||||
|
id="path218"
|
||||||
|
style="fill:#aa9f93;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
d="m 1552.09,136.797 c -0.43,-4.43 -0.53,-4.949 -0.87,-9.176 l -0.77,-0.719 c -3.16,-1.437 -7.43,-3.5 -15.08,-3.5 -16.5,0 -27.22,11.235 -27.22,27.305 0,16.387 10.5,28.758 27.44,28.758 7.09,0 12.13,-2.168 14.99,-3.301 l 0.43,-0.726 c -0.43,-3.708 -0.56,-5.047 -0.78,-8.133 l -0.86,-0.422 c -3.63,2.48 -7.78,4.027 -12.14,4.027 -9.08,0 -17.06,-6.594 -17.06,-19.789 0,-14.019 8.42,-19.062 16.93,-19.062 7.47,0 12.05,3.605 14.12,5.148 l 0.87,-0.41" /><path
|
||||||
|
id="path220"
|
||||||
|
style="fill:#aa9f93;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
d="m 1601.36,164.004 c -2.17,5.668 -7,8.035 -11.9,8.035 -6.12,0 -13.34,-3.914 -14.45,-14.219 13.25,-0.101 17.4,0 27.46,0.098 -0.13,1.449 -0.21,3.711 -1.11,6.086 z m 10.18,-26.902 c -0.55,-4.114 -0.64,-5.157 -0.87,-9.172 l -0.67,-0.719 c -1.87,-0.93 -7.74,-3.914 -17.5,-3.914 -17.93,0 -29.17,9.691 -29.17,27.621 0,19.164 12.24,28.547 26.57,28.547 8.64,0 14.65,-3.406 17.93,-7.113 6.22,-7.008 6.01,-17.211 5.91,-21.747 l -0.77,-0.621 c -17.06,0.114 -20,0.114 -37.96,0 0.12,-3.601 0.46,-8.652 4.18,-12.882 4.45,-5.043 10.71,-5.567 14.08,-5.567 3.19,0 6.48,0.524 9.51,1.551 4.06,1.551 6.48,3.398 7.89,4.539 l 0.87,-0.523" /><path
|
||||||
|
id="path222"
|
||||||
|
style="fill:#aa9f93;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
d="m 1653.61,155.863 c 4.37,-1.343 14.32,-4.535 14.32,-15.461 0,-4.121 -1.64,-8.754 -6.13,-12.16 -5.79,-4.64 -13.55,-4.945 -17.49,-4.945 -5.9,0 -10.82,1.027 -14.97,2.574 -0.56,0.211 -1.11,0.41 -1.64,0.621 l -0.56,0.93 c 0.45,4.016 0.45,4.523 0.66,8.652 l 1.09,0.313 c 1.98,-1.442 6.77,-4.949 15.2,-4.949 8.63,0 11.81,4.539 11.81,7.726 0,4.746 -4.71,6.285 -11.38,8.356 l -3.49,1.125 c -4.48,1.339 -14.33,4.328 -14.33,14.945 0,10.617 9.85,15.875 22.1,15.875 8.08,0 13.78,-2.168 15.74,-2.891 l 0.55,-0.715 c -0.44,-3.82 -0.55,-4.23 -0.87,-8.144 l -1,-0.41 c -2.73,1.648 -6.99,4.117 -14.1,4.117 -1.53,0 -3.07,-0.102 -4.71,-0.512 -3.28,-0.828 -6,-2.988 -6,-6.183 0,-4.434 4.47,-5.778 11.25,-7.735 l 3.95,-1.129" /><path
|
||||||
|
id="path224"
|
||||||
|
style="fill:#aa9f93;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
d="m 1150.8,1.55078 c -7.43,0 -8.53,0 -15.75,-0.3125 l -0.75,0.72266 c -1.76,10.30076 -2.42,13.28906 -3.95,20.80856 l -8.97,44.4219 -9.07,-42.043 c -0.54,-2.789 -1.08,-5.6796 -1.75,-8.4492 -0.87,-4.4375 -2.51,-11.96092 -2.94,-14.43748 l -0.67,-0.71094 c -7.86,0 -8.31,-0.10937 -15.85,-0.3125 l -0.76,0.72266 c -1.98,9.26956 -11.05,48.32816 -16.95,71.61716 l 0.54,0.7305 c 6.13,0 7.11,0.1016 12.46,0.3125 l 0.67,-0.7305 c 0.65,-3.6093 1.3,-6.9023 2.29,-12.0625 0.88,-4.6289 1.75,-9.1679 2.63,-13.707 l 7.98,-39.35938 9.18,45.64848 c 1.53,7.5312 1.74,8.7617 3.71,19.1679 l 0.67,0.7305 c 8.31,0.1016 9.72,0.1016 17.38,0.3125 l 0.65,-0.7305 c 0.12,-0.8203 0.22,-1.6523 0.33,-2.5703 0.45,-2.6914 2.96,-15.8789 3.61,-19.3789 l 8.64,-43.48046 8.53,40.68746 c 4.05,19.9024 4.16,20.3125 4.7,24.4297 l 0.65,0.7305 c 5.04,0 6.14,0.1016 10.72,0.3125 l 0.56,-0.7305 c -2.53,-8.039 -3.18,-10.8203 -9.19,-35.8593 -2.74,-11.2305 -5.69,-22.3711 -8.09,-33.60161 -0.11,-0.71875 -0.33,-1.44141 -0.44,-2.16797 l -0.77,-0.71094" /><path
|
||||||
|
id="path226"
|
||||||
|
style="fill:#aa9f93;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
d="m 1215.16,41.0195 c -2.17,5.6719 -7,8.0391 -11.89,8.0391 -6.13,0 -13.35,-3.918 -14.46,-14.2305 13.25,-0.0976 17.4,0 27.46,0.1133 -0.12,1.4492 -0.21,3.6992 -1.11,6.0781 z m 10.19,-26.8984 C 1224.79,10 1224.7,8.96094 1224.48,4.94922 l -0.68,-0.71875 c -1.86,-0.92969 -7.74,-3.921876 -17.5,-3.921876 -17.93,0 -29.17,9.691406 -29.17,27.621106 0,19.1719 12.24,28.5508 26.57,28.5508 8.64,0 14.65,-3.4102 17.93,-7.1211 6.23,-7 6.01,-17.1992 5.92,-21.7383 L 1226.77,27 c -17.06,0.1094 -20,0.1094 -37.96,0 0.13,-3.6016 0.46,-8.6484 4.18,-12.8789 4.46,-5.05079 10.71,-5.57032 14.09,-5.57032 3.19,0 6.47,0.51953 9.51,1.55082 4.05,1.5468 6.47,3.3867 7.89,4.539 l 0.87,-0.5195" /><path
|
||||||
|
id="path228"
|
||||||
|
style="fill:#aa9f93;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
d="m 1267.4,32.8711 c 4.36,-1.332 14.33,-4.5313 14.33,-15.4492 0,-4.1211 -1.64,-8.76174 -6.12,-12.1719 -5.8,-4.640625 -13.57,-4.941406 -17.5,-4.941406 -5.91,0 -10.84,1.031246 -14.99,2.582036 -0.56,0.19921 -1.08,0.41015 -1.64,0.60937 l -0.56,0.92969 c 0.47,4.03125 0.47,4.53125 0.69,8.64841 l 1.08,0.3203 c 1.98,-1.4375 6.78,-4.93746 15.2,-4.93746 8.64,0 11.8,4.52736 11.8,7.71876 0,4.75 -4.7,6.2812 -11.36,8.3516 l -3.5,1.1289 c -4.49,1.3398 -14.34,4.3281 -14.34,14.9414 0,10.6172 9.85,15.8789 22.11,15.8789 8.08,0 13.78,-2.1719 15.73,-2.8907 l 0.56,-0.7187 c -0.44,-3.8125 -0.56,-4.2227 -0.87,-8.1406 l -0.99,-0.4102 c -2.73,1.6485 -7,4.1211 -14.12,4.1211 -1.52,0 -3.07,-0.1133 -4.71,-0.5195 -3.28,-0.8203 -6,-2.9805 -6,-6.1836 0,-4.4375 4.48,-5.7695 11.27,-7.7266 l 3.93,-1.1406" /><path
|
||||||
|
id="path230"
|
||||||
|
style="fill:#aa9f93;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
d="m 1322.22,9.69141 c -0.34,-3.40235 -0.34,-4.1211 -0.45,-7.11328 l -0.54,-0.61719 c -2.29,-0.51953 -4.15,-0.94141 -8.2,-0.94141 -2.62,0 -9.51,0 -12.9,5.37891 -1.97,2.98047 -1.97,5.45316 -1.97,17.61326 l 0.22,22.6797 c -3.82,0 -3.93,-0.1016 -7.87,-0.2109 l -0.45,0.6211 c 0.22,3.289 0.22,4.1172 0.22,7.4179 l 0.67,0.6094 c 2.4,0 3.82,-0.0976 7.43,0 -0.11,2.1719 -0.11,4.4414 -0.11,6.6016 -0.11,1.9609 -0.21,3.9101 -0.33,5.8711 l 0.55,0.7187 c 4.92,1.1406 6.13,1.4492 11.16,2.8906 l 0.76,-0.5117 c -0.33,-6.8008 -0.43,-8.1406 -0.43,-15.6679 4.58,0.0976 5.89,0.0976 12.13,0.3085 l 0.55,-0.621 c -0.22,-2.6797 -0.33,-3.8086 -0.33,-7.3086 l -0.56,-0.6211 C 1316.31,46.8906 1315.66,47 1309.87,47 l -0.22,-19.1719 c 0.11,-1.2383 0.11,-7.1172 0.11,-8.5468 0,-7.5313 0.97,-9.90239 6.44,-9.90239 2.31,0 4.05,0.51172 5.25,0.92969 l 0.77,-0.61719" /><path
|
||||||
|
id="path232"
|
||||||
|
style="fill:#aa9f93;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
d="m 1371.69,41.0195 c -2.2,5.6719 -7,8.0391 -11.92,8.0391 -6.13,0 -13.35,-3.918 -14.46,-14.2305 13.25,-0.0976 17.4,0 27.46,0.1133 -0.12,1.4492 -0.21,3.6992 -1.08,6.0781 z m 10.16,-26.8984 C 1381.29,10 1381.2,8.96094 1380.98,4.94922 l -0.68,-0.71875 c -1.86,-0.92969 -7.74,-3.921876 -17.5,-3.921876 -17.93,0 -29.17,9.691406 -29.17,27.621106 0,19.1719 12.23,28.5508 26.57,28.5508 8.64,0 14.65,-3.4102 17.93,-7.1211 6.23,-7 6.01,-17.1992 5.91,-21.7383 L 1383.27,27 c -17.06,0.1094 -20,0.1094 -37.96,0 0.12,-3.6016 0.46,-8.6484 4.18,-12.8789 4.46,-5.05079 10.71,-5.57032 14.08,-5.57032 3.2,0 6.48,0.51953 9.51,1.55082 4.06,1.5468 6.48,3.3867 7.9,4.539 l 0.87,-0.5195" /><path
|
||||||
|
id="path234"
|
||||||
|
style="fill:#aa9f93;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
d="m 1426.31,44.4219 c -1.11,0.4062 -2.54,0.9297 -4.4,0.9297 -2.07,0 -3.59,-0.7227 -4.58,-1.3399 -4.49,-2.9922 -4.49,-7.5312 -4.49,-18.25 0,-11.6406 0.34,-17.71092 0.77,-23.49998 l -0.55,-0.71094 c -5.14,0 -6.32,-0.10937 -11.58,-0.3125 l -0.56,0.61328 c 0.12,7.83985 0.25,14.94924 0.25,24.52734 0,16.4922 -0.34,20.7227 -0.99,26.6914 l 0.65,0.7188 c 4.15,0.7304 6.78,1.2422 11.36,2.0703 l 0.65,-0.6211 -0.53,-8.7578 c 1.3,3.289 4.03,9.8906 13.35,9.8906 1.4,0 2.17,-0.1016 3.04,-0.3125 l 0.46,-0.6172 c -1.11,-4.9414 -1.33,-5.9726 -2.1,-10.5 l -0.75,-0.5195" /><path
|
||||||
|
id="path236"
|
||||||
|
style="fill:#aa9f93;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
d="m 1490.75,1.64844 c -5.23,-0.09766 -5.88,-0.09766 -10.93,-0.41016 l -0.78,0.72266 c 0,1.1289 0.13,2.26953 0.13,3.39844 0.09,5.05082 0.09,10.10152 0.09,15.16012 0,15.8711 -0.09,16.8907 -0.65,19.0508 -2.07,7.8399 -8.3,7.8399 -9.85,7.8399 -6.53,0 -11.58,-3.6094 -14.52,-5.7696 -0.12,-17.9414 0.1,-27.3203 0.87,-39.37888 l -0.65,-0.61328 c -5.36,-0.09766 -6.23,-0.09766 -11.49,-0.41016 l -0.56,0.72266 c 0.13,5.76953 0.34,11.33986 0.34,18.96876 0,16.4805 -0.77,25.2422 -1.29,32.1406 l 0.64,0.7188 c 5.45,0.9297 6.44,1.1406 11.59,2.0703 l 0.77,-0.7305 -0.12,-5.3594 c 2.84,1.8594 9.62,6.4024 19.25,6.4024 2.73,0 6.14,-0.4219 9.08,-1.961 2.85,-1.5507 5.14,-3.9218 6.34,-6.6992 1.43,-3.0898 1.52,-6.1836 1.65,-12.5703 l 0,-12.0625 c 0.31,-12.0586 0.43,-16.69921 0.74,-20.61718 l -0.65,-0.61328" /><path
|
||||||
|
id="path238"
|
||||||
|
style="fill:#aa9f93;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
d="m 1576.81,42.7695 c 7.95,-3.3007 18.57,-7.6211 18.57,-20.8203 C 1595.38,10.4102 1586.31,0 1567.27,0 c -11.59,0 -19.02,3.30078 -21.65,4.53125 L 1545.19,5.25 c 0.43,3.62109 0.55,5.5703 0.86,9.4805 l 1.12,0.4179 c 2.72,-1.75 9.07,-6.07809 19.23,-6.07809 11.27,0 15.97,5.46099 15.97,11.64059 0,7.2188 -6.34,10 -13.46,12.5704 l -5.45,2.2773 c -7.78,3.3906 -18.15,7.832 -18.15,20.4023 0,3.8204 1.09,7.7305 3.37,10.8204 5.05,6.7968 14.12,9.0703 22.98,9.0703 8.64,0 13.88,-1.543 19.67,-3.3008 l 0.55,-0.8203 c -0.43,-3.9219 -0.55,-5.3594 -0.86,-9.0821 l -0.9,-0.4101 c -4.68,2.2812 -9.82,4.75 -18.02,4.75 -9.08,0 -14.78,-4.0195 -14.78,-10.0977 0,-4.6406 3.29,-6.8008 5.58,-8.1523 1.43,-0.8164 1.86,-1.0274 8.42,-3.6992 l 5.49,-2.2696" /><path
|
||||||
|
id="path240"
|
||||||
|
style="fill:#aa9f93;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
d="m 1675.09,1.64844 c -7.32,-0.09766 -8.21,-0.09766 -14.87,-0.41016 l -0.78,0.72266 c -1.3,6.27734 -3.37,14.64066 -5.22,21.94926 l -6.35,24.7382 -6.44,-25.3593 c -3.29,-12.4688 -4.4,-16.48051 -5.37,-21.02738 l -0.67,-0.61328 c -7.65,-0.09766 -8.17,-0.09766 -15.09,-0.41016 l -0.64,0.72266 c -4.81,18.44926 -13.01,45.44926 -15.29,52.24996 l 0.42,0.7188 c 5.24,0.3086 6.67,0.3086 11.93,0.8203 l 0.64,-0.6211 c 0.66,-3.3984 1.43,-6.5976 6.14,-25.6484 l 5.23,-21.24222 7.12,27.73052 c 3.28,13.7109 3.51,15.0429 4.15,18.3398 l 0.74,0.7227 c 6.48,0 8.33,0 15.55,0.3085 l 0.65,-0.7187 c 1.55,-7.1094 4.14,-17 6.13,-24.832 l 5.79,-21.85941 6.13,24.01951 c 0.87,3.6094 1.74,7.211 2.64,10.8203 1.85,7 2.07,7.8321 2.72,11.75 l 0.77,0.6094 c 1.74,0 3.6,-0.0976 5.36,-0.0976 1.65,0 3.26,0.0976 4.9,0.0976 l 0.67,-0.6094 c -2.07,-5.8711 -11.7,-34.6289 -16.19,-52.25778 l -0.77,-0.61328" /><path
|
||||||
|
id="path242"
|
||||||
|
style="fill:#aa9f93;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
d="m 1716.4,70.1797 c -5.58,-0.1992 -6.79,-0.3086 -12.14,-0.8203 l -0.66,0.6211 c 0.11,1.3398 0.11,2.7812 0.11,4.1211 0,1.8593 -0.11,3.5078 -0.21,5.5703 l 0.76,0.6094 c 5.69,0.4101 6.67,0.5078 12.14,1.0273 l 0.66,-0.6172 c -0.11,-4.2226 -0.11,-5.25 0,-9.793 l -0.66,-0.7187 z m -0.12,-68.53126 c -5.67,-0.09766 -6.56,-0.09766 -11.91,-0.41016 l -0.55,0.72266 c 0.33,5.46094 0.66,10.19926 0.66,21.64066 0,19.6875 -0.33,23.3984 -1.09,29.4687 l 0.54,0.7188 c 4.7,0.7304 6.34,0.9297 11.81,2.0703 l 1.11,-0.6211 c -0.35,-5.3594 -0.68,-10.918 -0.68,-24.2188 0,-19.1679 0.23,-21.73825 0.68,-28.75778 l -0.57,-0.61328" /><path
|
||||||
|
id="path244"
|
||||||
|
style="fill:#aa9f93;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
d="m 1761.66,9.69141 c -0.3,-3.40235 -0.3,-4.1211 -0.43,-7.11328 l -0.56,-0.61719 c -2.29,-0.51953 -4.15,-0.94141 -8.2,-0.94141 -2.61,0 -9.51,0 -12.88,5.37891 -1.98,2.98047 -1.98,5.45316 -1.98,17.61326 l 0.21,22.6797 c -3.81,0 -3.93,-0.1016 -7.87,-0.2109 l -0.43,0.6211 c 0.22,3.289 0.22,4.1172 0.22,7.4179 l 0.65,0.6094 c 2.41,0 3.84,-0.0976 7.43,0 -0.1,2.1719 -0.1,4.4414 -0.1,6.6016 -0.11,1.9609 -0.21,3.9101 -0.34,5.8711 l 0.56,0.7187 c 4.93,1.1406 6.13,1.4492 11.15,2.8906 l 0.77,-0.5117 c -0.34,-6.8008 -0.43,-8.1406 -0.43,-15.6679 4.58,0.0976 5.88,0.0976 12.14,0.3085 l 0.53,-0.621 c -0.22,-2.6797 -0.31,-3.8086 -0.31,-7.3086 l -0.56,-0.6211 C 1755.75,46.8906 1755.1,47 1749.31,47 l -0.22,-19.1719 c 0.13,-1.2383 0.13,-7.1172 0.13,-8.5468 0,-7.5313 0.96,-9.90239 6.43,-9.90239 2.3,0 4.07,0.51172 5.24,0.92969 l 0.77,-0.61719" /><path
|
||||||
|
id="path246"
|
||||||
|
style="fill:#aa9f93;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
d="m 1812.41,1.55078 c -3.03,0 -18.02,-0.10937 -21.42,-0.10937 -12.79,0 -14.21,0 -20.87,-0.20313 l -0.43,0.9336 c 8.29,12.97652 21.51,35.03902 27.09,44.92972 C 1782.34,47 1779.75,47 1772.74,46.6914 l -0.55,0.6094 c 0.44,3.3984 0.55,4.2305 0.78,7.1094 l 0.64,0.6211 c 18.37,0 20.44,0 39.49,0.3085 l 0.52,-0.8203 C 1803.9,39.4688 1790,14.9492 1787.05,9.69141 c 9.41,0.09765 18.83,0.30859 26.26,0.61719 l 0.53,-0.61719 c -0.43,-3.20313 -0.53,-4.54297 -0.74,-7.6211 l -0.69,-0.51953" /><path
|
||||||
|
id="path248"
|
||||||
|
style="fill:#aa9f93;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
d="m 1863.98,41.0195 c -2.17,5.6719 -6.99,8.0391 -11.9,8.0391 -6.13,0 -13.34,-3.918 -14.44,-14.2305 13.23,-0.0976 17.38,0 27.45,0.1133 -0.11,1.4492 -0.22,3.6992 -1.11,6.0781 z m 10.18,-26.8984 C 1873.61,10 1873.51,8.96094 1873.29,4.94922 l -0.66,-0.71875 c -1.86,-0.92969 -7.76,-3.921876 -17.5,-3.921876 -17.92,0 -29.18,9.691406 -29.18,27.621106 0,19.1719 12.24,28.5508 26.56,28.5508 8.64,0 14.65,-3.4102 17.93,-7.1211 6.24,-7 6.02,-17.1992 5.92,-21.7383 L 1875.59,27 c -17.06,0.1094 -20.01,0.1094 -37.95,0 0.12,-3.6016 0.45,-8.6484 4.16,-12.8789 4.48,-5.05079 10.71,-5.57032 14.11,-5.57032 3.17,0 6.45,0.51953 9.5,1.55082 4.06,1.5468 6.46,3.3867 7.88,4.539 l 0.87,-0.5195" /><path
|
||||||
|
id="path250"
|
||||||
|
style="fill:#aa9f93;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
d="m 1918.62,44.4219 c -1.11,0.4062 -2.51,0.9297 -4.39,0.9297 -2.07,0 -3.6,-0.7227 -4.58,-1.3399 -4.49,-2.9922 -4.49,-7.5312 -4.49,-18.25 0,-11.6406 0.34,-17.71092 0.77,-23.49998 l -0.56,-0.71094 c -5.14,0 -6.32,-0.10937 -11.58,-0.3125 l -0.56,0.61328 c 0.13,7.83985 0.26,14.94924 0.26,24.52734 0,16.4922 -0.35,20.7227 -1,26.6914 l 0.65,0.7188 c 4.15,0.7304 6.78,1.2422 11.36,2.0703 l 0.66,-0.6211 -0.53,-8.7578 c 1.3,3.289 4.02,9.8906 13.35,9.8906 1.39,0 2.17,-0.1016 3.03,-0.3125 l 0.46,-0.6172 c -1.11,-4.9414 -1.32,-5.9726 -2.1,-10.5 l -0.75,-0.5195" /><path
|
||||||
|
id="path252"
|
||||||
|
style="fill:#aa9f93;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
d="m 1946.37,1.64844 c -5.24,-0.09766 -6.32,-0.20703 -11.46,-0.41016 l -0.55,0.72266 c 0.21,7.32031 0.55,16.58986 0.55,36.37886 0,14.2188 0,29.4688 -1.11,42.6602 l 0.56,0.6211 c 5.36,0.8203 6.44,1.0273 11.92,2.1602 l 0.64,-0.711 c -0.77,-13.5117 -0.77,-27.1094 -0.77,-40.6094 0,-22.5703 0.34,-30.4023 0.9,-40.19918 l -0.68,-0.61328" /><path
|
||||||
|
id="path254"
|
||||||
|
style="fill:#aa9f93;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
d="m 1996.48,30.3008 c -11.03,-1.5508 -21.31,-2.9922 -21.31,-12.1719 0,-0.5 0,-9.36718 10.39,-9.36718 6.77,0 10.71,3.49998 11.92,4.53908 l 0,17.2109 -1,-0.2109 z m 12.25,-7.5313 c 0,-12.7695 0.11,-13.89841 0.67,-20.59762 l -0.56,-0.52344 c -5.14,-0.09766 -6.01,-0.20703 -11.04,-0.41016 l -0.43,0.61328 0.11,3.71875 c -2.08,-1.55078 -7,-5.261716 -15.31,-5.261716 -10.94,0 -18.6,7.011716 -18.6,17.210906 0,13.8086 12.25,18.25 31.94,20.4024 l 1.86,0.207 c 0,2.7813 0,4.7422 -0.99,6.3906 -1.09,1.8594 -3.61,3.8086 -9.08,3.8086 -7.1,0 -12.03,-2.0468 -16.61,-3.9062 l -0.88,0.5195 c 0.22,4.7383 0.22,5.3477 0.33,7.5078 l 0.66,0.6211 c 6.11,2.0586 12.46,3.4102 18.91,3.4102 8.09,0 15.97,-2.5821 18.27,-10.6211 0.75,-2.8789 0.75,-8.5586 0.75,-12.8789 l 0,-10.211" /><path
|
||||||
|
id="path256"
|
||||||
|
style="fill:#aa9f93;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
d="m 2077.51,1.64844 c -5.25,-0.09766 -5.9,-0.09766 -10.94,-0.41016 l -0.77,0.72266 c 0,1.1289 0.11,2.26953 0.11,3.39844 0.13,5.05082 0.13,10.10152 0.13,15.16012 0,15.8711 -0.13,16.8907 -0.67,19.0508 -2.08,7.8399 -8.32,7.8399 -9.83,7.8399 -6.57,0 -11.59,-3.6094 -14.55,-5.7696 -0.11,-17.9414 0.1,-27.3203 0.88,-39.37888 l -0.67,-0.61328 c -5.36,-0.09766 -6.22,-0.09766 -11.47,-0.41016 l -0.56,0.72266 c 0.11,5.76953 0.34,11.33986 0.34,18.96876 0,16.4805 -0.77,25.2422 -1.32,32.1406 l 0.66,0.7188 c 5.46,0.9297 6.45,1.1406 11.59,2.0703 l 0.76,-0.7305 -0.11,-5.3594 c 2.86,1.8594 9.63,6.4024 19.25,6.4024 2.74,0 6.12,-0.4219 9.07,-1.961 2.85,-1.5507 5.14,-3.9218 6.35,-6.6992 1.42,-3.0898 1.53,-6.1836 1.64,-12.5703 l 0,-12.0625 c 0.32,-12.0586 0.43,-16.69921 0.75,-20.61718 l -0.64,-0.61328" /><path
|
||||||
|
id="path258"
|
||||||
|
style="fill:#aa9f93;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
d="m 2134.67,47.7109 c -1.86,0.1094 -3.16,0.3204 -5.48,0.3204 -3.38,0 -10.6,-0.211 -15.86,-4.8516 -2.38,-2.1602 -6.31,-7 -6.31,-16.1797 0,-5.8789 1.73,-10.1016 4.02,-12.6797 1.99,-2.1601 5.57,-4.62889 11.27,-4.62889 6.66,0 10.72,3.29689 12.23,4.52739 0.23,13.5 0.23,16.6015 0.13,33.4921 z m -0.13,33.9102 c 5.61,0.9297 6.69,1.1289 11.61,2.1602 l 0.75,-0.6094 c -0.75,-14.3321 -0.86,-39.8828 -0.86,-50.1914 0,-15.9688 0.42,-23.60159 0.86,-30.71878 l -0.52,-0.71094 c -4.84,0 -6.14,-0.10937 -11.16,-0.3125 l -0.77,0.61328 0.22,3.8086 c -2.63,-1.83985 -7.12,-5.140629 -15.08,-5.140629 -14.55,0 -24.62,10.820269 -24.62,26.480469 0,11.2305 5.05,18.3516 9.63,22.1484 7.99,6.8125 18.36,7.1211 24.06,7.1211 2.3,0 3.38,0 6.35,-0.2109 0.1,12.7812 -0.47,18.9727 -1,24.9414 l 0.53,0.6211" /></g></g></svg>
|
After Width: | Height: | Size: 92 KiB |
130
04-resources/logos/hevs-pictogram-only.svg
Normal file
@ -0,0 +1,130 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||||
|
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||||
|
|
||||||
|
<svg
|
||||||
|
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||||
|
xmlns:cc="http://creativecommons.org/ns#"
|
||||||
|
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||||
|
xmlns:svg="http://www.w3.org/2000/svg"
|
||||||
|
xmlns="http://www.w3.org/2000/svg"
|
||||||
|
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||||
|
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||||
|
width="361.64661mm"
|
||||||
|
height="65.339378mm"
|
||||||
|
viewBox="0 0 361.64661 65.339378"
|
||||||
|
version="1.1"
|
||||||
|
id="svg8"
|
||||||
|
inkscape:version="0.92.4 (5da689c313, 2019-01-14)"
|
||||||
|
sodipodi:docname="HESSO_Pictogram_only.svg">
|
||||||
|
<defs
|
||||||
|
id="defs2" />
|
||||||
|
<sodipodi:namedview
|
||||||
|
id="base"
|
||||||
|
pagecolor="#ffffff"
|
||||||
|
bordercolor="#666666"
|
||||||
|
borderopacity="1.0"
|
||||||
|
inkscape:pageopacity="0.0"
|
||||||
|
inkscape:pageshadow="2"
|
||||||
|
inkscape:zoom="0.35"
|
||||||
|
inkscape:cx="-290.85905"
|
||||||
|
inkscape:cy="737.76173"
|
||||||
|
inkscape:document-units="mm"
|
||||||
|
inkscape:current-layer="layer1"
|
||||||
|
showgrid="false"
|
||||||
|
fit-margin-top="0"
|
||||||
|
fit-margin-left="0"
|
||||||
|
fit-margin-right="0"
|
||||||
|
fit-margin-bottom="0"
|
||||||
|
inkscape:window-width="1920"
|
||||||
|
inkscape:window-height="1017"
|
||||||
|
inkscape:window-x="-8"
|
||||||
|
inkscape:window-y="32"
|
||||||
|
inkscape:window-maximized="1" />
|
||||||
|
<metadata
|
||||||
|
id="metadata5">
|
||||||
|
<rdf:RDF>
|
||||||
|
<cc:Work
|
||||||
|
rdf:about="">
|
||||||
|
<dc:format>image/svg+xml</dc:format>
|
||||||
|
<dc:type
|
||||||
|
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||||
|
<dc:title></dc:title>
|
||||||
|
</cc:Work>
|
||||||
|
</rdf:RDF>
|
||||||
|
</metadata>
|
||||||
|
<g
|
||||||
|
inkscape:label="Layer 1"
|
||||||
|
inkscape:groupmode="layer"
|
||||||
|
id="layer1"
|
||||||
|
transform="translate(-182.78979,-278.69341)">
|
||||||
|
<g
|
||||||
|
transform="matrix(0.35277777,0,0,-0.35277777,182.78979,344.03279)"
|
||||||
|
inkscape:label="ink_ext_XXXXXX"
|
||||||
|
id="g18">
|
||||||
|
<g
|
||||||
|
transform="scale(0.1)"
|
||||||
|
id="g20">
|
||||||
|
<path
|
||||||
|
inkscape:connector-curvature="0"
|
||||||
|
id="path22"
|
||||||
|
style="fill:#00a5e5;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
d="m 2099.79,141.551 c 0,-78.1526 63.36,-141.5392812 141.5,-141.5392812 h 1569.09 c 78.14,0 141.49,63.3866812 141.49,141.5392812 V 1710.59 c 0,78.19 -63.35,141.55 -141.49,141.55 H 2241.29 c -78.14,0 -141.5,-63.36 -141.5,-141.55 V 141.551" />
|
||||||
|
<path
|
||||||
|
inkscape:connector-curvature="0"
|
||||||
|
id="path24"
|
||||||
|
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
d="m 2610.25,1407.11 h 796.38 c 0,0 1.86,-50.27 5.1,-102.59 3.31,-55.33 7.74,-113.05 7.49,-117.61 -0.68,-8.68 -2.64,-17.14 -13.53,-20.96 -8.59,-3.02 -18.1,3.18 -20.4,20.36 -2.21,16.84 -6.05,33.97 -18.72,64.55 -5.69,13.6 -30.95,43.79 -65.73,59.46 -39.8,18.02 -87.92,17.91 -106.98,17.91 h -329.6 c 79.26,-115.23 191.6,-274.39 217.45,-319.38 10.87,-18.791 10.62,-42.912 -24.23,-92.952 -34.88,-50.039 -226.97,-301.16 -226.97,-301.16 h 375.43 c 55.95,0 96.77,6.274 122.62,18.66 25.76,12.332 45.07,57.793 49.67,74.481 4.41,16.59 6.45,32.953 26.01,31.891 12.59,-0.68 15.23,-15.301 15.39,-26.09 0,-4.758 -6.88,-64.668 -13.26,-119.899 -7.74,-68.281 -15.3,-134.152 -15.3,-134.152 h -775.79 c -10.81,0 -19.22,0 -22.11,7.191 -4.24,10.629 0.68,19.282 8.67,28.86 13.18,15.769 201.03,255.5 280.11,374.008 19.64,29.636 32.74,51.656 28.74,66.539 -4.58,17.089 -25.84,48.816 -55.01,92.933 -85.12,129.18 -244.83,330.92 -252.22,341.43 -10.12,14.03 -13.27,20.95 -8.85,30.47 2.65,6.05 8.94,6.05 15.64,6.05" />
|
||||||
|
<path
|
||||||
|
inkscape:connector-curvature="0"
|
||||||
|
id="path26"
|
||||||
|
style="fill:#e20571;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
d="m 4199.61,141.551 c 0,-78.1526 63.36,-141.5392812 141.5,-141.5392812 h 1569.11 c 78.14,0 141.48,63.3866812 141.48,141.5392812 V 1710.59 c 0,78.19 -63.34,141.55 -141.48,141.55 H 4341.11 c -78.14,0 -141.5,-63.36 -141.5,-141.55 V 141.551" />
|
||||||
|
<path
|
||||||
|
inkscape:connector-curvature="0"
|
||||||
|
id="path28"
|
||||||
|
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
d="m 5235.11,1263.05 h -213.87 c -10.63,-123.98 -20.85,-229.42 -30.69,-308.581 -9.96,-79.168 -19.4,-139.418 -28.42,-196.43 -9.61,-56.949 -19.21,-108.898 -28.98,-155.699 -8.16,-36.668 -19.57,-65.031 -35.47,-85.559 -15.47,-20.66 -38.27,-34.98 -68.2,-43.031 -25,-6.09 -49.48,-1.148 -74.07,14.77 -24.14,16.062 -38.6,35.191 -43.8,57.421 -3.66,16.489 -4.66,30.489 -2.71,41.969 1.53,11.43 4.92,22.012 10.12,31.899 5.01,9.812 10.46,18.703 16.83,26.902 5.8,7.949 12.34,15.918 19.05,23.98 2.22,2.469 12.84,15.039 32.31,37.789 19.56,22.829 33.94,43.68 43.98,62.54 9.68,18.73 31.12,60.039 41.82,111.488 10.89,51.457 32.83,227.482 32.42,380.542 h -89.98 c -25.43,0 -50.17,-8.34 -73.48,-20.49 -22.69,-11.93 -42.77,-32.09 -51.77,-43.58 -9.53,-11.87 -34.03,-51.53 -39.98,-59.14 -5.7,-7.7 -17.35,-25.33 -26.28,-22.63 -9.69,3.07 -7.56,13.91 -6.03,22.63 1.7,8.66 19.21,52.97 32.31,86.31 13.44,33.67 31.29,66.15 54.08,97.56 17.61,26.73 41.92,45.59 72.04,64.74 30.43,19.58 65.38,29.29 105.61,29.29 h 655.21 c 11.39,0 72.96,-4.9 72.96,-76.76 0,-71.75 -65.4,-77.93 -72.96,-77.93 h -186.07 c -15.55,-147.45 -23.21,-299.577 -23.21,-448.78 0,-27.071 4.5,-53.649 13.85,-79.442 9.36,-25.969 20.76,-45.668 34.28,-59.039 17.52,-16.187 38.43,-26.469 63.51,-31.187 25.27,-4.563 50.6,3.218 76.37,23.5 14.22,11.269 24.49,23.859 31.3,37.847 6.38,14.223 10.46,28 12.4,40.832 1.7,13.008 4.6,31.309 5.13,35.719 0.51,4.441 -0.36,20.59 18.01,21.988 18.37,1.422 20.24,-14.879 21.95,-32.547 1.51,-17.73 -7.91,-83.562 -22.72,-124.472 -14.79,-41.141 -32.64,-74.02 -52.98,-98.891 -20.48,-25.168 -40.38,-43.098 -60.01,-54.117 -22.38,-13.563 -48.49,-21.731 -77.9,-24.582 -29.95,-2.758 -57.15,4.152 -81.65,20.723 -40.73,29.796 -71.93,76.25 -92.68,139.668 -12.17,37.05 -18.37,85.832 -19.73,146.609 -1.87,60.742 0.18,120.055 5.78,178.008 l 32.32,308.163" />
|
||||||
|
<path
|
||||||
|
inkscape:connector-curvature="0"
|
||||||
|
id="path30"
|
||||||
|
style="fill:#eeb00e;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
d="m 6299.44,141.551 c 0,-78.1526 63.36,-141.5392812 141.5,-141.5392812 h 1569.09 c 78.16,0 141.51,63.3866812 141.51,141.5392812 V 1710.59 c 0,78.19 -63.35,141.55 -141.51,141.55 H 6440.94 c -78.14,0 -141.5,-63.36 -141.5,-141.55 V 141.551" />
|
||||||
|
<path
|
||||||
|
inkscape:connector-curvature="0"
|
||||||
|
id="path32"
|
||||||
|
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
d="m 6730.74,1007.61 c -11.04,5.09 -10.88,27.07 0.85,60.5 14.89,40.46 30.63,69.39 52.82,97.8 20.5,26.61 65.82,64.91 99.16,79.8 33.24,14.92 69.39,19.86 114.89,20.74 56.96,1.15 141.4,-28.48 238.68,-68.83 97.63,-40.23 186.91,-59.24 228.58,-58.66 61.48,0.71 123.39,12.87 176.78,50.67 31.81,22.35 44.65,37.66 59.7,68.26 4.6,9.37 10.64,11.46 17.1,7.8 10.3,-5.83 9.94,-20.33 7.4,-39.5 -14.71,-101.1 -58.34,-155.74 -103.23,-186.3 -23.3,-15.78 -57.83,-37.89 -109.03,-43.812 -51.36,-5.863 -140.64,10.132 -168.88,17.812 -55.35,14.81 -122.96,46.81 -163.44,62.81 -40.03,16.2 -70.66,31.47 -91.32,37.83 -16.15,4.42 -80.11,27.78 -138.61,25.18 -31.97,-1.33 -87.25,-13.26 -128.65,-39.88 -34.61,-22.45 -56.99,-51.01 -70.16,-75.97 -6.13,-11.5 -14.38,-20.22 -22.64,-16.25" />
|
||||||
|
<path
|
||||||
|
inkscape:connector-curvature="0"
|
||||||
|
id="path34"
|
||||||
|
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
d="m 6730.74,598.41 c -11.04,5.11 -10.88,27.09 0.85,60.512 14.89,40.469 30.63,69.379 52.82,97.777 20.5,26.621 65.82,64.942 99.16,79.813 33.24,14.918 69.39,19.863 114.89,20.742 56.96,1.152 141.4,-28.465 238.68,-68.813 97.63,-40.25 186.91,-59.23 228.58,-58.679 61.48,0.707 123.39,12.879 176.78,50.668 31.81,22.359 44.65,37.66 59.7,68.242 4.6,9.383 10.64,11.473 17.1,7.82 10.3,-5.832 9.94,-20.312 7.4,-39.492 -14.71,-101.109 -58.34,-155.75 -103.23,-186.328 -23.3,-15.774 -57.83,-37.852 -109.03,-43.781 -51.36,-5.879 -140.64,10.121 -168.88,17.808 -55.35,14.801 -122.96,46.813 -163.44,62.813 -40.03,16.168 -70.66,31.457 -91.32,37.84 -16.15,4.418 -80.11,27.757 -138.61,25.179 -31.97,-1.32 -87.25,-13.281 -128.65,-39.902 -34.61,-22.469 -56.99,-51.008 -70.16,-75.969 -6.13,-11.48 -14.38,-20.199 -22.64,-16.25" />
|
||||||
|
<path
|
||||||
|
inkscape:connector-curvature="0"
|
||||||
|
id="path36"
|
||||||
|
style="fill:#00a770;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
d="m 8399.29,141.551 c 0,-78.1526 63.34,-141.5392812 141.49,-141.5392812 h 1569.12 c 78.1,0 141.5,63.3866812 141.5,141.5392812 V 1710.59 c 0,78.19 -63.4,141.55 -141.5,141.55 H 8540.78 c -78.15,0 -141.49,-63.36 -141.49,-141.55 V 141.551" />
|
||||||
|
<path
|
||||||
|
inkscape:connector-curvature="0"
|
||||||
|
id="path38"
|
||||||
|
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
d="m 9789.2,518.73 -197.36,213.75 c 8.4,27.129 12.31,45.579 17.25,71.348 8.08,42.891 11.31,103.602 3.65,145.524 -2.3,12.855 -6.8,25.207 -16.16,31.242 -5.35,3.527 -16.31,4.699 -23.29,1.113 -6.03,-3.184 -11.65,-12.148 -12.59,-16.957 -2.39,-11.664 -4.75,-24.863 -6.3,-37.184 -0.67,-5.421 -1.19,-9.925 -1.7,-12.472 -2.53,-15.887 -5.77,-56.442 -11.56,-77.582 -3.9,-14.782 -6.3,-19.102 -13.16,-36.09 l -177.65,192.449 c 43.27,35.079 72.79,63.529 98.21,94.739 46.68,57.47 64.28,97.92 64.79,149.18 0.43,33.05 -4.07,56.52 -16.22,83.68 -5.37,11.91 -16.52,36.52 -42.86,60.18 -24.17,21.57 -47.37,36.13 -72.96,45.65 -26.55,9.99 -52.06,18.24 -92.96,18.24 -14.54,0 -30.18,-0.97 -48.31,-3 -65.04,-7.03 -122.36,-35.49 -161.14,-79.86 -34.87,-39.55 -47.69,-94.23 -48.04,-129.06 -0.68,-46.19 15.81,-98.55 44.13,-140.26 18.45,-27.2 36.73,-46 66.93,-77.13 l 15.82,-16.398 c -66.24,-48.59 -101.3,-78.629 -143.21,-122.363 -48.2,-50.309 -91.77,-102.821 -95.58,-193.649 -2.89,-64.261 29.17,-133.281 83.67,-180.09 52.22,-45.16 131.31,-70.039 222.37,-70.039 13.86,0 28.07,0.618 42.1,1.707 97.71,8.332 148.39,40.614 181.54,67.872 27.41,22.402 49.59,42.339 83.19,91.871 l 115.05,-127.621 1.19,-1.219 h 134.69 c 0.77,0.097 18.97,1.488 23.99,18.121 4.5,14.68 -15.57,32.566 -17.52,34.308 m -513.95,553.84 c -32.33,34.28 -65.23,73.61 -79.79,93.74 -10.88,14.89 -24.88,41.17 -29.06,66.35 -1.19,7.99 -3.82,35.79 15.29,60.88 10.63,13.65 25.76,28.92 59.1,39.16 11.58,3.53 26.46,5.48 41.93,5.48 16.68,0 33.5,-2.28 47.1,-6.46 27.13,-8.33 46.19,-24.53 59.53,-51.11 18.63,-36.68 10.2,-77.59 -24.4,-118.32 -32.49,-38.39 -58.68,-64.6 -89.7,-89.72 M 9132.99,820.449 c 22.6,27.942 54.81,56.367 104.33,92.133 l 219.57,-244.363 c -18.72,-24.617 -37.35,-46.489 -71.43,-65.969 -34.96,-19.922 -69.84,-29.129 -120.51,-31.66 -4.07,-0.211 -8.07,-0.289 -12.23,-0.289 -42.03,0 -77.74,11.269 -106.23,33.418 -34.43,26.871 -51.45,62.89 -53.41,113.14 -1.76,44.012 11.56,68.512 39.91,103.59" />
|
||||||
|
<path
|
||||||
|
inkscape:connector-curvature="0"
|
||||||
|
id="path40"
|
||||||
|
style="fill:#f25b28;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
d="M 0,141.559 C 0,63.4414 63.3398,0 141.422,0 H 1710.53 c 78.18,0 141.52,63.4414 141.52,141.559 V 1710.59 c 0,78.21 -63.34,141.55 -141.52,141.55 H 141.422 C 63.3398,1852.14 0,1788.8 0,1710.59 V 141.559" />
|
||||||
|
<path
|
||||||
|
inkscape:connector-curvature="0"
|
||||||
|
id="path42"
|
||||||
|
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
d="m 803.223,1231.61 c 0,100.87 -81.778,182.65 -182.653,182.65 -100.879,0 -182.648,-81.78 -182.648,-182.65 0,-100.88 81.769,-182.66 182.648,-182.66 100.875,0 182.653,81.78 182.653,182.66" />
|
||||||
|
<path
|
||||||
|
inkscape:connector-curvature="0"
|
||||||
|
id="path44"
|
||||||
|
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
d="m 803.223,671.25 c 0,100.879 -81.778,182.656 -182.653,182.656 -100.879,0 -182.648,-81.777 -182.648,-182.656 0,-100.871 81.769,-182.648 182.648,-182.648 100.875,0 182.653,81.777 182.653,182.648" />
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 12 KiB |
136
04-resources/logos/hevs-pictogram.svg
Normal file
@ -0,0 +1,136 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||||
|
<svg
|
||||||
|
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||||
|
xmlns:cc="http://creativecommons.org/ns#"
|
||||||
|
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||||
|
xmlns:svg="http://www.w3.org/2000/svg"
|
||||||
|
xmlns="http://www.w3.org/2000/svg"
|
||||||
|
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||||
|
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||||
|
version="1.1"
|
||||||
|
id="svg2"
|
||||||
|
xml:space="preserve"
|
||||||
|
width="415.74667"
|
||||||
|
height="170.08"
|
||||||
|
viewBox="0 0 415.74667 170.08"
|
||||||
|
sodipodi:docname="HESSOvs_pictos.eps"><metadata
|
||||||
|
id="metadata8"><rdf:RDF><cc:Work
|
||||||
|
rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type
|
||||||
|
rdf:resource="http://purl.org/dc/dcmitype/StillImage" /></cc:Work></rdf:RDF></metadata><defs
|
||||||
|
id="defs6" /><sodipodi:namedview
|
||||||
|
pagecolor="#ffffff"
|
||||||
|
bordercolor="#666666"
|
||||||
|
borderopacity="1"
|
||||||
|
objecttolerance="10"
|
||||||
|
gridtolerance="10"
|
||||||
|
guidetolerance="10"
|
||||||
|
inkscape:pageopacity="0"
|
||||||
|
inkscape:pageshadow="2"
|
||||||
|
inkscape:window-width="640"
|
||||||
|
inkscape:window-height="480"
|
||||||
|
id="namedview4" /><g
|
||||||
|
id="g10"
|
||||||
|
inkscape:groupmode="layer"
|
||||||
|
inkscape:label="ink_ext_XXXXXX"
|
||||||
|
transform="matrix(1.3333333,0,0,-1.3333333,0,170.08)"><g
|
||||||
|
id="g12"
|
||||||
|
transform="scale(0.1)"><path
|
||||||
|
d="M 3118.11,0 H 0 V 1275.59 H 3118.11 V 0"
|
||||||
|
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
id="path14" /><path
|
||||||
|
d="m 1668.17,227.738 c 0,-13.066 10.59,-23.66 23.66,-23.66 h 262.29 c 13.06,0 23.65,10.594 23.65,23.66 V 490.02 c 0,13.07 -10.59,23.66 -23.65,23.66 h -262.29 c -13.07,0 -23.66,-10.59 -23.66,-23.66 V 227.738"
|
||||||
|
style="fill:#00a770;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
id="path16" /><path
|
||||||
|
d="m 1797,341.227 c 3.78,4.668 9.19,9.425 17.44,15.394 l 36.68,-40.824 c -3.11,-4.109 -6.23,-7.77 -11.93,-11.031 -5.83,-3.321 -11.67,-4.864 -20.13,-5.282 -0.68,-0.035 -1.35,-0.046 -2.04,-0.046 -7.03,0 -13,1.882 -17.76,5.578 -5.75,4.5 -8.58,10.511 -8.91,18.91 -0.3,7.351 1.93,11.445 6.65,17.301 z m 23.26,42.125 c -5.4,5.738 -10.92,12.304 -13.35,15.671 -1.8,2.489 -4.16,6.875 -4.85,11.075 -0.2,1.343 -0.64,5.984 2.56,10.175 1.76,2.29 4.29,4.832 9.88,6.547 1.92,0.59 4.42,0.918 7.01,0.918 2.78,0 5.6,-0.39 7.85,-1.082 4.54,-1.394 7.73,-4.093 9.95,-8.543 3.12,-6.125 1.7,-12.965 -4.07,-19.773 -5.43,-6.41 -9.81,-10.789 -14.98,-14.988 z m 86.4,-92.532 -31.99,34.621 c 1.41,4.536 2.06,8.153 2.89,12.454 1.35,7.171 1.89,18.906 0.61,25.914 -0.4,2.144 -1.26,5.441 -2.96,6.562 -1.56,1.063 -3.25,1.02 -4.4,0.594 -1.41,-0.527 -2.5,-1.664 -2.82,-3.453 -0.52,-2.973 -1.02,-9.164 -1.28,-11.215 -0.13,-0.91 -0.21,-1.664 -0.3,-2.094 -0.42,-2.648 -0.96,-5.301 -1.93,-8.84 -0.65,-2.461 -1.04,-3.722 -2.2,-6.55 l -28.96,31.39 c 7.24,5.863 12.16,10.617 16.42,15.828 7.79,9.61 10.73,16.364 10.82,24.934 0.07,5.515 -0.68,9.437 -2.72,13.98 -0.89,1.989 -2.75,6.106 -7.15,10.047 -4.03,3.606 -8.44,6.035 -12.72,7.637 -4.43,1.668 -8.26,2.75 -15.52,3.047 -2.45,0.097 -5.05,0 -8.08,-0.34 -10.87,-1.164 -20.44,-5.922 -26.92,-13.344 -5.83,-6.609 -7.45,-15.91 -7.5,-21.722 -0.12,-7.719 2.64,-16.469 7.37,-23.442 3.07,-4.551 6.14,-7.676 11.19,-12.879 l 2.63,-2.742 c -11.07,-8.125 -16.93,-13.137 -23.92,-20.457 -8.05,-8.395 -15.34,-17.172 -15.98,-32.344 -0.49,-10.738 4.87,-22.273 13.98,-30.101 8.73,-7.539 21.95,-11.696 37.16,-11.696 2.32,0 4.68,0.098 7.04,0.282 16.3,1.394 24.79,6.797 30.33,11.343 4.57,3.746 8.29,7.071 13.89,15.352 l 19.22,-21.32 0.2,-0.207 h 22.52 c 0.12,0.019 3.15,0.25 4,3.027 0.74,2.453 -2.61,5.445 -2.92,5.734"
|
||||||
|
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
id="path18" /><path
|
||||||
|
d="m 571.844,227.738 c 0,-13.066 10.594,-23.66 23.652,-23.66 h 262.297 c 13.062,0 23.656,10.594 23.656,23.66 V 490.02 c 0,13.07 -10.594,23.66 -23.656,23.66 H 595.496 c -13.058,0 -23.652,-10.59 -23.652,-23.66 V 227.738"
|
||||||
|
style="fill:#00a5e5;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
id="path20" /><path
|
||||||
|
d="m 657.602,439.285 c 13.421,0 133.125,0 133.125,0 0,0 1.734,-36.047 1.691,-36.808 -0.125,-1.45 -0.668,-2.961 -2.672,-3.504 -1.476,-0.399 -3.453,0.543 -4.293,3.406 -0.797,2.73 -0.172,4.293 -2.57,9.332 -1.055,2.223 -4.012,5.457 -9.867,8.008 -6.141,2.687 -12.254,2.886 -16.989,2.886 -4.73,0 -54.742,0 -54.742,0 12.582,-18.222 26.496,-39.671 35.653,-53.082 3.312,-4.855 3.867,-6.121 -1.137,-12.617 -7.164,-9.297 -39.805,-50.074 -39.805,-50.074 0,0 51.402,0.012 59.477,0 8.078,-0.004 15.976,0.551 20.031,3.121 5.316,3.387 8.004,9.66 8.769,12.453 0.739,2.774 1.961,5.446 5.231,5.328 2.461,-0.082 2.957,-2.554 2.984,-4.363 0,-0.793 -4.363,-42.465 -4.363,-42.465 0,0 -110.207,0 -130.109,0 -1.789,0 -3.211,0 -3.696,1.203 -0.695,1.778 0.129,3.211 1.465,4.825 8.403,10.199 33.774,40.824 46.809,58.386 5.133,6.887 7.277,9.461 3.883,14.309 -3.27,4.652 -48.161,70.262 -50.422,73.555 -1.633,2.379 -2.215,3.089 -1.481,4.683 0.442,1.008 1.906,1.418 3.028,1.418"
|
||||||
|
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
id="path22" /><path
|
||||||
|
d="m 937.285,227.738 c 0,-13.066 10.594,-23.66 23.656,-23.66 h 262.299 c 13.06,0 23.65,10.594 23.65,23.66 V 490.02 c 0,13.07 -10.59,23.66 -23.65,23.66 H 960.941 c -13.062,0 -23.656,-10.59 -23.656,-23.66 V 227.738"
|
||||||
|
style="fill:#e20571;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
id="path24" /><path
|
||||||
|
d="m 1109.15,415.207 h -35.75 c -1.78,-20.727 -3.49,-38.352 -5.14,-51.586 -1.66,-13.234 -3.24,-23.305 -4.74,-32.836 -1.61,-9.515 -3.22,-18.199 -4.85,-26.027 -1.36,-6.125 -3.27,-10.863 -5.93,-14.297 -2.59,-3.457 -6.4,-5.852 -11.4,-7.195 -4.18,-1.016 -8.27,-0.192 -12.38,2.472 -4.04,2.684 -6.45,5.879 -7.32,9.598 -0.61,2.758 -0.78,5.094 -0.46,7.016 0.26,1.91 0.83,3.679 1.7,5.328 0.83,1.64 1.74,3.129 2.81,4.5 0.97,1.328 2.06,2.656 3.18,4.008 0.37,0.414 2.15,2.515 5.41,6.32 3.27,3.816 5.67,7.297 7.35,10.453 1.62,3.129 5.2,10.035 6.99,18.637 1.82,8.597 5.49,38.023 5.41,63.609 -2.74,0 -15.04,0 -15.04,0 -4.24,0 -8.38,-1.394 -12.28,-3.426 -3.79,-1.996 -7.15,-5.367 -8.65,-7.285 -1.6,-1.98 -5.69,-8.613 -6.68,-9.887 -0.96,-1.285 -2.9,-4.234 -4.4,-3.781 -1.62,0.512 -1.26,2.324 -1.01,3.781 0.29,1.45 3.22,8.856 5.41,14.43 2.24,5.629 5.23,11.059 9.04,16.309 2.94,4.465 7,7.621 12.04,10.82 5.09,3.273 10.93,4.895 17.65,4.895 0,0 107.58,0 109.53,0 1.9,0 12.19,-0.817 12.19,-12.829 0,-11.996 -10.93,-13.027 -12.19,-13.027 -1.28,0 -31.1,0 -31.1,0 -2.61,-24.648 -3.89,-50.078 -3.89,-75.019 0,-4.528 0.76,-8.969 2.32,-13.274 1.57,-4.344 3.47,-7.641 5.73,-9.871 2.93,-2.711 6.43,-4.43 10.62,-5.219 4.22,-0.761 8.46,0.539 12.76,3.93 2.38,1.883 4.1,3.988 5.24,6.324 1.06,2.383 1.74,4.688 2.07,6.824 0.29,2.184 0.77,5.239 0.85,5.977 0.09,0.742 -0.05,3.441 3.02,3.676 3.07,0.234 3.38,-2.489 3.66,-5.446 0.26,-2.961 -1.32,-13.964 -3.79,-20.8 -2.47,-6.883 -5.46,-12.375 -8.86,-16.536 -3.42,-4.207 -6.75,-7.207 -10.03,-9.046 -3.74,-2.266 -8.1,-3.629 -13.02,-4.11 -5.01,-0.461 -9.56,0.699 -13.65,3.473 -6.81,4.973 -12.03,12.742 -15.49,23.34 -2.04,6.195 -3.07,14.347 -3.3,24.511 -0.31,10.149 0.03,20.063 0.96,29.754 l 5.41,51.512"
|
||||||
|
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
id="path26" /><path
|
||||||
|
d="m 1302.73,227.738 c 0,-13.066 10.59,-23.66 23.65,-23.66 h 262.3 c 13.06,0 23.65,10.594 23.65,23.66 V 490.02 c 0,13.07 -10.59,23.66 -23.65,23.66 h -262.3 c -13.06,0 -23.65,-10.59 -23.65,-23.66 V 227.738"
|
||||||
|
style="fill:#f0be07;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
id="path28" /><path
|
||||||
|
d="m 1372.7,374.113 c -1.91,0.844 -1.88,4.528 0.14,10.114 2.56,6.765 5.26,11.597 9.07,16.347 3.51,4.453 11.28,10.86 17,13.348 5.71,2.5 11.91,3.324 19.72,3.48 9.76,0.2 24.25,-4.746 40.92,-11.484 16.75,-6.719 32.05,-9.887 39.2,-9.785 10.55,0.121 21.16,2.16 30.32,8.484 5.46,3.738 7.67,6.305 10.25,11.414 0.79,1.571 1.82,1.918 2.93,1.309 1.76,-0.977 1.71,-3.399 1.27,-6.606 -2.53,-16.898 -10.02,-26.039 -17.73,-31.148 -3.99,-2.637 -9.92,-6.34 -18.71,-7.336 -8.79,-0.98 -24.1,1.684 -28.95,2.965 -9.5,2.473 -21.08,7.816 -28.02,10.484 -6.88,2.707 -12.13,5.25 -15.66,6.317 -2.78,0.738 -13.74,4.632 -23.77,4.195 -5.49,-0.223 -14.97,-2.219 -22.08,-6.676 -5.93,-3.758 -9.76,-8.535 -12.04,-12.707 -1.05,-1.918 -2.46,-3.375 -3.86,-2.715"
|
||||||
|
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
id="path30" /><path
|
||||||
|
d="m 1372.65,302.406 c -1.89,0.852 -1.86,4.528 0.16,10.121 2.54,6.766 5.24,11.602 9.05,16.348 3.53,4.453 11.3,10.859 17.02,13.348 5.7,2.5 11.9,3.324 19.7,3.48 9.78,0.199 24.25,-4.746 40.94,-11.484 16.73,-6.715 32.04,-9.887 39.19,-9.785 10.55,0.121 21.17,2.16 30.32,8.484 5.46,3.738 7.66,6.305 10.25,11.414 0.78,1.57 1.82,1.918 2.93,1.309 1.78,-0.977 1.71,-3.399 1.26,-6.602 -2.53,-16.902 -10,-26.043 -17.71,-31.16 -4.01,-2.637 -9.92,-6.332 -18.7,-7.328 -8.82,-0.988 -24.13,1.679 -28.96,2.965 -9.5,2.464 -21.08,7.82 -28.03,10.484 -6.87,2.707 -12.11,5.25 -15.65,6.316 -2.79,0.743 -13.75,4.633 -23.78,4.196 -5.48,-0.223 -14.96,-2.219 -22.07,-6.676 -5.94,-3.758 -9.78,-8.535 -12.04,-12.707 -1.05,-1.918 -2.47,-3.375 -3.88,-2.723"
|
||||||
|
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
id="path32" /><path
|
||||||
|
d="m 205.422,227.738 c 0,-13.058 10.59,-23.66 23.641,-23.66 h 262.308 c 13.067,0 23.656,10.602 23.656,23.66 v 262.278 c 0,13.074 -10.589,23.664 -23.656,23.664 H 229.063 c -13.051,0 -23.641,-10.59 -23.641,-23.664 V 227.738"
|
||||||
|
style="fill:#f25b28;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
id="path34" /><path
|
||||||
|
d="m 339.695,409.953 c 0,16.86 -13.668,30.531 -30.531,30.531 -16.863,0 -30.535,-13.671 -30.535,-30.531 0,-16.863 13.672,-30.531 30.535,-30.531 16.863,0 30.531,13.668 30.531,30.531"
|
||||||
|
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
id="path36" /><path
|
||||||
|
d="m 339.695,316.285 c 0,16.86 -13.668,30.531 -30.531,30.531 -16.863,0 -30.535,-13.671 -30.535,-30.531 0,-16.863 13.672,-30.531 30.535,-30.531 16.863,0 30.531,13.668 30.531,30.531"
|
||||||
|
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
id="path38" /><path
|
||||||
|
d="M 2044.39,1045.46 C 1889.41,717.031 1893.87,728.125 1889.43,717.035 c -8.53,-17.039 -17.33,-34.683 -39.54,-34.683 -18.32,0 -32.74,15.16 -32.74,34.461 0,10.433 2.22,15.003 9.54,30.14 4.92,10.586 0.32,0.699 148.84,316.957 10.17,21.05 19.95,41.18 42.52,41.18 18.97,0 33.25,-14.35 33.25,-33.32 0,-10.5 -3.31,-18.47 -6.91,-26.31 z m 24.11,26.31 c 0,28.26 -22.21,50.52 -50.45,50.52 -33.39,0 -47.16,-28.48 -57.21,-49.26 4.68,9.98 -0.74,-1.58 -149.31,-317.839 -8.06,-16.75 -11.55,-24.046 -11.55,-38.378 0,-28.954 21.91,-51.637 49.91,-51.637 32.76,0 45.61,25.527 54.97,44.203 l 155.04,328.781 c 4.37,9.36 8.6,19.59 8.6,33.61"
|
||||||
|
style="fill:#231f20;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
id="path40" /><path
|
||||||
|
d="m 2186.48,1045.48 c -154.9,-328.382 -149.26,-320.535 -154.97,-328.398 -8.46,-17.086 -17.26,-34.73 -39.52,-34.73 -18.39,0 -32.72,15.179 -32.72,34.461 0,10.433 2.2,15.003 9.54,30.14 4.85,10.711 0.31,0.699 148.87,316.957 10.18,21.03 19.94,41.18 42.49,41.18 18.95,0 33.36,-14.35 33.36,-33.32 0,-10.5 -3.3,-18.47 -7.05,-26.29 z m -26.31,76.81 c -33.4,0 -47.15,-28.5 -57.21,-49.29 4.77,9.78 -0.76,-1.55 -149.32,-317.809 -8.03,-16.769 -11.56,-24.046 -11.56,-38.378 0,-28.954 21.95,-51.637 49.91,-51.637 32.91,0 45.68,25.527 54.99,44.293 l 155.08,328.691 c 4.2,8.91 8.59,19.59 8.59,33.61 0,28.26 -22.17,50.52 -50.48,50.52"
|
||||||
|
style="fill:#231f20;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
id="path42" /><path
|
||||||
|
d="m 2303.31,925.441 c 2.79,-6.796 6.42,-12.371 15.79,-12.371 9.35,0 12.99,5.575 15.79,12.371 l 46.66,118.679 c 1.04,2.78 1.47,4.9 1.47,7.87 0,8.96 -7.82,15.37 -16.37,15.37 -7.24,0 -11.74,-4.68 -14.49,-10.45 l -33.06,-88.609 -32.98,88.609 c -2.83,5.77 -7.31,10.45 -14.56,10.45 -8.49,0 -16.37,-6.41 -16.37,-15.37 0,-2.97 0.45,-5.09 1.5,-7.87 l 46.62,-118.679"
|
||||||
|
style="fill:#231f20;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
id="path44" /><path
|
||||||
|
d="m 2432.5,1034.13 h 0.38 l 19.85,-61.755 h -40.5 z m -66.89,-107.423 c 0,-8.508 7.22,-14.883 15.75,-14.883 8.7,0 13.14,4.707 15.27,11.293 l 6.44,19.828 h 59.2 l 6.42,-20.039 c 2.15,-6.375 6.63,-11.082 15.56,-11.082 7.94,0 14.69,5.762 14.69,14.039 0,1.52 -0.4,4.477 -1.7,7.918 l -41.77,115.929 c -3.61,10.2 -11.49,17.65 -22.83,17.65 -10.82,0 -19.14,-7.9 -22.75,-17.65 l -42.86,-115.929 c -0.38,-1.054 -1.42,-3.59 -1.42,-7.074"
|
||||||
|
style="fill:#231f20;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
id="path46" /><path
|
||||||
|
d="m 2529.81,914.355 h 53.31 c 9.33,0 14.93,7.032 15.37,14.106 0.19,7.199 -4.52,15.328 -15.37,15.328 h -37.94 v 106.941 c 0,10.66 -6.82,16.63 -16.01,16.63 -9.09,0 -15.98,-5.97 -15.98,-16.63 V 931.84 c 0,-10.664 6.21,-17.485 16.62,-17.485"
|
||||||
|
style="fill:#231f20;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
id="path48" /><path
|
||||||
|
d="m 2672.38,1034.13 h 0.47 l 19.82,-61.755 h -40.53 z m -51.17,-122.306 c 8.74,0 13.25,4.707 15.38,11.293 l 6.4,19.828 h 59.16 l 6.48,-20.039 c 2.14,-6.375 6.61,-11.082 15.52,-11.082 7.89,0 14.74,5.762 14.74,14.039 0,1.52 -0.45,4.477 -1.72,7.918 l -41.75,115.929 c -3.65,10.2 -11.49,17.65 -22.83,17.65 -10.87,0 -19.13,-7.9 -22.78,-17.65 l -42.79,-115.929 c -0.45,-1.054 -1.52,-3.59 -1.52,-7.074 0,-8.508 7.22,-14.883 15.71,-14.883"
|
||||||
|
style="fill:#231f20;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
id="path50" /><path
|
||||||
|
d="m 2785.13,929.727 v 121.003 c 0,10.66 -6.82,16.63 -16.02,16.63 -9.11,0 -15.97,-5.97 -15.97,-16.63 V 929.727 c 0,-10.704 6.86,-16.637 15.97,-16.637 9.2,0 16.02,5.933 16.02,16.637"
|
||||||
|
style="fill:#231f20;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
id="path52" /><path
|
||||||
|
d="m 2855.41,941.273 c -13.83,0 -25.78,8.301 -35.74,8.301 -8.76,0 -14.26,-6.844 -14.26,-15.117 0,-20.016 35.31,-23.879 51.73,-23.879 29.4,0 54.58,18.981 54.58,49.445 0,54.957 -71.2,40.917 -71.2,62.857 0,8.95 8.3,13.85 17.49,13.85 12.77,0 19.55,-6.4 28.29,-6.4 8.78,0 14.33,7.47 14.33,15.73 0,16.85 -29.85,21.3 -41.71,21.3 -28.42,0 -52.89,-18.51 -52.89,-48.32 0,-49.431 71.11,-34.313 71.11,-59.438 0,-10.473 -7.64,-18.329 -21.73,-18.329"
|
||||||
|
style="fill:#231f20;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
id="path54" /><path
|
||||||
|
d="m 2427.76,860.273 c 0,6.821 -5.68,14.059 -15.12,14.059 -10.17,0 -15.05,-5.93 -16.99,-15.367 l -18.1,-90.512 h -0.46 l -27.7,93.32 c -2.35,7.684 -8.79,12.559 -16.58,12.559 -7.89,0 -14.35,-4.875 -16.65,-12.559 l -27.7,-93.32 h -0.43 l -18.13,90.512 c -1.86,9.437 -6.76,15.367 -17.01,15.367 -9.45,0 -15.15,-7.238 -15.15,-14.059 0,-3.019 0.19,-4.476 0.86,-7.265 l 27.05,-116.289 c 2.14,-8.992 9.21,-16.614 21.12,-16.614 10.41,0 18.5,6.797 21.09,15.559 l 24.68,82.172 h 0.46 l 24.71,-82.172 c 2.59,-8.762 10.68,-15.559 21.07,-15.559 11.97,0 19.02,7.622 21.17,16.614 l 26.98,116.289 c 0.66,2.789 0.83,4.246 0.83,7.265"
|
||||||
|
style="fill:#231f20;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
id="path56" /><path
|
||||||
|
d="m 2468.65,780.594 20.37,61.797 h 0.32 l 19.85,-61.797 z m 43.34,77.293 c -3.66,10.301 -11.56,17.734 -22.76,17.734 -10.97,0 -19.25,-7.875 -22.86,-17.734 L 2423.56,742.02 c -0.38,-1.079 -1.48,-3.653 -1.48,-7.032 0,-8.527 7.2,-14.883 15.69,-14.883 8.69,0 13.22,4.645 15.37,11.231 l 6.44,19.805 h 59.17 l 6.44,-19.973 c 2.14,-6.418 6.61,-11.063 15.53,-11.063 7.91,0 14.73,5.743 14.73,14.059 0,1.481 -0.45,4.414 -1.69,7.856 l -41.77,115.867"
|
||||||
|
style="fill:#231f20;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
id="path58" /><path
|
||||||
|
d="m 2639.63,749.559 h -37.94 v 106.933 c 0,10.684 -6.87,16.617 -16.04,16.617 -9.11,0 -15.95,-5.933 -15.95,-16.617 V 737.605 c 0,-10.64 6.23,-17.5 16.66,-17.5 h 53.27 c 9.31,0 14.9,7.051 15.27,14.04 0.29,7.285 -4.42,15.414 -15.27,15.414"
|
||||||
|
style="fill:#231f20;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
id="path60" /><path
|
||||||
|
d="m 2734.63,749.559 h -37.93 v 106.933 c 0,10.684 -6.83,16.617 -16.01,16.617 -9.12,0 -15.93,-5.933 -15.93,-16.617 V 737.605 c 0,-10.64 6.2,-17.5 16.63,-17.5 h 53.24 c 9.36,0 14.89,7.051 15.31,14.04 0.25,7.285 -4.52,15.414 -15.31,15.414"
|
||||||
|
style="fill:#231f20;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
id="path62" /><path
|
||||||
|
d="m 2775.76,874.355 c -9.16,0 -16,-5.933 -16,-16.617 V 736.719 c 0,-10.641 6.84,-16.614 16,-16.614 9.16,0 15.98,5.973 15.98,16.614 v 121.019 c 0,10.684 -6.82,16.617 -15.98,16.617"
|
||||||
|
style="fill:#231f20;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
id="path64" /><path
|
||||||
|
d="m 2840.51,832.402 c 0,8.973 8.3,13.852 17.46,13.852 12.82,0 19.64,-6.379 28.34,-6.379 8.78,0 14.31,7.434 14.31,15.73 0,16.848 -29.83,21.325 -41.8,21.325 -28.31,0 -52.78,-18.535 -52.78,-48.328 0,-49.465 71.1,-34.309 71.1,-59.497 0,-10.406 -7.64,-18.324 -21.68,-18.324 -13.91,0 -25.78,8.321 -35.8,8.321 -8.75,0 -14.29,-6.801 -14.29,-15.122 0,-20.011 35.36,-23.875 51.78,-23.875 29.43,0 54.57,18.981 54.57,49.446 0,54.976 -71.21,40.918 -71.21,62.851"
|
||||||
|
style="fill:#231f20;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
id="path66" /><path
|
||||||
|
d="m 1400.9,874.09 -18.35,5.316 c -31.8,9.102 -52.75,15.407 -52.75,36.063 0,14.98 12.86,25.086 28.15,28.953 7.67,1.937 14.87,2.375 22.02,2.375 33.21,0 53.17,-11.527 65.95,-19.246 l 4.54,1.941 c 1.62,18.301 2.15,20.192 4.16,38.031 l -2.54,3.383 c -9.25,3.375 -35.79,13.453 -73.63,13.453 -57.27,0 -103.27,-24.57 -103.27,-74.171 0,-49.614 46,-63.575 66.98,-69.809 l 16.35,-5.281 c 31.18,-9.676 53.14,-16.871 53.14,-39.012 0,-14.918 -14.77,-36.133 -55.22,-36.133 -39.35,0 -61.87,16.379 -71.09,23.113 l -5.06,-1.484 c -1.03,-19.215 -1.03,-21.629 -3.08,-40.406 l 2.5,-4.371 c 2.58,-0.918 5.17,-1.918 7.73,-2.852 19.41,-7.254 42.37,-12.062 70.03,-12.062 18.43,0 54.71,1.425 81.82,23.101 20.97,15.918 28.64,37.571 28.64,56.848 0,51.082 -46.52,65.988 -67.02,72.25"
|
||||||
|
style="fill:#231f20;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
id="path68" /><path
|
||||||
|
d="m 1696.44,790.746 c -14.82,-26.449 -39.34,-32.25 -58.22,-32.25 -10.3,0 -21.05,1.93 -30.17,6.281 -40.45,19.239 -40.96,67.887 -40.96,87.157 0,20.257 1.54,48.171 15.36,67.902 17.86,26.937 46.56,27.934 56.21,27.934 28.67,0 45.04,-12.5 54.78,-27.43 12.74,-21.223 14.83,-53.5 14.83,-65.52 0.52,-10.136 0,-42.422 -11.83,-64.074 z m -55.2,193.613 c -51.12,0 -80.74,-19.714 -95.12,-33.671 -34.22,-32.247 -35.25,-79.454 -35.25,-97.766 0,-15.926 0.49,-65.016 35.25,-98.25 16.37,-15.961 45.55,-32.324 91.54,-32.324 35.81,0 65.99,8.215 88.43,29.406 16.97,15.894 27.66,34.652 33.25,58.289 3.62,14.426 4.66,30.359 4.66,46.711 -1.04,33.687 -7.66,67.437 -31.19,92.93 -22.54,24.105 -56.78,34.675 -91.57,34.675"
|
||||||
|
style="fill:#231f20;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
id="path70" /><path
|
||||||
|
d="m 1186.39,883.23 c -16.86,0 -30.42,-13.636 -30.42,-30.429 0,-16.805 13.56,-30.414 30.42,-30.414 16.81,0 30.42,13.609 30.42,30.414 0,16.793 -13.61,30.429 -30.42,30.429"
|
||||||
|
style="fill:#231f20;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
id="path72" /><path
|
||||||
|
d="m 516.242,1064.44 -2.531,2.92 c -40.91,-1.44 -47.559,-1.44 -90.496,-1.44 l -2.578,-2.88 c 3.605,-54.45 3.605,-68.388 4.101,-125.224 -22.496,-0.503 -45,-0.984 -68.019,-0.984 -17.903,0 -36.274,0.481 -54.164,0.481 l 1.008,127.127 -2.579,2.92 c -39.351,-1.44 -47.031,-1.44 -91.515,-1.44 l -3.067,-2.88 c 2.575,-49.63 5.676,-108.86 5.676,-228.31 0,-43.347 -1.086,-66.929 -2.07,-107.382 l 2.539,-2.922 c 37.316,1.457 46.531,1.98 91.527,1.457 l 2.555,2.871 c -3.066,59.719 -3.551,77.105 -4.074,146.891 22.48,0.972 41.39,1.472 61.398,1.472 20.375,0 40.82,-0.5 61.309,-1 1.031,-64.996 1.031,-80.859 -1.543,-148.769 l 2.574,-2.922 c 38.355,1.457 48.566,1.98 92.031,1.457 l 2.508,2.871 c -4.074,80.957 -5.574,161.363 -5.574,242.305 0,33.711 0.515,56.371 0.984,93.381"
|
||||||
|
style="fill:#231f20;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
id="path74" /><path
|
||||||
|
d="m 657.781,883.359 c 1.559,14.938 5.129,35.172 24.586,46.746 6.137,3.836 13.305,5.278 20.446,5.278 16.859,0 27.05,-8.141 32.726,-16.852 7.164,-10.586 7.625,-22.129 7.625,-33.242 z m 85.383,99.258 c -12.719,3.332 -24.496,4.328 -36.266,4.328 -80.261,0 -133.468,-49.632 -133.468,-132.953 0,-22.656 4.121,-46.222 12.25,-63.09 29.691,-65.031 99.199,-70.82 136.078,-70.82 42.351,0 60.836,7.289 87.887,17.344 l 3.113,3.894 3.57,54.391 -3.57,1.461 c -19.445,-9.656 -42.524,-20.711 -79.817,-20.711 -30.668,0 -51.613,9.164 -63.918,26.539 -7.66,10.055 -9.179,19.648 -11.242,29.293 l 165.188,2.934 3.078,3.316 c -0.504,23.645 -1.02,47.734 -8.219,71.801 -17.855,56.855 -57.23,68.359 -74.664,72.273"
|
||||||
|
style="fill:#231f20;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
id="path76" /><path
|
||||||
|
d="m 1028.53,883.359 -25.06,8.688 c -17.384,5.773 -31.247,11.094 -31.247,24.543 0,5.793 4.062,21.687 35.847,21.687 31.2,0 51.14,-12.547 63.92,-20.269 l 4.59,1.504 5.1,52.476 -2.56,2.887 c -24.02,6.242 -44.97,12.094 -78.19,12.094 -25.043,0 -75.192,-1.977 -101.774,-38.09 -6.66,-8.672 -13.804,-23.149 -13.804,-42.391 0,-51.566 42.445,-66.961 66.472,-75.59 l 19.391,-6.734 c 13.828,-4.363 36.345,-11.609 36.345,-28.906 0,-12.07 -11.79,-25.047 -40.384,-25.047 -14.321,0 -35.317,4.328 -54.168,13.437 -8.699,4.321 -12.84,7.758 -20.512,13.524 l -4.625,-1.914 c -1.008,-25.047 -1.488,-30.371 -3.523,-54.465 l 2.515,-4.305 c 25.071,-8.687 46.543,-16.383 83.86,-16.383 38.897,0 115.587,6.739 124.747,75.606 0.54,3.887 0.54,7.266 0.54,10.609 0,52.942 -39.33,66.93 -67.48,77.039"
|
||||||
|
style="fill:#231f20;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
id="path78" /></g></g></svg>
|
After Width: | Height: | Size: 21 KiB |
345
04-resources/logos/logo.svg
Normal file
@ -0,0 +1,345 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||||
|
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||||
|
|
||||||
|
<svg
|
||||||
|
width="23.118999mm"
|
||||||
|
height="23.118999mm"
|
||||||
|
viewBox="0 0 23.118999 23.119"
|
||||||
|
version="1.1"
|
||||||
|
id="svg8"
|
||||||
|
inkscape:version="1.2.2 (b0a84865, 2022-12-01)"
|
||||||
|
sodipodi:docname="logo.svg"
|
||||||
|
inkscape:export-filename="C:\work\OneDrive - HESSO\hevs\10_Course\01_Admin\logo\latex-document.png"
|
||||||
|
inkscape:export-xdpi="549.33002"
|
||||||
|
inkscape:export-ydpi="549.33002"
|
||||||
|
xml:space="preserve"
|
||||||
|
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||||
|
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||||
|
xmlns="http://www.w3.org/2000/svg"
|
||||||
|
xmlns:svg="http://www.w3.org/2000/svg"
|
||||||
|
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||||
|
xmlns:cc="http://creativecommons.org/ns#"
|
||||||
|
xmlns:dc="http://purl.org/dc/elements/1.1/"><defs
|
||||||
|
id="defs2" /><sodipodi:namedview
|
||||||
|
id="base"
|
||||||
|
pagecolor="#ffffff"
|
||||||
|
bordercolor="#666666"
|
||||||
|
borderopacity="1.0"
|
||||||
|
inkscape:pageopacity="0.0"
|
||||||
|
inkscape:pageshadow="2"
|
||||||
|
inkscape:zoom="1.4142136"
|
||||||
|
inkscape:cx="-44.547728"
|
||||||
|
inkscape:cy="52.679456"
|
||||||
|
inkscape:document-units="mm"
|
||||||
|
inkscape:current-layer="g1015"
|
||||||
|
showgrid="false"
|
||||||
|
inkscape:window-width="1720"
|
||||||
|
inkscape:window-height="1359"
|
||||||
|
inkscape:window-x="0"
|
||||||
|
inkscape:window-y="25"
|
||||||
|
inkscape:window-maximized="0"
|
||||||
|
fit-margin-top="0"
|
||||||
|
fit-margin-left="0"
|
||||||
|
fit-margin-right="0"
|
||||||
|
fit-margin-bottom="0"
|
||||||
|
inkscape:showpageshadow="0"
|
||||||
|
inkscape:pagecheckerboard="0"
|
||||||
|
inkscape:deskcolor="#d1d1d1" /><metadata
|
||||||
|
id="metadata5"><rdf:RDF><cc:Work
|
||||||
|
rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type
|
||||||
|
rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title /></cc:Work></rdf:RDF></metadata><g
|
||||||
|
inkscape:label="Layer 1"
|
||||||
|
inkscape:groupmode="layer"
|
||||||
|
id="layer1"
|
||||||
|
style="opacity:1"
|
||||||
|
transform="translate(-59.839396,-122.06852)"><circle
|
||||||
|
id="path59"
|
||||||
|
cx="71.310631"
|
||||||
|
cy="133.62802"
|
||||||
|
style="fill:#c8306f;fill-opacity:1;stroke-width:0.19988333"
|
||||||
|
r="11.5595"
|
||||||
|
inkscape:export-xdpi="549.33002"
|
||||||
|
inkscape:export-ydpi="549.33002" /><path
|
||||||
|
style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#000000;fill-opacity:0.34806632;fill-rule:nonzero;stroke:none;stroke-width:0.99999994;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
|
||||||
|
d="M 68.861328 30.962891 L 57.302734 31.708984 L 56.53125 56.787109 L 31.804688 56.851562 L 17.404297 60.900391 L 44.904297 87.324219 A 43.689448 43.689448 0 0 0 86.708984 48.828125 L 68.861328 30.962891 z "
|
||||||
|
transform="matrix(0.26458333,0,0,0.26458333,59.839396,122.06852)"
|
||||||
|
id="rect4880" /><g
|
||||||
|
id="g1015"
|
||||||
|
transform="matrix(0.12584555,0,0,0.12584555,63.151756,125.51098)"
|
||||||
|
inkscape:transform-center-x="-1.9197779"
|
||||||
|
inkscape:transform-center-y="-8.9035725"><rect
|
||||||
|
id="rect890"
|
||||||
|
y="17"
|
||||||
|
x="11"
|
||||||
|
width="68"
|
||||||
|
height="83"
|
||||||
|
class="st1"
|
||||||
|
style="fill:#ffffff" /><g
|
||||||
|
id="g973"
|
||||||
|
transform="translate(121.60192,11.873235)"><line
|
||||||
|
id="line888"
|
||||||
|
y2="50.522045"
|
||||||
|
y1="50.522045"
|
||||||
|
x2="-80.727577"
|
||||||
|
x1="-103.46391"
|
||||||
|
class="st34"
|
||||||
|
style="opacity:0.2;fill:none;stroke:#242c88;stroke-width:2.75296;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10" /><line
|
||||||
|
id="line890"
|
||||||
|
y2="45.522053"
|
||||||
|
y1="45.522053"
|
||||||
|
x2="-57.991215"
|
||||||
|
x1="-103.46391"
|
||||||
|
class="st34"
|
||||||
|
style="opacity:0.2;fill:none;stroke:#242c88;stroke-width:2.75296;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10" /><line
|
||||||
|
id="line892"
|
||||||
|
y2="61.317158"
|
||||||
|
y1="61.317158"
|
||||||
|
x2="-57.991215"
|
||||||
|
x1="-103.46391"
|
||||||
|
class="st34"
|
||||||
|
style="opacity:0.2;fill:none;stroke:#242c88;stroke-width:2.75296;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10" /><line
|
||||||
|
id="line894"
|
||||||
|
y2="74.702492"
|
||||||
|
y1="74.702492"
|
||||||
|
x2="-80.727577"
|
||||||
|
x1="-103.46391"
|
||||||
|
class="st34"
|
||||||
|
style="opacity:0.2;fill:none;stroke:#242c88;stroke-width:2.75296;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10" /><line
|
||||||
|
id="line896"
|
||||||
|
y2="69.702492"
|
||||||
|
y1="69.702492"
|
||||||
|
x2="-57.991215"
|
||||||
|
x1="-103.46391"
|
||||||
|
class="st34"
|
||||||
|
style="opacity:0.2;fill:none;stroke:#242c88;stroke-width:2.75296;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10" /><path
|
||||||
|
style="fill:#2ba5ae;stroke:none;stroke-width:0.138802"
|
||||||
|
d="m -100.75905,20.484769 v 2.63723 l 2.914841,-0.1388 -0.2776,1.66562 -2.637241,-0.1388 v 5.55207 c 3e-4,0.76743 -0.0244,1.6516 0.834901,1.97848 0.79117,0.30092 1.62287,-0.37879 2.35754,-0.59046 0.51079,0.96731 -0.17947,1.34582 -0.97161,1.84661 -1.237,0.78201 -2.863341,1.11181 -4.158501,0.23958 -0.83725,-0.56382 -1.00159,-1.56402 -1.09237,-2.5026 -0.21125,-2.18238 -0.0236,-4.46969 -0.0236,-6.66248 h -1.24922 l -0.1388,-0.83281 1.38802,-0.41641 c 0.001,-1.69137 1.56471,-2.20832 3.05363,-2.63723 m 42.61213,0 v 2.63723 l 2.91483,-0.1388 c -0.46734,1.89673 -1.10555,1.52682 -2.91483,1.52682 v 5.55207 c 0,0.72288 -0.10785,1.62412 0.70011,1.96238 0.82254,0.3445 1.72531,-0.35353 2.49233,-0.57436 0.50426,0.95301 -0.17947,1.34179 -0.97162,1.8301 -1.21493,0.74911 -2.87403,1.17329 -4.16197,0.29315 -0.95967,-0.65584 -1.10722,-1.88271 -1.11235,-2.95606 -0.0101,-2.08189 -1e-4,-4.16419 -1e-4,-6.24608 h -1.24922 l -0.1388,-0.83281 1.38802,-0.41641 c 10e-4,-1.70311 1.55957,-2.20697 3.05364,-2.63723 m -21.653104,3.88645 c 0.777146,-0.55826 1.548746,-1.25588 2.498426,-1.49143 2.94481,-0.73076 4.80156,1.75085 4.98437,4.40626 0.21625,3.13956 -1.43036,6.12158 -4.70677,6.67345 -0.98272,0.16559 -1.76223,0.0652 -2.637226,-0.42737 0,1.16469 -0.50149,3.88298 0.2225,4.82642 0.408486,0.53216 1.256846,0.56964 1.859516,0.72565 l -0.1388,0.832809 -4.164046,-0.138659 -1.92324,0.094 -0.57519,-0.78812 c 0.63627,-0.28385 1.42646,-0.48261 1.62148,-1.24977 0.22403,-0.88111 0.0441,-2.00749 0.0441,-2.91428 v -6.10728 c 0,-1.04545 0.29495,-2.62141 -0.0833,-3.60218 -0.28274,-0.73357 -1.09098,-0.56326 -1.72114,-0.56187 0.0158,-1.33083 2.83391,-2.48305 4.00484,-1.8004 0.48525,0.28288 0.55812,1.03116 0.71442,1.5228 m 14.712974,1.94322 c -0.38976,-0.87403 -2.08883,-3.71222 -3.1676,-1.78929 -0.672208,1.19814 0.77771,2.00083 1.64078,2.44749 1.83732,0.95065 3.71669,2.23346 3.06363,4.61627 -0.6575,2.39877 -3.6398,2.66749 -5.700858,2.37767 -0.59227,-0.0831 -1.83954,-0.14394 -2.13713,-0.76674 -0.30856,-0.64612 -0.35228,-3.42715 0.96703,-2.90262 0.38767,0.15407 0.47706,0.82462 0.66583,1.15289 0.61836,1.07557 2.282458,2.04899 3.177308,0.6879 0.54161,-0.82393 -0.0747,-1.62884 -0.73037,-2.1413 -1.400928,-1.09459 -3.593998,-1.43326 -3.860218,-3.54347 -0.37754,-2.99325 2.25289,-3.74575 4.693578,-3.61377 0.6818,0.0369 2.03109,0.0348 2.55298,0.54029 0.85807,0.83114 -0.2504,2.73342 -1.16496,2.93468 m -26.649919,-3.33124 -1.15983,1.67326 0.57644,1.79678 1.555,4.02525 1.5711,-4.16405 0.49413,-1.65951 -1.23242,-1.67173 h 4.719255 l -0.1388,0.97161 c -1.482815,0.2994 -1.856055,2.24804 -2.380445,3.47005 -1.46256,3.40744 -2.62474,7.19298 -4.46775,10.40999 -0.49802,0.86945 -2.52925,2.66235 -3.63147,1.72031 -0.65126,-0.55674 -0.79867,-2.0304 -0.90208,-2.83059 1.38011,-0.51315 2.52328,0.74745 3.55985,-0.97217 1.60122,-2.65611 -1.02352,-6.30451 -2.13282,-8.88275 -0.47415,-1.10195 -0.7816,-2.64376 -2.12103,-2.91484 l -0.13881,-0.97161 h 5.82968 m 13.463751,1.75418 c -0.47053,0.13505 -1.099436,0.45152 -1.304316,0.92483 -0.24304,0.56187 -0.0837,1.43841 -0.0837,2.04025 0,1.65313 -0.57131,5.73834 2.359626,4.93662 2.24053,-0.61281 2.04968,-4.78422 1.49572,-6.46344 -0.34603,-1.04906 -1.35526,-1.75737 -2.46734,-1.43826"
|
||||||
|
id="path475-9"
|
||||||
|
sodipodi:nodetypes="ccccccccccccccccccccsccccccccccccccccccccccssccccccccccccccccscccccccccccccccccccccsccc" /></g><rect
|
||||||
|
id="rect892"
|
||||||
|
y="17"
|
||||||
|
x="11"
|
||||||
|
width="68"
|
||||||
|
height="83"
|
||||||
|
class="st2"
|
||||||
|
style="fill:none;stroke:#242c88;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10" /><path
|
||||||
|
id="path906"
|
||||||
|
d="M 79,101 V 24 H 28 c -1.1,0 -2,0.9 -2,2 v 75 z"
|
||||||
|
class="st16"
|
||||||
|
inkscape:connector-curvature="0"
|
||||||
|
style="opacity:0.2;fill:#242c88" /><rect
|
||||||
|
id="rect908"
|
||||||
|
y="29"
|
||||||
|
x="31"
|
||||||
|
width="68"
|
||||||
|
height="83"
|
||||||
|
class="st1"
|
||||||
|
style="fill:#ffffff" /><rect
|
||||||
|
id="rect910"
|
||||||
|
y="29"
|
||||||
|
x="31"
|
||||||
|
width="68"
|
||||||
|
height="83"
|
||||||
|
class="st2"
|
||||||
|
style="fill:none;stroke:#242c88;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10" /><line
|
||||||
|
id="line912"
|
||||||
|
y2="69.819557"
|
||||||
|
y1="69.819557"
|
||||||
|
x2="64.263657"
|
||||||
|
x1="41.527317"
|
||||||
|
class="st34"
|
||||||
|
style="opacity:0.2;fill:none;stroke:#242c88;stroke-width:2.75295854;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10" /><line
|
||||||
|
id="line914"
|
||||||
|
y2="64.819565"
|
||||||
|
y1="64.819565"
|
||||||
|
x2="87"
|
||||||
|
x1="41.527317"
|
||||||
|
class="st34"
|
||||||
|
style="opacity:0.2;fill:none;stroke:#242c88;stroke-width:2.75295854;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10" /><line
|
||||||
|
id="line920"
|
||||||
|
y2="74"
|
||||||
|
y1="74"
|
||||||
|
x2="75"
|
||||||
|
x1="63"
|
||||||
|
class="st34"
|
||||||
|
style="opacity:0.2;fill:none;stroke:#242c88;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10" /><line
|
||||||
|
id="line922"
|
||||||
|
y2="80.614662"
|
||||||
|
y1="80.614662"
|
||||||
|
x2="87"
|
||||||
|
x1="41.527317"
|
||||||
|
class="st34"
|
||||||
|
style="opacity:0.2;fill:none;stroke:#242c88;stroke-width:2.75295854;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10" /><line
|
||||||
|
id="line928"
|
||||||
|
y2="94"
|
||||||
|
y1="94"
|
||||||
|
x2="64.263657"
|
||||||
|
x1="41.527317"
|
||||||
|
class="st34"
|
||||||
|
style="opacity:0.2;fill:none;stroke:#242c88;stroke-width:2.75295854;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10" /><line
|
||||||
|
id="line930"
|
||||||
|
y2="89"
|
||||||
|
y1="89"
|
||||||
|
x2="87"
|
||||||
|
x1="41.527317"
|
||||||
|
class="st34"
|
||||||
|
style="opacity:0.2;fill:none;stroke:#242c88;stroke-width:2.75295854;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10" /><polygon
|
||||||
|
id="polygon940"
|
||||||
|
points="99,78.6 99,57.6 65.2,77.5 53.6,94.9 74.4,93.1 "
|
||||||
|
class="st16"
|
||||||
|
style="opacity:0.2;fill:#242c88" /><path
|
||||||
|
style="fill:#2ba5ae;stroke:none;stroke-width:0.138802"
|
||||||
|
d="m 44.287746,39.918033 v 2.63723 l 2.91484,-0.1388 -0.2776,1.66562 -2.63724,-0.1388 v 5.55207 c 3e-4,0.76743 -0.0244,1.6516 0.8349,1.97848 0.79117,0.30092 1.62287,-0.37879 2.35754,-0.59046 0.51079,0.96731 -0.17947,1.34582 -0.97161,1.84661 -1.237,0.78201 -2.86334,1.11181 -4.1585,0.23958 -0.83725,-0.56382 -1.00159,-1.56402 -1.09237,-2.5026 -0.21125,-2.18238 -0.0236,-4.46969 -0.0236,-6.66248 h -1.24922 l -0.1388,-0.83281 1.38802,-0.41641 c 0.001,-1.69137 1.56471,-2.20832 3.05363,-2.63723 m 42.612138,0 v 2.63723 l 2.91483,-0.1388 c -0.46734,1.89673 -1.10555,1.52682 -2.91483,1.52682 v 5.55207 c 0,0.72288 -0.10785,1.62412 0.70011,1.96238 0.82254,0.3445 1.72531,-0.35353 2.49233,-0.57436 0.50426,0.95301 -0.17947,1.34179 -0.97162,1.8301 -1.21493,0.74911 -2.87403,1.17329 -4.16197,0.29315 -0.95967,-0.65584 -1.10722,-1.88271 -1.11235,-2.95606 -0.0101,-2.08189 -1e-4,-4.16419 -1e-4,-6.24608 h -1.24922 l -0.1388,-0.83281 1.38802,-0.41641 c 0.001,-1.70311 1.55957,-2.20697 3.05364,-2.63723 m -21.653108,3.88645 c 0.77715,-0.55826 1.54875,-1.25588 2.49843,-1.49143 2.94481,-0.73076 4.80156,1.75085 4.98437,4.40626 0.21625,3.13956 -1.43036,6.12158 -4.70677,6.67345 -0.98272,0.16559 -1.76223,0.0652 -2.63723,-0.42737 0,1.16469 -0.50149,3.88298 0.2225,4.82642 0.40849,0.53216 1.25685,0.56964 1.85952,0.72565 l -0.1388,0.832809 -4.16405,-0.138659 -1.92324,0.094 -0.57519,-0.78812 c 0.63627,-0.28385 1.42646,-0.48261 1.62148,-1.24977 0.22403,-0.88111 0.0441,-2.00749 0.0441,-2.91428 v -6.10728 c 0,-1.04545 0.29495,-2.62141 -0.0833,-3.60218 -0.28274,-0.73357 -1.09098,-0.56326 -1.72114,-0.56187 0.0158,-1.33083 2.83391,-2.48305 4.00484,-1.8004 0.48525,0.28288 0.55812,1.03116 0.71442,1.5228 m 14.712978,1.94322 c -0.38976,-0.87403 -2.08883,-3.71222 -3.1676,-1.78929 -0.672208,1.19814 0.77771,2.00083 1.64078,2.44749 1.83732,0.95065 3.71669,2.23346 3.06363,4.61627 -0.6575,2.39877 -3.6398,2.66749 -5.700858,2.37767 -0.59227,-0.0831 -1.83954,-0.14394 -2.13713,-0.76674 -0.30856,-0.64612 -0.35228,-3.42715 0.96703,-2.90262 0.38767,0.15407 0.47706,0.82462 0.66583,1.15289 0.61836,1.07557 2.282458,2.04899 3.177308,0.6879 0.54161,-0.82393 -0.0747,-1.62884 -0.73037,-2.1413 -1.400928,-1.09459 -3.593998,-1.43326 -3.860218,-3.54347 -0.37754,-2.99325 2.25289,-3.74575 4.693578,-3.61377 0.6818,0.0369 2.03109,0.0348 2.55298,0.54029 0.85807,0.83114 -0.2504,2.73342 -1.16496,2.93468 m -26.649928,-3.33124 -1.15983,1.67326 0.57644,1.79678 1.555,4.02525 1.5711,-4.16405 0.49413,-1.65951 -1.23242,-1.67173 h 4.71926 l -0.1388,0.97161 c -1.48282,0.2994 -1.85606,2.24804 -2.38045,3.47005 -1.46256,3.40744 -2.62474,7.19298 -4.46775,10.40999 -0.49802,0.86945 -2.52925,2.66235 -3.63147,1.72031 -0.65126,-0.55674 -0.79867,-2.0304 -0.90208,-2.83059 1.38011,-0.51315 2.52328,0.74745 3.55985,-0.97217 1.60122,-2.65611 -1.02352,-6.30451 -2.13282,-8.88275 -0.47415,-1.10195 -0.7816,-2.64376 -2.12103,-2.91484 l -0.13881,-0.97161 h 5.82968 m 13.46376,1.75418 c -0.47053,0.13505 -1.09944,0.45152 -1.30432,0.92483 -0.24304,0.56187 -0.0837,1.43841 -0.0837,2.04025 0,1.65313 -0.57131,5.73834 2.35963,4.93662 2.24053,-0.61281 2.04968,-4.78422 1.49572,-6.46344 -0.34603,-1.04906 -1.35526,-1.75737 -2.46734,-1.43826"
|
||||||
|
id="path475"
|
||||||
|
sodipodi:nodetypes="ccccccccccccccccccccsccccccccccccccccccccccssccccccccccccccccscccccccccccccccccccccsccc" /><g
|
||||||
|
id="g966"><polygon
|
||||||
|
id="polygon942"
|
||||||
|
points="98.6,37.3 111.4,50.1 73.8,87.7 54.1,94.6 61,74.9 "
|
||||||
|
class="st1"
|
||||||
|
style="fill:#ffffff" /><rect
|
||||||
|
id="rect944"
|
||||||
|
y="53.5"
|
||||||
|
x="59.599998"
|
||||||
|
width="53.200001"
|
||||||
|
transform="matrix(0.7071,-0.7071,0.7071,0.7071,-18.9596,79.2808)"
|
||||||
|
height="18.1"
|
||||||
|
class="st18"
|
||||||
|
style="fill:#ffc408" /><rect
|
||||||
|
id="rect946"
|
||||||
|
y="64.400002"
|
||||||
|
x="64.099998"
|
||||||
|
width="53.200001"
|
||||||
|
transform="matrix(0.7071,-0.7071,0.7071,0.7071,-20.8293,83.7946)"
|
||||||
|
height="5.3000002"
|
||||||
|
class="st16"
|
||||||
|
style="opacity:0.2;fill:#242c88" /><polygon
|
||||||
|
id="polygon948"
|
||||||
|
points="54.1,94.4 62.5,91.4 57.1,86 "
|
||||||
|
class="st3"
|
||||||
|
style="fill:#5e61a3" /><polygon
|
||||||
|
id="polygon950"
|
||||||
|
points="98.6,37.3 111.4,50.1 73.8,87.7 54.1,94.6 61,74.9 "
|
||||||
|
class="st2"
|
||||||
|
style="fill:none;stroke:#242c88;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10" /><path
|
||||||
|
id="path952"
|
||||||
|
d="m 111.4,50.1 6,-6 c 1.7,-1.7 1.7,-4.4 0,-6 l -6.8,-6.8 c -1.7,-1.7 -4.4,-1.7 -6,0 l -6,6 z"
|
||||||
|
class="st13"
|
||||||
|
inkscape:connector-curvature="0"
|
||||||
|
style="fill:#f3877e" /><path
|
||||||
|
id="path954"
|
||||||
|
d="m 111.4,50.1 6,-6 c 1.7,-1.7 1.7,-4.4 0,-6 l -6.8,-6.8 c -1.7,-1.7 -4.4,-1.7 -6,0 l -6,6 z"
|
||||||
|
class="st2"
|
||||||
|
inkscape:connector-curvature="0"
|
||||||
|
style="fill:none;stroke:#242c88;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10" /><line
|
||||||
|
id="line956"
|
||||||
|
y2="47.099998"
|
||||||
|
y1="73.400002"
|
||||||
|
x2="106.9"
|
||||||
|
x1="80.599998"
|
||||||
|
class="st2"
|
||||||
|
style="fill:none;stroke:#242c88;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10" /><line
|
||||||
|
id="line958"
|
||||||
|
y2="77.900002"
|
||||||
|
y1="84"
|
||||||
|
x2="76.099998"
|
||||||
|
x1="70"
|
||||||
|
class="st2"
|
||||||
|
style="fill:none;stroke:#242c88;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10" /><rect
|
||||||
|
id="rect960"
|
||||||
|
y="35.099998"
|
||||||
|
x="100.9"
|
||||||
|
width="7.4000001"
|
||||||
|
transform="matrix(0.7071,-0.7071,0.7071,0.7071,-0.5282,86.9153)"
|
||||||
|
height="18.1"
|
||||||
|
class="st1"
|
||||||
|
style="fill:#ffffff" /><rect
|
||||||
|
id="rect962"
|
||||||
|
y="35.099998"
|
||||||
|
x="100.9"
|
||||||
|
width="7.4000001"
|
||||||
|
transform="matrix(0.7071,-0.7071,0.7071,0.7071,-0.5282,86.9153)"
|
||||||
|
height="18.1"
|
||||||
|
class="st16"
|
||||||
|
style="opacity:0.2;fill:#242c88" /><rect
|
||||||
|
id="rect964"
|
||||||
|
y="35.099998"
|
||||||
|
x="100.9"
|
||||||
|
width="7.4000001"
|
||||||
|
transform="matrix(0.7071,-0.7071,0.7071,0.7071,-0.5282,86.9153)"
|
||||||
|
height="18.1"
|
||||||
|
class="st2"
|
||||||
|
style="fill:none;stroke:#242c88;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10" /></g></g></g><style
|
||||||
|
id="style888"
|
||||||
|
type="text/css">
|
||||||
|
.st0{opacity:0.2;fill:#FFFFFF;}
|
||||||
|
.st1{fill:#FFFFFF;}
|
||||||
|
.st2{fill:none;stroke:#242C88;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
|
||||||
|
.st3{fill:#5E61A3;}
|
||||||
|
.st4{opacity:0.5;fill:#242C88;}
|
||||||
|
.st5{fill:#39C89A;}
|
||||||
|
.st6{fill:#CAEAFB;}
|
||||||
|
.st7{fill:#589FFF;}
|
||||||
|
.st8{fill:#FF5751;}
|
||||||
|
.st9{fill:#BC8D66;}
|
||||||
|
.st10{opacity:0.7;fill:#FFFFFF;}
|
||||||
|
.st11{fill:#F1C92A;}
|
||||||
|
.st12{opacity:0.4;fill:none;stroke:#FFFFFF;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
|
||||||
|
.st13{fill:#F3877E;}
|
||||||
|
.st14{fill:#83D689;}
|
||||||
|
.st15{opacity:0.4;fill:#242C88;}
|
||||||
|
.st16{opacity:0.2;fill:#242C88;}
|
||||||
|
|
||||||
|
.st17{fill:none;stroke:#FFFFFF;stroke-width:3;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:0.1,6;}
|
||||||
|
.st18{fill:#FFC408;}
|
||||||
|
|
||||||
|
.st19{opacity:0.4;fill:none;stroke:#FFFFFF;stroke-width:3;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:0.1,6;}
|
||||||
|
.st20{fill:none;stroke:#CAEAFB;stroke-width:12;stroke-linecap:round;stroke-miterlimit:10;}
|
||||||
|
.st21{fill:none;stroke:#CAEAFB;stroke-width:7;stroke-linecap:round;stroke-miterlimit:10;}
|
||||||
|
.st22{opacity:0.4;fill:none;stroke:#242C88;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
|
||||||
|
.st23{opacity:0.5;}
|
||||||
|
.st24{fill:#242C88;}
|
||||||
|
|
||||||
|
.st25{fill:none;stroke:#242C88;stroke-width:3;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:0.1,6;}
|
||||||
|
.st26{opacity:0.5;fill:#FFFFFF;}
|
||||||
|
.st27{fill:none;stroke:#FFFFFF;stroke-width:3;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
|
||||||
|
.st28{fill:none;stroke:#FFFFFF;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
|
||||||
|
.st29{fill:#E5BD9E;}
|
||||||
|
.st30{fill:#A06D47;}
|
||||||
|
|
||||||
|
.st31{opacity:0.3;fill:none;stroke:#FFFFFF;stroke-width:3;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:0.1,6;}
|
||||||
|
.st32{opacity:0.1;fill:#242C88;}
|
||||||
|
.st33{opacity:0.5;fill:#FF5751;}
|
||||||
|
.st34{opacity:0.2;fill:none;stroke:#242C88;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
|
||||||
|
.st35{opacity:0.3;clip-path:url(#SVGID_2_);}
|
||||||
|
|
||||||
|
.st36{fill:none;stroke:#FFFFFF;stroke-width:3;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:0,6;}
|
||||||
|
|
||||||
|
.st37{opacity:0.3;fill:none;stroke:#FFFFFF;stroke-width:3;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:0,6;}
|
||||||
|
.st38{clip-path:url(#SVGID_4_);}
|
||||||
|
.st39{opacity:0.2;fill:none;stroke:#242C88;stroke-width:9;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
|
||||||
|
.st40{opacity:0.3;}
|
||||||
|
.st41{opacity:0.4;fill:#FFFFFF;}
|
||||||
|
.st42{opacity:0.5;fill:#CAEAFB;}
|
||||||
|
.st43{opacity:0.6;fill:#242C88;}
|
||||||
|
.st44{opacity:0.5;fill:none;stroke:#242C88;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
|
||||||
|
.st45{opacity:0.3;fill:#242C88;}
|
||||||
|
.st46{opacity:0.2;}
|
||||||
|
|
||||||
|
.st47{clip-path:url(#SVGID_6_);fill:none;stroke:#242C88;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
|
||||||
|
.st48{opacity:0.2;fill:none;stroke:#FFFFFF;stroke-width:8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
|
||||||
|
.st49{clip-path:url(#SVGID_8_);fill:#FFFFFF;}
|
||||||
|
|
||||||
|
.st50{clip-path:url(#SVGID_8_);fill:none;stroke:#242C88;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
|
||||||
|
.st51{opacity:0.2;clip-path:url(#SVGID_8_);fill:#242C88;}
|
||||||
|
|
||||||
|
.st52{opacity:0.2;clip-path:url(#SVGID_8_);fill:none;stroke:#242C88;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
|
||||||
|
.st53{fill:none;stroke:#242C88;stroke-width:1.848;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
|
||||||
|
.st54{opacity:0.4;fill:none;stroke:#FFFFFF;stroke-width:7;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
|
||||||
|
.st55{opacity:0.2;fill:none;stroke:#242C88;stroke-width:7;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
|
||||||
|
.st56{opacity:7.000000e-02;fill:#242C88;}
|
||||||
|
.st57{fill:none;stroke:#FFFFFF;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
|
||||||
|
.st58{opacity:0.4;fill:none;stroke:#FFFFFF;stroke-width:8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
|
||||||
|
.st59{opacity:0.2;fill:none;stroke:#242C88;stroke-width:8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
|
||||||
|
.st60{fill:none;stroke:#FF5751;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
|
||||||
|
.st61{fill:none;stroke:#242C88;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
|
||||||
|
</style></svg>
|
After Width: | Height: | Size: 22 KiB |
54
04-resources/logos/synd-light.svg
Normal file
After Width: | Height: | Size: 39 KiB |
233
04-resources/logos/valais-excellence-logo.svg
Normal file
@ -0,0 +1,233 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||||
|
<svg
|
||||||
|
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||||
|
xmlns:cc="http://creativecommons.org/ns#"
|
||||||
|
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||||
|
xmlns:svg="http://www.w3.org/2000/svg"
|
||||||
|
xmlns="http://www.w3.org/2000/svg"
|
||||||
|
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||||
|
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||||
|
version="1.1"
|
||||||
|
id="layer"
|
||||||
|
x="0px"
|
||||||
|
y="0px"
|
||||||
|
viewBox="0 0 500 500"
|
||||||
|
xml:space="preserve"
|
||||||
|
sodipodi:docname="valais-excellence-logo.svg"
|
||||||
|
width="500"
|
||||||
|
height="500"
|
||||||
|
inkscape:version="1.0.1 (3bc2e813f5, 2020-09-07)"><metadata
|
||||||
|
id="metadata89"><rdf:RDF><cc:Work
|
||||||
|
rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type
|
||||||
|
rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs
|
||||||
|
id="defs87" /><sodipodi:namedview
|
||||||
|
pagecolor="#ffffff"
|
||||||
|
bordercolor="#666666"
|
||||||
|
borderopacity="1"
|
||||||
|
objecttolerance="10"
|
||||||
|
gridtolerance="10"
|
||||||
|
guidetolerance="10"
|
||||||
|
inkscape:pageopacity="0"
|
||||||
|
inkscape:pageshadow="2"
|
||||||
|
inkscape:window-width="1000"
|
||||||
|
inkscape:window-height="480"
|
||||||
|
id="namedview85"
|
||||||
|
showgrid="false"
|
||||||
|
showguides="true"
|
||||||
|
inkscape:guide-bbox="true"
|
||||||
|
inkscape:zoom="0.19249958"
|
||||||
|
inkscape:cx="257.20096"
|
||||||
|
inkscape:cy="173.917"
|
||||||
|
inkscape:window-x="1342"
|
||||||
|
inkscape:window-y="262"
|
||||||
|
inkscape:window-maximized="0"
|
||||||
|
inkscape:current-layer="layer"><sodipodi:guide
|
||||||
|
position="1066.0596,-291.13435"
|
||||||
|
orientation="1,0"
|
||||||
|
id="guide914" /></sodipodi:namedview>
|
||||||
|
<style
|
||||||
|
type="text/css"
|
||||||
|
id="style2">
|
||||||
|
.st0{fill:#E50012;}
|
||||||
|
.st1{fill:#B2A8A2;}
|
||||||
|
.st2{fill:#9B867D;}
|
||||||
|
.st3{fill:#FFFFFF;}
|
||||||
|
.st4{fill:#AC0003;}
|
||||||
|
</style>
|
||||||
|
<g
|
||||||
|
id="g8"
|
||||||
|
transform="translate(-76.8,-76.4)">
|
||||||
|
<path
|
||||||
|
class="st0"
|
||||||
|
d="M 467,328.7 C 467,406.2 404.2,469 326.7,469 249.2,469 186.4,406.2 186.4,328.7 c 0,-77.5 62.8,-140.3 140.3,-140.3 77.5,0 140.3,62.8 140.3,140.3"
|
||||||
|
id="path4" />
|
||||||
|
<path
|
||||||
|
class="st0"
|
||||||
|
d="M 81.5,326.4 C 81.5,191.2 191.5,81.1 326.7,81.1 462,81.2 572,191.2 572,326.4 572,461.6 462,571.6 326.8,571.6 191.6,571.6 81.5,461.6 81.5,326.4 m -4.7,0 c 0,137.8 112.1,250 250,250 137.9,0 250,-112.1 250,-250 0,-137.9 -112.1,-250 -250,-250 -137.9,0 -250,112.2 -250,250"
|
||||||
|
id="path6" />
|
||||||
|
</g>
|
||||||
|
<polygon
|
||||||
|
class="st0"
|
||||||
|
points="340.5,142.8 349.6,177.7 328.2,151.6 308.8,164.2 314.9,142.8 291.3,129.4 320,129.4 328.2,96.9 336.5,129.4 358.1,129.4 "
|
||||||
|
id="polygon10"
|
||||||
|
transform="translate(-76.8,-76.4)" />
|
||||||
|
<g
|
||||||
|
id="g20"
|
||||||
|
transform="translate(-76.8,-76.4)">
|
||||||
|
<path
|
||||||
|
class="st1"
|
||||||
|
d="m 434.2,459.1 c -29.4,23.8 -66.8,38.1 -107.5,38.1 -41.3,0 -79.3,-14.8 -108.8,-39.3 -20.6,2 -46.5,23.9 -46.5,23.9 39.8,39.8 94.8,64.4 155.4,64.4 60,0 114.5,-24.2 154.2,-63.3 0,0.2 -26.1,-22 -46.8,-23.8"
|
||||||
|
id="path12" />
|
||||||
|
<path
|
||||||
|
class="st2"
|
||||||
|
d="m 263.5,134.4 c -7.4,2.4 -9.7,8.8 -7.2,17.5 l 23.4,-7.6 c -2.7,-7.9 -7.5,-12.7 -16.2,-9.9 m -5.4,23.5 c 5.8,13.1 15.7,10.4 22.1,8.3 4,-1.3 7.5,-3 11.6,-5.1 l 1.9,6 c -4.8,3 -9.3,4.8 -14.1,6.3 -15.5,5 -26.9,-1.1 -31.7,-16.1 -5,-15.5 2.4,-25.1 13.7,-28.8 15.1,-4.9 24.3,2.4 28.8,16.6 l 0.7,2.2 z"
|
||||||
|
id="path14" />
|
||||||
|
<path
|
||||||
|
class="st2"
|
||||||
|
d="m 378.8,175.4 c -14.3,-4.2 -22,-15.1 -17.2,-31.2 4.2,-14.2 17.1,-19.1 30.4,-15.2 4.6,1.4 7.3,2.4 11.3,4.4 l -1.9,6.6 c -3.4,-1.6 -5.6,-2.7 -8.4,-3.5 -10,-3.1 -19,-0.9 -22.4,10.4 -3.4,11.5 1.7,19.2 12.7,22.4 2.5,0.6 5.2,1.3 9.3,1.7 l -1.9,6.5 c -4.7,-0.2 -8.3,-1 -11.9,-2.1"
|
||||||
|
id="path16" />
|
||||||
|
<path
|
||||||
|
class="st2"
|
||||||
|
d="m 436.8,157.9 c -6.6,-4.3 -13,-2.1 -18.1,5.4 l 20.6,13.5 c 4.4,-7.1 5.3,-13.9 -2.5,-18.9 m -21.6,10.6 c -6.5,12.8 1.8,18.8 7.4,22.4 3.5,2.3 7.1,4 11.3,5.8 l -3.4,5.2 c -5.4,-1.9 -9.5,-4.2 -13.8,-7 -13.6,-8.9 -16,-21.6 -7.4,-34.8 8.9,-13.6 21.1,-13.9 31,-7.4 13.3,8.7 13.4,20.4 5.2,32.9 l -1.3,1.9 z"
|
||||||
|
id="path18" />
|
||||||
|
</g>
|
||||||
|
<rect
|
||||||
|
x="167.85394"
|
||||||
|
y="349.28809"
|
||||||
|
transform="rotate(-43.760095)"
|
||||||
|
class="st2"
|
||||||
|
width="65.996155"
|
||||||
|
height="8.7994871"
|
||||||
|
id="rect22"
|
||||||
|
style="stroke-width:0.999942" />
|
||||||
|
<polygon
|
||||||
|
class="st2"
|
||||||
|
points="513.1,197.9 459.6,236.5 454.5,229.4 508,190.7 "
|
||||||
|
id="polygon24"
|
||||||
|
transform="translate(-76.8,-76.4)" />
|
||||||
|
<g
|
||||||
|
id="g36"
|
||||||
|
transform="translate(-76.8,-76.4)">
|
||||||
|
<path
|
||||||
|
class="st2"
|
||||||
|
d="m 513,249.8 c -3,-7.2 -9.6,-9 -18,-5.7 l 9.5,22.7 c 7.7,-3.4 12.1,-8.5 8.5,-17 m -23.8,-3.4 c -12.6,6.9 -9,16.5 -6.4,22.7 1.6,3.9 3.6,7.3 6.1,11.1 l -5.8,2.4 c -3.4,-4.6 -5.5,-8.9 -7.5,-13.6 -6.3,-15 -1.1,-26.9 13.4,-33 15,-6.3 25.2,0.3 29.8,11.3 6.1,14.7 -0.4,24.4 -14.1,30.1 l -2.1,0.9 z"
|
||||||
|
id="path26" />
|
||||||
|
<path
|
||||||
|
class="st2"
|
||||||
|
d="m 488,328.2 29.4,-2 c 4.9,-0.3 10.3,-0.8 9.7,-8.7 -0.3,-4.5 -3.3,-10.9 -5.2,-14.7 l -35.5,2.4 -0.6,-8.7 46.2,-3.1 0.5,8.1 -4.2,0.3 c 4.7,8.9 5.9,11.9 6.4,18.3 0.4,6.6 -2.9,14.1 -13.1,14.8 l -33,2.2 z"
|
||||||
|
id="path28" />
|
||||||
|
<path
|
||||||
|
class="st2"
|
||||||
|
d="m 480.5,372.5 c 3.5,-14.6 13.9,-22.7 30.2,-18.9 14.4,3.4 20,16 16.8,29.5 -1.1,4.7 -2,7.4 -3.8,11.5 L 517,393 c 1.5,-3.5 2.4,-5.8 3,-8.6 2.5,-10.2 -0.1,-19 -11.7,-21.7 -11.6,-2.8 -19.1,2.8 -21.7,13.9 -0.5,2.5 -1,5.3 -1.2,9.4 l -6.6,-1.6 c 0.2,-4.5 0.8,-8.2 1.7,-11.9"
|
||||||
|
id="path30" />
|
||||||
|
<path
|
||||||
|
class="st2"
|
||||||
|
d="m 501.2,429.5 c 3.9,-6.8 1.3,-13 -6.4,-17.8 L 482.4,433 c 7.4,4.1 14.1,4.5 18.8,-3.5 m -11.8,-21 c -13.1,-5.9 -18.6,2.8 -22,8.6 -2.1,3.7 -3.6,7.3 -5.2,11.5 l -5.4,-3.1 c 1.6,-5.5 3.7,-9.7 6.3,-14.2 8.2,-14.1 20.7,-17.2 34.3,-9.3 14.1,8.2 15,20.3 9.1,30.6 -8,13.8 -19.6,14.4 -32.5,7 l -2,-1.2 z"
|
||||||
|
id="path32" />
|
||||||
|
<path
|
||||||
|
class="st3"
|
||||||
|
d="m 212.5,498 c -4.8,-3.3 -6.2,-8.5 -2.9,-13.3 3.3,-4.9 8.4,-5.8 13.4,-2.4 1.4,1 3,2.1 4.2,3.4 l -1.9,2.8 c 0,0 -1.5,-1.5 -3,-2.5 -3.1,-2.1 -5.7,-2.2 -8.2,1.5 -2.5,3.6 -1.5,6 1.6,8.2 1.5,1 3.6,2 3.6,2 l -1.9,2.7 c -1.8,-0.5 -3.4,-1.3 -4.9,-2.4"
|
||||||
|
id="path34" />
|
||||||
|
</g>
|
||||||
|
<polygon
|
||||||
|
class="st3"
|
||||||
|
points="249.2,497.3 247.7,500.3 239.7,496.3 237.9,499.9 243.6,502.7 242.1,505.6 236.4,502.8 234.5,506.7 242.8,510.9 241.3,513.9 228.4,507.5 236.7,491 "
|
||||||
|
id="polygon38"
|
||||||
|
transform="translate(-76.8,-76.4)" />
|
||||||
|
<g
|
||||||
|
id="g42"
|
||||||
|
transform="translate(-76.8,-76.4)">
|
||||||
|
<path
|
||||||
|
class="st3"
|
||||||
|
d="m 265.8,507.2 -2.5,-0.8 -1.8,5.3 2.5,0.8 c 1.9,0.6 3.1,0.3 3.8,-1.7 0.7,-2.1 0,-3 -2,-3.6 m 1.7,8.9 2.3,8.3 -5.5,-1.8 -1.6,-7 -2.2,-0.7 -2,5.9 -4.8,-1.6 5.8,-17.5 8.6,2.9 c 3.7,1.2 6.1,3.5 4.7,7.7 -1.4,4.1 -5.3,3.6 -5.3,3.6 z"
|
||||||
|
id="path40" />
|
||||||
|
</g>
|
||||||
|
<polygon
|
||||||
|
class="st3"
|
||||||
|
points="288.1,513.3 282.6,512.2 283.2,508.8 299.2,511.8 298.6,515.2 293.1,514.2 290.3,528.9 285.3,528 "
|
||||||
|
id="polygon44"
|
||||||
|
transform="translate(-76.8,-76.4)" />
|
||||||
|
<polygon
|
||||||
|
class="st3"
|
||||||
|
points="315.1,513.2 310,512.9 308.7,531.2 313.8,531.6 "
|
||||||
|
id="polygon46"
|
||||||
|
transform="translate(-76.8,-76.4)" />
|
||||||
|
<polygon
|
||||||
|
class="st3"
|
||||||
|
points="340,521.4 340.1,524.9 333.5,525.2 333.8,531.8 328.7,532 327.9,513.6 342.2,512.9 342.3,516.4 333.1,516.8 333.3,521.7 "
|
||||||
|
id="polygon48"
|
||||||
|
transform="translate(-76.8,-76.4)" />
|
||||||
|
<polygon
|
||||||
|
class="st3"
|
||||||
|
points="361.5,528.8 358.5,510.6 353.5,511.4 356.5,529.6 "
|
||||||
|
id="polygon50"
|
||||||
|
transform="translate(-76.8,-76.4)" />
|
||||||
|
<polygon
|
||||||
|
class="st3"
|
||||||
|
points="384.5,504.1 385.4,507.3 376.8,509.8 377.9,513.7 384,512 384.9,515.1 378.8,516.9 380,521.1 389,518.5 389.9,521.7 376.1,525.7 371,508 "
|
||||||
|
id="polygon52"
|
||||||
|
transform="translate(-76.8,-76.4)" />
|
||||||
|
<g
|
||||||
|
id="g58"
|
||||||
|
transform="translate(-76.8,-76.4)">
|
||||||
|
<path
|
||||||
|
class="st3"
|
||||||
|
d="m 402.3,500.5 -1.4,0.7 5,10.8 1.4,-0.6 c 4,-1.7 5,-3.5 2.9,-7.9 -2,-4.5 -4,-5 -7.9,-3 m 8.1,13.1 -7.7,3.5 -7.7,-16.8 7.7,-3.5 c 4.8,-2.2 9.3,-2 12.3,4.4 2.6,5.7 0.4,10 -4.6,12.4"
|
||||||
|
id="path54" />
|
||||||
|
<path
|
||||||
|
class="st3"
|
||||||
|
d="m 431.5,486.9 -0.9,0.6 1.9,2.9 0.9,-0.6 c 1.1,-0.7 1.5,-1.6 0.8,-2.6 -0.7,-1 -1.6,-1 -2.7,-0.3 m 7,6 c -1.7,-0.7 -3.1,-1.3 -4.3,-1.8 l -0.8,0.6 2.2,3.2 -1.8,1.2 -5.8,-8.6 3.1,-2.1 c 2,-1.3 3.7,-1.5 5,0.5 0.7,1.1 0.8,2.4 -0.2,3.7 1.1,0.4 4.9,1.8 4.9,1.8 z m -8.6,-9 c -3.4,2.3 -4.3,6.8 -2.1,10.1 2.2,3.3 6.8,4.2 10.2,1.9 3.4,-2.3 4.4,-6.8 2.1,-10.2 -2.3,-3.3 -6.8,-4.1 -10.2,-1.8 m 9.3,13.9 c -4.4,3 -10.4,1.8 -13.3,-2.5 -2.9,-4.4 -1.7,-10.3 2.8,-13.3 4.4,-3 10.4,-1.9 13.4,2.5 2.8,4.3 1.5,10.3 -2.9,13.3"
|
||||||
|
id="path56" />
|
||||||
|
</g>
|
||||||
|
<polygon
|
||||||
|
class="st3"
|
||||||
|
points="336.2,238.5 343.6,267 326.1,245.6 310.2,256 315.2,238.5 296,227.5 319.4,227.5 326.1,201 332.8,227.5 350.5,227.5 "
|
||||||
|
id="polygon60"
|
||||||
|
transform="translate(-76.8,-76.4)" />
|
||||||
|
<g
|
||||||
|
id="g64"
|
||||||
|
transform="translate(-76.8,-76.4)">
|
||||||
|
<path
|
||||||
|
class="st0"
|
||||||
|
d="m 155.7,260.6 c -0.6,1.5 -2.1,5.7 -2.6,7 -1.8,5.1 -3,9.7 3,11.8 6,2.1 7.9,-2.3 9.7,-7.3 0.9,-2.6 1.4,-4.7 2,-7.2 z m 17.5,15.7 c -4,10.9 -9.3,20.1 -21.9,15.7 -14.3,-5 -7.9,-21.5 -3.4,-34.2 -7.1,-2.5 -10.3,-3.5 -14.2,7.6 -2.1,6 -3.3,12.5 -3.7,15.8 l -8.5,-3 c 0.5,-4.1 2.2,-11.7 3.9,-16.5 3.7,-10.8 9.1,-22.3 23,-17.5 l 30.9,10.8 c -1.8,8.2 -3.6,14.7 -6.1,21.3"
|
||||||
|
id="path62" />
|
||||||
|
</g>
|
||||||
|
<polygon
|
||||||
|
class="st0"
|
||||||
|
points="169.2,404.7 130.8,440.5 139.4,451.5 184.2,406.6 176.8,391.5 107.7,400.7 116.3,411.8 168.7,403.6 "
|
||||||
|
id="polygon66"
|
||||||
|
transform="translate(-76.8,-76.4)" />
|
||||||
|
<g
|
||||||
|
id="g72"
|
||||||
|
transform="translate(-76.8,-76.4)">
|
||||||
|
<path
|
||||||
|
class="st0"
|
||||||
|
d="m 195.6,187.6 c -4,2.6 -9.5,7 -12.6,3.8 -3.1,-3.2 0.9,-8.2 3.9,-11.1 3,-2.9 6.6,-5.6 9,-7.3 l -3.7,-7.7 c -1.7,1.3 -6.4,4.3 -13,10.7 -6.3,6.1 -13.2,16.8 -4.9,25.4 7.8,8.1 18.2,1 20.5,-0.4 6.7,-4.1 10.4,-7.4 13.6,-4.2 3.2,3.3 -0.8,8.8 -4.3,12.2 -4.1,4 -8.5,6.7 -12.8,9.3 l 6.3,6.5 c 4.1,-2.6 9.2,-6.3 14,-10.9 10.1,-9.9 12.5,-20.5 5.4,-27.9 -7.2,-7.1 -16.2,-1.8 -21.4,1.6"
|
||||||
|
id="path68" />
|
||||||
|
<path
|
||||||
|
class="st0"
|
||||||
|
d="m 153.1,363.2 c -6.3,0.9 -7.4,-3.7 -8.1,-9 -0.2,-1.4 -0.8,-5.8 -1,-7.4 l 12.7,-1.8 c 0.7,2.5 1.2,4.6 1.6,7.3 0.8,5.3 1.1,10 -5.2,10.9 m 13.7,-10.5 C 166,345.6 164.5,339 162.4,331 l -32.4,4.7 c -14.6,2.1 -14.1,14.9 -12.3,26.1 0.7,5 2.6,12.5 4.1,16.3 l 9,-1.2 c -1.2,-3.1 -3.1,-9.4 -4,-15.7 -1.7,-11.7 1.6,-12.2 9,-13.3 2,13.4 3.9,31 18.8,28.8 13.2,-1.9 13.7,-12.5 12.2,-24"
|
||||||
|
id="path70" />
|
||||||
|
</g>
|
||||||
|
<polygon
|
||||||
|
class="st0"
|
||||||
|
points="93.5,299.1 165.2,305.8 164,318.7 94.9,312.3 "
|
||||||
|
id="polygon74"
|
||||||
|
transform="translate(-76.8,-76.4)" />
|
||||||
|
<path
|
||||||
|
class="st0"
|
||||||
|
d="m 109.5,168.5 -40,-26.4 7.1,-10.8 40,26.4 z m -47.2,-31.1 -9.1,-6 4.9,-12.3 11.3,7.5 z"
|
||||||
|
id="path76" />
|
||||||
|
<g
|
||||||
|
id="g82"
|
||||||
|
transform="translate(-76.8,-76.4)">
|
||||||
|
<path
|
||||||
|
class="st3"
|
||||||
|
d="M 442.8,407.4 C 430.1,396 404.5,373 404.5,373 l -1.6,0.5 c -4,1.4 -10.2,0.5 -12,-0.1 -0.4,-0.5 -2.2,-3.3 -2.2,-3.3 -3.3,-5.1 -6,-9.1 -8.3,-10.8 l -2.8,-1.2 c -1.9,-0.7 -5.4,-1.9 -6.2,-3.4 -0.7,-1 -1.2,-2.7 -1.2,-4.9 0,-2.1 0.5,-4.5 1.9,-7.1 l 0.7,-1.4 -0.8,-1.3 c -1.3,-2.3 -5.3,-10.5 -8.9,-17.7 l -6.3,-12.7 -0.4,-0.3 c -6.7,-6 -13.1,-10.9 -14.6,-12 -6.7,-9.7 -14.8,-12.2 -22.6,-14.6 l -6.6,-2.1 -1.2,1.8 -11.6,18 v 0.8 c 0,0 -0.3,12.1 -0.4,15.8 -1.5,0.1 -4.2,0.4 -4.2,0.4 0,0 -4.7,6.6 -5.8,8.1 -1.2,0.2 -5.1,0.8 -5.1,0.8 v 2.2 c -0.5,7.7 -2.2,14.2 -3.7,19.9 -1.1,4.3 -2.2,8.5 -2.6,12.5 -9.7,7.8 -55.4,46.1 -62.6,52.6 -0.1,0 -0.1,0 -0.1,0.1 1.1,1.5 2.3,3 3.5,4.4 5.3,-4.7 54.8,-46.4 63.6,-53.4 l 1,-0.8 0.1,-1.2 c 0.3,-4 1.3,-8.1 2.6,-12.8 1.4,-5.4 3,-11.5 3.6,-18.7 0.9,-0.1 2.9,-0.5 2.9,-0.5 l 0.8,-1 c 0,0 3.9,-5.4 5,-7 1.5,-0.1 6.6,-0.6 6.6,-0.6 0,0 0.5,-18.5 0.5,-19.9 0.7,-1.1 7.8,-12.2 9.6,-14.9 1.3,0.4 2.7,0.8 2.7,0.8 7.7,2.3 14.3,4.3 19.9,12.8 l 0.3,0.4 0.4,0.3 c 0.1,0.1 7.1,5.2 14.1,11.5 0.4,0.8 5.8,11.6 5.8,11.6 3.4,6.8 6.7,13.7 8.4,16.8 -1.3,2.9 -2,5.7 -2,8.3 0,3.2 0.8,6 2.1,7.8 1.8,3.1 6.2,4.7 9.1,5.7 l 1.5,0.6 c 1.5,1.1 4.8,6.1 6.7,9.1 2.4,3.8 3,4.7 4.1,5.2 1.6,0.8 9.1,2.1 15,0.8 1.5,1.3 24,21.6 36.5,32.8 1,-1.2 2.1,-2.7 3.1,-4.3"
|
||||||
|
id="path78" />
|
||||||
|
<path
|
||||||
|
class="st4"
|
||||||
|
d="m 441.2,409.7 c -0.4,0.6 -0.8,1.2 -1.3,1.8 0.5,-0.6 0.9,-1.2 1.3,-1.8 0,0 0,0 0,0 m -53.1,-31.3 c -1,-0.5 -1.6,-1.4 -4.1,-5.2 -2,-3 -5.2,-8.1 -6.7,-9.2 l -1.5,-0.6 c -2.9,-1 -7.3,-2.6 -9.1,-5.7 -1.2,-1.8 -2.1,-4.6 -2.1,-7.8 0,-0.1 0,-0.2 0,-0.4 0,-0.2 0,-0.2 0,-0.4 0,-2.4 0.6,-5.2 1.8,-7.9 -1.7,-3.2 -5,-9.9 -8.2,-16.5 0,0 -5.4,-10.9 -5.8,-11.6 -7,-6.3 -14,-11.4 -14.1,-11.5 l -0.4,-0.3 -0.3,-0.4 c -5.7,-8.5 -12.3,-10.5 -19.9,-12.8 0,0 -1.4,-0.4 -2.7,-0.8 0,0 0,0 0,0.1 3.4,4.7 8.7,11.1 10.6,16 0.9,2.3 1.1,2.1 1.2,6.8 4.9,2.6 11.2,5.6 11.2,5.6 0,0 -4.9,3.9 -8.6,5.5 -4.6,9.5 -8.2,30.5 -6.3,40.4 -6.4,8.5 -10.3,14.2 -15.1,22.1 -0.4,0.6 2.3,4.8 1.6,5.6 -4.7,5 -21.1,13.8 -34.6,31.4 l -23.8,25.9 c 21.8,14 47.8,22.1 75.6,22.1 38.9,0 74.1,-15.9 99.5,-41.5 v 0 c 0.8,-0.8 1.6,-1.6 2.4,-2.5 0.1,-0.1 0.1,-0.2 0.2,-0.2 3.8,-4.1 7.4,-8.3 10.7,-12.8 -12.5,-11.2 -35,-31.5 -36.5,-32.8 -5.9,1.5 -13.5,0.2 -15,-0.6"
|
||||||
|
id="path80" />
|
||||||
|
</g>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 12 KiB |
14
04-resources/placeholder.svg
Normal file
@ -0,0 +1,14 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||||
|
<svg version="1.1" id="placeholder" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="400px" height="200px" viewBox="0 0 400 200" enable-background="new 0 0 400 200" xml:space="preserve">
|
||||||
|
<radialGradient id="SVGID_1_" cx="196.5469" cy="94.4341" r="276.6305" gradientUnits="userSpaceOnUse">
|
||||||
|
<stop offset="0" style="stop-color:#3AA9D7"/>
|
||||||
|
<stop offset="1" style="stop-color:#2BA3D4"/>
|
||||||
|
</radialGradient>
|
||||||
|
<rect fill="url(#SVGID_1_)" width="400" height="200"/>
|
||||||
|
<g>
|
||||||
|
<path fill="#FFFFFF" d="M145.254,56.93v86.14h109.492V56.93H145.254z M245.924,133.729h-91.33V66.27h91.33V133.729L245.924,133.729 z"/>
|
||||||
|
<polygon fill="#FFFFFF" points="159.506,126.463 178.329,106.68 185.382,109.73 207.635,86.04 216.393,96.519 220.348,94.132 241.732,126.463 "/>
|
||||||
|
<circle fill="#FFFFFF" cx="181.251" cy="83.424" r="8.222"/>
|
||||||
|
</g>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 1004 B |
BIN
04-resources/signature.png
Normal file
After Width: | Height: | Size: 16 KiB |
73
04-resources/signature.svg
Normal file
@ -0,0 +1,73 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||||
|
<svg
|
||||||
|
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||||
|
xmlns:cc="http://creativecommons.org/ns#"
|
||||||
|
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||||
|
xmlns:svg="http://www.w3.org/2000/svg"
|
||||||
|
xmlns="http://www.w3.org/2000/svg"
|
||||||
|
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||||
|
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||||
|
width="17.909378mm"
|
||||||
|
height="8.585865mm"
|
||||||
|
viewBox="0 0 17.909377 8.5858649"
|
||||||
|
version="1.1"
|
||||||
|
id="svg8"
|
||||||
|
inkscape:version="1.0.1 (3bc2e813f5, 2020-09-07)"
|
||||||
|
sodipodi:docname="signature.svg"
|
||||||
|
inkscape:export-filename="C:\work\repo\edu\hevs-latextemplate-thesis\05-img\signature.png"
|
||||||
|
inkscape:export-xdpi="96"
|
||||||
|
inkscape:export-ydpi="96">
|
||||||
|
<defs
|
||||||
|
id="defs2">
|
||||||
|
<rect
|
||||||
|
x="56.336304"
|
||||||
|
y="35.733311"
|
||||||
|
width="102.37111"
|
||||||
|
height="32.514095"
|
||||||
|
id="rect841" />
|
||||||
|
</defs>
|
||||||
|
<sodipodi:namedview
|
||||||
|
id="base"
|
||||||
|
pagecolor="#ffffff"
|
||||||
|
bordercolor="#666666"
|
||||||
|
borderopacity="1.0"
|
||||||
|
inkscape:pageopacity="0.0"
|
||||||
|
inkscape:pageshadow="2"
|
||||||
|
inkscape:zoom="3.8599914"
|
||||||
|
inkscape:cx="225.3807"
|
||||||
|
inkscape:cy="11.408197"
|
||||||
|
inkscape:document-units="mm"
|
||||||
|
inkscape:current-layer="layer1"
|
||||||
|
inkscape:document-rotation="0"
|
||||||
|
showgrid="false"
|
||||||
|
inkscape:window-width="3440"
|
||||||
|
inkscape:window-height="1377"
|
||||||
|
inkscape:window-x="-8"
|
||||||
|
inkscape:window-y="32"
|
||||||
|
inkscape:window-maximized="1" />
|
||||||
|
<metadata
|
||||||
|
id="metadata5">
|
||||||
|
<rdf:RDF>
|
||||||
|
<cc:Work
|
||||||
|
rdf:about="">
|
||||||
|
<dc:format>image/svg+xml</dc:format>
|
||||||
|
<dc:type
|
||||||
|
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||||
|
<dc:title></dc:title>
|
||||||
|
</cc:Work>
|
||||||
|
</rdf:RDF>
|
||||||
|
</metadata>
|
||||||
|
<g
|
||||||
|
inkscape:label="Layer 1"
|
||||||
|
inkscape:groupmode="layer"
|
||||||
|
id="layer1"
|
||||||
|
transform="translate(-56.006587,-37.512502)">
|
||||||
|
<text
|
||||||
|
xml:space="preserve"
|
||||||
|
id="text839"
|
||||||
|
style="font-size:9.17222px;line-height:125%;font-family:Formata;-inkscape-font-specification:Formata;letter-spacing:-0.558271px;word-spacing:0px;white-space:pre;shape-inside:url(#rect841);fill:#0000ff;stroke:#000000;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;"><tspan
|
||||||
|
x="56.335938"
|
||||||
|
y="43.758115"><tspan
|
||||||
|
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:'Freestyle Script';-inkscape-font-specification:'Freestyle Script';fill:#0000ff;stroke:none">Signature</tspan></tspan></text>
|
||||||
|
</g>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 2.5 KiB |
BIN
05-pdf/hevs-typsttemplate-thesis.pdf
Normal file
21
LICENSE
Normal file
@ -0,0 +1,21 @@
|
|||||||
|
MIT License
|
||||||
|
|
||||||
|
Copyright (c) 2023 Silvan Zahno
|
||||||
|
|
||||||
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||||
|
of this software and associated documentation files (the "Software"), to deal
|
||||||
|
in the Software without restriction, including without limitation the rights
|
||||||
|
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||||
|
copies of the Software, and to permit persons to whom the Software is
|
||||||
|
furnished to do so, subject to the following conditions:
|
||||||
|
|
||||||
|
The above copyright notice and this permission notice shall be included in all
|
||||||
|
copies or substantial portions of the Software.
|
||||||
|
|
||||||
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||||
|
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||||
|
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||||
|
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||||
|
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||||
|
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
||||||
|
SOFTWARE.
|
156
README.md
Normal file
@ -0,0 +1,156 @@
|
|||||||
|
<h1 align="center">
|
||||||
|
<br>
|
||||||
|
<img src="./04-resources/logos/hei-en.svg" alt="HEI Logo Logo" width="300" height="200">
|
||||||
|
<img src="./04-resources/logos/synd-light.svg" alt="HEI Logo Logo" width="300" height="200">
|
||||||
|
<br>
|
||||||
|
HEI-Vs Engineering School - Typst Thesis Template
|
||||||
|
<br>
|
||||||
|
</h1>
|
||||||
|
|
||||||
|
[![Read Template](https://img.shields.io/badge/Read-Template-blue)](https://github.com/tschinz/hevs-typsttemplate-thesis/blob/master/05-pdf/thesis.pdf) [![Download Template](https://img.shields.io/badge/Download-Template-brightgreen)](https://github.com/tschinz/hevs-typsttemplate-thesis/raw/master/05-pdf/thesis.pdf)
|
||||||
|
|
||||||
|
A Typst template for the HES-SO//Valais Wallis Bachelor thesis.
|
||||||
|
|
||||||
|
> **Warning**
|
||||||
|
> Disclaimer, this is an unofficial typst template not supported by the HEI-Vs. Use at your own risk, no support is provided for installation or use. You have been warned.
|
||||||
|
|
||||||
|
# Table of contents
|
||||||
|
|
||||||
|
<p align="center">
|
||||||
|
<a href="#features">Features</a> •
|
||||||
|
<a href="#getting-started">Getting started</a> •
|
||||||
|
<a href="#contributing">Contributing</a> •
|
||||||
|
<a href="#credits">Credits</a> •
|
||||||
|
<a href="#find-us-on">Find us on</a>
|
||||||
|
</p>
|
||||||
|
|
||||||
|
## Features
|
||||||
|
|
||||||
|
[(Back to top)](#table-of-contents)
|
||||||
|
|
||||||
|
* Title page with official layout
|
||||||
|
* Table of contents, Table of figures, Table of tables, Table of listings
|
||||||
|
* Abstract
|
||||||
|
* Nice title styles for chapter and appendices
|
||||||
|
* Chapter table of contents (minitoc)
|
||||||
|
* Bibliography
|
||||||
|
* Glossary
|
||||||
|
* Code highlighting
|
||||||
|
* Nice default typography settings
|
||||||
|
* Custom Boxes
|
||||||
|
|
||||||
|
## Getting started
|
||||||
|
|
||||||
|
[(Back to top)](#table-of-contents)
|
||||||
|
|
||||||
|
### Installation
|
||||||
|
|
||||||
|
This document is made for typst v0.11.0.
|
||||||
|
|
||||||
|
#### MacOS
|
||||||
|
|
||||||
|
```bash
|
||||||
|
# [homebrew](https://brew.sh)
|
||||||
|
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/
|
||||||
|
install.sh)"
|
||||||
|
|
||||||
|
# [just](https://just.systems)
|
||||||
|
brew install just
|
||||||
|
|
||||||
|
# [typst](https://github.com/typst/typst)
|
||||||
|
brew install typst
|
||||||
|
```
|
||||||
|
|
||||||
|
#### Linux & MacOS (via Rust)
|
||||||
|
|
||||||
|
```bash
|
||||||
|
# [rust](https://www.rust-lang.org/tools/install)
|
||||||
|
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh
|
||||||
|
|
||||||
|
# [just](https://just.systems)
|
||||||
|
cargo install just
|
||||||
|
|
||||||
|
# [typst](https://github.com/typst/typst)
|
||||||
|
cargo install typst
|
||||||
|
```
|
||||||
|
|
||||||
|
#### Windows
|
||||||
|
|
||||||
|
```powershell
|
||||||
|
# [chocolatey](https://chocolatey.org)
|
||||||
|
# ensure to use a administrative powershell
|
||||||
|
Set-ExecutionPolicy Bypass -Scope Process - Force; [System.Net.ServicePointManager]::SecurityProtocol = [System.Net.ServicePointManager]::SecurityProtocol -bor 3072; iex ((New- Object System.Net.WebClient).DownloadString('https://community.chocolatey.org/ install.ps1'))
|
||||||
|
|
||||||
|
# [just](https://just.systems)
|
||||||
|
choco install just
|
||||||
|
|
||||||
|
# [typst](https://github.com/typst/typst)
|
||||||
|
choco install typst
|
||||||
|
```
|
||||||
|
|
||||||
|
### How to use
|
||||||
|
|
||||||
|
1. Modify variables in `01-settings/metadata.typ`
|
||||||
|
|
||||||
|
2. Write your thesis there are plugins for VS-Code and Sublimetext available
|
||||||
|
|
||||||
|
3. Use the given justfile or typst directly to build the PDF
|
||||||
|
|
||||||
|
With the justfile
|
||||||
|
|
||||||
|
```bash
|
||||||
|
just
|
||||||
|
Available recipes:
|
||||||
|
clean # cleanup intermediate files
|
||||||
|
default # List all commands
|
||||||
|
info # Information about the environment
|
||||||
|
install # install required sw
|
||||||
|
open file_name=doc_name # open pdf
|
||||||
|
pdf file_name=doc_name # build, rename and copy a typ file to a pdf
|
||||||
|
pdf-all file_name=doc_name # build, rename and copy a typ file in all variants
|
||||||
|
watch file_name=doc_name # watch a typ file for continuous incremental build ```
|
||||||
|
```
|
||||||
|
|
||||||
|
With typst directly
|
||||||
|
|
||||||
|
```bash
|
||||||
|
typst c main.typ # compiles thesis to main.pdf
|
||||||
|
typst w main.typ # watches all documents and incrementally compiles to main.pdf
|
||||||
|
```
|
||||||
|
|
||||||
|
## Contributing
|
||||||
|
|
||||||
|
[(Back to top)](#table-of-contents)
|
||||||
|
|
||||||
|
1. Take a look at the [issues](https://github.com/tschinz/hevs-typsttemplate-thesis/issues) issues with the "Help wanted" tag
|
||||||
|
|
||||||
|
2. Choose something or open a new [issue](https://github.com/tschinz/hevs-typsttemplate-thesis/issues)
|
||||||
|
|
||||||
|
3. Fork the repo, fix the problem in a branch
|
||||||
|
|
||||||
|
4. Rebase your branch if needed
|
||||||
|
|
||||||
|
5. Submit a [pull request](https://github.com/tschinz/hevs-typsttemplate-thesis/pulls)
|
||||||
|
|
||||||
|
## Help
|
||||||
|
|
||||||
|
[(Back to top)](#table-of-contents)
|
||||||
|
|
||||||
|
[![Read Guide to Typst](https://img.shields.io/badge/Read-Guide_to_Typst-blue)](https://github.com/tschinz/hevs-typsttemplate-thesis/blob/master/guite-to-typst.pdf) [![Download Guide to Typst](https://img.shields.io/badge/Download-Guide_to_Typst-brightgreen)](https://github.com/tschinz/hevs-typsttemplate-thesis/raw/master/guide-to.typst.pdf)
|
||||||
|
|
||||||
|
## Credits
|
||||||
|
|
||||||
|
[(Back to top)](#table-of-contents)
|
||||||
|
|
||||||
|
* All guys from Typst
|
||||||
|
* Silvan Zahno
|
||||||
|
|
||||||
|
## Find us on
|
||||||
|
|
||||||
|
[(Back to top)](#table-of-contents)
|
||||||
|
|
||||||
|
* Webpage [hevs.ch](https://www.hevs.ch/synd)
|
||||||
|
* LinkedIn [HEI Valais-Wallis](https://www.linkedin.com/showcase/school-of-engineering-valais-wallis/)
|
||||||
|
* Youtube [HES-SO Valais-Wallis](https://www.youtube.com/user/HESSOVS/)
|
||||||
|
* Twitter [@hessovalais](https://twitter.com/hessovalais)
|
||||||
|
* Facebook [@hessovalais](https://www.facebook.com/hessovalais)
|
BIN
guide-to-thesis.pdf
Normal file
BIN
guide-to-typst.pdf
Normal file
98
justfile
Normal file
@ -0,0 +1,98 @@
|
|||||||
|
##################################################
|
||||||
|
# Variables
|
||||||
|
#
|
||||||
|
open := if os() == "linux" {
|
||||||
|
"xdg-open"
|
||||||
|
} else if os() == "macos" {
|
||||||
|
"open"
|
||||||
|
} else {
|
||||||
|
"start \"\" /max"
|
||||||
|
}
|
||||||
|
|
||||||
|
project_dir := justfile_directory()
|
||||||
|
project_name := file_stem(justfile_directory())
|
||||||
|
|
||||||
|
typst_version := "typst -V"
|
||||||
|
typst_github := "https://github.com/typst/typst --tag v0.11.0"
|
||||||
|
|
||||||
|
output_dir := "05-pdf"
|
||||||
|
doc_name := "main"
|
||||||
|
|
||||||
|
##################################################
|
||||||
|
# COMMANDS
|
||||||
|
#
|
||||||
|
# List all commands
|
||||||
|
@default:
|
||||||
|
just --list
|
||||||
|
|
||||||
|
# Information about the environment
|
||||||
|
@info:
|
||||||
|
echo "Environment Informations\n------------------------\n"
|
||||||
|
echo " OS : {{os()}}({{arch()}})"
|
||||||
|
echo " Open : {{open}}"
|
||||||
|
echo " Typst : `{{typst_version}}`"
|
||||||
|
echo " Projectdir : {{project_dir}}"
|
||||||
|
echo " Projectname : {{project_name}}"
|
||||||
|
|
||||||
|
# install required sw
|
||||||
|
[windows]
|
||||||
|
[linux]
|
||||||
|
@install:
|
||||||
|
echo "Install typst"
|
||||||
|
cargo install --git {{typst_github}}
|
||||||
|
|
||||||
|
# install required sw
|
||||||
|
[macos]
|
||||||
|
@install:
|
||||||
|
echo "Install typst"
|
||||||
|
brew install typst
|
||||||
|
|
||||||
|
# watch a typ file for continuous incremental build
|
||||||
|
watch file_name=doc_name:
|
||||||
|
typst w {{file_name}}.typ
|
||||||
|
|
||||||
|
# open pdf
|
||||||
|
open file_name=doc_name:
|
||||||
|
{{open}} {{file_name}}.pdf
|
||||||
|
|
||||||
|
# build, rename and copy a typ file to a pdf
|
||||||
|
@pdf file_name=doc_name:
|
||||||
|
echo "--------------------------------------------------"
|
||||||
|
echo "-- Generate {{file_name}}.pdf"
|
||||||
|
echo "--"
|
||||||
|
typst c {{file_name}}.typ
|
||||||
|
mkdir -p {{output_dir}}
|
||||||
|
mv {{file_name}}.pdf "{{output_dir}}/{{project_name}}.pdf"
|
||||||
|
just clean
|
||||||
|
|
||||||
|
# build, rename and copy a typ file in all variants
|
||||||
|
@pdf-all file_name=doc_name:
|
||||||
|
echo "--------------------------------------------------"
|
||||||
|
echo "-- Generate all variants of {{file_name}}.pdf"
|
||||||
|
echo "--"
|
||||||
|
just pdf {{file_name}}
|
||||||
|
|
||||||
|
# cleanup intermediate files
|
||||||
|
[linux]
|
||||||
|
[macos]
|
||||||
|
@clean:
|
||||||
|
echo "--------------------------------------------------"
|
||||||
|
echo "-- Clean {{project_name}}"
|
||||||
|
echo "--"
|
||||||
|
rm 00-templates/*.pdf || true
|
||||||
|
rm 01-settings/*.pdf || true
|
||||||
|
rm 02-main/**/*.pdf || true
|
||||||
|
rm 03-tail/*.pdf || true
|
||||||
|
rm 04-resources/*.pdf || true
|
||||||
|
|
||||||
|
# cleanup intermediate files
|
||||||
|
[windows]
|
||||||
|
@clean:
|
||||||
|
echo "--------------------------------------------------"
|
||||||
|
echo "-- Clean {{project_name}}"
|
||||||
|
echo "--"
|
||||||
|
del /q /s 00-templates\*.pdf 2>nul
|
||||||
|
del /q /s 01-settings\*.pdf 2>nul
|
||||||
|
del /q /s 02-main\**\*.pdf 2>nul
|
||||||
|
del /q /s 03-tail\*.pdf 2>nul
|
||||||
|
del /q /s 04-resources\*.pdf 2>nul
|
78
main.typ
Normal file
@ -0,0 +1,78 @@
|
|||||||
|
//
|
||||||
|
// Description: Main document to stitch everything together
|
||||||
|
//
|
||||||
|
#import "00-templates/template-thesis.typ": *
|
||||||
|
#import "01-settings/metadata.typ": *
|
||||||
|
|
||||||
|
//-------------------------------------
|
||||||
|
// Template config
|
||||||
|
//
|
||||||
|
#show: thesis.with(
|
||||||
|
title: title,
|
||||||
|
subtitle: subtitle,
|
||||||
|
version: version,
|
||||||
|
author: author,
|
||||||
|
school: school,
|
||||||
|
date: date,
|
||||||
|
tableof: tableof,
|
||||||
|
icons: icons,
|
||||||
|
)
|
||||||
|
|
||||||
|
//-------------------------------------
|
||||||
|
// Introduction
|
||||||
|
//
|
||||||
|
|
||||||
|
#pagebreak()
|
||||||
|
= Introduction <sec:intro>
|
||||||
|
== Context Problem
|
||||||
|
During the second semester of the third year of the Bachelor's degree in Systems Engineering, we had to design an antenna for 2.45 GHz. This project was carried out in the context of the course "Electronic 2" taught #professor.name at #school.name.
|
||||||
|
|
||||||
|
== Objectives
|
||||||
|
The main objectives of this project was:
|
||||||
|
- Design an antenna on a PCB with Ansys
|
||||||
|
- Simulate it with Ansys for find right parameters
|
||||||
|
- Design the PCB with Altium Designer for fabrication by Eurocircuits
|
||||||
|
- Solder the components on the PCB
|
||||||
|
- Test the Antenna
|
||||||
|
- Anylize the results
|
||||||
|
|
||||||
|
//-------------------------------------
|
||||||
|
// Content
|
||||||
|
//
|
||||||
|
#pagebreak()
|
||||||
|
= Design <sec:design>
|
||||||
|
|
||||||
|
//-------------------------------------
|
||||||
|
// Conclusion
|
||||||
|
//
|
||||||
|
#pagebreak()
|
||||||
|
= Conclusion <sec:conclusion>
|
||||||
|
|
||||||
|
== Project summary
|
||||||
|
|
||||||
|
#lorem(50)
|
||||||
|
|
||||||
|
== Comparison with the initial objectives
|
||||||
|
|
||||||
|
#lorem(50)
|
||||||
|
|
||||||
|
== Encountered difficulties
|
||||||
|
|
||||||
|
#lorem(50)
|
||||||
|
|
||||||
|
== Future perspectives
|
||||||
|
|
||||||
|
#lorem(50)
|
||||||
|
|
||||||
|
|
||||||
|
//-------------------------------------
|
||||||
|
// Appendix
|
||||||
|
//
|
||||||
|
#include "03-tail/a-appendix.typ"
|
||||||
|
|
||||||
|
//-------------------------------------
|
||||||
|
// Bibliography
|
||||||
|
//
|
||||||
|
#if bib == true {
|
||||||
|
include "03-tail/bibliography.typ"
|
||||||
|
}
|