Page Menu
Home
GnuPG
Search
Configure Global Search
Log In
Files
F36624279
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Size
44 KB
Subscribers
None
View Options
diff --git a/src/dialogs.h b/src/dialogs.h
index 0574444..e6f925d 100644
--- a/src/dialogs.h
+++ b/src/dialogs.h
@@ -1,137 +1,139 @@
/* dialogs.h
Resouces IDs for the dialogs.
*/
#ifndef DIALOGS_H
#define DIALOGS_H
/* Ids used for bitmaps. There is some magic in the identifiers: In
the code we only use the first ID value and add 1 to find the mask.
*/
#define IDB_ENCRYPT_16 0x1000
#define IDB_ENCRYPT_16M 0x1001
#define IDB_SIGN_16 0x1010
#define IDB_SIGN_16M 0x1011
#define IDB_KEY_MANAGER_16 0x1020
#define IDB_KEY_MANAGER_16M 0x1021
#define IDB_DECRYPT_16 0x1030
#define IDB_DECRYPT_16M 0x1031
#define IDB_VERIFY_16 0x1040
#define IDB_VERIFY_16M 0x1041
#define IDB_DECRYPT_VERIFY_16 0x1050
#define IDB_DECRYPT_VERIFY_16M 0x1051
+#define IDB_LOGO 0x1060
+
/* Ids for the extended options dialog. */
#define IDD_EXT_OPTIONS 0x4110
#define IDC_T_DEBUG_LOGFILE 0x4120
#define IDC_DEBUG_LOGFILE 0x4130
/* Ids for the recipient selection dialog. */
#define IDD_ENC 0x4210
#define IDC_ENC_RSET1 0x4220
#define IDC_ENC_RSET2_T 0x4230
#define IDC_ENC_RSET2 0x4240
#define IDC_ENC_NOTFOUND_T 0x4250
#define IDC_ENC_NOTFOUND 0x4260
/* Ids for the two decryption dialogs. */
#define IDD_DEC 0x4310
#define IDD_DECEXT 0x4320
#define IDC_DEC_KEYLIST 0x4330
#define IDC_DEC_HINT 0x4340
#define IDC_DEC_PASSINF 0x4350
#define IDC_DEC_PASS 0x4360
#define IDC_DEC_HIDE 0x4370
#define IDC_DECEXT_RSET_T 0x4380
#define IDC_DECEXT_RSET 0x4390
#define IDC_DECEXT_KEYLIST 0x43A0
#define IDC_DECEXT_HINT 0x43B0
#define IDC_DECEXT_PASSINF 0x43C0
#define IDC_DECEXT_PASS 0x43D0
#define IDC_DECEXT_HIDE 0x43E0
/* Ids for the verification dialog. */
#define IDD_VRY 0x4410
#define IDC_VRY_TIME_T 0x4420
#define IDC_VRY_TIME 0x4430
#define IDC_VRY_PKALGO_T 0x4440
#define IDC_VRY_PKALGO 0x4450
#define IDC_VRY_KEYID_T 0x4460
#define IDC_VRY_KEYID 0x4470
#define IDC_VRY_STATUS 0x4480
#define IDC_VRY_ISSUER_T 0x4490
#define IDC_VRY_ISSUER 0x44A0
#define IDC_VRY_AKALIST_T 0x44B0
#define IDC_VRY_AKALIST 0x44C0
#define IDC_VRY_HINT 0x44D0
/* Ids used for the main config dialog. */
#define IDD_GPG_OPTIONS 0x5000
#define IDD_ADDIN_OPTIONS 0x5001
#define IDC_TIME_PHRASES 0x5010
#define IDC_ENCRYPT_DEFAULT 0x5020
#define IDC_SIGN_DEFAULT 0x5030
#define IDC_ENCRYPT_WITH_STANDARD_KEY 0x5040
#define IDC_OPENPGP_DEFAULT 0x5050
#define IDC_SMIME_DEFAULT 0x5060
#define IDC_GPG_OPTIONS 0x5070
#define IDC_ADDIN_OPTIONS 0x5071
#define IDC_BITMAP 0x5080
#define IDC_VERSION_INFO 0x5090
#define IDC_ENCRYPT_TO 0x50A0
#define IDC_ENABLE_SMIME 0x50B0
#define IDC_PREVIEW_DECRYPT 0x50C0
#define IDC_PREFER_HTML 0x50D0
#define IDC_G_GENERAL 0x50E0
#define IDC_G_SEND 0x50F0
#define IDC_G_RECV 0x5100
#define IDC_BODY_AS_ATTACHMENT 0x5110
#define IDC_GPG_CONF 0x5120
#define IDC_G10CODE_STRING 0x5130
#define IDC_GPG4WIN_STRING 0x5131
#define IDC_START_CERTMAN 0x5132
#define IDC_MIME_UI 0x5133
#define IDC_INLINE_PGP 0x5134
#define IDC_AUTORRESOLVE 0x5135
/* Ids for PNG Images */
#define IDI_ENCRYPT_16_PNG 0x6000
#define IDI_ENCRYPT_48_PNG 0x6010
#define IDI_DECRYPT_16_PNG 0x6020
#define IDI_DECRYPT_48_PNG 0x6030
#define IDI_KEY_MANAGER_64_PNG 0x6040
#define IDI_ENCSIGN_FILE_48_PNG 0x6050
#define IDI_SIGN_48_PNG 0x6060
#define IDI_VERIFY_48_PNG 0x6070
#define IDI_EMBLEM_WARNING_64_PNG 0x6071
#define IDI_EMBLEM_QUESTION_64_PNG 0x6074
#define IDI_SIGN_ENCRYPT_40_PNG 0x6075
#define IDI_ENCRYPT_20_PNG 0x6076
#define IDI_SIGN_20_PNG 0x6077
/* Status icons */
#define ENCRYPT_ICON_OFFSET 0x10
#define IDI_LEVEL_0 0x6080
#define IDI_LEVEL_1 0x6081
#define IDI_LEVEL_2 0x6082
#define IDI_LEVEL_3 0x6083
#define IDI_LEVEL_4 0x6084
#define IDI_LEVEL_0_ENC (IDI_LEVEL_0 + ENCRYPT_ICON_OFFSET)
#define IDI_LEVEL_1_ENC (IDI_LEVEL_1 + ENCRYPT_ICON_OFFSET)
#define IDI_LEVEL_2_ENC (IDI_LEVEL_2 + ENCRYPT_ICON_OFFSET)
#define IDI_LEVEL_3_ENC (IDI_LEVEL_3 + ENCRYPT_ICON_OFFSET)
#define IDI_LEVEL_4_ENC (IDI_LEVEL_4 + ENCRYPT_ICON_OFFSET)
#endif /*DIALOGS_H*/
diff --git a/src/dialogs.rc b/src/dialogs.rc
index a99eee3..0454f19 100644
--- a/src/dialogs.rc
+++ b/src/dialogs.rc
@@ -1,367 +1,371 @@
/* dialogs.rc - GpgOL dialog resources. -*- c -*-
* Copyright (C) 2004, 2005, 2006, 2007 g10 Code GmbH
*
* This file is part of GpgOL.
*
* GpgOL is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* GpgOL is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with this program; if not, see <http://www.gnu.org/licenses/>.
*/
#include "dialogs.h"
#include "config.h"
#include "afxres.h"
IDB_ENCRYPT_16 BITMAP DISCARDABLE "icons/encrypt-16.bmp"
IDB_ENCRYPT_16M BITMAP DISCARDABLE "icons/encrypt-16m.bmp"
IDI_ENCRYPT_16_PNG RCDATA "icons/encrypt-16.png"
IDI_ENCRYPT_48_PNG RCDATA "icons/encrypt-48.png"
IDB_SIGN_16 BITMAP DISCARDABLE "icons/sign-16.bmp"
IDB_SIGN_16M BITMAP DISCARDABLE "icons/sign-16m.bmp"
IDI_SIGN_48_PNG RCDATA "icons/sign-48.png"
IDB_KEY_MANAGER_16 BITMAP DISCARDABLE "icons/key-manager-16.bmp"
IDB_KEY_MANAGER_16M BITMAP DISCARDABLE "icons/key-manager-16m.bmp"
IDI_KEY_MANAGER_64_PNG RCDATA "icons/key-manager-64.png"
IDB_DECRYPT_16 BITMAP DISCARDABLE "icons/decrypt-16.bmp"
IDB_DECRYPT_16M BITMAP DISCARDABLE "icons/decrypt-16m.bmp"
IDI_DECRYPT_16_PNG RCDATA "icons/decrypt-16.png"
IDI_DECRYPT_48_PNG RCDATA "icons/decrypt-48.png"
IDB_VERIFY_16 BITMAP DISCARDABLE "icons/verify-16.bmp"
IDB_VERIFY_16M BITMAP DISCARDABLE "icons/verify-16m.bmp"
IDI_VERIFY_48_PNG RCDATA "icons/verify-48.png"
IDB_DECRYPT_VERIFY_16 BITMAP DISCARDABLE "icons/decrypt-verify-16.bmp"
IDB_DECRYPT_VERIFY_16M BITMAP DISCARDABLE "icons/decrypt-verify-16m.bmp"
IDI_ENCSIGN_FILE_48_PNG RCDATA "icons/encrypt-sign-file-48.png"
IDI_LEVEL_0_ENC RCDATA "icons/level-0-enc.png"
IDI_LEVEL_1_ENC RCDATA "icons/level-1-enc.png"
/* We use the same icon for level 2 and 3 */
IDI_LEVEL_2_ENC RCDATA "icons/level-3-enc.png"
IDI_LEVEL_3_ENC RCDATA "icons/level-3-enc.png"
IDI_LEVEL_4_ENC RCDATA "icons/level-4-enc.png"
IDI_LEVEL_0 RCDATA "icons/level-0.png"
IDI_LEVEL_1 RCDATA "icons/level-1.png"
IDI_LEVEL_2 RCDATA "icons/level-3.png"
IDI_LEVEL_3 RCDATA "icons/level-3.png"
IDI_LEVEL_4 RCDATA "icons/level-4.png"
IDI_SIGN_ENCRYPT_40_PNG RCDATA "icons/sign-enc-40.png"
IDI_ENCRYPT_20_PNG RCDATA "icons/encrypt-20.png"
IDI_SIGN_20_PNG RCDATA "icons/sign-20.png"
+IDB_LOGO BITMAP DISCARDABLE "icons/logo.bmp"
+
IDD_GPG_OPTIONS DIALOG DISCARDABLE 0, 0, 266, 274
STYLE DS_MODALFRAME | WS_POPUP | WS_VISIBLE | WS_CAPTION | WS_SYSMENU
CAPTION "GpgOL"
FONT 8, "MS Sans Serif"
BEGIN
/* General options box. */
GROUPBOX "general-options", IDC_G_GENERAL,
9, 9, 250, 25
CONTROL "enable-smime", IDC_ENABLE_SMIME,
"Button", BS_AUTOCHECKBOX | WS_TABSTOP,
24, 19, 215, 10
/* Send options box. */
GROUPBOX "send-options", IDC_G_SEND,
9, 40, 250, 38
CONTROL "encrypt-by-default", IDC_ENCRYPT_DEFAULT,
"Button", BS_AUTOCHECKBOX | WS_TABSTOP,
24, 50, 215, 10
CONTROL "sign-by-default", IDC_SIGN_DEFAULT,
"Button", BS_AUTOCHECKBOX | WS_TABSTOP,
24, 61, 215, 10
/* Receive options box. */
GROUPBOX "recv-options", IDC_G_RECV,
9, 82, 250, 36
/* We have no reliable way to detect the preview window, thus we
don't show this option. */
/* CONTROL "preview-decrypt", IDC_PREVIEW_DECRYPT, */
/* "Button", BS_AUTOCHECKBOX | WS_TABSTOP, */
/* 24, 114, 215, 10 */
CONTROL "prefer-html", IDC_PREFER_HTML,
"Button", BS_AUTOCHECKBOX | WS_TABSTOP,
24, 94, 215, 10
CONTROL "body-as-attachment", IDC_BODY_AS_ATTACHMENT,
"Button", BS_AUTOCHECKBOX | WS_TABSTOP,
24, 103, 215, 10
/* Stuff at the lower left corner. */
LTEXT "GpgOL by g10 Code GmbH", IDC_G10CODE_STRING,
8, 229, 100, 8
LTEXT "Version x ", IDC_VERSION_INFO,
8, 240, 100, 9
/* No more logo due to problems with the background colour. */
/* CONTROL IDB_BANNER, IDC_BITMAP, */
/* "Static", SS_BITMAP | SS_REALSIZEIMAGE, */
/* 8, 212, 150, 64 */
PUSHBUTTON "advanced", IDC_GPG_OPTIONS,
130, 240, 50, 14
PUSHBUTTON "gpgconf", IDC_GPG_CONF,
190, 240, 70, 14
END
IDD_EXT_OPTIONS DIALOG DISCARDABLE 0, 0, 155, 70
STYLE DS_MODALFRAME | WS_POPUP | WS_CAPTION
CAPTION "GpgOL - Debug Options"
FONT 8, "MS Sans Serif"
BEGIN
LTEXT "debug-logfile", IDC_T_DEBUG_LOGFILE,
8, 10, 122, 8
EDITTEXT IDC_DEBUG_LOGFILE,
8, 20, 138, 12, ES_AUTOHSCROLL
DEFPUSHBUTTON "&OK", IDOK,
90, 50, 50, 14
END
/*
The dialog to select recipient keys
*/
IDD_ENC DIALOG DISCARDABLE 0, 0, 332, 215
STYLE DS_MODALFRAME | WS_POPUP | WS_CAPTION | WS_SYSMENU
CAPTION "GpgOL - Select Recipients"
FONT 8, "MS Sans Serif"
BEGIN
CONTROL "List1", IDC_ENC_RSET1,
"SysListView32", LVS_REPORT | LVS_NOSORTHEADER |
WS_BORDER | WS_TABSTOP,
8, 4, 314, 92
LTEXT "Ausgewählte Empfänger:", IDC_ENC_RSET2_T,
8, 98, 130, 8
CONTROL "List2", IDC_ENC_RSET2,
"SysListView32", LVS_REPORT | LVS_NOSORTHEADER |
WS_BORDER | WS_TABSTOP,
8, 110, 313, 49
LTEXT "Recipient which were NOT found", IDC_ENC_NOTFOUND_T,
8, 161, 128, 8
LISTBOX IDC_ENC_NOTFOUND,
8, 170, 313, 22, LBS_SORT | LBS_NOINTEGRALHEIGHT |
WS_VSCROLL | WS_TABSTOP
DEFPUSHBUTTON "&OK", IDOK,
221, 196, 50, 14
PUSHBUTTON "&Cancel-btn", IDCANCEL,
273, 196, 50, 14
END
/*
The decryption dialog used to select the secret key.
*/
IDD_DEC DIALOG DISCARDABLE 0, 0, 225, 101
STYLE DS_MODALFRAME | WS_POPUP | WS_CAPTION | WS_SYSMENU
CAPTION "Secret Key Selection"
FONT 8, "MS Sans Serif"
BEGIN
COMBOBOX IDC_DEC_KEYLIST,
9, 7, 209, 58, CBS_DROPDOWNLIST | WS_VSCROLL |
WS_TABSTOP
LTEXT "", IDC_DEC_HINT,
9, 25, 201, 10
LTEXT "enter-passphrase", IDC_DEC_PASSINF,
9, 37, 158, 8
EDITTEXT IDC_DEC_PASS,
9, 51, 207, 12, ES_PASSWORD | ES_AUTOHSCROLL
CONTROL "&Hide Typing", IDC_DEC_HIDE,
"Button", BS_AUTOCHECKBOX | WS_TABSTOP,
138, 64, 81, 10
DEFPUSHBUTTON "&OK", IDOK,
115, 83, 50, 14
PUSHBUTTON "&Cancel-btn", IDCANCEL,
167, 83, 50, 14
END
/*
The extended decryption dialog used to select the secret key.
*/
IDD_DECEXT DIALOG DISCARDABLE 0, 0, 207, 134
STYLE DS_MODALFRAME | WS_POPUP | WS_CAPTION | WS_SYSMENU
CAPTION "GpgOL - Secret Key Selection"
FONT 8, "MS Sans Serif"
BEGIN
LTEXT "encrypted-to",IDC_DECEXT_RSET_T,
7, 4, 128, 8
LISTBOX IDC_DECEXT_RSET,
7, 16, 193, 25, LBS_NOINTEGRALHEIGHT |
WS_VSCROLL | WS_TABSTOP
COMBOBOX IDC_DECEXT_KEYLIST,
8, 54, 191, 14, CBS_DROPDOWN | CBS_SORT |
WS_DISABLED | WS_VSCROLL | WS_TABSTOP
LTEXT "", IDC_DECEXT_HINT,
7, 73, 193, 8
LTEXT "enter-passphrase", IDC_DECEXT_PASSINF,
7, 85, 158, 8
EDITTEXT IDC_DECEXT_PASS,
7, 96, 192, 12, ES_PASSWORD | ES_AUTOHSCROLL
CONTROL "hide-typing", IDC_DECEXT_HIDE,
"Button", BS_AUTOCHECKBOX | WS_TABSTOP,
122, 108, 81, 10
DEFPUSHBUTTON "OK", IDOK,
98, 125, 50, 14
PUSHBUTTON "&Cancel-btn", IDCANCEL,
149, 125, 50, 14
END
/*
The dialog to display verification results.
*/
IDD_VRY DIALOG DISCARDABLE 0, 0, 253, 116
STYLE DS_MODALFRAME | WS_POPUP | WS_CAPTION
CAPTION "GpgOL - Signature Verification Result"
FONT 8, "MS Sans Serif"
BEGIN
LTEXT "made-at", IDC_VRY_TIME_T,
3, 6, 50, 8
EDITTEXT IDC_VRY_TIME,
55, 4, 76, 12, ES_AUTOHSCROLL | ES_READONLY
LTEXT "using", IDC_VRY_PKALGO_T,
132, 6, 18, 8
EDITTEXT IDC_VRY_PKALGO,
152, 4, 20, 12, ES_AUTOHSCROLL | ES_READONLY
LTEXT "key-id", IDC_VRY_KEYID_T,
174, 7, 50, 8
EDITTEXT IDC_VRY_KEYID,
196, 4, 51, 12, ES_AUTOHSCROLL | ES_READONLY
EDITTEXT IDC_VRY_STATUS,
3, 29, 92, 12, ES_AUTOHSCROLL | ES_READONLY
LTEXT "from", IDC_VRY_ISSUER_T,
98, 31, 14, 8
EDITTEXT IDC_VRY_ISSUER,
117, 29, 131, 13, ES_AUTOHSCROLL | ES_READONLY
LTEXT "aka", IDC_VRY_AKALIST_T,
3, 47, 56, 8
LISTBOX IDC_VRY_AKALIST,
3, 56, 245, 25, LBS_SORT | LBS_NOINTEGRALHEIGHT |
WS_VSCROLL | WS_TABSTOP
LTEXT "", IDC_VRY_HINT,
3, 83, 245, 10
DEFPUSHBUTTON "&OK", IDOK,
198, 96, 50, 14
END
IDD_ADDIN_OPTIONS DIALOGEX DISCARDABLE 300, 300, 266, 170
STYLE DS_MODALFRAME | WS_POPUP | WS_VISIBLE | WS_CAPTION | WS_SYSMENU | DS_SHELLFONT | DS_SETFONT
CAPTION "GpgOL"
FONT 8, "MS Shell Dlg"
BEGIN
/* General options box. */
#ifdef MIME_SEND
GROUPBOX "general-options", IDC_G_GENERAL,
9, 9, 250, 25
#else
GROUPBOX "general-options", IDC_G_GENERAL,
9, 9, 250, 35
#endif
CONTROL "enable-smime", IDC_ENABLE_SMIME,
"Button", BS_AUTOCHECKBOX | WS_TABSTOP,
24, 19, 215, 10
#ifndef MIME_SEND
CONTROL "enable-mime-ui", IDC_MIME_UI,
"Button", BS_AUTOCHECKBOX | WS_TABSTOP,
24, 29, 215, 10
#endif
/* Send options box. */
GROUPBOX "send-options", IDC_G_SEND,
9, 50, 250, 50
CONTROL "encrypt-by-default", IDC_ENCRYPT_DEFAULT,
"Button", BS_AUTOCHECKBOX | WS_TABSTOP,
24, 60, 215, 10
CONTROL "sign-by-default", IDC_SIGN_DEFAULT,
"Button", BS_AUTOCHECKBOX | WS_TABSTOP,
24, 71, 215, 10
CONTROL "inline-pgp", IDC_INLINE_PGP,
"Button", BS_AUTOCHECKBOX | WS_TABSTOP,
24, 82, 215, 10
// CONTROL "autoresolve", IDC_AUTORRESOLVE,
// "Button", BS_AUTOCHECKBOX | WS_TABSTOP,
// 24, 93, 215, 10
/* Stuff at the lower left corner. */
- LTEXT "GpgOL by Gpg4win", IDC_GPG4WIN_STRING,
- 8, 144, 100, 8
+ CONTROL IDB_LOGO, IDC_BITMAP,
+ "Static", SS_BITMAP | SS_REALSIZEIMAGE,
+ 10, 105, 128, 80
+
LTEXT "Version x ", IDC_VERSION_INFO,
- 8, 155, 100, 9
+ 10, 155, 100, 9
PUSHBUTTON "advanced", IDC_GPG_OPTIONS,
180, 120, 70, 14
PUSHBUTTON "gpgconf", IDC_GPG_CONF,
180, 135, 70, 14
DEFPUSHBUTTON "&OK", IDOK,
180, 150, 70, 14
END
diff --git a/src/icons/Makefile.am b/src/icons/Makefile.am
index a727d0e..8b7908f 100644
--- a/src/icons/Makefile.am
+++ b/src/icons/Makefile.am
@@ -1,32 +1,33 @@
# Makefile.am - makefile for GPGol icons
# Copyright (C) 2016 Intevation GmbH
#
# This file is free software; as a special exception the author gives
# unlimited permission to copy and/or distribute it, with or without
# modifications, as long as this notice is preserved.
#
# This program is distributed in the hope that it will be useful, but
# WITHOUT ANY WARRANTY, to the extent permitted by law; without even the
# implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
## Process this file with automake to produce Makefile.in
EXTRA_DIST= \
encrypt-16.bmp encrypt-16m.bmp \
sign-16.bmp sign-16m.bmp \
key-manager-16.bmp key-manager-16m.bmp \
decrypt-16.bmp decrypt-16m.bmp \
verify-16.bmp verify-16m.bmp \
decrypt-verify-16.bmp decrypt-verify-16m.bmp \
encrypt-16.png encrypt-48.png \
key-manager-64.png \
decrypt-16.png decrypt-48.png \
encrypt-sign-file-48.png \
sign-48.png verify-48.png \
README.icons\
sign.svg sign-enc.svg encrypt.svg \
sign-enc-40.png sign-20.png encrypt-20.png \
level-0.svg level-0-enc.svg level-0.png level-0-enc.png \
level-1.svg level-1-enc.svg level-1.png level-1-enc.png \
level-2.svg level-2-enc.svg level-2.png level-2-enc.png \
level-3.svg level-3-enc.svg level-3.png level-3-enc.png \
- level-4.svg level-4-enc.svg level-4.png level-4-enc.png
+ level-4.svg level-4-enc.svg level-4.png level-4-enc.png \
+ logo.svg logo.bmp
diff --git a/src/icons/logo.bmp b/src/icons/logo.bmp
new file mode 100644
index 0000000..1ce1cc0
Binary files /dev/null and b/src/icons/logo.bmp differ
diff --git a/src/icons/logo.svg b/src/icons/logo.svg
new file mode 100644
index 0000000..2666e87
--- /dev/null
+++ b/src/icons/logo.svg
@@ -0,0 +1,174 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<svg
+ xmlns:dc="http://purl.org/dc/elements/1.1/"
+ xmlns:cc="http://creativecommons.org/ns#"
+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+ xmlns:svg="http://www.w3.org/2000/svg"
+ xmlns="http://www.w3.org/2000/svg"
+ xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+ id="Ebene_1"
+ data-name="Ebene 1"
+ viewBox="0 0 242.47081 151.87432"
+ version="1.1"
+ inkscape:version="0.48.3.1 r9886"
+ width="100%"
+ height="100%"
+ sodipodi:docname="GpgOL finnished Logo.svg">
+ <metadata
+ id="metadata35">
+ <rdf:RDF>
+ <cc:Work
+ rdf:about="">
+ <dc:format>image/svg+xml</dc:format>
+ <dc:type
+ rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
+ <dc:title>GpgOL finnished Logo</dc:title>
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <sodipodi:namedview
+ pagecolor="#ffffff"
+ bordercolor="#666666"
+ borderopacity="1"
+ objecttolerance="10"
+ gridtolerance="10"
+ guidetolerance="10"
+ inkscape:pageopacity="0"
+ inkscape:pageshadow="2"
+ inkscape:window-width="1680"
+ inkscape:window-height="993"
+ id="namedview33"
+ showgrid="false"
+ inkscape:zoom="1.736707"
+ inkscape:cx="128.09685"
+ inkscape:cy="-37.753291"
+ inkscape:window-x="-3"
+ inkscape:window-y="-3"
+ inkscape:window-maximized="1"
+ inkscape:current-layer="Ebene_1"
+ fit-margin-top="8"
+ fit-margin-left="10"
+ fit-margin-right="10"
+ fit-margin-bottom="5">
+ <inkscape:grid
+ type="xygrid"
+ id="grid3168"
+ empspacing="5"
+ visible="true"
+ enabled="true"
+ snapvisiblegridlinesonly="true"
+ originx="9.9114058px"
+ originy="4.6946475px" />
+ </sodipodi:namedview>
+ <defs
+ id="defs3">
+ <style
+ id="style5">.cls-1{fill:#1f8fcf;}.cls-2{fill:#3d3d3b;}.cls-3{fill:#1b72b8;}.cls-4{fill:#3d3c3b;}.cls-5{fill:#1f8ece;}</style>
+ </defs>
+ <title
+ id="title7">GpgOL finnished Logo</title>
+ <polygon
+ id="polygon4191"
+ points="40.6,281.41 40.6,281.41 0,247.55 0,316.6 81.19,316.6 81.19,247.55 "
+ class="cls-4"
+ style="fill:#1f8ece"
+ transform="translate(9.9999924,-175.14)" />
+ <polygon
+ id="polygon4193"
+ points="40.6,276.5 81.19,242.65 0,242.65 0,242.65 "
+ class="cls-4"
+ style="fill:#1f8ece"
+ transform="translate(9.9999924,-175.14)" />
+ <path
+ id="path4195"
+ d="m 17.419993,43.000001 v 20.56 h 14.14 v -20.56 c 0,-11.26 8.54,-20.43 19,-20.43 10.46,0 19,9.16 19,20.43 v 20.56 h 14.14 v -20.56 c 0,-19.32 -14.87,-35.0000006 -33.17,-35.0000006 h 0 c -18.29,0 -33.17,15.7200006 -33.17,35.0000006"
+ class="cls-3"
+ inkscape:connector-curvature="0"
+ style="fill:#3d3d3b" />
+ <g
+ transform="matrix(0.98456381,0,0,1.0156782,9.9114061,7.9796704)"
+ style="font-size:26.2523365px;font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;text-align:center;line-height:125%;letter-spacing:0.19689253px;word-spacing:0px;writing-mode:lr-tb;text-anchor:middle;fill:#3d3d3b;fill-opacity:1;stroke:none;font-family:Roboto Condensed;-inkscape-font-specification:'Roboto Condensed, Light'"
+ id="text4209">
+ <path
+ d="m 107.33714,125.32935 c -0.13674,2.09369 -0.70075,3.63191 -1.69204,4.61467 -0.99131,0.9742 -2.36289,1.46131 -4.11475,1.46131 -0.8973,0 -1.709139,-0.17519 -2.435516,-0.52556 -0.717842,-0.35038 -1.328857,-0.85457 -1.833049,-1.51259 -0.504198,-0.65801 -0.893026,-1.45703 -1.166486,-2.39706 -0.273463,-0.94857 -0.410194,-2.01678 -0.410192,-3.20463 l 0,-4.0122 c -2e-6,-1.17075 0.136729,-2.22187 0.410192,-3.15336 0.27346,-0.93146 0.666561,-1.71766 1.179305,-2.35861 0.512737,-0.64945 1.136571,-1.1451 1.871504,-1.48695 0.734923,-0.35035 1.568122,-0.52554 2.499612,-0.52555 0.84601,1e-5 1.60231,0.11965 2.26888,0.35891 0.6751,0.2393 1.2562,0.60677 1.74332,1.1024 0.48709,0.49566 0.87165,1.12804 1.15367,1.89714 0.28199,0.76912 0.45718,1.68351 0.52555,2.74316 l -1.48694,0 c -0.0684,-0.85455 -0.20084,-1.58093 -0.39738,-2.17915 -0.19656,-0.59818 -0.47002,-1.08528 -0.82038,-1.46131 -0.34184,-0.37599 -0.76058,-0.64945 -1.25622,-0.82038 -0.49566,-0.1709 -1.07249,-0.25636 -1.7305,-0.25637 -0.72639,1e-5 -1.36732,0.14102 -1.922778,0.42301 -0.555475,0.27348 -1.025487,0.67085 -1.410038,1.19212 -0.376014,0.5213 -0.662294,1.16223 -0.858841,1.92278 -0.188008,0.76058 -0.282011,1.61942 -0.282008,2.57652 l 0,4.03784 c -3e-6,0.94857 0.08973,1.81169 0.269189,2.58934 0.188002,0.76911 0.461463,1.42713 0.820386,1.97405 0.36746,0.54693 0.82038,0.96994 1.358764,1.26903 0.546916,0.29911 1.183566,0.44865 1.909956,0.44865 0.68365,0 1.28185,-0.0769 1.7946,-0.23073 0.51273,-0.16237 0.94428,-0.42728 1.29467,-0.79475 0.35036,-0.36746 0.62382,-0.85029 0.82038,-1.44849 0.20509,-0.60674 0.34182,-1.35449 0.4102,-2.24324 l 1.48694,0"
+ id="path3014"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 116.34036,118.61244 c -0.14528,-0.0256 -0.29056,-0.047 -0.43583,-0.0641 -0.13673,-0.0171 -0.29056,-0.0256 -0.46146,-0.0256 -0.41875,1e-5 -0.79903,0.0769 -1.14085,0.23073 -0.33329,0.14529 -0.62811,0.35466 -0.88448,0.62811 -0.25637,0.26493 -0.47856,0.58539 -0.66656,0.96139 -0.17947,0.37602 -0.32047,0.78621 -0.42301,1.23058 l 0,9.57544 -1.42286,0 0,-13.86965 1.39722,0 0.0256,2.0766 c 0.31618,-0.72637 0.73492,-1.29465 1.25621,-1.70486 0.52128,-0.41872 1.16221,-0.62809 1.92278,-0.62811 0.15382,2e-5 0.31618,0.0171 0.4871,0.0513 0.17091,0.0342 0.29482,0.0727 0.37174,0.11536 l -0.0256,1.42286"
+ id="path3016"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 122.99779,128.80317 3.30718,-11.52386 1.52541,0 -4.88386,16.08725 c -0.10256,0.31619 -0.23074,0.67083 -0.38456,1.06394 -0.15382,0.3931 -0.35892,0.76056 -0.61529,1.10239 -0.25637,0.34182 -0.57256,0.6281 -0.94857,0.85884 -0.36746,0.23928 -0.81611,0.35892 -1.34594,0.35892 -0.0769,0 -0.16237,-0.009 -0.25637,-0.0256 -0.094,-0.009 -0.19228,-0.0214 -0.29483,-0.0385 -0.094,-0.0171 -0.18373,-0.0385 -0.26919,-0.0641 -0.0855,-0.0171 -0.15382,-0.0342 -0.20509,-0.0513 l -0.0128,-1.30749 c 0.0854,0.0256 0.19655,0.047 0.33328,0.0641 0.14527,0.0171 0.25209,0.0256 0.32046,0.0256 0.34183,0 0.64093,-0.0556 0.8973,-0.16664 0.26491,-0.10255 0.49565,-0.26065 0.6922,-0.47428 0.20509,-0.2051 0.38455,-0.46575 0.53838,-0.78193 0.15382,-0.30765 0.29055,-0.66657 0.41019,-1.07676 l 0.53838,-1.79459 -4.3583,-13.77992 1.56386,0 3.44818,11.52386"
+ id="path3018"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 139.93568,124.86788 c -2e-5,1.11949 -0.10256,2.08942 -0.30765,2.9098 -0.19656,0.82039 -0.48284,1.49977 -0.85884,2.03815 -0.37602,0.53838 -0.84176,0.94003 -1.39722,1.20494 -0.55548,0.25637 -1.18358,0.38456 -1.88432,0.38456 -0.83748,0 -1.55532,-0.16664 -2.15351,-0.49993 -0.58966,-0.34182 -1.07249,-0.81611 -1.4485,-1.42285 l 0,6.99891 -1.41003,0 0,-19.20215 1.30749,0 0.0641,1.89715 c 0.38455,-0.6751 0.87165,-1.20066 1.46131,-1.57668 0.58965,-0.38455 1.30321,-0.57682 2.14069,-0.57684 0.71783,2e-5 1.35449,0.12393 1.90996,0.37174 0.55546,0.24784 1.02548,0.63667 1.41004,1.16649 0.38455,0.52984 0.6751,1.20922 0.87166,2.03814 0.19654,0.8204 0.29481,1.81169 0.29483,2.9739 l 0,1.29467 m -1.42286,-1.29467 c -1e-5,-1.77749 -0.27774,-3.08498 -0.8332,-3.92247 -0.54694,-0.83746 -1.40578,-1.2562 -2.57653,-1.25621 -0.43583,1e-5 -0.82893,0.0641 -1.1793,0.19227 -0.34183,0.11966 -0.64521,0.2863 -0.91012,0.49993 -0.25637,0.21365 -0.47856,0.4572 -0.66656,0.73065 -0.17946,0.27347 -0.33328,0.56403 -0.46147,0.87166 l 0,7.30656 c 0.13673,0.2991 0.30337,0.57684 0.49993,0.8332 0.20509,0.25638 0.44009,0.47856 0.70501,0.66657 0.26492,0.188 0.56401,0.33328 0.8973,0.43583 0.34182,0.10255 0.72211,0.15382 1.14085,0.15382 1.15366,0 2.00395,-0.42301 2.55089,-1.26904 0.55546,-0.85456 0.83319,-2.17059 0.8332,-3.9481 l 0,-1.29467"
+ id="path3020"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 145.58044,113.7414 0,3.53791 2.37143,0 0,1.28186 -2.37143,0 0,9.21651 c 0,0.47857 0.0384,0.86739 0.11537,1.16649 0.0855,0.29056 0.19654,0.51702 0.33328,0.67938 0.13673,0.16237 0.29055,0.27347 0.46147,0.33328 0.17945,0.0513 0.36746,0.0769 0.56401,0.0769 0.188,1e-5 0.37173,-0.0128 0.5512,-0.0384 0.17945,-0.0342 0.33755,-0.0641 0.47428,-0.0897 l 0.0385,1.28185 c -0.15383,0.0684 -0.35893,0.11964 -0.61529,0.15382 -0.24783,0.0427 -0.50847,0.0641 -0.78193,0.0641 -0.36747,0 -0.7093,-0.0598 -1.02548,-0.17946 -0.30765,-0.11964 -0.57684,-0.32047 -0.80757,-0.60247 -0.23074,-0.28201 -0.41019,-0.65375 -0.53838,-1.11521 -0.12819,-0.47002 -0.19228,-1.05112 -0.19228,-1.74332 l 0,-9.2037 -2.14069,0 0,-1.28186 2.14069,0 0,-3.53791 1.42286,0"
+ id="path3022"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 150.43046,123.50912 c 0,-1.05111 0.12391,-1.97832 0.37174,-2.78162 0.24782,-0.80329 0.59392,-1.47839 1.0383,-2.02533 0.44437,-0.55546 0.9742,-0.97419 1.5895,-1.25622 0.62382,-0.28199 1.31175,-0.42299 2.06378,-0.42301 0.76056,2e-5 1.45276,0.14102 2.0766,0.42301 0.62382,0.28203 1.15793,0.70076 1.60231,1.25622 0.44437,0.54694 0.7862,1.22204 1.02549,2.02533 0.24781,0.8033 0.37172,1.73051 0.37173,2.78162 l 0,1.43567 c -1e-5,1.05112 -0.12392,1.97833 -0.37173,2.78162 -0.23929,0.8033 -0.58112,1.47841 -1.02549,2.02533 -0.44438,0.53838 -0.97849,0.94857 -1.60231,1.23058 -0.6153,0.282 -1.29895,0.42301 -2.05097,0.42301 -0.76057,0 -1.45277,-0.14101 -2.0766,-0.42301 -0.62383,-0.28201 -1.15794,-0.6922 -1.60231,-1.23058 -0.44438,-0.54692 -0.79048,-1.22203 -1.0383,-2.02533 -0.24783,-0.80329 -0.37174,-1.7305 -0.37174,-2.78162 l 0,-1.43567 m 1.43568,1.43567 c -1e-5,0.79475 0.0812,1.50832 0.24355,2.14069 0.16236,0.63239 0.39737,1.17077 0.70502,1.61514 0.31618,0.44438 0.70074,0.7862 1.15366,1.02548 0.45292,0.23928 0.96993,0.35892 1.55104,0.35892 0.61529,0 1.14939,-0.11964 1.60232,-0.35892 0.45291,-0.23928 0.82892,-0.5811 1.12803,-1.02548 0.29909,-0.44437 0.52128,-0.98275 0.66656,-1.61514 0.15382,-0.63237 0.23073,-1.34594 0.23074,-2.14069 l 0,-1.43567 c -1e-5,-0.77765 -0.0812,-1.48267 -0.24356,-2.11506 -0.16237,-0.64092 -0.40165,-1.18357 -0.71783,-1.62795 -0.30766,-0.45291 -0.68794,-0.79901 -1.14085,-1.0383 -0.45293,-0.24782 -0.96994,-0.37173 -1.55104,-0.37174 -0.57257,1e-5 -1.08531,0.12392 -1.53823,0.37174 -0.44438,0.23929 -0.82466,0.58539 -1.14084,1.0383 -0.30765,0.44438 -0.54266,0.98703 -0.70502,1.62795 -0.16237,0.63239 -0.24356,1.33741 -0.24355,2.11506 l 0,1.43567"
+ id="path3024"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 172.37218,112.48519 5.65297,16.42052 5.6786,-16.42052 1.9356,0 0,18.66377 -1.46131,0 0,-8.11413 0.12818,-8.11412 -5.71706,16.22825 -1.12803,0 -5.69142,-16.15134 0.12818,8.03721 0,8.11413 -1.46131,0 0,-18.66377 1.9356,0"
+ id="path3026"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 197.29601,131.14896 c -0.0684,-0.23074 -0.12392,-0.51702 -0.16664,-0.85884 -0.0427,-0.35038 -0.0726,-0.70502 -0.0897,-1.06394 -0.17947,0.29055 -0.39311,0.56829 -0.64093,0.8332 -0.24783,0.25637 -0.53411,0.48711 -0.85884,0.6922 -0.3162,0.19655 -0.67084,0.35465 -1.06394,0.47429 -0.3931,0.11964 -0.81611,0.17946 -1.26903,0.17946 -0.57256,0 -1.09385,-0.0812 -1.56386,-0.24356 -0.46147,-0.16236 -0.85884,-0.40591 -1.19212,-0.73065 -0.33329,-0.32474 -0.58966,-0.73066 -0.76911,-1.21776 -0.17946,-0.4871 -0.26919,-1.05539 -0.26919,-1.70486 0,-0.64093 0.11109,-1.23058 0.33328,-1.76896 0.22219,-0.54692 0.55119,-1.01693 0.98703,-1.41004 0.44437,-0.39309 0.99556,-0.70074 1.65359,-0.92293 0.65801,-0.22218 1.42285,-0.33328 2.29451,-0.33328 l 2.34579,0 0,-1.9356 c -1e-5,-0.99129 -0.24783,-1.70058 -0.74347,-2.12788 -0.48711,-0.43581 -1.20495,-0.65373 -2.15352,-0.65374 -0.44438,1e-5 -0.85457,0.0684 -1.23057,0.2051 -0.36747,0.13674 -0.68366,0.32902 -0.94857,0.57683 -0.26492,0.23929 -0.47002,0.52984 -0.61529,0.87166 -0.14528,0.33329 -0.21792,0.70076 -0.21792,1.10239 l -1.42285,-0.0128 c -1e-5,-0.53836 0.10681,-1.0511 0.32046,-1.53822 0.21364,-0.49564 0.51701,-0.93147 0.91011,-1.30749 0.3931,-0.376 0.86739,-0.67509 1.42286,-0.8973 0.55546,-0.22217 1.17075,-0.33326 1.84587,-0.33328 0.62383,2e-5 1.19211,0.0769 1.70486,0.23074 0.52128,0.14529 0.96993,0.38457 1.34595,0.71783 0.376,0.32475 0.66655,0.75204 0.87166,1.28186 0.21363,0.52129 0.32045,1.15795 0.32046,1.90996 l 0,7.07582 c -1e-5,0.23928 0.009,0.48711 0.0256,0.74348 0.0171,0.25637 0.0384,0.50847 0.0641,0.75629 0.0342,0.23928 0.0726,0.47001 0.11537,0.6922 0.0513,0.21364 0.10681,0.40165 0.16664,0.56401 l 0,0.15383 -1.51259,0 m -3.90965,-1.11522 c 0.44437,1e-5 0.85884,-0.0598 1.2434,-0.17945 0.39309,-0.12819 0.74346,-0.2991 1.05112,-0.51275 0.30763,-0.22218 0.57255,-0.47855 0.79474,-0.76911 0.23073,-0.29055 0.41446,-0.60246 0.5512,-0.93575 l 0,-3.37127 -2.14069,0 c -1.34168,1e-5 -2.35007,0.28201 -3.02517,0.84602 -0.67512,0.56402 -1.01267,1.32459 -1.01267,2.2817 0,0.91439 0.22219,1.58523 0.66657,2.01251 0.45291,0.41874 1.07675,0.62811 1.8715,0.6281"
+ id="path3028"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 204.10726,131.14896 -1.43568,0 0,-13.86965 1.43568,0 0,13.86965 m -1.64077,-17.86903 c 0,-0.29053 0.0812,-0.53836 0.24355,-0.74347 0.16237,-0.20508 0.3931,-0.30763 0.6922,-0.30764 0.2991,1e-5 0.52983,0.10256 0.6922,0.30764 0.17091,0.20511 0.25637,0.45294 0.25637,0.74347 0,0.29058 -0.0855,0.5384 -0.25637,0.74348 -0.16237,0.19657 -0.3931,0.29484 -0.6922,0.29482 -0.2991,2e-5 -0.52983,-0.0982 -0.6922,-0.29482 -0.16237,-0.20508 -0.24355,-0.4529 -0.24355,-0.74348"
+ id="path3030"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 209.84175,131.14896 -1.43568,0 0,-19.68926 1.43568,0 0,19.68926"
+ id="path3032"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 220.92157,127.73923 c -1e-5,-0.282 -0.0556,-0.54692 -0.16664,-0.79475 -0.10256,-0.24782 -0.27774,-0.4871 -0.52556,-0.71784 -0.23929,-0.23073 -0.55975,-0.46573 -0.96139,-0.70502 -0.39311,-0.23927 -0.88448,-0.49564 -1.47413,-0.76911 -0.63239,-0.282 -1.1964,-0.55119 -1.69205,-0.80756 -0.49565,-0.26491 -0.91439,-0.54692 -1.25621,-0.84603 -0.33328,-0.30763 -0.58965,-0.64946 -0.76911,-1.02548 -0.17946,-0.38454 -0.26919,-0.83747 -0.26919,-1.35876 0,-0.51273 0.094,-0.99129 0.28201,-1.43568 0.19655,-0.45291 0.47428,-0.84601 0.8332,-1.1793 0.35892,-0.33327 0.79475,-0.59391 1.30749,-0.78193 0.51274,-0.19654 1.0853,-0.29481 1.71768,-0.29483 0.6751,2e-5 1.28185,0.10257 1.82023,0.30765 0.53837,0.19656 0.99129,0.4743 1.35877,0.8332 0.376,0.35893 0.66228,0.79049 0.85884,1.29467 0.19654,0.49566 0.29481,1.03831 0.29482,1.62796 l -1.42285,0 c -1e-5,-0.35891 -0.0641,-0.70074 -0.19228,-1.02549 -0.12819,-0.33327 -0.3162,-0.62382 -0.56402,-0.87166 -0.24783,-0.25635 -0.5512,-0.45718 -0.91011,-0.60247 -0.35893,-0.15381 -0.77339,-0.23072 -1.2434,-0.23073 -0.48711,1e-5 -0.90157,0.0684 -1.24339,0.2051 -0.34184,0.12819 -0.62384,0.30338 -0.84603,0.52556 -0.22219,0.21365 -0.38456,0.46147 -0.4871,0.74347 -0.10255,0.27347 -0.15383,0.55121 -0.15382,0.8332 -1e-5,0.28202 0.0427,0.53412 0.12818,0.7563 0.0855,0.21365 0.23928,0.42302 0.46147,0.6281 0.23073,0.20511 0.53837,0.41875 0.92293,0.64093 0.38455,0.21365 0.8802,0.46575 1.48695,0.75629 0.64092,0.28202 1.21775,0.55548 1.7305,0.82039 0.51273,0.26492 0.94429,0.55975 1.29467,0.88448 0.35891,0.31619 0.63237,0.67511 0.82039,1.07675 0.19654,0.40165 0.29481,0.88021 0.29482,1.43568 -1e-5,0.57256 -0.10255,1.08957 -0.30764,1.55104 -0.20511,0.46147 -0.49993,0.85457 -0.88448,1.1793 -0.37602,0.32474 -0.83321,0.57684 -1.37158,0.7563 -0.52984,0.17091 -1.11949,0.25637 -1.76896,0.25637 -0.75202,0 -1.41431,-0.10682 -1.98687,-0.32047 -0.57256,-0.22218 -1.05539,-0.51701 -1.44849,-0.88447 -0.38456,-0.36747 -0.67938,-0.79475 -0.88448,-1.28186 -0.19655,-0.4871 -0.29483,-1.00411 -0.29483,-1.55104 l 1.43568,0 c 0.0256,0.54693 0.13673,0.99558 0.33328,1.34595 0.20509,0.35037 0.45719,0.62811 0.75629,0.8332 0.2991,0.2051 0.63238,0.3461 0.99985,0.42301 0.36746,0.0769 0.73065,0.11537 1.08957,0.11537 0.47001,0 0.88447,-0.0598 1.2434,-0.17946 0.36746,-0.12818 0.67083,-0.29483 0.91012,-0.49992 0.24781,-0.21364 0.43154,-0.46147 0.55119,-0.74348 0.12818,-0.29055 0.19227,-0.59819 0.19228,-0.92293"
+ id="path3034"
+ inkscape:connector-curvature="0" />
+ </g>
+ <g
+ id="g3186"
+ transform="translate(9.9114061,8.2675716)">
+ <g
+ transform="matrix(1.2473152,0,0,1.2473152,-1270.0924,-84.630526)"
+ style="font-size:40px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:center;line-height:125%;letter-spacing:0.30000001px;word-spacing:0px;writing-mode:lr-tb;text-anchor:middle;fill:#3d3d3b;fill-opacity:1;stroke:none;font-family:Roboto Condensed;-inkscape-font-specification:'Roboto Condensed, Bold'"
+ id="flowRoot4199">
+ <path
+ d="m 1110.6414,141.23568 c -0.2995,0.32552 -0.7031,0.69661 -1.2109,1.11328 -0.5079,0.41667 -1.1459,0.8138 -1.9141,1.1914 -0.7552,0.36459 -1.6471,0.67058 -2.6758,0.91797 -1.0286,0.26042 -2.2135,0.39063 -3.5547,0.39063 -1.5885,0 -3.0208,-0.2474 -4.2968,-0.74219 -1.2761,-0.49479 -2.3698,-1.24349 -3.2813,-2.24609 -0.9114,-1.0026 -1.6146,-2.26562 -2.1094,-3.78907 -0.4817,-1.53645 -0.7226,-3.33983 -0.7226,-5.41015 l 0,-4.80469 c 0,-2.07029 0.2344,-3.86717 0.7031,-5.39062 0.4688,-1.53644 1.1328,-2.81248 1.9922,-3.82813 0.8724,-1.0156 1.9271,-1.7708 3.1641,-2.26562 1.2499,-0.49477 2.6497,-0.74216 4.1992,-0.74219 1.6145,3e-5 3.0078,0.20185 4.1797,0.60547 1.1718,0.40367 2.1484,1.00914 2.9296,1.8164 0.7813,0.7943 1.3802,1.78388 1.7969,2.96875 0.4167,1.1719 0.6836,2.52607 0.8008,4.0625 l -5.5859,0 c -0.078,-0.89841 -0.2084,-1.64711 -0.3907,-2.24609 -0.1692,-0.59894 -0.4166,-1.0742 -0.7421,-1.42578 -0.3126,-0.36456 -0.7032,-0.62498 -1.1719,-0.78125 -0.4558,-0.15623 -1.0026,-0.23435 -1.6406,-0.23438 -0.7553,3e-5 -1.4128,0.13675 -1.9727,0.41016 -0.5599,0.26044 -1.0287,0.69013 -1.4063,1.28906 -0.3645,0.58596 -0.638,1.35419 -0.8203,2.30469 -0.1823,0.93752 -0.2734,2.07684 -0.2734,3.41797 l 0,4.84375 c 0,1.35418 0.098,2.50001 0.293,3.4375 0.2083,0.93751 0.5143,1.70573 0.9179,2.30469 0.4167,0.58594 0.9375,1.01563 1.5625,1.28906 0.625,0.26042 1.3607,0.39063 2.2071,0.39062 0.5078,1e-5 0.9375,-0.0391 1.289,-0.11718 0.3646,-0.0781 0.6706,-0.16927 0.918,-0.27344 0.2604,-0.11718 0.4687,-0.23437 0.625,-0.35156 0.1693,-0.11719 0.3125,-0.21484 0.4297,-0.29297 l 0,-5.21485 -4.0235,0 0,-4.33593 9.7852,0 0,11.73828"
+ id="path3002"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 1131.2344,134.55599 c 0,3.32032 -0.573,5.86589 -1.7188,7.63672 -1.1328,1.77083 -2.8255,2.65625 -5.0781,2.65625 -0.8984,0 -1.6927,-0.18229 -2.3828,-0.54688 -0.6771,-0.36458 -1.263,-0.8789 -1.7578,-1.54297 l 0,9.82422 -5.5274,0 0,-29.25781 5.1172,0 0.1953,1.93359 c 0.5078,-0.74216 1.1133,-1.31508 1.8164,-1.71875 0.7162,-0.40362 1.5495,-0.60544 2.5,-0.60546 2.2787,2e-5 3.9844,0.83986 5.1172,2.51953 1.1458,1.6797 1.7188,4.25131 1.7188,7.71484 l 0,1.38672 m -5.5078,-1.38672 c -10e-5,-1.00259 -0.052,-1.85545 -0.1563,-2.55859 -0.1042,-0.71613 -0.2734,-1.29556 -0.5078,-1.73828 -0.2344,-0.45572 -0.5404,-0.78775 -0.918,-0.9961 -0.3646,-0.20831 -0.8203,-0.31248 -1.3672,-0.3125 -0.5859,2e-5 -1.0872,0.12372 -1.5039,0.3711 -0.4036,0.24741 -0.7291,0.59897 -0.9765,1.05468 l 0,9.90235 c 0.2343,0.42969 0.5534,0.76823 0.957,1.01562 0.4167,0.23438 0.9375,0.35157 1.5625,0.35156 1.0937,1e-5 1.849,-0.46223 2.2656,-1.38671 0.4297,-0.92448 0.6445,-2.36328 0.6446,-4.31641 l 0,-1.38672"
+ id="path3004"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 1134.2492,133.2474 c 0,-3.46353 0.625,-6.04816 1.875,-7.75391 1.25,-1.70571 3.0013,-2.55857 5.2539,-2.55859 1.0287,2e-5 1.9011,0.20184 2.6172,0.60546 0.7161,0.39065 1.3216,0.94403 1.8164,1.66016 l 0.2149,-1.875 4.9804,0 0,21.13281 c 0,1.44531 -0.2148,2.6888 -0.6445,3.73047 -0.4167,1.05468 -1.0091,1.92057 -1.7773,2.59766 -0.7683,0.67707 -1.6928,1.17838 -2.7735,1.5039 -1.0677,0.32552 -2.2591,0.48828 -3.5742,0.48829 -0.4948,-1e-5 -1.0417,-0.0521 -1.6406,-0.15625 -0.599,-0.10418 -1.1979,-0.26043 -1.7969,-0.46875 -0.599,-0.19532 -1.1719,-0.44923 -1.7188,-0.76172 -0.5338,-0.29949 -0.983,-0.65756 -1.3476,-1.07422 l 1.8555,-3.82813 c 0.2474,0.26042 0.5403,0.5013 0.8789,0.72266 0.3515,0.23437 0.7161,0.42968 1.0937,0.58594 0.3906,0.16926 0.7943,0.29947 1.211,0.39062 0.4166,0.10416 0.8203,0.15625 1.2109,0.15625 0.5599,0 1.0547,-0.0651 1.4844,-0.19531 0.4427,-0.11719 0.8138,-0.32552 1.1132,-0.625 0.2995,-0.29948 0.5209,-0.69662 0.6641,-1.19141 0.1562,-0.49479 0.2344,-1.11328 0.2344,-1.85547 l 0,-1.69921 c -0.5078,0.66406 -1.1003,1.17838 -1.7774,1.54296 -0.664,0.35157 -1.4453,0.52735 -2.3437,0.52735 -1.1198,0 -2.1224,-0.22136 -3.0078,-0.66406 -0.8724,-0.44271 -1.6146,-1.09375 -2.2266,-1.95313 -0.5989,-0.85937 -1.0612,-1.92057 -1.3867,-3.18359 -0.3255,-1.27604 -0.4883,-2.74739 -0.4883,-4.41407 l 0,-1.38671 m 5.5274,1.38671 c 0,1.95314 0.2539,3.37892 0.7617,4.27735 0.5078,0.88542 1.3151,1.32813 2.4219,1.32812 0.5989,1e-5 1.1002,-0.10416 1.5039,-0.3125 0.4166,-0.22135 0.7552,-0.52734 1.0156,-0.91797 l 0,-10.09765 c -0.2735,-0.42967 -0.6185,-0.7617 -1.0352,-0.9961 -0.4036,-0.23435 -0.8854,-0.35154 -1.4453,-0.35156 -1.0937,2e-5 -1.9075,0.44924 -2.4414,1.34766 -0.5208,0.89845 -0.7812,2.34376 -0.7812,4.33594 l 0,1.38671"
+ id="path3006"
+ inkscape:connector-curvature="0" />
+ </g>
+ <g
+ transform="matrix(1.2831852,0,0,1.2831852,-1242.5744,-88.562445)"
+ style="font-size:40px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:center;line-height:125%;letter-spacing:0.30000001px;word-spacing:0px;writing-mode:lr-tb;text-anchor:middle;fill:#1f8ece;fill-opacity:1;stroke:none;font-family:Roboto Condensed;-inkscape-font-specification:'Roboto Condensed, Bold'"
+ id="flowRoot4213">
+ <path
+ d="m 1121.475,132.79818 c 0,1.99219 -0.2474,3.74349 -0.7422,5.2539 -0.4948,1.51042 -1.1914,2.76693 -2.0898,3.76953 -0.8855,1.00261 -1.9597,1.75782 -3.2227,2.26563 -1.25,0.50781 -2.6367,0.76172 -4.1601,0.76172 -1.5235,0 -2.9167,-0.25391 -4.1797,-0.76172 -1.2631,-0.50781 -2.3503,-1.26302 -3.2618,-2.26563 -0.8984,-1.0026 -1.6015,-2.25911 -2.1093,-3.76953 -0.4948,-1.51041 -0.7422,-3.26171 -0.7422,-5.2539 l 0,-4.72657 c 0,-2.04425 0.2474,-3.84112 0.7422,-5.39062 0.4948,-1.56248 1.1914,-2.86456 2.0898,-3.90625 0.8985,-1.04164 1.9792,-1.82289 3.2422,-2.34375 1.263,-0.53383 2.6562,-0.80075 4.1797,-0.80078 1.5234,3e-5 2.9101,0.26695 4.1601,0.80078 1.2631,0.52086 2.3438,1.30211 3.2422,2.34375 0.9115,1.04169 1.6146,2.34377 2.1094,3.90625 0.4948,1.5495 0.7422,3.34637 0.7422,5.39062 l 0,4.72657 m -5.7617,-4.76563 c 0,-1.35415 -0.098,-2.50649 -0.293,-3.45703 -0.1953,-0.96352 -0.4818,-1.75128 -0.8594,-2.36328 -0.3776,-0.61196 -0.8463,-1.06118 -1.4062,-1.34766 -0.5599,-0.28643 -1.2045,-0.42966 -1.9336,-0.42968 -0.7422,2e-5 -1.3932,0.14325 -1.9531,0.42968 -0.5599,0.28648 -1.0287,0.7357 -1.4063,1.34766 -0.3776,0.612 -0.6641,1.39976 -0.8594,2.36328 -0.1953,0.95054 -0.2929,2.10288 -0.2929,3.45703 l 0,4.76563 c 0,1.28907 0.098,2.39584 0.2929,3.32031 0.1953,0.91147 0.4818,1.66016 0.8594,2.24609 0.3906,0.58595 0.8659,1.01563 1.4258,1.28907 0.5729,0.27344 1.2305,0.41016 1.9727,0.41015 0.7291,1e-5 1.3671,-0.13671 1.914,-0.41015 0.5599,-0.27344 1.0286,-0.70312 1.4063,-1.28907 0.3776,-0.58593 0.6575,-1.33462 0.8398,-2.24609 0.1953,-0.92447 0.293,-2.03124 0.293,-3.32031 l 0,-4.76563"
+ style="fill:#1f8ece;fill-opacity:1"
+ id="path3009"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 1131.7164,139.69271 10.0781,0 0,4.76562 -15.8203,0 0,-28.4375 5.7422,0 0,23.67188"
+ style="fill:#1f8ece;fill-opacity:1"
+ id="path3011"
+ inkscape:connector-curvature="0" />
+ </g>
+ </g>
+</svg>
File Metadata
Details
Attached
Mime Type
text/x-diff
Expires
Thu, Feb 26, 7:17 PM (15 h, 30 m)
Storage Engine
local-disk
Storage Format
Raw Data
Storage Handle
4f/a1/0a03e9a034646b9fcb7bb0616ed1
Attached To
rO GpgOL
Event Timeline
Log In to Comment