gui: Logo in greeter
+ add SECoP logo resources (3 dark text, 1 light text) + Add logo to greeter TODO: when there is a frappy-logo, replace this Change-Id: I37eb8946d291b2f5dde0b5000251a4ac363fb01f Reviewed-on: https://forge.frm2.tum.de/review/c/secop/frappy/+/30596 Tested-by: Jenkins Automated Tests <pedersen+jenkins@frm2.tum.de> Reviewed-by: Georg Brandl <g.brandl@fz-juelich.de> Reviewed-by: Alexander Zaft <a.zaft@fz-juelich.de>
This commit is contained in:
parent
58f7ef6de4
commit
98ab5a5785
@ -22,14 +22,15 @@
|
||||
# *****************************************************************************
|
||||
|
||||
from frappy.gui.qt import QAction, QInputDialog, QKeySequence, QMainWindow, \
|
||||
QMessageBox, QSettings, QShortcut, QWidget, pyqtSignal, pyqtSlot
|
||||
QMessageBox, QPixmap, QSettings, QShortcut, QWidget, pyqtSignal, \
|
||||
pyqtSlot
|
||||
|
||||
import frappy.version
|
||||
from frappy.gui.connection import QSECNode
|
||||
from frappy.gui.logwindow import LogWindow
|
||||
from frappy.gui.nodewidget import NodeWidget
|
||||
from frappy.gui.tabwidget import TearOffTabWidget
|
||||
from frappy.gui.util import Colors, loadUi
|
||||
from frappy.gui.util import Colors, is_light_theme, loadUi
|
||||
|
||||
|
||||
class Greeter(QWidget):
|
||||
@ -39,6 +40,9 @@ class Greeter(QWidget):
|
||||
def __init__(self, parent=None):
|
||||
super().__init__(parent)
|
||||
loadUi(self, 'greeter.ui')
|
||||
if not is_light_theme(self.palette()):
|
||||
# maybe change it at runtime instead of second file?
|
||||
self.logoLabel.setPixmap(QPixmap(':/icons/logo_subtitle_light'))
|
||||
self.loadRecent()
|
||||
|
||||
def loadRecent(self):
|
||||
|
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
@ -31,6 +31,55 @@
|
||||
<layout class="QVBoxLayout" name="verticalLayout_2">
|
||||
<item>
|
||||
<layout class="QVBoxLayout" name="verticalLayout">
|
||||
<item>
|
||||
<layout class="QHBoxLayout" name="horizontalLayout">
|
||||
<item>
|
||||
<spacer name="horizontalSpacer_3">
|
||||
<property name="orientation">
|
||||
<enum>Qt::Horizontal</enum>
|
||||
</property>
|
||||
<property name="sizeHint" stdset="0">
|
||||
<size>
|
||||
<width>40</width>
|
||||
<height>20</height>
|
||||
</size>
|
||||
</property>
|
||||
</spacer>
|
||||
</item>
|
||||
<item>
|
||||
<widget class="QLabel" name="logoLabel">
|
||||
<property name="maximumSize">
|
||||
<size>
|
||||
<width>400</width>
|
||||
<height>120</height>
|
||||
</size>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string/>
|
||||
</property>
|
||||
<property name="pixmap">
|
||||
<pixmap resource="../../../resources/frappy-gui.qrc">:/icons/logo_subtitle</pixmap>
|
||||
</property>
|
||||
<property name="scaledContents">
|
||||
<bool>true</bool>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
<item>
|
||||
<spacer name="horizontalSpacer_4">
|
||||
<property name="orientation">
|
||||
<enum>Qt::Horizontal</enum>
|
||||
</property>
|
||||
<property name="sizeHint" stdset="0">
|
||||
<size>
|
||||
<width>40</width>
|
||||
<height>20</height>
|
||||
</size>
|
||||
</property>
|
||||
</spacer>
|
||||
</item>
|
||||
</layout>
|
||||
</item>
|
||||
<item>
|
||||
<widget class="QLabel" name="label">
|
||||
<property name="font">
|
||||
|
@ -52,15 +52,20 @@ class Value:
|
||||
args += (self.readerror,)
|
||||
return 'Value%s' % repr(args)
|
||||
|
||||
|
||||
def is_light_theme(palette):
|
||||
background = palette.window().color().lightness()
|
||||
foreground = palette.windowText().color().lightness()
|
||||
return background > foreground
|
||||
|
||||
|
||||
class Colors:
|
||||
@classmethod
|
||||
def _setPalette(cls, palette):
|
||||
if hasattr(cls, 'palette'):
|
||||
return
|
||||
cls.palette = palette
|
||||
background = palette.window().color().lightness()
|
||||
foreground = palette.windowText().color().lightness()
|
||||
if background > foreground: # light
|
||||
if is_light_theme(palette): # light
|
||||
cls.colors = {
|
||||
'orange': QColor('#FA6800'),
|
||||
'yellow': QColor('#FCFFa4'),
|
||||
@ -73,7 +78,7 @@ class Colors:
|
||||
4: QColor('red'),
|
||||
5: QColor('purple'),
|
||||
}
|
||||
else:
|
||||
else: # dark
|
||||
cls.colors = {
|
||||
'orange': QColor('#FA6800'),
|
||||
'yellow': QColor('#FEFE22'),
|
||||
|
71
resources/SECoP-logo.svg
Normal file
71
resources/SECoP-logo.svg
Normal file
@ -0,0 +1,71 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
|
||||
<svg
|
||||
version="1.1"
|
||||
id="svg2"
|
||||
width="621.33331"
|
||||
height="172"
|
||||
viewBox="0 0 621.33331 172"
|
||||
sodipodi:docname="SECoP-logo.svg"
|
||||
inkscape:version="1.2.2 (b0a8486541, 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="defs6" />
|
||||
<sodipodi:namedview
|
||||
id="namedview4"
|
||||
pagecolor="#505050"
|
||||
bordercolor="#eeeeee"
|
||||
borderopacity="1"
|
||||
inkscape:showpageshadow="0"
|
||||
inkscape:pageopacity="0"
|
||||
inkscape:pagecheckerboard="0"
|
||||
inkscape:deskcolor="#505050"
|
||||
showgrid="false"
|
||||
inkscape:zoom="1.372093"
|
||||
inkscape:cx="310.47458"
|
||||
inkscape:cy="86"
|
||||
inkscape:window-width="1920"
|
||||
inkscape:window-height="1171"
|
||||
inkscape:window-x="1920"
|
||||
inkscape:window-y="0"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:current-layer="g10" />
|
||||
<g
|
||||
id="g8"
|
||||
inkscape:groupmode="layer"
|
||||
inkscape:label="ink_ext_XXXXXX"
|
||||
transform="matrix(1.3333333,0,0,-1.3333333,0,172)">
|
||||
<g
|
||||
id="g10"
|
||||
transform="scale(0.1)">
|
||||
<path
|
||||
id="path12"
|
||||
style="fill:#231f20;fill-opacity:1;fill-rule:evenodd;stroke:none"
|
||||
d="M 3564.17 914.37014 L 3564.17 7.0751955 L 3768.6915 7.0751955 L 3768.6915 319.58497 L 3866.089 319.58497 C 3975.7989 319.58497 4063.266 347.86662 4128.9259 404.01856 C 4194.5758 460.39051 4227.4073 534.04377 4227.4073 625.18068 C 4227.4073 818.04349 4113.1532 914.37014 3884.4435 914.37014 L 3564.17 914.37014 z M 3768.6915 757.57326 L 3849.0235 757.57326 C 3957.8734 757.57326 4012.295 710.91899 4012.295 617.62209 C 4012.295 522.37618 3957.8734 474.63868 3849.0235 474.63868 L 3768.6915 474.63868 L 3768.6915 757.57326 z " />
|
||||
<path
|
||||
id="path14"
|
||||
style="fill:#231f20;fill-opacity:1;fill-rule:evenodd;stroke:none"
|
||||
d="M 3079.7608 686.52834 C 2970.7009 686.52834 2883.8863 656.29415 2819.7364 595.82521 C 2755.5965 535.35327 2723.628 451.34053 2723.628 344.22364 C 2723.628 240.55575 2754.5094 158.26991 2816.2794 97.792971 C 2878.0493 37.324232 2962.9333 7.0898439 3070.9132 7.0898439 C 3180.6231 7.0898439 3267.0134 38.191034 3330.0733 100.60547 C 3393.1433 163.02341 3424.6583 248.11318 3424.6583 355.66407 C 3424.6583 455.22297 3394.0058 535.35327 3332.8858 595.82521 C 3271.7659 656.29415 3187.3207 686.52834 3079.7608 686.52834 z M 3076.0841 533.40822 C 3172.624 533.40822 3221.0011 472.94311 3221.0011 351.78224 C 3221.0011 224.14236 3173.0577 160.20996 3077.3878 160.20996 C 2976.9579 160.20996 2926.6407 222.39889 2926.6407 346.80177 C 2926.6407 406.19171 2939.8271 452.20538 2965.9571 484.81935 C 2992.0871 517.21332 3028.7841 533.40822 3076.0841 533.40822 z " />
|
||||
<path
|
||||
d="M 2613.9,53.9805 C 2550.07,23.1055 2466.43,7.66797 2363.38,7.66797 c -134.33,0 -240.09,39.42583 -317.06,118.48403 -77.18,79.055 -115.55,184.395 -115.55,316.016 0,140.172 43.18,253.855 129.74,341.047 86.57,87.191 198.99,130.785 337.08,130.785 85.52,0 157.7,-10.844 216.31,-32.535 V 691.434 c -58.61,35.046 -125.36,52.562 -200.45,52.562 -82.19,0 -148.73,-25.863 -199.21,-77.594 -50.48,-51.73 -75.72,-121.816 -75.72,-210.261 0,-84.688 23.78,-152.27 71.55,-202.539 47.56,-50.274 111.8,-75.512 192.53,-75.512 76.97,0 147.47,18.773 211.3,56.316 V 53.9805"
|
||||
style="fill:#231f20;fill-opacity:1;fill-rule:evenodd;stroke:none"
|
||||
id="path20" />
|
||||
<path
|
||||
d="M 1818.05,7.07031 H 1273.81 V 914.363 h 523.3 v -166.3 h -318.78 v -201.93 h 296.74 V 380.48 H 1478.33 V 172.938 h 339.72 V 7.07031"
|
||||
style="fill:#231f20;fill-opacity:1;fill-rule:evenodd;stroke:none"
|
||||
id="path22" />
|
||||
<path
|
||||
d="m 5.29688,11.3164 c 226.34812,0 451.86712,0.0391 678.21112,0.0391 184.555,0 262.945,29.7929 343.042,107.4685 53.5,51.887 115.33,141.297 114.73,274.379 -1.48,324.66 -296.534,288.137 -291.358,473.774 1.164,41.996 27.258,82.187 64.125,102.675 35.019,19.45 70.254,29.016 127.893,29.164 235.71,0.579 -0.78,0 244.49,0.379 l 3207.09,-0.011 161.75,278.356 -3499.6,0.01 C 998.613,1273.74 831.242,1286.11 704.672,1169.31 603.332,1075.8 568.473,968.301 568.066,871.086 567.637,767.996 599.586,698.063 636.594,644.746 724.48,518.102 867.73,493.148 866.523,397.719 865.223,295.273 766.898,283.129 604.781,283.93 458.027,284.652 310.82,283.441 164.027,283.965 L 5.29688,11.3164"
|
||||
style="fill:#231f20;fill-opacity:1;fill-rule:evenodd;stroke:none"
|
||||
id="path24" />
|
||||
<path
|
||||
d="m 5.29688,11.3164 c 226.34812,0 451.86712,0.0391 678.21112,0.0391 184.555,0 262.945,29.7929 343.042,107.4685 53.5,51.887 115.33,141.297 114.73,274.379 -1.48,324.66 -296.534,288.137 -291.358,473.774 1.164,41.996 27.258,82.187 64.125,102.675 35.019,19.45 70.254,29.016 127.893,29.164 235.71,0.579 -0.78,0 244.49,0.379 l 3207.09,-0.011 161.75,278.356 -3499.6,0.01 C 998.613,1273.74 831.242,1286.11 704.672,1169.31 603.332,1075.8 568.473,968.301 568.066,871.086 567.637,767.996 599.586,698.063 636.594,644.746 724.48,518.102 867.73,493.148 866.523,397.719 865.223,295.273 766.898,283.129 604.781,283.93 458.027,284.652 310.82,283.441 164.027,283.965 Z"
|
||||
style="fill:none;stroke:#231f20;stroke-width:4.9975;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:22.9256;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="path26" />
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 5.4 KiB |
223
resources/SECoP_righttitle.svg
Normal file
223
resources/SECoP_righttitle.svg
Normal file
@ -0,0 +1,223 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
|
||||
<svg
|
||||
version="1.1"
|
||||
id="svg2"
|
||||
width="718.66669"
|
||||
height="138.66667"
|
||||
viewBox="0 0 718.66669 138.66667"
|
||||
sodipodi:docname="SECoP_rightside.svg"
|
||||
inkscape:version="1.2.2 (b0a8486541, 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="defs6" />
|
||||
<sodipodi:namedview
|
||||
id="namedview4"
|
||||
pagecolor="#505050"
|
||||
bordercolor="#eeeeee"
|
||||
borderopacity="1"
|
||||
inkscape:showpageshadow="0"
|
||||
inkscape:pageopacity="0"
|
||||
inkscape:pagecheckerboard="0"
|
||||
inkscape:deskcolor="#505050"
|
||||
showgrid="false"
|
||||
inkscape:zoom="1.701923"
|
||||
inkscape:cx="359.59323"
|
||||
inkscape:cy="69.333336"
|
||||
inkscape:window-width="1920"
|
||||
inkscape:window-height="1171"
|
||||
inkscape:window-x="1920"
|
||||
inkscape:window-y="0"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:current-layer="g10" />
|
||||
<g
|
||||
id="g8"
|
||||
inkscape:groupmode="layer"
|
||||
inkscape:label="ink_ext_XXXXXX"
|
||||
transform="matrix(1.3333333,0,0,-1.3333333,0,138.66667)">
|
||||
<g
|
||||
id="g10"
|
||||
transform="scale(0.1)">
|
||||
<path
|
||||
id="path12"
|
||||
style="fill:#231f20;fill-opacity:1;fill-rule:evenodd;stroke:none"
|
||||
d="M 2895.1759 736.70414 L 2895.1759 1.8652594 L 3060.835 1.8652594 L 3060.835 254.97562 L 3139.7169 254.97562 C 3228.5768 254.97562 3299.4227 277.88922 3352.6026 323.36917 C 3405.7726 369.02213 3432.3634 428.67835 3432.3634 502.49027 C 3432.3634 658.69412 3339.8149 736.70414 3154.585 736.70414 L 2895.1759 736.70414 z M 3060.835 609.71684 L 3125.9034 609.71684 C 3214.0633 609.71684 3258.1348 571.93015 3258.1348 496.36722 C 3258.1348 419.2273 3214.0633 380.55668 3125.9034 380.55668 L 3060.835 380.55668 L 3060.835 609.71684 z " />
|
||||
<path
|
||||
id="path14"
|
||||
style="fill:#231f20;fill-opacity:1;fill-rule:evenodd;stroke:none"
|
||||
d="M 2502.8467 552.17777 C 2414.5068 552.17777 2344.2061 527.69281 2292.2462 478.71586 C 2240.2962 429.73491 2214.4044 361.6887 2214.4044 274.92679 C 2214.4044 190.96587 2239.4137 124.32197 2289.4337 75.341824 C 2339.4636 26.369273 2408.2091 1.8799079 2495.669 1.8799079 C 2584.5389 1.8799079 2654.5012 27.057682 2705.5811 77.612332 C 2756.6611 128.16308 2782.1925 197.09034 2782.1925 284.19925 C 2782.1925 364.83217 2757.3616 429.73491 2707.8516 478.71586 C 2658.3517 527.69281 2589.9567 552.17777 2502.8467 552.17777 z M 2499.8731 428.14945 C 2578.063 428.14945 2617.2364 379.18274 2617.2364 281.04984 C 2617.2364 177.67494 2578.4031 125.89358 2500.9131 125.89358 C 2419.5732 125.89358 2378.8331 176.26862 2378.8331 277.02152 C 2378.8331 325.12747 2389.5041 362.38977 2410.6641 388.80375 C 2431.8341 415.04172 2461.5731 428.14945 2499.8731 428.14945 z " />
|
||||
<path
|
||||
d="m 2125.53,39.8516 c -51.7,-25.0039 -119.44,-37.50394 -202.9,-37.50394 -108.81,0 -194.46,31.92964 -256.8,95.96094 -62.51,64.0314 -93.6,149.3474 -93.6,255.9494 0,113.531 34.98,205.609 105.09,276.226 70.11,70.621 161.17,105.93 273.01,105.93 69.27,0 127.73,-8.785 175.2,-26.355 V 556.148 c -47.47,28.383 -101.53,42.571 -162.35,42.571 -66.57,0 -120.47,-20.946 -161.35,-62.844 -40.88,-41.898 -61.33,-98.664 -61.33,-170.297 0,-68.59 19.27,-123.328 57.95,-164.047 38.52,-40.715 90.56,-61.156 155.94,-61.156 62.34,0 119.44,15.207 171.14,45.613 V 39.8516"
|
||||
style="fill:#231f20;fill-opacity:1;fill-rule:evenodd;stroke:none"
|
||||
id="path20" />
|
||||
<path
|
||||
d="m 1480.95,1.86328 h -440.8 V 736.707 h 423.83 V 602.016 H 1205.8 V 438.465 h 240.34 V 304.301 H 1205.8 V 136.203 h 275.15 V 1.86328"
|
||||
style="fill:#231f20;fill-opacity:1;fill-rule:evenodd;stroke:none"
|
||||
id="path22" />
|
||||
<path
|
||||
d="m 12.7383,5.29688 c 183.3277,0 365.9847,0.03515 549.3047,0.03515 149.477,0 212.969,24.12497 277.844,87.04297 43.332,42.023 93.406,114.438 92.922,222.23 -1.196,262.95 -240.172,233.368 -235.981,383.719 0.945,34.016 22.074,66.571 51.938,83.164 28.363,15.75 56.898,23.496 103.586,23.617 190.908,0.469 -0.633,0 198.018,0.309 l 2597.52,-0.008 131.01,225.454 H 944.461 C 817.258,1027.78 681.699,1037.8 579.184,943.199 497.105,867.461 468.875,780.395 468.543,701.656 c -0.348,-83.5 25.527,-140.136 55.504,-183.324 71.18,-102.57 187.203,-122.781 186.226,-200.07 -1.054,-82.977 -80.687,-92.813 -211.992,-92.164 -118.863,0.586 -238.09,-0.399 -356.98,0.031 L 12.7383,5.29688"
|
||||
style="fill:#231f20;fill-opacity:1;fill-rule:evenodd;stroke:none"
|
||||
id="path24" />
|
||||
<path
|
||||
d="m 12.7383,5.29688 c 183.3277,0 365.9847,0.03515 549.3047,0.03515 149.477,0 212.969,24.12497 277.844,87.04297 43.332,42.023 93.406,114.438 92.922,222.23 -1.196,262.95 -240.172,233.368 -235.981,383.719 0.945,34.016 22.074,66.571 51.938,83.164 28.363,15.75 56.898,23.496 103.586,23.617 190.908,0.469 -0.633,0 198.018,0.309 l 2597.52,-0.008 131.01,225.454 H 944.461 C 817.258,1027.78 681.699,1037.8 579.184,943.199 497.105,867.461 468.875,780.395 468.543,701.656 c -0.348,-83.5 25.527,-140.136 55.504,-183.324 71.18,-102.57 187.203,-122.781 186.226,-200.07 -1.054,-82.977 -80.687,-92.813 -211.992,-92.164 -118.863,0.586 -238.09,-0.399 -356.98,0.031 z"
|
||||
style="fill:none;stroke:#231f20;stroke-width:4.9975;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:22.9256;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="path26" />
|
||||
<path
|
||||
d="m 3890.08,873.652 v 33.828 c 6.13,-5.156 12.8,-9.015 19.97,-11.574 7.18,-2.562 14.43,-3.859 21.75,-3.859 4.33,0 8.08,0.398 11.25,1.152 3.22,0.793 5.88,1.84 8.04,3.246 2.17,1.371 3.76,2.996 4.8,4.832 1.08,1.875 1.59,3.899 1.59,6.098 0,2.957 -0.83,5.59 -2.52,7.895 -1.7,2.343 -4.01,4.507 -6.93,6.457 -2.92,1.984 -6.38,3.894 -10.42,5.695 -4,1.84 -8.33,3.719 -12.98,5.629 -11.83,4.902 -20.67,10.926 -26.47,18.066 -5.81,7.106 -8.7,15.688 -8.7,25.75 0,7.899 1.56,14.68 4.73,20.34 3.17,5.693 7.5,10.343 12.95,14.023 5.48,3.65 11.79,6.35 18.97,8.08 7.17,1.73 14.78,2.6 22.82,2.6 7.9,0 14.89,-0.5 20.99,-1.44 6.06,-0.94 11.69,-2.42 16.84,-4.4 v -31.593 c -2.56,1.765 -5.3,3.316 -8.29,4.652 -2.99,1.332 -6.09,2.449 -9.27,3.351 -3.14,0.868 -6.31,1.516 -9.45,1.95 -3.14,0.394 -6.09,0.613 -8.91,0.613 -3.89,0 -7.39,-0.363 -10.56,-1.082 -3.18,-0.758 -5.84,-1.805 -8.05,-3.137 -2.16,-1.336 -3.85,-2.922 -5.08,-4.797 -1.19,-1.875 -1.77,-3.964 -1.77,-6.277 0,-2.559 0.65,-4.828 1.99,-6.812 1.33,-2.024 3.24,-3.934 5.73,-5.735 2.45,-1.765 5.45,-3.535 8.98,-5.265 3.5,-1.731 7.5,-3.497 11.94,-5.336 6.05,-2.528 11.47,-5.231 16.3,-8.082 4.83,-2.848 8.98,-6.094 12.4,-9.665 3.46,-3.605 6.1,-7.714 7.94,-12.332 1.84,-4.582 2.74,-9.953 2.74,-16.085 0,-8.477 -1.59,-15.543 -4.8,-21.313 -3.21,-5.734 -7.53,-10.387 -13.05,-13.922 -5.49,-3.57 -11.87,-6.129 -19.15,-7.683 -7.32,-1.547 -15.01,-2.305 -23.12,-2.305 -8.29,0 -16.19,0.683 -23.69,2.09 -7.5,1.406 -14.03,3.535 -19.51,6.347"
|
||||
style="fill:#231f20;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
id="path28" />
|
||||
<path
|
||||
d="m 4096,867.848 h -17.35 v 16.914 h -0.4 c -7.53,-12.985 -18.64,-19.442 -33.28,-19.442 -10.78,0 -19.22,2.852 -25.32,8.551 -6.1,5.699 -9.12,13.27 -9.12,22.719 0,20.195 11.9,31.988 35.7,35.269 l 32.42,4.543 c 0,18.395 -7.43,27.59 -22.29,27.59 -13.02,0 -24.77,-4.437 -35.27,-13.308 v 17.746 c 10.64,6.777 22.87,10.133 36.75,10.133 25.43,0 38.16,-13.454 38.16,-40.356 z m -17.35,54.746 -26.07,-3.61 c -8.04,-1.117 -14.1,-3.101 -18.18,-5.988 -4.08,-2.848 -6.13,-7.894 -6.13,-15.144 0,-5.262 1.88,-9.594 5.66,-12.946 3.75,-3.355 8.77,-5.015 15.04,-5.015 8.58,0 15.69,3.031 21.28,9.019 5.63,6.02 8.4,13.668 8.4,22.899 v 10.785"
|
||||
style="fill:#231f20;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
id="path30" />
|
||||
<path
|
||||
d="m 4282.26,867.848 h -17.31 v 62.136 c 0,11.973 -1.87,20.629 -5.55,25.965 -3.71,5.375 -9.92,8.043 -18.64,8.043 -7.4,0 -13.71,-3.39 -18.87,-10.133 -5.19,-6.781 -7.78,-14.859 -7.78,-24.308 v -61.703 h -17.32 v 64.226 c 0,21.281 -8.22,31.918 -24.63,31.918 -7.61,0 -13.84,-3.176 -18.78,-9.558 -4.95,-6.383 -7.4,-14.676 -7.4,-24.883 v -61.703 h -17.35 v 108.191 h 17.35 v -17.133 h 0.43 c 7.65,13.129 18.86,19.657 33.58,19.657 7.39,0 13.85,-2.059 19.33,-6.168 5.52,-4.11 9.27,-9.52 11.32,-16.227 8.01,14.93 19.98,22.395 35.92,22.395 23.8,0 35.7,-14.676 35.7,-44.032 v -66.683"
|
||||
style="fill:#231f20;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
id="path32" />
|
||||
<path
|
||||
d="m 4332.79,883.496 h -0.43 v -65.418 h -17.35 v 157.961 h 17.35 v -19.008 h 0.43 c 8.51,14.356 20.99,21.532 37.4,21.532 13.92,0 24.81,-4.833 32.63,-14.536 7.83,-9.664 11.73,-22.648 11.73,-38.91 0,-18.105 -4.41,-32.601 -13.21,-43.492 -8.79,-10.855 -20.84,-16.305 -36.13,-16.305 -14.03,0 -24.81,6.063 -32.42,18.176 z m -0.43,43.641 v -15.114 c 0,-8.941 2.88,-16.55 8.72,-22.793 5.81,-6.238 13.17,-9.339 22.11,-9.339 10.49,0 18.72,4.004 24.67,12.047 5.95,8.042 8.94,19.187 8.94,33.503 0,12.043 -2.78,21.457 -8.37,28.309 -5.55,6.816 -13.09,10.242 -22.57,10.242 -10.1,0 -18.18,-3.496 -24.31,-10.492 -6.13,-7.035 -9.19,-15.797 -9.19,-26.363"
|
||||
style="fill:#231f20;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
id="path34" />
|
||||
<path
|
||||
d="m 4459.55,867.848 h -17.34 V 1028 h 17.34 V 867.848"
|
||||
style="fill:#231f20;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
id="path36" />
|
||||
<path
|
||||
d="m 4581.56,917.613 h -76.38 c 0.28,-12.043 3.53,-21.347 9.73,-27.91 6.2,-6.527 14.72,-9.812 25.57,-9.812 12.19,0 23.37,4.004 33.61,12.047 v -16.266 c -9.52,-6.922 -22.11,-10.352 -37.72,-10.352 -15.29,0 -27.3,4.907 -36.03,14.715 -8.76,9.848 -13.13,23.66 -13.13,41.477 0,16.84 4.8,30.543 14.32,41.144 9.56,10.602 21.42,15.907 35.56,15.907 14.17,0 25.1,-4.583 32.85,-13.743 7.76,-9.121 11.62,-21.851 11.62,-38.117 z m -17.75,14.68 c -0.07,9.988 -2.49,17.777 -7.21,23.367 -4.76,5.555 -11.36,8.332 -19.83,8.332 -8.16,0 -15.11,-2.922 -20.81,-8.765 -5.7,-5.84 -9.23,-13.485 -10.57,-22.934 h 58.42"
|
||||
style="fill:#231f20;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
id="path38" />
|
||||
<path
|
||||
d="m 3987.92,580.027 h -90.88 v 151.5 h 87.38 v -27.769 h -53.23 v -33.719 h 49.55 v -27.66 h -49.55 v -34.656 h 56.73 v -27.696"
|
||||
style="fill:#231f20;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
id="path40" />
|
||||
<path
|
||||
d="m 4102.23,580.027 h -17.34 v 61.703 c 0,22.973 -8.37,34.442 -25.14,34.442 -8.65,0 -15.83,-3.246 -21.49,-9.774 -5.7,-6.527 -8.51,-14.75 -8.51,-24.668 v -61.703 h -17.35 v 108.188 h 17.35 v -17.961 h 0.43 c 8.15,13.672 19.98,20.488 35.49,20.488 11.83,0 20.88,-3.824 27.15,-11.469 6.28,-7.613 9.41,-18.679 9.41,-33.105 v -66.141"
|
||||
style="fill:#231f20;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
id="path42" />
|
||||
<path
|
||||
d="m 4219.95,688.215 -43.13,-108.188 h -16.99 l -41,108.188 h 19 l 27.48,-78.617 c 2.06,-5.77 3.32,-10.785 3.82,-15.11 h 0.4 c 0.72,5.446 1.84,10.348 3.39,14.711 l 28.74,79.016 h 18.29"
|
||||
style="fill:#231f20;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
id="path44" />
|
||||
<path
|
||||
d="m 4247.39,715.695 c -3.07,0 -5.73,1.047 -7.89,3.176 -2.21,2.09 -3.29,4.758 -3.29,8.004 0,3.246 1.08,5.953 3.29,8.078 2.16,2.164 4.82,3.246 7.89,3.246 3.17,0 5.88,-1.082 8.11,-3.246 2.2,-2.125 3.32,-4.832 3.32,-8.078 0,-3.102 -1.12,-5.734 -3.32,-7.898 -2.23,-2.2 -4.94,-3.282 -8.11,-3.282 z m 8.47,-135.668 h -17.34 v 108.188 h 17.34 V 580.027"
|
||||
style="fill:#231f20;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
id="path46" />
|
||||
<path
|
||||
d="m 4347.36,670.688 c -3.03,2.308 -7.4,3.46 -13.09,3.46 -7.43,0 -13.6,-3.46 -18.57,-10.457 -4.95,-6.961 -7.43,-16.48 -7.43,-28.527 v -55.137 h -17.35 v 108.188 h 17.35 V 665.93 h 0.43 c 2.45,7.609 6.2,13.519 11.29,17.812 5.08,4.258 10.74,6.383 17.02,6.383 4.51,0 7.93,-0.504 10.35,-1.477 v -17.96"
|
||||
style="fill:#231f20;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
id="path48" />
|
||||
<path
|
||||
d="m 4411.38,577.5 c -15.98,0 -28.75,5.051 -38.31,15.148 -9.52,10.098 -14.31,23.512 -14.31,40.211 0,18.176 4.97,32.348 14.89,42.59 9.96,10.207 23.37,15.293 40.28,15.293 16.12,0 28.71,-4.941 37.76,-14.898 9.06,-9.914 13.56,-23.692 13.56,-41.289 0,-17.278 -4.87,-31.086 -14.61,-41.477 -9.76,-10.387 -22.86,-15.578 -39.26,-15.578 z m 1.25,98.672 c -11.1,0 -19.9,-3.789 -26.4,-11.363 -6.48,-7.571 -9.73,-17.993 -9.73,-31.34 0,-12.801 3.28,-22.899 9.85,-30.289 6.56,-7.395 15.32,-11.11 26.28,-11.11 11.22,0 19.84,3.641 25.86,10.891 6.03,7.25 9.02,17.562 9.02,30.941 0,13.528 -2.99,23.95 -9.02,31.27 -6.02,7.355 -14.64,11 -25.86,11"
|
||||
style="fill:#231f20;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
id="path50" />
|
||||
<path
|
||||
d="m 4582.78,580.027 h -17.34 v 61.703 c 0,22.973 -8.37,34.442 -25.14,34.442 -8.66,0 -15.83,-3.246 -21.5,-9.774 -5.69,-6.527 -8.51,-14.75 -8.51,-24.668 v -61.703 h -17.34 v 108.188 h 17.34 v -17.961 h 0.44 c 8.15,13.672 19.98,20.488 35.48,20.488 11.83,0 20.88,-3.824 27.16,-11.469 6.27,-7.613 9.41,-18.679 9.41,-33.105 v -66.141"
|
||||
style="fill:#231f20;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
id="path52" />
|
||||
<path
|
||||
d="m 4769.05,580.027 h -17.31 v 62.137 c 0,11.973 -1.88,20.629 -5.56,25.965 -3.71,5.371 -9.91,8.043 -18.64,8.043 -7.39,0 -13.7,-3.391 -18.86,-10.133 -5.2,-6.781 -7.79,-14.859 -7.79,-24.309 v -61.703 h -17.31 v 64.227 c 0,21.277 -8.22,31.918 -24.63,31.918 -7.61,0 -13.85,-3.176 -18.79,-9.559 -4.94,-6.383 -7.39,-14.679 -7.39,-24.883 v -61.703 h -17.35 v 108.188 h 17.35 v -17.129 h 0.43 c 7.64,13.129 18.86,19.656 33.57,19.656 7.4,0 13.85,-2.058 19.34,-6.168 5.51,-4.109 9.26,-9.523 11.32,-16.23 8,14.929 19.98,22.398 35.92,22.398 23.8,0 35.7,-14.679 35.7,-44.035 v -66.68"
|
||||
style="fill:#231f20;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
id="path54" />
|
||||
<path
|
||||
d="m 4888.75,629.793 h -76.39 c 0.29,-12.043 3.53,-21.352 9.74,-27.91 6.2,-6.531 14.71,-9.813 25.57,-9.813 12.19,0 23.37,4.004 33.61,12.047 v -16.265 c -9.52,-6.926 -22.11,-10.352 -37.72,-10.352 -15.29,0 -27.3,4.906 -36.03,14.715 -8.76,9.844 -13.13,23.656 -13.13,41.473 0,16.839 4.8,30.546 14.32,41.148 9.56,10.602 21.42,15.906 35.56,15.906 14.17,0 25.1,-4.582 32.85,-13.742 7.75,-9.121 11.62,-21.852 11.62,-38.117 z m -17.75,14.68 c -0.07,9.988 -2.49,17.777 -7.21,23.367 -4.76,5.555 -11.36,8.332 -19.84,8.332 -8.15,0 -15.11,-2.922 -20.81,-8.766 -5.69,-5.84 -9.23,-13.488 -10.56,-22.933 H 4871"
|
||||
style="fill:#231f20;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
id="path56" />
|
||||
<path
|
||||
d="m 5004.79,580.027 h -17.34 v 61.703 c 0,22.973 -8.37,34.442 -25.14,34.442 -8.65,0 -15.83,-3.246 -21.49,-9.774 -5.7,-6.527 -8.51,-14.75 -8.51,-24.668 v -61.703 h -17.35 v 108.188 h 17.35 v -17.961 h 0.43 c 8.15,13.672 19.98,20.488 35.49,20.488 11.83,0 20.88,-3.824 27.15,-11.469 6.28,-7.613 9.41,-18.679 9.41,-33.105 v -66.141"
|
||||
style="fill:#231f20;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
id="path58" />
|
||||
<path
|
||||
d="m 5087.63,581.07 c -4.07,-2.234 -9.48,-3.351 -16.15,-3.351 -18.97,0 -28.42,10.562 -28.42,31.699 v 64.012 h -18.61 v 14.785 h 18.61 v 26.398 l 17.31,5.625 v -32.023 h 27.26 V 673.43 h -27.26 v -60.985 c 0,-7.246 1.23,-12.402 3.72,-15.504 2.45,-3.101 6.52,-4.652 12.25,-4.652 4.37,0 8.12,1.188 11.29,3.606 V 581.07"
|
||||
style="fill:#231f20;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
id="path60" />
|
||||
<path
|
||||
d="m 4005.66,297.578 c -11.03,-5.336 -25.5,-8.008 -43.31,-8.008 -23.22,0 -41.51,6.817 -54.82,20.489 -13.34,13.664 -19.98,31.875 -19.98,54.632 0,24.235 7.47,43.891 22.43,58.965 14.97,15.074 34.41,22.61 58.28,22.61 14.79,0 27.26,-1.875 37.4,-5.625 v -32.852 c -10.14,6.055 -21.68,9.086 -34.66,9.086 -14.2,0 -25.71,-4.469 -34.44,-13.418 -8.72,-8.941 -13.09,-21.059 -13.09,-36.352 0,-14.64 4.12,-26.324 12.37,-35.015 8.23,-8.692 19.33,-13.055 33.29,-13.055 13.3,0 25.5,3.246 36.53,9.735 v -31.192"
|
||||
style="fill:#231f20;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
id="path62" />
|
||||
<path
|
||||
d="m 4080.35,289.57 c -18.03,0 -32.21,5.051 -42.52,15.149 -10.31,10.097 -15.47,23.836 -15.47,41.148 0,17.887 5.33,31.914 16.05,42.012 10.7,10.101 25.2,15.148 43.41,15.148 17.97,0 32.07,-5.047 42.27,-15.148 10.21,-10.098 15.33,-23.477 15.33,-40.102 0,-17.961 -5.27,-32.168 -15.8,-42.589 -10.53,-10.422 -24.95,-15.618 -43.27,-15.618 z m 0.86,87.891 c -7.9,0 -14.03,-2.707 -18.39,-8.117 -4.37,-5.446 -6.57,-13.129 -6.57,-23.047 0,-20.77 8.41,-31.156 25.18,-31.156 15.98,0 23.98,10.675 23.98,31.988 0,20.23 -8.08,30.332 -24.2,30.332"
|
||||
style="fill:#231f20;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
id="path64" />
|
||||
<path
|
||||
d="m 4318.18,292.203 h -17.3 v 62.141 c 0,11.969 -1.88,20.625 -5.56,25.965 -3.71,5.371 -9.91,8.043 -18.64,8.043 -7.39,0 -13.71,-3.391 -18.86,-10.137 -5.2,-6.777 -7.8,-14.86 -7.8,-24.305 v -61.707 h -17.31 v 64.231 c 0,21.277 -8.22,31.918 -24.63,31.918 -7.61,0 -13.84,-3.176 -18.78,-9.559 -4.94,-6.387 -7.4,-14.68 -7.4,-24.883 v -61.707 h -17.35 v 108.192 h 17.35 v -17.129 h 0.43 c 7.65,13.125 18.87,19.656 33.58,19.656 7.39,0 13.85,-2.059 19.33,-6.172 5.52,-4.109 9.27,-9.52 11.32,-16.227 8.01,14.93 19.98,22.399 35.92,22.399 23.81,0 35.7,-14.68 35.7,-44.035 v -66.684"
|
||||
style="fill:#231f20;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
id="path66" />
|
||||
<path
|
||||
d="m 4504.56,292.203 h -17.31 v 62.141 c 0,11.969 -1.87,20.625 -5.55,25.965 -3.72,5.371 -9.92,8.043 -18.65,8.043 -7.39,0 -13.7,-3.391 -18.86,-10.137 -5.19,-6.777 -7.79,-14.86 -7.79,-24.305 v -61.707 h -17.31 v 64.231 c 0,21.277 -8.22,31.918 -24.63,31.918 -7.61,0 -13.85,-3.176 -18.79,-9.559 -4.94,-6.387 -7.39,-14.68 -7.39,-24.883 v -61.707 h -17.35 v 108.192 h 17.35 v -17.129 h 0.43 c 7.65,13.125 18.86,19.656 33.58,19.656 7.39,0 13.84,-2.059 19.32,-6.172 5.52,-4.109 9.27,-9.52 11.33,-16.227 8.01,14.93 19.98,22.399 35.92,22.399 23.8,0 35.7,-14.68 35.7,-44.035 v -66.684"
|
||||
style="fill:#231f20;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
id="path68" />
|
||||
<path
|
||||
d="m 4624.79,292.203 h -17.31 v 17.133 h -0.43 c -7.17,-13.129 -18.32,-19.656 -33.39,-19.656 -25.79,0 -38.66,15.324 -38.66,46.054 v 64.661 h 17.2 v -61.922 c 0,-22.825 8.76,-34.223 26.22,-34.223 8.44,0 15.4,3.102 20.88,9.34 5.45,6.238 8.18,14.39 8.18,24.488 v 62.317 h 17.31 V 292.203"
|
||||
style="fill:#231f20;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
id="path70" />
|
||||
<path
|
||||
d="m 4749.61,292.203 h -17.35 v 61.707 c 0,22.973 -8.37,34.442 -25.13,34.442 -8.66,0 -15.84,-3.247 -21.5,-9.778 -5.69,-6.527 -8.51,-14.746 -8.51,-24.664 v -61.707 h -17.34 v 108.192 h 17.34 v -17.961 h 0.43 c 8.15,13.668 19.99,20.488 35.49,20.488 11.83,0 20.88,-3.824 27.16,-11.473 6.27,-7.609 9.41,-18.679 9.41,-33.105 v -66.141"
|
||||
style="fill:#231f20;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
id="path72" />
|
||||
<path
|
||||
d="m 4791.12,427.875 c -3.07,0 -5.73,1.043 -7.9,3.172 -2.2,2.094 -3.28,4.762 -3.28,8.008 0,3.246 1.08,5.953 3.28,8.078 2.17,2.16 4.83,3.246 7.9,3.246 3.17,0 5.88,-1.086 8.11,-3.246 2.2,-2.125 3.32,-4.832 3.32,-8.078 0,-3.102 -1.12,-5.735 -3.32,-7.899 -2.23,-2.199 -4.94,-3.281 -8.11,-3.281 z m 8.47,-135.672 h -17.34 v 108.192 h 17.34 V 292.203"
|
||||
style="fill:#231f20;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
id="path74" />
|
||||
<path
|
||||
d="m 4908.4,297.184 c -8.3,-5.016 -18.18,-7.504 -29.58,-7.504 -15.43,0 -27.87,5.011 -37.36,15.039 -9.44,10.023 -14.21,23.043 -14.21,39.054 0,17.817 5.13,32.137 15.33,42.954 10.21,10.781 23.84,16.195 40.9,16.195 9.52,0 17.88,-1.734 25.14,-5.27 V 379.91 c -8.05,5.625 -16.63,8.442 -25.79,8.442 -11.04,0 -20.12,-3.969 -27.19,-11.907 -7.07,-7.894 -10.64,-18.32 -10.64,-31.191 0,-12.695 3.36,-22.684 9.99,-30.004 6.67,-7.32 15.58,-11 26.79,-11 9.45,0 18.32,3.137 26.62,9.414 v -16.48"
|
||||
style="fill:#231f20;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
id="path76" />
|
||||
<path
|
||||
d="m 5012.05,292.203 h -17.35 v 16.914 h -0.4 c -7.54,-12.98 -18.64,-19.437 -33.28,-19.437 -10.79,0 -19.23,2.851 -25.32,8.547 -6.1,5.699 -9.13,13.269 -9.13,22.722 0,20.192 11.91,31.985 35.71,35.266 l 32.42,4.547 c 0,18.394 -7.43,27.59 -22.29,27.59 -13.02,0 -24.77,-4.438 -35.27,-13.309 v 17.742 c 10.64,6.778 22.86,10.137 36.75,10.137 25.43,0 38.16,-13.453 38.16,-40.359 z m -17.35,54.746 -26.07,-3.609 c -8.05,-1.113 -14.1,-3.098 -18.18,-5.985 -4.08,-2.851 -6.13,-7.898 -6.13,-15.144 0,-5.266 1.88,-9.594 5.66,-12.949 3.75,-3.356 8.76,-5.012 15.04,-5.012 8.58,0 15.69,3.027 21.28,9.016 5.62,6.019 8.4,13.668 8.4,22.902 v 10.781"
|
||||
style="fill:#231f20;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
id="path78" />
|
||||
<path
|
||||
d="m 5094.88,293.25 c -4.08,-2.234 -9.48,-3.352 -16.15,-3.352 -18.97,0 -28.42,10.563 -28.42,31.7 v 64.011 h -18.61 v 14.786 h 18.61 v 26.398 l 17.31,5.625 v -32.023 h 27.26 v -14.786 h -27.26 v -60.984 c 0,-7.25 1.22,-12.406 3.71,-15.508 2.46,-3.097 6.53,-4.648 12.26,-4.648 4.37,0 8.12,1.187 11.29,3.605 V 293.25"
|
||||
style="fill:#231f20;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
id="path80" />
|
||||
<path
|
||||
d="m 5126.87,427.875 c -3.07,0 -5.73,1.043 -7.9,3.172 -2.2,2.094 -3.28,4.762 -3.28,8.008 0,3.246 1.08,5.953 3.28,8.078 2.17,2.16 4.83,3.246 7.9,3.246 3.17,0 5.88,-1.086 8.11,-3.246 2.2,-2.125 3.32,-4.832 3.32,-8.078 0,-3.102 -1.12,-5.735 -3.32,-7.899 -2.23,-2.199 -4.94,-3.281 -8.11,-3.281 z m 8.47,-135.672 H 5118 v 108.192 h 17.34 V 292.203"
|
||||
style="fill:#231f20;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
id="path82" />
|
||||
<path
|
||||
d="m 5215.63,289.68 c -15.98,0 -28.75,5.05 -38.31,15.148 -9.52,10.098 -14.31,23.512 -14.31,40.207 0,18.176 4.97,32.352 14.89,42.594 9.96,10.207 23.37,15.293 40.28,15.293 16.12,0 28.71,-4.942 37.76,-14.899 9.06,-9.914 13.56,-23.691 13.56,-41.293 0,-17.273 -4.86,-31.082 -14.61,-41.472 -9.76,-10.387 -22.85,-15.578 -39.26,-15.578 z m 1.26,98.672 c -11.11,0 -19.91,-3.789 -26.4,-11.364 -6.49,-7.57 -9.74,-17.992 -9.74,-31.34 0,-12.8 3.28,-22.898 9.85,-30.289 6.56,-7.394 15.33,-11.109 26.29,-11.109 11.21,0 19.83,3.641 25.85,10.891 6.03,7.25 9.02,17.562 9.02,30.941 0,13.523 -2.99,23.949 -9.02,31.266 -6.02,7.359 -14.64,11.004 -25.85,11.004"
|
||||
style="fill:#231f20;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
id="path84" />
|
||||
<path
|
||||
d="m 5387.03,292.203 h -17.34 v 61.707 c 0,22.973 -8.37,34.442 -25.14,34.442 -8.66,0 -15.83,-3.247 -21.49,-9.778 -5.7,-6.527 -8.51,-14.746 -8.51,-24.664 v -61.707 h -17.35 v 108.192 h 17.35 v -17.961 h 0.43 c 8.15,13.668 19.98,20.488 35.48,20.488 11.83,0 20.88,-3.824 27.16,-11.473 6.28,-7.609 9.41,-18.679 9.41,-33.105 v -66.141"
|
||||
style="fill:#231f20;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
id="path86" />
|
||||
<path
|
||||
d="M 3931.19,56.5664 V 4.38281 h -34.15 V 155.887 h 53.48 c 38.19,0 57.27,-16.086 57.27,-48.293 0,-15.219 -5.49,-27.5159 -16.45,-36.926 -10.96,-9.375 -25.57,-14.1016 -43.88,-14.1016 z m 0,73.1366 V 82.4609 h 13.41 c 18.18,0 27.27,7.9688 27.27,23.8711 0,15.582 -9.09,23.371 -27.27,23.371 h -13.41"
|
||||
style="fill:#231f20;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
id="path88" />
|
||||
<path
|
||||
d="m 4086.63,95.0469 c -3.04,2.3086 -7.4,3.4609 -13.1,3.4609 -7.43,0 -13.59,-3.4609 -18.57,-10.457 -4.94,-6.961 -7.43,-16.4805 -7.43,-28.5274 V 4.38281 h -17.35 V 112.574 h 17.35 V 90.2852 h 0.43 c 2.45,7.6093 6.2,13.5238 11.29,17.8168 5.09,4.257 10.75,6.382 17.02,6.382 4.51,0 7.94,-0.504 10.36,-1.476 V 95.0469"
|
||||
style="fill:#231f20;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
id="path90" />
|
||||
<path
|
||||
d="m 4150.64,1.85547 c -15.98,0 -28.75,5.05469 -38.3,15.14843 -9.52,10.0977 -14.32,23.5156 -14.32,40.2109 0,18.1758 4.98,32.3477 14.89,42.5899 9.96,10.2073 23.37,15.2933 40.29,15.2933 16.12,0 28.7,-4.942 37.75,-14.895 9.06,-9.9178 13.57,-23.6913 13.57,-41.2928 0,-17.2735 -4.87,-31.086 -14.61,-41.4727 -9.77,-10.38672 -22.86,-15.58203 -39.27,-15.58203 z m 1.26,98.67153 c -11.11,0 -19.91,-3.7848 -26.4,-11.359 -6.49,-7.5703 -9.74,-17.9961 -9.74,-31.3399 0,-12.8008 3.28,-22.8984 9.85,-30.2929 6.56,-7.3907 15.33,-11.1094 26.29,-11.1094 11.21,0 19.83,3.6445 25.86,10.8906 6.02,7.2539 9.01,17.5664 9.01,30.9453 0,13.5235 -2.99,23.9453 -9.01,31.2656 -6.03,7.3594 -14.65,10.9997 -25.86,10.9997"
|
||||
style="fill:#231f20;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
id="path92" />
|
||||
<path
|
||||
d="m 4282.41,5.42969 c -4.07,-2.23828 -9.48,-3.35547 -16.15,-3.35547 -18.97,0 -28.42,10.56638 -28.42,31.70308 v 64.0118 h -18.61 v 14.7849 h 18.61 v 26.399 l 17.31,5.625 v -32.024 h 27.26 V 97.7891 h -27.26 V 36.8047 c 0,-7.25 1.23,-12.4063 3.71,-15.5078 2.46,-3.1016 6.53,-4.6524 12.27,-4.6524 4.36,0 8.11,1.1875 11.28,3.6055 V 5.42969"
|
||||
style="fill:#231f20;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
id="path94" />
|
||||
<path
|
||||
d="m 4350.75,1.85547 c -15.97,0 -28.74,5.05469 -38.29,15.14843 -9.53,10.0977 -14.32,23.5156 -14.32,40.2109 0,18.1758 4.97,32.3477 14.89,42.5899 9.95,10.2073 23.37,15.2933 40.28,15.2933 16.12,0 28.71,-4.942 37.76,-14.895 9.06,-9.9178 13.56,-23.6913 13.56,-41.2928 0,-17.2735 -4.86,-31.086 -14.6,-41.4727 -9.78,-10.38672 -22.87,-15.58203 -39.28,-15.58203 z m 1.27,98.67153 c -11.11,0 -19.91,-3.7848 -26.4,-11.359 -6.49,-7.5703 -9.74,-17.9961 -9.74,-31.3399 0,-12.8008 3.28,-22.8984 9.85,-30.2929 6.56,-7.3907 15.32,-11.1094 26.29,-11.1094 11.21,0 19.83,3.6445 25.86,10.8906 6.02,7.2539 9.01,17.5664 9.01,30.9453 0,13.5235 -2.99,23.9453 -9.01,31.2656 -6.03,7.3594 -14.65,10.9997 -25.86,10.9997"
|
||||
style="fill:#231f20;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
id="path96" />
|
||||
<path
|
||||
d="m 4506.08,9.35938 c -8.29,-5.01172 -18.18,-7.50391 -29.57,-7.50391 -15.44,0 -27.88,5.01562 -37.36,15.04293 -9.45,10.0235 -14.21,23.043 -14.21,39.0547 0,17.8164 5.12,32.1328 15.33,42.9532 10.2,10.7817 23.83,16.1917 40.89,16.1917 9.52,0 17.89,-1.731 25.14,-5.266 V 92.0898 c -8.05,5.625 -16.63,8.4372 -25.79,8.4372 -11.03,0 -20.12,-3.9684 -27.19,-11.902 -7.07,-7.8984 -10.64,-18.3203 -10.64,-31.1914 0,-12.6953 3.36,-22.6875 9.99,-30.0039 6.67,-7.3242 15.58,-11.0039 26.79,-11.0039 9.45,0 18.33,3.1406 26.62,9.414 V 9.35938"
|
||||
style="fill:#231f20;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
id="path98" />
|
||||
<path
|
||||
d="m 4577.48,1.85547 c -15.97,0 -28.74,5.05469 -38.29,15.14843 -9.53,10.0977 -14.32,23.5156 -14.32,40.2109 0,18.1758 4.98,32.3477 14.89,42.5899 9.96,10.2073 23.37,15.2933 40.29,15.2933 16.12,0 28.7,-4.942 37.75,-14.895 9.06,-9.9178 13.56,-23.6913 13.56,-41.2928 0,-17.2735 -4.86,-31.086 -14.6,-41.4727 -9.77,-10.38672 -22.87,-15.58203 -39.28,-15.58203 z m 1.27,98.67153 c -11.11,0 -19.91,-3.7848 -26.4,-11.359 -6.49,-7.5703 -9.74,-17.9961 -9.74,-31.3399 0,-12.8008 3.28,-22.8984 9.85,-30.2929 6.56,-7.3907 15.33,-11.1094 26.29,-11.1094 11.21,0 19.83,3.6445 25.86,10.8906 6.02,7.2539 9.01,17.5664 9.01,30.9453 0,13.5235 -2.99,23.9453 -9.01,31.2656 -6.03,7.3594 -14.65,10.9997 -25.86,10.9997"
|
||||
style="fill:#231f20;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
id="path100" />
|
||||
<path
|
||||
d="m 4676.41,4.38281 h -17.35 V 164.539 h 17.35 V 4.38281"
|
||||
style="fill:#231f20;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
id="path102" />
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 27 KiB |
223
resources/SECoP_subtitle-light.svg
Normal file
223
resources/SECoP_subtitle-light.svg
Normal file
@ -0,0 +1,223 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
|
||||
<svg
|
||||
version="1.1"
|
||||
id="svg2"
|
||||
width="634.66669"
|
||||
height="213.33333"
|
||||
viewBox="0 0 634.66669 213.33333"
|
||||
sodipodi:docname="SECoP12_subtitle-transparent-counters-light.svg"
|
||||
inkscape:version="1.2.2 (b0a8486541, 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="defs6" />
|
||||
<sodipodi:namedview
|
||||
id="namedview4"
|
||||
pagecolor="#505050"
|
||||
bordercolor="#eeeeee"
|
||||
borderopacity="1"
|
||||
inkscape:showpageshadow="0"
|
||||
inkscape:pageopacity="0"
|
||||
inkscape:pagecheckerboard="0"
|
||||
inkscape:deskcolor="#505050"
|
||||
showgrid="false"
|
||||
inkscape:zoom="1.10625"
|
||||
inkscape:cx="283.38983"
|
||||
inkscape:cy="106.66667"
|
||||
inkscape:window-width="1920"
|
||||
inkscape:window-height="1171"
|
||||
inkscape:window-x="1920"
|
||||
inkscape:window-y="0"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:current-layer="g10" />
|
||||
<g
|
||||
id="g8"
|
||||
inkscape:groupmode="layer"
|
||||
inkscape:label="ink_ext_XXXXXX"
|
||||
transform="matrix(1.3333333,0,0,-1.3333333,0,213.33333)">
|
||||
<g
|
||||
id="g10"
|
||||
transform="scale(0.1)">
|
||||
<path
|
||||
id="path12"
|
||||
style="fill:#fcfcfc;fill-opacity:1;fill-rule:evenodd;stroke:none"
|
||||
d="M 3636.9435 1219.2432 L 3636.9435 295.02928 L 3845.2882 295.02928 L 3845.2882 613.36913 L 3944.5167 613.36913 C 4056.2766 613.36913 4145.3663 642.18582 4212.2462 699.38476 C 4279.1261 756.8067 4312.5734 831.82318 4312.5734 924.66308 C 4312.5734 1121.1249 4196.1879 1219.2432 3963.2081 1219.2432 L 3636.9435 1219.2432 z M 3845.2882 1059.5313 L 3927.129 1059.5313 C 4038.0089 1059.5313 4093.4474 1012.0036 4093.4474 916.97265 C 4093.4474 819.94875 4038.0089 771.32324 3927.129 771.32324 L 3845.2882 771.32324 L 3845.2882 1059.5313 z " />
|
||||
<path
|
||||
id="path14"
|
||||
style="fill:#fcfcfc;fill-opacity:1;fill-rule:evenodd;stroke:none"
|
||||
d="M 3143.5108 987.16797 C 3032.4109 987.16797 2943.9631 956.35856 2878.6231 894.76562 C 2813.2932 833.15968 2780.7276 747.5828 2780.7276 638.46191 C 2780.7276 532.86001 2812.1876 449.04821 2875.1075 387.44627 C 2938.0274 325.84934 3024.4875 295.04393 3134.4874 295.04393 C 3246.2473 295.04393 3334.2562 326.72078 3398.4962 390.30272 C 3462.7361 453.88466 3494.8536 540.56317 3494.8536 650.12206 C 3494.8536 751.53996 3463.6126 833.15968 3401.3526 894.76562 C 3339.0927 956.35856 3253.0707 987.16797 3143.5108 987.16797 z M 3139.7755 831.17675 C 3238.1154 831.17675 3287.3878 769.58486 3287.3878 646.16698 C 3287.3878 516.14811 3238.5537 451.02049 3141.0938 451.02049 C 3038.7939 451.02049 2987.5343 514.37975 2987.5343 641.09862 C 2987.5343 701.59856 3000.9485 748.45672 3027.5684 781.67968 C 3054.1884 814.67965 3091.5955 831.17675 3139.7755 831.17675 z " />
|
||||
<path
|
||||
d="m 2668.96,342.813 c -65.02,-31.454 -150.23,-47.172 -255.19,-47.172 -136.84,0 -244.57,40.156 -322.98,120.691 -78.62,80.531 -117.72,187.832 -117.72,321.91 0,142.789 43.99,258.594 132.17,347.408 88.18,88.82 202.71,133.23 343.37,133.23 87.12,0 160.64,-11.05 220.35,-33.15 V 992.16 c -59.71,35.7 -127.7,53.54 -204.2,53.54 -83.72,0 -151.5,-26.34 -202.92,-79.04 -51.42,-52.695 -77.13,-124.086 -77.13,-214.183 0,-86.266 24.22,-155.11 72.88,-206.321 48.45,-51.211 113.89,-76.922 196.12,-76.922 78.41,0 150.23,19.125 215.25,57.371 V 342.813"
|
||||
style="fill:#fcfcfc;fill-opacity:1;fill-rule:evenodd;stroke:none"
|
||||
id="path20" />
|
||||
<path
|
||||
d="m 1858.26,295.031 h -554.39 v 924.219 h 533.06 V 1049.84 H 1512.2 V 844.145 h 302.28 V 675.406 H 1512.2 V 463.988 h 346.06 V 295.031"
|
||||
style="fill:#fcfcfc;fill-opacity:1;fill-rule:evenodd;stroke:none"
|
||||
id="path22" />
|
||||
<path
|
||||
d="m 11.6836,299.352 c 230.5704,0 460.3004,0.039 690.8634,0.039 188,0 267.855,30.347 349.443,109.476 54.51,52.856 117.48,143.93 116.87,279.5 -1.5,330.713 -302.063,293.512 -296.794,482.613 1.188,42.78 27.766,83.72 65.325,104.59 35.668,19.81 71.559,29.56 130.279,29.7 240.11,0.59 -0.79,0 249.05,0.39 l 3266.92,-0.01 164.77,283.55 -3564.89,0.01 c -159.99,-3.87 -330.481,8.72 -459.411,-110.26 C 620.879,1383.7 585.367,1274.19 584.953,1175.16 584.516,1070.15 617.059,998.914 654.758,944.598 744.289,815.594 890.207,790.176 888.977,692.965 887.652,588.605 787.496,576.238 622.352,577.051 472.859,577.789 322.902,576.555 173.379,577.09 L 11.6836,299.352"
|
||||
style="fill:#fcfcfc;fill-opacity:1;fill-rule:evenodd;stroke:none"
|
||||
id="path24" />
|
||||
<path
|
||||
d="m 11.6836,299.352 c 230.5704,0 460.3004,0.039 690.8634,0.039 188,0 267.855,30.347 349.443,109.476 54.51,52.856 117.48,143.93 116.87,279.5 -1.5,330.713 -302.063,293.512 -296.794,482.613 1.188,42.78 27.766,83.72 65.325,104.59 35.668,19.81 71.559,29.56 130.279,29.7 240.11,0.59 -0.79,0 249.05,0.39 l 3266.92,-0.01 164.77,283.55 -3564.89,0.01 c -159.99,-3.87 -330.481,8.72 -459.411,-110.26 C 620.879,1383.7 585.367,1274.19 584.953,1175.16 584.516,1070.15 617.059,998.914 654.758,944.598 744.289,815.594 890.207,790.176 888.977,692.965 887.652,588.605 787.496,576.238 622.352,577.051 c -149.493,0.738 -299.45,-0.496 -448.973,0.039 z"
|
||||
style="fill:none;stroke:#231f20;stroke-width:4.9975;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:22.9256;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="path26" />
|
||||
<path
|
||||
d="m 12.3438,66.8281 v 36.3239 c 6.582,-5.5348 13.7421,-9.6793 21.4492,-12.4293 7.707,-2.75 15.4883,-4.1407 23.3515,-4.1407 4.6485,0 8.6758,0.4258 12.0821,1.2383 3.4492,0.8516 6.3125,1.9727 8.6367,3.4844 2.3242,1.4687 4.0273,3.2148 5.1484,5.1914 1.1641,2.0117 1.7031,4.1799 1.7031,6.5389 0,3.18 -0.8906,6.004 -2.707,8.485 -1.8203,2.515 -4.3008,4.839 -7.4375,6.933 -3.1367,2.129 -6.8515,4.18 -11.1914,6.117 -4.2969,1.973 -8.9453,3.989 -13.9414,6.039 -12.6992,5.266 -22.1875,11.731 -28.4219,19.399 -6.2343,7.629 -9.3359,16.847 -9.3359,27.652 0,8.481 1.668,15.758 5.0742,21.84 3.4102,6.117 8.0586,11.113 13.9024,15.063 5.8867,3.914 12.664,6.816 20.371,8.675 7.7071,1.86 15.875,2.789 24.5118,2.789 8.4804,0 15.9922,-0.543 22.5351,-1.55 6.5078,-1.008 12.5468,-2.594 18.0858,-4.723 v -33.922 c -2.75,1.895 -5.691,3.559 -8.906,4.992 -3.215,1.434 -6.543,2.633 -9.9532,3.602 -3.3672,0.929 -6.7774,1.625 -10.1445,2.09 -3.3711,0.425 -6.543,0.66 -9.5665,0.66 -4.1796,0 -7.9375,-0.387 -11.3437,-1.16 -3.4063,-0.813 -6.2734,-1.938 -8.6367,-3.371 -2.3242,-1.43 -4.1406,-3.137 -5.461,-5.149 -1.2773,-2.016 -1.8945,-4.262 -1.8945,-6.738 0,-2.75 0.6953,-5.188 2.1289,-7.32 1.4336,-2.168 3.4844,-4.219 6.1563,-6.157 2.6328,-1.898 5.8476,-3.797 9.6445,-5.652 3.7539,-1.859 8.0508,-3.758 12.8164,-5.731 6.5039,-2.714 12.3125,-5.617 17.5,-8.675 5.191,-3.063 9.645,-6.543 13.324,-10.379 3.715,-3.875 6.543,-8.285 8.52,-13.246 1.972,-4.914 2.941,-10.684 2.941,-17.266 0,-9.1054 -1.703,-16.6914 -5.148,-22.8867 -3.446,-6.1601 -8.098,-11.1523 -14.02,-14.9492 -5.8865,-3.8359 -12.7381,-6.5859 -20.5623,-8.25 -7.8594,-1.6641 -16.1094,-2.4766 -24.8203,-2.4766 -8.9063,0 -17.3867,0.7344 -25.4453,2.2461 -8.0508,1.5117 -15.0625,3.7969 -20.9453,6.8125"
|
||||
style="fill:#fcfcfc;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
id="path28" />
|
||||
<path
|
||||
d="M 944.004,60.5977 H 846.418 V 223.277 h 93.828 v -29.82 H 883.09 v -36.203 h 53.207 V 127.551 H 883.09 V 90.3359 h 60.914 V 60.5977"
|
||||
style="fill:#fcfcfc;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
id="path30" />
|
||||
<path
|
||||
d="m 2329.75,66.3633 c -11.85,-5.7266 -27.38,-8.5938 -46.51,-8.5938 -24.94,0 -44.57,7.3203 -58.86,21.9961 -14.33,14.6758 -21.45,34.2344 -21.45,58.6684 0,26.019 8.01,47.125 24.09,63.312 16.06,16.188 36.94,24.281 62.57,24.281 15.88,0 29.27,-2.015 40.16,-6.043 v -35.277 c -10.89,6.508 -23.27,9.758 -37.21,9.758 -15.26,0 -27.61,-4.801 -36.99,-14.406 -9.37,-9.602 -14.05,-22.614 -14.05,-39.032 0,-15.722 4.41,-28.269 13.28,-37.601 8.83,-9.3322 20.76,-14.0197 35.74,-14.0197 14.29,0 27.38,3.4843 39.23,10.457 v -33.5"
|
||||
style="fill:#fcfcfc;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
id="path32" />
|
||||
<path
|
||||
d="m 2409.95,57.7695 c -19.36,0 -34.59,5.4219 -45.66,16.2618 -11.08,10.8437 -16.61,25.5976 -16.61,44.1877 0,19.203 5.73,34.269 17.23,45.113 11.5,10.844 27.07,16.262 46.62,16.262 19.29,0 34.43,-5.418 45.39,-16.262 10.96,-10.844 16.46,-25.211 16.46,-43.062 0,-19.286 -5.66,-34.5434 -16.96,-45.7348 -11.31,-11.1875 -26.8,-16.7657 -46.47,-16.7657 z m 0.93,94.3715 c -8.49,0 -15.07,-2.907 -19.75,-8.715 -4.69,-5.848 -7.05,-14.094 -7.05,-24.742 0,-22.3051 9.02,-33.4613 27.03,-33.4613 17.15,0 25.75,11.4648 25.75,34.3513 0,21.723 -8.67,32.567 -25.98,32.567"
|
||||
style="fill:#fcfcfc;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
id="path34" />
|
||||
<path
|
||||
d="M 3948.18,116.629 V 60.5977 h -36.67 V 223.277 h 57.44 c 41,0 61.48,-17.273 61.48,-51.851 0,-16.344 -5.88,-29.551 -17.65,-39.656 -11.77,-10.067 -27.46,-15.141 -47.13,-15.141 z m 0,78.535 v -50.73 h 14.41 c 19.52,0 29.28,8.558 29.28,25.636 0,16.727 -9.76,25.094 -29.28,25.094 h -14.41"
|
||||
style="fill:#fcfcfc;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
id="path36" />
|
||||
<path
|
||||
d="m 233.457,60.5977 h -18.629 v 18.1601 h -0.426 C 206.313,64.8164 194.383,57.8867 178.66,57.8867 c -11.578,0 -20.64,3.0586 -27.183,9.1758 -6.543,6.1211 -9.797,14.2539 -9.797,24.3984 0,21.6841 12.781,34.3481 38.336,37.8711 l 34.812,4.879 c 0,19.75 -7.976,29.625 -23.93,29.625 -13.98,0 -26.601,-4.766 -37.871,-14.293 v 19.055 c 11.422,7.281 24.551,10.879 39.461,10.879 27.297,0 40.969,-14.442 40.969,-43.329 z m -18.629,58.7813 -27.996,-3.871 c -8.637,-1.199 -15.141,-3.332 -19.516,-6.43 -4.378,-3.058 -6.582,-8.48 -6.582,-16.2616 0,-5.6562 2.012,-10.3008 6.075,-13.9023 4.031,-3.6016 9.414,-5.3828 16.152,-5.3828 9.215,0 16.844,3.25 22.844,9.6796 6.043,6.4649 9.023,14.6797 9.023,24.5901 v 11.578"
|
||||
style="fill:#fcfcfc;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
id="path38" />
|
||||
<path
|
||||
d="m 433.465,60.5977 h -18.586 v 66.7183 c 0,12.856 -2.016,22.153 -5.965,27.883 -3.988,5.77 -10.648,8.637 -20.019,8.637 -7.938,0 -14.715,-3.641 -20.25,-10.883 -5.582,-7.281 -8.368,-15.953 -8.368,-26.101 V 60.5977 h -18.586 v 68.9653 c 0,22.847 -8.832,34.273 -26.449,34.273 -8.172,0 -14.871,-3.41 -20.176,-10.262 -5.304,-6.855 -7.937,-15.761 -7.937,-26.722 V 60.5977 H 268.5 V 176.77 h 18.629 v -18.395 h 0.465 c 8.207,14.098 20.25,21.102 36.051,21.102 7.937,0 14.867,-2.204 20.757,-6.622 5.922,-4.414 9.95,-10.218 12.157,-17.421 8.597,16.027 21.457,24.043 38.57,24.043 25.559,0 38.336,-15.758 38.336,-47.282 V 60.5977"
|
||||
style="fill:#fcfcfc;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
id="path40" />
|
||||
<path
|
||||
d="m 487.719,77.4023 h -0.465 V 7.15625 H 468.625 V 176.77 h 18.629 v -20.407 h 0.465 c 9.136,15.41 22.539,23.114 40.156,23.114 14.949,0 26.641,-5.184 35.047,-15.602 8.402,-10.379 12.586,-24.32 12.586,-41.785 0,-19.438 -4.727,-35.008 -14.176,-46.6994 -9.449,-11.6562 -22.379,-17.5039 -38.801,-17.5039 -15.062,0 -26.64,6.5039 -34.812,19.5156 z m -0.465,46.8557 v -16.223 c 0,-9.6053 3.098,-17.7772 9.371,-24.4764 6.234,-6.6953 14.133,-10.0273 23.738,-10.0273 11.27,0 20.098,4.2968 26.485,12.9335 6.394,8.6329 9.605,20.6012 9.605,35.9762 0,12.93 -2.984,23.039 -8.984,30.399 -5.965,7.316 -14.055,10.996 -24.242,10.996 -10.84,0 -19.516,-3.758 -26.098,-11.27 -6.586,-7.55 -9.875,-16.961 -9.875,-28.308"
|
||||
style="fill:#fcfcfc;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
id="path42" />
|
||||
<path
|
||||
d="M 623.832,60.5977 H 605.207 V 232.57 h 18.625 V 60.5977"
|
||||
style="fill:#fcfcfc;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
id="path44" />
|
||||
<path
|
||||
d="m 754.836,114.035 h -82.02 c 0.309,-12.933 3.797,-22.9256 10.457,-29.9725 6.661,-7.0078 15.797,-10.5312 27.454,-10.5312 13.089,0 25.093,4.2968 36.093,12.9335 L 746.82,69 c -10.222,-7.4336 -23.738,-11.1133 -40.507,-11.1133 -16.418,0 -29.313,5.2656 -38.684,15.7969 -9.41,10.5742 -14.094,25.4062 -14.094,44.5354 0,18.082 5.149,32.797 15.371,44.183 10.262,11.383 23.004,17.075 38.184,17.075 15.219,0 26.949,-4.918 35.277,-14.754 8.324,-9.797 12.469,-23.465 12.469,-40.93 z m -19.051,15.762 c -0.082,10.726 -2.676,19.09 -7.746,25.094 -5.113,5.961 -12.199,8.945 -21.301,8.945 -8.75,0 -16.222,-3.137 -22.34,-9.41 -6.121,-6.274 -9.918,-14.485 -11.347,-24.629 h 62.734"
|
||||
style="fill:#fcfcfc;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
id="path46" />
|
||||
<path
|
||||
d="m 1066.76,60.5977 h -18.63 v 66.2543 c 0,24.668 -8.98,36.984 -26.99,36.984 -9.29,0 -17,-3.484 -23.077,-10.496 -6.118,-7.008 -9.141,-15.836 -9.141,-26.488 V 60.5977 H 970.297 V 176.77 h 18.625 v -19.286 h 0.465 c 8.754,14.676 21.453,21.993 38.103,21.993 12.7,0 22.42,-4.102 29.16,-12.313 6.74,-8.168 10.11,-20.059 10.11,-35.547 V 60.5977"
|
||||
style="fill:#fcfcfc;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
id="path48" />
|
||||
<path
|
||||
d="M 1193.16,176.77 1146.84,60.5977 H 1128.6 L 1084.57,176.77 h 20.41 l 29.51,-84.4184 c 2.21,-6.1993 3.56,-11.5821 4.1,-16.2266 h 0.43 c 0.77,5.8477 1.97,11.1133 3.64,15.8008 l 30.86,84.8442 h 19.64"
|
||||
style="fill:#fcfcfc;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
id="path50" />
|
||||
<path
|
||||
d="m 1222.63,206.277 c -3.29,0 -6.16,1.121 -8.49,3.407 -2.36,2.246 -3.52,5.113 -3.52,8.597 0,3.485 1.16,6.391 3.52,8.676 2.33,2.32 5.2,3.484 8.49,3.484 3.4,0 6.31,-1.164 8.71,-3.484 2.36,-2.285 3.56,-5.191 3.56,-8.676 0,-3.328 -1.2,-6.16 -3.56,-8.48 -2.4,-2.36 -5.31,-3.524 -8.71,-3.524 z m 9.09,-145.6793 H 1213.1 V 176.77 h 18.62 V 60.5977"
|
||||
style="fill:#fcfcfc;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
id="path52" />
|
||||
<path
|
||||
d="m 1329.97,157.949 c -3.26,2.477 -7.94,3.715 -14.06,3.715 -7.98,0 -14.6,-3.715 -19.95,-11.226 -5.3,-7.477 -7.97,-17.7 -7.97,-30.633 V 60.5977 h -18.63 V 176.77 h 18.63 v -23.93 h 0.46 c 2.64,8.168 6.67,14.519 12.12,19.125 5.47,4.57 11.54,6.855 18.28,6.855 4.85,0 8.52,-0.539 11.12,-1.586 v -19.285"
|
||||
style="fill:#fcfcfc;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
id="path54" />
|
||||
<path
|
||||
d="m 1398.7,57.8867 c -17.15,0 -30.86,5.418 -41.12,16.2617 -10.22,10.8438 -15.38,25.25 -15.38,43.1756 0,19.52 5.35,34.739 16,45.735 10.68,10.961 25.09,16.418 43.25,16.418 17.31,0 30.83,-5.301 40.55,-15.993 9.71,-10.644 14.56,-25.441 14.56,-44.339 0,-18.547 -5.23,-33.3755 -15.68,-44.5317 -10.5,-11.1524 -24.56,-16.7266 -42.18,-16.7266 z m 1.36,105.9493 c -11.93,0 -21.38,-4.066 -28.35,-12.199 -6.97,-8.133 -10.45,-19.324 -10.45,-33.649 0,-13.75 3.52,-24.5935 10.57,-32.531 7.05,-7.9375 16.46,-11.9257 28.23,-11.9257 12.04,0 21.3,3.9101 27.76,11.6914 6.47,7.7851 9.68,18.8593 9.68,33.2303 0,14.516 -3.21,25.707 -9.68,33.57 -6.46,7.899 -15.72,11.813 -27.76,11.813"
|
||||
style="fill:#fcfcfc;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
id="path56" />
|
||||
<path
|
||||
d="m 1582.76,60.5977 h -18.63 v 66.2543 c 0,24.668 -8.98,36.984 -26.99,36.984 -9.29,0 -17,-3.484 -23.08,-10.496 -6.11,-7.008 -9.14,-15.836 -9.14,-26.488 V 60.5977 H 1486.3 V 176.77 h 18.62 v -19.286 h 0.47 c 8.75,14.676 21.45,21.993 38.1,21.993 12.7,0 22.42,-4.102 29.16,-12.313 6.74,-8.168 10.11,-20.059 10.11,-35.547 V 60.5977"
|
||||
style="fill:#fcfcfc;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
id="path58" />
|
||||
<path
|
||||
d="m 1782.77,60.5977 h -18.59 v 66.7183 c 0,12.856 -2.01,22.153 -5.96,27.883 -3.99,5.77 -10.65,8.637 -20.02,8.637 -7.94,0 -14.72,-3.641 -20.25,-10.883 -5.58,-7.281 -8.37,-15.953 -8.37,-26.101 V 60.5977 h -18.59 v 68.9653 c 0,22.847 -8.83,34.273 -26.45,34.273 -8.16,0 -14.87,-3.41 -20.17,-10.262 -5.31,-6.855 -7.94,-15.761 -7.94,-26.722 V 60.5977 H 1617.8 V 176.77 h 18.63 v -18.395 h 0.46 c 8.22,14.098 20.26,21.102 36.06,21.102 7.94,0 14.87,-2.204 20.75,-6.622 5.93,-4.414 9.96,-10.218 12.16,-17.421 8.6,16.027 21.46,24.043 38.57,24.043 25.56,0 38.34,-15.758 38.34,-47.282 V 60.5977"
|
||||
style="fill:#fcfcfc;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
id="path60" />
|
||||
<path
|
||||
d="m 1911.29,114.035 h -82.01 c 0.31,-12.933 3.79,-22.9256 10.45,-29.9725 6.66,-7.0078 15.8,-10.5312 27.46,-10.5312 13.08,0 25.09,4.2968 36.09,12.9335 V 69 c -10.23,-7.4336 -23.74,-11.1133 -40.51,-11.1133 -16.42,0 -29.31,5.2656 -38.68,15.7969 -9.41,10.5742 -14.1,25.4062 -14.1,44.5354 0,18.082 5.15,32.797 15.37,44.183 10.27,11.383 23.01,17.075 38.19,17.075 15.22,0 26.95,-4.918 35.27,-14.754 8.33,-9.797 12.47,-23.465 12.47,-40.93 z m -19.05,15.762 c -0.08,10.726 -2.67,19.09 -7.74,25.094 -5.12,5.961 -12.2,8.945 -21.3,8.945 -8.75,0 -16.23,-3.137 -22.34,-9.41 -6.13,-6.274 -9.92,-14.485 -11.35,-24.629 h 62.73"
|
||||
style="fill:#fcfcfc;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
id="path62" />
|
||||
<path
|
||||
d="m 2035.91,60.5977 h -18.63 v 66.2543 c 0,24.668 -8.98,36.984 -26.99,36.984 -9.29,0 -17,-3.484 -23.08,-10.496 -6.12,-7.008 -9.14,-15.836 -9.14,-26.488 V 60.5977 h -18.62 V 176.77 h 18.62 v -19.286 h 0.47 c 8.75,14.676 21.45,21.993 38.1,21.993 12.7,0 22.42,-4.102 29.16,-12.313 6.74,-8.168 10.11,-20.059 10.11,-35.547 V 60.5977"
|
||||
style="fill:#fcfcfc;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
id="path64" />
|
||||
<path
|
||||
d="m 2124.86,61.7188 c -4.38,-2.4024 -10.18,-3.6016 -17.35,-3.6016 -20.37,0 -30.52,11.3476 -30.52,34.0391 v 68.7347 h -19.98 v 15.879 h 19.98 v 28.343 l 18.59,6.043 V 176.77 h 29.28 v -15.879 h -29.28 V 95.4102 c 0,-7.7852 1.32,-13.3204 3.99,-16.6524 2.63,-3.332 7.01,-4.9961 13.16,-4.9961 4.69,0 8.72,1.2813 12.13,3.875 V 61.7188"
|
||||
style="fill:#fcfcfc;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
id="path66" />
|
||||
<path
|
||||
d="m 2665.33,60.5977 h -18.58 v 66.7183 c 0,12.856 -2.02,22.153 -5.97,27.883 -3.99,5.77 -10.65,8.637 -20.02,8.637 -7.94,0 -14.71,-3.641 -20.25,-10.883 -5.58,-7.281 -8.37,-15.953 -8.37,-26.101 V 60.5977 h -18.58 v 68.9653 c 0,22.847 -8.83,34.273 -26.45,34.273 -8.17,0 -14.87,-3.41 -20.18,-10.262 -5.3,-6.855 -7.94,-15.761 -7.94,-26.722 V 60.5977 h -18.62 V 176.77 h 18.62 v -18.395 h 0.47 c 8.21,14.098 20.25,21.102 36.05,21.102 7.94,0 14.87,-2.204 20.76,-6.622 5.92,-4.414 9.95,-10.218 12.16,-17.421 8.59,16.027 21.45,24.043 38.57,24.043 25.55,0 38.33,-15.758 38.33,-47.282 V 60.5977"
|
||||
style="fill:#fcfcfc;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
id="path68" />
|
||||
<path
|
||||
d="m 2865.46,60.5977 h -18.59 v 66.7183 c 0,12.856 -2.01,22.153 -5.96,27.883 -3.99,5.77 -10.65,8.637 -20.02,8.637 -7.94,0 -14.72,-3.641 -20.25,-10.883 -5.58,-7.281 -8.37,-15.953 -8.37,-26.101 V 60.5977 h -18.59 v 68.9653 c 0,22.847 -8.82,34.273 -26.45,34.273 -8.16,0 -14.87,-3.41 -20.17,-10.262 -5.31,-6.855 -7.94,-15.761 -7.94,-26.722 V 60.5977 h -18.63 V 176.77 h 18.63 v -18.395 h 0.47 c 8.2,14.098 20.25,21.102 36.05,21.102 7.93,0 14.87,-2.204 20.75,-6.622 5.93,-4.414 9.96,-10.218 12.16,-17.421 8.6,16.027 21.46,24.043 38.57,24.043 25.56,0 38.34,-15.758 38.34,-47.282 V 60.5977"
|
||||
style="fill:#fcfcfc;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
id="path70" />
|
||||
<path
|
||||
d="m 2994.57,60.5977 h -18.59 v 18.3945 h -0.47 c -7.71,-14.0977 -19.67,-21.1055 -35.85,-21.1055 -27.7,0 -41.52,16.4571 -41.52,49.4493 v 69.434 h 18.47 v -66.493 c 0,-24.5075 9.41,-36.7457 28.16,-36.7457 9.05,0 16.53,3.332 22.42,10.0273 5.85,6.6992 8.79,15.4531 8.79,26.2964 v 66.915 h 18.59 V 60.5977"
|
||||
style="fill:#fcfcfc;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
id="path72" />
|
||||
<path
|
||||
d="m 3128.59,60.5977 h -18.63 v 66.2543 c 0,24.668 -8.98,36.984 -26.99,36.984 -9.29,0 -17,-3.484 -23.08,-10.496 -6.12,-7.008 -9.14,-15.836 -9.14,-26.488 V 60.5977 h -18.62 V 176.77 h 18.62 v -19.286 h 0.47 c 8.75,14.676 21.45,21.993 38.1,21.993 12.7,0 22.42,-4.102 29.16,-12.313 6.74,-8.168 10.11,-20.059 10.11,-35.547 V 60.5977"
|
||||
style="fill:#fcfcfc;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
id="path74" />
|
||||
<path
|
||||
d="m 3173.16,206.277 c -3.29,0 -6.16,1.121 -8.48,3.407 -2.36,2.246 -3.52,5.113 -3.52,8.597 0,3.485 1.16,6.391 3.52,8.676 2.32,2.32 5.19,3.484 8.48,3.484 3.41,0 6.32,-1.164 8.72,-3.484 2.36,-2.285 3.56,-5.191 3.56,-8.676 0,-3.328 -1.2,-6.16 -3.56,-8.48 -2.4,-2.36 -5.31,-3.524 -8.72,-3.524 z m 9.1,-145.6793 h -18.62 V 176.77 h 18.62 V 60.5977"
|
||||
style="fill:#fcfcfc;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
id="path76" />
|
||||
<path
|
||||
d="m 3299.09,65.9414 c -8.91,-5.3867 -19.52,-8.0547 -31.75,-8.0547 -16.58,0 -29.94,5.3828 -40.12,16.1446 -10.15,10.7656 -15.26,24.746 -15.26,41.9417 0,19.129 5.5,34.5 16.46,46.117 10.96,11.582 25.6,17.387 43.91,17.387 10.22,0 19.21,-1.856 26.99,-5.653 v -19.051 c -8.63,6.043 -17.85,9.063 -27.69,9.063 -11.84,0 -21.6,-4.258 -29.19,-12.781 -7.59,-8.481 -11.42,-19.672 -11.42,-33.496 0,-13.629 3.59,-24.3559 10.72,-32.2192 7.16,-7.8593 16.73,-11.8085 28.77,-11.8085 10.15,0 19.67,3.3671 28.58,10.1054 V 65.9414"
|
||||
style="fill:#fcfcfc;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
id="path78" />
|
||||
<path
|
||||
d="m 3410.39,60.5977 h -18.63 v 18.1601 h -0.43 c -8.09,-13.9414 -20.02,-20.8711 -35.74,-20.8711 -11.58,0 -20.64,3.0586 -27.18,9.1758 -6.55,6.1211 -9.8,14.2539 -9.8,24.3984 0,21.6841 12.78,34.3481 38.34,37.8711 l 34.81,4.879 c 0,19.75 -7.98,29.625 -23.93,29.625 -13.98,0 -26.6,-4.766 -37.88,-14.293 v 19.055 c 11.43,7.281 24.55,10.879 39.46,10.879 27.3,0 40.98,-14.442 40.98,-43.329 z m -18.63,58.7813 -28,-3.871 c -8.63,-1.199 -15.14,-3.332 -19.51,-6.43 -4.38,-3.058 -6.59,-8.48 -6.59,-16.2616 0,-5.6562 2.02,-10.3008 6.08,-13.9023 4.03,-3.6016 9.41,-5.3828 16.15,-5.3828 9.22,0 16.84,3.25 22.84,9.6796 6.05,6.4649 9.03,14.6797 9.03,24.5901 v 11.578"
|
||||
style="fill:#fcfcfc;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
id="path80" />
|
||||
<path
|
||||
d="m 3499.33,61.7188 c -4.37,-2.4024 -10.18,-3.6016 -17.35,-3.6016 -20.36,0 -30.51,11.3476 -30.51,34.0391 v 68.7347 h -19.98 v 15.879 h 19.98 v 28.343 l 18.59,6.043 V 176.77 h 29.27 v -15.879 h -29.27 V 95.4102 c 0,-7.7852 1.32,-13.3204 3.99,-16.6524 2.63,-3.332 7,-4.9961 13.16,-4.9961 4.69,0 8.72,1.2813 12.12,3.875 V 61.7188"
|
||||
style="fill:#fcfcfc;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
id="path82" />
|
||||
<path
|
||||
d="m 3533.68,206.277 c -3.29,0 -6.15,1.121 -8.48,3.407 -2.36,2.246 -3.52,5.113 -3.52,8.597 0,3.485 1.16,6.391 3.52,8.676 2.33,2.32 5.19,3.484 8.48,3.484 3.41,0 6.32,-1.164 8.72,-3.484 2.36,-2.285 3.56,-5.191 3.56,-8.676 0,-3.328 -1.2,-6.16 -3.56,-8.48 -2.4,-2.36 -5.31,-3.524 -8.72,-3.524 z m 9.1,-145.6793 h -18.62 V 176.77 h 18.62 V 60.5977"
|
||||
style="fill:#fcfcfc;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
id="path84" />
|
||||
<path
|
||||
d="m 3628.98,57.8867 c -17.15,0 -30.86,5.418 -41.12,16.2617 -10.22,10.8438 -15.38,25.25 -15.38,43.1756 0,19.52 5.35,34.739 16,45.735 10.68,10.961 25.09,16.418 43.25,16.418 17.31,0 30.82,-5.301 40.54,-15.993 9.73,-10.644 14.57,-25.441 14.57,-44.339 0,-18.547 -5.23,-33.3755 -15.69,-44.5317 -10.49,-11.1524 -24.55,-16.7266 -42.17,-16.7266 z m 1.36,105.9493 c -11.93,0 -21.38,-4.066 -28.35,-12.199 -6.97,-8.133 -10.45,-19.324 -10.45,-33.649 0,-13.75 3.52,-24.5935 10.57,-32.531 7.05,-7.9375 16.45,-11.9257 28.23,-11.9257 12.04,0 21.3,3.9101 27.76,11.6914 6.47,7.7851 9.68,18.8593 9.68,33.2303 0,14.516 -3.21,25.707 -9.68,33.57 -6.46,7.899 -15.72,11.813 -27.76,11.813"
|
||||
style="fill:#fcfcfc;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
id="path86" />
|
||||
<path
|
||||
d="m 3813.04,60.5977 h -18.63 v 66.2543 c 0,24.668 -8.98,36.984 -26.99,36.984 -9.29,0 -17,-3.484 -23.08,-10.496 -6.12,-7.008 -9.14,-15.836 -9.14,-26.488 V 60.5977 h -18.63 V 176.77 h 18.63 v -19.286 h 0.47 c 8.75,14.676 21.45,21.993 38.1,21.993 12.7,0 22.42,-4.102 29.16,-12.313 6.74,-8.168 10.11,-20.059 10.11,-35.547 V 60.5977"
|
||||
style="fill:#fcfcfc;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
id="path88" />
|
||||
<path
|
||||
d="m 4115.09,157.949 c -3.26,2.477 -7.94,3.715 -14.06,3.715 -7.98,0 -14.6,-3.715 -19.94,-11.226 -5.31,-7.477 -7.98,-17.7 -7.98,-30.633 V 60.5977 h -18.63 V 176.77 h 18.63 v -23.93 h 0.46 c 2.64,8.168 6.66,14.519 12.13,19.125 5.45,4.57 11.53,6.855 18.27,6.855 4.84,0 8.52,-0.539 11.12,-1.586 v -19.285"
|
||||
style="fill:#fcfcfc;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
id="path90" />
|
||||
<path
|
||||
d="m 4183.82,57.8867 c -17.16,0 -30.86,5.418 -41.12,16.2617 -10.23,10.8438 -15.38,25.25 -15.38,43.1756 0,19.52 5.35,34.739 16,45.735 10.68,10.961 25.09,16.418 43.25,16.418 17.31,0 30.82,-5.301 40.54,-15.993 9.73,-10.644 14.57,-25.441 14.57,-44.339 0,-18.547 -5.23,-33.3755 -15.69,-44.5317 -10.49,-11.1524 -24.55,-16.7266 -42.17,-16.7266 z m 1.36,105.9493 c -11.93,0 -21.38,-4.066 -28.35,-12.199 -6.97,-8.133 -10.45,-19.324 -10.45,-33.649 0,-13.75 3.52,-24.5935 10.57,-32.531 7.05,-7.9375 16.45,-11.9257 28.23,-11.9257 12.04,0 21.3,3.9101 27.76,11.6914 6.47,7.7851 9.68,18.8593 9.68,33.2303 0,14.516 -3.21,25.707 -9.68,33.57 -6.46,7.899 -15.72,11.813 -27.76,11.813"
|
||||
style="fill:#fcfcfc;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
id="path92" />
|
||||
<path
|
||||
d="m 4325.32,61.7188 c -4.37,-2.4024 -10.18,-3.6016 -17.35,-3.6016 -20.37,0 -30.51,11.3476 -30.51,34.0391 v 68.7347 h -19.99 v 15.879 h 19.99 v 28.343 l 18.58,6.043 V 176.77 h 29.28 v -15.879 h -29.28 V 95.4102 c 0,-7.7852 1.32,-13.3204 3.99,-16.6524 2.64,-3.332 7.01,-4.9961 13.17,-4.9961 4.68,0 8.71,1.2813 12.12,3.875 V 61.7188"
|
||||
style="fill:#fcfcfc;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
id="path94" />
|
||||
<path
|
||||
d="m 4398.7,57.8867 c -17.15,0 -30.86,5.418 -41.12,16.2617 -10.22,10.8438 -15.38,25.25 -15.38,43.1756 0,19.52 5.35,34.739 16,45.735 10.68,10.961 25.09,16.418 43.25,16.418 17.31,0 30.82,-5.301 40.55,-15.993 9.71,-10.644 14.55,-25.441 14.55,-44.339 0,-18.547 -5.22,-33.3755 -15.68,-44.5317 -10.49,-11.1524 -24.55,-16.7266 -42.17,-16.7266 z m 1.35,105.9493 c -11.92,0 -21.37,-4.066 -28.34,-12.199 -6.97,-8.133 -10.46,-19.324 -10.46,-33.649 0,-13.75 3.53,-24.5935 10.57,-32.531 7.06,-7.9375 16.47,-11.9257 28.23,-11.9257 12.05,0 21.31,3.9101 27.77,11.6914 6.47,7.7851 9.68,18.8593 9.68,33.2303 0,14.516 -3.21,25.707 -9.68,33.57 -6.46,7.899 -15.72,11.813 -27.77,11.813"
|
||||
style="fill:#fcfcfc;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
id="path96" />
|
||||
<path
|
||||
d="m 4565.49,65.9414 c -8.91,-5.3867 -19.52,-8.0547 -31.76,-8.0547 -16.57,0 -29.93,5.3828 -40.12,16.1446 -10.14,10.7656 -15.25,24.746 -15.25,41.9417 0,19.129 5.5,34.5 16.46,46.117 10.95,11.582 25.59,17.387 43.91,17.387 10.22,0 19.2,-1.856 26.99,-5.653 v -19.051 c -8.63,6.043 -17.85,9.063 -27.69,9.063 -11.85,0 -21.6,-4.258 -29.2,-12.781 -7.59,-8.481 -11.42,-19.672 -11.42,-33.496 0,-13.629 3.6,-24.3559 10.73,-32.2192 7.16,-7.8593 16.73,-11.8085 28.77,-11.8085 10.14,0 19.67,3.3671 28.58,10.1054 V 65.9414"
|
||||
style="fill:#fcfcfc;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
id="path98" />
|
||||
<path
|
||||
d="m 4642.16,57.8867 c -17.16,0 -30.86,5.418 -41.12,16.2617 -10.23,10.8438 -15.38,25.25 -15.38,43.1756 0,19.52 5.35,34.739 16,45.735 10.68,10.961 25.09,16.418 43.25,16.418 17.31,0 30.82,-5.301 40.54,-15.993 9.73,-10.644 14.57,-25.441 14.57,-44.339 0,-18.547 -5.23,-33.3755 -15.69,-44.5317 -10.49,-11.1524 -24.55,-16.7266 -42.17,-16.7266 z m 1.36,105.9493 c -11.93,0 -21.38,-4.066 -28.35,-12.199 -6.97,-8.133 -10.46,-19.324 -10.46,-33.649 0,-13.75 3.53,-24.5935 10.58,-32.531 7.05,-7.9375 16.45,-11.9257 28.23,-11.9257 12.04,0 21.3,3.9101 27.76,11.6914 6.47,7.7851 9.68,18.8593 9.68,33.2303 0,14.516 -3.21,25.707 -9.68,33.57 -6.46,7.899 -15.72,11.813 -27.76,11.813"
|
||||
style="fill:#fcfcfc;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
id="path100" />
|
||||
<path
|
||||
d="m 4748.38,60.5977 h -18.63 V 232.57 h 18.63 V 60.5977"
|
||||
style="fill:#fcfcfc;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
id="path102" />
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 28 KiB |
223
resources/SECoP_subtitle.svg
Normal file
223
resources/SECoP_subtitle.svg
Normal file
@ -0,0 +1,223 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
|
||||
<svg
|
||||
version="1.1"
|
||||
id="svg2"
|
||||
width="634.66669"
|
||||
height="213.33333"
|
||||
viewBox="0 0 634.66669 213.33333"
|
||||
sodipodi:docname="SECoP_subtitle.svg"
|
||||
inkscape:version="1.2.2 (b0a8486541, 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="defs6" />
|
||||
<sodipodi:namedview
|
||||
id="namedview4"
|
||||
pagecolor="#505050"
|
||||
bordercolor="#eeeeee"
|
||||
borderopacity="1"
|
||||
inkscape:showpageshadow="0"
|
||||
inkscape:pageopacity="0"
|
||||
inkscape:pagecheckerboard="0"
|
||||
inkscape:deskcolor="#505050"
|
||||
showgrid="false"
|
||||
inkscape:zoom="1.10625"
|
||||
inkscape:cx="317.28813"
|
||||
inkscape:cy="106.66666"
|
||||
inkscape:window-width="1920"
|
||||
inkscape:window-height="1171"
|
||||
inkscape:window-x="1920"
|
||||
inkscape:window-y="0"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:current-layer="g10" />
|
||||
<g
|
||||
id="g8"
|
||||
inkscape:groupmode="layer"
|
||||
inkscape:label="ink_ext_XXXXXX"
|
||||
transform="matrix(1.3333333,0,0,-1.3333333,0,213.33333)">
|
||||
<g
|
||||
id="g10"
|
||||
transform="scale(0.1)">
|
||||
<path
|
||||
id="path12"
|
||||
style="fill:#231f20;fill-opacity:1;fill-rule:evenodd;stroke:none"
|
||||
d="M 3636.9435 1219.2432 L 3636.9435 295.02928 L 3845.2882 295.02928 L 3845.2882 613.36913 L 3944.5167 613.36913 C 4056.2766 613.36913 4145.3663 642.18582 4212.2462 699.38476 C 4279.1261 756.8067 4312.5734 831.82318 4312.5734 924.66308 C 4312.5734 1121.1249 4196.1879 1219.2432 3963.2081 1219.2432 L 3636.9435 1219.2432 z M 3845.2882 1059.5313 L 3927.129 1059.5313 C 4038.0089 1059.5313 4093.4474 1012.0036 4093.4474 916.97265 C 4093.4474 819.94875 4038.0089 771.32324 3927.129 771.32324 L 3845.2882 771.32324 L 3845.2882 1059.5313 z " />
|
||||
<path
|
||||
id="path14"
|
||||
style="fill:#231f20;fill-opacity:1;fill-rule:evenodd;stroke:none"
|
||||
d="M 3143.5108 987.16797 C 3032.4109 987.16797 2943.9631 956.35856 2878.6231 894.76562 C 2813.2932 833.15968 2780.7276 747.5828 2780.7276 638.46191 C 2780.7276 532.86001 2812.1876 449.04821 2875.1075 387.44627 C 2938.0274 325.84934 3024.4875 295.04393 3134.4874 295.04393 C 3246.2473 295.04393 3334.2562 326.72078 3398.4962 390.30272 C 3462.7361 453.88466 3494.8536 540.56317 3494.8536 650.12206 C 3494.8536 751.53996 3463.6126 833.15968 3401.3526 894.76562 C 3339.0927 956.35856 3253.0707 987.16797 3143.5108 987.16797 z M 3139.7755 831.17675 C 3238.1154 831.17675 3287.3878 769.58486 3287.3878 646.16698 C 3287.3878 516.14811 3238.5537 451.02049 3141.0938 451.02049 C 3038.7939 451.02049 2987.5343 514.37975 2987.5343 641.09862 C 2987.5343 701.59856 3000.9485 748.45672 3027.5684 781.67968 C 3054.1884 814.67965 3091.5955 831.17675 3139.7755 831.17675 z " />
|
||||
<path
|
||||
d="m 2668.96,342.813 c -65.02,-31.454 -150.23,-47.172 -255.19,-47.172 -136.84,0 -244.57,40.156 -322.98,120.691 -78.62,80.531 -117.72,187.832 -117.72,321.91 0,142.789 43.99,258.594 132.17,347.408 88.18,88.82 202.71,133.23 343.37,133.23 87.12,0 160.64,-11.05 220.35,-33.15 V 992.16 c -59.71,35.7 -127.7,53.54 -204.2,53.54 -83.72,0 -151.5,-26.34 -202.92,-79.04 -51.42,-52.695 -77.13,-124.086 -77.13,-214.183 0,-86.266 24.22,-155.11 72.88,-206.321 48.45,-51.211 113.89,-76.922 196.12,-76.922 78.41,0 150.23,19.125 215.25,57.371 V 342.813"
|
||||
style="fill:#231f20;fill-opacity:1;fill-rule:evenodd;stroke:none"
|
||||
id="path20" />
|
||||
<path
|
||||
d="m 1858.26,295.031 h -554.39 v 924.219 h 533.06 V 1049.84 H 1512.2 V 844.145 h 302.28 V 675.406 H 1512.2 V 463.988 h 346.06 V 295.031"
|
||||
style="fill:#231f20;fill-opacity:1;fill-rule:evenodd;stroke:none"
|
||||
id="path22" />
|
||||
<path
|
||||
d="m 11.6836,299.352 c 230.5704,0 460.3004,0.039 690.8634,0.039 188,0 267.855,30.347 349.443,109.476 54.51,52.856 117.48,143.93 116.87,279.5 -1.5,330.713 -302.063,293.512 -296.794,482.613 1.188,42.78 27.766,83.72 65.325,104.59 35.668,19.81 71.559,29.56 130.279,29.7 240.11,0.59 -0.79,0 249.05,0.39 l 3266.92,-0.01 164.77,283.55 -3564.89,0.01 c -159.99,-3.87 -330.481,8.72 -459.411,-110.26 C 620.879,1383.7 585.367,1274.19 584.953,1175.16 584.516,1070.15 617.059,998.914 654.758,944.598 744.289,815.594 890.207,790.176 888.977,692.965 887.652,588.605 787.496,576.238 622.352,577.051 472.859,577.789 322.902,576.555 173.379,577.09 L 11.6836,299.352"
|
||||
style="fill:#231f20;fill-opacity:1;fill-rule:evenodd;stroke:none"
|
||||
id="path24" />
|
||||
<path
|
||||
d="m 11.6836,299.352 c 230.5704,0 460.3004,0.039 690.8634,0.039 188,0 267.855,30.347 349.443,109.476 54.51,52.856 117.48,143.93 116.87,279.5 -1.5,330.713 -302.063,293.512 -296.794,482.613 1.188,42.78 27.766,83.72 65.325,104.59 35.668,19.81 71.559,29.56 130.279,29.7 240.11,0.59 -0.79,0 249.05,0.39 l 3266.92,-0.01 164.77,283.55 -3564.89,0.01 c -159.99,-3.87 -330.481,8.72 -459.411,-110.26 C 620.879,1383.7 585.367,1274.19 584.953,1175.16 584.516,1070.15 617.059,998.914 654.758,944.598 744.289,815.594 890.207,790.176 888.977,692.965 887.652,588.605 787.496,576.238 622.352,577.051 c -149.493,0.738 -299.45,-0.496 -448.973,0.039 z"
|
||||
style="fill:none;stroke:#231f20;stroke-width:4.9975;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:22.9256;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="path26" />
|
||||
<path
|
||||
d="m 12.3438,66.8281 v 36.3239 c 6.582,-5.5348 13.7421,-9.6793 21.4492,-12.4293 7.707,-2.75 15.4883,-4.1407 23.3515,-4.1407 4.6485,0 8.6758,0.4258 12.0821,1.2383 3.4492,0.8516 6.3125,1.9727 8.6367,3.4844 2.3242,1.4687 4.0273,3.2148 5.1484,5.1914 1.1641,2.0117 1.7031,4.1799 1.7031,6.5389 0,3.18 -0.8906,6.004 -2.707,8.485 -1.8203,2.515 -4.3008,4.839 -7.4375,6.933 -3.1367,2.129 -6.8515,4.18 -11.1914,6.117 -4.2969,1.973 -8.9453,3.989 -13.9414,6.039 -12.6992,5.266 -22.1875,11.731 -28.4219,19.399 -6.2343,7.629 -9.3359,16.847 -9.3359,27.652 0,8.481 1.668,15.758 5.0742,21.84 3.4102,6.117 8.0586,11.113 13.9024,15.063 5.8867,3.914 12.664,6.816 20.371,8.675 7.7071,1.86 15.875,2.789 24.5118,2.789 8.4804,0 15.9922,-0.543 22.5351,-1.55 6.5078,-1.008 12.5468,-2.594 18.0858,-4.723 v -33.922 c -2.75,1.895 -5.691,3.559 -8.906,4.992 -3.215,1.434 -6.543,2.633 -9.9532,3.602 -3.3672,0.929 -6.7774,1.625 -10.1445,2.09 -3.3711,0.425 -6.543,0.66 -9.5665,0.66 -4.1796,0 -7.9375,-0.387 -11.3437,-1.16 -3.4063,-0.813 -6.2734,-1.938 -8.6367,-3.371 -2.3242,-1.43 -4.1406,-3.137 -5.461,-5.149 -1.2773,-2.016 -1.8945,-4.262 -1.8945,-6.738 0,-2.75 0.6953,-5.188 2.1289,-7.32 1.4336,-2.168 3.4844,-4.219 6.1563,-6.157 2.6328,-1.898 5.8476,-3.797 9.6445,-5.652 3.7539,-1.859 8.0508,-3.758 12.8164,-5.731 6.5039,-2.714 12.3125,-5.617 17.5,-8.675 5.191,-3.063 9.645,-6.543 13.324,-10.379 3.715,-3.875 6.543,-8.285 8.52,-13.246 1.972,-4.914 2.941,-10.684 2.941,-17.266 0,-9.1054 -1.703,-16.6914 -5.148,-22.8867 -3.446,-6.1601 -8.098,-11.1523 -14.02,-14.9492 -5.8865,-3.8359 -12.7381,-6.5859 -20.5623,-8.25 -7.8594,-1.6641 -16.1094,-2.4766 -24.8203,-2.4766 -8.9063,0 -17.3867,0.7344 -25.4453,2.2461 -8.0508,1.5117 -15.0625,3.7969 -20.9453,6.8125"
|
||||
style="fill:#231f20;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
id="path28" />
|
||||
<path
|
||||
d="M 944.004,60.5977 H 846.418 V 223.277 h 93.828 v -29.82 H 883.09 v -36.203 h 53.207 V 127.551 H 883.09 V 90.3359 h 60.914 V 60.5977"
|
||||
style="fill:#231f20;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
id="path30" />
|
||||
<path
|
||||
d="m 2329.75,66.3633 c -11.85,-5.7266 -27.38,-8.5938 -46.51,-8.5938 -24.94,0 -44.57,7.3203 -58.86,21.9961 -14.33,14.6758 -21.45,34.2344 -21.45,58.6684 0,26.019 8.01,47.125 24.09,63.312 16.06,16.188 36.94,24.281 62.57,24.281 15.88,0 29.27,-2.015 40.16,-6.043 v -35.277 c -10.89,6.508 -23.27,9.758 -37.21,9.758 -15.26,0 -27.61,-4.801 -36.99,-14.406 -9.37,-9.602 -14.05,-22.614 -14.05,-39.032 0,-15.722 4.41,-28.269 13.28,-37.601 8.83,-9.3322 20.76,-14.0197 35.74,-14.0197 14.29,0 27.38,3.4843 39.23,10.457 v -33.5"
|
||||
style="fill:#231f20;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
id="path32" />
|
||||
<path
|
||||
d="m 2409.95,57.7695 c -19.36,0 -34.59,5.4219 -45.66,16.2618 -11.08,10.8437 -16.61,25.5976 -16.61,44.1877 0,19.203 5.73,34.269 17.23,45.113 11.5,10.844 27.07,16.262 46.62,16.262 19.29,0 34.43,-5.418 45.39,-16.262 10.96,-10.844 16.46,-25.211 16.46,-43.062 0,-19.286 -5.66,-34.5434 -16.96,-45.7348 -11.31,-11.1875 -26.8,-16.7657 -46.47,-16.7657 z m 0.93,94.3715 c -8.49,0 -15.07,-2.907 -19.75,-8.715 -4.69,-5.848 -7.05,-14.094 -7.05,-24.742 0,-22.3051 9.02,-33.4613 27.03,-33.4613 17.15,0 25.75,11.4648 25.75,34.3513 0,21.723 -8.67,32.567 -25.98,32.567"
|
||||
style="fill:#231f20;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
id="path34" />
|
||||
<path
|
||||
d="M 3948.18,116.629 V 60.5977 h -36.67 V 223.277 h 57.44 c 41,0 61.48,-17.273 61.48,-51.851 0,-16.344 -5.88,-29.551 -17.65,-39.656 -11.77,-10.067 -27.46,-15.141 -47.13,-15.141 z m 0,78.535 v -50.73 h 14.41 c 19.52,0 29.28,8.558 29.28,25.636 0,16.727 -9.76,25.094 -29.28,25.094 h -14.41"
|
||||
style="fill:#231f20;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
id="path36" />
|
||||
<path
|
||||
d="m 233.457,60.5977 h -18.629 v 18.1601 h -0.426 C 206.313,64.8164 194.383,57.8867 178.66,57.8867 c -11.578,0 -20.64,3.0586 -27.183,9.1758 -6.543,6.1211 -9.797,14.2539 -9.797,24.3984 0,21.6841 12.781,34.3481 38.336,37.8711 l 34.812,4.879 c 0,19.75 -7.976,29.625 -23.93,29.625 -13.98,0 -26.601,-4.766 -37.871,-14.293 v 19.055 c 11.422,7.281 24.551,10.879 39.461,10.879 27.297,0 40.969,-14.442 40.969,-43.329 z m -18.629,58.7813 -27.996,-3.871 c -8.637,-1.199 -15.141,-3.332 -19.516,-6.43 -4.378,-3.058 -6.582,-8.48 -6.582,-16.2616 0,-5.6562 2.012,-10.3008 6.075,-13.9023 4.031,-3.6016 9.414,-5.3828 16.152,-5.3828 9.215,0 16.844,3.25 22.844,9.6796 6.043,6.4649 9.023,14.6797 9.023,24.5901 v 11.578"
|
||||
style="fill:#231f20;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
id="path38" />
|
||||
<path
|
||||
d="m 433.465,60.5977 h -18.586 v 66.7183 c 0,12.856 -2.016,22.153 -5.965,27.883 -3.988,5.77 -10.648,8.637 -20.019,8.637 -7.938,0 -14.715,-3.641 -20.25,-10.883 -5.582,-7.281 -8.368,-15.953 -8.368,-26.101 V 60.5977 h -18.586 v 68.9653 c 0,22.847 -8.832,34.273 -26.449,34.273 -8.172,0 -14.871,-3.41 -20.176,-10.262 -5.304,-6.855 -7.937,-15.761 -7.937,-26.722 V 60.5977 H 268.5 V 176.77 h 18.629 v -18.395 h 0.465 c 8.207,14.098 20.25,21.102 36.051,21.102 7.937,0 14.867,-2.204 20.757,-6.622 5.922,-4.414 9.95,-10.218 12.157,-17.421 8.597,16.027 21.457,24.043 38.57,24.043 25.559,0 38.336,-15.758 38.336,-47.282 V 60.5977"
|
||||
style="fill:#231f20;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
id="path40" />
|
||||
<path
|
||||
d="m 487.719,77.4023 h -0.465 V 7.15625 H 468.625 V 176.77 h 18.629 v -20.407 h 0.465 c 9.136,15.41 22.539,23.114 40.156,23.114 14.949,0 26.641,-5.184 35.047,-15.602 8.402,-10.379 12.586,-24.32 12.586,-41.785 0,-19.438 -4.727,-35.008 -14.176,-46.6994 -9.449,-11.6562 -22.379,-17.5039 -38.801,-17.5039 -15.062,0 -26.64,6.5039 -34.812,19.5156 z m -0.465,46.8557 v -16.223 c 0,-9.6053 3.098,-17.7772 9.371,-24.4764 6.234,-6.6953 14.133,-10.0273 23.738,-10.0273 11.27,0 20.098,4.2968 26.485,12.9335 6.394,8.6329 9.605,20.6012 9.605,35.9762 0,12.93 -2.984,23.039 -8.984,30.399 -5.965,7.316 -14.055,10.996 -24.242,10.996 -10.84,0 -19.516,-3.758 -26.098,-11.27 -6.586,-7.55 -9.875,-16.961 -9.875,-28.308"
|
||||
style="fill:#231f20;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
id="path42" />
|
||||
<path
|
||||
d="M 623.832,60.5977 H 605.207 V 232.57 h 18.625 V 60.5977"
|
||||
style="fill:#231f20;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
id="path44" />
|
||||
<path
|
||||
d="m 754.836,114.035 h -82.02 c 0.309,-12.933 3.797,-22.9256 10.457,-29.9725 6.661,-7.0078 15.797,-10.5312 27.454,-10.5312 13.089,0 25.093,4.2968 36.093,12.9335 L 746.82,69 c -10.222,-7.4336 -23.738,-11.1133 -40.507,-11.1133 -16.418,0 -29.313,5.2656 -38.684,15.7969 -9.41,10.5742 -14.094,25.4062 -14.094,44.5354 0,18.082 5.149,32.797 15.371,44.183 10.262,11.383 23.004,17.075 38.184,17.075 15.219,0 26.949,-4.918 35.277,-14.754 8.324,-9.797 12.469,-23.465 12.469,-40.93 z m -19.051,15.762 c -0.082,10.726 -2.676,19.09 -7.746,25.094 -5.113,5.961 -12.199,8.945 -21.301,8.945 -8.75,0 -16.222,-3.137 -22.34,-9.41 -6.121,-6.274 -9.918,-14.485 -11.347,-24.629 h 62.734"
|
||||
style="fill:#231f20;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
id="path46" />
|
||||
<path
|
||||
d="m 1066.76,60.5977 h -18.63 v 66.2543 c 0,24.668 -8.98,36.984 -26.99,36.984 -9.29,0 -17,-3.484 -23.077,-10.496 -6.118,-7.008 -9.141,-15.836 -9.141,-26.488 V 60.5977 H 970.297 V 176.77 h 18.625 v -19.286 h 0.465 c 8.754,14.676 21.453,21.993 38.103,21.993 12.7,0 22.42,-4.102 29.16,-12.313 6.74,-8.168 10.11,-20.059 10.11,-35.547 V 60.5977"
|
||||
style="fill:#231f20;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
id="path48" />
|
||||
<path
|
||||
d="M 1193.16,176.77 1146.84,60.5977 H 1128.6 L 1084.57,176.77 h 20.41 l 29.51,-84.4184 c 2.21,-6.1993 3.56,-11.5821 4.1,-16.2266 h 0.43 c 0.77,5.8477 1.97,11.1133 3.64,15.8008 l 30.86,84.8442 h 19.64"
|
||||
style="fill:#231f20;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
id="path50" />
|
||||
<path
|
||||
d="m 1222.63,206.277 c -3.29,0 -6.16,1.121 -8.49,3.407 -2.36,2.246 -3.52,5.113 -3.52,8.597 0,3.485 1.16,6.391 3.52,8.676 2.33,2.32 5.2,3.484 8.49,3.484 3.4,0 6.31,-1.164 8.71,-3.484 2.36,-2.285 3.56,-5.191 3.56,-8.676 0,-3.328 -1.2,-6.16 -3.56,-8.48 -2.4,-2.36 -5.31,-3.524 -8.71,-3.524 z m 9.09,-145.6793 H 1213.1 V 176.77 h 18.62 V 60.5977"
|
||||
style="fill:#231f20;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
id="path52" />
|
||||
<path
|
||||
d="m 1329.97,157.949 c -3.26,2.477 -7.94,3.715 -14.06,3.715 -7.98,0 -14.6,-3.715 -19.95,-11.226 -5.3,-7.477 -7.97,-17.7 -7.97,-30.633 V 60.5977 h -18.63 V 176.77 h 18.63 v -23.93 h 0.46 c 2.64,8.168 6.67,14.519 12.12,19.125 5.47,4.57 11.54,6.855 18.28,6.855 4.85,0 8.52,-0.539 11.12,-1.586 v -19.285"
|
||||
style="fill:#231f20;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
id="path54" />
|
||||
<path
|
||||
d="m 1398.7,57.8867 c -17.15,0 -30.86,5.418 -41.12,16.2617 -10.22,10.8438 -15.38,25.25 -15.38,43.1756 0,19.52 5.35,34.739 16,45.735 10.68,10.961 25.09,16.418 43.25,16.418 17.31,0 30.83,-5.301 40.55,-15.993 9.71,-10.644 14.56,-25.441 14.56,-44.339 0,-18.547 -5.23,-33.3755 -15.68,-44.5317 -10.5,-11.1524 -24.56,-16.7266 -42.18,-16.7266 z m 1.36,105.9493 c -11.93,0 -21.38,-4.066 -28.35,-12.199 -6.97,-8.133 -10.45,-19.324 -10.45,-33.649 0,-13.75 3.52,-24.5935 10.57,-32.531 7.05,-7.9375 16.46,-11.9257 28.23,-11.9257 12.04,0 21.3,3.9101 27.76,11.6914 6.47,7.7851 9.68,18.8593 9.68,33.2303 0,14.516 -3.21,25.707 -9.68,33.57 -6.46,7.899 -15.72,11.813 -27.76,11.813"
|
||||
style="fill:#231f20;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
id="path56" />
|
||||
<path
|
||||
d="m 1582.76,60.5977 h -18.63 v 66.2543 c 0,24.668 -8.98,36.984 -26.99,36.984 -9.29,0 -17,-3.484 -23.08,-10.496 -6.11,-7.008 -9.14,-15.836 -9.14,-26.488 V 60.5977 H 1486.3 V 176.77 h 18.62 v -19.286 h 0.47 c 8.75,14.676 21.45,21.993 38.1,21.993 12.7,0 22.42,-4.102 29.16,-12.313 6.74,-8.168 10.11,-20.059 10.11,-35.547 V 60.5977"
|
||||
style="fill:#231f20;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
id="path58" />
|
||||
<path
|
||||
d="m 1782.77,60.5977 h -18.59 v 66.7183 c 0,12.856 -2.01,22.153 -5.96,27.883 -3.99,5.77 -10.65,8.637 -20.02,8.637 -7.94,0 -14.72,-3.641 -20.25,-10.883 -5.58,-7.281 -8.37,-15.953 -8.37,-26.101 V 60.5977 h -18.59 v 68.9653 c 0,22.847 -8.83,34.273 -26.45,34.273 -8.16,0 -14.87,-3.41 -20.17,-10.262 -5.31,-6.855 -7.94,-15.761 -7.94,-26.722 V 60.5977 H 1617.8 V 176.77 h 18.63 v -18.395 h 0.46 c 8.22,14.098 20.26,21.102 36.06,21.102 7.94,0 14.87,-2.204 20.75,-6.622 5.93,-4.414 9.96,-10.218 12.16,-17.421 8.6,16.027 21.46,24.043 38.57,24.043 25.56,0 38.34,-15.758 38.34,-47.282 V 60.5977"
|
||||
style="fill:#231f20;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
id="path60" />
|
||||
<path
|
||||
d="m 1911.29,114.035 h -82.01 c 0.31,-12.933 3.79,-22.9256 10.45,-29.9725 6.66,-7.0078 15.8,-10.5312 27.46,-10.5312 13.08,0 25.09,4.2968 36.09,12.9335 V 69 c -10.23,-7.4336 -23.74,-11.1133 -40.51,-11.1133 -16.42,0 -29.31,5.2656 -38.68,15.7969 -9.41,10.5742 -14.1,25.4062 -14.1,44.5354 0,18.082 5.15,32.797 15.37,44.183 10.27,11.383 23.01,17.075 38.19,17.075 15.22,0 26.95,-4.918 35.27,-14.754 8.33,-9.797 12.47,-23.465 12.47,-40.93 z m -19.05,15.762 c -0.08,10.726 -2.67,19.09 -7.74,25.094 -5.12,5.961 -12.2,8.945 -21.3,8.945 -8.75,0 -16.23,-3.137 -22.34,-9.41 -6.13,-6.274 -9.92,-14.485 -11.35,-24.629 h 62.73"
|
||||
style="fill:#231f20;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
id="path62" />
|
||||
<path
|
||||
d="m 2035.91,60.5977 h -18.63 v 66.2543 c 0,24.668 -8.98,36.984 -26.99,36.984 -9.29,0 -17,-3.484 -23.08,-10.496 -6.12,-7.008 -9.14,-15.836 -9.14,-26.488 V 60.5977 h -18.62 V 176.77 h 18.62 v -19.286 h 0.47 c 8.75,14.676 21.45,21.993 38.1,21.993 12.7,0 22.42,-4.102 29.16,-12.313 6.74,-8.168 10.11,-20.059 10.11,-35.547 V 60.5977"
|
||||
style="fill:#231f20;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
id="path64" />
|
||||
<path
|
||||
d="m 2124.86,61.7188 c -4.38,-2.4024 -10.18,-3.6016 -17.35,-3.6016 -20.37,0 -30.52,11.3476 -30.52,34.0391 v 68.7347 h -19.98 v 15.879 h 19.98 v 28.343 l 18.59,6.043 V 176.77 h 29.28 v -15.879 h -29.28 V 95.4102 c 0,-7.7852 1.32,-13.3204 3.99,-16.6524 2.63,-3.332 7.01,-4.9961 13.16,-4.9961 4.69,0 8.72,1.2813 12.13,3.875 V 61.7188"
|
||||
style="fill:#231f20;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
id="path66" />
|
||||
<path
|
||||
d="m 2665.33,60.5977 h -18.58 v 66.7183 c 0,12.856 -2.02,22.153 -5.97,27.883 -3.99,5.77 -10.65,8.637 -20.02,8.637 -7.94,0 -14.71,-3.641 -20.25,-10.883 -5.58,-7.281 -8.37,-15.953 -8.37,-26.101 V 60.5977 h -18.58 v 68.9653 c 0,22.847 -8.83,34.273 -26.45,34.273 -8.17,0 -14.87,-3.41 -20.18,-10.262 -5.3,-6.855 -7.94,-15.761 -7.94,-26.722 V 60.5977 h -18.62 V 176.77 h 18.62 v -18.395 h 0.47 c 8.21,14.098 20.25,21.102 36.05,21.102 7.94,0 14.87,-2.204 20.76,-6.622 5.92,-4.414 9.95,-10.218 12.16,-17.421 8.59,16.027 21.45,24.043 38.57,24.043 25.55,0 38.33,-15.758 38.33,-47.282 V 60.5977"
|
||||
style="fill:#231f20;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
id="path68" />
|
||||
<path
|
||||
d="m 2865.46,60.5977 h -18.59 v 66.7183 c 0,12.856 -2.01,22.153 -5.96,27.883 -3.99,5.77 -10.65,8.637 -20.02,8.637 -7.94,0 -14.72,-3.641 -20.25,-10.883 -5.58,-7.281 -8.37,-15.953 -8.37,-26.101 V 60.5977 h -18.59 v 68.9653 c 0,22.847 -8.82,34.273 -26.45,34.273 -8.16,0 -14.87,-3.41 -20.17,-10.262 -5.31,-6.855 -7.94,-15.761 -7.94,-26.722 V 60.5977 h -18.63 V 176.77 h 18.63 v -18.395 h 0.47 c 8.2,14.098 20.25,21.102 36.05,21.102 7.93,0 14.87,-2.204 20.75,-6.622 5.93,-4.414 9.96,-10.218 12.16,-17.421 8.6,16.027 21.46,24.043 38.57,24.043 25.56,0 38.34,-15.758 38.34,-47.282 V 60.5977"
|
||||
style="fill:#231f20;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
id="path70" />
|
||||
<path
|
||||
d="m 2994.57,60.5977 h -18.59 v 18.3945 h -0.47 c -7.71,-14.0977 -19.67,-21.1055 -35.85,-21.1055 -27.7,0 -41.52,16.4571 -41.52,49.4493 v 69.434 h 18.47 v -66.493 c 0,-24.5075 9.41,-36.7457 28.16,-36.7457 9.05,0 16.53,3.332 22.42,10.0273 5.85,6.6992 8.79,15.4531 8.79,26.2964 v 66.915 h 18.59 V 60.5977"
|
||||
style="fill:#231f20;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
id="path72" />
|
||||
<path
|
||||
d="m 3128.59,60.5977 h -18.63 v 66.2543 c 0,24.668 -8.98,36.984 -26.99,36.984 -9.29,0 -17,-3.484 -23.08,-10.496 -6.12,-7.008 -9.14,-15.836 -9.14,-26.488 V 60.5977 h -18.62 V 176.77 h 18.62 v -19.286 h 0.47 c 8.75,14.676 21.45,21.993 38.1,21.993 12.7,0 22.42,-4.102 29.16,-12.313 6.74,-8.168 10.11,-20.059 10.11,-35.547 V 60.5977"
|
||||
style="fill:#231f20;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
id="path74" />
|
||||
<path
|
||||
d="m 3173.16,206.277 c -3.29,0 -6.16,1.121 -8.48,3.407 -2.36,2.246 -3.52,5.113 -3.52,8.597 0,3.485 1.16,6.391 3.52,8.676 2.32,2.32 5.19,3.484 8.48,3.484 3.41,0 6.32,-1.164 8.72,-3.484 2.36,-2.285 3.56,-5.191 3.56,-8.676 0,-3.328 -1.2,-6.16 -3.56,-8.48 -2.4,-2.36 -5.31,-3.524 -8.72,-3.524 z m 9.1,-145.6793 h -18.62 V 176.77 h 18.62 V 60.5977"
|
||||
style="fill:#231f20;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
id="path76" />
|
||||
<path
|
||||
d="m 3299.09,65.9414 c -8.91,-5.3867 -19.52,-8.0547 -31.75,-8.0547 -16.58,0 -29.94,5.3828 -40.12,16.1446 -10.15,10.7656 -15.26,24.746 -15.26,41.9417 0,19.129 5.5,34.5 16.46,46.117 10.96,11.582 25.6,17.387 43.91,17.387 10.22,0 19.21,-1.856 26.99,-5.653 v -19.051 c -8.63,6.043 -17.85,9.063 -27.69,9.063 -11.84,0 -21.6,-4.258 -29.19,-12.781 -7.59,-8.481 -11.42,-19.672 -11.42,-33.496 0,-13.629 3.59,-24.3559 10.72,-32.2192 7.16,-7.8593 16.73,-11.8085 28.77,-11.8085 10.15,0 19.67,3.3671 28.58,10.1054 V 65.9414"
|
||||
style="fill:#231f20;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
id="path78" />
|
||||
<path
|
||||
d="m 3410.39,60.5977 h -18.63 v 18.1601 h -0.43 c -8.09,-13.9414 -20.02,-20.8711 -35.74,-20.8711 -11.58,0 -20.64,3.0586 -27.18,9.1758 -6.55,6.1211 -9.8,14.2539 -9.8,24.3984 0,21.6841 12.78,34.3481 38.34,37.8711 l 34.81,4.879 c 0,19.75 -7.98,29.625 -23.93,29.625 -13.98,0 -26.6,-4.766 -37.88,-14.293 v 19.055 c 11.43,7.281 24.55,10.879 39.46,10.879 27.3,0 40.98,-14.442 40.98,-43.329 z m -18.63,58.7813 -28,-3.871 c -8.63,-1.199 -15.14,-3.332 -19.51,-6.43 -4.38,-3.058 -6.59,-8.48 -6.59,-16.2616 0,-5.6562 2.02,-10.3008 6.08,-13.9023 4.03,-3.6016 9.41,-5.3828 16.15,-5.3828 9.22,0 16.84,3.25 22.84,9.6796 6.05,6.4649 9.03,14.6797 9.03,24.5901 v 11.578"
|
||||
style="fill:#231f20;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
id="path80" />
|
||||
<path
|
||||
d="m 3499.33,61.7188 c -4.37,-2.4024 -10.18,-3.6016 -17.35,-3.6016 -20.36,0 -30.51,11.3476 -30.51,34.0391 v 68.7347 h -19.98 v 15.879 h 19.98 v 28.343 l 18.59,6.043 V 176.77 h 29.27 v -15.879 h -29.27 V 95.4102 c 0,-7.7852 1.32,-13.3204 3.99,-16.6524 2.63,-3.332 7,-4.9961 13.16,-4.9961 4.69,0 8.72,1.2813 12.12,3.875 V 61.7188"
|
||||
style="fill:#231f20;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
id="path82" />
|
||||
<path
|
||||
d="m 3533.68,206.277 c -3.29,0 -6.15,1.121 -8.48,3.407 -2.36,2.246 -3.52,5.113 -3.52,8.597 0,3.485 1.16,6.391 3.52,8.676 2.33,2.32 5.19,3.484 8.48,3.484 3.41,0 6.32,-1.164 8.72,-3.484 2.36,-2.285 3.56,-5.191 3.56,-8.676 0,-3.328 -1.2,-6.16 -3.56,-8.48 -2.4,-2.36 -5.31,-3.524 -8.72,-3.524 z m 9.1,-145.6793 h -18.62 V 176.77 h 18.62 V 60.5977"
|
||||
style="fill:#231f20;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
id="path84" />
|
||||
<path
|
||||
d="m 3628.98,57.8867 c -17.15,0 -30.86,5.418 -41.12,16.2617 -10.22,10.8438 -15.38,25.25 -15.38,43.1756 0,19.52 5.35,34.739 16,45.735 10.68,10.961 25.09,16.418 43.25,16.418 17.31,0 30.82,-5.301 40.54,-15.993 9.73,-10.644 14.57,-25.441 14.57,-44.339 0,-18.547 -5.23,-33.3755 -15.69,-44.5317 -10.49,-11.1524 -24.55,-16.7266 -42.17,-16.7266 z m 1.36,105.9493 c -11.93,0 -21.38,-4.066 -28.35,-12.199 -6.97,-8.133 -10.45,-19.324 -10.45,-33.649 0,-13.75 3.52,-24.5935 10.57,-32.531 7.05,-7.9375 16.45,-11.9257 28.23,-11.9257 12.04,0 21.3,3.9101 27.76,11.6914 6.47,7.7851 9.68,18.8593 9.68,33.2303 0,14.516 -3.21,25.707 -9.68,33.57 -6.46,7.899 -15.72,11.813 -27.76,11.813"
|
||||
style="fill:#231f20;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
id="path86" />
|
||||
<path
|
||||
d="m 3813.04,60.5977 h -18.63 v 66.2543 c 0,24.668 -8.98,36.984 -26.99,36.984 -9.29,0 -17,-3.484 -23.08,-10.496 -6.12,-7.008 -9.14,-15.836 -9.14,-26.488 V 60.5977 h -18.63 V 176.77 h 18.63 v -19.286 h 0.47 c 8.75,14.676 21.45,21.993 38.1,21.993 12.7,0 22.42,-4.102 29.16,-12.313 6.74,-8.168 10.11,-20.059 10.11,-35.547 V 60.5977"
|
||||
style="fill:#231f20;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
id="path88" />
|
||||
<path
|
||||
d="m 4115.09,157.949 c -3.26,2.477 -7.94,3.715 -14.06,3.715 -7.98,0 -14.6,-3.715 -19.94,-11.226 -5.31,-7.477 -7.98,-17.7 -7.98,-30.633 V 60.5977 h -18.63 V 176.77 h 18.63 v -23.93 h 0.46 c 2.64,8.168 6.66,14.519 12.13,19.125 5.45,4.57 11.53,6.855 18.27,6.855 4.84,0 8.52,-0.539 11.12,-1.586 v -19.285"
|
||||
style="fill:#231f20;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
id="path90" />
|
||||
<path
|
||||
d="m 4183.82,57.8867 c -17.16,0 -30.86,5.418 -41.12,16.2617 -10.23,10.8438 -15.38,25.25 -15.38,43.1756 0,19.52 5.35,34.739 16,45.735 10.68,10.961 25.09,16.418 43.25,16.418 17.31,0 30.82,-5.301 40.54,-15.993 9.73,-10.644 14.57,-25.441 14.57,-44.339 0,-18.547 -5.23,-33.3755 -15.69,-44.5317 -10.49,-11.1524 -24.55,-16.7266 -42.17,-16.7266 z m 1.36,105.9493 c -11.93,0 -21.38,-4.066 -28.35,-12.199 -6.97,-8.133 -10.45,-19.324 -10.45,-33.649 0,-13.75 3.52,-24.5935 10.57,-32.531 7.05,-7.9375 16.45,-11.9257 28.23,-11.9257 12.04,0 21.3,3.9101 27.76,11.6914 6.47,7.7851 9.68,18.8593 9.68,33.2303 0,14.516 -3.21,25.707 -9.68,33.57 -6.46,7.899 -15.72,11.813 -27.76,11.813"
|
||||
style="fill:#231f20;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
id="path92" />
|
||||
<path
|
||||
d="m 4325.32,61.7188 c -4.37,-2.4024 -10.18,-3.6016 -17.35,-3.6016 -20.37,0 -30.51,11.3476 -30.51,34.0391 v 68.7347 h -19.99 v 15.879 h 19.99 v 28.343 l 18.58,6.043 V 176.77 h 29.28 v -15.879 h -29.28 V 95.4102 c 0,-7.7852 1.32,-13.3204 3.99,-16.6524 2.64,-3.332 7.01,-4.9961 13.17,-4.9961 4.68,0 8.71,1.2813 12.12,3.875 V 61.7188"
|
||||
style="fill:#231f20;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
id="path94" />
|
||||
<path
|
||||
d="m 4398.7,57.8867 c -17.15,0 -30.86,5.418 -41.12,16.2617 -10.22,10.8438 -15.38,25.25 -15.38,43.1756 0,19.52 5.35,34.739 16,45.735 10.68,10.961 25.09,16.418 43.25,16.418 17.31,0 30.82,-5.301 40.55,-15.993 9.71,-10.644 14.55,-25.441 14.55,-44.339 0,-18.547 -5.22,-33.3755 -15.68,-44.5317 -10.49,-11.1524 -24.55,-16.7266 -42.17,-16.7266 z m 1.35,105.9493 c -11.92,0 -21.37,-4.066 -28.34,-12.199 -6.97,-8.133 -10.46,-19.324 -10.46,-33.649 0,-13.75 3.53,-24.5935 10.57,-32.531 7.06,-7.9375 16.47,-11.9257 28.23,-11.9257 12.05,0 21.31,3.9101 27.77,11.6914 6.47,7.7851 9.68,18.8593 9.68,33.2303 0,14.516 -3.21,25.707 -9.68,33.57 -6.46,7.899 -15.72,11.813 -27.77,11.813"
|
||||
style="fill:#231f20;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
id="path96" />
|
||||
<path
|
||||
d="m 4565.49,65.9414 c -8.91,-5.3867 -19.52,-8.0547 -31.76,-8.0547 -16.57,0 -29.93,5.3828 -40.12,16.1446 -10.14,10.7656 -15.25,24.746 -15.25,41.9417 0,19.129 5.5,34.5 16.46,46.117 10.95,11.582 25.59,17.387 43.91,17.387 10.22,0 19.2,-1.856 26.99,-5.653 v -19.051 c -8.63,6.043 -17.85,9.063 -27.69,9.063 -11.85,0 -21.6,-4.258 -29.2,-12.781 -7.59,-8.481 -11.42,-19.672 -11.42,-33.496 0,-13.629 3.6,-24.3559 10.73,-32.2192 7.16,-7.8593 16.73,-11.8085 28.77,-11.8085 10.14,0 19.67,3.3671 28.58,10.1054 V 65.9414"
|
||||
style="fill:#231f20;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
id="path98" />
|
||||
<path
|
||||
d="m 4642.16,57.8867 c -17.16,0 -30.86,5.418 -41.12,16.2617 -10.23,10.8438 -15.38,25.25 -15.38,43.1756 0,19.52 5.35,34.739 16,45.735 10.68,10.961 25.09,16.418 43.25,16.418 17.31,0 30.82,-5.301 40.54,-15.993 9.73,-10.644 14.57,-25.441 14.57,-44.339 0,-18.547 -5.23,-33.3755 -15.69,-44.5317 -10.49,-11.1524 -24.55,-16.7266 -42.17,-16.7266 z m 1.36,105.9493 c -11.93,0 -21.38,-4.066 -28.35,-12.199 -6.97,-8.133 -10.46,-19.324 -10.46,-33.649 0,-13.75 3.53,-24.5935 10.58,-32.531 7.05,-7.9375 16.45,-11.9257 28.23,-11.9257 12.04,0 21.3,3.9101 27.76,11.6914 6.47,7.7851 9.68,18.8593 9.68,33.2303 0,14.516 -3.21,25.707 -9.68,33.57 -6.46,7.899 -15.72,11.813 -27.76,11.813"
|
||||
style="fill:#231f20;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
id="path100" />
|
||||
<path
|
||||
d="m 4748.38,60.5977 h -18.63 V 232.57 h 18.63 V 60.5977"
|
||||
style="fill:#231f20;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
id="path102" />
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 28 KiB |
@ -29,6 +29,10 @@
|
||||
<file alias="save.png">cfg_editor/icons/save.png</file>
|
||||
</qresource>
|
||||
<qresource prefix="icons">
|
||||
<file alias="logo_subtitle_light">SECoP_subtitle-light.svg</file>
|
||||
<file alias="logo_righttitle">SECoP_righttitle.svg</file>
|
||||
<file alias="logo_subtitle">SECoP_subtitle.svg</file>
|
||||
<file alias="logo">SECoP-logo.svg</file>
|
||||
<file alias="details">icons/magnifier.png</file>
|
||||
<file alias="stop">icons/cross-circle.png</file>
|
||||
<file alias="trash">icons/bin.png</file>
|
||||
|
Loading…
x
Reference in New Issue
Block a user