19 Commits

Author SHA1 Message Date
9814c1a966 Cleaned up keymaps and a few files. 2023-09-01 17:11:17 -04:00
c08235014a Huge changes. Changed init.lua to have my settings.lua. Cleaned up a few plugins. What a mess 2023-08-31 17:48:30 -04:00
1ee43ea0ae removed neorg in favor of a more robust mkdnflow. Improved/updated nvim-tree 2023-08-30 17:10:04 -04:00
7d2555b42f Updated a TroubleTask to RISK 2023-08-28 16:34:00 -04:00
89abb2744f More Neorg Config. Working on getting this templates WIP plugin set up, but not working yet. 2023-08-25 16:42:08 -04:00
a86c559502 added some neorg configuration items. 2023-08-22 17:18:51 -04:00
5ccc55acc1 Added Neorg and began its exploration. 2023-08-10 16:26:53 -04:00
ff327001e4 Added adjacent.nvim 2023-08-01 15:16:41 -04:00
daf05a0684 Added buffer to nvim-cmp. A few small changes to completions and snippets. 2023-07-28 17:23:18 -04:00
5be1c4a058 Update some settings for markdown files. Removed a few plugins. 2023-07-27 21:56:08 -04:00
40ee634f58 Added to tmux.conf that when a new pane is created, its in the same working directory! So clutch. 2023-07-16 13:22:40 -04:00
69670a07ce Updated the Readme for others to take a look at 2023-07-14 16:03:18 -04:00
269882e420 Reconfigured Markdown Preview and some other plugins. Cleaned up nvim mapper. 2023-07-12 21:30:34 -04:00
1091d71798 moved some plugins around. trying to figure out why vim-arduino isn't working. 2023-07-05 13:38:43 -04:00
6ab45cfe73 Added vim arduino 2023-06-30 16:04:09 -04:00
c901bb0dc1 Updated some plugins, including python's f-string plugin. A few other changes. 2023-06-29 17:30:38 -04:00
cfc13d1567 Added some plugins and organization 2023-06-28 16:58:05 -04:00
e8b1d00fc8 Idk what happened, but my tmux folder got removed. Didn't want to lose my changes, so I added it back in and pulled the plugins again. Seems to be working as expected. 2023-06-27 14:53:04 -04:00
8b13ced135 Moved settings and keymaps around. Created a proper nvim-mapper file. Added dracula back in. Emptied the highest level init.lua 2023-06-26 21:09:20 -04:00
86 changed files with 23972 additions and 2990 deletions

Binary file not shown.

View File

@ -1,6 +0,0 @@
local lsp_config = require('nvim-lspconfig')
local on_attach = require('lsp/on_attach')
lsp_config.bashls.setup({
on_attach = on_attach
})

View File

@ -1,21 +0,0 @@
local lsp_config = require('nvim-lspconfig')
local on_attach = require('lsp/on_attach')
lsp_config.cssls.setup({
filetypes = { 'css', 'sass', 'scss' },
settings = {
css = {
validate = true
},
sass = {
validate = true
},
scss = {
validate = true
}
},
on_attach = function(client)
client.resolved_capabilities.document_formatting = false
on_attach(client)
end
})

View File

@ -1,9 +0,0 @@
local lsp_config = require('plugins/nvim-lspconfig')
local on_attach = require('lsp/on_attach')
lsp_config.html.setup({
on_attach = function(client)
client.resolved_capabilities.document_formatting = false
on_attach(client)
end
})

View File

@ -1,37 +0,0 @@
vim.lsp.handlers["textDocument/publishDiagnostics"] = vim.lsp.with(
vim.lsp.diagnostic.on_publish_diagnostics,
{
underline = true,
virtual_text = {
prefix = "",
spacing = 2,
},
update_in_insert = true,
severity_sort = true,
}
)
vim.fn.sign_define("LspDiagnosticsSignError", {
text = "",
numhl = "LspDiagnosticsDefaultError",
})
vim.fn.sign_define("LspDiagnosticsSignWarning", {
text = "",
numhl = "LspDiagnosticsDefaultWarning",
})
vim.fn.sign_define("LspDiagnosticsSignInformation", {
text = "",
numhl = "LspDiagnosticsDefaultInformation",
})
vim.fn.sign_define("LspDiagnosticsSignHint", {
text = "",
numhl = "LspDiagnosticsDefaultHint",
})
require "lsp/bash"
require "lsp/css"
require "lsp/html"
require "lsp/json"
require "lsp/typescript"
require "lsp/vim"
require "lsp/vim"

View File

@ -1,9 +0,0 @@
local lsp_config = require('plugins/nvim-lspconfig')
local on_attach = require('lsp/on_attach')
lsp_config.jsonls.setup({
on_attach = function(client)
client.resolved_capabilities.document_formatting = false
on_attach(client)
end
})

View File

@ -1,29 +0,0 @@
local lsp_config = require('nvim-lspconfig')
local on_attach = require('lsp/on_attach')
lsp_config.sumneko_lua.setup({
on_attach = on_attach,
settings = {
Lua = {
runtime = {
version = 'LuaJIT',
},
diagnostics = {
enable = true,
globals = {
"vim",
"describe",
"it",
"before_each",
"after_each"
}
},
workspace = {
library = {
[vim.fn.expand('$VIMRUNTIME/lua')] = true,
[vim.fn.expand('$VIMRUNTIME/lua/vim/lsp')] = true
},
},
}
}
})

View File

@ -1,16 +0,0 @@
local lsp_configs = require('plugins/nvim-lspconfig')
lsp_configs.prosemd = {
default_config = {
-- Update the path to prosemd-lsp
cmd = { "/usr/local/bin/prosemd-lsp", "--stdio" },
filetypes = { "markdown" },
root_dir = function(fname)
return lsp_util.find_git_ancestor(fname) or vim.fn.getcwd()
end,
settings = {},
}
}
-- Use your attach function here
lsp.prosemd.setup{ on_attach = on_attach }

View File

@ -1,9 +0,0 @@
local lsp_config = require('plugins/nvim-lspconfig')
local on_attach = require('lsp/on_attach')
lsp_config.tsserver.setup({
on_attach = function(client)
client.resolved_capabilities.document_formatting = false
on_attach(client)
end
})

View File

@ -1,9 +0,0 @@
local lsp_config = require('nvim-lspconfig')
local on_attach = require('lsp/on_attach')
lsp_config.tsserver.setup({
on_attach = function(client)
client.resolved_capabilities.document_formatting = false
on_attach(client)
end
})

View File

@ -1,6 +0,0 @@
local lsp_config = require('nvim-lspconfig')
local on_attach = require('lsp/on_attach')
lsp_config.vimls.setup({
on_attach = on_attach
})

Binary file not shown.

Before

Width:  |  Height:  |  Size: 99 KiB

View File

@ -1,52 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="1920pt" height="1080pt" viewBox="0 0 1920 1080" version="1.1">
<defs>
<g>
<symbol overflow="visible" id="glyph0-0">
<path style="stroke:none;" d="M 0.386719 1.375 L 0.386719 -5.484375 L 4.277344 -5.484375 L 4.277344 1.375 Z M 0.824219 0.941406 L 3.84375 0.941406 L 3.84375 -5.046875 L 0.824219 -5.046875 Z "/>
</symbol>
<symbol overflow="visible" id="glyph0-1">
<path style="stroke:none;" d="M 1.296875 -0.535156 L 1.773438 -0.535156 C 1.910156 -0.535156 2.007812 -0.515625 2.066406 -0.476562 C 2.125 -0.433594 2.152344 -0.367188 2.152344 -0.273438 C 2.152344 -0.167969 2.125 -0.0976562 2.070312 -0.0585938 C 2.015625 -0.0195312 1.898438 0 1.710938 0 L 0.585938 0 C 0.492188 0 0.425781 -0.0234375 0.378906 -0.0664062 C 0.332031 -0.113281 0.3125 -0.183594 0.3125 -0.273438 C 0.3125 -0.375 0.335938 -0.445312 0.390625 -0.480469 C 0.441406 -0.515625 0.542969 -0.535156 0.691406 -0.535156 L 0.761719 -0.535156 L 0.761719 -3.957031 L 0.667969 -3.957031 C 0.457031 -3.957031 0.3125 -3.976562 0.238281 -4.019531 C 0.164062 -4.058594 0.125 -4.128906 0.125 -4.230469 C 0.125 -4.324219 0.15625 -4.390625 0.222656 -4.433594 C 0.285156 -4.476562 0.390625 -4.496094 0.535156 -4.496094 C 0.535156 -4.496094 0.5625 -4.496094 0.613281 -4.5 C 0.664062 -4.503906 0.710938 -4.503906 0.761719 -4.503906 L 1.121094 -4.503906 C 1.238281 -4.503906 1.320312 -4.492188 1.363281 -4.464844 C 1.410156 -4.4375 1.46875 -4.371094 1.53125 -4.261719 L 3.445312 -0.957031 L 3.445312 -3.957031 L 3.027344 -3.957031 C 2.890625 -3.957031 2.789062 -3.980469 2.730469 -4.023438 C 2.667969 -4.066406 2.636719 -4.136719 2.636719 -4.230469 C 2.636719 -4.335938 2.660156 -4.40625 2.714844 -4.445312 C 2.769531 -4.484375 2.878906 -4.503906 3.050781 -4.503906 L 4.140625 -4.503906 C 4.230469 -4.503906 4.296875 -4.480469 4.34375 -4.433594 C 4.386719 -4.390625 4.410156 -4.320312 4.410156 -4.230469 C 4.410156 -4.128906 4.382812 -4.058594 4.328125 -4.019531 C 4.273438 -3.976562 4.171875 -3.957031 4.027344 -3.957031 L 3.984375 -3.957031 L 3.984375 -0.132812 C 3.984375 -0.0585938 3.964844 -0.0078125 3.933594 0.0195312 C 3.898438 0.046875 3.820312 0.0625 3.695312 0.0625 C 3.570312 0.0625 3.496094 0.0546875 3.464844 0.0390625 C 3.4375 0.0273438 3.386719 -0.0390625 3.320312 -0.15625 L 1.296875 -3.636719 Z "/>
</symbol>
<symbol overflow="visible" id="glyph0-2">
<path style="stroke:none;" d="M 1.046875 -1.585938 C 1.066406 -1.222656 1.191406 -0.941406 1.417969 -0.742188 C 1.644531 -0.542969 1.953125 -0.445312 2.347656 -0.445312 C 2.644531 -0.445312 2.964844 -0.523438 3.316406 -0.683594 C 3.664062 -0.839844 3.875 -0.917969 3.949219 -0.917969 C 4.023438 -0.917969 4.089844 -0.894531 4.140625 -0.847656 C 4.191406 -0.800781 4.214844 -0.738281 4.214844 -0.667969 C 4.214844 -0.59375 4.1875 -0.527344 4.136719 -0.46875 C 4.082031 -0.40625 3.996094 -0.347656 3.882812 -0.289062 C 3.628906 -0.164062 3.367188 -0.0703125 3.097656 -0.00390625 C 2.828125 0.0625 2.558594 0.09375 2.292969 0.09375 C 1.714844 0.09375 1.253906 -0.0703125 0.90625 -0.40625 C 0.558594 -0.738281 0.386719 -1.179688 0.386719 -1.726562 C 0.386719 -2.285156 0.570312 -2.742188 0.9375 -3.085938 C 1.304688 -3.433594 1.785156 -3.609375 2.375 -3.609375 C 2.90625 -3.609375 3.351562 -3.445312 3.703125 -3.121094 C 4.054688 -2.796875 4.230469 -2.40625 4.230469 -1.945312 C 4.230469 -1.804688 4.199219 -1.707031 4.140625 -1.660156 C 4.082031 -1.613281 3.921875 -1.585938 3.65625 -1.585938 Z M 1.066406 -2.085938 L 3.539062 -2.085938 C 3.5 -2.386719 3.375 -2.628906 3.160156 -2.8125 C 2.945312 -2.996094 2.683594 -3.085938 2.375 -3.085938 C 2.039062 -3.085938 1.753906 -3 1.523438 -2.820312 C 1.292969 -2.644531 1.140625 -2.398438 1.066406 -2.085938 Z "/>
</symbol>
<symbol overflow="visible" id="glyph0-3">
<path style="stroke:none;" d="M 2.308594 -1.929688 L 1.820312 -0.125 C 1.792969 -0.0273438 1.753906 0.0390625 1.707031 0.0742188 C 1.65625 0.113281 1.578125 0.132812 1.476562 0.132812 C 1.386719 0.132812 1.316406 0.109375 1.265625 0.0625 C 1.214844 0.0117188 1.167969 -0.0742188 1.128906 -0.203125 L 0.257812 -2.96875 L 0.222656 -2.96875 C 0.117188 -2.96875 0.0429688 -2.992188 -0.00390625 -3.03125 C -0.0507812 -3.074219 -0.0742188 -3.144531 -0.0742188 -3.242188 C -0.0742188 -3.328125 -0.0507812 -3.394531 0 -3.441406 C 0.046875 -3.488281 0.121094 -3.507812 0.214844 -3.507812 L 1.230469 -3.507812 C 1.367188 -3.507812 1.460938 -3.488281 1.507812 -3.449219 C 1.554688 -3.410156 1.578125 -3.34375 1.578125 -3.242188 C 1.578125 -3.183594 1.566406 -3.128906 1.539062 -3.085938 C 1.511719 -3.042969 1.476562 -3.015625 1.433594 -3.003906 C 1.390625 -2.992188 1.339844 -2.980469 1.28125 -2.976562 C 1.222656 -2.972656 1.15625 -2.96875 1.074219 -2.96875 L 0.855469 -2.96875 L 1.507812 -0.691406 L 1.996094 -2.347656 C 2.023438 -2.441406 2.066406 -2.511719 2.113281 -2.546875 C 2.164062 -2.585938 2.242188 -2.605469 2.339844 -2.605469 C 2.429688 -2.605469 2.5 -2.582031 2.554688 -2.53125 C 2.605469 -2.480469 2.652344 -2.394531 2.691406 -2.269531 L 3.167969 -0.691406 L 3.792969 -2.96875 L 3.539062 -2.96875 C 3.363281 -2.96875 3.246094 -2.988281 3.1875 -3.027344 C 3.125 -3.066406 3.09375 -3.140625 3.09375 -3.242188 C 3.09375 -3.34375 3.117188 -3.414062 3.164062 -3.453125 C 3.210938 -3.492188 3.296875 -3.507812 3.429688 -3.507812 L 4.445312 -3.507812 C 4.523438 -3.507812 4.585938 -3.484375 4.625 -3.441406 C 4.664062 -3.394531 4.683594 -3.328125 4.683594 -3.242188 C 4.683594 -3.148438 4.660156 -3.078125 4.613281 -3.039062 C 4.566406 -2.996094 4.480469 -2.976562 4.355469 -2.96875 L 3.5 -0.125 C 3.46875 -0.0273438 3.425781 0.0390625 3.378906 0.0742188 C 3.328125 0.113281 3.253906 0.132812 3.15625 0.132812 C 3.066406 0.132812 2.992188 0.109375 2.9375 0.0585938 C 2.886719 0.0078125 2.84375 -0.078125 2.804688 -0.203125 Z "/>
</symbol>
<symbol overflow="visible" id="glyph0-4">
<g>
</g>
</symbol>
<symbol overflow="visible" id="glyph0-5">
<path style="stroke:none;" d="M 3.476562 -3.28125 L 3.476562 -3.296875 C 3.476562 -3.378906 3.5 -3.441406 3.546875 -3.480469 C 3.59375 -3.519531 3.667969 -3.539062 3.769531 -3.539062 C 3.875 -3.539062 3.945312 -3.507812 3.984375 -3.449219 C 4.023438 -3.386719 4.042969 -3.261719 4.042969 -3.070312 L 4.042969 -2.367188 C 4.042969 -2.273438 4.019531 -2.203125 3.972656 -2.15625 C 3.925781 -2.109375 3.851562 -2.085938 3.753906 -2.085938 C 3.6875 -2.085938 3.628906 -2.105469 3.578125 -2.144531 C 3.53125 -2.183594 3.46875 -2.265625 3.398438 -2.386719 C 3.277344 -2.59375 3.128906 -2.75 2.957031 -2.855469 C 2.78125 -2.960938 2.582031 -3.011719 2.359375 -3.011719 C 1.964844 -3.011719 1.640625 -2.894531 1.394531 -2.660156 C 1.148438 -2.429688 1.023438 -2.128906 1.023438 -1.757812 C 1.023438 -1.382812 1.144531 -1.074219 1.378906 -0.832031 C 1.617188 -0.59375 1.921875 -0.476562 2.292969 -0.476562 C 2.464844 -0.476562 2.625 -0.5 2.777344 -0.546875 C 2.929688 -0.59375 3.074219 -0.660156 3.210938 -0.753906 C 3.261719 -0.785156 3.324219 -0.832031 3.40625 -0.894531 C 3.570312 -1.03125 3.699219 -1.097656 3.792969 -1.097656 C 3.871094 -1.097656 3.9375 -1.074219 3.984375 -1.023438 C 4.035156 -0.972656 4.058594 -0.910156 4.058594 -0.832031 C 4.058594 -0.632812 3.871094 -0.425781 3.492188 -0.21875 C 3.113281 -0.0078125 2.710938 0.09375 2.285156 0.09375 C 1.738281 0.09375 1.277344 -0.0820312 0.914062 -0.433594 C 0.546875 -0.785156 0.363281 -1.222656 0.363281 -1.75 C 0.363281 -2.277344 0.546875 -2.71875 0.910156 -3.070312 C 1.277344 -3.421875 1.730469 -3.601562 2.277344 -3.601562 C 2.46875 -3.601562 2.664062 -3.574219 2.859375 -3.523438 C 3.050781 -3.472656 3.257812 -3.390625 3.476562 -3.28125 Z "/>
</symbol>
<symbol overflow="visible" id="glyph0-6">
<path style="stroke:none;" d="M 2.332031 -0.4375 C 2.722656 -0.4375 3.042969 -0.558594 3.289062 -0.808594 C 3.539062 -1.054688 3.664062 -1.367188 3.664062 -1.75 C 3.664062 -2.132812 3.539062 -2.449219 3.289062 -2.699219 C 3.039062 -2.949219 2.71875 -3.070312 2.332031 -3.070312 C 1.945312 -3.070312 1.625 -2.949219 1.375 -2.699219 C 1.125 -2.449219 1.003906 -2.132812 1.003906 -1.75 C 1.003906 -1.367188 1.125 -1.050781 1.375 -0.804688 C 1.621094 -0.558594 1.941406 -0.4375 2.332031 -0.4375 Z M 4.324219 -1.75 C 4.324219 -1.207031 4.140625 -0.765625 3.769531 -0.421875 C 3.402344 -0.078125 2.921875 0.09375 2.332031 0.09375 C 1.746094 0.09375 1.265625 -0.078125 0.894531 -0.421875 C 0.527344 -0.765625 0.339844 -1.207031 0.339844 -1.75 C 0.339844 -2.292969 0.527344 -2.734375 0.894531 -3.078125 C 1.265625 -3.421875 1.746094 -3.59375 2.332031 -3.59375 C 2.917969 -3.59375 3.398438 -3.421875 3.769531 -3.074219 C 4.140625 -2.730469 4.324219 -2.289062 4.324219 -1.75 Z "/>
</symbol>
<symbol overflow="visible" id="glyph0-7">
<path style="stroke:none;" d="M 3.742188 -2.113281 C 3.742188 -2.472656 3.707031 -2.714844 3.644531 -2.839844 C 3.578125 -2.964844 3.46875 -3.027344 3.3125 -3.027344 C 3.125 -3.027344 2.976562 -2.945312 2.867188 -2.785156 C 2.753906 -2.621094 2.699219 -2.398438 2.699219 -2.113281 L 2.699219 -0.535156 L 2.769531 -0.535156 C 2.921875 -0.535156 3.027344 -0.515625 3.078125 -0.480469 C 3.128906 -0.445312 3.15625 -0.375 3.15625 -0.273438 C 3.15625 -0.183594 3.132812 -0.113281 3.089844 -0.0664062 C 3.046875 -0.0234375 2.980469 0 2.894531 0 L 2.410156 0 C 2.300781 0 2.230469 -0.0234375 2.1875 -0.0742188 C 2.148438 -0.125 2.128906 -0.234375 2.128906 -0.402344 L 2.128906 -2.410156 C 2.128906 -2.601562 2.085938 -2.75 2 -2.863281 C 1.914062 -2.972656 1.796875 -3.027344 1.648438 -3.027344 C 1.535156 -3.027344 1.429688 -2.992188 1.335938 -2.925781 C 1.242188 -2.859375 1.160156 -2.757812 1.089844 -2.628906 L 1.089844 -0.535156 L 1.230469 -0.535156 C 1.382812 -0.535156 1.484375 -0.515625 1.539062 -0.476562 C 1.589844 -0.441406 1.617188 -0.371094 1.617188 -0.273438 C 1.617188 -0.167969 1.597656 -0.0976562 1.554688 -0.0585938 C 1.511719 -0.0195312 1.429688 0 1.304688 0 L 0.296875 0 C 0.199219 0 0.125 -0.0234375 0.078125 -0.0664062 C 0.03125 -0.109375 0.0078125 -0.179688 0.0078125 -0.273438 C 0.0078125 -0.375 0.0390625 -0.445312 0.0976562 -0.480469 C 0.15625 -0.515625 0.273438 -0.535156 0.445312 -0.535156 L 0.519531 -0.535156 L 0.519531 -2.96875 L 0.453125 -2.96875 C 0.273438 -2.96875 0.152344 -2.988281 0.0898438 -3.03125 C 0.0234375 -3.070312 -0.0078125 -3.140625 -0.0078125 -3.242188 C -0.0078125 -3.332031 0.0195312 -3.398438 0.0664062 -3.441406 C 0.117188 -3.488281 0.195312 -3.507812 0.296875 -3.507812 L 0.878906 -3.507812 C 0.960938 -3.507812 1.015625 -3.496094 1.042969 -3.464844 C 1.070312 -3.4375 1.085938 -3.375 1.089844 -3.28125 C 1.195312 -3.390625 1.304688 -3.476562 1.425781 -3.527344 C 1.542969 -3.582031 1.675781 -3.609375 1.828125 -3.609375 C 2.003906 -3.609375 2.148438 -3.570312 2.265625 -3.492188 C 2.378906 -3.414062 2.464844 -3.296875 2.523438 -3.140625 C 2.628906 -3.300781 2.75 -3.417969 2.890625 -3.492188 C 3.03125 -3.570312 3.1875 -3.609375 3.367188 -3.609375 C 3.695312 -3.609375 3.933594 -3.5 4.085938 -3.289062 C 4.234375 -3.074219 4.308594 -2.730469 4.308594 -2.253906 L 4.308594 -0.535156 L 4.371094 -0.535156 C 4.527344 -0.535156 4.632812 -0.515625 4.6875 -0.476562 C 4.738281 -0.441406 4.765625 -0.371094 4.765625 -0.273438 C 4.765625 -0.183594 4.742188 -0.113281 4.699219 -0.0664062 C 4.652344 -0.0234375 4.585938 0 4.496094 0 L 4.035156 0 C 3.933594 0 3.859375 -0.03125 3.8125 -0.0898438 C 3.765625 -0.152344 3.742188 -0.25 3.742188 -0.378906 Z "/>
</symbol>
<symbol overflow="visible" id="glyph0-8">
<path style="stroke:none;" d="M 1.980469 -4.601562 C 1.980469 -4.875 2.007812 -5.046875 2.054688 -5.117188 C 2.105469 -5.1875 2.210938 -5.226562 2.375 -5.226562 C 2.53125 -5.226562 2.632812 -5.195312 2.683594 -5.136719 C 2.734375 -5.078125 2.761719 -4.933594 2.761719 -4.710938 C 2.761719 -4.496094 2.738281 -4.359375 2.691406 -4.308594 C 2.644531 -4.257812 2.539062 -4.230469 2.375 -4.230469 C 2.210938 -4.230469 2.105469 -4.253906 2.054688 -4.300781 C 2.007812 -4.351562 1.980469 -4.449219 1.980469 -4.601562 Z M 2.683594 -0.535156 L 3.902344 -0.535156 C 4.003906 -0.535156 4.074219 -0.515625 4.121094 -0.472656 C 4.167969 -0.429688 4.191406 -0.363281 4.191406 -0.273438 C 4.191406 -0.167969 4.171875 -0.0976562 4.125 -0.0585938 C 4.082031 -0.0195312 4 0 3.882812 0 L 0.933594 0 C 0.832031 0 0.757812 -0.0234375 0.707031 -0.0664062 C 0.65625 -0.113281 0.628906 -0.183594 0.628906 -0.273438 C 0.628906 -0.363281 0.65625 -0.429688 0.710938 -0.472656 C 0.761719 -0.515625 0.84375 -0.535156 0.949219 -0.535156 L 2.109375 -0.535156 L 2.109375 -2.96875 L 1.367188 -2.96875 C 1.261719 -2.96875 1.183594 -2.992188 1.128906 -3.039062 C 1.074219 -3.085938 1.046875 -3.15625 1.046875 -3.242188 C 1.046875 -3.332031 1.074219 -3.398438 1.125 -3.441406 C 1.175781 -3.488281 1.25 -3.507812 1.351562 -3.507812 L 2.464844 -3.507812 C 2.53125 -3.507812 2.585938 -3.496094 2.625 -3.46875 C 2.664062 -3.441406 2.683594 -3.402344 2.683594 -3.351562 Z "/>
</symbol>
<symbol overflow="visible" id="glyph0-9">
<path style="stroke:none;" d="M 3.367188 -3.296875 C 3.492188 -3.296875 3.582031 -3.273438 3.640625 -3.230469 C 3.695312 -3.1875 3.726562 -3.121094 3.726562 -3.027344 C 3.726562 -2.9375 3.699219 -2.871094 3.644531 -2.828125 C 3.59375 -2.785156 3.511719 -2.761719 3.40625 -2.761719 L 1.867188 -2.761719 L 1.867188 -1.492188 C 1.867188 -1.078125 1.921875 -0.804688 2.03125 -0.671875 C 2.136719 -0.539062 2.320312 -0.476562 2.582031 -0.476562 C 2.8125 -0.476562 3.089844 -0.542969 3.410156 -0.675781 C 3.730469 -0.808594 3.929688 -0.878906 4.007812 -0.878906 C 4.078125 -0.878906 4.136719 -0.851562 4.1875 -0.800781 C 4.238281 -0.75 4.261719 -0.6875 4.261719 -0.613281 C 4.261719 -0.53125 4.230469 -0.457031 4.167969 -0.398438 C 4.105469 -0.335938 4 -0.273438 3.851562 -0.214844 C 3.601562 -0.117188 3.378906 -0.046875 3.179688 0 C 2.980469 0.046875 2.796875 0.0664062 2.621094 0.0664062 C 2.324219 0.0664062 2.074219 0.0195312 1.875 -0.0742188 C 1.671875 -0.167969 1.523438 -0.308594 1.425781 -0.496094 C 1.375 -0.585938 1.335938 -0.691406 1.316406 -0.8125 C 1.292969 -0.933594 1.285156 -1.121094 1.285156 -1.375 L 1.285156 -2.761719 L 0.636719 -2.761719 C 0.53125 -2.761719 0.453125 -2.78125 0.40625 -2.824219 C 0.359375 -2.867188 0.335938 -2.933594 0.335938 -3.027344 C 0.335938 -3.128906 0.367188 -3.203125 0.433594 -3.238281 C 0.5 -3.277344 0.640625 -3.296875 0.855469 -3.296875 L 1.285156 -3.296875 L 1.285156 -4.277344 C 1.285156 -4.386719 1.308594 -4.464844 1.355469 -4.515625 C 1.402344 -4.570312 1.472656 -4.59375 1.570312 -4.59375 C 1.683594 -4.59375 1.761719 -4.5625 1.804688 -4.5 C 1.847656 -4.4375 1.867188 -4.292969 1.867188 -4.066406 L 1.867188 -3.296875 Z "/>
</symbol>
</g>
</defs>
<g id="surface80">
<g style="fill:rgb(100%,100%,100%);fill-opacity:1;">
<use xlink:href="#glyph0-1" x="30" y="25.863281"/>
<use xlink:href="#glyph0-2" x="35" y="25.863281"/>
<use xlink:href="#glyph0-3" x="40" y="25.863281"/>
<use xlink:href="#glyph0-4" x="45" y="25.863281"/>
<use xlink:href="#glyph0-5" x="50" y="25.863281"/>
<use xlink:href="#glyph0-6" x="55" y="25.863281"/>
<use xlink:href="#glyph0-7" x="60" y="25.863281"/>
<use xlink:href="#glyph0-7" x="65" y="25.863281"/>
<use xlink:href="#glyph0-8" x="70" y="25.863281"/>
<use xlink:href="#glyph0-9" x="75" y="25.863281"/>
</g>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 15 KiB

View File

@ -1,91 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="1920pt" height="1080pt" viewBox="0 0 1920 1080" version="1.1">
<defs>
<g>
<symbol overflow="visible" id="glyph0-0">
<path style="stroke:none;" d="M 0.195312 0.6875 L 0.195312 -2.742188 L 2.136719 -2.742188 L 2.136719 0.6875 Z M 0.414062 0.472656 L 1.921875 0.472656 L 1.921875 -2.523438 L 0.414062 -2.523438 Z "/>
</symbol>
<symbol overflow="visible" id="glyph0-1">
<path style="stroke:none;" d="M 0.613281 -0.0664062 C 0.605469 -0.0078125 0.589844 0.03125 0.566406 0.0507812 C 0.542969 0.0742188 0.507812 0.0859375 0.460938 0.0859375 C 0.40625 0.0859375 0.367188 0.0703125 0.339844 0.0390625 C 0.316406 0.0078125 0.300781 -0.0429688 0.296875 -0.113281 L 0.273438 -0.550781 L 0.273438 -0.585938 C 0.273438 -0.648438 0.285156 -0.691406 0.308594 -0.714844 C 0.332031 -0.742188 0.367188 -0.753906 0.421875 -0.753906 C 0.5 -0.753906 0.554688 -0.699219 0.585938 -0.589844 C 0.601562 -0.535156 0.617188 -0.496094 0.628906 -0.46875 C 0.675781 -0.378906 0.746094 -0.308594 0.839844 -0.261719 C 0.9375 -0.214844 1.050781 -0.191406 1.183594 -0.191406 C 1.347656 -0.191406 1.480469 -0.230469 1.582031 -0.304688 C 1.683594 -0.382812 1.734375 -0.480469 1.734375 -0.601562 C 1.734375 -0.703125 1.703125 -0.78125 1.640625 -0.84375 C 1.578125 -0.902344 1.484375 -0.941406 1.367188 -0.960938 L 1.085938 -1 C 0.824219 -1.035156 0.632812 -1.105469 0.511719 -1.207031 C 0.390625 -1.308594 0.332031 -1.449219 0.332031 -1.632812 C 0.332031 -1.828125 0.410156 -1.988281 0.570312 -2.121094 C 0.730469 -2.253906 0.929688 -2.320312 1.171875 -2.320312 C 1.238281 -2.320312 1.3125 -2.308594 1.390625 -2.292969 C 1.46875 -2.273438 1.554688 -2.246094 1.652344 -2.203125 C 1.65625 -2.242188 1.664062 -2.265625 1.683594 -2.28125 C 1.699219 -2.296875 1.730469 -2.300781 1.773438 -2.300781 C 1.828125 -2.300781 1.867188 -2.292969 1.890625 -2.277344 C 1.910156 -2.261719 1.925781 -2.222656 1.929688 -2.160156 L 1.957031 -1.761719 L 1.957031 -1.742188 C 1.957031 -1.699219 1.945312 -1.664062 1.917969 -1.640625 C 1.894531 -1.617188 1.859375 -1.601562 1.8125 -1.601562 C 1.746094 -1.601562 1.691406 -1.648438 1.65625 -1.742188 C 1.636719 -1.796875 1.621094 -1.835938 1.601562 -1.863281 C 1.5625 -1.925781 1.5 -1.976562 1.421875 -2.007812 C 1.34375 -2.042969 1.253906 -2.0625 1.15625 -2.0625 C 1.003906 -2.0625 0.878906 -2.023438 0.78125 -1.945312 C 0.6875 -1.871094 0.636719 -1.769531 0.636719 -1.648438 C 0.636719 -1.550781 0.675781 -1.476562 0.746094 -1.421875 C 0.816406 -1.367188 0.925781 -1.328125 1.074219 -1.308594 L 1.375 -1.269531 C 1.597656 -1.238281 1.761719 -1.171875 1.875 -1.066406 C 1.984375 -0.960938 2.042969 -0.816406 2.042969 -0.636719 C 2.042969 -0.425781 1.960938 -0.253906 1.804688 -0.125 C 1.644531 0.00390625 1.433594 0.0664062 1.171875 0.0664062 C 1.078125 0.0664062 0.988281 0.0546875 0.898438 0.0351562 C 0.808594 0.0117188 0.710938 -0.0195312 0.613281 -0.0664062 Z "/>
</symbol>
<symbol overflow="visible" id="glyph0-2">
<path style="stroke:none;" d="M 0.523438 -0.792969 C 0.535156 -0.609375 0.597656 -0.46875 0.710938 -0.371094 C 0.824219 -0.273438 0.976562 -0.222656 1.171875 -0.222656 C 1.320312 -0.222656 1.484375 -0.261719 1.65625 -0.339844 C 1.832031 -0.417969 1.9375 -0.460938 1.976562 -0.460938 C 2.011719 -0.460938 2.042969 -0.449219 2.070312 -0.421875 C 2.09375 -0.398438 2.109375 -0.371094 2.109375 -0.335938 C 2.109375 -0.296875 2.09375 -0.265625 2.066406 -0.234375 C 2.042969 -0.203125 2 -0.171875 1.941406 -0.144531 C 1.816406 -0.0820312 1.683594 -0.0351562 1.550781 0 C 1.414062 0.03125 1.28125 0.046875 1.148438 0.046875 C 0.859375 0.046875 0.628906 -0.0351562 0.453125 -0.203125 C 0.28125 -0.367188 0.195312 -0.589844 0.195312 -0.863281 C 0.195312 -1.144531 0.285156 -1.371094 0.46875 -1.542969 C 0.652344 -1.71875 0.890625 -1.804688 1.1875 -1.804688 C 1.453125 -1.804688 1.675781 -1.722656 1.851562 -1.5625 C 2.027344 -1.398438 2.117188 -1.203125 2.117188 -0.972656 C 2.117188 -0.902344 2.101562 -0.855469 2.070312 -0.828125 C 2.042969 -0.804688 1.960938 -0.792969 1.828125 -0.792969 Z M 0.535156 -1.042969 L 1.769531 -1.042969 C 1.75 -1.195312 1.6875 -1.316406 1.582031 -1.40625 C 1.472656 -1.5 1.34375 -1.542969 1.1875 -1.542969 C 1.019531 -1.542969 0.875 -1.5 0.761719 -1.410156 C 0.644531 -1.320312 0.570312 -1.199219 0.535156 -1.042969 Z "/>
</symbol>
<symbol overflow="visible" id="glyph0-3">
<path style="stroke:none;" d="M 0.675781 0.484375 L 1.132812 0.484375 C 1.179688 0.484375 1.214844 0.496094 1.238281 0.519531 C 1.261719 0.542969 1.277344 0.578125 1.277344 0.621094 C 1.277344 0.671875 1.265625 0.707031 1.242188 0.726562 C 1.21875 0.746094 1.175781 0.757812 1.117188 0.757812 L 0.277344 0.757812 C 0.226562 0.757812 0.191406 0.746094 0.164062 0.722656 C 0.136719 0.699219 0.125 0.667969 0.125 0.621094 C 0.125 0.570312 0.140625 0.535156 0.171875 0.515625 C 0.207031 0.496094 0.265625 0.484375 0.351562 0.484375 L 0.390625 0.484375 L 0.390625 -1.484375 L 0.351562 -1.484375 C 0.265625 -1.484375 0.207031 -1.496094 0.171875 -1.515625 C 0.140625 -1.535156 0.125 -1.570312 0.125 -1.621094 C 0.125 -1.664062 0.136719 -1.699219 0.164062 -1.722656 C 0.191406 -1.746094 0.230469 -1.753906 0.277344 -1.753906 L 0.566406 -1.753906 C 0.605469 -1.753906 0.632812 -1.75 0.652344 -1.734375 C 0.667969 -1.722656 0.675781 -1.703125 0.675781 -1.675781 L 0.675781 -1.492188 C 0.761719 -1.582031 0.859375 -1.648438 0.960938 -1.691406 C 1.066406 -1.734375 1.179688 -1.757812 1.300781 -1.757812 C 1.554688 -1.757812 1.765625 -1.671875 1.9375 -1.5 C 2.109375 -1.328125 2.195312 -1.113281 2.195312 -0.851562 C 2.195312 -0.601562 2.113281 -0.398438 1.949219 -0.238281 C 1.789062 -0.078125 1.582031 0.00390625 1.328125 0.00390625 C 1.195312 0.00390625 1.070312 -0.0195312 0.960938 -0.0664062 C 0.847656 -0.113281 0.753906 -0.183594 0.675781 -0.273438 Z M 1.265625 -0.273438 C 1.441406 -0.273438 1.585938 -0.332031 1.699219 -0.441406 C 1.8125 -0.550781 1.867188 -0.695312 1.867188 -0.871094 C 1.867188 -1.042969 1.808594 -1.1875 1.695312 -1.296875 C 1.582031 -1.410156 1.441406 -1.464844 1.265625 -1.464844 C 1.089844 -1.464844 0.945312 -1.410156 0.835938 -1.300781 C 0.722656 -1.1875 0.667969 -1.046875 0.667969 -0.871094 C 0.667969 -0.695312 0.722656 -0.554688 0.835938 -0.441406 C 0.945312 -0.332031 1.089844 -0.273438 1.265625 -0.273438 Z "/>
</symbol>
<symbol overflow="visible" id="glyph0-4">
<path style="stroke:none;" d="M 1.585938 -0.839844 C 1.515625 -0.863281 1.449219 -0.878906 1.386719 -0.890625 C 1.320312 -0.902344 1.253906 -0.90625 1.191406 -0.90625 C 0.996094 -0.90625 0.84375 -0.871094 0.730469 -0.808594 C 0.617188 -0.742188 0.558594 -0.652344 0.558594 -0.542969 C 0.558594 -0.457031 0.59375 -0.382812 0.664062 -0.328125 C 0.734375 -0.273438 0.824219 -0.246094 0.933594 -0.246094 C 1.09375 -0.246094 1.246094 -0.285156 1.382812 -0.371094 C 1.519531 -0.457031 1.585938 -0.542969 1.585938 -0.632812 Z M 1.601562 -0.242188 C 1.5 -0.148438 1.386719 -0.0742188 1.265625 -0.0273438 C 1.140625 0.0234375 1.015625 0.046875 0.886719 0.046875 C 0.699219 0.046875 0.546875 -0.00390625 0.429688 -0.109375 C 0.3125 -0.214844 0.257812 -0.351562 0.257812 -0.519531 C 0.257812 -0.71875 0.332031 -0.875 0.488281 -0.984375 C 0.640625 -1.09375 0.855469 -1.152344 1.136719 -1.152344 C 1.210938 -1.152344 1.285156 -1.144531 1.359375 -1.136719 C 1.433594 -1.128906 1.507812 -1.113281 1.585938 -1.09375 L 1.585938 -1.105469 C 1.585938 -1.25 1.554688 -1.359375 1.484375 -1.429688 C 1.414062 -1.5 1.304688 -1.53125 1.160156 -1.53125 C 1.058594 -1.53125 0.949219 -1.507812 0.828125 -1.453125 C 0.707031 -1.398438 0.625 -1.375 0.585938 -1.375 C 0.550781 -1.375 0.519531 -1.386719 0.496094 -1.417969 C 0.472656 -1.449219 0.460938 -1.484375 0.460938 -1.53125 C 0.460938 -1.605469 0.53125 -1.671875 0.667969 -1.722656 C 0.808594 -1.773438 0.988281 -1.800781 1.207031 -1.800781 C 1.429688 -1.800781 1.597656 -1.742188 1.710938 -1.628906 C 1.824219 -1.515625 1.882812 -1.351562 1.882812 -1.128906 L 1.882812 -0.269531 L 1.976562 -0.269531 C 2.066406 -0.269531 2.125 -0.257812 2.15625 -0.238281 C 2.1875 -0.21875 2.203125 -0.1875 2.203125 -0.136719 C 2.203125 -0.0898438 2.1875 -0.0585938 2.164062 -0.0351562 C 2.136719 -0.0117188 2.101562 0 2.050781 0 L 1.75 0 C 1.714844 0 1.6875 -0.0117188 1.664062 -0.03125 C 1.640625 -0.0546875 1.625 -0.0859375 1.617188 -0.125 Z "/>
</symbol>
<symbol overflow="visible" id="glyph0-5">
<path style="stroke:none;" d="M 0.980469 -0.269531 L 1.609375 -0.269531 C 1.660156 -0.269531 1.695312 -0.257812 1.71875 -0.238281 C 1.742188 -0.214844 1.753906 -0.183594 1.753906 -0.136719 C 1.753906 -0.0859375 1.742188 -0.0507812 1.722656 -0.03125 C 1.699219 -0.0117188 1.660156 0 1.597656 0 L 0.355469 0 C 0.308594 0 0.269531 -0.0117188 0.246094 -0.0351562 C 0.21875 -0.0585938 0.207031 -0.0898438 0.207031 -0.136719 C 0.207031 -0.179688 0.21875 -0.214844 0.246094 -0.234375 C 0.273438 -0.257812 0.3125 -0.269531 0.367188 -0.269531 L 0.695312 -0.269531 L 0.695312 -1.484375 L 0.566406 -1.484375 C 0.445312 -1.484375 0.367188 -1.496094 0.339844 -1.515625 C 0.308594 -1.535156 0.292969 -1.570312 0.292969 -1.621094 C 0.292969 -1.664062 0.304688 -1.699219 0.328125 -1.722656 C 0.355469 -1.746094 0.390625 -1.753906 0.441406 -1.753906 L 0.875 -1.753906 C 0.910156 -1.753906 0.9375 -1.75 0.953125 -1.734375 C 0.972656 -1.722656 0.980469 -1.703125 0.980469 -1.675781 L 0.980469 -1.355469 C 1.101562 -1.503906 1.226562 -1.617188 1.355469 -1.691406 C 1.484375 -1.765625 1.628906 -1.800781 1.777344 -1.800781 C 1.890625 -1.800781 1.980469 -1.777344 2.050781 -1.730469 C 2.121094 -1.6875 2.15625 -1.628906 2.15625 -1.554688 C 2.15625 -1.507812 2.136719 -1.46875 2.101562 -1.429688 C 2.066406 -1.394531 2.03125 -1.375 1.988281 -1.375 C 1.960938 -1.375 1.910156 -1.394531 1.839844 -1.433594 C 1.773438 -1.472656 1.710938 -1.492188 1.65625 -1.492188 C 1.558594 -1.492188 1.453125 -1.457031 1.34375 -1.386719 C 1.234375 -1.316406 1.113281 -1.207031 0.980469 -1.054688 Z "/>
</symbol>
<symbol overflow="visible" id="glyph0-6">
<path style="stroke:none;" d="M 1.683594 -1.648438 C 1.746094 -1.648438 1.792969 -1.636719 1.820312 -1.617188 C 1.847656 -1.59375 1.863281 -1.558594 1.863281 -1.515625 C 1.863281 -1.46875 1.851562 -1.4375 1.824219 -1.414062 C 1.796875 -1.390625 1.757812 -1.378906 1.703125 -1.378906 L 0.933594 -1.378906 L 0.933594 -0.746094 C 0.933594 -0.539062 0.960938 -0.402344 1.015625 -0.335938 C 1.070312 -0.269531 1.160156 -0.238281 1.292969 -0.238281 C 1.40625 -0.238281 1.542969 -0.269531 1.707031 -0.339844 C 1.867188 -0.40625 1.964844 -0.4375 2.003906 -0.4375 C 2.039062 -0.4375 2.070312 -0.425781 2.09375 -0.402344 C 2.117188 -0.375 2.132812 -0.34375 2.132812 -0.308594 C 2.132812 -0.265625 2.117188 -0.230469 2.085938 -0.199219 C 2.054688 -0.167969 2 -0.136719 1.925781 -0.109375 C 1.800781 -0.0585938 1.691406 -0.0234375 1.589844 0 C 1.492188 0.0234375 1.398438 0.0351562 1.308594 0.0351562 C 1.160156 0.0351562 1.039062 0.0117188 0.9375 -0.0351562 C 0.835938 -0.0820312 0.761719 -0.15625 0.710938 -0.25 C 0.6875 -0.292969 0.667969 -0.34375 0.65625 -0.40625 C 0.648438 -0.46875 0.640625 -0.5625 0.640625 -0.6875 L 0.640625 -1.378906 L 0.320312 -1.378906 C 0.265625 -1.378906 0.226562 -1.390625 0.203125 -1.410156 C 0.179688 -1.433594 0.167969 -1.46875 0.167969 -1.515625 C 0.167969 -1.566406 0.183594 -1.601562 0.214844 -1.621094 C 0.25 -1.640625 0.320312 -1.648438 0.425781 -1.648438 L 0.640625 -1.648438 L 0.640625 -2.136719 C 0.640625 -2.191406 0.652344 -2.234375 0.675781 -2.257812 C 0.699219 -2.285156 0.738281 -2.296875 0.785156 -2.296875 C 0.839844 -2.296875 0.878906 -2.28125 0.902344 -2.25 C 0.921875 -2.21875 0.933594 -2.148438 0.933594 -2.035156 L 0.933594 -1.648438 Z "/>
</symbol>
<symbol overflow="visible" id="glyph0-7">
<g>
</g>
</symbol>
<symbol overflow="visible" id="glyph0-8">
<path style="stroke:none;" d="M 0.761719 -0.269531 L 1.183594 -0.269531 C 1.421875 -0.269531 1.589844 -0.296875 1.6875 -0.359375 C 1.785156 -0.417969 1.832031 -0.519531 1.832031 -0.65625 C 1.832031 -0.796875 1.785156 -0.898438 1.691406 -0.957031 C 1.597656 -1.015625 1.4375 -1.046875 1.203125 -1.046875 L 0.761719 -1.046875 Z M 0.761719 -1.28125 L 1.160156 -1.28125 C 1.339844 -1.28125 1.472656 -1.308594 1.558594 -1.367188 C 1.644531 -1.421875 1.6875 -1.511719 1.6875 -1.628906 C 1.6875 -1.742188 1.648438 -1.828125 1.570312 -1.890625 C 1.492188 -1.949219 1.378906 -1.980469 1.234375 -1.980469 L 0.761719 -1.980469 Z M 1.144531 0 L 0.292969 0 C 0.25 0 0.214844 -0.0117188 0.191406 -0.0351562 C 0.171875 -0.0585938 0.160156 -0.0898438 0.160156 -0.136719 C 0.160156 -0.1875 0.171875 -0.222656 0.203125 -0.242188 C 0.230469 -0.257812 0.296875 -0.269531 0.402344 -0.269531 L 0.464844 -0.269531 L 0.464844 -1.980469 L 0.402344 -1.980469 C 0.304688 -1.980469 0.242188 -1.988281 0.210938 -2.007812 C 0.183594 -2.027344 0.171875 -2.0625 0.171875 -2.117188 C 0.171875 -2.160156 0.183594 -2.195312 0.207031 -2.21875 C 0.230469 -2.242188 0.261719 -2.253906 0.304688 -2.253906 L 1.191406 -2.253906 C 1.460938 -2.253906 1.664062 -2.199219 1.804688 -2.097656 C 1.945312 -1.992188 2.015625 -1.839844 2.015625 -1.640625 C 2.015625 -1.539062 1.992188 -1.453125 1.949219 -1.378906 C 1.90625 -1.304688 1.84375 -1.242188 1.757812 -1.195312 C 1.894531 -1.144531 1.996094 -1.078125 2.0625 -0.988281 C 2.128906 -0.898438 2.164062 -0.785156 2.164062 -0.648438 C 2.164062 -0.535156 2.132812 -0.429688 2.078125 -0.335938 C 2.019531 -0.238281 1.941406 -0.160156 1.835938 -0.101562 C 1.773438 -0.0664062 1.707031 -0.0390625 1.628906 -0.0234375 C 1.554688 -0.0078125 1.445312 0 1.308594 0 Z "/>
</symbol>
<symbol overflow="visible" id="glyph0-9">
<path style="stroke:none;" d="M 0.460938 -0.269531 L 0.460938 -1.484375 L 0.421875 -1.484375 C 0.335938 -1.484375 0.277344 -1.496094 0.246094 -1.515625 C 0.214844 -1.535156 0.199219 -1.570312 0.199219 -1.621094 C 0.199219 -1.667969 0.210938 -1.703125 0.238281 -1.722656 C 0.265625 -1.746094 0.308594 -1.753906 0.367188 -1.753906 L 0.636719 -1.753906 C 0.671875 -1.753906 0.699219 -1.746094 0.71875 -1.734375 C 0.738281 -1.71875 0.746094 -1.699219 0.746094 -1.675781 L 0.746094 -1.546875 C 0.839844 -1.632812 0.929688 -1.699219 1.019531 -1.738281 C 1.109375 -1.78125 1.207031 -1.800781 1.304688 -1.800781 C 1.496094 -1.800781 1.644531 -1.742188 1.753906 -1.621094 C 1.863281 -1.503906 1.917969 -1.339844 1.917969 -1.128906 L 1.917969 -0.269531 L 2.007812 -0.269531 C 2.070312 -0.269531 2.117188 -0.257812 2.144531 -0.238281 C 2.171875 -0.214844 2.1875 -0.183594 2.1875 -0.136719 C 2.1875 -0.0859375 2.171875 -0.0507812 2.140625 -0.03125 C 2.113281 -0.0117188 2.058594 0 1.984375 0 L 1.5625 0 C 1.480469 0 1.429688 -0.0078125 1.40625 -0.0273438 C 1.382812 -0.046875 1.375 -0.0820312 1.375 -0.136719 C 1.375 -0.1875 1.386719 -0.21875 1.414062 -0.238281 C 1.441406 -0.257812 1.488281 -0.269531 1.5625 -0.269531 L 1.628906 -0.269531 L 1.628906 -1.058594 C 1.628906 -1.207031 1.597656 -1.320312 1.527344 -1.398438 C 1.460938 -1.476562 1.363281 -1.515625 1.238281 -1.515625 C 1.109375 -1.515625 0.992188 -1.46875 0.894531 -1.382812 C 0.796875 -1.296875 0.746094 -1.1875 0.746094 -1.058594 L 0.746094 -0.269531 L 0.8125 -0.269531 C 0.890625 -0.269531 0.941406 -0.257812 0.964844 -0.238281 C 0.992188 -0.21875 1.007812 -0.1875 1.007812 -0.136719 C 1.007812 -0.0820312 0.996094 -0.046875 0.972656 -0.0273438 C 0.949219 -0.0078125 0.894531 0 0.804688 0 L 0.355469 0 C 0.304688 0 0.265625 -0.0117188 0.242188 -0.0351562 C 0.214844 -0.0546875 0.203125 -0.0898438 0.203125 -0.136719 C 0.203125 -0.1875 0.214844 -0.222656 0.246094 -0.242188 C 0.277344 -0.257812 0.332031 -0.269531 0.417969 -0.269531 Z "/>
</symbol>
<symbol overflow="visible" id="glyph0-10">
<path style="stroke:none;" d="M 1.738281 -1.640625 L 1.738281 -1.648438 C 1.738281 -1.691406 1.75 -1.722656 1.773438 -1.742188 C 1.796875 -1.761719 1.835938 -1.769531 1.886719 -1.769531 C 1.9375 -1.769531 1.972656 -1.753906 1.992188 -1.722656 C 2.011719 -1.695312 2.023438 -1.632812 2.023438 -1.535156 L 2.023438 -1.183594 C 2.023438 -1.136719 2.011719 -1.101562 1.988281 -1.078125 C 1.964844 -1.054688 1.925781 -1.042969 1.878906 -1.042969 C 1.84375 -1.042969 1.816406 -1.050781 1.789062 -1.070312 C 1.765625 -1.089844 1.734375 -1.132812 1.699219 -1.195312 C 1.640625 -1.296875 1.566406 -1.375 1.480469 -1.425781 C 1.390625 -1.480469 1.292969 -1.507812 1.179688 -1.507812 C 0.980469 -1.507812 0.820312 -1.449219 0.699219 -1.332031 C 0.574219 -1.214844 0.511719 -1.0625 0.511719 -0.878906 C 0.511719 -0.691406 0.570312 -0.535156 0.691406 -0.417969 C 0.808594 -0.296875 0.960938 -0.238281 1.148438 -0.238281 C 1.230469 -0.238281 1.3125 -0.25 1.390625 -0.273438 C 1.464844 -0.296875 1.539062 -0.332031 1.605469 -0.378906 C 1.628906 -0.394531 1.664062 -0.417969 1.703125 -0.449219 C 1.785156 -0.515625 1.851562 -0.550781 1.898438 -0.550781 C 1.9375 -0.550781 1.96875 -0.535156 1.992188 -0.511719 C 2.019531 -0.488281 2.03125 -0.457031 2.03125 -0.414062 C 2.03125 -0.316406 1.9375 -0.214844 1.746094 -0.109375 C 1.558594 -0.00390625 1.355469 0.046875 1.144531 0.046875 C 0.867188 0.046875 0.640625 -0.0390625 0.457031 -0.214844 C 0.273438 -0.390625 0.183594 -0.613281 0.183594 -0.875 C 0.183594 -1.140625 0.273438 -1.359375 0.457031 -1.535156 C 0.636719 -1.710938 0.867188 -1.800781 1.140625 -1.800781 C 1.234375 -1.800781 1.332031 -1.789062 1.429688 -1.761719 C 1.527344 -1.734375 1.628906 -1.695312 1.738281 -1.640625 Z "/>
</symbol>
<symbol overflow="visible" id="glyph0-11">
<path style="stroke:none;" d="M 0.453125 -0.269531 L 0.453125 -2.210938 L 0.414062 -2.210938 C 0.328125 -2.210938 0.269531 -2.222656 0.238281 -2.242188 C 0.207031 -2.261719 0.191406 -2.296875 0.191406 -2.347656 C 0.191406 -2.394531 0.203125 -2.429688 0.230469 -2.453125 C 0.253906 -2.476562 0.292969 -2.484375 0.34375 -2.484375 L 0.628906 -2.484375 C 0.664062 -2.484375 0.691406 -2.480469 0.710938 -2.464844 C 0.730469 -2.449219 0.738281 -2.433594 0.738281 -2.410156 L 0.738281 -1.546875 C 0.832031 -1.632812 0.921875 -1.699219 1.011719 -1.738281 C 1.101562 -1.78125 1.199219 -1.800781 1.296875 -1.800781 C 1.488281 -1.800781 1.636719 -1.742188 1.746094 -1.621094 C 1.855469 -1.503906 1.910156 -1.339844 1.910156 -1.128906 L 1.910156 -0.269531 L 2 -0.269531 C 2.0625 -0.269531 2.109375 -0.257812 2.136719 -0.238281 C 2.164062 -0.214844 2.179688 -0.183594 2.179688 -0.136719 C 2.179688 -0.0898438 2.164062 -0.0585938 2.140625 -0.0351562 C 2.113281 -0.0117188 2.078125 0 2.027344 0 L 1.519531 0 C 1.460938 0 1.421875 -0.0117188 1.402344 -0.03125 C 1.378906 -0.0507812 1.371094 -0.0859375 1.371094 -0.136719 C 1.371094 -0.1875 1.382812 -0.222656 1.410156 -0.242188 C 1.433594 -0.257812 1.484375 -0.269531 1.554688 -0.269531 L 1.621094 -0.269531 L 1.621094 -1.058594 C 1.621094 -1.207031 1.589844 -1.320312 1.519531 -1.398438 C 1.453125 -1.476562 1.355469 -1.515625 1.230469 -1.515625 C 1.097656 -1.515625 0.984375 -1.46875 0.886719 -1.382812 C 0.789062 -1.296875 0.738281 -1.1875 0.738281 -1.058594 L 0.738281 -0.269531 L 0.804688 -0.269531 C 0.882812 -0.269531 0.933594 -0.257812 0.960938 -0.238281 C 0.984375 -0.21875 1 -0.1875 1 -0.136719 C 1 -0.0859375 0.988281 -0.0507812 0.96875 -0.03125 C 0.945312 -0.0117188 0.90625 0 0.847656 0 L 0.34375 0 C 0.292969 0 0.253906 -0.0117188 0.230469 -0.0351562 C 0.207031 -0.0585938 0.195312 -0.0898438 0.195312 -0.136719 C 0.195312 -0.1875 0.207031 -0.222656 0.238281 -0.242188 C 0.269531 -0.257812 0.324219 -0.269531 0.414062 -0.269531 Z "/>
</symbol>
<symbol overflow="visible" id="glyph0-12">
<path style="stroke:none;" d="M 0.339844 -0.136719 L 0.339844 -0.476562 C 0.339844 -0.53125 0.347656 -0.570312 0.371094 -0.59375 C 0.390625 -0.617188 0.425781 -0.628906 0.472656 -0.628906 C 0.523438 -0.628906 0.5625 -0.59375 0.59375 -0.523438 C 0.613281 -0.480469 0.632812 -0.449219 0.648438 -0.425781 C 0.703125 -0.359375 0.78125 -0.304688 0.886719 -0.261719 C 0.988281 -0.222656 1.101562 -0.203125 1.230469 -0.203125 C 1.363281 -0.203125 1.46875 -0.230469 1.550781 -0.28125 C 1.632812 -0.335938 1.671875 -0.410156 1.671875 -0.496094 C 1.671875 -0.585938 1.640625 -0.652344 1.574219 -0.6875 C 1.511719 -0.726562 1.398438 -0.746094 1.238281 -0.746094 L 1.136719 -0.746094 C 0.878906 -0.746094 0.679688 -0.792969 0.546875 -0.882812 C 0.410156 -0.972656 0.34375 -1.101562 0.34375 -1.273438 C 0.34375 -1.441406 0.40625 -1.570312 0.539062 -1.660156 C 0.671875 -1.753906 0.859375 -1.800781 1.097656 -1.800781 C 1.195312 -1.800781 1.292969 -1.785156 1.394531 -1.757812 C 1.496094 -1.730469 1.550781 -1.71875 1.554688 -1.71875 C 1.570312 -1.71875 1.597656 -1.730469 1.636719 -1.753906 C 1.675781 -1.78125 1.714844 -1.792969 1.75 -1.792969 C 1.792969 -1.792969 1.824219 -1.777344 1.847656 -1.746094 C 1.867188 -1.714844 1.878906 -1.667969 1.878906 -1.601562 L 1.878906 -1.378906 C 1.878906 -1.3125 1.867188 -1.265625 1.847656 -1.234375 C 1.828125 -1.207031 1.796875 -1.191406 1.75 -1.191406 C 1.710938 -1.191406 1.667969 -1.222656 1.609375 -1.289062 C 1.570312 -1.332031 1.539062 -1.367188 1.515625 -1.386719 C 1.445312 -1.449219 1.375 -1.496094 1.300781 -1.523438 C 1.222656 -1.550781 1.132812 -1.5625 1.03125 -1.5625 C 0.914062 -1.5625 0.816406 -1.535156 0.742188 -1.484375 C 0.671875 -1.433594 0.632812 -1.363281 0.632812 -1.285156 C 0.632812 -1.203125 0.671875 -1.148438 0.746094 -1.113281 C 0.820312 -1.078125 0.980469 -1.058594 1.230469 -1.054688 C 1.492188 -1.046875 1.683594 -1 1.804688 -0.917969 C 1.925781 -0.832031 1.988281 -0.699219 1.988281 -0.519531 C 1.988281 -0.347656 1.921875 -0.210938 1.789062 -0.109375 C 1.652344 -0.0078125 1.472656 0.0429688 1.242188 0.0429688 C 1.171875 0.0429688 1.089844 0.0351562 1.003906 0.0234375 C 0.914062 0.0117188 0.804688 -0.0117188 0.667969 -0.0429688 C 0.625 -0.015625 0.585938 0.0078125 0.554688 0.0234375 C 0.523438 0.0351562 0.496094 0.0429688 0.476562 0.0429688 C 0.429688 0.0429688 0.398438 0.0273438 0.375 -0.00390625 C 0.351562 -0.0351562 0.339844 -0.078125 0.339844 -0.136719 Z "/>
</symbol>
<symbol overflow="visible" id="glyph0-13">
<path style="stroke:none;" d="M 1.75 -0.273438 C 1.800781 -0.273438 1.84375 -0.261719 1.871094 -0.238281 C 1.898438 -0.214844 1.910156 -0.179688 1.910156 -0.136719 C 1.910156 -0.0898438 1.898438 -0.0585938 1.871094 -0.0351562 C 1.84375 -0.0117188 1.808594 0 1.757812 0 L 0.515625 0 C 0.464844 0 0.425781 -0.0117188 0.398438 -0.0351562 C 0.371094 -0.0585938 0.355469 -0.0898438 0.355469 -0.136719 C 0.355469 -0.179688 0.371094 -0.214844 0.394531 -0.238281 C 0.421875 -0.261719 0.460938 -0.273438 0.507812 -0.273438 L 0.832031 -0.273438 L 0.832031 -1.433594 L 0.519531 -1.433594 C 0.46875 -1.433594 0.429688 -1.445312 0.398438 -1.46875 C 0.371094 -1.492188 0.355469 -1.527344 0.355469 -1.570312 C 0.355469 -1.617188 0.371094 -1.652344 0.398438 -1.671875 C 0.425781 -1.695312 0.460938 -1.707031 0.511719 -1.707031 L 0.8125 -1.707031 L 0.8125 -1.835938 C 0.8125 -2.066406 0.878906 -2.230469 1.007812 -2.335938 C 1.140625 -2.4375 1.351562 -2.488281 1.640625 -2.488281 C 1.78125 -2.488281 1.886719 -2.472656 1.957031 -2.441406 C 2.023438 -2.410156 2.058594 -2.363281 2.058594 -2.292969 C 2.058594 -2.253906 2.042969 -2.222656 2.011719 -2.199219 C 1.984375 -2.171875 1.945312 -2.160156 1.902344 -2.160156 C 1.878906 -2.160156 1.824219 -2.167969 1.738281 -2.183594 C 1.652344 -2.199219 1.574219 -2.203125 1.515625 -2.203125 C 1.371094 -2.203125 1.269531 -2.175781 1.207031 -2.113281 C 1.144531 -2.054688 1.113281 -1.953125 1.113281 -1.816406 L 1.113281 -1.707031 L 1.785156 -1.707031 C 1.835938 -1.707031 1.875 -1.695312 1.902344 -1.671875 C 1.929688 -1.648438 1.945312 -1.617188 1.945312 -1.570312 C 1.945312 -1.527344 1.929688 -1.492188 1.902344 -1.46875 C 1.875 -1.445312 1.835938 -1.433594 1.789062 -1.433594 L 1.132812 -1.433594 L 1.132812 -0.273438 Z "/>
</symbol>
<symbol overflow="visible" id="glyph0-14">
<path style="stroke:none;" d="M 1.167969 -0.21875 C 1.363281 -0.21875 1.519531 -0.28125 1.644531 -0.402344 C 1.769531 -0.527344 1.832031 -0.683594 1.832031 -0.875 C 1.832031 -1.066406 1.769531 -1.226562 1.644531 -1.347656 C 1.519531 -1.472656 1.359375 -1.535156 1.167969 -1.535156 C 0.972656 -1.535156 0.8125 -1.472656 0.6875 -1.347656 C 0.5625 -1.222656 0.5 -1.066406 0.5 -0.875 C 0.5 -0.683594 0.5625 -0.527344 0.6875 -0.402344 C 0.8125 -0.28125 0.972656 -0.21875 1.167969 -0.21875 Z M 2.164062 -0.875 C 2.164062 -0.605469 2.070312 -0.382812 1.886719 -0.210938 C 1.703125 -0.0390625 1.460938 0.046875 1.167969 0.046875 C 0.871094 0.046875 0.632812 -0.0390625 0.449219 -0.210938 C 0.265625 -0.382812 0.171875 -0.605469 0.171875 -0.875 C 0.171875 -1.144531 0.261719 -1.367188 0.449219 -1.539062 C 0.632812 -1.710938 0.871094 -1.796875 1.167969 -1.796875 C 1.460938 -1.796875 1.699219 -1.710938 1.886719 -1.539062 C 2.070312 -1.367188 2.164062 -1.144531 2.164062 -0.875 Z "/>
</symbol>
<symbol overflow="visible" id="glyph0-15">
<path style="stroke:none;" d="M 0.296875 -1.484375 C 0.214844 -1.484375 0.15625 -1.496094 0.125 -1.515625 C 0.09375 -1.535156 0.078125 -1.570312 0.078125 -1.621094 C 0.078125 -1.664062 0.0898438 -1.699219 0.117188 -1.722656 C 0.140625 -1.746094 0.179688 -1.753906 0.230469 -1.753906 L 0.761719 -1.753906 C 0.832031 -1.753906 0.882812 -1.746094 0.90625 -1.726562 C 0.929688 -1.707031 0.941406 -1.671875 0.941406 -1.621094 C 0.941406 -1.570312 0.925781 -1.535156 0.894531 -1.515625 C 0.863281 -1.496094 0.804688 -1.484375 0.71875 -1.484375 L 0.648438 -1.484375 L 1.144531 -0.257812 L 1.691406 -1.484375 L 1.578125 -1.484375 C 1.480469 -1.484375 1.414062 -1.496094 1.378906 -1.515625 C 1.347656 -1.535156 1.328125 -1.570312 1.328125 -1.621094 C 1.328125 -1.671875 1.339844 -1.707031 1.367188 -1.726562 C 1.390625 -1.746094 1.4375 -1.753906 1.511719 -1.753906 L 2.097656 -1.753906 C 2.148438 -1.753906 2.183594 -1.742188 2.210938 -1.722656 C 2.234375 -1.699219 2.25 -1.667969 2.25 -1.621094 C 2.25 -1.570312 2.234375 -1.535156 2.203125 -1.515625 C 2.171875 -1.496094 2.113281 -1.484375 2.03125 -1.484375 L 1.996094 -1.484375 L 1.371094 -0.101562 C 1.339844 -0.03125 1.304688 0.015625 1.273438 0.0351562 C 1.242188 0.0546875 1.199219 0.0664062 1.140625 0.0664062 C 1.085938 0.0664062 1.042969 0.0546875 1.011719 0.0351562 C 0.984375 0.015625 0.953125 -0.03125 0.921875 -0.101562 Z "/>
</symbol>
</g>
</defs>
<g id="surface6">
<g style="fill:rgb(100%,100%,100%);fill-opacity:1;">
<use xlink:href="#glyph0-1" x="30" y="22.932617"/>
<use xlink:href="#glyph0-2" x="32" y="22.932617"/>
<use xlink:href="#glyph0-3" x="34" y="22.932617"/>
<use xlink:href="#glyph0-4" x="36" y="22.932617"/>
<use xlink:href="#glyph0-5" x="38" y="22.932617"/>
<use xlink:href="#glyph0-4" x="40" y="22.932617"/>
<use xlink:href="#glyph0-6" x="42" y="22.932617"/>
<use xlink:href="#glyph0-2" x="44" y="22.932617"/>
<use xlink:href="#glyph0-7" x="46" y="22.932617"/>
<use xlink:href="#glyph0-8" x="48" y="22.932617"/>
<use xlink:href="#glyph0-5" x="50" y="22.932617"/>
<use xlink:href="#glyph0-4" x="52" y="22.932617"/>
<use xlink:href="#glyph0-9" x="54" y="22.932617"/>
<use xlink:href="#glyph0-10" x="56" y="22.932617"/>
<use xlink:href="#glyph0-11" x="58" y="22.932617"/>
<use xlink:href="#glyph0-2" x="60" y="22.932617"/>
<use xlink:href="#glyph0-12" x="62" y="22.932617"/>
<use xlink:href="#glyph0-7" x="64" y="22.932617"/>
<use xlink:href="#glyph0-13" x="66" y="22.932617"/>
<use xlink:href="#glyph0-14" x="68" y="22.932617"/>
<use xlink:href="#glyph0-7" x="70" y="22.932617"/>
</g>
<g style="fill:rgb(100%,100%,100%);fill-opacity:1;">
<use xlink:href="#glyph0-5" x="30" y="26.725586"/>
<use xlink:href="#glyph0-7" x="32" y="26.725586"/>
<use xlink:href="#glyph0-1" x="34" y="26.725586"/>
<use xlink:href="#glyph0-2" x="36" y="26.725586"/>
<use xlink:href="#glyph0-5" x="38" y="26.725586"/>
<use xlink:href="#glyph0-15" x="40" y="26.725586"/>
<use xlink:href="#glyph0-2" x="42" y="26.725586"/>
<use xlink:href="#glyph0-5" x="44" y="26.725586"/>
</g>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 27 KiB

View File

@ -1,32 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="1920pt" height="1080pt" viewBox="0 0 1920 1080" version="1.1">
<defs>
<g>
<symbol overflow="visible" id="glyph0-0">
<path style="stroke:none;" d="M 0.277344 0.980469 L 0.277344 -3.917969 L 3.054688 -3.917969 L 3.054688 0.980469 Z M 0.589844 0.671875 L 2.746094 0.671875 L 2.746094 -3.605469 L 0.589844 -3.605469 Z "/>
</symbol>
<symbol overflow="visible" id="glyph0-1">
<path style="stroke:none;" d="M 1.707031 -0.0546875 C 1.691406 -0.0117188 1.679688 0.015625 1.664062 0.03125 C 1.652344 0.0429688 1.628906 0.0507812 1.59375 0.0507812 L 1.355469 0.0507812 C 1.320312 0.0507812 1.292969 0.0429688 1.269531 0.0273438 C 1.25 0.0117188 1.238281 -0.0078125 1.238281 -0.03125 C 1.238281 -0.046875 1.242188 -0.0625 1.242188 -0.0742188 C 1.246094 -0.0898438 1.25 -0.105469 1.257812 -0.121094 L 2.320312 -3.015625 L 0.945312 -3.015625 C 0.9375 -2.929688 0.917969 -2.867188 0.886719 -2.828125 C 0.855469 -2.789062 0.804688 -2.765625 0.742188 -2.765625 C 0.679688 -2.765625 0.636719 -2.78125 0.605469 -2.8125 C 0.578125 -2.84375 0.5625 -2.890625 0.5625 -2.957031 C 0.5625 -2.976562 0.5625 -2.988281 0.5625 -2.996094 C 0.5625 -3.007812 0.566406 -3.015625 0.566406 -3.023438 L 0.59375 -3.265625 C 0.597656 -3.316406 0.617188 -3.355469 0.648438 -3.382812 C 0.679688 -3.410156 0.722656 -3.421875 0.777344 -3.421875 L 2.570312 -3.421875 C 2.625 -3.421875 2.664062 -3.414062 2.6875 -3.390625 C 2.710938 -3.367188 2.722656 -3.332031 2.722656 -3.28125 L 2.722656 -3.191406 C 2.722656 -3.167969 2.71875 -3.140625 2.710938 -3.105469 C 2.703125 -3.070312 2.6875 -3.023438 2.667969 -2.960938 Z "/>
</symbol>
<symbol overflow="visible" id="glyph0-2">
<path style="stroke:none;" d="M 2.285156 -1.636719 C 2.1875 -1.511719 2.078125 -1.421875 1.960938 -1.359375 C 1.84375 -1.296875 1.714844 -1.265625 1.574219 -1.265625 C 1.289062 -1.265625 1.042969 -1.375 0.84375 -1.589844 C 0.644531 -1.804688 0.546875 -2.066406 0.546875 -2.378906 C 0.546875 -2.707031 0.640625 -2.980469 0.835938 -3.191406 C 1.027344 -3.402344 1.273438 -3.511719 1.574219 -3.511719 C 1.929688 -3.511719 2.214844 -3.367188 2.429688 -3.082031 C 2.648438 -2.796875 2.757812 -2.421875 2.757812 -1.949219 C 2.757812 -1.328125 2.597656 -0.835938 2.28125 -0.464844 C 1.964844 -0.09375 1.539062 0.0898438 1.007812 0.0898438 C 0.839844 0.0898438 0.726562 0.078125 0.671875 0.0507812 C 0.617188 0.0273438 0.589844 -0.0195312 0.589844 -0.0898438 C 0.589844 -0.207031 0.695312 -0.265625 0.910156 -0.269531 C 1.054688 -0.273438 1.167969 -0.285156 1.25 -0.300781 C 1.535156 -0.351562 1.769531 -0.496094 1.945312 -0.726562 C 2.125 -0.957031 2.238281 -1.261719 2.285156 -1.636719 Z M 2.226562 -2.367188 C 2.226562 -2.589844 2.167969 -2.773438 2.050781 -2.914062 C 1.929688 -3.054688 1.78125 -3.121094 1.59375 -3.121094 C 1.417969 -3.121094 1.277344 -3.054688 1.167969 -2.925781 C 1.058594 -2.792969 1.007812 -2.621094 1.007812 -2.40625 C 1.007812 -2.1875 1.0625 -2.007812 1.175781 -1.867188 C 1.289062 -1.730469 1.4375 -1.660156 1.617188 -1.660156 C 1.792969 -1.660156 1.9375 -1.726562 2.054688 -1.859375 C 2.167969 -1.992188 2.226562 -2.160156 2.226562 -2.367188 Z "/>
</symbol>
<symbol overflow="visible" id="glyph0-3">
<path style="stroke:none;" d="M 1.664062 -3.121094 C 1.457031 -3.121094 1.296875 -3 1.179688 -2.753906 C 1.0625 -2.507812 1.007812 -2.160156 1.007812 -1.710938 C 1.007812 -1.261719 1.0625 -0.914062 1.179688 -0.664062 C 1.296875 -0.417969 1.457031 -0.296875 1.664062 -0.296875 C 1.875 -0.296875 2.039062 -0.417969 2.152344 -0.664062 C 2.269531 -0.914062 2.328125 -1.261719 2.328125 -1.710938 C 2.328125 -2.160156 2.269531 -2.507812 2.152344 -2.753906 C 2.039062 -3 1.875 -3.121094 1.664062 -3.121094 Z M 1.664062 0.0898438 C 1.324219 0.0898438 1.054688 -0.0703125 0.855469 -0.390625 C 0.65625 -0.710938 0.554688 -1.152344 0.554688 -1.710938 C 0.554688 -2.269531 0.65625 -2.707031 0.855469 -3.027344 C 1.054688 -3.347656 1.324219 -3.511719 1.664062 -3.511719 C 2.003906 -3.511719 2.277344 -3.347656 2.476562 -3.027344 C 2.675781 -2.707031 2.777344 -2.265625 2.777344 -1.710938 C 2.777344 -1.15625 2.675781 -0.71875 2.476562 -0.394531 C 2.277344 -0.0703125 2.003906 0.0898438 1.664062 0.0898438 Z "/>
</symbol>
<symbol overflow="visible" id="glyph0-4">
<path style="stroke:none;" d="M 1.054688 -2.121094 C 1.175781 -2.164062 1.285156 -2.195312 1.386719 -2.21875 C 1.488281 -2.238281 1.585938 -2.25 1.675781 -2.25 C 1.992188 -2.25 2.257812 -2.140625 2.46875 -1.917969 C 2.679688 -1.699219 2.785156 -1.425781 2.785156 -1.101562 C 2.785156 -0.757812 2.667969 -0.472656 2.433594 -0.246094 C 2.199219 -0.0234375 1.902344 0.0898438 1.539062 0.0898438 C 1.234375 0.0898438 0.980469 0.046875 0.773438 -0.0351562 C 0.570312 -0.117188 0.464844 -0.214844 0.464844 -0.332031 C 0.464844 -0.378906 0.484375 -0.421875 0.523438 -0.460938 C 0.5625 -0.496094 0.605469 -0.515625 0.65625 -0.515625 C 0.675781 -0.515625 0.78125 -0.480469 0.976562 -0.410156 C 1.167969 -0.339844 1.347656 -0.304688 1.511719 -0.304688 C 1.753906 -0.304688 1.949219 -0.378906 2.101562 -0.523438 C 2.253906 -0.671875 2.328125 -0.859375 2.328125 -1.085938 C 2.328125 -1.3125 2.257812 -1.5 2.113281 -1.648438 C 1.96875 -1.796875 1.789062 -1.871094 1.574219 -1.871094 C 1.410156 -1.871094 1.25 -1.832031 1.09375 -1.75 C 0.9375 -1.667969 0.84375 -1.628906 0.8125 -1.628906 C 0.757812 -1.628906 0.71875 -1.648438 0.695312 -1.6875 C 0.671875 -1.726562 0.660156 -1.800781 0.660156 -1.90625 L 0.660156 -3.253906 C 0.660156 -3.316406 0.679688 -3.359375 0.71875 -3.382812 C 0.753906 -3.410156 0.820312 -3.421875 0.910156 -3.421875 L 2.285156 -3.421875 C 2.371094 -3.421875 2.4375 -3.40625 2.480469 -3.371094 C 2.523438 -3.335938 2.542969 -3.28125 2.542969 -3.210938 C 2.542969 -3.144531 2.523438 -3.09375 2.476562 -3.054688 C 2.429688 -3.019531 2.367188 -3 2.285156 -3 L 1.054688 -3 Z "/>
</symbol>
</g>
</defs>
<g id="surface45">
<g style="fill:rgb(100%,100%,100%);fill-opacity:1;">
<use xlink:href="#glyph0-1" x="30" y="24.188477"/>
<use xlink:href="#glyph0-2" x="33" y="24.188477"/>
<use xlink:href="#glyph0-3" x="36" y="24.188477"/>
<use xlink:href="#glyph0-1" x="39" y="24.188477"/>
<use xlink:href="#glyph0-2" x="42" y="24.188477"/>
<use xlink:href="#glyph0-4" x="45" y="24.188477"/>
</g>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 6.2 KiB

View File

@ -1,30 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="1920pt" height="1080pt" viewBox="0 0 1920 1080" version="1.1">
<defs>
<g>
<symbol overflow="visible" id="glyph0-0">
<path style="stroke:none;" d="M 0.277344 0.980469 L 0.277344 -3.917969 L 3.054688 -3.917969 L 3.054688 0.980469 Z M 0.589844 0.671875 L 2.746094 0.671875 L 2.746094 -3.605469 L 0.589844 -3.605469 Z "/>
</symbol>
<symbol overflow="visible" id="glyph0-1">
<path style="stroke:none;" d="M 1.015625 -0.382812 L 1.199219 -0.382812 C 1.304688 -0.382812 1.378906 -0.367188 1.425781 -0.339844 C 1.46875 -0.308594 1.488281 -0.261719 1.488281 -0.195312 C 1.488281 -0.121094 1.46875 -0.0703125 1.433594 -0.0429688 C 1.394531 -0.015625 1.3125 0 1.183594 0 L 0.464844 0 C 0.398438 0 0.347656 -0.015625 0.316406 -0.0507812 C 0.28125 -0.0820312 0.265625 -0.128906 0.265625 -0.195312 C 0.265625 -0.265625 0.285156 -0.316406 0.324219 -0.34375 C 0.363281 -0.371094 0.4375 -0.382812 0.546875 -0.382812 L 0.59375 -0.382812 L 0.59375 -2.828125 L 0.550781 -2.828125 C 0.441406 -2.828125 0.367188 -2.839844 0.328125 -2.871094 C 0.285156 -2.898438 0.265625 -2.949219 0.265625 -3.023438 C 0.265625 -3.089844 0.28125 -3.136719 0.316406 -3.167969 C 0.351562 -3.199219 0.402344 -3.21875 0.472656 -3.21875 L 1.15625 -3.21875 C 1.300781 -3.21875 1.390625 -3.203125 1.429688 -3.175781 C 1.46875 -3.148438 1.488281 -3.097656 1.488281 -3.023438 C 1.488281 -2.949219 1.464844 -2.898438 1.417969 -2.871094 C 1.367188 -2.839844 1.273438 -2.828125 1.140625 -2.828125 L 1.015625 -2.828125 L 1.015625 -1.882812 L 2.316406 -1.882812 L 2.316406 -2.828125 L 2.132812 -2.828125 C 2.03125 -2.828125 1.957031 -2.84375 1.910156 -2.871094 C 1.867188 -2.902344 1.84375 -2.953125 1.84375 -3.023438 C 1.84375 -3.097656 1.863281 -3.148438 1.90625 -3.175781 C 1.945312 -3.203125 2.046875 -3.21875 2.207031 -3.21875 L 2.867188 -3.21875 C 2.933594 -3.21875 2.980469 -3.199219 3.015625 -3.167969 C 3.046875 -3.136719 3.066406 -3.085938 3.066406 -3.023438 C 3.066406 -2.953125 3.046875 -2.902344 3.007812 -2.871094 C 2.96875 -2.839844 2.902344 -2.828125 2.804688 -2.828125 L 2.738281 -2.828125 L 2.738281 -0.382812 L 2.785156 -0.382812 C 2.890625 -0.382812 2.964844 -0.367188 3.003906 -0.339844 C 3.042969 -0.3125 3.066406 -0.265625 3.066406 -0.195312 C 3.066406 -0.121094 3.046875 -0.0703125 3.007812 -0.0429688 C 2.96875 -0.015625 2.882812 0 2.746094 0 L 2.183594 0 C 2.039062 0 1.945312 -0.015625 1.90625 -0.0429688 C 1.863281 -0.0703125 1.84375 -0.121094 1.84375 -0.195312 C 1.84375 -0.265625 1.867188 -0.316406 1.914062 -0.34375 C 1.960938 -0.371094 2.050781 -0.382812 2.183594 -0.382812 L 2.316406 -0.382812 L 2.316406 -1.511719 L 1.015625 -1.511719 Z "/>
</symbol>
<symbol overflow="visible" id="glyph0-2">
<path style="stroke:none;" d="M 0.503906 0 L 0.378906 0 C 0.3125 0 0.261719 -0.015625 0.230469 -0.0507812 C 0.195312 -0.0820312 0.179688 -0.128906 0.179688 -0.195312 C 0.179688 -0.269531 0.199219 -0.316406 0.238281 -0.34375 C 0.277344 -0.371094 0.367188 -0.382812 0.503906 -0.382812 L 0.679688 -0.382812 L 0.679688 -2.828125 L 0.503906 -2.828125 C 0.367188 -2.828125 0.28125 -2.839844 0.238281 -2.867188 C 0.199219 -2.894531 0.179688 -2.949219 0.179688 -3.023438 C 0.179688 -3.089844 0.195312 -3.136719 0.230469 -3.167969 C 0.261719 -3.199219 0.3125 -3.21875 0.382812 -3.21875 L 2.746094 -3.21875 C 2.808594 -3.21875 2.851562 -3.199219 2.886719 -3.160156 C 2.917969 -3.125 2.933594 -3.070312 2.933594 -3 L 2.933594 -2.359375 C 2.933594 -2.265625 2.917969 -2.199219 2.890625 -2.164062 C 2.863281 -2.128906 2.816406 -2.109375 2.746094 -2.109375 C 2.671875 -2.109375 2.621094 -2.128906 2.59375 -2.171875 C 2.566406 -2.210938 2.550781 -2.300781 2.550781 -2.4375 L 2.550781 -2.828125 L 1.105469 -2.828125 L 1.105469 -1.914062 L 1.816406 -1.914062 L 1.816406 -2.054688 C 1.816406 -2.152344 1.832031 -2.222656 1.855469 -2.257812 C 1.882812 -2.296875 1.929688 -2.316406 1.992188 -2.316406 C 2.054688 -2.316406 2.101562 -2.296875 2.125 -2.253906 C 2.148438 -2.214844 2.160156 -2.128906 2.160156 -1.992188 L 2.160156 -1.488281 C 2.160156 -1.351562 2.148438 -1.265625 2.125 -1.230469 C 2.097656 -1.191406 2.054688 -1.171875 1.988281 -1.171875 C 1.921875 -1.171875 1.878906 -1.195312 1.855469 -1.238281 C 1.832031 -1.28125 1.816406 -1.363281 1.816406 -1.488281 L 1.816406 -1.585938 L 1.105469 -1.585938 L 1.105469 -0.382812 L 2.550781 -0.382812 L 2.550781 -0.820312 C 2.550781 -0.960938 2.5625 -1.050781 2.59375 -1.089844 C 2.621094 -1.128906 2.671875 -1.148438 2.746094 -1.148438 C 2.8125 -1.148438 2.863281 -1.132812 2.890625 -1.09375 C 2.917969 -1.058594 2.933594 -0.988281 2.933594 -0.882812 L 2.933594 -0.199219 C 2.933594 -0.136719 2.917969 -0.0859375 2.882812 -0.0507812 C 2.851562 -0.015625 2.804688 0 2.746094 0 Z "/>
</symbol>
<symbol overflow="visible" id="glyph0-3">
<path style="stroke:none;" d="M 1.105469 -1.390625 L 2.214844 -1.390625 L 1.632812 -2.828125 Z M 1.246094 -2.828125 L 0.847656 -2.828125 C 0.738281 -2.828125 0.660156 -2.839844 0.617188 -2.871094 C 0.574219 -2.902344 0.550781 -2.953125 0.550781 -3.023438 C 0.550781 -3.097656 0.570312 -3.148438 0.609375 -3.175781 C 0.648438 -3.203125 0.753906 -3.21875 0.929688 -3.21875 L 1.699219 -3.21875 C 1.800781 -3.21875 1.867188 -3.203125 1.902344 -3.179688 C 1.9375 -3.152344 1.96875 -3.101562 2 -3.03125 L 3.058594 -0.382812 L 3.105469 -0.382812 C 3.203125 -0.382812 3.269531 -0.367188 3.308594 -0.34375 C 3.34375 -0.316406 3.359375 -0.265625 3.359375 -0.195312 C 3.359375 -0.121094 3.34375 -0.0703125 3.308594 -0.0429688 C 3.273438 -0.015625 3.210938 0 3.117188 0 L 2.378906 0 C 2.242188 0 2.152344 -0.015625 2.113281 -0.0429688 C 2.074219 -0.0703125 2.054688 -0.121094 2.054688 -0.195312 C 2.054688 -0.265625 2.078125 -0.3125 2.121094 -0.339844 C 2.164062 -0.367188 2.242188 -0.382812 2.359375 -0.382812 L 2.613281 -0.382812 L 2.347656 -1.027344 L 0.972656 -1.027344 L 0.738281 -0.382812 L 1 -0.382812 C 1.121094 -0.382812 1.203125 -0.367188 1.246094 -0.339844 C 1.289062 -0.3125 1.308594 -0.265625 1.308594 -0.195312 C 1.308594 -0.121094 1.289062 -0.0703125 1.25 -0.0429688 C 1.210938 -0.015625 1.128906 0 0.996094 0 L 0.28125 0 C 0.167969 0 0.0898438 -0.015625 0.0507812 -0.0429688 C 0.0117188 -0.0703125 -0.00390625 -0.121094 -0.00390625 -0.195312 C -0.00390625 -0.265625 0.0117188 -0.316406 0.0507812 -0.34375 C 0.0898438 -0.371094 0.164062 -0.382812 0.269531 -0.382812 L 0.324219 -0.382812 Z "/>
</symbol>
<symbol overflow="visible" id="glyph0-4">
<path style="stroke:none;" d="M 1.015625 -0.382812 C 1.074219 -0.378906 1.132812 -0.371094 1.191406 -0.371094 C 1.246094 -0.367188 1.300781 -0.367188 1.355469 -0.367188 C 1.800781 -0.367188 2.128906 -0.464844 2.335938 -0.664062 C 2.542969 -0.863281 2.644531 -1.175781 2.644531 -1.605469 C 2.644531 -2.035156 2.539062 -2.351562 2.332031 -2.546875 C 2.125 -2.742188 1.792969 -2.839844 1.335938 -2.839844 C 1.25 -2.839844 1.183594 -2.839844 1.140625 -2.835938 C 1.097656 -2.835938 1.054688 -2.832031 1.015625 -2.828125 Z M 1.015625 0 L 0.464844 0 C 0.398438 0 0.347656 -0.015625 0.316406 -0.0507812 C 0.28125 -0.0820312 0.265625 -0.128906 0.265625 -0.195312 C 0.265625 -0.265625 0.285156 -0.316406 0.324219 -0.34375 C 0.363281 -0.371094 0.4375 -0.382812 0.546875 -0.382812 L 0.59375 -0.382812 L 0.59375 -2.828125 L 0.550781 -2.828125 C 0.441406 -2.828125 0.367188 -2.839844 0.328125 -2.871094 C 0.285156 -2.898438 0.265625 -2.949219 0.265625 -3.023438 C 0.265625 -3.089844 0.28125 -3.136719 0.316406 -3.167969 C 0.351562 -3.199219 0.402344 -3.21875 0.472656 -3.21875 L 1.617188 -3.21875 C 2.066406 -3.21875 2.425781 -3.070312 2.695312 -2.78125 C 2.960938 -2.492188 3.09375 -2.101562 3.09375 -1.605469 C 3.09375 -1.367188 3.058594 -1.140625 2.980469 -0.9375 C 2.902344 -0.730469 2.792969 -0.550781 2.644531 -0.394531 C 2.507812 -0.253906 2.34375 -0.148438 2.148438 -0.0859375 C 1.953125 -0.0195312 1.707031 0.0117188 1.398438 0.0117188 C 1.363281 0.0117188 1.300781 0.0078125 1.214844 0.00390625 C 1.128906 0 1.0625 0 1.015625 0 Z "/>
</symbol>
</g>
</defs>
<g id="surface13">
<g style="fill:rgb(100%,100%,100%);fill-opacity:1;">
<use xlink:href="#glyph0-1" x="30" y="24.188477"/>
<use xlink:href="#glyph0-2" x="33" y="24.188477"/>
<use xlink:href="#glyph0-3" x="36" y="24.188477"/>
<use xlink:href="#glyph0-4" x="39" y="24.188477"/>
</g>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 8.2 KiB

View File

@ -1,54 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="1920pt" height="1080pt" viewBox="0 0 1920 1080" version="1.1">
<defs>
<g>
<symbol overflow="visible" id="glyph0-0">
<path style="stroke:none;" d="M 0.386719 1.375 L 0.386719 -5.484375 L 4.277344 -5.484375 L 4.277344 1.375 Z M 0.824219 0.941406 L 3.84375 0.941406 L 3.84375 -5.046875 L 0.824219 -5.046875 Z "/>
</symbol>
<symbol overflow="visible" id="glyph0-1">
<path style="stroke:none;" d="M 1.222656 -0.132812 C 1.210938 -0.0195312 1.179688 0.0585938 1.136719 0.105469 C 1.089844 0.148438 1.019531 0.171875 0.917969 0.171875 C 0.8125 0.171875 0.734375 0.140625 0.683594 0.078125 C 0.628906 0.015625 0.601562 -0.0859375 0.59375 -0.222656 L 0.542969 -1.105469 L 0.542969 -1.171875 C 0.542969 -1.292969 0.566406 -1.382812 0.613281 -1.433594 C 0.660156 -1.484375 0.738281 -1.507812 0.847656 -1.507812 C 1 -1.507812 1.109375 -1.398438 1.171875 -1.179688 C 1.203125 -1.070312 1.234375 -0.988281 1.261719 -0.933594 C 1.351562 -0.757812 1.488281 -0.621094 1.679688 -0.523438 C 1.871094 -0.425781 2.101562 -0.378906 2.367188 -0.378906 C 2.691406 -0.378906 2.957031 -0.457031 3.160156 -0.613281 C 3.363281 -0.765625 3.46875 -0.964844 3.46875 -1.203125 C 3.46875 -1.402344 3.40625 -1.566406 3.277344 -1.6875 C 3.152344 -1.808594 2.972656 -1.886719 2.730469 -1.921875 L 2.167969 -1.996094 C 1.644531 -2.070312 1.261719 -2.207031 1.023438 -2.410156 C 0.78125 -2.613281 0.660156 -2.898438 0.660156 -3.265625 C 0.660156 -3.652344 0.820312 -3.980469 1.140625 -4.242188 C 1.460938 -4.503906 1.859375 -4.636719 2.339844 -4.636719 C 2.480469 -4.636719 2.625 -4.617188 2.78125 -4.582031 C 2.933594 -4.546875 3.109375 -4.488281 3.304688 -4.410156 C 3.308594 -4.484375 3.328125 -4.53125 3.363281 -4.5625 C 3.398438 -4.589844 3.460938 -4.601562 3.546875 -4.601562 C 3.660156 -4.601562 3.734375 -4.585938 3.777344 -4.554688 C 3.820312 -4.519531 3.847656 -4.441406 3.859375 -4.316406 L 3.910156 -3.523438 L 3.910156 -3.484375 C 3.910156 -3.398438 3.886719 -3.328125 3.835938 -3.277344 C 3.785156 -3.230469 3.714844 -3.207031 3.621094 -3.207031 C 3.488281 -3.207031 3.386719 -3.296875 3.3125 -3.484375 C 3.277344 -3.59375 3.242188 -3.671875 3.207031 -3.726562 C 3.121094 -3.851562 3 -3.949219 2.84375 -4.019531 C 2.6875 -4.085938 2.507812 -4.121094 2.308594 -4.121094 C 2.003906 -4.121094 1.753906 -4.042969 1.5625 -3.890625 C 1.371094 -3.738281 1.277344 -3.542969 1.277344 -3.296875 C 1.277344 -3.105469 1.347656 -2.953125 1.492188 -2.839844 C 1.632812 -2.730469 1.851562 -2.652344 2.144531 -2.613281 L 2.753906 -2.535156 C 3.195312 -2.476562 3.523438 -2.34375 3.75 -2.132812 C 3.972656 -1.921875 4.082031 -1.636719 4.082031 -1.277344 C 4.082031 -0.851562 3.925781 -0.507812 3.609375 -0.253906 C 3.292969 0.00390625 2.867188 0.132812 2.339844 0.132812 C 2.15625 0.132812 1.976562 0.113281 1.796875 0.0664062 C 1.617188 0.0234375 1.425781 -0.0429688 1.222656 -0.132812 Z "/>
</symbol>
<symbol overflow="visible" id="glyph0-2">
<path style="stroke:none;" d="M 3.367188 -3.296875 C 3.492188 -3.296875 3.582031 -3.273438 3.640625 -3.230469 C 3.695312 -3.1875 3.726562 -3.121094 3.726562 -3.027344 C 3.726562 -2.9375 3.699219 -2.871094 3.644531 -2.828125 C 3.59375 -2.785156 3.511719 -2.761719 3.40625 -2.761719 L 1.867188 -2.761719 L 1.867188 -1.492188 C 1.867188 -1.078125 1.921875 -0.804688 2.03125 -0.671875 C 2.136719 -0.539062 2.320312 -0.476562 2.582031 -0.476562 C 2.8125 -0.476562 3.089844 -0.542969 3.410156 -0.675781 C 3.730469 -0.808594 3.929688 -0.878906 4.007812 -0.878906 C 4.078125 -0.878906 4.136719 -0.851562 4.1875 -0.800781 C 4.238281 -0.75 4.261719 -0.6875 4.261719 -0.613281 C 4.261719 -0.53125 4.230469 -0.457031 4.167969 -0.398438 C 4.105469 -0.335938 4 -0.273438 3.851562 -0.214844 C 3.601562 -0.117188 3.378906 -0.046875 3.179688 0 C 2.980469 0.046875 2.796875 0.0664062 2.621094 0.0664062 C 2.324219 0.0664062 2.074219 0.0195312 1.875 -0.0742188 C 1.671875 -0.167969 1.523438 -0.308594 1.425781 -0.496094 C 1.375 -0.585938 1.335938 -0.691406 1.316406 -0.8125 C 1.292969 -0.933594 1.285156 -1.121094 1.285156 -1.375 L 1.285156 -2.761719 L 0.636719 -2.761719 C 0.53125 -2.761719 0.453125 -2.78125 0.40625 -2.824219 C 0.359375 -2.867188 0.335938 -2.933594 0.335938 -3.027344 C 0.335938 -3.128906 0.367188 -3.203125 0.433594 -3.238281 C 0.5 -3.277344 0.640625 -3.296875 0.855469 -3.296875 L 1.285156 -3.296875 L 1.285156 -4.277344 C 1.285156 -4.386719 1.308594 -4.464844 1.355469 -4.515625 C 1.402344 -4.570312 1.472656 -4.59375 1.570312 -4.59375 C 1.683594 -4.59375 1.761719 -4.5625 1.804688 -4.5 C 1.847656 -4.4375 1.867188 -4.292969 1.867188 -4.066406 L 1.867188 -3.296875 Z "/>
</symbol>
<symbol overflow="visible" id="glyph0-3">
<path style="stroke:none;" d="M 3.175781 -1.679688 C 3.035156 -1.722656 2.902344 -1.757812 2.769531 -1.777344 C 2.640625 -1.800781 2.511719 -1.8125 2.382812 -1.8125 C 1.992188 -1.8125 1.683594 -1.746094 1.457031 -1.613281 C 1.234375 -1.480469 1.121094 -1.304688 1.121094 -1.082031 C 1.121094 -0.910156 1.191406 -0.769531 1.332031 -0.65625 C 1.472656 -0.546875 1.652344 -0.488281 1.867188 -0.488281 C 2.191406 -0.488281 2.488281 -0.574219 2.761719 -0.742188 C 3.035156 -0.910156 3.175781 -1.085938 3.175781 -1.269531 Z M 3.207031 -0.480469 C 3 -0.292969 2.773438 -0.152344 2.527344 -0.0546875 C 2.28125 0.046875 2.03125 0.09375 1.773438 0.09375 C 1.394531 0.09375 1.089844 -0.0117188 0.859375 -0.21875 C 0.628906 -0.429688 0.511719 -0.703125 0.511719 -1.039062 C 0.511719 -1.441406 0.667969 -1.75 0.972656 -1.972656 C 1.28125 -2.191406 1.714844 -2.300781 2.269531 -2.300781 C 2.417969 -2.300781 2.566406 -2.292969 2.714844 -2.273438 C 2.863281 -2.253906 3.019531 -2.222656 3.175781 -2.183594 L 3.175781 -2.210938 C 3.175781 -2.5 3.105469 -2.714844 2.964844 -2.855469 C 2.828125 -2.996094 2.609375 -3.066406 2.316406 -3.066406 C 2.117188 -3.066406 1.898438 -3.011719 1.65625 -2.90625 C 1.414062 -2.800781 1.25 -2.746094 1.171875 -2.746094 C 1.097656 -2.746094 1.039062 -2.773438 0.992188 -2.835938 C 0.945312 -2.894531 0.917969 -2.972656 0.917969 -3.066406 C 0.917969 -3.214844 1.058594 -3.339844 1.339844 -3.445312 C 1.617188 -3.546875 1.976562 -3.601562 2.410156 -3.601562 C 2.855469 -3.601562 3.195312 -3.488281 3.421875 -3.261719 C 3.648438 -3.035156 3.761719 -2.699219 3.761719 -2.253906 L 3.761719 -0.535156 L 3.949219 -0.535156 C 4.128906 -0.535156 4.25 -0.515625 4.308594 -0.476562 C 4.371094 -0.441406 4.402344 -0.371094 4.402344 -0.273438 C 4.402344 -0.183594 4.375 -0.113281 4.324219 -0.0664062 C 4.273438 -0.0234375 4.199219 0 4.097656 0 L 3.5 0 C 3.429688 0 3.371094 -0.0234375 3.328125 -0.0664062 C 3.28125 -0.109375 3.25 -0.167969 3.234375 -0.25 Z "/>
</symbol>
<symbol overflow="visible" id="glyph0-4">
<path style="stroke:none;" d="M 2.226562 -2.945312 C 1.894531 -2.945312 1.621094 -2.84375 1.414062 -2.640625 C 1.203125 -2.433594 1.097656 -2.167969 1.097656 -1.84375 C 1.097656 -1.519531 1.203125 -1.257812 1.414062 -1.050781 C 1.625 -0.84375 1.894531 -0.742188 2.226562 -0.742188 C 2.554688 -0.742188 2.824219 -0.84375 3.035156 -1.050781 C 3.246094 -1.257812 3.351562 -1.519531 3.351562 -1.84375 C 3.351562 -2.164062 3.246094 -2.429688 3.035156 -2.636719 C 2.824219 -2.84375 2.554688 -2.945312 2.226562 -2.945312 Z M 3.875 -0.203125 C 3.875 0.152344 3.855469 0.40625 3.820312 0.550781 C 3.785156 0.699219 3.722656 0.832031 3.636719 0.941406 C 3.496094 1.128906 3.296875 1.273438 3.042969 1.367188 C 2.785156 1.464844 2.484375 1.515625 2.136719 1.515625 C 1.847656 1.515625 1.636719 1.488281 1.503906 1.433594 C 1.371094 1.375 1.304688 1.289062 1.304688 1.164062 C 1.304688 1.085938 1.339844 1.019531 1.402344 0.957031 C 1.46875 0.898438 1.542969 0.871094 1.632812 0.871094 C 1.703125 0.871094 1.804688 0.878906 1.949219 0.898438 C 2.089844 0.917969 2.199219 0.925781 2.269531 0.925781 C 2.644531 0.925781 2.910156 0.839844 3.070312 0.667969 C 3.226562 0.496094 3.304688 0.203125 3.304688 -0.214844 L 3.304688 -0.675781 C 3.148438 -0.496094 2.980469 -0.363281 2.792969 -0.28125 C 2.605469 -0.199219 2.386719 -0.15625 2.144531 -0.15625 C 1.671875 -0.15625 1.28125 -0.3125 0.96875 -0.628906 C 0.660156 -0.945312 0.503906 -1.34375 0.503906 -1.828125 C 0.503906 -2.3125 0.664062 -2.714844 0.984375 -3.035156 C 1.304688 -3.355469 1.699219 -3.515625 2.167969 -3.515625 C 2.363281 -3.515625 2.554688 -3.480469 2.738281 -3.410156 C 2.925781 -3.335938 3.113281 -3.226562 3.304688 -3.078125 L 3.304688 -3.351562 C 3.304688 -3.40625 3.320312 -3.445312 3.355469 -3.472656 C 3.390625 -3.496094 3.441406 -3.507812 3.515625 -3.507812 L 4.089844 -3.507812 C 4.191406 -3.507812 4.265625 -3.488281 4.316406 -3.441406 C 4.367188 -3.398438 4.394531 -3.332031 4.394531 -3.242188 C 4.394531 -3.140625 4.363281 -3.070312 4.296875 -3.03125 C 4.234375 -2.988281 4.117188 -2.96875 3.941406 -2.96875 L 3.875 -2.96875 Z "/>
</symbol>
<symbol overflow="visible" id="glyph0-5">
<path style="stroke:none;" d="M 1.980469 -4.601562 C 1.980469 -4.875 2.007812 -5.046875 2.054688 -5.117188 C 2.105469 -5.1875 2.210938 -5.226562 2.375 -5.226562 C 2.53125 -5.226562 2.632812 -5.195312 2.683594 -5.136719 C 2.734375 -5.078125 2.761719 -4.933594 2.761719 -4.710938 C 2.761719 -4.496094 2.738281 -4.359375 2.691406 -4.308594 C 2.644531 -4.257812 2.539062 -4.230469 2.375 -4.230469 C 2.210938 -4.230469 2.105469 -4.253906 2.054688 -4.300781 C 2.007812 -4.351562 1.980469 -4.449219 1.980469 -4.601562 Z M 2.683594 -0.535156 L 3.902344 -0.535156 C 4.003906 -0.535156 4.074219 -0.515625 4.121094 -0.472656 C 4.167969 -0.429688 4.191406 -0.363281 4.191406 -0.273438 C 4.191406 -0.167969 4.171875 -0.0976562 4.125 -0.0585938 C 4.082031 -0.0195312 4 0 3.882812 0 L 0.933594 0 C 0.832031 0 0.757812 -0.0234375 0.707031 -0.0664062 C 0.65625 -0.113281 0.628906 -0.183594 0.628906 -0.273438 C 0.628906 -0.363281 0.65625 -0.429688 0.710938 -0.472656 C 0.761719 -0.515625 0.84375 -0.535156 0.949219 -0.535156 L 2.109375 -0.535156 L 2.109375 -2.96875 L 1.367188 -2.96875 C 1.261719 -2.96875 1.183594 -2.992188 1.128906 -3.039062 C 1.074219 -3.085938 1.046875 -3.15625 1.046875 -3.242188 C 1.046875 -3.332031 1.074219 -3.398438 1.125 -3.441406 C 1.175781 -3.488281 1.25 -3.507812 1.351562 -3.507812 L 2.464844 -3.507812 C 2.53125 -3.507812 2.585938 -3.496094 2.625 -3.46875 C 2.664062 -3.441406 2.683594 -3.402344 2.683594 -3.351562 Z "/>
</symbol>
<symbol overflow="visible" id="glyph0-6">
<path style="stroke:none;" d="M 0.917969 -0.535156 L 0.917969 -2.96875 L 0.847656 -2.96875 C 0.675781 -2.96875 0.554688 -2.988281 0.492188 -3.03125 C 0.425781 -3.070312 0.394531 -3.140625 0.394531 -3.242188 C 0.394531 -3.335938 0.421875 -3.40625 0.476562 -3.445312 C 0.527344 -3.488281 0.613281 -3.507812 0.734375 -3.507812 L 1.277344 -3.507812 C 1.34375 -3.507812 1.398438 -3.496094 1.433594 -3.46875 C 1.472656 -3.441406 1.492188 -3.402344 1.492188 -3.351562 L 1.492188 -3.09375 C 1.675781 -3.265625 1.859375 -3.394531 2.042969 -3.476562 C 2.222656 -3.558594 2.410156 -3.601562 2.605469 -3.601562 C 2.988281 -3.601562 3.289062 -3.480469 3.507812 -3.242188 C 3.726562 -3.003906 3.835938 -2.675781 3.835938 -2.253906 L 3.835938 -0.535156 L 4.015625 -0.535156 C 4.140625 -0.535156 4.230469 -0.515625 4.289062 -0.472656 C 4.34375 -0.429688 4.371094 -0.363281 4.371094 -0.273438 C 4.371094 -0.175781 4.339844 -0.105469 4.28125 -0.0625 C 4.222656 -0.0195312 4.117188 0 3.964844 0 L 3.125 0 C 2.964844 0 2.859375 -0.0195312 2.8125 -0.0585938 C 2.769531 -0.09375 2.746094 -0.167969 2.746094 -0.273438 C 2.746094 -0.371094 2.773438 -0.441406 2.824219 -0.476562 C 2.878906 -0.515625 2.980469 -0.535156 3.125 -0.535156 L 3.257812 -0.535156 L 3.257812 -2.113281 C 3.257812 -2.410156 3.191406 -2.636719 3.058594 -2.792969 C 2.921875 -2.949219 2.726562 -3.027344 2.472656 -3.027344 C 2.214844 -3.027344 1.984375 -2.9375 1.789062 -2.765625 C 1.589844 -2.589844 1.492188 -2.375 1.492188 -2.113281 L 1.492188 -0.535156 L 1.625 -0.535156 C 1.777344 -0.535156 1.878906 -0.515625 1.933594 -0.476562 C 1.984375 -0.441406 2.011719 -0.371094 2.011719 -0.273438 C 2.011719 -0.167969 1.988281 -0.09375 1.945312 -0.0585938 C 1.898438 -0.0195312 1.789062 0 1.609375 0 L 0.714844 0 C 0.609375 0 0.53125 -0.0234375 0.480469 -0.0664062 C 0.429688 -0.109375 0.402344 -0.179688 0.402344 -0.273438 C 0.402344 -0.375 0.433594 -0.445312 0.492188 -0.480469 C 0.550781 -0.515625 0.667969 -0.535156 0.839844 -0.535156 Z "/>
</symbol>
<symbol overflow="visible" id="glyph0-7">
<g>
</g>
</symbol>
<symbol overflow="visible" id="glyph0-8">
<path style="stroke:none;" d="M 1.960938 -0.535156 L 3.21875 -0.535156 C 3.320312 -0.535156 3.390625 -0.515625 3.4375 -0.472656 C 3.484375 -0.429688 3.507812 -0.363281 3.507812 -0.273438 C 3.507812 -0.167969 3.488281 -0.0976562 3.441406 -0.0585938 C 3.398438 -0.0195312 3.316406 0 3.199219 0 L 0.714844 0 C 0.617188 0 0.539062 -0.0234375 0.488281 -0.0664062 C 0.4375 -0.113281 0.414062 -0.183594 0.414062 -0.273438 C 0.414062 -0.363281 0.441406 -0.429688 0.492188 -0.472656 C 0.542969 -0.515625 0.625 -0.535156 0.734375 -0.535156 L 1.394531 -0.535156 L 1.394531 -2.96875 L 1.136719 -2.96875 C 0.890625 -2.96875 0.738281 -2.988281 0.675781 -3.027344 C 0.613281 -3.066406 0.585938 -3.140625 0.585938 -3.242188 C 0.585938 -3.332031 0.609375 -3.398438 0.660156 -3.441406 C 0.707031 -3.488281 0.785156 -3.507812 0.886719 -3.507812 L 1.75 -3.507812 C 1.820312 -3.507812 1.871094 -3.496094 1.90625 -3.46875 C 1.941406 -3.441406 1.960938 -3.402344 1.960938 -3.351562 L 1.960938 -2.707031 C 2.199219 -3.007812 2.449219 -3.234375 2.710938 -3.378906 C 2.972656 -3.527344 3.253906 -3.601562 3.554688 -3.601562 C 3.78125 -3.601562 3.960938 -3.554688 4.101562 -3.464844 C 4.242188 -3.371094 4.308594 -3.253906 4.308594 -3.109375 C 4.308594 -3.015625 4.273438 -2.933594 4.207031 -2.863281 C 4.136719 -2.789062 4.058594 -2.753906 3.976562 -2.753906 C 3.917969 -2.753906 3.820312 -2.792969 3.683594 -2.867188 C 3.542969 -2.945312 3.421875 -2.984375 3.3125 -2.984375 C 3.113281 -2.984375 2.90625 -2.914062 2.6875 -2.773438 C 2.46875 -2.632812 2.226562 -2.410156 1.960938 -2.109375 Z "/>
</symbol>
<symbol overflow="visible" id="glyph0-9">
<path style="stroke:none;" d="M 1.046875 -1.585938 C 1.066406 -1.222656 1.191406 -0.941406 1.417969 -0.742188 C 1.644531 -0.542969 1.953125 -0.445312 2.347656 -0.445312 C 2.644531 -0.445312 2.964844 -0.523438 3.316406 -0.683594 C 3.664062 -0.839844 3.875 -0.917969 3.949219 -0.917969 C 4.023438 -0.917969 4.089844 -0.894531 4.140625 -0.847656 C 4.191406 -0.800781 4.214844 -0.738281 4.214844 -0.667969 C 4.214844 -0.59375 4.1875 -0.527344 4.136719 -0.46875 C 4.082031 -0.40625 3.996094 -0.347656 3.882812 -0.289062 C 3.628906 -0.164062 3.367188 -0.0703125 3.097656 -0.00390625 C 2.828125 0.0625 2.558594 0.09375 2.292969 0.09375 C 1.714844 0.09375 1.253906 -0.0703125 0.90625 -0.40625 C 0.558594 -0.738281 0.386719 -1.179688 0.386719 -1.726562 C 0.386719 -2.285156 0.570312 -2.742188 0.9375 -3.085938 C 1.304688 -3.433594 1.785156 -3.609375 2.375 -3.609375 C 2.90625 -3.609375 3.351562 -3.445312 3.703125 -3.121094 C 4.054688 -2.796875 4.230469 -2.40625 4.230469 -1.945312 C 4.230469 -1.804688 4.199219 -1.707031 4.140625 -1.660156 C 4.082031 -1.613281 3.921875 -1.585938 3.65625 -1.585938 Z M 1.066406 -2.085938 L 3.539062 -2.085938 C 3.5 -2.386719 3.375 -2.628906 3.160156 -2.8125 C 2.945312 -2.996094 2.683594 -3.085938 2.375 -3.085938 C 2.039062 -3.085938 1.753906 -3 1.523438 -2.820312 C 1.292969 -2.644531 1.140625 -2.398438 1.066406 -2.085938 Z "/>
</symbol>
</g>
</defs>
<g id="surface74">
<g style="fill:rgb(100%,100%,100%);fill-opacity:1;">
<use xlink:href="#glyph0-1" x="30" y="25.863281"/>
<use xlink:href="#glyph0-2" x="35" y="25.863281"/>
<use xlink:href="#glyph0-3" x="40" y="25.863281"/>
<use xlink:href="#glyph0-4" x="45" y="25.863281"/>
<use xlink:href="#glyph0-5" x="50" y="25.863281"/>
<use xlink:href="#glyph0-6" x="55" y="25.863281"/>
<use xlink:href="#glyph0-4" x="60" y="25.863281"/>
<use xlink:href="#glyph0-7" x="65" y="25.863281"/>
<use xlink:href="#glyph0-3" x="70" y="25.863281"/>
<use xlink:href="#glyph0-8" x="75" y="25.863281"/>
<use xlink:href="#glyph0-9" x="80" y="25.863281"/>
<use xlink:href="#glyph0-3" x="85" y="25.863281"/>
</g>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 16 KiB

View File

@ -1,71 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="1920pt" height="1080pt" viewBox="0 0 1920 1080" version="1.1">
<defs>
<g>
<symbol overflow="visible" id="glyph0-0">
<path style="stroke:none;" d="M 0.386719 1.375 L 0.386719 -5.484375 L 4.277344 -5.484375 L 4.277344 1.375 Z M 0.824219 0.941406 L 3.84375 0.941406 L 3.84375 -5.046875 L 0.824219 -5.046875 Z "/>
</symbol>
<symbol overflow="visible" id="glyph0-1">
<path style="stroke:none;" d="M 1.351562 -0.972656 L 2.003906 -3.242188 C 2.027344 -3.324219 2.054688 -3.375 2.082031 -3.398438 C 2.113281 -3.417969 2.164062 -3.429688 2.242188 -3.429688 L 2.410156 -3.429688 C 2.484375 -3.429688 2.539062 -3.417969 2.570312 -3.394531 C 2.601562 -3.371094 2.628906 -3.328125 2.652344 -3.257812 L 3.390625 -0.972656 L 3.761719 -3.992188 L 3.167969 -3.992188 C 3.050781 -3.992188 2.964844 -4.011719 2.910156 -4.050781 C 2.855469 -4.09375 2.828125 -4.15625 2.828125 -4.246094 C 2.828125 -4.34375 2.855469 -4.410156 2.90625 -4.445312 C 2.957031 -4.484375 3.054688 -4.503906 3.199219 -4.503906 L 4.425781 -4.503906 C 4.480469 -4.503906 4.527344 -4.480469 4.570312 -4.429688 C 4.613281 -4.378906 4.636719 -4.320312 4.636719 -4.246094 C 4.636719 -4.160156 4.613281 -4.09375 4.566406 -4.054688 C 4.515625 -4.011719 4.445312 -3.992188 4.347656 -3.992188 L 4.300781 -3.992188 L 3.761719 -0.195312 C 3.753906 -0.117188 3.742188 -0.0625 3.71875 -0.0390625 C 3.699219 -0.0117188 3.664062 0 3.617188 0 L 3.34375 0 C 3.285156 0 3.242188 -0.0117188 3.210938 -0.0351562 C 3.183594 -0.0585938 3.15625 -0.101562 3.132812 -0.164062 L 2.308594 -2.777344 L 1.578125 -0.15625 C 1.5625 -0.09375 1.539062 -0.0507812 1.511719 -0.03125 C 1.484375 -0.0117188 1.4375 0 1.375 0 L 1.089844 0 C 1.039062 0 1 -0.0117188 0.976562 -0.0351562 C 0.953125 -0.0585938 0.9375 -0.113281 0.925781 -0.203125 L 0.347656 -3.992188 L 0.304688 -3.992188 C 0.207031 -3.992188 0.132812 -4.011719 0.0820312 -4.054688 C 0.03125 -4.097656 0.0078125 -4.160156 0.0078125 -4.246094 C 0.0078125 -4.320312 0.0273438 -4.382812 0.0664062 -4.433594 C 0.109375 -4.480469 0.160156 -4.503906 0.214844 -4.503906 L 1.445312 -4.503906 C 1.585938 -4.503906 1.683594 -4.484375 1.734375 -4.445312 C 1.785156 -4.410156 1.8125 -4.34375 1.8125 -4.246094 C 1.8125 -4.15625 1.785156 -4.09375 1.730469 -4.050781 C 1.675781 -4.011719 1.589844 -3.992188 1.476562 -3.992188 L 0.941406 -3.992188 Z "/>
</symbol>
<symbol overflow="visible" id="glyph0-2">
<path style="stroke:none;" d="M 2.332031 -0.4375 C 2.722656 -0.4375 3.042969 -0.558594 3.289062 -0.808594 C 3.539062 -1.054688 3.664062 -1.367188 3.664062 -1.75 C 3.664062 -2.132812 3.539062 -2.449219 3.289062 -2.699219 C 3.039062 -2.949219 2.71875 -3.070312 2.332031 -3.070312 C 1.945312 -3.070312 1.625 -2.949219 1.375 -2.699219 C 1.125 -2.449219 1.003906 -2.132812 1.003906 -1.75 C 1.003906 -1.367188 1.125 -1.050781 1.375 -0.804688 C 1.621094 -0.558594 1.941406 -0.4375 2.332031 -0.4375 Z M 4.324219 -1.75 C 4.324219 -1.207031 4.140625 -0.765625 3.769531 -0.421875 C 3.402344 -0.078125 2.921875 0.09375 2.332031 0.09375 C 1.746094 0.09375 1.265625 -0.078125 0.894531 -0.421875 C 0.527344 -0.765625 0.339844 -1.207031 0.339844 -1.75 C 0.339844 -2.292969 0.527344 -2.734375 0.894531 -3.078125 C 1.265625 -3.421875 1.746094 -3.59375 2.332031 -3.59375 C 2.917969 -3.59375 3.398438 -3.421875 3.769531 -3.074219 C 4.140625 -2.730469 4.324219 -2.289062 4.324219 -1.75 Z "/>
</symbol>
<symbol overflow="visible" id="glyph0-3">
<path style="stroke:none;" d="M 1.960938 -0.535156 L 3.21875 -0.535156 C 3.320312 -0.535156 3.390625 -0.515625 3.4375 -0.472656 C 3.484375 -0.429688 3.507812 -0.363281 3.507812 -0.273438 C 3.507812 -0.167969 3.488281 -0.0976562 3.441406 -0.0585938 C 3.398438 -0.0195312 3.316406 0 3.199219 0 L 0.714844 0 C 0.617188 0 0.539062 -0.0234375 0.488281 -0.0664062 C 0.4375 -0.113281 0.414062 -0.183594 0.414062 -0.273438 C 0.414062 -0.363281 0.441406 -0.429688 0.492188 -0.472656 C 0.542969 -0.515625 0.625 -0.535156 0.734375 -0.535156 L 1.394531 -0.535156 L 1.394531 -2.96875 L 1.136719 -2.96875 C 0.890625 -2.96875 0.738281 -2.988281 0.675781 -3.027344 C 0.613281 -3.066406 0.585938 -3.140625 0.585938 -3.242188 C 0.585938 -3.332031 0.609375 -3.398438 0.660156 -3.441406 C 0.707031 -3.488281 0.785156 -3.507812 0.886719 -3.507812 L 1.75 -3.507812 C 1.820312 -3.507812 1.871094 -3.496094 1.90625 -3.46875 C 1.941406 -3.441406 1.960938 -3.402344 1.960938 -3.351562 L 1.960938 -2.707031 C 2.199219 -3.007812 2.449219 -3.234375 2.710938 -3.378906 C 2.972656 -3.527344 3.253906 -3.601562 3.554688 -3.601562 C 3.78125 -3.601562 3.960938 -3.554688 4.101562 -3.464844 C 4.242188 -3.371094 4.308594 -3.253906 4.308594 -3.109375 C 4.308594 -3.015625 4.273438 -2.933594 4.207031 -2.863281 C 4.136719 -2.789062 4.058594 -2.753906 3.976562 -2.753906 C 3.917969 -2.753906 3.820312 -2.792969 3.683594 -2.867188 C 3.542969 -2.945312 3.421875 -2.984375 3.3125 -2.984375 C 3.113281 -2.984375 2.90625 -2.914062 2.6875 -2.773438 C 2.46875 -2.632812 2.226562 -2.410156 1.960938 -2.109375 Z "/>
</symbol>
<symbol overflow="visible" id="glyph0-4">
<path style="stroke:none;" d="M 1.640625 -1.453125 L 1.640625 -0.335938 C 1.640625 -0.234375 1.621094 -0.152344 1.578125 -0.0898438 C 1.535156 -0.03125 1.480469 0 1.417969 0 L 0.714844 0 C 0.617188 0 0.539062 -0.0234375 0.488281 -0.0664062 C 0.4375 -0.113281 0.414062 -0.183594 0.414062 -0.273438 C 0.414062 -0.375 0.445312 -0.445312 0.503906 -0.480469 C 0.5625 -0.515625 0.691406 -0.535156 0.886719 -0.535156 L 1.066406 -0.535156 L 1.066406 -4.425781 L 0.910156 -4.425781 C 0.691406 -4.425781 0.554688 -4.445312 0.488281 -4.484375 C 0.425781 -4.523438 0.394531 -4.59375 0.394531 -4.699219 C 0.394531 -4.789062 0.421875 -4.855469 0.472656 -4.902344 C 0.523438 -4.949219 0.601562 -4.972656 0.699219 -4.972656 L 1.425781 -4.972656 C 1.492188 -4.972656 1.546875 -4.957031 1.582031 -4.929688 C 1.621094 -4.902344 1.640625 -4.863281 1.640625 -4.816406 L 1.640625 -2.09375 L 2.738281 -3.011719 C 2.65625 -3.046875 2.59375 -3.085938 2.554688 -3.128906 C 2.515625 -3.171875 2.496094 -3.222656 2.496094 -3.28125 C 2.496094 -3.355469 2.523438 -3.414062 2.578125 -3.453125 C 2.632812 -3.492188 2.714844 -3.507812 2.820312 -3.507812 L 3.851562 -3.507812 C 3.945312 -3.507812 4.019531 -3.488281 4.070312 -3.445312 C 4.121094 -3.402344 4.148438 -3.335938 4.148438 -3.25 C 4.148438 -3.097656 4.023438 -3.011719 3.777344 -2.984375 C 3.730469 -2.980469 3.691406 -2.976562 3.664062 -2.96875 C 3.5625 -2.957031 3.445312 -2.917969 3.324219 -2.851562 C 3.199219 -2.785156 3.074219 -2.695312 2.945312 -2.582031 L 2.394531 -2.101562 L 3.835938 -0.535156 L 4.160156 -0.535156 C 4.269531 -0.535156 4.347656 -0.515625 4.394531 -0.476562 C 4.441406 -0.433594 4.464844 -0.367188 4.464844 -0.273438 C 4.464844 -0.183594 4.441406 -0.117188 4.386719 -0.0703125 C 4.335938 -0.0234375 4.261719 0 4.160156 0 L 3.132812 0 C 3.023438 0 2.941406 -0.0195312 2.890625 -0.0585938 C 2.839844 -0.09375 2.8125 -0.15625 2.8125 -0.238281 C 2.8125 -0.308594 2.839844 -0.367188 2.886719 -0.414062 C 2.9375 -0.464844 3.011719 -0.503906 3.109375 -0.535156 L 1.980469 -1.765625 Z "/>
</symbol>
<symbol overflow="visible" id="glyph0-5">
<path style="stroke:none;" d="M 1.980469 -4.601562 C 1.980469 -4.875 2.007812 -5.046875 2.054688 -5.117188 C 2.105469 -5.1875 2.210938 -5.226562 2.375 -5.226562 C 2.53125 -5.226562 2.632812 -5.195312 2.683594 -5.136719 C 2.734375 -5.078125 2.761719 -4.933594 2.761719 -4.710938 C 2.761719 -4.496094 2.738281 -4.359375 2.691406 -4.308594 C 2.644531 -4.257812 2.539062 -4.230469 2.375 -4.230469 C 2.210938 -4.230469 2.105469 -4.253906 2.054688 -4.300781 C 2.007812 -4.351562 1.980469 -4.449219 1.980469 -4.601562 Z M 2.683594 -0.535156 L 3.902344 -0.535156 C 4.003906 -0.535156 4.074219 -0.515625 4.121094 -0.472656 C 4.167969 -0.429688 4.191406 -0.363281 4.191406 -0.273438 C 4.191406 -0.167969 4.171875 -0.0976562 4.125 -0.0585938 C 4.082031 -0.0195312 4 0 3.882812 0 L 0.933594 0 C 0.832031 0 0.757812 -0.0234375 0.707031 -0.0664062 C 0.65625 -0.113281 0.628906 -0.183594 0.628906 -0.273438 C 0.628906 -0.363281 0.65625 -0.429688 0.710938 -0.472656 C 0.761719 -0.515625 0.84375 -0.535156 0.949219 -0.535156 L 2.109375 -0.535156 L 2.109375 -2.96875 L 1.367188 -2.96875 C 1.261719 -2.96875 1.183594 -2.992188 1.128906 -3.039062 C 1.074219 -3.085938 1.046875 -3.15625 1.046875 -3.242188 C 1.046875 -3.332031 1.074219 -3.398438 1.125 -3.441406 C 1.175781 -3.488281 1.25 -3.507812 1.351562 -3.507812 L 2.464844 -3.507812 C 2.53125 -3.507812 2.585938 -3.496094 2.625 -3.46875 C 2.664062 -3.441406 2.683594 -3.402344 2.683594 -3.351562 Z "/>
</symbol>
<symbol overflow="visible" id="glyph0-6">
<path style="stroke:none;" d="M 0.917969 -0.535156 L 0.917969 -2.96875 L 0.847656 -2.96875 C 0.675781 -2.96875 0.554688 -2.988281 0.492188 -3.03125 C 0.425781 -3.070312 0.394531 -3.140625 0.394531 -3.242188 C 0.394531 -3.335938 0.421875 -3.40625 0.476562 -3.445312 C 0.527344 -3.488281 0.613281 -3.507812 0.734375 -3.507812 L 1.277344 -3.507812 C 1.34375 -3.507812 1.398438 -3.496094 1.433594 -3.46875 C 1.472656 -3.441406 1.492188 -3.402344 1.492188 -3.351562 L 1.492188 -3.09375 C 1.675781 -3.265625 1.859375 -3.394531 2.042969 -3.476562 C 2.222656 -3.558594 2.410156 -3.601562 2.605469 -3.601562 C 2.988281 -3.601562 3.289062 -3.480469 3.507812 -3.242188 C 3.726562 -3.003906 3.835938 -2.675781 3.835938 -2.253906 L 3.835938 -0.535156 L 4.015625 -0.535156 C 4.140625 -0.535156 4.230469 -0.515625 4.289062 -0.472656 C 4.34375 -0.429688 4.371094 -0.363281 4.371094 -0.273438 C 4.371094 -0.175781 4.339844 -0.105469 4.28125 -0.0625 C 4.222656 -0.0195312 4.117188 0 3.964844 0 L 3.125 0 C 2.964844 0 2.859375 -0.0195312 2.8125 -0.0585938 C 2.769531 -0.09375 2.746094 -0.167969 2.746094 -0.273438 C 2.746094 -0.371094 2.773438 -0.441406 2.824219 -0.476562 C 2.878906 -0.515625 2.980469 -0.535156 3.125 -0.535156 L 3.257812 -0.535156 L 3.257812 -2.113281 C 3.257812 -2.410156 3.191406 -2.636719 3.058594 -2.792969 C 2.921875 -2.949219 2.726562 -3.027344 2.472656 -3.027344 C 2.214844 -3.027344 1.984375 -2.9375 1.789062 -2.765625 C 1.589844 -2.589844 1.492188 -2.375 1.492188 -2.113281 L 1.492188 -0.535156 L 1.625 -0.535156 C 1.777344 -0.535156 1.878906 -0.515625 1.933594 -0.476562 C 1.984375 -0.441406 2.011719 -0.371094 2.011719 -0.273438 C 2.011719 -0.167969 1.988281 -0.09375 1.945312 -0.0585938 C 1.898438 -0.0195312 1.789062 0 1.609375 0 L 0.714844 0 C 0.609375 0 0.53125 -0.0234375 0.480469 -0.0664062 C 0.429688 -0.109375 0.402344 -0.179688 0.402344 -0.273438 C 0.402344 -0.375 0.433594 -0.445312 0.492188 -0.480469 C 0.550781 -0.515625 0.667969 -0.535156 0.839844 -0.535156 Z "/>
</symbol>
<symbol overflow="visible" id="glyph0-7">
<path style="stroke:none;" d="M 2.226562 -2.945312 C 1.894531 -2.945312 1.621094 -2.84375 1.414062 -2.640625 C 1.203125 -2.433594 1.097656 -2.167969 1.097656 -1.84375 C 1.097656 -1.519531 1.203125 -1.257812 1.414062 -1.050781 C 1.625 -0.84375 1.894531 -0.742188 2.226562 -0.742188 C 2.554688 -0.742188 2.824219 -0.84375 3.035156 -1.050781 C 3.246094 -1.257812 3.351562 -1.519531 3.351562 -1.84375 C 3.351562 -2.164062 3.246094 -2.429688 3.035156 -2.636719 C 2.824219 -2.84375 2.554688 -2.945312 2.226562 -2.945312 Z M 3.875 -0.203125 C 3.875 0.152344 3.855469 0.40625 3.820312 0.550781 C 3.785156 0.699219 3.722656 0.832031 3.636719 0.941406 C 3.496094 1.128906 3.296875 1.273438 3.042969 1.367188 C 2.785156 1.464844 2.484375 1.515625 2.136719 1.515625 C 1.847656 1.515625 1.636719 1.488281 1.503906 1.433594 C 1.371094 1.375 1.304688 1.289062 1.304688 1.164062 C 1.304688 1.085938 1.339844 1.019531 1.402344 0.957031 C 1.46875 0.898438 1.542969 0.871094 1.632812 0.871094 C 1.703125 0.871094 1.804688 0.878906 1.949219 0.898438 C 2.089844 0.917969 2.199219 0.925781 2.269531 0.925781 C 2.644531 0.925781 2.910156 0.839844 3.070312 0.667969 C 3.226562 0.496094 3.304688 0.203125 3.304688 -0.214844 L 3.304688 -0.675781 C 3.148438 -0.496094 2.980469 -0.363281 2.792969 -0.28125 C 2.605469 -0.199219 2.386719 -0.15625 2.144531 -0.15625 C 1.671875 -0.15625 1.28125 -0.3125 0.96875 -0.628906 C 0.660156 -0.945312 0.503906 -1.34375 0.503906 -1.828125 C 0.503906 -2.3125 0.664062 -2.714844 0.984375 -3.035156 C 1.304688 -3.355469 1.699219 -3.515625 2.167969 -3.515625 C 2.363281 -3.515625 2.554688 -3.480469 2.738281 -3.410156 C 2.925781 -3.335938 3.113281 -3.226562 3.304688 -3.078125 L 3.304688 -3.351562 C 3.304688 -3.40625 3.320312 -3.445312 3.355469 -3.472656 C 3.390625 -3.496094 3.441406 -3.507812 3.515625 -3.507812 L 4.089844 -3.507812 C 4.191406 -3.507812 4.265625 -3.488281 4.316406 -3.441406 C 4.367188 -3.398438 4.394531 -3.332031 4.394531 -3.242188 C 4.394531 -3.140625 4.363281 -3.070312 4.296875 -3.03125 C 4.234375 -2.988281 4.117188 -2.96875 3.941406 -2.96875 L 3.875 -2.96875 Z "/>
</symbol>
<symbol overflow="visible" id="glyph0-8">
<g>
</g>
</symbol>
<symbol overflow="visible" id="glyph0-9">
<path style="stroke:none;" d="M 3.476562 0 C 3.421875 0 3.382812 -0.0117188 3.363281 -0.0390625 C 3.339844 -0.0664062 3.332031 -0.117188 3.332031 -0.195312 L 3.332031 -0.503906 C 3.179688 -0.316406 2.988281 -0.167969 2.761719 -0.0625 C 2.535156 0.0429688 2.285156 0.09375 2.019531 0.09375 C 1.542969 0.09375 1.140625 -0.0742188 0.820312 -0.414062 C 0.496094 -0.753906 0.335938 -1.179688 0.335938 -1.6875 C 0.335938 -2.210938 0.507812 -2.644531 0.851562 -2.996094 C 1.195312 -3.34375 1.625 -3.515625 2.136719 -3.515625 C 2.398438 -3.515625 2.632812 -3.46875 2.839844 -3.378906 C 3.046875 -3.285156 3.226562 -3.148438 3.375 -2.96875 L 3.375 -4.425781 L 3.175781 -4.425781 C 2.953125 -4.425781 2.8125 -4.445312 2.746094 -4.484375 C 2.683594 -4.523438 2.652344 -4.59375 2.652344 -4.699219 C 2.652344 -4.789062 2.675781 -4.855469 2.730469 -4.902344 C 2.78125 -4.949219 2.855469 -4.972656 2.953125 -4.972656 L 3.734375 -4.972656 C 3.808594 -4.972656 3.863281 -4.957031 3.898438 -4.933594 C 3.933594 -4.90625 3.949219 -4.867188 3.949219 -4.816406 L 3.949219 -0.535156 L 4.121094 -0.535156 C 4.246094 -0.535156 4.335938 -0.515625 4.390625 -0.472656 C 4.445312 -0.429688 4.472656 -0.363281 4.472656 -0.273438 C 4.472656 -0.1875 4.449219 -0.121094 4.402344 -0.0703125 C 4.355469 -0.0234375 4.289062 0 4.207031 0 Z M 0.988281 -1.707031 C 0.988281 -1.355469 1.101562 -1.070312 1.324219 -0.847656 C 1.550781 -0.625 1.835938 -0.511719 2.183594 -0.511719 C 2.53125 -0.511719 2.820312 -0.628906 3.046875 -0.859375 C 3.269531 -1.089844 3.382812 -1.386719 3.382812 -1.742188 C 3.382812 -2.09375 3.273438 -2.386719 3.046875 -2.613281 C 2.824219 -2.839844 2.535156 -2.953125 2.183594 -2.953125 C 1.828125 -2.953125 1.539062 -2.839844 1.316406 -2.609375 C 1.097656 -2.378906 0.988281 -2.078125 0.988281 -1.707031 Z "/>
</symbol>
<symbol overflow="visible" id="glyph0-10">
<path style="stroke:none;" d="M 1.046875 -1.585938 C 1.066406 -1.222656 1.191406 -0.941406 1.417969 -0.742188 C 1.644531 -0.542969 1.953125 -0.445312 2.347656 -0.445312 C 2.644531 -0.445312 2.964844 -0.523438 3.316406 -0.683594 C 3.664062 -0.839844 3.875 -0.917969 3.949219 -0.917969 C 4.023438 -0.917969 4.089844 -0.894531 4.140625 -0.847656 C 4.191406 -0.800781 4.214844 -0.738281 4.214844 -0.667969 C 4.214844 -0.59375 4.1875 -0.527344 4.136719 -0.46875 C 4.082031 -0.40625 3.996094 -0.347656 3.882812 -0.289062 C 3.628906 -0.164062 3.367188 -0.0703125 3.097656 -0.00390625 C 2.828125 0.0625 2.558594 0.09375 2.292969 0.09375 C 1.714844 0.09375 1.253906 -0.0703125 0.90625 -0.40625 C 0.558594 -0.738281 0.386719 -1.179688 0.386719 -1.726562 C 0.386719 -2.285156 0.570312 -2.742188 0.9375 -3.085938 C 1.304688 -3.433594 1.785156 -3.609375 2.375 -3.609375 C 2.90625 -3.609375 3.351562 -3.445312 3.703125 -3.121094 C 4.054688 -2.796875 4.230469 -2.40625 4.230469 -1.945312 C 4.230469 -1.804688 4.199219 -1.707031 4.140625 -1.660156 C 4.082031 -1.613281 3.921875 -1.585938 3.65625 -1.585938 Z M 1.066406 -2.085938 L 3.539062 -2.085938 C 3.5 -2.386719 3.375 -2.628906 3.160156 -2.8125 C 2.945312 -2.996094 2.683594 -3.085938 2.375 -3.085938 C 2.039062 -3.085938 1.753906 -3 1.523438 -2.820312 C 1.292969 -2.644531 1.140625 -2.398438 1.066406 -2.085938 Z "/>
</symbol>
<symbol overflow="visible" id="glyph0-11">
<path style="stroke:none;" d="M 3.476562 -3.28125 L 3.476562 -3.296875 C 3.476562 -3.378906 3.5 -3.441406 3.546875 -3.480469 C 3.59375 -3.519531 3.667969 -3.539062 3.769531 -3.539062 C 3.875 -3.539062 3.945312 -3.507812 3.984375 -3.449219 C 4.023438 -3.386719 4.042969 -3.261719 4.042969 -3.070312 L 4.042969 -2.367188 C 4.042969 -2.273438 4.019531 -2.203125 3.972656 -2.15625 C 3.925781 -2.109375 3.851562 -2.085938 3.753906 -2.085938 C 3.6875 -2.085938 3.628906 -2.105469 3.578125 -2.144531 C 3.53125 -2.183594 3.46875 -2.265625 3.398438 -2.386719 C 3.277344 -2.59375 3.128906 -2.75 2.957031 -2.855469 C 2.78125 -2.960938 2.582031 -3.011719 2.359375 -3.011719 C 1.964844 -3.011719 1.640625 -2.894531 1.394531 -2.660156 C 1.148438 -2.429688 1.023438 -2.128906 1.023438 -1.757812 C 1.023438 -1.382812 1.144531 -1.074219 1.378906 -0.832031 C 1.617188 -0.59375 1.921875 -0.476562 2.292969 -0.476562 C 2.464844 -0.476562 2.625 -0.5 2.777344 -0.546875 C 2.929688 -0.59375 3.074219 -0.660156 3.210938 -0.753906 C 3.261719 -0.785156 3.324219 -0.832031 3.40625 -0.894531 C 3.570312 -1.03125 3.699219 -1.097656 3.792969 -1.097656 C 3.871094 -1.097656 3.9375 -1.074219 3.984375 -1.023438 C 4.035156 -0.972656 4.058594 -0.910156 4.058594 -0.832031 C 4.058594 -0.632812 3.871094 -0.425781 3.492188 -0.21875 C 3.113281 -0.0078125 2.710938 0.09375 2.285156 0.09375 C 1.738281 0.09375 1.277344 -0.0820312 0.914062 -0.433594 C 0.546875 -0.785156 0.363281 -1.222656 0.363281 -1.75 C 0.363281 -2.277344 0.546875 -2.71875 0.910156 -3.070312 C 1.277344 -3.421875 1.730469 -3.601562 2.277344 -3.601562 C 2.46875 -3.601562 2.664062 -3.574219 2.859375 -3.523438 C 3.050781 -3.472656 3.257812 -3.390625 3.476562 -3.28125 Z "/>
</symbol>
<symbol overflow="visible" id="glyph0-12">
<path style="stroke:none;" d="M 3.367188 -3.296875 C 3.492188 -3.296875 3.582031 -3.273438 3.640625 -3.230469 C 3.695312 -3.1875 3.726562 -3.121094 3.726562 -3.027344 C 3.726562 -2.9375 3.699219 -2.871094 3.644531 -2.828125 C 3.59375 -2.785156 3.511719 -2.761719 3.40625 -2.761719 L 1.867188 -2.761719 L 1.867188 -1.492188 C 1.867188 -1.078125 1.921875 -0.804688 2.03125 -0.671875 C 2.136719 -0.539062 2.320312 -0.476562 2.582031 -0.476562 C 2.8125 -0.476562 3.089844 -0.542969 3.410156 -0.675781 C 3.730469 -0.808594 3.929688 -0.878906 4.007812 -0.878906 C 4.078125 -0.878906 4.136719 -0.851562 4.1875 -0.800781 C 4.238281 -0.75 4.261719 -0.6875 4.261719 -0.613281 C 4.261719 -0.53125 4.230469 -0.457031 4.167969 -0.398438 C 4.105469 -0.335938 4 -0.273438 3.851562 -0.214844 C 3.601562 -0.117188 3.378906 -0.046875 3.179688 0 C 2.980469 0.046875 2.796875 0.0664062 2.621094 0.0664062 C 2.324219 0.0664062 2.074219 0.0195312 1.875 -0.0742188 C 1.671875 -0.167969 1.523438 -0.308594 1.425781 -0.496094 C 1.375 -0.585938 1.335938 -0.691406 1.316406 -0.8125 C 1.292969 -0.933594 1.285156 -1.121094 1.285156 -1.375 L 1.285156 -2.761719 L 0.636719 -2.761719 C 0.53125 -2.761719 0.453125 -2.78125 0.40625 -2.824219 C 0.359375 -2.867188 0.335938 -2.933594 0.335938 -3.027344 C 0.335938 -3.128906 0.367188 -3.203125 0.433594 -3.238281 C 0.5 -3.277344 0.640625 -3.296875 0.855469 -3.296875 L 1.285156 -3.296875 L 1.285156 -4.277344 C 1.285156 -4.386719 1.308594 -4.464844 1.355469 -4.515625 C 1.402344 -4.570312 1.472656 -4.59375 1.570312 -4.59375 C 1.683594 -4.59375 1.761719 -4.5625 1.804688 -4.5 C 1.847656 -4.4375 1.867188 -4.292969 1.867188 -4.066406 L 1.867188 -3.296875 Z "/>
</symbol>
<symbol overflow="visible" id="glyph0-13">
<path style="stroke:none;" d="M 2.046875 0.972656 L 2.210938 0.972656 C 2.394531 0.972656 2.519531 0.992188 2.585938 1.03125 C 2.652344 1.070312 2.683594 1.140625 2.683594 1.246094 C 2.683594 1.335938 2.660156 1.402344 2.605469 1.445312 C 2.554688 1.492188 2.480469 1.515625 2.382812 1.515625 L 0.628906 1.515625 C 0.511719 1.515625 0.429688 1.496094 0.382812 1.453125 C 0.335938 1.414062 0.3125 1.34375 0.3125 1.246094 C 0.3125 1.15625 0.335938 1.085938 0.386719 1.039062 C 0.433594 0.996094 0.507812 0.972656 0.609375 0.972656 L 1.433594 0.972656 L 2.046875 -0.238281 L 0.652344 -2.96875 C 0.484375 -2.96875 0.371094 -2.988281 0.308594 -3.03125 C 0.246094 -3.070312 0.214844 -3.140625 0.214844 -3.242188 C 0.214844 -3.332031 0.242188 -3.398438 0.292969 -3.441406 C 0.34375 -3.488281 0.417969 -3.507812 0.519531 -3.507812 L 1.578125 -3.507812 C 1.722656 -3.507812 1.816406 -3.488281 1.863281 -3.449219 C 1.914062 -3.410156 1.9375 -3.34375 1.9375 -3.242188 C 1.9375 -3.140625 1.90625 -3.070312 1.84375 -3.03125 C 1.777344 -2.988281 1.660156 -2.96875 1.492188 -2.96875 L 1.351562 -2.96875 L 2.382812 -0.878906 L 3.429688 -2.96875 L 3.28125 -2.96875 C 3.105469 -2.96875 2.984375 -2.988281 2.921875 -3.03125 C 2.855469 -3.070312 2.820312 -3.140625 2.820312 -3.242188 C 2.820312 -3.339844 2.84375 -3.410156 2.894531 -3.449219 C 2.941406 -3.488281 3.039062 -3.507812 3.183594 -3.507812 L 4.121094 -3.507812 C 4.222656 -3.507812 4.300781 -3.488281 4.351562 -3.441406 C 4.398438 -3.398438 4.425781 -3.332031 4.425781 -3.242188 C 4.425781 -3.148438 4.394531 -3.078125 4.339844 -3.039062 C 4.285156 -2.996094 4.1875 -2.976562 4.042969 -2.96875 Z "/>
</symbol>
</g>
</defs>
<g id="surface67">
<g style="fill:rgb(100%,100%,100%);fill-opacity:1;">
<use xlink:href="#glyph0-1" x="30" y="25.863281"/>
<use xlink:href="#glyph0-2" x="35" y="25.863281"/>
<use xlink:href="#glyph0-3" x="40" y="25.863281"/>
<use xlink:href="#glyph0-4" x="45" y="25.863281"/>
<use xlink:href="#glyph0-5" x="50" y="25.863281"/>
<use xlink:href="#glyph0-6" x="55" y="25.863281"/>
<use xlink:href="#glyph0-7" x="60" y="25.863281"/>
<use xlink:href="#glyph0-8" x="65" y="25.863281"/>
<use xlink:href="#glyph0-9" x="70" y="25.863281"/>
<use xlink:href="#glyph0-5" x="75" y="25.863281"/>
<use xlink:href="#glyph0-3" x="80" y="25.863281"/>
<use xlink:href="#glyph0-10" x="85" y="25.863281"/>
<use xlink:href="#glyph0-11" x="90" y="25.863281"/>
<use xlink:href="#glyph0-12" x="95" y="25.863281"/>
<use xlink:href="#glyph0-2" x="100" y="25.863281"/>
<use xlink:href="#glyph0-3" x="105" y="25.863281"/>
<use xlink:href="#glyph0-13" x="110" y="25.863281"/>
</g>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 22 KiB

View File

@ -1,113 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="1920pt" height="1080pt" viewBox="0 0 1920 1080" version="1.1">
<defs>
<g>
<symbol overflow="visible" id="glyph0-0">
<path style="stroke:none;" d="M 0.195312 0.6875 L 0.195312 -2.742188 L 2.136719 -2.742188 L 2.136719 0.6875 Z M 0.414062 0.472656 L 1.921875 0.472656 L 1.921875 -2.523438 L 0.414062 -2.523438 Z "/>
</symbol>
<symbol overflow="visible" id="glyph0-1">
<path style="stroke:none;" d="M 0.742188 -1.996094 L 0.742188 -1.230469 L 1.136719 -1.230469 C 1.3125 -1.230469 1.445312 -1.261719 1.535156 -1.324219 C 1.625 -1.386719 1.667969 -1.484375 1.667969 -1.609375 C 1.667969 -1.738281 1.625 -1.835938 1.539062 -1.898438 C 1.453125 -1.964844 1.320312 -1.996094 1.148438 -1.996094 Z M 0.742188 -0.269531 L 0.871094 -0.269531 C 0.945312 -0.269531 0.996094 -0.257812 1.027344 -0.238281 C 1.058594 -0.21875 1.074219 -0.183594 1.074219 -0.136719 C 1.074219 -0.0859375 1.058594 -0.0507812 1.03125 -0.03125 C 1.007812 -0.0117188 0.957031 0 0.882812 0 L 0.246094 0 C 0.203125 0 0.167969 -0.0117188 0.144531 -0.0351562 C 0.121094 -0.0585938 0.113281 -0.09375 0.113281 -0.136719 C 0.113281 -0.183594 0.125 -0.21875 0.148438 -0.238281 C 0.175781 -0.257812 0.21875 -0.269531 0.273438 -0.269531 L 0.449219 -0.269531 L 0.449219 -1.996094 L 0.339844 -1.996094 C 0.242188 -1.996094 0.183594 -2.003906 0.152344 -2.023438 C 0.125 -2.039062 0.113281 -2.074219 0.113281 -2.125 C 0.113281 -2.167969 0.125 -2.199219 0.144531 -2.21875 C 0.167969 -2.242188 0.199219 -2.253906 0.246094 -2.253906 L 1.046875 -2.253906 C 1.242188 -2.253906 1.386719 -2.242188 1.480469 -2.226562 C 1.574219 -2.207031 1.65625 -2.175781 1.722656 -2.132812 C 1.808594 -2.074219 1.875 -2 1.921875 -1.90625 C 1.972656 -1.8125 1.996094 -1.710938 1.996094 -1.601562 C 1.996094 -1.457031 1.953125 -1.332031 1.863281 -1.226562 C 1.773438 -1.121094 1.648438 -1.050781 1.488281 -1.011719 C 1.523438 -0.992188 1.550781 -0.96875 1.578125 -0.945312 C 1.605469 -0.917969 1.628906 -0.886719 1.652344 -0.851562 L 2.035156 -0.269531 L 2.097656 -0.269531 C 2.167969 -0.269531 2.214844 -0.257812 2.242188 -0.238281 C 2.269531 -0.21875 2.28125 -0.183594 2.28125 -0.136719 C 2.28125 -0.09375 2.273438 -0.0585938 2.25 -0.0351562 C 2.226562 -0.0117188 2.195312 0 2.152344 0 L 1.9375 0 C 1.875 0 1.8125 -0.046875 1.753906 -0.136719 C 1.746094 -0.144531 1.742188 -0.152344 1.738281 -0.15625 L 1.375 -0.707031 C 1.300781 -0.820312 1.238281 -0.894531 1.1875 -0.925781 C 1.140625 -0.960938 1.074219 -0.976562 0.996094 -0.976562 L 0.742188 -0.976562 Z "/>
</symbol>
<symbol overflow="visible" id="glyph0-2">
<path style="stroke:none;" d="M 1.585938 -0.839844 C 1.515625 -0.863281 1.449219 -0.878906 1.386719 -0.890625 C 1.320312 -0.902344 1.253906 -0.90625 1.191406 -0.90625 C 0.996094 -0.90625 0.84375 -0.871094 0.730469 -0.808594 C 0.617188 -0.742188 0.558594 -0.652344 0.558594 -0.542969 C 0.558594 -0.457031 0.59375 -0.382812 0.664062 -0.328125 C 0.734375 -0.273438 0.824219 -0.246094 0.933594 -0.246094 C 1.09375 -0.246094 1.246094 -0.285156 1.382812 -0.371094 C 1.519531 -0.457031 1.585938 -0.542969 1.585938 -0.632812 Z M 1.601562 -0.242188 C 1.5 -0.148438 1.386719 -0.0742188 1.265625 -0.0273438 C 1.140625 0.0234375 1.015625 0.046875 0.886719 0.046875 C 0.699219 0.046875 0.546875 -0.00390625 0.429688 -0.109375 C 0.3125 -0.214844 0.257812 -0.351562 0.257812 -0.519531 C 0.257812 -0.71875 0.332031 -0.875 0.488281 -0.984375 C 0.640625 -1.09375 0.855469 -1.152344 1.136719 -1.152344 C 1.210938 -1.152344 1.285156 -1.144531 1.359375 -1.136719 C 1.433594 -1.128906 1.507812 -1.113281 1.585938 -1.09375 L 1.585938 -1.105469 C 1.585938 -1.25 1.554688 -1.359375 1.484375 -1.429688 C 1.414062 -1.5 1.304688 -1.53125 1.160156 -1.53125 C 1.058594 -1.53125 0.949219 -1.507812 0.828125 -1.453125 C 0.707031 -1.398438 0.625 -1.375 0.585938 -1.375 C 0.550781 -1.375 0.519531 -1.386719 0.496094 -1.417969 C 0.472656 -1.449219 0.460938 -1.484375 0.460938 -1.53125 C 0.460938 -1.605469 0.53125 -1.671875 0.667969 -1.722656 C 0.808594 -1.773438 0.988281 -1.800781 1.207031 -1.800781 C 1.429688 -1.800781 1.597656 -1.742188 1.710938 -1.628906 C 1.824219 -1.515625 1.882812 -1.351562 1.882812 -1.128906 L 1.882812 -0.269531 L 1.976562 -0.269531 C 2.066406 -0.269531 2.125 -0.257812 2.15625 -0.238281 C 2.1875 -0.21875 2.203125 -0.1875 2.203125 -0.136719 C 2.203125 -0.0898438 2.1875 -0.0585938 2.164062 -0.0351562 C 2.136719 -0.0117188 2.101562 0 2.050781 0 L 1.75 0 C 1.714844 0 1.6875 -0.0117188 1.664062 -0.03125 C 1.640625 -0.0546875 1.625 -0.0859375 1.617188 -0.125 Z "/>
</symbol>
<symbol overflow="visible" id="glyph0-3">
<path style="stroke:none;" d="M 0.460938 -0.269531 L 0.460938 -1.484375 L 0.421875 -1.484375 C 0.335938 -1.484375 0.277344 -1.496094 0.246094 -1.515625 C 0.214844 -1.535156 0.199219 -1.570312 0.199219 -1.621094 C 0.199219 -1.667969 0.210938 -1.703125 0.238281 -1.722656 C 0.265625 -1.746094 0.308594 -1.753906 0.367188 -1.753906 L 0.636719 -1.753906 C 0.671875 -1.753906 0.699219 -1.746094 0.71875 -1.734375 C 0.738281 -1.71875 0.746094 -1.699219 0.746094 -1.675781 L 0.746094 -1.546875 C 0.839844 -1.632812 0.929688 -1.699219 1.019531 -1.738281 C 1.109375 -1.78125 1.207031 -1.800781 1.304688 -1.800781 C 1.496094 -1.800781 1.644531 -1.742188 1.753906 -1.621094 C 1.863281 -1.503906 1.917969 -1.339844 1.917969 -1.128906 L 1.917969 -0.269531 L 2.007812 -0.269531 C 2.070312 -0.269531 2.117188 -0.257812 2.144531 -0.238281 C 2.171875 -0.214844 2.1875 -0.183594 2.1875 -0.136719 C 2.1875 -0.0859375 2.171875 -0.0507812 2.140625 -0.03125 C 2.113281 -0.0117188 2.058594 0 1.984375 0 L 1.5625 0 C 1.480469 0 1.429688 -0.0078125 1.40625 -0.0273438 C 1.382812 -0.046875 1.375 -0.0820312 1.375 -0.136719 C 1.375 -0.1875 1.386719 -0.21875 1.414062 -0.238281 C 1.441406 -0.257812 1.488281 -0.269531 1.5625 -0.269531 L 1.628906 -0.269531 L 1.628906 -1.058594 C 1.628906 -1.207031 1.597656 -1.320312 1.527344 -1.398438 C 1.460938 -1.476562 1.363281 -1.515625 1.238281 -1.515625 C 1.109375 -1.515625 0.992188 -1.46875 0.894531 -1.382812 C 0.796875 -1.296875 0.746094 -1.1875 0.746094 -1.058594 L 0.746094 -0.269531 L 0.8125 -0.269531 C 0.890625 -0.269531 0.941406 -0.257812 0.964844 -0.238281 C 0.992188 -0.21875 1.007812 -0.1875 1.007812 -0.136719 C 1.007812 -0.0820312 0.996094 -0.046875 0.972656 -0.0273438 C 0.949219 -0.0078125 0.894531 0 0.804688 0 L 0.355469 0 C 0.304688 0 0.265625 -0.0117188 0.242188 -0.0351562 C 0.214844 -0.0546875 0.203125 -0.0898438 0.203125 -0.136719 C 0.203125 -0.1875 0.214844 -0.222656 0.246094 -0.242188 C 0.277344 -0.257812 0.332031 -0.269531 0.417969 -0.269531 Z "/>
</symbol>
<symbol overflow="visible" id="glyph0-4">
<path style="stroke:none;" d="M 1.738281 0 C 1.710938 0 1.691406 -0.0078125 1.683594 -0.0195312 C 1.671875 -0.03125 1.664062 -0.0585938 1.664062 -0.0976562 L 1.664062 -0.253906 C 1.589844 -0.15625 1.496094 -0.0820312 1.378906 -0.03125 C 1.265625 0.0195312 1.144531 0.046875 1.011719 0.046875 C 0.773438 0.046875 0.570312 -0.0390625 0.410156 -0.207031 C 0.25 -0.378906 0.167969 -0.589844 0.167969 -0.84375 C 0.167969 -1.105469 0.253906 -1.324219 0.425781 -1.496094 C 0.597656 -1.671875 0.8125 -1.757812 1.070312 -1.757812 C 1.199219 -1.757812 1.316406 -1.734375 1.421875 -1.6875 C 1.523438 -1.640625 1.613281 -1.574219 1.6875 -1.484375 L 1.6875 -2.210938 L 1.585938 -2.210938 C 1.476562 -2.210938 1.40625 -2.222656 1.375 -2.242188 C 1.34375 -2.261719 1.324219 -2.296875 1.324219 -2.347656 C 1.324219 -2.394531 1.339844 -2.429688 1.363281 -2.453125 C 1.390625 -2.476562 1.429688 -2.484375 1.476562 -2.484375 L 1.867188 -2.484375 C 1.90625 -2.484375 1.933594 -2.480469 1.949219 -2.46875 C 1.964844 -2.453125 1.976562 -2.433594 1.976562 -2.410156 L 1.976562 -0.269531 L 2.0625 -0.269531 C 2.125 -0.269531 2.167969 -0.257812 2.195312 -0.238281 C 2.222656 -0.214844 2.238281 -0.183594 2.238281 -0.136719 C 2.238281 -0.09375 2.226562 -0.0585938 2.203125 -0.0351562 C 2.179688 -0.0117188 2.144531 0 2.105469 0 Z M 0.492188 -0.851562 C 0.492188 -0.675781 0.550781 -0.535156 0.664062 -0.421875 C 0.777344 -0.3125 0.917969 -0.257812 1.09375 -0.257812 C 1.265625 -0.257812 1.410156 -0.3125 1.523438 -0.429688 C 1.636719 -0.546875 1.691406 -0.691406 1.691406 -0.871094 C 1.691406 -1.046875 1.636719 -1.191406 1.523438 -1.308594 C 1.410156 -1.421875 1.269531 -1.476562 1.09375 -1.476562 C 0.914062 -1.476562 0.769531 -1.421875 0.660156 -1.304688 C 0.550781 -1.191406 0.492188 -1.039062 0.492188 -0.851562 Z "/>
</symbol>
<symbol overflow="visible" id="glyph0-5">
<path style="stroke:none;" d="M 1.167969 -0.21875 C 1.363281 -0.21875 1.519531 -0.28125 1.644531 -0.402344 C 1.769531 -0.527344 1.832031 -0.683594 1.832031 -0.875 C 1.832031 -1.066406 1.769531 -1.226562 1.644531 -1.347656 C 1.519531 -1.472656 1.359375 -1.535156 1.167969 -1.535156 C 0.972656 -1.535156 0.8125 -1.472656 0.6875 -1.347656 C 0.5625 -1.222656 0.5 -1.066406 0.5 -0.875 C 0.5 -0.683594 0.5625 -0.527344 0.6875 -0.402344 C 0.8125 -0.28125 0.972656 -0.21875 1.167969 -0.21875 Z M 2.164062 -0.875 C 2.164062 -0.605469 2.070312 -0.382812 1.886719 -0.210938 C 1.703125 -0.0390625 1.460938 0.046875 1.167969 0.046875 C 0.871094 0.046875 0.632812 -0.0390625 0.449219 -0.210938 C 0.265625 -0.382812 0.171875 -0.605469 0.171875 -0.875 C 0.171875 -1.144531 0.261719 -1.367188 0.449219 -1.539062 C 0.632812 -1.710938 0.871094 -1.796875 1.167969 -1.796875 C 1.460938 -1.796875 1.699219 -1.710938 1.886719 -1.539062 C 2.070312 -1.367188 2.164062 -1.144531 2.164062 -0.875 Z "/>
</symbol>
<symbol overflow="visible" id="glyph0-6">
<path style="stroke:none;" d="M 1.871094 -1.058594 C 1.871094 -1.238281 1.855469 -1.355469 1.824219 -1.417969 C 1.789062 -1.480469 1.734375 -1.515625 1.65625 -1.515625 C 1.5625 -1.515625 1.488281 -1.472656 1.433594 -1.390625 C 1.378906 -1.3125 1.351562 -1.199219 1.351562 -1.058594 L 1.351562 -0.269531 L 1.382812 -0.269531 C 1.460938 -0.269531 1.511719 -0.257812 1.539062 -0.242188 C 1.566406 -0.222656 1.578125 -0.1875 1.578125 -0.136719 C 1.578125 -0.0898438 1.566406 -0.0585938 1.546875 -0.0351562 C 1.523438 -0.0117188 1.492188 0 1.445312 0 L 1.207031 0 C 1.152344 0 1.113281 -0.0117188 1.09375 -0.0390625 C 1.074219 -0.0625 1.066406 -0.117188 1.066406 -0.203125 L 1.066406 -1.207031 C 1.066406 -1.300781 1.042969 -1.375 1 -1.429688 C 0.957031 -1.484375 0.898438 -1.515625 0.824219 -1.515625 C 0.765625 -1.515625 0.714844 -1.496094 0.667969 -1.464844 C 0.621094 -1.429688 0.578125 -1.378906 0.546875 -1.3125 L 0.546875 -0.269531 L 0.617188 -0.269531 C 0.691406 -0.269531 0.742188 -0.257812 0.769531 -0.238281 C 0.796875 -0.21875 0.808594 -0.1875 0.808594 -0.136719 C 0.808594 -0.0859375 0.796875 -0.0507812 0.777344 -0.03125 C 0.753906 -0.0117188 0.714844 0 0.652344 0 L 0.148438 0 C 0.0976562 0 0.0625 -0.0117188 0.0390625 -0.0351562 C 0.015625 -0.0546875 0.00390625 -0.0898438 0.00390625 -0.136719 C 0.00390625 -0.1875 0.0195312 -0.222656 0.046875 -0.242188 C 0.078125 -0.257812 0.136719 -0.269531 0.222656 -0.269531 L 0.261719 -0.269531 L 0.261719 -1.484375 L 0.226562 -1.484375 C 0.136719 -1.484375 0.078125 -1.496094 0.0429688 -1.515625 C 0.0117188 -1.535156 -0.00390625 -1.570312 -0.00390625 -1.621094 C -0.00390625 -1.664062 0.0078125 -1.699219 0.0351562 -1.722656 C 0.0585938 -1.746094 0.0976562 -1.753906 0.148438 -1.753906 L 0.4375 -1.753906 C 0.480469 -1.753906 0.507812 -1.746094 0.519531 -1.734375 C 0.535156 -1.71875 0.542969 -1.6875 0.546875 -1.640625 C 0.597656 -1.695312 0.652344 -1.738281 0.710938 -1.765625 C 0.769531 -1.792969 0.839844 -1.804688 0.914062 -1.804688 C 1.003906 -1.804688 1.074219 -1.785156 1.132812 -1.746094 C 1.191406 -1.707031 1.234375 -1.648438 1.261719 -1.570312 C 1.316406 -1.648438 1.375 -1.710938 1.445312 -1.746094 C 1.515625 -1.785156 1.59375 -1.804688 1.683594 -1.804688 C 1.847656 -1.804688 1.96875 -1.75 2.042969 -1.644531 C 2.117188 -1.539062 2.15625 -1.367188 2.15625 -1.128906 L 2.15625 -0.269531 L 2.1875 -0.269531 C 2.265625 -0.269531 2.316406 -0.257812 2.34375 -0.238281 C 2.371094 -0.21875 2.382812 -0.1875 2.382812 -0.136719 C 2.382812 -0.0898438 2.371094 -0.0585938 2.347656 -0.0351562 C 2.324219 -0.0117188 2.292969 0 2.25 0 L 2.019531 0 C 1.96875 0 1.929688 -0.015625 1.90625 -0.046875 C 1.882812 -0.078125 1.871094 -0.125 1.871094 -0.191406 Z "/>
</symbol>
<symbol overflow="visible" id="glyph0-7">
<path style="stroke:none;" d="M 0.941406 -0.53125 C 0.953125 -0.574219 0.964844 -0.601562 0.980469 -0.613281 C 0.996094 -0.625 1.027344 -0.628906 1.066406 -0.628906 L 1.480469 -0.628906 C 1.5 -0.628906 1.515625 -0.625 1.527344 -0.621094 C 1.539062 -0.613281 1.542969 -0.601562 1.542969 -0.589844 C 1.542969 -0.585938 1.542969 -0.574219 1.539062 -0.566406 C 1.539062 -0.554688 1.535156 -0.546875 1.527344 -0.539062 L 1.007812 0.550781 C 1 0.570312 0.984375 0.582031 0.96875 0.59375 C 0.953125 0.605469 0.9375 0.613281 0.921875 0.613281 C 0.917969 0.613281 0.914062 0.609375 0.910156 0.609375 C 0.90625 0.609375 0.898438 0.605469 0.886719 0.601562 L 0.753906 0.550781 C 0.734375 0.542969 0.71875 0.535156 0.707031 0.523438 C 0.699219 0.511719 0.691406 0.496094 0.691406 0.480469 C 0.691406 0.46875 0.691406 0.457031 0.691406 0.453125 C 0.691406 0.449219 0.695312 0.441406 0.695312 0.433594 Z "/>
</symbol>
<symbol overflow="visible" id="glyph0-8">
<g>
</g>
</symbol>
<symbol overflow="visible" id="glyph0-9">
<path style="stroke:none;" d="M 0.691406 -0.699219 C 0.691406 -0.539062 0.726562 -0.425781 0.792969 -0.351562 C 0.859375 -0.277344 0.96875 -0.242188 1.113281 -0.242188 C 1.25 -0.242188 1.367188 -0.285156 1.46875 -0.371094 C 1.566406 -0.460938 1.613281 -0.570312 1.613281 -0.699219 L 1.613281 -1.484375 L 1.355469 -1.484375 C 1.304688 -1.484375 1.269531 -1.496094 1.246094 -1.515625 C 1.222656 -1.539062 1.214844 -1.570312 1.214844 -1.613281 C 1.214844 -1.664062 1.226562 -1.699219 1.25 -1.722656 C 1.273438 -1.746094 1.3125 -1.753906 1.367188 -1.753906 L 1.769531 -1.753906 C 1.816406 -1.753906 1.851562 -1.746094 1.871094 -1.722656 C 1.890625 -1.703125 1.902344 -1.652344 1.902344 -1.570312 L 1.902344 -0.269531 L 1.988281 -0.269531 C 2.050781 -0.269531 2.09375 -0.257812 2.121094 -0.238281 C 2.148438 -0.21875 2.164062 -0.183594 2.164062 -0.136719 C 2.164062 -0.0898438 2.148438 -0.0585938 2.125 -0.0351562 C 2.097656 -0.0117188 2.0625 0 2.011719 0 L 1.722656 0 C 1.6875 0 1.660156 -0.0078125 1.644531 -0.0195312 C 1.625 -0.0351562 1.613281 -0.0546875 1.613281 -0.078125 L 1.613281 -0.207031 C 1.492188 -0.113281 1.386719 -0.0507812 1.300781 -0.015625 C 1.214844 0.0195312 1.125 0.0390625 1.027344 0.0390625 C 0.820312 0.0390625 0.660156 -0.015625 0.558594 -0.128906 C 0.453125 -0.238281 0.402344 -0.40625 0.402344 -0.628906 L 0.402344 -1.484375 L 0.359375 -1.484375 C 0.273438 -1.484375 0.214844 -1.496094 0.183594 -1.515625 C 0.152344 -1.535156 0.136719 -1.570312 0.136719 -1.621094 C 0.136719 -1.664062 0.148438 -1.699219 0.171875 -1.722656 C 0.199219 -1.746094 0.238281 -1.753906 0.289062 -1.753906 L 0.574219 -1.753906 C 0.621094 -1.753906 0.652344 -1.746094 0.667969 -1.726562 C 0.683594 -1.710938 0.691406 -1.671875 0.691406 -1.609375 Z "/>
</symbol>
<symbol overflow="visible" id="glyph0-10">
<path style="stroke:none;" d="M 0.339844 -0.136719 L 0.339844 -0.476562 C 0.339844 -0.53125 0.347656 -0.570312 0.371094 -0.59375 C 0.390625 -0.617188 0.425781 -0.628906 0.472656 -0.628906 C 0.523438 -0.628906 0.5625 -0.59375 0.59375 -0.523438 C 0.613281 -0.480469 0.632812 -0.449219 0.648438 -0.425781 C 0.703125 -0.359375 0.78125 -0.304688 0.886719 -0.261719 C 0.988281 -0.222656 1.101562 -0.203125 1.230469 -0.203125 C 1.363281 -0.203125 1.46875 -0.230469 1.550781 -0.28125 C 1.632812 -0.335938 1.671875 -0.410156 1.671875 -0.496094 C 1.671875 -0.585938 1.640625 -0.652344 1.574219 -0.6875 C 1.511719 -0.726562 1.398438 -0.746094 1.238281 -0.746094 L 1.136719 -0.746094 C 0.878906 -0.746094 0.679688 -0.792969 0.546875 -0.882812 C 0.410156 -0.972656 0.34375 -1.101562 0.34375 -1.273438 C 0.34375 -1.441406 0.40625 -1.570312 0.539062 -1.660156 C 0.671875 -1.753906 0.859375 -1.800781 1.097656 -1.800781 C 1.195312 -1.800781 1.292969 -1.785156 1.394531 -1.757812 C 1.496094 -1.730469 1.550781 -1.71875 1.554688 -1.71875 C 1.570312 -1.71875 1.597656 -1.730469 1.636719 -1.753906 C 1.675781 -1.78125 1.714844 -1.792969 1.75 -1.792969 C 1.792969 -1.792969 1.824219 -1.777344 1.847656 -1.746094 C 1.867188 -1.714844 1.878906 -1.667969 1.878906 -1.601562 L 1.878906 -1.378906 C 1.878906 -1.3125 1.867188 -1.265625 1.847656 -1.234375 C 1.828125 -1.207031 1.796875 -1.191406 1.75 -1.191406 C 1.710938 -1.191406 1.667969 -1.222656 1.609375 -1.289062 C 1.570312 -1.332031 1.539062 -1.367188 1.515625 -1.386719 C 1.445312 -1.449219 1.375 -1.496094 1.300781 -1.523438 C 1.222656 -1.550781 1.132812 -1.5625 1.03125 -1.5625 C 0.914062 -1.5625 0.816406 -1.535156 0.742188 -1.484375 C 0.671875 -1.433594 0.632812 -1.363281 0.632812 -1.285156 C 0.632812 -1.203125 0.671875 -1.148438 0.746094 -1.113281 C 0.820312 -1.078125 0.980469 -1.058594 1.230469 -1.054688 C 1.492188 -1.046875 1.683594 -1 1.804688 -0.917969 C 1.925781 -0.832031 1.988281 -0.699219 1.988281 -0.519531 C 1.988281 -0.347656 1.921875 -0.210938 1.789062 -0.109375 C 1.652344 -0.0078125 1.472656 0.0429688 1.242188 0.0429688 C 1.171875 0.0429688 1.089844 0.0351562 1.003906 0.0234375 C 0.914062 0.0117188 0.804688 -0.0117188 0.667969 -0.0429688 C 0.625 -0.015625 0.585938 0.0078125 0.554688 0.0234375 C 0.523438 0.0351562 0.496094 0.0429688 0.476562 0.0429688 C 0.429688 0.0429688 0.398438 0.0273438 0.375 -0.00390625 C 0.351562 -0.0351562 0.339844 -0.078125 0.339844 -0.136719 Z "/>
</symbol>
<symbol overflow="visible" id="glyph0-11">
<path style="stroke:none;" d="M 0.980469 -0.269531 L 1.609375 -0.269531 C 1.660156 -0.269531 1.695312 -0.257812 1.71875 -0.238281 C 1.742188 -0.214844 1.753906 -0.183594 1.753906 -0.136719 C 1.753906 -0.0859375 1.742188 -0.0507812 1.722656 -0.03125 C 1.699219 -0.0117188 1.660156 0 1.597656 0 L 0.355469 0 C 0.308594 0 0.269531 -0.0117188 0.246094 -0.0351562 C 0.21875 -0.0585938 0.207031 -0.0898438 0.207031 -0.136719 C 0.207031 -0.179688 0.21875 -0.214844 0.246094 -0.234375 C 0.273438 -0.257812 0.3125 -0.269531 0.367188 -0.269531 L 0.695312 -0.269531 L 0.695312 -1.484375 L 0.566406 -1.484375 C 0.445312 -1.484375 0.367188 -1.496094 0.339844 -1.515625 C 0.308594 -1.535156 0.292969 -1.570312 0.292969 -1.621094 C 0.292969 -1.664062 0.304688 -1.699219 0.328125 -1.722656 C 0.355469 -1.746094 0.390625 -1.753906 0.441406 -1.753906 L 0.875 -1.753906 C 0.910156 -1.753906 0.9375 -1.75 0.953125 -1.734375 C 0.972656 -1.722656 0.980469 -1.703125 0.980469 -1.675781 L 0.980469 -1.355469 C 1.101562 -1.503906 1.226562 -1.617188 1.355469 -1.691406 C 1.484375 -1.765625 1.628906 -1.800781 1.777344 -1.800781 C 1.890625 -1.800781 1.980469 -1.777344 2.050781 -1.730469 C 2.121094 -1.6875 2.15625 -1.628906 2.15625 -1.554688 C 2.15625 -1.507812 2.136719 -1.46875 2.101562 -1.429688 C 2.066406 -1.394531 2.03125 -1.375 1.988281 -1.375 C 1.960938 -1.375 1.910156 -1.394531 1.839844 -1.433594 C 1.773438 -1.472656 1.710938 -1.492188 1.65625 -1.492188 C 1.558594 -1.492188 1.453125 -1.457031 1.34375 -1.386719 C 1.234375 -1.316406 1.113281 -1.207031 0.980469 -1.054688 Z "/>
</symbol>
<symbol overflow="visible" id="glyph0-12">
<path style="stroke:none;" d="M 0.523438 -0.792969 C 0.535156 -0.609375 0.597656 -0.46875 0.710938 -0.371094 C 0.824219 -0.273438 0.976562 -0.222656 1.171875 -0.222656 C 1.320312 -0.222656 1.484375 -0.261719 1.65625 -0.339844 C 1.832031 -0.417969 1.9375 -0.460938 1.976562 -0.460938 C 2.011719 -0.460938 2.042969 -0.449219 2.070312 -0.421875 C 2.09375 -0.398438 2.109375 -0.371094 2.109375 -0.335938 C 2.109375 -0.296875 2.09375 -0.265625 2.066406 -0.234375 C 2.042969 -0.203125 2 -0.171875 1.941406 -0.144531 C 1.816406 -0.0820312 1.683594 -0.0351562 1.550781 0 C 1.414062 0.03125 1.28125 0.046875 1.148438 0.046875 C 0.859375 0.046875 0.628906 -0.0351562 0.453125 -0.203125 C 0.28125 -0.367188 0.195312 -0.589844 0.195312 -0.863281 C 0.195312 -1.144531 0.285156 -1.371094 0.46875 -1.542969 C 0.652344 -1.71875 0.890625 -1.804688 1.1875 -1.804688 C 1.453125 -1.804688 1.675781 -1.722656 1.851562 -1.5625 C 2.027344 -1.398438 2.117188 -1.203125 2.117188 -0.972656 C 2.117188 -0.902344 2.101562 -0.855469 2.070312 -0.828125 C 2.042969 -0.804688 1.960938 -0.792969 1.828125 -0.792969 Z M 0.535156 -1.042969 L 1.769531 -1.042969 C 1.75 -1.195312 1.6875 -1.316406 1.582031 -1.40625 C 1.472656 -1.5 1.34375 -1.542969 1.1875 -1.542969 C 1.019531 -1.542969 0.875 -1.5 0.761719 -1.410156 C 0.644531 -1.320312 0.570312 -1.199219 0.535156 -1.042969 Z "/>
</symbol>
<symbol overflow="visible" id="glyph0-13">
<path style="stroke:none;" d="M 1.75 -0.273438 C 1.800781 -0.273438 1.84375 -0.261719 1.871094 -0.238281 C 1.898438 -0.214844 1.910156 -0.179688 1.910156 -0.136719 C 1.910156 -0.0898438 1.898438 -0.0585938 1.871094 -0.0351562 C 1.84375 -0.0117188 1.808594 0 1.757812 0 L 0.515625 0 C 0.464844 0 0.425781 -0.0117188 0.398438 -0.0351562 C 0.371094 -0.0585938 0.355469 -0.0898438 0.355469 -0.136719 C 0.355469 -0.179688 0.371094 -0.214844 0.394531 -0.238281 C 0.421875 -0.261719 0.460938 -0.273438 0.507812 -0.273438 L 0.832031 -0.273438 L 0.832031 -1.433594 L 0.519531 -1.433594 C 0.46875 -1.433594 0.429688 -1.445312 0.398438 -1.46875 C 0.371094 -1.492188 0.355469 -1.527344 0.355469 -1.570312 C 0.355469 -1.617188 0.371094 -1.652344 0.398438 -1.671875 C 0.425781 -1.695312 0.460938 -1.707031 0.511719 -1.707031 L 0.8125 -1.707031 L 0.8125 -1.835938 C 0.8125 -2.066406 0.878906 -2.230469 1.007812 -2.335938 C 1.140625 -2.4375 1.351562 -2.488281 1.640625 -2.488281 C 1.78125 -2.488281 1.886719 -2.472656 1.957031 -2.441406 C 2.023438 -2.410156 2.058594 -2.363281 2.058594 -2.292969 C 2.058594 -2.253906 2.042969 -2.222656 2.011719 -2.199219 C 1.984375 -2.171875 1.945312 -2.160156 1.902344 -2.160156 C 1.878906 -2.160156 1.824219 -2.167969 1.738281 -2.183594 C 1.652344 -2.199219 1.574219 -2.203125 1.515625 -2.203125 C 1.371094 -2.203125 1.269531 -2.175781 1.207031 -2.113281 C 1.144531 -2.054688 1.113281 -1.953125 1.113281 -1.816406 L 1.113281 -1.707031 L 1.785156 -1.707031 C 1.835938 -1.707031 1.875 -1.695312 1.902344 -1.671875 C 1.929688 -1.648438 1.945312 -1.617188 1.945312 -1.570312 C 1.945312 -1.527344 1.929688 -1.492188 1.902344 -1.46875 C 1.875 -1.445312 1.835938 -1.433594 1.789062 -1.433594 L 1.132812 -1.433594 L 1.132812 -0.273438 Z "/>
</symbol>
<symbol overflow="visible" id="glyph0-14">
<path style="stroke:none;" d="M 1.683594 -1.648438 C 1.746094 -1.648438 1.792969 -1.636719 1.820312 -1.617188 C 1.847656 -1.59375 1.863281 -1.558594 1.863281 -1.515625 C 1.863281 -1.46875 1.851562 -1.4375 1.824219 -1.414062 C 1.796875 -1.390625 1.757812 -1.378906 1.703125 -1.378906 L 0.933594 -1.378906 L 0.933594 -0.746094 C 0.933594 -0.539062 0.960938 -0.402344 1.015625 -0.335938 C 1.070312 -0.269531 1.160156 -0.238281 1.292969 -0.238281 C 1.40625 -0.238281 1.542969 -0.269531 1.707031 -0.339844 C 1.867188 -0.40625 1.964844 -0.4375 2.003906 -0.4375 C 2.039062 -0.4375 2.070312 -0.425781 2.09375 -0.402344 C 2.117188 -0.375 2.132812 -0.34375 2.132812 -0.308594 C 2.132812 -0.265625 2.117188 -0.230469 2.085938 -0.199219 C 2.054688 -0.167969 2 -0.136719 1.925781 -0.109375 C 1.800781 -0.0585938 1.691406 -0.0234375 1.589844 0 C 1.492188 0.0234375 1.398438 0.0351562 1.308594 0.0351562 C 1.160156 0.0351562 1.039062 0.0117188 0.9375 -0.0351562 C 0.835938 -0.0820312 0.761719 -0.15625 0.710938 -0.25 C 0.6875 -0.292969 0.667969 -0.34375 0.65625 -0.40625 C 0.648438 -0.46875 0.640625 -0.5625 0.640625 -0.6875 L 0.640625 -1.378906 L 0.320312 -1.378906 C 0.265625 -1.378906 0.226562 -1.390625 0.203125 -1.410156 C 0.179688 -1.433594 0.167969 -1.46875 0.167969 -1.515625 C 0.167969 -1.566406 0.183594 -1.601562 0.214844 -1.621094 C 0.25 -1.640625 0.320312 -1.648438 0.425781 -1.648438 L 0.640625 -1.648438 L 0.640625 -2.136719 C 0.640625 -2.191406 0.652344 -2.234375 0.675781 -2.257812 C 0.699219 -2.285156 0.738281 -2.296875 0.785156 -2.296875 C 0.839844 -2.296875 0.878906 -2.28125 0.902344 -2.25 C 0.921875 -2.21875 0.933594 -2.148438 0.933594 -2.035156 L 0.933594 -1.648438 Z "/>
</symbol>
<symbol overflow="visible" id="glyph0-15">
<path style="stroke:none;" d="M 0.453125 -0.269531 L 0.453125 -2.210938 L 0.414062 -2.210938 C 0.328125 -2.210938 0.269531 -2.222656 0.238281 -2.242188 C 0.207031 -2.261719 0.191406 -2.296875 0.191406 -2.347656 C 0.191406 -2.394531 0.203125 -2.429688 0.230469 -2.453125 C 0.253906 -2.476562 0.292969 -2.484375 0.34375 -2.484375 L 0.628906 -2.484375 C 0.664062 -2.484375 0.691406 -2.480469 0.710938 -2.464844 C 0.730469 -2.449219 0.738281 -2.433594 0.738281 -2.410156 L 0.738281 -1.546875 C 0.832031 -1.632812 0.921875 -1.699219 1.011719 -1.738281 C 1.101562 -1.78125 1.199219 -1.800781 1.296875 -1.800781 C 1.488281 -1.800781 1.636719 -1.742188 1.746094 -1.621094 C 1.855469 -1.503906 1.910156 -1.339844 1.910156 -1.128906 L 1.910156 -0.269531 L 2 -0.269531 C 2.0625 -0.269531 2.109375 -0.257812 2.136719 -0.238281 C 2.164062 -0.214844 2.179688 -0.183594 2.179688 -0.136719 C 2.179688 -0.0898438 2.164062 -0.0585938 2.140625 -0.0351562 C 2.113281 -0.0117188 2.078125 0 2.027344 0 L 1.519531 0 C 1.460938 0 1.421875 -0.0117188 1.402344 -0.03125 C 1.378906 -0.0507812 1.371094 -0.0859375 1.371094 -0.136719 C 1.371094 -0.1875 1.382812 -0.222656 1.410156 -0.242188 C 1.433594 -0.257812 1.484375 -0.269531 1.554688 -0.269531 L 1.621094 -0.269531 L 1.621094 -1.058594 C 1.621094 -1.207031 1.589844 -1.320312 1.519531 -1.398438 C 1.453125 -1.476562 1.355469 -1.515625 1.230469 -1.515625 C 1.097656 -1.515625 0.984375 -1.46875 0.886719 -1.382812 C 0.789062 -1.296875 0.738281 -1.1875 0.738281 -1.058594 L 0.738281 -0.269531 L 0.804688 -0.269531 C 0.882812 -0.269531 0.933594 -0.257812 0.960938 -0.238281 C 0.984375 -0.21875 1 -0.1875 1 -0.136719 C 1 -0.0859375 0.988281 -0.0507812 0.96875 -0.03125 C 0.945312 -0.0117188 0.90625 0 0.847656 0 L 0.34375 0 C 0.292969 0 0.253906 -0.0117188 0.230469 -0.0351562 C 0.207031 -0.0585938 0.195312 -0.0898438 0.195312 -0.136719 C 0.195312 -0.1875 0.207031 -0.222656 0.238281 -0.242188 C 0.269531 -0.257812 0.324219 -0.269531 0.414062 -0.269531 Z "/>
</symbol>
<symbol overflow="visible" id="glyph0-16">
<path style="stroke:none;" d="M 0.675781 0.484375 L 1.132812 0.484375 C 1.179688 0.484375 1.214844 0.496094 1.238281 0.519531 C 1.261719 0.542969 1.277344 0.578125 1.277344 0.621094 C 1.277344 0.671875 1.265625 0.707031 1.242188 0.726562 C 1.21875 0.746094 1.175781 0.757812 1.117188 0.757812 L 0.277344 0.757812 C 0.226562 0.757812 0.191406 0.746094 0.164062 0.722656 C 0.136719 0.699219 0.125 0.667969 0.125 0.621094 C 0.125 0.570312 0.140625 0.535156 0.171875 0.515625 C 0.207031 0.496094 0.265625 0.484375 0.351562 0.484375 L 0.390625 0.484375 L 0.390625 -1.484375 L 0.351562 -1.484375 C 0.265625 -1.484375 0.207031 -1.496094 0.171875 -1.515625 C 0.140625 -1.535156 0.125 -1.570312 0.125 -1.621094 C 0.125 -1.664062 0.136719 -1.699219 0.164062 -1.722656 C 0.191406 -1.746094 0.230469 -1.753906 0.277344 -1.753906 L 0.566406 -1.753906 C 0.605469 -1.753906 0.632812 -1.75 0.652344 -1.734375 C 0.667969 -1.722656 0.675781 -1.703125 0.675781 -1.675781 L 0.675781 -1.492188 C 0.761719 -1.582031 0.859375 -1.648438 0.960938 -1.691406 C 1.066406 -1.734375 1.179688 -1.757812 1.300781 -1.757812 C 1.554688 -1.757812 1.765625 -1.671875 1.9375 -1.5 C 2.109375 -1.328125 2.195312 -1.113281 2.195312 -0.851562 C 2.195312 -0.601562 2.113281 -0.398438 1.949219 -0.238281 C 1.789062 -0.078125 1.582031 0.00390625 1.328125 0.00390625 C 1.195312 0.00390625 1.070312 -0.0195312 0.960938 -0.0664062 C 0.847656 -0.113281 0.753906 -0.183594 0.675781 -0.273438 Z M 1.265625 -0.273438 C 1.441406 -0.273438 1.585938 -0.332031 1.699219 -0.441406 C 1.8125 -0.550781 1.867188 -0.695312 1.867188 -0.871094 C 1.867188 -1.042969 1.808594 -1.1875 1.695312 -1.296875 C 1.582031 -1.410156 1.441406 -1.464844 1.265625 -1.464844 C 1.089844 -1.464844 0.945312 -1.410156 0.835938 -1.300781 C 0.722656 -1.1875 0.667969 -1.046875 0.667969 -0.871094 C 0.667969 -0.695312 0.722656 -0.554688 0.835938 -0.441406 C 0.945312 -0.332031 1.089844 -0.273438 1.265625 -0.273438 Z "/>
</symbol>
<symbol overflow="visible" id="glyph0-17">
<path style="stroke:none;" d="M 1.738281 -1.640625 L 1.738281 -1.648438 C 1.738281 -1.691406 1.75 -1.722656 1.773438 -1.742188 C 1.796875 -1.761719 1.835938 -1.769531 1.886719 -1.769531 C 1.9375 -1.769531 1.972656 -1.753906 1.992188 -1.722656 C 2.011719 -1.695312 2.023438 -1.632812 2.023438 -1.535156 L 2.023438 -1.183594 C 2.023438 -1.136719 2.011719 -1.101562 1.988281 -1.078125 C 1.964844 -1.054688 1.925781 -1.042969 1.878906 -1.042969 C 1.84375 -1.042969 1.816406 -1.050781 1.789062 -1.070312 C 1.765625 -1.089844 1.734375 -1.132812 1.699219 -1.195312 C 1.640625 -1.296875 1.566406 -1.375 1.480469 -1.425781 C 1.390625 -1.480469 1.292969 -1.507812 1.179688 -1.507812 C 0.980469 -1.507812 0.820312 -1.449219 0.699219 -1.332031 C 0.574219 -1.214844 0.511719 -1.0625 0.511719 -0.878906 C 0.511719 -0.691406 0.570312 -0.535156 0.691406 -0.417969 C 0.808594 -0.296875 0.960938 -0.238281 1.148438 -0.238281 C 1.230469 -0.238281 1.3125 -0.25 1.390625 -0.273438 C 1.464844 -0.296875 1.539062 -0.332031 1.605469 -0.378906 C 1.628906 -0.394531 1.664062 -0.417969 1.703125 -0.449219 C 1.785156 -0.515625 1.851562 -0.550781 1.898438 -0.550781 C 1.9375 -0.550781 1.96875 -0.535156 1.992188 -0.511719 C 2.019531 -0.488281 2.03125 -0.457031 2.03125 -0.414062 C 2.03125 -0.316406 1.9375 -0.214844 1.746094 -0.109375 C 1.558594 -0.00390625 1.355469 0.046875 1.144531 0.046875 C 0.867188 0.046875 0.640625 -0.0390625 0.457031 -0.214844 C 0.273438 -0.390625 0.183594 -0.613281 0.183594 -0.875 C 0.183594 -1.140625 0.273438 -1.359375 0.457031 -1.535156 C 0.636719 -1.710938 0.867188 -1.800781 1.140625 -1.800781 C 1.234375 -1.800781 1.332031 -1.789062 1.429688 -1.761719 C 1.527344 -1.734375 1.628906 -1.695312 1.738281 -1.640625 Z "/>
</symbol>
<symbol overflow="visible" id="glyph0-18">
<path style="stroke:none;" d="M 0.992188 -2.300781 C 0.992188 -2.4375 1.003906 -2.523438 1.027344 -2.558594 C 1.054688 -2.59375 1.105469 -2.613281 1.1875 -2.613281 C 1.265625 -2.613281 1.316406 -2.597656 1.34375 -2.570312 C 1.367188 -2.539062 1.378906 -2.46875 1.378906 -2.355469 C 1.378906 -2.246094 1.367188 -2.179688 1.34375 -2.15625 C 1.320312 -2.128906 1.269531 -2.117188 1.1875 -2.117188 C 1.105469 -2.117188 1.054688 -2.128906 1.027344 -2.152344 C 1.003906 -2.175781 0.992188 -2.226562 0.992188 -2.300781 Z M 1.34375 -0.269531 L 1.953125 -0.269531 C 2.003906 -0.269531 2.039062 -0.257812 2.0625 -0.238281 C 2.085938 -0.214844 2.097656 -0.183594 2.097656 -0.136719 C 2.097656 -0.0859375 2.085938 -0.0507812 2.0625 -0.03125 C 2.042969 -0.0117188 2 0 1.941406 0 L 0.46875 0 C 0.417969 0 0.378906 -0.0117188 0.351562 -0.0351562 C 0.328125 -0.0585938 0.316406 -0.0898438 0.316406 -0.136719 C 0.316406 -0.179688 0.328125 -0.214844 0.355469 -0.234375 C 0.382812 -0.257812 0.421875 -0.269531 0.476562 -0.269531 L 1.054688 -0.269531 L 1.054688 -1.484375 L 0.683594 -1.484375 C 0.632812 -1.484375 0.59375 -1.496094 0.566406 -1.519531 C 0.539062 -1.542969 0.523438 -1.578125 0.523438 -1.621094 C 0.523438 -1.664062 0.535156 -1.699219 0.5625 -1.722656 C 0.585938 -1.746094 0.625 -1.753906 0.675781 -1.753906 L 1.234375 -1.753906 C 1.265625 -1.753906 1.292969 -1.746094 1.3125 -1.734375 C 1.332031 -1.71875 1.34375 -1.699219 1.34375 -1.675781 Z "/>
</symbol>
<symbol overflow="visible" id="glyph0-19">
<path style="stroke:none;" d="M 1.113281 -1.472656 C 0.945312 -1.472656 0.8125 -1.421875 0.707031 -1.320312 C 0.601562 -1.21875 0.550781 -1.085938 0.550781 -0.921875 C 0.550781 -0.761719 0.601562 -0.628906 0.707031 -0.523438 C 0.8125 -0.421875 0.945312 -0.371094 1.113281 -0.371094 C 1.277344 -0.371094 1.414062 -0.421875 1.519531 -0.523438 C 1.625 -0.628906 1.675781 -0.761719 1.675781 -0.921875 C 1.675781 -1.082031 1.625 -1.214844 1.519531 -1.316406 C 1.414062 -1.421875 1.277344 -1.472656 1.113281 -1.472656 Z M 1.9375 -0.101562 C 1.9375 0.078125 1.929688 0.203125 1.910156 0.277344 C 1.894531 0.351562 1.863281 0.414062 1.820312 0.472656 C 1.75 0.566406 1.648438 0.636719 1.519531 0.683594 C 1.394531 0.734375 1.242188 0.757812 1.070312 0.757812 C 0.925781 0.757812 0.820312 0.742188 0.753906 0.714844 C 0.6875 0.6875 0.652344 0.644531 0.652344 0.582031 C 0.652344 0.542969 0.667969 0.507812 0.703125 0.480469 C 0.734375 0.449219 0.773438 0.433594 0.816406 0.433594 C 0.851562 0.433594 0.902344 0.441406 0.972656 0.449219 C 1.042969 0.457031 1.097656 0.464844 1.136719 0.464844 C 1.324219 0.464844 1.457031 0.421875 1.535156 0.335938 C 1.613281 0.25 1.652344 0.101562 1.652344 -0.109375 L 1.652344 -0.339844 C 1.574219 -0.25 1.488281 -0.183594 1.394531 -0.140625 C 1.300781 -0.0976562 1.195312 -0.078125 1.074219 -0.078125 C 0.835938 -0.078125 0.640625 -0.15625 0.484375 -0.3125 C 0.328125 -0.472656 0.253906 -0.671875 0.253906 -0.914062 C 0.253906 -1.15625 0.332031 -1.359375 0.492188 -1.519531 C 0.652344 -1.679688 0.847656 -1.757812 1.085938 -1.757812 C 1.183594 -1.757812 1.277344 -1.742188 1.371094 -1.703125 C 1.464844 -1.667969 1.558594 -1.613281 1.652344 -1.539062 L 1.652344 -1.675781 C 1.652344 -1.703125 1.660156 -1.722656 1.679688 -1.734375 C 1.695312 -1.75 1.722656 -1.753906 1.757812 -1.753906 L 2.046875 -1.753906 C 2.097656 -1.753906 2.132812 -1.742188 2.160156 -1.722656 C 2.183594 -1.699219 2.199219 -1.667969 2.199219 -1.621094 C 2.199219 -1.570312 2.179688 -1.535156 2.148438 -1.515625 C 2.117188 -1.496094 2.058594 -1.484375 1.972656 -1.484375 L 1.9375 -1.484375 Z "/>
</symbol>
</g>
</defs>
<g id="surface50">
<g style="fill:rgb(100%,100%,100%);fill-opacity:1;">
<use xlink:href="#glyph0-1" x="30" y="22.932617"/>
<use xlink:href="#glyph0-2" x="32" y="22.932617"/>
<use xlink:href="#glyph0-3" x="34" y="22.932617"/>
<use xlink:href="#glyph0-4" x="36" y="22.932617"/>
<use xlink:href="#glyph0-5" x="38" y="22.932617"/>
<use xlink:href="#glyph0-6" x="40" y="22.932617"/>
<use xlink:href="#glyph0-7" x="42" y="22.932617"/>
<use xlink:href="#glyph0-8" x="44" y="22.932617"/>
<use xlink:href="#glyph0-9" x="46" y="22.932617"/>
<use xlink:href="#glyph0-3" x="48" y="22.932617"/>
<use xlink:href="#glyph0-10" x="50" y="22.932617"/>
<use xlink:href="#glyph0-9" x="52" y="22.932617"/>
<use xlink:href="#glyph0-11" x="54" y="22.932617"/>
<use xlink:href="#glyph0-12" x="56" y="22.932617"/>
<use xlink:href="#glyph0-8" x="58" y="22.932617"/>
<use xlink:href="#glyph0-5" x="60" y="22.932617"/>
<use xlink:href="#glyph0-13" x="62" y="22.932617"/>
<use xlink:href="#glyph0-8" x="64" y="22.932617"/>
<use xlink:href="#glyph0-14" x="66" y="22.932617"/>
<use xlink:href="#glyph0-15" x="68" y="22.932617"/>
<use xlink:href="#glyph0-8" x="70" y="22.932617"/>
</g>
<g style="fill:rgb(100%,100%,100%);fill-opacity:1;">
<use xlink:href="#glyph0-12" x="30" y="26.725586"/>
<use xlink:href="#glyph0-8" x="32" y="26.725586"/>
<use xlink:href="#glyph0-10" x="34" y="26.725586"/>
<use xlink:href="#glyph0-16" x="36" y="26.725586"/>
<use xlink:href="#glyph0-12" x="38" y="26.725586"/>
<use xlink:href="#glyph0-17" x="40" y="26.725586"/>
<use xlink:href="#glyph0-18" x="42" y="26.725586"/>
<use xlink:href="#glyph0-13" x="44" y="26.725586"/>
<use xlink:href="#glyph0-18" x="46" y="26.725586"/>
<use xlink:href="#glyph0-17" x="48" y="26.725586"/>
<use xlink:href="#glyph0-8" x="50" y="26.725586"/>
<use xlink:href="#glyph0-17" x="52" y="26.725586"/>
<use xlink:href="#glyph0-15" x="54" y="26.725586"/>
<use xlink:href="#glyph0-2" x="56" y="26.725586"/>
<use xlink:href="#glyph0-3" x="58" y="26.725586"/>
<use xlink:href="#glyph0-19" x="60" y="26.725586"/>
<use xlink:href="#glyph0-12" x="62" y="26.725586"/>
<use xlink:href="#glyph0-10" x="64" y="26.725586"/>
</g>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 35 KiB

View File

@ -1,38 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="1920pt" height="1080pt" viewBox="0 0 1920 1080" version="1.1">
<defs>
<g>
<symbol overflow="visible" id="glyph0-0">
<path style="stroke:none;" d="M 0.277344 0.980469 L 0.277344 -3.917969 L 3.054688 -3.917969 L 3.054688 0.980469 Z M 0.589844 0.671875 L 2.746094 0.671875 L 2.746094 -3.605469 L 0.589844 -3.605469 Z "/>
</symbol>
<symbol overflow="visible" id="glyph0-1">
<path style="stroke:none;" d="M 2.269531 -1.199219 C 2.167969 -1.230469 2.070312 -1.253906 1.980469 -1.269531 C 1.886719 -1.285156 1.792969 -1.292969 1.699219 -1.292969 C 1.421875 -1.292969 1.203125 -1.246094 1.042969 -1.152344 C 0.882812 -1.058594 0.800781 -0.933594 0.800781 -0.773438 C 0.800781 -0.648438 0.851562 -0.550781 0.949219 -0.46875 C 1.050781 -0.390625 1.179688 -0.351562 1.335938 -0.351562 C 1.566406 -0.351562 1.777344 -0.410156 1.972656 -0.53125 C 2.167969 -0.652344 2.269531 -0.777344 2.269531 -0.90625 Z M 2.289062 -0.34375 C 2.140625 -0.210938 1.980469 -0.109375 1.804688 -0.0390625 C 1.628906 0.03125 1.453125 0.0664062 1.265625 0.0664062 C 0.996094 0.0664062 0.78125 -0.0078125 0.613281 -0.15625 C 0.449219 -0.308594 0.367188 -0.503906 0.367188 -0.742188 C 0.367188 -1.027344 0.476562 -1.25 0.695312 -1.40625 C 0.914062 -1.566406 1.222656 -1.644531 1.621094 -1.644531 C 1.726562 -1.644531 1.832031 -1.636719 1.941406 -1.625 C 2.046875 -1.609375 2.15625 -1.589844 2.269531 -1.558594 L 2.269531 -1.578125 C 2.269531 -1.785156 2.21875 -1.941406 2.117188 -2.039062 C 2.019531 -2.140625 1.863281 -2.1875 1.65625 -2.1875 C 1.515625 -2.1875 1.355469 -2.152344 1.183594 -2.074219 C 1.007812 -2 0.894531 -1.960938 0.839844 -1.960938 C 0.785156 -1.960938 0.742188 -1.984375 0.707031 -2.023438 C 0.671875 -2.066406 0.65625 -2.121094 0.65625 -2.1875 C 0.65625 -2.296875 0.757812 -2.386719 0.957031 -2.460938 C 1.15625 -2.535156 1.410156 -2.570312 1.722656 -2.570312 C 2.039062 -2.570312 2.28125 -2.492188 2.445312 -2.328125 C 2.605469 -2.167969 2.6875 -1.929688 2.6875 -1.613281 L 2.6875 -0.382812 L 2.820312 -0.382812 C 2.949219 -0.382812 3.035156 -0.367188 3.078125 -0.34375 C 3.121094 -0.316406 3.144531 -0.265625 3.144531 -0.195312 C 3.144531 -0.128906 3.125 -0.0820312 3.089844 -0.0507812 C 3.054688 -0.015625 3 0 2.925781 0 L 2.5 0 C 2.449219 0 2.410156 -0.015625 2.375 -0.046875 C 2.34375 -0.078125 2.320312 -0.121094 2.3125 -0.179688 Z "/>
</symbol>
<symbol overflow="visible" id="glyph0-2">
<path style="stroke:none;" d="M 1.8125 -0.378906 C 2.066406 -0.378906 2.273438 -0.457031 2.433594 -0.617188 C 2.59375 -0.777344 2.671875 -0.988281 2.671875 -1.246094 C 2.671875 -1.496094 2.589844 -1.703125 2.429688 -1.867188 C 2.265625 -2.03125 2.0625 -2.109375 1.8125 -2.109375 C 1.5625 -2.109375 1.355469 -2.03125 1.195312 -1.867188 C 1.035156 -1.707031 0.953125 -1.5 0.953125 -1.246094 C 0.953125 -0.992188 1.035156 -0.785156 1.195312 -0.621094 C 1.355469 -0.457031 1.5625 -0.378906 1.8125 -0.378906 Z M 0.964844 -2.117188 C 1.066406 -2.242188 1.195312 -2.339844 1.34375 -2.40625 C 1.496094 -2.472656 1.667969 -2.507812 1.859375 -2.507812 C 2.222656 -2.507812 2.527344 -2.382812 2.769531 -2.140625 C 3.011719 -1.894531 3.132812 -1.589844 3.132812 -1.230469 C 3.132812 -0.875 3.007812 -0.570312 2.761719 -0.324219 C 2.511719 -0.0742188 2.207031 0.0507812 1.851562 0.0507812 C 1.660156 0.0507812 1.496094 0.015625 1.355469 -0.0507812 C 1.214844 -0.117188 1.097656 -0.21875 1.007812 -0.355469 L 1.007812 -0.136719 C 1.007812 -0.0898438 0.996094 -0.0546875 0.980469 -0.03125 C 0.964844 -0.0117188 0.933594 0 0.894531 0 L 0.398438 0 C 0.328125 0 0.277344 -0.015625 0.242188 -0.0507812 C 0.207031 -0.0820312 0.191406 -0.128906 0.191406 -0.195312 C 0.191406 -0.269531 0.210938 -0.316406 0.253906 -0.34375 C 0.292969 -0.371094 0.375 -0.382812 0.5 -0.382812 L 0.554688 -0.382812 L 0.554688 -3.160156 L 0.503906 -3.160156 C 0.382812 -3.160156 0.296875 -3.175781 0.253906 -3.203125 C 0.207031 -3.234375 0.183594 -3.285156 0.183594 -3.355469 C 0.183594 -3.421875 0.203125 -3.46875 0.238281 -3.503906 C 0.273438 -3.535156 0.328125 -3.550781 0.398438 -3.550781 L 0.8125 -3.550781 C 0.867188 -3.550781 0.90625 -3.542969 0.929688 -3.523438 C 0.953125 -3.503906 0.964844 -3.476562 0.964844 -3.441406 Z "/>
</symbol>
<symbol overflow="visible" id="glyph0-3">
<path style="stroke:none;" d="M 2.480469 -2.34375 L 2.480469 -2.355469 C 2.480469 -2.414062 2.5 -2.457031 2.535156 -2.484375 C 2.570312 -2.511719 2.621094 -2.527344 2.695312 -2.527344 C 2.769531 -2.527344 2.820312 -2.507812 2.847656 -2.464844 C 2.875 -2.421875 2.890625 -2.332031 2.890625 -2.195312 L 2.890625 -1.691406 C 2.890625 -1.625 2.871094 -1.574219 2.835938 -1.539062 C 2.800781 -1.507812 2.75 -1.488281 2.683594 -1.488281 C 2.632812 -1.488281 2.59375 -1.503906 2.558594 -1.53125 C 2.523438 -1.558594 2.480469 -1.617188 2.429688 -1.707031 C 2.339844 -1.851562 2.234375 -1.964844 2.113281 -2.039062 C 1.988281 -2.113281 1.84375 -2.152344 1.683594 -2.152344 C 1.402344 -2.152344 1.171875 -2.066406 0.996094 -1.902344 C 0.820312 -1.734375 0.734375 -1.519531 0.734375 -1.257812 C 0.734375 -0.988281 0.816406 -0.765625 0.984375 -0.59375 C 1.15625 -0.425781 1.371094 -0.339844 1.636719 -0.339844 C 1.757812 -0.339844 1.875 -0.355469 1.984375 -0.390625 C 2.09375 -0.421875 2.199219 -0.472656 2.296875 -0.539062 C 2.328125 -0.5625 2.375 -0.59375 2.433594 -0.640625 C 2.550781 -0.734375 2.644531 -0.785156 2.710938 -0.785156 C 2.765625 -0.785156 2.8125 -0.765625 2.847656 -0.730469 C 2.882812 -0.695312 2.898438 -0.648438 2.898438 -0.59375 C 2.898438 -0.449219 2.765625 -0.304688 2.496094 -0.15625 C 2.222656 -0.0078125 1.9375 0.0664062 1.632812 0.0664062 C 1.242188 0.0664062 0.914062 -0.0585938 0.652344 -0.308594 C 0.390625 -0.558594 0.261719 -0.875 0.261719 -1.25 C 0.261719 -1.625 0.390625 -1.941406 0.652344 -2.191406 C 0.910156 -2.445312 1.238281 -2.570312 1.628906 -2.570312 C 1.765625 -2.570312 1.902344 -2.554688 2.042969 -2.515625 C 2.179688 -2.480469 2.328125 -2.421875 2.480469 -2.34375 Z "/>
</symbol>
<symbol overflow="visible" id="glyph0-4">
<path style="stroke:none;" d="M 2.480469 0 C 2.445312 0 2.417969 -0.0078125 2.402344 -0.0273438 C 2.386719 -0.046875 2.378906 -0.0859375 2.378906 -0.136719 L 2.378906 -0.359375 C 2.269531 -0.226562 2.136719 -0.121094 1.972656 -0.0429688 C 1.808594 0.03125 1.632812 0.0664062 1.441406 0.0664062 C 1.101562 0.0664062 0.816406 -0.0546875 0.585938 -0.296875 C 0.355469 -0.539062 0.238281 -0.84375 0.238281 -1.203125 C 0.238281 -1.578125 0.363281 -1.890625 0.609375 -2.140625 C 0.855469 -2.386719 1.160156 -2.511719 1.527344 -2.511719 C 1.714844 -2.511719 1.878906 -2.480469 2.027344 -2.414062 C 2.175781 -2.347656 2.304688 -2.25 2.410156 -2.121094 L 2.410156 -3.160156 L 2.269531 -3.160156 C 2.109375 -3.160156 2.007812 -3.175781 1.960938 -3.203125 C 1.914062 -3.230469 1.894531 -3.28125 1.894531 -3.355469 C 1.894531 -3.421875 1.910156 -3.46875 1.949219 -3.503906 C 1.984375 -3.535156 2.039062 -3.550781 2.109375 -3.550781 L 2.667969 -3.550781 C 2.722656 -3.550781 2.761719 -3.542969 2.785156 -3.523438 C 2.808594 -3.503906 2.820312 -3.476562 2.820312 -3.441406 L 2.820312 -0.382812 L 2.941406 -0.382812 C 3.03125 -0.382812 3.097656 -0.367188 3.136719 -0.335938 C 3.175781 -0.308594 3.195312 -0.261719 3.195312 -0.195312 C 3.195312 -0.132812 3.179688 -0.0859375 3.144531 -0.0507812 C 3.109375 -0.015625 3.0625 0 3.003906 0 Z M 0.707031 -1.21875 C 0.707031 -0.96875 0.785156 -0.765625 0.945312 -0.605469 C 1.105469 -0.445312 1.3125 -0.367188 1.558594 -0.367188 C 1.808594 -0.367188 2.015625 -0.449219 2.175781 -0.613281 C 2.335938 -0.78125 2.417969 -0.988281 2.417969 -1.246094 C 2.417969 -1.496094 2.335938 -1.703125 2.175781 -1.867188 C 2.015625 -2.03125 1.8125 -2.109375 1.558594 -2.109375 C 1.304688 -2.109375 1.097656 -2.027344 0.941406 -1.863281 C 0.785156 -1.699219 0.707031 -1.484375 0.707031 -1.21875 Z "/>
</symbol>
<symbol overflow="visible" id="glyph0-5">
<path style="stroke:none;" d="M 0.75 -1.132812 C 0.761719 -0.875 0.851562 -0.671875 1.011719 -0.53125 C 1.175781 -0.390625 1.394531 -0.316406 1.675781 -0.316406 C 1.886719 -0.316406 2.117188 -0.375 2.367188 -0.488281 C 2.617188 -0.601562 2.769531 -0.65625 2.820312 -0.65625 C 2.875 -0.65625 2.921875 -0.640625 2.957031 -0.605469 C 2.992188 -0.570312 3.011719 -0.527344 3.011719 -0.476562 C 3.011719 -0.425781 2.992188 -0.378906 2.953125 -0.332031 C 2.914062 -0.289062 2.855469 -0.246094 2.773438 -0.207031 C 2.59375 -0.117188 2.40625 -0.0507812 2.210938 -0.00390625 C 2.019531 0.0429688 1.828125 0.0664062 1.636719 0.0664062 C 1.226562 0.0664062 0.894531 -0.0507812 0.648438 -0.289062 C 0.402344 -0.527344 0.277344 -0.84375 0.277344 -1.234375 C 0.277344 -1.632812 0.40625 -1.957031 0.671875 -2.207031 C 0.933594 -2.453125 1.273438 -2.578125 1.695312 -2.578125 C 2.078125 -2.578125 2.394531 -2.460938 2.644531 -2.230469 C 2.894531 -2 3.023438 -1.71875 3.023438 -1.390625 C 3.023438 -1.289062 3 -1.21875 2.957031 -1.183594 C 2.914062 -1.152344 2.800781 -1.132812 2.613281 -1.132812 Z M 0.761719 -1.488281 L 2.527344 -1.488281 C 2.5 -1.703125 2.410156 -1.878906 2.257812 -2.007812 C 2.105469 -2.140625 1.917969 -2.207031 1.695312 -2.207031 C 1.453125 -2.207031 1.253906 -2.140625 1.085938 -2.015625 C 0.921875 -1.890625 0.816406 -1.714844 0.761719 -1.488281 Z "/>
</symbol>
<symbol overflow="visible" id="glyph0-6">
<path style="stroke:none;" d="M 2.5 -0.386719 C 2.574219 -0.386719 2.632812 -0.371094 2.671875 -0.339844 C 2.710938 -0.308594 2.730469 -0.257812 2.730469 -0.195312 C 2.730469 -0.128906 2.710938 -0.0820312 2.671875 -0.0507812 C 2.636719 -0.015625 2.582031 0 2.511719 0 L 0.738281 0 C 0.664062 0 0.605469 -0.015625 0.566406 -0.0507812 C 0.527344 -0.0820312 0.511719 -0.128906 0.511719 -0.195312 C 0.511719 -0.257812 0.527344 -0.304688 0.566406 -0.339844 C 0.601562 -0.371094 0.65625 -0.386719 0.726562 -0.386719 L 1.1875 -0.386719 L 1.1875 -2.046875 L 0.742188 -2.046875 C 0.667969 -2.046875 0.613281 -2.0625 0.570312 -2.097656 C 0.53125 -2.132812 0.511719 -2.179688 0.511719 -2.242188 C 0.511719 -2.308594 0.527344 -2.355469 0.566406 -2.390625 C 0.605469 -2.421875 0.660156 -2.4375 0.734375 -2.4375 L 1.160156 -2.4375 L 1.160156 -2.625 C 1.160156 -2.949219 1.253906 -3.1875 1.441406 -3.335938 C 1.628906 -3.484375 1.929688 -3.554688 2.34375 -3.554688 C 2.546875 -3.554688 2.695312 -3.535156 2.792969 -3.488281 C 2.890625 -3.441406 2.9375 -3.371094 2.9375 -3.277344 C 2.9375 -3.222656 2.917969 -3.175781 2.875 -3.136719 C 2.832031 -3.101562 2.78125 -3.085938 2.714844 -3.085938 C 2.683594 -3.085938 2.605469 -3.09375 2.480469 -3.117188 C 2.355469 -3.140625 2.25 -3.148438 2.160156 -3.148438 C 1.957031 -3.148438 1.8125 -3.105469 1.722656 -3.019531 C 1.632812 -2.933594 1.589844 -2.792969 1.589844 -2.59375 L 1.589844 -2.4375 L 2.550781 -2.4375 C 2.625 -2.4375 2.679688 -2.421875 2.71875 -2.390625 C 2.757812 -2.359375 2.777344 -2.308594 2.777344 -2.242188 C 2.777344 -2.179688 2.757812 -2.132812 2.71875 -2.097656 C 2.679688 -2.0625 2.625 -2.046875 2.554688 -2.046875 L 1.617188 -2.046875 L 1.617188 -0.386719 Z "/>
</symbol>
</g>
</defs>
<g id="surface56">
<g style="fill:rgb(100%,100%,100%);fill-opacity:1;">
<use xlink:href="#glyph0-1" x="30" y="24.188477"/>
<use xlink:href="#glyph0-2" x="33" y="24.188477"/>
<use xlink:href="#glyph0-3" x="36" y="24.188477"/>
<use xlink:href="#glyph0-4" x="39" y="24.188477"/>
<use xlink:href="#glyph0-5" x="42" y="24.188477"/>
<use xlink:href="#glyph0-6" x="45" y="24.188477"/>
</g>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 11 KiB

View File

@ -1,65 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="1920pt" height="1080pt" viewBox="0 0 1920 1080" version="1.1">
<defs>
<g>
<symbol overflow="visible" id="glyph0-0">
<path style="stroke:none;" d="M 0.195312 0.6875 L 0.195312 -2.742188 L 2.136719 -2.742188 L 2.136719 0.6875 Z M 0.414062 0.472656 L 1.921875 0.472656 L 1.921875 -2.523438 L 0.414062 -2.523438 Z "/>
</symbol>
<symbol overflow="visible" id="glyph0-1">
<path style="stroke:none;" d="M 0.457031 -1.484375 C 0.453125 -1.390625 0.441406 -1.328125 0.421875 -1.304688 C 0.402344 -1.277344 0.363281 -1.265625 0.308594 -1.265625 C 0.261719 -1.265625 0.230469 -1.277344 0.207031 -1.300781 C 0.183594 -1.324219 0.175781 -1.359375 0.175781 -1.402344 C 0.175781 -1.402344 0.175781 -1.414062 0.175781 -1.433594 C 0.175781 -1.453125 0.179688 -1.472656 0.179688 -1.492188 L 0.199219 -2.121094 C 0.199219 -2.167969 0.210938 -2.199219 0.234375 -2.222656 C 0.257812 -2.242188 0.292969 -2.253906 0.34375 -2.253906 L 1.992188 -2.253906 C 2.039062 -2.253906 2.074219 -2.242188 2.097656 -2.222656 C 2.121094 -2.199219 2.132812 -2.167969 2.132812 -2.121094 L 2.15625 -1.492188 C 2.15625 -1.46875 2.15625 -1.449219 2.15625 -1.429688 C 2.160156 -1.410156 2.160156 -1.398438 2.160156 -1.398438 C 2.160156 -1.355469 2.148438 -1.320312 2.125 -1.296875 C 2.101562 -1.277344 2.0625 -1.265625 2.015625 -1.265625 C 1.964844 -1.265625 1.929688 -1.277344 1.910156 -1.304688 C 1.890625 -1.328125 1.882812 -1.390625 1.878906 -1.484375 L 1.859375 -1.980469 L 1.3125 -1.980469 L 1.3125 -0.269531 L 1.679688 -0.269531 C 1.734375 -0.269531 1.773438 -0.257812 1.796875 -0.238281 C 1.820312 -0.214844 1.832031 -0.183594 1.832031 -0.136719 C 1.832031 -0.09375 1.820312 -0.0585938 1.796875 -0.0351562 C 1.773438 -0.0117188 1.742188 0 1.699219 0 L 0.632812 0 C 0.589844 0 0.558594 -0.0117188 0.535156 -0.0351562 C 0.511719 -0.0585938 0.5 -0.09375 0.5 -0.136719 C 0.5 -0.183594 0.515625 -0.21875 0.539062 -0.238281 C 0.5625 -0.257812 0.605469 -0.269531 0.664062 -0.269531 L 1.019531 -0.269531 L 1.019531 -1.980469 L 0.476562 -1.980469 Z "/>
</symbol>
<symbol overflow="visible" id="glyph0-2">
<path style="stroke:none;" d="M 0.523438 -0.792969 C 0.535156 -0.609375 0.597656 -0.46875 0.710938 -0.371094 C 0.824219 -0.273438 0.976562 -0.222656 1.171875 -0.222656 C 1.320312 -0.222656 1.484375 -0.261719 1.65625 -0.339844 C 1.832031 -0.417969 1.9375 -0.460938 1.976562 -0.460938 C 2.011719 -0.460938 2.042969 -0.449219 2.070312 -0.421875 C 2.09375 -0.398438 2.109375 -0.371094 2.109375 -0.335938 C 2.109375 -0.296875 2.09375 -0.265625 2.066406 -0.234375 C 2.042969 -0.203125 2 -0.171875 1.941406 -0.144531 C 1.816406 -0.0820312 1.683594 -0.0351562 1.550781 0 C 1.414062 0.03125 1.28125 0.046875 1.148438 0.046875 C 0.859375 0.046875 0.628906 -0.0351562 0.453125 -0.203125 C 0.28125 -0.367188 0.195312 -0.589844 0.195312 -0.863281 C 0.195312 -1.144531 0.285156 -1.371094 0.46875 -1.542969 C 0.652344 -1.71875 0.890625 -1.804688 1.1875 -1.804688 C 1.453125 -1.804688 1.675781 -1.722656 1.851562 -1.5625 C 2.027344 -1.398438 2.117188 -1.203125 2.117188 -0.972656 C 2.117188 -0.902344 2.101562 -0.855469 2.070312 -0.828125 C 2.042969 -0.804688 1.960938 -0.792969 1.828125 -0.792969 Z M 0.535156 -1.042969 L 1.769531 -1.042969 C 1.75 -1.195312 1.6875 -1.316406 1.582031 -1.40625 C 1.472656 -1.5 1.34375 -1.542969 1.1875 -1.542969 C 1.019531 -1.542969 0.875 -1.5 0.761719 -1.410156 C 0.644531 -1.320312 0.570312 -1.199219 0.535156 -1.042969 Z "/>
</symbol>
<symbol overflow="visible" id="glyph0-3">
<path style="stroke:none;" d="M 0.339844 -0.136719 L 0.339844 -0.476562 C 0.339844 -0.53125 0.347656 -0.570312 0.371094 -0.59375 C 0.390625 -0.617188 0.425781 -0.628906 0.472656 -0.628906 C 0.523438 -0.628906 0.5625 -0.59375 0.59375 -0.523438 C 0.613281 -0.480469 0.632812 -0.449219 0.648438 -0.425781 C 0.703125 -0.359375 0.78125 -0.304688 0.886719 -0.261719 C 0.988281 -0.222656 1.101562 -0.203125 1.230469 -0.203125 C 1.363281 -0.203125 1.46875 -0.230469 1.550781 -0.28125 C 1.632812 -0.335938 1.671875 -0.410156 1.671875 -0.496094 C 1.671875 -0.585938 1.640625 -0.652344 1.574219 -0.6875 C 1.511719 -0.726562 1.398438 -0.746094 1.238281 -0.746094 L 1.136719 -0.746094 C 0.878906 -0.746094 0.679688 -0.792969 0.546875 -0.882812 C 0.410156 -0.972656 0.34375 -1.101562 0.34375 -1.273438 C 0.34375 -1.441406 0.40625 -1.570312 0.539062 -1.660156 C 0.671875 -1.753906 0.859375 -1.800781 1.097656 -1.800781 C 1.195312 -1.800781 1.292969 -1.785156 1.394531 -1.757812 C 1.496094 -1.730469 1.550781 -1.71875 1.554688 -1.71875 C 1.570312 -1.71875 1.597656 -1.730469 1.636719 -1.753906 C 1.675781 -1.78125 1.714844 -1.792969 1.75 -1.792969 C 1.792969 -1.792969 1.824219 -1.777344 1.847656 -1.746094 C 1.867188 -1.714844 1.878906 -1.667969 1.878906 -1.601562 L 1.878906 -1.378906 C 1.878906 -1.3125 1.867188 -1.265625 1.847656 -1.234375 C 1.828125 -1.207031 1.796875 -1.191406 1.75 -1.191406 C 1.710938 -1.191406 1.667969 -1.222656 1.609375 -1.289062 C 1.570312 -1.332031 1.539062 -1.367188 1.515625 -1.386719 C 1.445312 -1.449219 1.375 -1.496094 1.300781 -1.523438 C 1.222656 -1.550781 1.132812 -1.5625 1.03125 -1.5625 C 0.914062 -1.5625 0.816406 -1.535156 0.742188 -1.484375 C 0.671875 -1.433594 0.632812 -1.363281 0.632812 -1.285156 C 0.632812 -1.203125 0.671875 -1.148438 0.746094 -1.113281 C 0.820312 -1.078125 0.980469 -1.058594 1.230469 -1.054688 C 1.492188 -1.046875 1.683594 -1 1.804688 -0.917969 C 1.925781 -0.832031 1.988281 -0.699219 1.988281 -0.519531 C 1.988281 -0.347656 1.921875 -0.210938 1.789062 -0.109375 C 1.652344 -0.0078125 1.472656 0.0429688 1.242188 0.0429688 C 1.171875 0.0429688 1.089844 0.0351562 1.003906 0.0234375 C 0.914062 0.0117188 0.804688 -0.0117188 0.667969 -0.0429688 C 0.625 -0.015625 0.585938 0.0078125 0.554688 0.0234375 C 0.523438 0.0351562 0.496094 0.0429688 0.476562 0.0429688 C 0.429688 0.0429688 0.398438 0.0273438 0.375 -0.00390625 C 0.351562 -0.0351562 0.339844 -0.078125 0.339844 -0.136719 Z "/>
</symbol>
<symbol overflow="visible" id="glyph0-4">
<path style="stroke:none;" d="M 1.683594 -1.648438 C 1.746094 -1.648438 1.792969 -1.636719 1.820312 -1.617188 C 1.847656 -1.59375 1.863281 -1.558594 1.863281 -1.515625 C 1.863281 -1.46875 1.851562 -1.4375 1.824219 -1.414062 C 1.796875 -1.390625 1.757812 -1.378906 1.703125 -1.378906 L 0.933594 -1.378906 L 0.933594 -0.746094 C 0.933594 -0.539062 0.960938 -0.402344 1.015625 -0.335938 C 1.070312 -0.269531 1.160156 -0.238281 1.292969 -0.238281 C 1.40625 -0.238281 1.542969 -0.269531 1.707031 -0.339844 C 1.867188 -0.40625 1.964844 -0.4375 2.003906 -0.4375 C 2.039062 -0.4375 2.070312 -0.425781 2.09375 -0.402344 C 2.117188 -0.375 2.132812 -0.34375 2.132812 -0.308594 C 2.132812 -0.265625 2.117188 -0.230469 2.085938 -0.199219 C 2.054688 -0.167969 2 -0.136719 1.925781 -0.109375 C 1.800781 -0.0585938 1.691406 -0.0234375 1.589844 0 C 1.492188 0.0234375 1.398438 0.0351562 1.308594 0.0351562 C 1.160156 0.0351562 1.039062 0.0117188 0.9375 -0.0351562 C 0.835938 -0.0820312 0.761719 -0.15625 0.710938 -0.25 C 0.6875 -0.292969 0.667969 -0.34375 0.65625 -0.40625 C 0.648438 -0.46875 0.640625 -0.5625 0.640625 -0.6875 L 0.640625 -1.378906 L 0.320312 -1.378906 C 0.265625 -1.378906 0.226562 -1.390625 0.203125 -1.410156 C 0.179688 -1.433594 0.167969 -1.46875 0.167969 -1.515625 C 0.167969 -1.566406 0.183594 -1.601562 0.214844 -1.621094 C 0.25 -1.640625 0.320312 -1.648438 0.425781 -1.648438 L 0.640625 -1.648438 L 0.640625 -2.136719 C 0.640625 -2.191406 0.652344 -2.234375 0.675781 -2.257812 C 0.699219 -2.285156 0.738281 -2.296875 0.785156 -2.296875 C 0.839844 -2.296875 0.878906 -2.28125 0.902344 -2.25 C 0.921875 -2.21875 0.933594 -2.148438 0.933594 -2.035156 L 0.933594 -1.648438 Z "/>
</symbol>
<symbol overflow="visible" id="glyph0-5">
<path style="stroke:none;" d="M 0.992188 -2.300781 C 0.992188 -2.4375 1.003906 -2.523438 1.027344 -2.558594 C 1.054688 -2.59375 1.105469 -2.613281 1.1875 -2.613281 C 1.265625 -2.613281 1.316406 -2.597656 1.34375 -2.570312 C 1.367188 -2.539062 1.378906 -2.46875 1.378906 -2.355469 C 1.378906 -2.246094 1.367188 -2.179688 1.34375 -2.15625 C 1.320312 -2.128906 1.269531 -2.117188 1.1875 -2.117188 C 1.105469 -2.117188 1.054688 -2.128906 1.027344 -2.152344 C 1.003906 -2.175781 0.992188 -2.226562 0.992188 -2.300781 Z M 1.34375 -0.269531 L 1.953125 -0.269531 C 2.003906 -0.269531 2.039062 -0.257812 2.0625 -0.238281 C 2.085938 -0.214844 2.097656 -0.183594 2.097656 -0.136719 C 2.097656 -0.0859375 2.085938 -0.0507812 2.0625 -0.03125 C 2.042969 -0.0117188 2 0 1.941406 0 L 0.46875 0 C 0.417969 0 0.378906 -0.0117188 0.351562 -0.0351562 C 0.328125 -0.0585938 0.316406 -0.0898438 0.316406 -0.136719 C 0.316406 -0.179688 0.328125 -0.214844 0.355469 -0.234375 C 0.382812 -0.257812 0.421875 -0.269531 0.476562 -0.269531 L 1.054688 -0.269531 L 1.054688 -1.484375 L 0.683594 -1.484375 C 0.632812 -1.484375 0.59375 -1.496094 0.566406 -1.519531 C 0.539062 -1.542969 0.523438 -1.578125 0.523438 -1.621094 C 0.523438 -1.664062 0.535156 -1.699219 0.5625 -1.722656 C 0.585938 -1.746094 0.625 -1.753906 0.675781 -1.753906 L 1.234375 -1.753906 C 1.265625 -1.753906 1.292969 -1.746094 1.3125 -1.734375 C 1.332031 -1.71875 1.34375 -1.699219 1.34375 -1.675781 Z "/>
</symbol>
<symbol overflow="visible" id="glyph0-6">
<path style="stroke:none;" d="M 0.460938 -0.269531 L 0.460938 -1.484375 L 0.421875 -1.484375 C 0.335938 -1.484375 0.277344 -1.496094 0.246094 -1.515625 C 0.214844 -1.535156 0.199219 -1.570312 0.199219 -1.621094 C 0.199219 -1.667969 0.210938 -1.703125 0.238281 -1.722656 C 0.265625 -1.746094 0.308594 -1.753906 0.367188 -1.753906 L 0.636719 -1.753906 C 0.671875 -1.753906 0.699219 -1.746094 0.71875 -1.734375 C 0.738281 -1.71875 0.746094 -1.699219 0.746094 -1.675781 L 0.746094 -1.546875 C 0.839844 -1.632812 0.929688 -1.699219 1.019531 -1.738281 C 1.109375 -1.78125 1.207031 -1.800781 1.304688 -1.800781 C 1.496094 -1.800781 1.644531 -1.742188 1.753906 -1.621094 C 1.863281 -1.503906 1.917969 -1.339844 1.917969 -1.128906 L 1.917969 -0.269531 L 2.007812 -0.269531 C 2.070312 -0.269531 2.117188 -0.257812 2.144531 -0.238281 C 2.171875 -0.214844 2.1875 -0.183594 2.1875 -0.136719 C 2.1875 -0.0859375 2.171875 -0.0507812 2.140625 -0.03125 C 2.113281 -0.0117188 2.058594 0 1.984375 0 L 1.5625 0 C 1.480469 0 1.429688 -0.0078125 1.40625 -0.0273438 C 1.382812 -0.046875 1.375 -0.0820312 1.375 -0.136719 C 1.375 -0.1875 1.386719 -0.21875 1.414062 -0.238281 C 1.441406 -0.257812 1.488281 -0.269531 1.5625 -0.269531 L 1.628906 -0.269531 L 1.628906 -1.058594 C 1.628906 -1.207031 1.597656 -1.320312 1.527344 -1.398438 C 1.460938 -1.476562 1.363281 -1.515625 1.238281 -1.515625 C 1.109375 -1.515625 0.992188 -1.46875 0.894531 -1.382812 C 0.796875 -1.296875 0.746094 -1.1875 0.746094 -1.058594 L 0.746094 -0.269531 L 0.8125 -0.269531 C 0.890625 -0.269531 0.941406 -0.257812 0.964844 -0.238281 C 0.992188 -0.21875 1.007812 -0.1875 1.007812 -0.136719 C 1.007812 -0.0820312 0.996094 -0.046875 0.972656 -0.0273438 C 0.949219 -0.0078125 0.894531 0 0.804688 0 L 0.355469 0 C 0.304688 0 0.265625 -0.0117188 0.242188 -0.0351562 C 0.214844 -0.0546875 0.203125 -0.0898438 0.203125 -0.136719 C 0.203125 -0.1875 0.214844 -0.222656 0.246094 -0.242188 C 0.277344 -0.257812 0.332031 -0.269531 0.417969 -0.269531 Z "/>
</symbol>
<symbol overflow="visible" id="glyph0-7">
<path style="stroke:none;" d="M 1.113281 -1.472656 C 0.945312 -1.472656 0.8125 -1.421875 0.707031 -1.320312 C 0.601562 -1.21875 0.550781 -1.085938 0.550781 -0.921875 C 0.550781 -0.761719 0.601562 -0.628906 0.707031 -0.523438 C 0.8125 -0.421875 0.945312 -0.371094 1.113281 -0.371094 C 1.277344 -0.371094 1.414062 -0.421875 1.519531 -0.523438 C 1.625 -0.628906 1.675781 -0.761719 1.675781 -0.921875 C 1.675781 -1.082031 1.625 -1.214844 1.519531 -1.316406 C 1.414062 -1.421875 1.277344 -1.472656 1.113281 -1.472656 Z M 1.9375 -0.101562 C 1.9375 0.078125 1.929688 0.203125 1.910156 0.277344 C 1.894531 0.351562 1.863281 0.414062 1.820312 0.472656 C 1.75 0.566406 1.648438 0.636719 1.519531 0.683594 C 1.394531 0.734375 1.242188 0.757812 1.070312 0.757812 C 0.925781 0.757812 0.820312 0.742188 0.753906 0.714844 C 0.6875 0.6875 0.652344 0.644531 0.652344 0.582031 C 0.652344 0.542969 0.667969 0.507812 0.703125 0.480469 C 0.734375 0.449219 0.773438 0.433594 0.816406 0.433594 C 0.851562 0.433594 0.902344 0.441406 0.972656 0.449219 C 1.042969 0.457031 1.097656 0.464844 1.136719 0.464844 C 1.324219 0.464844 1.457031 0.421875 1.535156 0.335938 C 1.613281 0.25 1.652344 0.101562 1.652344 -0.109375 L 1.652344 -0.339844 C 1.574219 -0.25 1.488281 -0.183594 1.394531 -0.140625 C 1.300781 -0.0976562 1.195312 -0.078125 1.074219 -0.078125 C 0.835938 -0.078125 0.640625 -0.15625 0.484375 -0.3125 C 0.328125 -0.472656 0.253906 -0.671875 0.253906 -0.914062 C 0.253906 -1.15625 0.332031 -1.359375 0.492188 -1.519531 C 0.652344 -1.679688 0.847656 -1.757812 1.085938 -1.757812 C 1.183594 -1.757812 1.277344 -1.742188 1.371094 -1.703125 C 1.464844 -1.667969 1.558594 -1.613281 1.652344 -1.539062 L 1.652344 -1.675781 C 1.652344 -1.703125 1.660156 -1.722656 1.679688 -1.734375 C 1.695312 -1.75 1.722656 -1.753906 1.757812 -1.753906 L 2.046875 -1.753906 C 2.097656 -1.753906 2.132812 -1.742188 2.160156 -1.722656 C 2.183594 -1.699219 2.199219 -1.667969 2.199219 -1.621094 C 2.199219 -1.570312 2.179688 -1.535156 2.148438 -1.515625 C 2.117188 -1.496094 2.058594 -1.484375 1.972656 -1.484375 L 1.9375 -1.484375 Z "/>
</symbol>
<symbol overflow="visible" id="glyph0-8">
<g>
</g>
</symbol>
<symbol overflow="visible" id="glyph0-9">
<path style="stroke:none;" d="M 1.585938 -0.839844 C 1.515625 -0.863281 1.449219 -0.878906 1.386719 -0.890625 C 1.320312 -0.902344 1.253906 -0.90625 1.191406 -0.90625 C 0.996094 -0.90625 0.84375 -0.871094 0.730469 -0.808594 C 0.617188 -0.742188 0.558594 -0.652344 0.558594 -0.542969 C 0.558594 -0.457031 0.59375 -0.382812 0.664062 -0.328125 C 0.734375 -0.273438 0.824219 -0.246094 0.933594 -0.246094 C 1.09375 -0.246094 1.246094 -0.285156 1.382812 -0.371094 C 1.519531 -0.457031 1.585938 -0.542969 1.585938 -0.632812 Z M 1.601562 -0.242188 C 1.5 -0.148438 1.386719 -0.0742188 1.265625 -0.0273438 C 1.140625 0.0234375 1.015625 0.046875 0.886719 0.046875 C 0.699219 0.046875 0.546875 -0.00390625 0.429688 -0.109375 C 0.3125 -0.214844 0.257812 -0.351562 0.257812 -0.519531 C 0.257812 -0.71875 0.332031 -0.875 0.488281 -0.984375 C 0.640625 -1.09375 0.855469 -1.152344 1.136719 -1.152344 C 1.210938 -1.152344 1.285156 -1.144531 1.359375 -1.136719 C 1.433594 -1.128906 1.507812 -1.113281 1.585938 -1.09375 L 1.585938 -1.105469 C 1.585938 -1.25 1.554688 -1.359375 1.484375 -1.429688 C 1.414062 -1.5 1.304688 -1.53125 1.160156 -1.53125 C 1.058594 -1.53125 0.949219 -1.507812 0.828125 -1.453125 C 0.707031 -1.398438 0.625 -1.375 0.585938 -1.375 C 0.550781 -1.375 0.519531 -1.386719 0.496094 -1.417969 C 0.472656 -1.449219 0.460938 -1.484375 0.460938 -1.53125 C 0.460938 -1.605469 0.53125 -1.671875 0.667969 -1.722656 C 0.808594 -1.773438 0.988281 -1.800781 1.207031 -1.800781 C 1.429688 -1.800781 1.597656 -1.742188 1.710938 -1.628906 C 1.824219 -1.515625 1.882812 -1.351562 1.882812 -1.128906 L 1.882812 -0.269531 L 1.976562 -0.269531 C 2.066406 -0.269531 2.125 -0.257812 2.15625 -0.238281 C 2.1875 -0.21875 2.203125 -0.1875 2.203125 -0.136719 C 2.203125 -0.0898438 2.1875 -0.0585938 2.164062 -0.0351562 C 2.136719 -0.0117188 2.101562 0 2.050781 0 L 1.75 0 C 1.714844 0 1.6875 -0.0117188 1.664062 -0.03125 C 1.640625 -0.0546875 1.625 -0.0859375 1.617188 -0.125 Z "/>
</symbol>
<symbol overflow="visible" id="glyph0-10">
<path style="stroke:none;" d="M 0.675781 0.484375 L 1.132812 0.484375 C 1.179688 0.484375 1.214844 0.496094 1.238281 0.519531 C 1.261719 0.542969 1.277344 0.578125 1.277344 0.621094 C 1.277344 0.671875 1.265625 0.707031 1.242188 0.726562 C 1.21875 0.746094 1.175781 0.757812 1.117188 0.757812 L 0.277344 0.757812 C 0.226562 0.757812 0.191406 0.746094 0.164062 0.722656 C 0.136719 0.699219 0.125 0.667969 0.125 0.621094 C 0.125 0.570312 0.140625 0.535156 0.171875 0.515625 C 0.207031 0.496094 0.265625 0.484375 0.351562 0.484375 L 0.390625 0.484375 L 0.390625 -1.484375 L 0.351562 -1.484375 C 0.265625 -1.484375 0.207031 -1.496094 0.171875 -1.515625 C 0.140625 -1.535156 0.125 -1.570312 0.125 -1.621094 C 0.125 -1.664062 0.136719 -1.699219 0.164062 -1.722656 C 0.191406 -1.746094 0.230469 -1.753906 0.277344 -1.753906 L 0.566406 -1.753906 C 0.605469 -1.753906 0.632812 -1.75 0.652344 -1.734375 C 0.667969 -1.722656 0.675781 -1.703125 0.675781 -1.675781 L 0.675781 -1.492188 C 0.761719 -1.582031 0.859375 -1.648438 0.960938 -1.691406 C 1.066406 -1.734375 1.179688 -1.757812 1.300781 -1.757812 C 1.554688 -1.757812 1.765625 -1.671875 1.9375 -1.5 C 2.109375 -1.328125 2.195312 -1.113281 2.195312 -0.851562 C 2.195312 -0.601562 2.113281 -0.398438 1.949219 -0.238281 C 1.789062 -0.078125 1.582031 0.00390625 1.328125 0.00390625 C 1.195312 0.00390625 1.070312 -0.0195312 0.960938 -0.0664062 C 0.847656 -0.113281 0.753906 -0.183594 0.675781 -0.273438 Z M 1.265625 -0.273438 C 1.441406 -0.273438 1.585938 -0.332031 1.699219 -0.441406 C 1.8125 -0.550781 1.867188 -0.695312 1.867188 -0.871094 C 1.867188 -1.042969 1.808594 -1.1875 1.695312 -1.296875 C 1.582031 -1.410156 1.441406 -1.464844 1.265625 -1.464844 C 1.089844 -1.464844 0.945312 -1.410156 0.835938 -1.300781 C 0.722656 -1.1875 0.667969 -1.046875 0.667969 -0.871094 C 0.667969 -0.695312 0.722656 -0.554688 0.835938 -0.441406 C 0.945312 -0.332031 1.089844 -0.273438 1.265625 -0.273438 Z "/>
</symbol>
<symbol overflow="visible" id="glyph0-11">
<path style="stroke:none;" d="M 0.691406 -0.699219 C 0.691406 -0.539062 0.726562 -0.425781 0.792969 -0.351562 C 0.859375 -0.277344 0.96875 -0.242188 1.113281 -0.242188 C 1.25 -0.242188 1.367188 -0.285156 1.46875 -0.371094 C 1.566406 -0.460938 1.613281 -0.570312 1.613281 -0.699219 L 1.613281 -1.484375 L 1.355469 -1.484375 C 1.304688 -1.484375 1.269531 -1.496094 1.246094 -1.515625 C 1.222656 -1.539062 1.214844 -1.570312 1.214844 -1.613281 C 1.214844 -1.664062 1.226562 -1.699219 1.25 -1.722656 C 1.273438 -1.746094 1.3125 -1.753906 1.367188 -1.753906 L 1.769531 -1.753906 C 1.816406 -1.753906 1.851562 -1.746094 1.871094 -1.722656 C 1.890625 -1.703125 1.902344 -1.652344 1.902344 -1.570312 L 1.902344 -0.269531 L 1.988281 -0.269531 C 2.050781 -0.269531 2.09375 -0.257812 2.121094 -0.238281 C 2.148438 -0.21875 2.164062 -0.183594 2.164062 -0.136719 C 2.164062 -0.0898438 2.148438 -0.0585938 2.125 -0.0351562 C 2.097656 -0.0117188 2.0625 0 2.011719 0 L 1.722656 0 C 1.6875 0 1.660156 -0.0078125 1.644531 -0.0195312 C 1.625 -0.0351562 1.613281 -0.0546875 1.613281 -0.078125 L 1.613281 -0.207031 C 1.492188 -0.113281 1.386719 -0.0507812 1.300781 -0.015625 C 1.214844 0.0195312 1.125 0.0390625 1.027344 0.0390625 C 0.820312 0.0390625 0.660156 -0.015625 0.558594 -0.128906 C 0.453125 -0.238281 0.402344 -0.40625 0.402344 -0.628906 L 0.402344 -1.484375 L 0.359375 -1.484375 C 0.273438 -1.484375 0.214844 -1.496094 0.183594 -1.515625 C 0.152344 -1.535156 0.136719 -1.570312 0.136719 -1.621094 C 0.136719 -1.664062 0.148438 -1.699219 0.171875 -1.722656 C 0.199219 -1.746094 0.238281 -1.753906 0.289062 -1.753906 L 0.574219 -1.753906 C 0.621094 -1.753906 0.652344 -1.746094 0.667969 -1.726562 C 0.683594 -1.710938 0.691406 -1.671875 0.691406 -1.609375 Z "/>
</symbol>
<symbol overflow="visible" id="glyph0-12">
<path style="stroke:none;" d="M 0.453125 -0.269531 L 0.453125 -2.210938 L 0.414062 -2.210938 C 0.328125 -2.210938 0.269531 -2.222656 0.238281 -2.242188 C 0.207031 -2.261719 0.191406 -2.296875 0.191406 -2.347656 C 0.191406 -2.394531 0.203125 -2.429688 0.230469 -2.453125 C 0.253906 -2.476562 0.292969 -2.484375 0.34375 -2.484375 L 0.628906 -2.484375 C 0.664062 -2.484375 0.691406 -2.480469 0.710938 -2.464844 C 0.730469 -2.449219 0.738281 -2.433594 0.738281 -2.410156 L 0.738281 -1.546875 C 0.832031 -1.632812 0.921875 -1.699219 1.011719 -1.738281 C 1.101562 -1.78125 1.199219 -1.800781 1.296875 -1.800781 C 1.488281 -1.800781 1.636719 -1.742188 1.746094 -1.621094 C 1.855469 -1.503906 1.910156 -1.339844 1.910156 -1.128906 L 1.910156 -0.269531 L 2 -0.269531 C 2.0625 -0.269531 2.109375 -0.257812 2.136719 -0.238281 C 2.164062 -0.214844 2.179688 -0.183594 2.179688 -0.136719 C 2.179688 -0.0898438 2.164062 -0.0585938 2.140625 -0.0351562 C 2.113281 -0.0117188 2.078125 0 2.027344 0 L 1.519531 0 C 1.460938 0 1.421875 -0.0117188 1.402344 -0.03125 C 1.378906 -0.0507812 1.371094 -0.0859375 1.371094 -0.136719 C 1.371094 -0.1875 1.382812 -0.222656 1.410156 -0.242188 C 1.433594 -0.257812 1.484375 -0.269531 1.554688 -0.269531 L 1.621094 -0.269531 L 1.621094 -1.058594 C 1.621094 -1.207031 1.589844 -1.320312 1.519531 -1.398438 C 1.453125 -1.476562 1.355469 -1.515625 1.230469 -1.515625 C 1.097656 -1.515625 0.984375 -1.46875 0.886719 -1.382812 C 0.789062 -1.296875 0.738281 -1.1875 0.738281 -1.058594 L 0.738281 -0.269531 L 0.804688 -0.269531 C 0.882812 -0.269531 0.933594 -0.257812 0.960938 -0.238281 C 0.984375 -0.21875 1 -0.1875 1 -0.136719 C 1 -0.0859375 0.988281 -0.0507812 0.96875 -0.03125 C 0.945312 -0.0117188 0.90625 0 0.847656 0 L 0.34375 0 C 0.292969 0 0.253906 -0.0117188 0.230469 -0.0351562 C 0.207031 -0.0585938 0.195312 -0.0898438 0.195312 -0.136719 C 0.195312 -0.1875 0.207031 -0.222656 0.238281 -0.242188 C 0.269531 -0.257812 0.324219 -0.269531 0.414062 -0.269531 Z "/>
</symbol>
</g>
</defs>
<g id="surface28">
<g style="fill:rgb(100%,100%,100%);fill-opacity:1;">
<use xlink:href="#glyph0-1" x="30" y="22.932617"/>
<use xlink:href="#glyph0-2" x="32" y="22.932617"/>
<use xlink:href="#glyph0-3" x="34" y="22.932617"/>
<use xlink:href="#glyph0-4" x="36" y="22.932617"/>
<use xlink:href="#glyph0-5" x="38" y="22.932617"/>
<use xlink:href="#glyph0-6" x="40" y="22.932617"/>
<use xlink:href="#glyph0-7" x="42" y="22.932617"/>
<use xlink:href="#glyph0-8" x="44" y="22.932617"/>
<use xlink:href="#glyph0-9" x="46" y="22.932617"/>
<use xlink:href="#glyph0-8" x="48" y="22.932617"/>
<use xlink:href="#glyph0-10" x="50" y="22.932617"/>
<use xlink:href="#glyph0-11" x="52" y="22.932617"/>
<use xlink:href="#glyph0-3" x="54" y="22.932617"/>
<use xlink:href="#glyph0-12" x="56" y="22.932617"/>
</g>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 22 KiB

View File

@ -1,32 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="1920pt" height="1080pt" viewBox="0 0 1920 1080" version="1.1">
<defs>
<g>
<symbol overflow="visible" id="glyph0-0">
<path style="stroke:none;" d="M 0.277344 0.980469 L 0.277344 -3.917969 L 3.054688 -3.917969 L 3.054688 0.980469 Z M 0.589844 0.671875 L 2.746094 0.671875 L 2.746094 -3.605469 L 0.589844 -3.605469 Z "/>
</symbol>
<symbol overflow="visible" id="glyph0-1">
<path style="stroke:none;" d="M 0.722656 0 C 0.625 0 0.554688 -0.0195312 0.507812 -0.0585938 C 0.460938 -0.0976562 0.441406 -0.15625 0.441406 -0.238281 C 0.441406 -0.355469 0.613281 -0.578125 0.960938 -0.902344 L 1.039062 -0.976562 C 1.089844 -1.027344 1.167969 -1.097656 1.265625 -1.195312 C 1.890625 -1.785156 2.207031 -2.210938 2.207031 -2.480469 C 2.207031 -2.675781 2.148438 -2.832031 2.039062 -2.953125 C 1.929688 -3.074219 1.785156 -3.132812 1.613281 -3.132812 C 1.5 -3.132812 1.386719 -3.109375 1.285156 -3.0625 C 1.179688 -3.015625 1.097656 -2.953125 1.035156 -2.871094 C 1.023438 -2.859375 1.003906 -2.832031 0.980469 -2.800781 C 0.914062 -2.679688 0.839844 -2.617188 0.757812 -2.617188 C 0.691406 -2.617188 0.644531 -2.636719 0.617188 -2.675781 C 0.589844 -2.714844 0.578125 -2.792969 0.578125 -2.90625 C 0.578125 -2.972656 0.585938 -3.019531 0.597656 -3.046875 C 0.609375 -3.078125 0.632812 -3.109375 0.667969 -3.144531 C 0.785156 -3.257812 0.925781 -3.34375 1.097656 -3.410156 C 1.269531 -3.476562 1.441406 -3.511719 1.621094 -3.511719 C 1.921875 -3.511719 2.171875 -3.414062 2.375 -3.21875 C 2.578125 -3.027344 2.675781 -2.789062 2.675781 -2.507812 C 2.675781 -2.152344 2.371094 -1.679688 1.753906 -1.09375 C 1.597656 -0.945312 1.476562 -0.832031 1.394531 -0.75 L 1.0625 -0.429688 L 2.300781 -0.429688 C 2.308594 -0.507812 2.328125 -0.566406 2.363281 -0.605469 C 2.398438 -0.648438 2.445312 -0.667969 2.507812 -0.667969 C 2.566406 -0.667969 2.613281 -0.648438 2.648438 -0.609375 C 2.683594 -0.570312 2.699219 -0.511719 2.699219 -0.445312 C 2.699219 -0.441406 2.699219 -0.429688 2.695312 -0.417969 C 2.695312 -0.402344 2.695312 -0.394531 2.695312 -0.386719 L 2.671875 -0.179688 C 2.667969 -0.125 2.648438 -0.078125 2.625 -0.046875 C 2.597656 -0.015625 2.5625 0 2.515625 0 Z "/>
</symbol>
<symbol overflow="visible" id="glyph0-2">
<path style="stroke:none;" d="M 2.269531 -1.199219 C 2.167969 -1.230469 2.070312 -1.253906 1.980469 -1.269531 C 1.886719 -1.285156 1.792969 -1.292969 1.699219 -1.292969 C 1.421875 -1.292969 1.203125 -1.246094 1.042969 -1.152344 C 0.882812 -1.058594 0.800781 -0.933594 0.800781 -0.773438 C 0.800781 -0.648438 0.851562 -0.550781 0.949219 -0.46875 C 1.050781 -0.390625 1.179688 -0.351562 1.335938 -0.351562 C 1.566406 -0.351562 1.777344 -0.410156 1.972656 -0.53125 C 2.167969 -0.652344 2.269531 -0.777344 2.269531 -0.90625 Z M 2.289062 -0.34375 C 2.140625 -0.210938 1.980469 -0.109375 1.804688 -0.0390625 C 1.628906 0.03125 1.453125 0.0664062 1.265625 0.0664062 C 0.996094 0.0664062 0.78125 -0.0078125 0.613281 -0.15625 C 0.449219 -0.308594 0.367188 -0.503906 0.367188 -0.742188 C 0.367188 -1.027344 0.476562 -1.25 0.695312 -1.40625 C 0.914062 -1.566406 1.222656 -1.644531 1.621094 -1.644531 C 1.726562 -1.644531 1.832031 -1.636719 1.941406 -1.625 C 2.046875 -1.609375 2.15625 -1.589844 2.269531 -1.558594 L 2.269531 -1.578125 C 2.269531 -1.785156 2.21875 -1.941406 2.117188 -2.039062 C 2.019531 -2.140625 1.863281 -2.1875 1.65625 -2.1875 C 1.515625 -2.1875 1.355469 -2.152344 1.183594 -2.074219 C 1.007812 -2 0.894531 -1.960938 0.839844 -1.960938 C 0.785156 -1.960938 0.742188 -1.984375 0.707031 -2.023438 C 0.671875 -2.066406 0.65625 -2.121094 0.65625 -2.1875 C 0.65625 -2.296875 0.757812 -2.386719 0.957031 -2.460938 C 1.15625 -2.535156 1.410156 -2.570312 1.722656 -2.570312 C 2.039062 -2.570312 2.28125 -2.492188 2.445312 -2.328125 C 2.605469 -2.167969 2.6875 -1.929688 2.6875 -1.613281 L 2.6875 -0.382812 L 2.820312 -0.382812 C 2.949219 -0.382812 3.035156 -0.367188 3.078125 -0.34375 C 3.121094 -0.316406 3.144531 -0.265625 3.144531 -0.195312 C 3.144531 -0.128906 3.125 -0.0820312 3.089844 -0.0507812 C 3.054688 -0.015625 3 0 2.925781 0 L 2.5 0 C 2.449219 0 2.410156 -0.015625 2.375 -0.046875 C 2.34375 -0.078125 2.320312 -0.121094 2.3125 -0.179688 Z "/>
</symbol>
<symbol overflow="visible" id="glyph0-3">
<path style="stroke:none;" d="M 2.285156 -1.636719 C 2.1875 -1.511719 2.078125 -1.421875 1.960938 -1.359375 C 1.84375 -1.296875 1.714844 -1.265625 1.574219 -1.265625 C 1.289062 -1.265625 1.042969 -1.375 0.84375 -1.589844 C 0.644531 -1.804688 0.546875 -2.066406 0.546875 -2.378906 C 0.546875 -2.707031 0.640625 -2.980469 0.835938 -3.191406 C 1.027344 -3.402344 1.273438 -3.511719 1.574219 -3.511719 C 1.929688 -3.511719 2.214844 -3.367188 2.429688 -3.082031 C 2.648438 -2.796875 2.757812 -2.421875 2.757812 -1.949219 C 2.757812 -1.328125 2.597656 -0.835938 2.28125 -0.464844 C 1.964844 -0.09375 1.539062 0.0898438 1.007812 0.0898438 C 0.839844 0.0898438 0.726562 0.078125 0.671875 0.0507812 C 0.617188 0.0273438 0.589844 -0.0195312 0.589844 -0.0898438 C 0.589844 -0.207031 0.695312 -0.265625 0.910156 -0.269531 C 1.054688 -0.273438 1.167969 -0.285156 1.25 -0.300781 C 1.535156 -0.351562 1.769531 -0.496094 1.945312 -0.726562 C 2.125 -0.957031 2.238281 -1.261719 2.285156 -1.636719 Z M 2.226562 -2.367188 C 2.226562 -2.589844 2.167969 -2.773438 2.050781 -2.914062 C 1.929688 -3.054688 1.78125 -3.121094 1.59375 -3.121094 C 1.417969 -3.121094 1.277344 -3.054688 1.167969 -2.925781 C 1.058594 -2.792969 1.007812 -2.621094 1.007812 -2.40625 C 1.007812 -2.1875 1.0625 -2.007812 1.175781 -1.867188 C 1.289062 -1.730469 1.4375 -1.660156 1.617188 -1.660156 C 1.792969 -1.660156 1.9375 -1.726562 2.054688 -1.859375 C 2.167969 -1.992188 2.226562 -2.160156 2.226562 -2.367188 Z "/>
</symbol>
<symbol overflow="visible" id="glyph0-4">
<path style="stroke:none;" d="M 0.75 -1.132812 C 0.761719 -0.875 0.851562 -0.671875 1.011719 -0.53125 C 1.175781 -0.390625 1.394531 -0.316406 1.675781 -0.316406 C 1.886719 -0.316406 2.117188 -0.375 2.367188 -0.488281 C 2.617188 -0.601562 2.769531 -0.65625 2.820312 -0.65625 C 2.875 -0.65625 2.921875 -0.640625 2.957031 -0.605469 C 2.992188 -0.570312 3.011719 -0.527344 3.011719 -0.476562 C 3.011719 -0.425781 2.992188 -0.378906 2.953125 -0.332031 C 2.914062 -0.289062 2.855469 -0.246094 2.773438 -0.207031 C 2.59375 -0.117188 2.40625 -0.0507812 2.210938 -0.00390625 C 2.019531 0.0429688 1.828125 0.0664062 1.636719 0.0664062 C 1.226562 0.0664062 0.894531 -0.0507812 0.648438 -0.289062 C 0.402344 -0.527344 0.277344 -0.84375 0.277344 -1.234375 C 0.277344 -1.632812 0.40625 -1.957031 0.671875 -2.207031 C 0.933594 -2.453125 1.273438 -2.578125 1.695312 -2.578125 C 2.078125 -2.578125 2.394531 -2.460938 2.644531 -2.230469 C 2.894531 -2 3.023438 -1.71875 3.023438 -1.390625 C 3.023438 -1.289062 3 -1.21875 2.957031 -1.183594 C 2.914062 -1.152344 2.800781 -1.132812 2.613281 -1.132812 Z M 0.761719 -1.488281 L 2.527344 -1.488281 C 2.5 -1.703125 2.410156 -1.878906 2.257812 -2.007812 C 2.105469 -2.140625 1.917969 -2.207031 1.695312 -2.207031 C 1.453125 -2.207031 1.253906 -2.140625 1.085938 -2.015625 C 0.921875 -1.890625 0.816406 -1.714844 0.761719 -1.488281 Z "/>
</symbol>
</g>
</defs>
<g id="surface34">
<g style="fill:rgb(100%,100%,100%);fill-opacity:1;">
<use xlink:href="#glyph0-1" x="30" y="24.188477"/>
<use xlink:href="#glyph0-1" x="33" y="24.188477"/>
<use xlink:href="#glyph0-2" x="36" y="24.188477"/>
<use xlink:href="#glyph0-2" x="39" y="24.188477"/>
<use xlink:href="#glyph0-3" x="42" y="24.188477"/>
<use xlink:href="#glyph0-4" x="45" y="24.188477"/>
</g>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 7.5 KiB

View File

@ -1,54 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="1920pt" height="1080pt" viewBox="0 0 1920 1080" version="1.1">
<defs>
<g>
<symbol overflow="visible" id="glyph0-0">
<path style="stroke:none;" d="M 0.195312 0.6875 L 0.195312 -2.742188 L 2.136719 -2.742188 L 2.136719 0.6875 Z M 0.414062 0.472656 L 1.921875 0.472656 L 1.921875 -2.523438 L 0.414062 -2.523438 Z "/>
</symbol>
<symbol overflow="visible" id="glyph0-1">
<path style="stroke:none;" d="M 1.171875 -0.933594 L 1.578125 -2.125 C 1.597656 -2.167969 1.621094 -2.203125 1.652344 -2.222656 C 1.683594 -2.242188 1.726562 -2.253906 1.785156 -2.253906 L 2.097656 -2.253906 C 2.136719 -2.253906 2.167969 -2.242188 2.1875 -2.21875 C 2.210938 -2.195312 2.21875 -2.164062 2.21875 -2.125 C 2.21875 -2.074219 2.207031 -2.042969 2.179688 -2.023438 C 2.15625 -2.003906 2.109375 -1.996094 2.039062 -1.996094 L 2.007812 -1.996094 L 2.0625 -0.269531 L 2.105469 -0.269531 C 2.1875 -0.269531 2.242188 -0.257812 2.269531 -0.242188 C 2.296875 -0.222656 2.3125 -0.1875 2.3125 -0.136719 C 2.3125 -0.09375 2.300781 -0.0585938 2.277344 -0.0351562 C 2.253906 -0.0117188 2.222656 0 2.179688 0 L 1.644531 0 C 1.570312 0 1.519531 -0.0117188 1.496094 -0.03125 C 1.46875 -0.0507812 1.453125 -0.0859375 1.453125 -0.136719 C 1.453125 -0.1875 1.46875 -0.21875 1.503906 -0.238281 C 1.535156 -0.257812 1.59375 -0.269531 1.683594 -0.269531 L 1.765625 -0.269531 L 1.726562 -1.902344 L 1.351562 -0.808594 C 1.332031 -0.753906 1.308594 -0.71875 1.28125 -0.699219 C 1.253906 -0.679688 1.210938 -0.667969 1.15625 -0.667969 C 1.101562 -0.667969 1.0625 -0.679688 1.03125 -0.699219 C 1.003906 -0.71875 0.984375 -0.757812 0.964844 -0.808594 L 0.582031 -1.902344 L 0.550781 -0.269531 L 0.675781 -0.269531 C 0.75 -0.269531 0.804688 -0.257812 0.832031 -0.238281 C 0.863281 -0.21875 0.878906 -0.183594 0.878906 -0.136719 C 0.878906 -0.0859375 0.867188 -0.0507812 0.839844 -0.03125 C 0.8125 -0.0117188 0.761719 0 0.6875 0 L 0.15625 0 C 0.113281 0 0.078125 -0.0117188 0.0546875 -0.0351562 C 0.0351562 -0.0585938 0.0234375 -0.0898438 0.0234375 -0.136719 C 0.0234375 -0.1875 0.0351562 -0.222656 0.0664062 -0.242188 C 0.09375 -0.257812 0.148438 -0.269531 0.230469 -0.269531 L 0.273438 -0.269531 L 0.328125 -1.996094 L 0.296875 -1.996094 C 0.226562 -1.996094 0.179688 -2.003906 0.152344 -2.023438 C 0.125 -2.042969 0.113281 -2.074219 0.113281 -2.125 C 0.113281 -2.164062 0.121094 -2.195312 0.144531 -2.21875 C 0.164062 -2.242188 0.195312 -2.253906 0.238281 -2.253906 L 0.550781 -2.253906 C 0.609375 -2.253906 0.652344 -2.242188 0.683594 -2.222656 C 0.714844 -2.203125 0.738281 -2.167969 0.753906 -2.125 Z "/>
</symbol>
<symbol overflow="visible" id="glyph0-2">
<path style="stroke:none;" d="M 0.992188 -2.300781 C 0.992188 -2.4375 1.003906 -2.523438 1.027344 -2.558594 C 1.054688 -2.59375 1.105469 -2.613281 1.1875 -2.613281 C 1.265625 -2.613281 1.316406 -2.597656 1.34375 -2.570312 C 1.367188 -2.539062 1.378906 -2.46875 1.378906 -2.355469 C 1.378906 -2.246094 1.367188 -2.179688 1.34375 -2.15625 C 1.320312 -2.128906 1.269531 -2.117188 1.1875 -2.117188 C 1.105469 -2.117188 1.054688 -2.128906 1.027344 -2.152344 C 1.003906 -2.175781 0.992188 -2.226562 0.992188 -2.300781 Z M 1.34375 -0.269531 L 1.953125 -0.269531 C 2.003906 -0.269531 2.039062 -0.257812 2.0625 -0.238281 C 2.085938 -0.214844 2.097656 -0.183594 2.097656 -0.136719 C 2.097656 -0.0859375 2.085938 -0.0507812 2.0625 -0.03125 C 2.042969 -0.0117188 2 0 1.941406 0 L 0.46875 0 C 0.417969 0 0.378906 -0.0117188 0.351562 -0.0351562 C 0.328125 -0.0585938 0.316406 -0.0898438 0.316406 -0.136719 C 0.316406 -0.179688 0.328125 -0.214844 0.355469 -0.234375 C 0.382812 -0.257812 0.421875 -0.269531 0.476562 -0.269531 L 1.054688 -0.269531 L 1.054688 -1.484375 L 0.683594 -1.484375 C 0.632812 -1.484375 0.59375 -1.496094 0.566406 -1.519531 C 0.539062 -1.542969 0.523438 -1.578125 0.523438 -1.621094 C 0.523438 -1.664062 0.535156 -1.699219 0.5625 -1.722656 C 0.585938 -1.746094 0.625 -1.753906 0.675781 -1.753906 L 1.234375 -1.753906 C 1.265625 -1.753906 1.292969 -1.746094 1.3125 -1.734375 C 1.332031 -1.71875 1.34375 -1.699219 1.34375 -1.675781 Z "/>
</symbol>
<symbol overflow="visible" id="glyph0-3">
<path style="stroke:none;" d="M 0.460938 -0.269531 L 0.460938 -1.484375 L 0.421875 -1.484375 C 0.335938 -1.484375 0.277344 -1.496094 0.246094 -1.515625 C 0.214844 -1.535156 0.199219 -1.570312 0.199219 -1.621094 C 0.199219 -1.667969 0.210938 -1.703125 0.238281 -1.722656 C 0.265625 -1.746094 0.308594 -1.753906 0.367188 -1.753906 L 0.636719 -1.753906 C 0.671875 -1.753906 0.699219 -1.746094 0.71875 -1.734375 C 0.738281 -1.71875 0.746094 -1.699219 0.746094 -1.675781 L 0.746094 -1.546875 C 0.839844 -1.632812 0.929688 -1.699219 1.019531 -1.738281 C 1.109375 -1.78125 1.207031 -1.800781 1.304688 -1.800781 C 1.496094 -1.800781 1.644531 -1.742188 1.753906 -1.621094 C 1.863281 -1.503906 1.917969 -1.339844 1.917969 -1.128906 L 1.917969 -0.269531 L 2.007812 -0.269531 C 2.070312 -0.269531 2.117188 -0.257812 2.144531 -0.238281 C 2.171875 -0.214844 2.1875 -0.183594 2.1875 -0.136719 C 2.1875 -0.0859375 2.171875 -0.0507812 2.140625 -0.03125 C 2.113281 -0.0117188 2.058594 0 1.984375 0 L 1.5625 0 C 1.480469 0 1.429688 -0.0078125 1.40625 -0.0273438 C 1.382812 -0.046875 1.375 -0.0820312 1.375 -0.136719 C 1.375 -0.1875 1.386719 -0.21875 1.414062 -0.238281 C 1.441406 -0.257812 1.488281 -0.269531 1.5625 -0.269531 L 1.628906 -0.269531 L 1.628906 -1.058594 C 1.628906 -1.207031 1.597656 -1.320312 1.527344 -1.398438 C 1.460938 -1.476562 1.363281 -1.515625 1.238281 -1.515625 C 1.109375 -1.515625 0.992188 -1.46875 0.894531 -1.382812 C 0.796875 -1.296875 0.746094 -1.1875 0.746094 -1.058594 L 0.746094 -0.269531 L 0.8125 -0.269531 C 0.890625 -0.269531 0.941406 -0.257812 0.964844 -0.238281 C 0.992188 -0.21875 1.007812 -0.1875 1.007812 -0.136719 C 1.007812 -0.0820312 0.996094 -0.046875 0.972656 -0.0273438 C 0.949219 -0.0078125 0.894531 0 0.804688 0 L 0.355469 0 C 0.304688 0 0.265625 -0.0117188 0.242188 -0.0351562 C 0.214844 -0.0546875 0.203125 -0.0898438 0.203125 -0.136719 C 0.203125 -0.1875 0.214844 -0.222656 0.246094 -0.242188 C 0.277344 -0.257812 0.332031 -0.269531 0.417969 -0.269531 Z "/>
</symbol>
<symbol overflow="visible" id="glyph0-4">
<g>
</g>
</symbol>
<symbol overflow="visible" id="glyph0-5">
<path style="stroke:none;" d="M 0.847656 -1.980469 L 0.847656 -1.097656 L 1.203125 -1.097656 C 1.402344 -1.097656 1.550781 -1.132812 1.648438 -1.207031 C 1.746094 -1.28125 1.796875 -1.390625 1.796875 -1.539062 C 1.796875 -1.683594 1.746094 -1.796875 1.648438 -1.867188 C 1.546875 -1.941406 1.398438 -1.980469 1.203125 -1.980469 Z M 1.242188 -0.269531 C 1.304688 -0.269531 1.351562 -0.257812 1.378906 -0.238281 C 1.40625 -0.214844 1.421875 -0.183594 1.421875 -0.136719 C 1.421875 -0.0859375 1.40625 -0.0507812 1.378906 -0.03125 C 1.355469 -0.0117188 1.304688 0 1.230469 0 L 0.300781 0 C 0.257812 0 0.222656 -0.0117188 0.203125 -0.0351562 C 0.179688 -0.0585938 0.167969 -0.09375 0.167969 -0.136719 C 0.167969 -0.179688 0.179688 -0.214844 0.199219 -0.234375 C 0.222656 -0.257812 0.257812 -0.269531 0.304688 -0.269531 L 0.550781 -0.269531 L 0.550781 -1.980469 L 0.414062 -1.980469 C 0.304688 -1.980469 0.234375 -1.988281 0.207031 -2.007812 C 0.179688 -2.027344 0.167969 -2.0625 0.167969 -2.117188 C 0.167969 -2.160156 0.179688 -2.195312 0.203125 -2.21875 C 0.226562 -2.242188 0.257812 -2.253906 0.300781 -2.253906 L 1.179688 -2.253906 C 1.488281 -2.253906 1.722656 -2.191406 1.878906 -2.074219 C 2.039062 -1.953125 2.121094 -1.78125 2.121094 -1.546875 C 2.121094 -1.316406 2.039062 -1.140625 1.882812 -1.023438 C 1.722656 -0.90625 1.488281 -0.847656 1.179688 -0.847656 L 0.847656 -0.847656 L 0.847656 -0.269531 Z "/>
</symbol>
<symbol overflow="visible" id="glyph0-6">
<path style="stroke:none;" d="M 1.039062 -2.210938 L 0.714844 -2.210938 C 0.59375 -2.210938 0.515625 -2.222656 0.484375 -2.242188 C 0.453125 -2.261719 0.4375 -2.296875 0.4375 -2.347656 C 0.4375 -2.394531 0.453125 -2.429688 0.476562 -2.453125 C 0.503906 -2.476562 0.542969 -2.484375 0.589844 -2.484375 L 1.21875 -2.484375 C 1.253906 -2.484375 1.277344 -2.480469 1.296875 -2.464844 C 1.316406 -2.449219 1.324219 -2.433594 1.324219 -2.410156 L 1.324219 -0.269531 L 1.921875 -0.269531 C 1.96875 -0.269531 2.003906 -0.257812 2.027344 -0.238281 C 2.050781 -0.214844 2.0625 -0.183594 2.0625 -0.136719 C 2.0625 -0.0859375 2.050781 -0.0507812 2.027344 -0.03125 C 2.007812 -0.0117188 1.964844 0 1.90625 0 L 0.503906 0 C 0.457031 0 0.417969 -0.0117188 0.390625 -0.0351562 C 0.367188 -0.0585938 0.351562 -0.0898438 0.351562 -0.136719 C 0.351562 -0.179688 0.367188 -0.214844 0.394531 -0.234375 C 0.421875 -0.257812 0.460938 -0.269531 0.511719 -0.269531 L 1.039062 -0.269531 Z "/>
</symbol>
<symbol overflow="visible" id="glyph0-7">
<path style="stroke:none;" d="M 0.691406 -0.699219 C 0.691406 -0.539062 0.726562 -0.425781 0.792969 -0.351562 C 0.859375 -0.277344 0.96875 -0.242188 1.113281 -0.242188 C 1.25 -0.242188 1.367188 -0.285156 1.46875 -0.371094 C 1.566406 -0.460938 1.613281 -0.570312 1.613281 -0.699219 L 1.613281 -1.484375 L 1.355469 -1.484375 C 1.304688 -1.484375 1.269531 -1.496094 1.246094 -1.515625 C 1.222656 -1.539062 1.214844 -1.570312 1.214844 -1.613281 C 1.214844 -1.664062 1.226562 -1.699219 1.25 -1.722656 C 1.273438 -1.746094 1.3125 -1.753906 1.367188 -1.753906 L 1.769531 -1.753906 C 1.816406 -1.753906 1.851562 -1.746094 1.871094 -1.722656 C 1.890625 -1.703125 1.902344 -1.652344 1.902344 -1.570312 L 1.902344 -0.269531 L 1.988281 -0.269531 C 2.050781 -0.269531 2.09375 -0.257812 2.121094 -0.238281 C 2.148438 -0.21875 2.164062 -0.183594 2.164062 -0.136719 C 2.164062 -0.0898438 2.148438 -0.0585938 2.125 -0.0351562 C 2.097656 -0.0117188 2.0625 0 2.011719 0 L 1.722656 0 C 1.6875 0 1.660156 -0.0078125 1.644531 -0.0195312 C 1.625 -0.0351562 1.613281 -0.0546875 1.613281 -0.078125 L 1.613281 -0.207031 C 1.492188 -0.113281 1.386719 -0.0507812 1.300781 -0.015625 C 1.214844 0.0195312 1.125 0.0390625 1.027344 0.0390625 C 0.820312 0.0390625 0.660156 -0.015625 0.558594 -0.128906 C 0.453125 -0.238281 0.402344 -0.40625 0.402344 -0.628906 L 0.402344 -1.484375 L 0.359375 -1.484375 C 0.273438 -1.484375 0.214844 -1.496094 0.183594 -1.515625 C 0.152344 -1.535156 0.136719 -1.570312 0.136719 -1.621094 C 0.136719 -1.664062 0.148438 -1.699219 0.171875 -1.722656 C 0.199219 -1.746094 0.238281 -1.753906 0.289062 -1.753906 L 0.574219 -1.753906 C 0.621094 -1.753906 0.652344 -1.746094 0.667969 -1.726562 C 0.683594 -1.710938 0.691406 -1.671875 0.691406 -1.609375 Z "/>
</symbol>
<symbol overflow="visible" id="glyph0-8">
<path style="stroke:none;" d="M 1.113281 -1.472656 C 0.945312 -1.472656 0.8125 -1.421875 0.707031 -1.320312 C 0.601562 -1.21875 0.550781 -1.085938 0.550781 -0.921875 C 0.550781 -0.761719 0.601562 -0.628906 0.707031 -0.523438 C 0.8125 -0.421875 0.945312 -0.371094 1.113281 -0.371094 C 1.277344 -0.371094 1.414062 -0.421875 1.519531 -0.523438 C 1.625 -0.628906 1.675781 -0.761719 1.675781 -0.921875 C 1.675781 -1.082031 1.625 -1.214844 1.519531 -1.316406 C 1.414062 -1.421875 1.277344 -1.472656 1.113281 -1.472656 Z M 1.9375 -0.101562 C 1.9375 0.078125 1.929688 0.203125 1.910156 0.277344 C 1.894531 0.351562 1.863281 0.414062 1.820312 0.472656 C 1.75 0.566406 1.648438 0.636719 1.519531 0.683594 C 1.394531 0.734375 1.242188 0.757812 1.070312 0.757812 C 0.925781 0.757812 0.820312 0.742188 0.753906 0.714844 C 0.6875 0.6875 0.652344 0.644531 0.652344 0.582031 C 0.652344 0.542969 0.667969 0.507812 0.703125 0.480469 C 0.734375 0.449219 0.773438 0.433594 0.816406 0.433594 C 0.851562 0.433594 0.902344 0.441406 0.972656 0.449219 C 1.042969 0.457031 1.097656 0.464844 1.136719 0.464844 C 1.324219 0.464844 1.457031 0.421875 1.535156 0.335938 C 1.613281 0.25 1.652344 0.101562 1.652344 -0.109375 L 1.652344 -0.339844 C 1.574219 -0.25 1.488281 -0.183594 1.394531 -0.140625 C 1.300781 -0.0976562 1.195312 -0.078125 1.074219 -0.078125 C 0.835938 -0.078125 0.640625 -0.15625 0.484375 -0.3125 C 0.328125 -0.472656 0.253906 -0.671875 0.253906 -0.914062 C 0.253906 -1.15625 0.332031 -1.359375 0.492188 -1.519531 C 0.652344 -1.679688 0.847656 -1.757812 1.085938 -1.757812 C 1.183594 -1.757812 1.277344 -1.742188 1.371094 -1.703125 C 1.464844 -1.667969 1.558594 -1.613281 1.652344 -1.539062 L 1.652344 -1.675781 C 1.652344 -1.703125 1.660156 -1.722656 1.679688 -1.734375 C 1.695312 -1.75 1.722656 -1.753906 1.757812 -1.753906 L 2.046875 -1.753906 C 2.097656 -1.753906 2.132812 -1.742188 2.160156 -1.722656 C 2.183594 -1.699219 2.199219 -1.667969 2.199219 -1.621094 C 2.199219 -1.570312 2.179688 -1.535156 2.148438 -1.515625 C 2.117188 -1.496094 2.058594 -1.484375 1.972656 -1.484375 L 1.9375 -1.484375 Z "/>
</symbol>
<symbol overflow="visible" id="glyph0-9">
<path style="stroke:none;" d="M 0.339844 -0.136719 L 0.339844 -0.476562 C 0.339844 -0.53125 0.347656 -0.570312 0.371094 -0.59375 C 0.390625 -0.617188 0.425781 -0.628906 0.472656 -0.628906 C 0.523438 -0.628906 0.5625 -0.59375 0.59375 -0.523438 C 0.613281 -0.480469 0.632812 -0.449219 0.648438 -0.425781 C 0.703125 -0.359375 0.78125 -0.304688 0.886719 -0.261719 C 0.988281 -0.222656 1.101562 -0.203125 1.230469 -0.203125 C 1.363281 -0.203125 1.46875 -0.230469 1.550781 -0.28125 C 1.632812 -0.335938 1.671875 -0.410156 1.671875 -0.496094 C 1.671875 -0.585938 1.640625 -0.652344 1.574219 -0.6875 C 1.511719 -0.726562 1.398438 -0.746094 1.238281 -0.746094 L 1.136719 -0.746094 C 0.878906 -0.746094 0.679688 -0.792969 0.546875 -0.882812 C 0.410156 -0.972656 0.34375 -1.101562 0.34375 -1.273438 C 0.34375 -1.441406 0.40625 -1.570312 0.539062 -1.660156 C 0.671875 -1.753906 0.859375 -1.800781 1.097656 -1.800781 C 1.195312 -1.800781 1.292969 -1.785156 1.394531 -1.757812 C 1.496094 -1.730469 1.550781 -1.71875 1.554688 -1.71875 C 1.570312 -1.71875 1.597656 -1.730469 1.636719 -1.753906 C 1.675781 -1.78125 1.714844 -1.792969 1.75 -1.792969 C 1.792969 -1.792969 1.824219 -1.777344 1.847656 -1.746094 C 1.867188 -1.714844 1.878906 -1.667969 1.878906 -1.601562 L 1.878906 -1.378906 C 1.878906 -1.3125 1.867188 -1.265625 1.847656 -1.234375 C 1.828125 -1.207031 1.796875 -1.191406 1.75 -1.191406 C 1.710938 -1.191406 1.667969 -1.222656 1.609375 -1.289062 C 1.570312 -1.332031 1.539062 -1.367188 1.515625 -1.386719 C 1.445312 -1.449219 1.375 -1.496094 1.300781 -1.523438 C 1.222656 -1.550781 1.132812 -1.5625 1.03125 -1.5625 C 0.914062 -1.5625 0.816406 -1.535156 0.742188 -1.484375 C 0.671875 -1.433594 0.632812 -1.363281 0.632812 -1.285156 C 0.632812 -1.203125 0.671875 -1.148438 0.746094 -1.113281 C 0.820312 -1.078125 0.980469 -1.058594 1.230469 -1.054688 C 1.492188 -1.046875 1.683594 -1 1.804688 -0.917969 C 1.925781 -0.832031 1.988281 -0.699219 1.988281 -0.519531 C 1.988281 -0.347656 1.921875 -0.210938 1.789062 -0.109375 C 1.652344 -0.0078125 1.472656 0.0429688 1.242188 0.0429688 C 1.171875 0.0429688 1.089844 0.0351562 1.003906 0.0234375 C 0.914062 0.0117188 0.804688 -0.0117188 0.667969 -0.0429688 C 0.625 -0.015625 0.585938 0.0078125 0.554688 0.0234375 C 0.523438 0.0351562 0.496094 0.0429688 0.476562 0.0429688 C 0.429688 0.0429688 0.398438 0.0273438 0.375 -0.00390625 C 0.351562 -0.0351562 0.339844 -0.078125 0.339844 -0.136719 Z "/>
</symbol>
</g>
</defs>
<g id="surface39">
<g style="fill:rgb(100%,100%,100%);fill-opacity:1;">
<use xlink:href="#glyph0-1" x="30" y="22.932617"/>
<use xlink:href="#glyph0-2" x="32" y="22.932617"/>
<use xlink:href="#glyph0-3" x="34" y="22.932617"/>
<use xlink:href="#glyph0-2" x="36" y="22.932617"/>
<use xlink:href="#glyph0-4" x="38" y="22.932617"/>
<use xlink:href="#glyph0-5" x="40" y="22.932617"/>
<use xlink:href="#glyph0-6" x="42" y="22.932617"/>
<use xlink:href="#glyph0-7" x="44" y="22.932617"/>
<use xlink:href="#glyph0-8" x="46" y="22.932617"/>
<use xlink:href="#glyph0-2" x="48" y="22.932617"/>
<use xlink:href="#glyph0-3" x="50" y="22.932617"/>
<use xlink:href="#glyph0-9" x="52" y="22.932617"/>
</g>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 16 KiB

View File

@ -1,52 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="1920pt" height="1080pt" viewBox="0 0 1920 1080" version="1.1">
<defs>
<g>
<symbol overflow="visible" id="glyph0-0">
<path style="stroke:none;" d="M 0.195312 0.6875 L 0.195312 -2.742188 L 2.136719 -2.742188 L 2.136719 0.6875 Z M 0.414062 0.472656 L 1.921875 0.472656 L 1.921875 -2.523438 L 0.414062 -2.523438 Z "/>
</symbol>
<symbol overflow="visible" id="glyph0-1">
<path style="stroke:none;" d="M 0.648438 -0.269531 L 0.886719 -0.269531 C 0.957031 -0.269531 1.003906 -0.257812 1.03125 -0.238281 C 1.0625 -0.21875 1.078125 -0.183594 1.078125 -0.136719 C 1.078125 -0.0859375 1.0625 -0.0507812 1.035156 -0.03125 C 1.007812 -0.0117188 0.949219 0 0.855469 0 L 0.292969 0 C 0.246094 0 0.210938 -0.0117188 0.191406 -0.0351562 C 0.167969 -0.0585938 0.15625 -0.0898438 0.15625 -0.136719 C 0.15625 -0.1875 0.167969 -0.222656 0.195312 -0.242188 C 0.222656 -0.257812 0.269531 -0.269531 0.34375 -0.269531 L 0.382812 -0.269531 L 0.382812 -1.980469 L 0.335938 -1.980469 C 0.226562 -1.980469 0.15625 -1.988281 0.117188 -2.007812 C 0.0820312 -2.027344 0.0625 -2.066406 0.0625 -2.117188 C 0.0625 -2.164062 0.078125 -2.195312 0.109375 -2.21875 C 0.144531 -2.238281 0.195312 -2.25 0.269531 -2.25 C 0.269531 -2.25 0.28125 -2.25 0.304688 -2.25 C 0.332031 -2.25 0.355469 -2.253906 0.382812 -2.253906 L 0.558594 -2.253906 C 0.617188 -2.253906 0.660156 -2.246094 0.683594 -2.234375 C 0.707031 -2.21875 0.734375 -2.183594 0.765625 -2.132812 L 1.722656 -0.480469 L 1.722656 -1.980469 L 1.515625 -1.980469 C 1.445312 -1.980469 1.394531 -1.988281 1.363281 -2.011719 C 1.332031 -2.035156 1.316406 -2.070312 1.316406 -2.117188 C 1.316406 -2.167969 1.332031 -2.203125 1.359375 -2.222656 C 1.386719 -2.242188 1.441406 -2.253906 1.523438 -2.253906 L 2.070312 -2.253906 C 2.117188 -2.253906 2.148438 -2.242188 2.171875 -2.21875 C 2.195312 -2.195312 2.203125 -2.160156 2.203125 -2.117188 C 2.203125 -2.066406 2.191406 -2.03125 2.164062 -2.007812 C 2.136719 -1.988281 2.085938 -1.980469 2.015625 -1.980469 L 1.992188 -1.980469 L 1.992188 -0.0664062 C 1.992188 -0.03125 1.984375 -0.00390625 1.964844 0.0078125 C 1.949219 0.0234375 1.910156 0.03125 1.847656 0.03125 C 1.785156 0.03125 1.746094 0.0273438 1.734375 0.0195312 C 1.71875 0.0117188 1.695312 -0.0195312 1.660156 -0.078125 L 0.648438 -1.820312 Z "/>
</symbol>
<symbol overflow="visible" id="glyph0-2">
<path style="stroke:none;" d="M 0.523438 -0.792969 C 0.535156 -0.609375 0.597656 -0.46875 0.710938 -0.371094 C 0.824219 -0.273438 0.976562 -0.222656 1.171875 -0.222656 C 1.320312 -0.222656 1.484375 -0.261719 1.65625 -0.339844 C 1.832031 -0.417969 1.9375 -0.460938 1.976562 -0.460938 C 2.011719 -0.460938 2.042969 -0.449219 2.070312 -0.421875 C 2.09375 -0.398438 2.109375 -0.371094 2.109375 -0.335938 C 2.109375 -0.296875 2.09375 -0.265625 2.066406 -0.234375 C 2.042969 -0.203125 2 -0.171875 1.941406 -0.144531 C 1.816406 -0.0820312 1.683594 -0.0351562 1.550781 0 C 1.414062 0.03125 1.28125 0.046875 1.148438 0.046875 C 0.859375 0.046875 0.628906 -0.0351562 0.453125 -0.203125 C 0.28125 -0.367188 0.195312 -0.589844 0.195312 -0.863281 C 0.195312 -1.144531 0.285156 -1.371094 0.46875 -1.542969 C 0.652344 -1.71875 0.890625 -1.804688 1.1875 -1.804688 C 1.453125 -1.804688 1.675781 -1.722656 1.851562 -1.5625 C 2.027344 -1.398438 2.117188 -1.203125 2.117188 -0.972656 C 2.117188 -0.902344 2.101562 -0.855469 2.070312 -0.828125 C 2.042969 -0.804688 1.960938 -0.792969 1.828125 -0.792969 Z M 0.535156 -1.042969 L 1.769531 -1.042969 C 1.75 -1.195312 1.6875 -1.316406 1.582031 -1.40625 C 1.472656 -1.5 1.34375 -1.542969 1.1875 -1.542969 C 1.019531 -1.542969 0.875 -1.5 0.761719 -1.410156 C 0.644531 -1.320312 0.570312 -1.199219 0.535156 -1.042969 Z "/>
</symbol>
<symbol overflow="visible" id="glyph0-3">
<path style="stroke:none;" d="M 1.15625 -0.964844 L 0.910156 -0.0625 C 0.898438 -0.015625 0.878906 0.0195312 0.851562 0.0390625 C 0.828125 0.0585938 0.789062 0.0664062 0.738281 0.0664062 C 0.691406 0.0664062 0.65625 0.0546875 0.632812 0.03125 C 0.605469 0.0078125 0.585938 -0.0390625 0.5625 -0.101562 L 0.128906 -1.484375 L 0.113281 -1.484375 C 0.0585938 -1.484375 0.0195312 -1.496094 -0.00390625 -1.515625 C -0.0273438 -1.539062 -0.0390625 -1.574219 -0.0390625 -1.621094 C -0.0390625 -1.664062 -0.0273438 -1.699219 0 -1.722656 C 0.0234375 -1.746094 0.0585938 -1.753906 0.109375 -1.753906 L 0.617188 -1.753906 C 0.683594 -1.753906 0.730469 -1.746094 0.753906 -1.726562 C 0.777344 -1.707031 0.789062 -1.671875 0.789062 -1.621094 C 0.789062 -1.589844 0.78125 -1.566406 0.769531 -1.542969 C 0.753906 -1.519531 0.738281 -1.507812 0.714844 -1.503906 C 0.695312 -1.496094 0.667969 -1.492188 0.640625 -1.488281 C 0.613281 -1.484375 0.578125 -1.484375 0.539062 -1.484375 L 0.425781 -1.484375 L 0.753906 -0.34375 L 1 -1.171875 C 1.011719 -1.222656 1.03125 -1.253906 1.058594 -1.273438 C 1.082031 -1.292969 1.121094 -1.304688 1.171875 -1.304688 C 1.214844 -1.304688 1.25 -1.289062 1.277344 -1.265625 C 1.304688 -1.242188 1.328125 -1.199219 1.347656 -1.136719 L 1.582031 -0.34375 L 1.898438 -1.484375 L 1.769531 -1.484375 C 1.683594 -1.484375 1.625 -1.496094 1.59375 -1.515625 C 1.5625 -1.535156 1.546875 -1.570312 1.546875 -1.621094 C 1.546875 -1.671875 1.558594 -1.707031 1.582031 -1.726562 C 1.605469 -1.746094 1.648438 -1.753906 1.714844 -1.753906 L 2.222656 -1.753906 C 2.261719 -1.753906 2.292969 -1.742188 2.3125 -1.722656 C 2.332031 -1.699219 2.339844 -1.664062 2.339844 -1.621094 C 2.339844 -1.574219 2.332031 -1.539062 2.308594 -1.519531 C 2.285156 -1.5 2.242188 -1.488281 2.179688 -1.484375 L 1.75 -0.0625 C 1.734375 -0.015625 1.714844 0.0195312 1.6875 0.0390625 C 1.664062 0.0585938 1.628906 0.0664062 1.578125 0.0664062 C 1.53125 0.0664062 1.496094 0.0546875 1.46875 0.03125 C 1.441406 0.00390625 1.421875 -0.0390625 1.402344 -0.101562 Z "/>
</symbol>
<symbol overflow="visible" id="glyph0-4">
<g>
</g>
</symbol>
<symbol overflow="visible" id="glyph0-5">
<path style="stroke:none;" d="M 1.738281 -1.640625 L 1.738281 -1.648438 C 1.738281 -1.691406 1.75 -1.722656 1.773438 -1.742188 C 1.796875 -1.761719 1.835938 -1.769531 1.886719 -1.769531 C 1.9375 -1.769531 1.972656 -1.753906 1.992188 -1.722656 C 2.011719 -1.695312 2.023438 -1.632812 2.023438 -1.535156 L 2.023438 -1.183594 C 2.023438 -1.136719 2.011719 -1.101562 1.988281 -1.078125 C 1.964844 -1.054688 1.925781 -1.042969 1.878906 -1.042969 C 1.84375 -1.042969 1.816406 -1.050781 1.789062 -1.070312 C 1.765625 -1.089844 1.734375 -1.132812 1.699219 -1.195312 C 1.640625 -1.296875 1.566406 -1.375 1.480469 -1.425781 C 1.390625 -1.480469 1.292969 -1.507812 1.179688 -1.507812 C 0.980469 -1.507812 0.820312 -1.449219 0.699219 -1.332031 C 0.574219 -1.214844 0.511719 -1.0625 0.511719 -0.878906 C 0.511719 -0.691406 0.570312 -0.535156 0.691406 -0.417969 C 0.808594 -0.296875 0.960938 -0.238281 1.148438 -0.238281 C 1.230469 -0.238281 1.3125 -0.25 1.390625 -0.273438 C 1.464844 -0.296875 1.539062 -0.332031 1.605469 -0.378906 C 1.628906 -0.394531 1.664062 -0.417969 1.703125 -0.449219 C 1.785156 -0.515625 1.851562 -0.550781 1.898438 -0.550781 C 1.9375 -0.550781 1.96875 -0.535156 1.992188 -0.511719 C 2.019531 -0.488281 2.03125 -0.457031 2.03125 -0.414062 C 2.03125 -0.316406 1.9375 -0.214844 1.746094 -0.109375 C 1.558594 -0.00390625 1.355469 0.046875 1.144531 0.046875 C 0.867188 0.046875 0.640625 -0.0390625 0.457031 -0.214844 C 0.273438 -0.390625 0.183594 -0.613281 0.183594 -0.875 C 0.183594 -1.140625 0.273438 -1.359375 0.457031 -1.535156 C 0.636719 -1.710938 0.867188 -1.800781 1.140625 -1.800781 C 1.234375 -1.800781 1.332031 -1.789062 1.429688 -1.761719 C 1.527344 -1.734375 1.628906 -1.695312 1.738281 -1.640625 Z "/>
</symbol>
<symbol overflow="visible" id="glyph0-6">
<path style="stroke:none;" d="M 1.167969 -0.21875 C 1.363281 -0.21875 1.519531 -0.28125 1.644531 -0.402344 C 1.769531 -0.527344 1.832031 -0.683594 1.832031 -0.875 C 1.832031 -1.066406 1.769531 -1.226562 1.644531 -1.347656 C 1.519531 -1.472656 1.359375 -1.535156 1.167969 -1.535156 C 0.972656 -1.535156 0.8125 -1.472656 0.6875 -1.347656 C 0.5625 -1.222656 0.5 -1.066406 0.5 -0.875 C 0.5 -0.683594 0.5625 -0.527344 0.6875 -0.402344 C 0.8125 -0.28125 0.972656 -0.21875 1.167969 -0.21875 Z M 2.164062 -0.875 C 2.164062 -0.605469 2.070312 -0.382812 1.886719 -0.210938 C 1.703125 -0.0390625 1.460938 0.046875 1.167969 0.046875 C 0.871094 0.046875 0.632812 -0.0390625 0.449219 -0.210938 C 0.265625 -0.382812 0.171875 -0.605469 0.171875 -0.875 C 0.171875 -1.144531 0.261719 -1.367188 0.449219 -1.539062 C 0.632812 -1.710938 0.871094 -1.796875 1.167969 -1.796875 C 1.460938 -1.796875 1.699219 -1.710938 1.886719 -1.539062 C 2.070312 -1.367188 2.164062 -1.144531 2.164062 -0.875 Z "/>
</symbol>
<symbol overflow="visible" id="glyph0-7">
<path style="stroke:none;" d="M 1.871094 -1.058594 C 1.871094 -1.238281 1.855469 -1.355469 1.824219 -1.417969 C 1.789062 -1.480469 1.734375 -1.515625 1.65625 -1.515625 C 1.5625 -1.515625 1.488281 -1.472656 1.433594 -1.390625 C 1.378906 -1.3125 1.351562 -1.199219 1.351562 -1.058594 L 1.351562 -0.269531 L 1.382812 -0.269531 C 1.460938 -0.269531 1.511719 -0.257812 1.539062 -0.242188 C 1.566406 -0.222656 1.578125 -0.1875 1.578125 -0.136719 C 1.578125 -0.0898438 1.566406 -0.0585938 1.546875 -0.0351562 C 1.523438 -0.0117188 1.492188 0 1.445312 0 L 1.207031 0 C 1.152344 0 1.113281 -0.0117188 1.09375 -0.0390625 C 1.074219 -0.0625 1.066406 -0.117188 1.066406 -0.203125 L 1.066406 -1.207031 C 1.066406 -1.300781 1.042969 -1.375 1 -1.429688 C 0.957031 -1.484375 0.898438 -1.515625 0.824219 -1.515625 C 0.765625 -1.515625 0.714844 -1.496094 0.667969 -1.464844 C 0.621094 -1.429688 0.578125 -1.378906 0.546875 -1.3125 L 0.546875 -0.269531 L 0.617188 -0.269531 C 0.691406 -0.269531 0.742188 -0.257812 0.769531 -0.238281 C 0.796875 -0.21875 0.808594 -0.1875 0.808594 -0.136719 C 0.808594 -0.0859375 0.796875 -0.0507812 0.777344 -0.03125 C 0.753906 -0.0117188 0.714844 0 0.652344 0 L 0.148438 0 C 0.0976562 0 0.0625 -0.0117188 0.0390625 -0.0351562 C 0.015625 -0.0546875 0.00390625 -0.0898438 0.00390625 -0.136719 C 0.00390625 -0.1875 0.0195312 -0.222656 0.046875 -0.242188 C 0.078125 -0.257812 0.136719 -0.269531 0.222656 -0.269531 L 0.261719 -0.269531 L 0.261719 -1.484375 L 0.226562 -1.484375 C 0.136719 -1.484375 0.078125 -1.496094 0.0429688 -1.515625 C 0.0117188 -1.535156 -0.00390625 -1.570312 -0.00390625 -1.621094 C -0.00390625 -1.664062 0.0078125 -1.699219 0.0351562 -1.722656 C 0.0585938 -1.746094 0.0976562 -1.753906 0.148438 -1.753906 L 0.4375 -1.753906 C 0.480469 -1.753906 0.507812 -1.746094 0.519531 -1.734375 C 0.535156 -1.71875 0.542969 -1.6875 0.546875 -1.640625 C 0.597656 -1.695312 0.652344 -1.738281 0.710938 -1.765625 C 0.769531 -1.792969 0.839844 -1.804688 0.914062 -1.804688 C 1.003906 -1.804688 1.074219 -1.785156 1.132812 -1.746094 C 1.191406 -1.707031 1.234375 -1.648438 1.261719 -1.570312 C 1.316406 -1.648438 1.375 -1.710938 1.445312 -1.746094 C 1.515625 -1.785156 1.59375 -1.804688 1.683594 -1.804688 C 1.847656 -1.804688 1.96875 -1.75 2.042969 -1.644531 C 2.117188 -1.539062 2.15625 -1.367188 2.15625 -1.128906 L 2.15625 -0.269531 L 2.1875 -0.269531 C 2.265625 -0.269531 2.316406 -0.257812 2.34375 -0.238281 C 2.371094 -0.21875 2.382812 -0.1875 2.382812 -0.136719 C 2.382812 -0.0898438 2.371094 -0.0585938 2.347656 -0.0351562 C 2.324219 -0.0117188 2.292969 0 2.25 0 L 2.019531 0 C 1.96875 0 1.929688 -0.015625 1.90625 -0.046875 C 1.882812 -0.078125 1.871094 -0.125 1.871094 -0.191406 Z "/>
</symbol>
<symbol overflow="visible" id="glyph0-8">
<path style="stroke:none;" d="M 0.992188 -2.300781 C 0.992188 -2.4375 1.003906 -2.523438 1.027344 -2.558594 C 1.054688 -2.59375 1.105469 -2.613281 1.1875 -2.613281 C 1.265625 -2.613281 1.316406 -2.597656 1.34375 -2.570312 C 1.367188 -2.539062 1.378906 -2.46875 1.378906 -2.355469 C 1.378906 -2.246094 1.367188 -2.179688 1.34375 -2.15625 C 1.320312 -2.128906 1.269531 -2.117188 1.1875 -2.117188 C 1.105469 -2.117188 1.054688 -2.128906 1.027344 -2.152344 C 1.003906 -2.175781 0.992188 -2.226562 0.992188 -2.300781 Z M 1.34375 -0.269531 L 1.953125 -0.269531 C 2.003906 -0.269531 2.039062 -0.257812 2.0625 -0.238281 C 2.085938 -0.214844 2.097656 -0.183594 2.097656 -0.136719 C 2.097656 -0.0859375 2.085938 -0.0507812 2.0625 -0.03125 C 2.042969 -0.0117188 2 0 1.941406 0 L 0.46875 0 C 0.417969 0 0.378906 -0.0117188 0.351562 -0.0351562 C 0.328125 -0.0585938 0.316406 -0.0898438 0.316406 -0.136719 C 0.316406 -0.179688 0.328125 -0.214844 0.355469 -0.234375 C 0.382812 -0.257812 0.421875 -0.269531 0.476562 -0.269531 L 1.054688 -0.269531 L 1.054688 -1.484375 L 0.683594 -1.484375 C 0.632812 -1.484375 0.59375 -1.496094 0.566406 -1.519531 C 0.539062 -1.542969 0.523438 -1.578125 0.523438 -1.621094 C 0.523438 -1.664062 0.535156 -1.699219 0.5625 -1.722656 C 0.585938 -1.746094 0.625 -1.753906 0.675781 -1.753906 L 1.234375 -1.753906 C 1.265625 -1.753906 1.292969 -1.746094 1.3125 -1.734375 C 1.332031 -1.71875 1.34375 -1.699219 1.34375 -1.675781 Z "/>
</symbol>
<symbol overflow="visible" id="glyph0-9">
<path style="stroke:none;" d="M 1.683594 -1.648438 C 1.746094 -1.648438 1.792969 -1.636719 1.820312 -1.617188 C 1.847656 -1.59375 1.863281 -1.558594 1.863281 -1.515625 C 1.863281 -1.46875 1.851562 -1.4375 1.824219 -1.414062 C 1.796875 -1.390625 1.757812 -1.378906 1.703125 -1.378906 L 0.933594 -1.378906 L 0.933594 -0.746094 C 0.933594 -0.539062 0.960938 -0.402344 1.015625 -0.335938 C 1.070312 -0.269531 1.160156 -0.238281 1.292969 -0.238281 C 1.40625 -0.238281 1.542969 -0.269531 1.707031 -0.339844 C 1.867188 -0.40625 1.964844 -0.4375 2.003906 -0.4375 C 2.039062 -0.4375 2.070312 -0.425781 2.09375 -0.402344 C 2.117188 -0.375 2.132812 -0.34375 2.132812 -0.308594 C 2.132812 -0.265625 2.117188 -0.230469 2.085938 -0.199219 C 2.054688 -0.167969 2 -0.136719 1.925781 -0.109375 C 1.800781 -0.0585938 1.691406 -0.0234375 1.589844 0 C 1.492188 0.0234375 1.398438 0.0351562 1.308594 0.0351562 C 1.160156 0.0351562 1.039062 0.0117188 0.9375 -0.0351562 C 0.835938 -0.0820312 0.761719 -0.15625 0.710938 -0.25 C 0.6875 -0.292969 0.667969 -0.34375 0.65625 -0.40625 C 0.648438 -0.46875 0.640625 -0.5625 0.640625 -0.6875 L 0.640625 -1.378906 L 0.320312 -1.378906 C 0.265625 -1.378906 0.226562 -1.390625 0.203125 -1.410156 C 0.179688 -1.433594 0.167969 -1.46875 0.167969 -1.515625 C 0.167969 -1.566406 0.183594 -1.601562 0.214844 -1.621094 C 0.25 -1.640625 0.320312 -1.648438 0.425781 -1.648438 L 0.640625 -1.648438 L 0.640625 -2.136719 C 0.640625 -2.191406 0.652344 -2.234375 0.675781 -2.257812 C 0.699219 -2.285156 0.738281 -2.296875 0.785156 -2.296875 C 0.839844 -2.296875 0.878906 -2.28125 0.902344 -2.25 C 0.921875 -2.21875 0.933594 -2.148438 0.933594 -2.035156 L 0.933594 -1.648438 Z "/>
</symbol>
</g>
</defs>
<g id="surface61">
<g style="fill:rgb(100%,100%,100%);fill-opacity:1;">
<use xlink:href="#glyph0-1" x="30" y="22.932617"/>
<use xlink:href="#glyph0-2" x="32" y="22.932617"/>
<use xlink:href="#glyph0-3" x="34" y="22.932617"/>
<use xlink:href="#glyph0-4" x="36" y="22.932617"/>
<use xlink:href="#glyph0-5" x="38" y="22.932617"/>
<use xlink:href="#glyph0-6" x="40" y="22.932617"/>
<use xlink:href="#glyph0-7" x="42" y="22.932617"/>
<use xlink:href="#glyph0-7" x="44" y="22.932617"/>
<use xlink:href="#glyph0-8" x="46" y="22.932617"/>
<use xlink:href="#glyph0-9" x="48" y="22.932617"/>
</g>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 15 KiB

View File

@ -1,35 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="1920pt" height="1080pt" viewBox="0 0 1920 1080" version="1.1">
<defs>
<g>
<symbol overflow="visible" id="glyph0-0">
<path style="stroke:none;" d="M 0.277344 0.980469 L 0.277344 -3.917969 L 3.054688 -3.917969 L 3.054688 0.980469 Z M 0.589844 0.671875 L 2.746094 0.671875 L 2.746094 -3.605469 L 0.589844 -3.605469 Z "/>
</symbol>
<symbol overflow="visible" id="glyph0-1">
<path style="stroke:none;" d="M 1.664062 -3.121094 C 1.457031 -3.121094 1.296875 -3 1.179688 -2.753906 C 1.0625 -2.507812 1.007812 -2.160156 1.007812 -1.710938 C 1.007812 -1.261719 1.0625 -0.914062 1.179688 -0.664062 C 1.296875 -0.417969 1.457031 -0.296875 1.664062 -0.296875 C 1.875 -0.296875 2.039062 -0.417969 2.152344 -0.664062 C 2.269531 -0.914062 2.328125 -1.261719 2.328125 -1.710938 C 2.328125 -2.160156 2.269531 -2.507812 2.152344 -2.753906 C 2.039062 -3 1.875 -3.121094 1.664062 -3.121094 Z M 1.664062 0.0898438 C 1.324219 0.0898438 1.054688 -0.0703125 0.855469 -0.390625 C 0.65625 -0.710938 0.554688 -1.152344 0.554688 -1.710938 C 0.554688 -2.269531 0.65625 -2.707031 0.855469 -3.027344 C 1.054688 -3.347656 1.324219 -3.511719 1.664062 -3.511719 C 2.003906 -3.511719 2.277344 -3.347656 2.476562 -3.027344 C 2.675781 -2.707031 2.777344 -2.265625 2.777344 -1.710938 C 2.777344 -1.15625 2.675781 -0.71875 2.476562 -0.394531 C 2.277344 -0.0703125 2.003906 0.0898438 1.664062 0.0898438 Z "/>
</symbol>
<symbol overflow="visible" id="glyph0-2">
<path style="stroke:none;" d="M 2.269531 -1.199219 C 2.167969 -1.230469 2.070312 -1.253906 1.980469 -1.269531 C 1.886719 -1.285156 1.792969 -1.292969 1.699219 -1.292969 C 1.421875 -1.292969 1.203125 -1.246094 1.042969 -1.152344 C 0.882812 -1.058594 0.800781 -0.933594 0.800781 -0.773438 C 0.800781 -0.648438 0.851562 -0.550781 0.949219 -0.46875 C 1.050781 -0.390625 1.179688 -0.351562 1.335938 -0.351562 C 1.566406 -0.351562 1.777344 -0.410156 1.972656 -0.53125 C 2.167969 -0.652344 2.269531 -0.777344 2.269531 -0.90625 Z M 2.289062 -0.34375 C 2.140625 -0.210938 1.980469 -0.109375 1.804688 -0.0390625 C 1.628906 0.03125 1.453125 0.0664062 1.265625 0.0664062 C 0.996094 0.0664062 0.78125 -0.0078125 0.613281 -0.15625 C 0.449219 -0.308594 0.367188 -0.503906 0.367188 -0.742188 C 0.367188 -1.027344 0.476562 -1.25 0.695312 -1.40625 C 0.914062 -1.566406 1.222656 -1.644531 1.621094 -1.644531 C 1.726562 -1.644531 1.832031 -1.636719 1.941406 -1.625 C 2.046875 -1.609375 2.15625 -1.589844 2.269531 -1.558594 L 2.269531 -1.578125 C 2.269531 -1.785156 2.21875 -1.941406 2.117188 -2.039062 C 2.019531 -2.140625 1.863281 -2.1875 1.65625 -2.1875 C 1.515625 -2.1875 1.355469 -2.152344 1.183594 -2.074219 C 1.007812 -2 0.894531 -1.960938 0.839844 -1.960938 C 0.785156 -1.960938 0.742188 -1.984375 0.707031 -2.023438 C 0.671875 -2.066406 0.65625 -2.121094 0.65625 -2.1875 C 0.65625 -2.296875 0.757812 -2.386719 0.957031 -2.460938 C 1.15625 -2.535156 1.410156 -2.570312 1.722656 -2.570312 C 2.039062 -2.570312 2.28125 -2.492188 2.445312 -2.328125 C 2.605469 -2.167969 2.6875 -1.929688 2.6875 -1.613281 L 2.6875 -0.382812 L 2.820312 -0.382812 C 2.949219 -0.382812 3.035156 -0.367188 3.078125 -0.34375 C 3.121094 -0.316406 3.144531 -0.265625 3.144531 -0.195312 C 3.144531 -0.128906 3.125 -0.0820312 3.089844 -0.0507812 C 3.054688 -0.015625 3 0 2.925781 0 L 2.5 0 C 2.449219 0 2.410156 -0.015625 2.375 -0.046875 C 2.34375 -0.078125 2.320312 -0.121094 2.3125 -0.179688 Z "/>
</symbol>
<symbol overflow="visible" id="glyph0-3">
<path style="stroke:none;" d="M 0.75 -1.132812 C 0.761719 -0.875 0.851562 -0.671875 1.011719 -0.53125 C 1.175781 -0.390625 1.394531 -0.316406 1.675781 -0.316406 C 1.886719 -0.316406 2.117188 -0.375 2.367188 -0.488281 C 2.617188 -0.601562 2.769531 -0.65625 2.820312 -0.65625 C 2.875 -0.65625 2.921875 -0.640625 2.957031 -0.605469 C 2.992188 -0.570312 3.011719 -0.527344 3.011719 -0.476562 C 3.011719 -0.425781 2.992188 -0.378906 2.953125 -0.332031 C 2.914062 -0.289062 2.855469 -0.246094 2.773438 -0.207031 C 2.59375 -0.117188 2.40625 -0.0507812 2.210938 -0.00390625 C 2.019531 0.0429688 1.828125 0.0664062 1.636719 0.0664062 C 1.226562 0.0664062 0.894531 -0.0507812 0.648438 -0.289062 C 0.402344 -0.527344 0.277344 -0.84375 0.277344 -1.234375 C 0.277344 -1.632812 0.40625 -1.957031 0.671875 -2.207031 C 0.933594 -2.453125 1.273438 -2.578125 1.695312 -2.578125 C 2.078125 -2.578125 2.394531 -2.460938 2.644531 -2.230469 C 2.894531 -2 3.023438 -1.71875 3.023438 -1.390625 C 3.023438 -1.289062 3 -1.21875 2.957031 -1.183594 C 2.914062 -1.152344 2.800781 -1.132812 2.613281 -1.132812 Z M 0.761719 -1.488281 L 2.527344 -1.488281 C 2.5 -1.703125 2.410156 -1.878906 2.257812 -2.007812 C 2.105469 -2.140625 1.917969 -2.207031 1.695312 -2.207031 C 1.453125 -2.207031 1.253906 -2.140625 1.085938 -2.015625 C 0.921875 -1.890625 0.816406 -1.714844 0.761719 -1.488281 Z "/>
</symbol>
<symbol overflow="visible" id="glyph0-4">
<path style="stroke:none;" d="M 1.894531 -1.25 L 1.894531 -3.089844 L 0.867188 -1.25 Z M 1.601562 0 C 1.515625 0 1.453125 -0.015625 1.425781 -0.0429688 C 1.394531 -0.0703125 1.378906 -0.121094 1.378906 -0.195312 C 1.378906 -0.261719 1.394531 -0.308594 1.425781 -0.335938 C 1.457031 -0.367188 1.507812 -0.382812 1.578125 -0.382812 L 1.894531 -0.382812 L 1.894531 -0.839844 L 0.625 -0.839844 C 0.582031 -0.839844 0.546875 -0.851562 0.519531 -0.882812 C 0.496094 -0.910156 0.484375 -0.953125 0.484375 -1.007812 L 0.484375 -1.195312 C 0.484375 -1.265625 0.507812 -1.34375 0.5625 -1.421875 C 0.570312 -1.4375 0.578125 -1.449219 0.582031 -1.457031 L 1.726562 -3.398438 C 1.753906 -3.445312 1.773438 -3.472656 1.789062 -3.484375 C 1.804688 -3.496094 1.828125 -3.503906 1.855469 -3.503906 C 1.867188 -3.503906 1.886719 -3.503906 1.914062 -3.5 C 1.921875 -3.496094 1.925781 -3.496094 1.933594 -3.492188 L 2.210938 -3.449219 C 2.234375 -3.445312 2.257812 -3.433594 2.273438 -3.410156 C 2.289062 -3.382812 2.296875 -3.351562 2.296875 -3.3125 L 2.296875 -1.25 L 2.433594 -1.25 C 2.472656 -1.25 2.503906 -1.265625 2.527344 -1.296875 C 2.546875 -1.328125 2.570312 -1.34375 2.597656 -1.34375 C 2.632812 -1.34375 2.664062 -1.332031 2.691406 -1.304688 C 2.714844 -1.277344 2.730469 -1.246094 2.730469 -1.203125 C 2.730469 -1.1875 2.726562 -1.171875 2.726562 -1.160156 C 2.722656 -1.144531 2.722656 -1.132812 2.714844 -1.117188 L 2.695312 -1.007812 C 2.679688 -0.941406 2.664062 -0.898438 2.636719 -0.875 C 2.613281 -0.851562 2.574219 -0.839844 2.523438 -0.839844 L 2.296875 -0.839844 L 2.296875 -0.382812 L 2.390625 -0.382812 C 2.507812 -0.382812 2.585938 -0.367188 2.628906 -0.339844 C 2.671875 -0.3125 2.695312 -0.265625 2.695312 -0.195312 C 2.695312 -0.128906 2.675781 -0.0820312 2.640625 -0.0507812 C 2.605469 -0.015625 2.550781 0 2.476562 0 Z "/>
</symbol>
<symbol overflow="visible" id="glyph0-5">
<path style="stroke:none;" d="M 1.054688 -2.121094 C 1.175781 -2.164062 1.285156 -2.195312 1.386719 -2.21875 C 1.488281 -2.238281 1.585938 -2.25 1.675781 -2.25 C 1.992188 -2.25 2.257812 -2.140625 2.46875 -1.917969 C 2.679688 -1.699219 2.785156 -1.425781 2.785156 -1.101562 C 2.785156 -0.757812 2.667969 -0.472656 2.433594 -0.246094 C 2.199219 -0.0234375 1.902344 0.0898438 1.539062 0.0898438 C 1.234375 0.0898438 0.980469 0.046875 0.773438 -0.0351562 C 0.570312 -0.117188 0.464844 -0.214844 0.464844 -0.332031 C 0.464844 -0.378906 0.484375 -0.421875 0.523438 -0.460938 C 0.5625 -0.496094 0.605469 -0.515625 0.65625 -0.515625 C 0.675781 -0.515625 0.78125 -0.480469 0.976562 -0.410156 C 1.167969 -0.339844 1.347656 -0.304688 1.511719 -0.304688 C 1.753906 -0.304688 1.949219 -0.378906 2.101562 -0.523438 C 2.253906 -0.671875 2.328125 -0.859375 2.328125 -1.085938 C 2.328125 -1.3125 2.257812 -1.5 2.113281 -1.648438 C 1.96875 -1.796875 1.789062 -1.871094 1.574219 -1.871094 C 1.410156 -1.871094 1.25 -1.832031 1.09375 -1.75 C 0.9375 -1.667969 0.84375 -1.628906 0.8125 -1.628906 C 0.757812 -1.628906 0.71875 -1.648438 0.695312 -1.6875 C 0.671875 -1.726562 0.660156 -1.800781 0.660156 -1.90625 L 0.660156 -3.253906 C 0.660156 -3.316406 0.679688 -3.359375 0.71875 -3.382812 C 0.753906 -3.410156 0.820312 -3.421875 0.910156 -3.421875 L 2.285156 -3.421875 C 2.371094 -3.421875 2.4375 -3.40625 2.480469 -3.371094 C 2.523438 -3.335938 2.542969 -3.28125 2.542969 -3.210938 C 2.542969 -3.144531 2.523438 -3.09375 2.476562 -3.054688 C 2.429688 -3.019531 2.367188 -3 2.285156 -3 L 1.054688 -3 Z "/>
</symbol>
</g>
</defs>
<g id="surface1">
<g style="fill:rgb(100%,100%,100%);fill-opacity:1;">
<use xlink:href="#glyph0-1" x="30" y="24.188477"/>
<use xlink:href="#glyph0-2" x="33" y="24.188477"/>
<use xlink:href="#glyph0-3" x="36" y="24.188477"/>
<use xlink:href="#glyph0-4" x="39" y="24.188477"/>
<use xlink:href="#glyph0-5" x="42" y="24.188477"/>
<use xlink:href="#glyph0-2" x="45" y="24.188477"/>
</g>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 8.7 KiB

View File

@ -1,35 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="1920pt" height="1080pt" viewBox="0 0 1920 1080" version="1.1">
<defs>
<g>
<symbol overflow="visible" id="glyph0-0">
<path style="stroke:none;" d="M 0.277344 0.980469 L 0.277344 -3.917969 L 3.054688 -3.917969 L 3.054688 0.980469 Z M 0.589844 0.671875 L 2.746094 0.671875 L 2.746094 -3.605469 L 0.589844 -3.605469 Z "/>
</symbol>
<symbol overflow="visible" id="glyph0-1">
<path style="stroke:none;" d="M 2.480469 -2.34375 L 2.480469 -2.355469 C 2.480469 -2.414062 2.5 -2.457031 2.535156 -2.484375 C 2.570312 -2.511719 2.621094 -2.527344 2.695312 -2.527344 C 2.769531 -2.527344 2.820312 -2.507812 2.847656 -2.464844 C 2.875 -2.421875 2.890625 -2.332031 2.890625 -2.195312 L 2.890625 -1.691406 C 2.890625 -1.625 2.871094 -1.574219 2.835938 -1.539062 C 2.800781 -1.507812 2.75 -1.488281 2.683594 -1.488281 C 2.632812 -1.488281 2.59375 -1.503906 2.558594 -1.53125 C 2.523438 -1.558594 2.480469 -1.617188 2.429688 -1.707031 C 2.339844 -1.851562 2.234375 -1.964844 2.113281 -2.039062 C 1.988281 -2.113281 1.84375 -2.152344 1.683594 -2.152344 C 1.402344 -2.152344 1.171875 -2.066406 0.996094 -1.902344 C 0.820312 -1.734375 0.734375 -1.519531 0.734375 -1.257812 C 0.734375 -0.988281 0.816406 -0.765625 0.984375 -0.59375 C 1.15625 -0.425781 1.371094 -0.339844 1.636719 -0.339844 C 1.757812 -0.339844 1.875 -0.355469 1.984375 -0.390625 C 2.09375 -0.421875 2.199219 -0.472656 2.296875 -0.539062 C 2.328125 -0.5625 2.375 -0.59375 2.433594 -0.640625 C 2.550781 -0.734375 2.644531 -0.785156 2.710938 -0.785156 C 2.765625 -0.785156 2.8125 -0.765625 2.847656 -0.730469 C 2.882812 -0.695312 2.898438 -0.648438 2.898438 -0.59375 C 2.898438 -0.449219 2.765625 -0.304688 2.496094 -0.15625 C 2.222656 -0.0078125 1.9375 0.0664062 1.632812 0.0664062 C 1.242188 0.0664062 0.914062 -0.0585938 0.652344 -0.308594 C 0.390625 -0.558594 0.261719 -0.875 0.261719 -1.25 C 0.261719 -1.625 0.390625 -1.941406 0.652344 -2.191406 C 0.910156 -2.445312 1.238281 -2.570312 1.628906 -2.570312 C 1.765625 -2.570312 1.902344 -2.554688 2.042969 -2.515625 C 2.179688 -2.480469 2.328125 -2.421875 2.480469 -2.34375 Z "/>
</symbol>
<symbol overflow="visible" id="glyph0-2">
<path style="stroke:none;" d="M 1.707031 -0.0546875 C 1.691406 -0.0117188 1.679688 0.015625 1.664062 0.03125 C 1.652344 0.0429688 1.628906 0.0507812 1.59375 0.0507812 L 1.355469 0.0507812 C 1.320312 0.0507812 1.292969 0.0429688 1.269531 0.0273438 C 1.25 0.0117188 1.238281 -0.0078125 1.238281 -0.03125 C 1.238281 -0.046875 1.242188 -0.0625 1.242188 -0.0742188 C 1.246094 -0.0898438 1.25 -0.105469 1.257812 -0.121094 L 2.320312 -3.015625 L 0.945312 -3.015625 C 0.9375 -2.929688 0.917969 -2.867188 0.886719 -2.828125 C 0.855469 -2.789062 0.804688 -2.765625 0.742188 -2.765625 C 0.679688 -2.765625 0.636719 -2.78125 0.605469 -2.8125 C 0.578125 -2.84375 0.5625 -2.890625 0.5625 -2.957031 C 0.5625 -2.976562 0.5625 -2.988281 0.5625 -2.996094 C 0.5625 -3.007812 0.566406 -3.015625 0.566406 -3.023438 L 0.59375 -3.265625 C 0.597656 -3.316406 0.617188 -3.355469 0.648438 -3.382812 C 0.679688 -3.410156 0.722656 -3.421875 0.777344 -3.421875 L 2.570312 -3.421875 C 2.625 -3.421875 2.664062 -3.414062 2.6875 -3.390625 C 2.710938 -3.367188 2.722656 -3.332031 2.722656 -3.28125 L 2.722656 -3.191406 C 2.722656 -3.167969 2.71875 -3.140625 2.710938 -3.105469 C 2.703125 -3.070312 2.6875 -3.023438 2.667969 -2.960938 Z "/>
</symbol>
<symbol overflow="visible" id="glyph0-3">
<path style="stroke:none;" d="M 1.007812 -0.933594 C 1.007812 -0.742188 1.066406 -0.585938 1.1875 -0.464844 C 1.308594 -0.347656 1.464844 -0.289062 1.664062 -0.289062 C 1.867188 -0.289062 2.027344 -0.34375 2.148438 -0.460938 C 2.269531 -0.578125 2.328125 -0.730469 2.328125 -0.921875 C 2.328125 -1.109375 2.265625 -1.261719 2.144531 -1.378906 C 2.019531 -1.496094 1.859375 -1.554688 1.664062 -1.554688 C 1.472656 -1.554688 1.3125 -1.496094 1.191406 -1.382812 C 1.066406 -1.265625 1.007812 -1.117188 1.007812 -0.933594 Z M 1.035156 -2.550781 C 1.035156 -2.371094 1.09375 -2.222656 1.210938 -2.109375 C 1.328125 -1.996094 1.480469 -1.941406 1.664062 -1.941406 C 1.851562 -1.941406 2.003906 -1.996094 2.121094 -2.113281 C 2.242188 -2.226562 2.300781 -2.375 2.300781 -2.554688 C 2.300781 -2.730469 2.242188 -2.871094 2.121094 -2.984375 C 2.003906 -3.097656 1.851562 -3.15625 1.664062 -3.15625 C 1.480469 -3.15625 1.328125 -3.097656 1.210938 -2.984375 C 1.09375 -2.871094 1.035156 -2.726562 1.035156 -2.550781 Z M 1.125 -1.753906 C 0.949219 -1.839844 0.816406 -1.953125 0.726562 -2.085938 C 0.636719 -2.21875 0.59375 -2.371094 0.59375 -2.550781 C 0.59375 -2.832031 0.695312 -3.058594 0.894531 -3.242188 C 1.097656 -3.421875 1.351562 -3.511719 1.664062 -3.511719 C 1.972656 -3.511719 2.230469 -3.417969 2.433594 -3.238281 C 2.636719 -3.058594 2.738281 -2.835938 2.738281 -2.578125 C 2.738281 -2.382812 2.695312 -2.21875 2.609375 -2.085938 C 2.523438 -1.953125 2.386719 -1.84375 2.207031 -1.753906 C 2.386719 -1.679688 2.527344 -1.570312 2.625 -1.429688 C 2.722656 -1.285156 2.773438 -1.117188 2.773438 -0.921875 C 2.773438 -0.625 2.667969 -0.378906 2.464844 -0.191406 C 2.257812 -0.00390625 1.992188 0.0898438 1.664062 0.0898438 C 1.335938 0.0898438 1.074219 -0.00390625 0.867188 -0.195312 C 0.664062 -0.386719 0.5625 -0.632812 0.5625 -0.933594 C 0.5625 -1.117188 0.609375 -1.28125 0.707031 -1.425781 C 0.804688 -1.570312 0.945312 -1.679688 1.125 -1.753906 Z "/>
</symbol>
<symbol overflow="visible" id="glyph0-4">
<path style="stroke:none;" d="M 1.015625 -2.910156 C 0.992188 -2.90625 0.976562 -2.90625 0.964844 -2.902344 C 0.953125 -2.902344 0.941406 -2.898438 0.933594 -2.898438 C 0.878906 -2.898438 0.832031 -2.914062 0.796875 -2.949219 C 0.761719 -2.980469 0.742188 -3.019531 0.742188 -3.074219 C 0.742188 -3.117188 0.757812 -3.15625 0.789062 -3.1875 C 0.820312 -3.21875 0.863281 -3.246094 0.921875 -3.261719 L 1.726562 -3.476562 C 1.746094 -3.484375 1.765625 -3.488281 1.785156 -3.488281 C 1.804688 -3.492188 1.824219 -3.492188 1.84375 -3.492188 C 1.878906 -3.492188 1.90625 -3.476562 1.925781 -3.445312 C 1.945312 -3.414062 1.957031 -3.371094 1.957031 -3.316406 L 1.957031 -0.382812 L 2.390625 -0.382812 C 2.550781 -0.382812 2.652344 -0.371094 2.695312 -0.34375 C 2.738281 -0.316406 2.761719 -0.269531 2.761719 -0.195312 C 2.761719 -0.128906 2.742188 -0.0820312 2.707031 -0.0507812 C 2.671875 -0.015625 2.617188 0 2.542969 0 L 0.921875 0 C 0.851562 0 0.796875 -0.015625 0.757812 -0.0507812 C 0.722656 -0.0820312 0.707031 -0.128906 0.707031 -0.195312 C 0.707031 -0.269531 0.726562 -0.316406 0.769531 -0.34375 C 0.8125 -0.371094 0.914062 -0.382812 1.078125 -0.382812 L 1.527344 -0.382812 L 1.527344 -3.03125 Z "/>
</symbol>
<symbol overflow="visible" id="glyph0-5">
<path style="stroke:none;" d="M 1.8125 -0.378906 C 2.066406 -0.378906 2.273438 -0.457031 2.433594 -0.617188 C 2.59375 -0.777344 2.671875 -0.988281 2.671875 -1.246094 C 2.671875 -1.496094 2.589844 -1.703125 2.429688 -1.867188 C 2.265625 -2.03125 2.0625 -2.109375 1.8125 -2.109375 C 1.5625 -2.109375 1.355469 -2.03125 1.195312 -1.867188 C 1.035156 -1.707031 0.953125 -1.5 0.953125 -1.246094 C 0.953125 -0.992188 1.035156 -0.785156 1.195312 -0.621094 C 1.355469 -0.457031 1.5625 -0.378906 1.8125 -0.378906 Z M 0.964844 -2.117188 C 1.066406 -2.242188 1.195312 -2.339844 1.34375 -2.40625 C 1.496094 -2.472656 1.667969 -2.507812 1.859375 -2.507812 C 2.222656 -2.507812 2.527344 -2.382812 2.769531 -2.140625 C 3.011719 -1.894531 3.132812 -1.589844 3.132812 -1.230469 C 3.132812 -0.875 3.007812 -0.570312 2.761719 -0.324219 C 2.511719 -0.0742188 2.207031 0.0507812 1.851562 0.0507812 C 1.660156 0.0507812 1.496094 0.015625 1.355469 -0.0507812 C 1.214844 -0.117188 1.097656 -0.21875 1.007812 -0.355469 L 1.007812 -0.136719 C 1.007812 -0.0898438 0.996094 -0.0546875 0.980469 -0.03125 C 0.964844 -0.0117188 0.933594 0 0.894531 0 L 0.398438 0 C 0.328125 0 0.277344 -0.015625 0.242188 -0.0507812 C 0.207031 -0.0820312 0.191406 -0.128906 0.191406 -0.195312 C 0.191406 -0.269531 0.210938 -0.316406 0.253906 -0.34375 C 0.292969 -0.371094 0.375 -0.382812 0.5 -0.382812 L 0.554688 -0.382812 L 0.554688 -3.160156 L 0.503906 -3.160156 C 0.382812 -3.160156 0.296875 -3.175781 0.253906 -3.203125 C 0.207031 -3.234375 0.183594 -3.285156 0.183594 -3.355469 C 0.183594 -3.421875 0.203125 -3.46875 0.238281 -3.503906 C 0.273438 -3.535156 0.328125 -3.550781 0.398438 -3.550781 L 0.8125 -3.550781 C 0.867188 -3.550781 0.90625 -3.542969 0.929688 -3.523438 C 0.953125 -3.503906 0.964844 -3.476562 0.964844 -3.441406 Z "/>
</symbol>
</g>
</defs>
<g id="surface23">
<g style="fill:rgb(100%,100%,100%);fill-opacity:1;">
<use xlink:href="#glyph0-1" x="30" y="24.188477"/>
<use xlink:href="#glyph0-2" x="33" y="24.188477"/>
<use xlink:href="#glyph0-1" x="36" y="24.188477"/>
<use xlink:href="#glyph0-3" x="39" y="24.188477"/>
<use xlink:href="#glyph0-4" x="42" y="24.188477"/>
<use xlink:href="#glyph0-5" x="45" y="24.188477"/>
</g>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 8.8 KiB

View File

@ -1,30 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="1920pt" height="1080pt" viewBox="0 0 1920 1080" version="1.1">
<defs>
<g>
<symbol overflow="visible" id="glyph0-0">
<path style="stroke:none;" d="M 0.277344 0.980469 L 0.277344 -3.917969 L 3.054688 -3.917969 L 3.054688 0.980469 Z M 0.589844 0.671875 L 2.746094 0.671875 L 2.746094 -3.605469 L 0.589844 -3.605469 Z "/>
</symbol>
<symbol overflow="visible" id="glyph0-1">
<path style="stroke:none;" d="M 2.671875 -1.511719 C 2.671875 -1.765625 2.648438 -1.9375 2.601562 -2.027344 C 2.554688 -2.117188 2.476562 -2.160156 2.367188 -2.160156 C 2.230469 -2.160156 2.125 -2.105469 2.046875 -1.988281 C 1.96875 -1.871094 1.929688 -1.714844 1.929688 -1.511719 L 1.929688 -0.382812 L 1.976562 -0.382812 C 2.085938 -0.382812 2.160156 -0.371094 2.199219 -0.34375 C 2.234375 -0.316406 2.253906 -0.269531 2.253906 -0.195312 C 2.253906 -0.128906 2.238281 -0.0820312 2.207031 -0.0507812 C 2.175781 -0.015625 2.128906 0 2.066406 0 L 1.722656 0 C 1.644531 0 1.59375 -0.0195312 1.5625 -0.0546875 C 1.535156 -0.0898438 1.523438 -0.167969 1.523438 -0.289062 L 1.523438 -1.722656 C 1.523438 -1.859375 1.492188 -1.964844 1.429688 -2.042969 C 1.367188 -2.121094 1.285156 -2.160156 1.175781 -2.160156 C 1.09375 -2.160156 1.019531 -2.136719 0.953125 -2.089844 C 0.886719 -2.042969 0.828125 -1.972656 0.777344 -1.878906 L 0.777344 -0.382812 L 0.878906 -0.382812 C 0.988281 -0.382812 1.0625 -0.367188 1.097656 -0.34375 C 1.136719 -0.316406 1.15625 -0.265625 1.15625 -0.195312 C 1.15625 -0.121094 1.140625 -0.0703125 1.109375 -0.0429688 C 1.078125 -0.015625 1.019531 0 0.933594 0 L 0.210938 0 C 0.140625 0 0.0898438 -0.015625 0.0546875 -0.046875 C 0.0234375 -0.078125 0.00390625 -0.128906 0.00390625 -0.195312 C 0.00390625 -0.269531 0.0273438 -0.316406 0.0703125 -0.34375 C 0.113281 -0.371094 0.195312 -0.382812 0.316406 -0.382812 L 0.371094 -0.382812 L 0.371094 -2.121094 L 0.324219 -2.121094 C 0.195312 -2.121094 0.109375 -2.136719 0.0625 -2.164062 C 0.015625 -2.195312 -0.00390625 -2.246094 -0.00390625 -2.316406 C -0.00390625 -2.378906 0.0117188 -2.425781 0.0507812 -2.460938 C 0.0859375 -2.492188 0.140625 -2.507812 0.210938 -2.507812 L 0.625 -2.507812 C 0.6875 -2.507812 0.726562 -2.496094 0.746094 -2.476562 C 0.765625 -2.453125 0.773438 -2.410156 0.777344 -2.34375 C 0.851562 -2.421875 0.933594 -2.480469 1.015625 -2.519531 C 1.101562 -2.558594 1.199219 -2.578125 1.304688 -2.578125 C 1.429688 -2.578125 1.535156 -2.550781 1.617188 -2.496094 C 1.699219 -2.441406 1.761719 -2.355469 1.800781 -2.242188 C 1.878906 -2.355469 1.964844 -2.441406 2.0625 -2.496094 C 2.164062 -2.550781 2.277344 -2.578125 2.40625 -2.578125 C 2.640625 -2.578125 2.808594 -2.5 2.917969 -2.347656 C 3.023438 -2.195312 3.078125 -1.953125 3.078125 -1.613281 L 3.078125 -0.382812 L 3.121094 -0.382812 C 3.234375 -0.382812 3.308594 -0.367188 3.347656 -0.34375 C 3.386719 -0.316406 3.40625 -0.265625 3.40625 -0.195312 C 3.40625 -0.128906 3.386719 -0.0820312 3.355469 -0.0507812 C 3.324219 -0.015625 3.273438 0 3.210938 0 L 2.882812 0 C 2.8125 0 2.757812 -0.0234375 2.722656 -0.0664062 C 2.6875 -0.109375 2.671875 -0.175781 2.671875 -0.269531 Z "/>
</symbol>
<symbol overflow="visible" id="glyph0-2">
<path style="stroke:none;" d="M 2.269531 -1.199219 C 2.167969 -1.230469 2.070312 -1.253906 1.980469 -1.269531 C 1.886719 -1.285156 1.792969 -1.292969 1.699219 -1.292969 C 1.421875 -1.292969 1.203125 -1.246094 1.042969 -1.152344 C 0.882812 -1.058594 0.800781 -0.933594 0.800781 -0.773438 C 0.800781 -0.648438 0.851562 -0.550781 0.949219 -0.46875 C 1.050781 -0.390625 1.179688 -0.351562 1.335938 -0.351562 C 1.566406 -0.351562 1.777344 -0.410156 1.972656 -0.53125 C 2.167969 -0.652344 2.269531 -0.777344 2.269531 -0.90625 Z M 2.289062 -0.34375 C 2.140625 -0.210938 1.980469 -0.109375 1.804688 -0.0390625 C 1.628906 0.03125 1.453125 0.0664062 1.265625 0.0664062 C 0.996094 0.0664062 0.78125 -0.0078125 0.613281 -0.15625 C 0.449219 -0.308594 0.367188 -0.503906 0.367188 -0.742188 C 0.367188 -1.027344 0.476562 -1.25 0.695312 -1.40625 C 0.914062 -1.566406 1.222656 -1.644531 1.621094 -1.644531 C 1.726562 -1.644531 1.832031 -1.636719 1.941406 -1.625 C 2.046875 -1.609375 2.15625 -1.589844 2.269531 -1.558594 L 2.269531 -1.578125 C 2.269531 -1.785156 2.21875 -1.941406 2.117188 -2.039062 C 2.019531 -2.140625 1.863281 -2.1875 1.65625 -2.1875 C 1.515625 -2.1875 1.355469 -2.152344 1.183594 -2.074219 C 1.007812 -2 0.894531 -1.960938 0.839844 -1.960938 C 0.785156 -1.960938 0.742188 -1.984375 0.707031 -2.023438 C 0.671875 -2.066406 0.65625 -2.121094 0.65625 -2.1875 C 0.65625 -2.296875 0.757812 -2.386719 0.957031 -2.460938 C 1.15625 -2.535156 1.410156 -2.570312 1.722656 -2.570312 C 2.039062 -2.570312 2.28125 -2.492188 2.445312 -2.328125 C 2.605469 -2.167969 2.6875 -1.929688 2.6875 -1.613281 L 2.6875 -0.382812 L 2.820312 -0.382812 C 2.949219 -0.382812 3.035156 -0.367188 3.078125 -0.34375 C 3.121094 -0.316406 3.144531 -0.265625 3.144531 -0.195312 C 3.144531 -0.128906 3.125 -0.0820312 3.089844 -0.0507812 C 3.054688 -0.015625 3 0 2.925781 0 L 2.5 0 C 2.449219 0 2.410156 -0.015625 2.375 -0.046875 C 2.34375 -0.078125 2.320312 -0.121094 2.3125 -0.179688 Z "/>
</symbol>
<symbol overflow="visible" id="glyph0-3">
<path style="stroke:none;" d="M 1.417969 -3.289062 C 1.417969 -3.484375 1.433594 -3.605469 1.46875 -3.65625 C 1.503906 -3.707031 1.578125 -3.734375 1.695312 -3.734375 C 1.808594 -3.734375 1.882812 -3.710938 1.917969 -3.667969 C 1.953125 -3.625 1.972656 -3.527344 1.972656 -3.367188 C 1.972656 -3.210938 1.957031 -3.113281 1.921875 -3.078125 C 1.886719 -3.039062 1.8125 -3.023438 1.695312 -3.023438 C 1.578125 -3.023438 1.503906 -3.039062 1.46875 -3.074219 C 1.433594 -3.109375 1.417969 -3.179688 1.417969 -3.289062 Z M 1.917969 -0.382812 L 2.789062 -0.382812 C 2.859375 -0.382812 2.910156 -0.367188 2.945312 -0.335938 C 2.976562 -0.308594 2.996094 -0.261719 2.996094 -0.195312 C 2.996094 -0.121094 2.980469 -0.0703125 2.949219 -0.0429688 C 2.917969 -0.015625 2.855469 0 2.773438 0 L 0.667969 0 C 0.59375 0 0.539062 -0.015625 0.503906 -0.0507812 C 0.46875 -0.0820312 0.449219 -0.128906 0.449219 -0.195312 C 0.449219 -0.257812 0.46875 -0.304688 0.507812 -0.335938 C 0.546875 -0.367188 0.601562 -0.382812 0.679688 -0.382812 L 1.503906 -0.382812 L 1.503906 -2.121094 L 0.976562 -2.121094 C 0.902344 -2.121094 0.847656 -2.136719 0.808594 -2.171875 C 0.769531 -2.207031 0.75 -2.253906 0.75 -2.316406 C 0.75 -2.378906 0.765625 -2.425781 0.804688 -2.460938 C 0.839844 -2.492188 0.894531 -2.507812 0.964844 -2.507812 L 1.761719 -2.507812 C 1.808594 -2.507812 1.847656 -2.496094 1.875 -2.476562 C 1.902344 -2.457031 1.917969 -2.429688 1.917969 -2.394531 Z "/>
</symbol>
<symbol overflow="visible" id="glyph0-4">
<path style="stroke:none;" d="M 0.65625 -0.382812 L 0.65625 -2.121094 L 0.605469 -2.121094 C 0.480469 -2.121094 0.398438 -2.136719 0.351562 -2.164062 C 0.304688 -2.195312 0.28125 -2.246094 0.28125 -2.316406 C 0.28125 -2.382812 0.300781 -2.433594 0.339844 -2.460938 C 0.378906 -2.492188 0.4375 -2.507812 0.523438 -2.507812 L 0.910156 -2.507812 C 0.960938 -2.507812 1 -2.496094 1.027344 -2.476562 C 1.054688 -2.457031 1.066406 -2.429688 1.066406 -2.394531 L 1.066406 -2.210938 C 1.199219 -2.332031 1.328125 -2.425781 1.457031 -2.484375 C 1.585938 -2.542969 1.722656 -2.570312 1.859375 -2.570312 C 2.132812 -2.570312 2.347656 -2.488281 2.503906 -2.316406 C 2.660156 -2.148438 2.738281 -1.910156 2.738281 -1.613281 L 2.738281 -0.382812 L 2.867188 -0.382812 C 2.957031 -0.382812 3.023438 -0.367188 3.0625 -0.335938 C 3.101562 -0.308594 3.121094 -0.261719 3.121094 -0.195312 C 3.121094 -0.125 3.101562 -0.0742188 3.058594 -0.0429688 C 3.015625 -0.015625 2.941406 0 2.832031 0 L 2.234375 0 C 2.117188 0 2.042969 -0.0117188 2.011719 -0.0390625 C 1.976562 -0.0664062 1.960938 -0.121094 1.960938 -0.195312 C 1.960938 -0.265625 1.980469 -0.316406 2.019531 -0.34375 C 2.058594 -0.371094 2.128906 -0.382812 2.234375 -0.382812 L 2.328125 -0.382812 L 2.328125 -1.511719 C 2.328125 -1.722656 2.28125 -1.882812 2.183594 -1.996094 C 2.085938 -2.105469 1.949219 -2.160156 1.765625 -2.160156 C 1.582031 -2.160156 1.417969 -2.101562 1.277344 -1.976562 C 1.136719 -1.851562 1.066406 -1.695312 1.066406 -1.511719 L 1.066406 -0.382812 L 1.160156 -0.382812 C 1.269531 -0.382812 1.34375 -0.367188 1.378906 -0.34375 C 1.417969 -0.316406 1.4375 -0.265625 1.4375 -0.195312 C 1.4375 -0.121094 1.421875 -0.0664062 1.390625 -0.0390625 C 1.355469 -0.0117188 1.277344 0 1.148438 0 L 0.511719 0 C 0.4375 0 0.378906 -0.015625 0.34375 -0.046875 C 0.304688 -0.078125 0.289062 -0.128906 0.289062 -0.195312 C 0.289062 -0.269531 0.308594 -0.316406 0.351562 -0.34375 C 0.394531 -0.371094 0.476562 -0.382812 0.597656 -0.382812 Z "/>
</symbol>
</g>
</defs>
<g id="surface18">
<g style="fill:rgb(100%,100%,100%);fill-opacity:1;">
<use xlink:href="#glyph0-1" x="30" y="24.188477"/>
<use xlink:href="#glyph0-2" x="33" y="24.188477"/>
<use xlink:href="#glyph0-3" x="36" y="24.188477"/>
<use xlink:href="#glyph0-4" x="39" y="24.188477"/>
</g>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 8.9 KiB

View File

@ -1,2 +0,0 @@
# This file is used internally by FFMPEG.
file 'file:/Users/normrasmussen/.config/nvim/git-sim_media/videos/1080p60/partial_movie_files/GitSim/3168721105_51972775_2708716386.mp4'

View File

@ -1,60 +0,0 @@
{
"LuaSnip": { "branch": "master", "commit": "500981ff6cefc7343e3959ef0f939bd0bfd49ba9" },
"alpha-nvim": { "branch": "main", "commit": "9e33db324b8bb7a147bce9ea5496686ee859461d" },
"auto-hlsearch.nvim": { "branch": "main", "commit": "8f28246d53e9478717ca3b51c8112083fbebd7e3" },
"barbar.nvim": { "branch": "master", "commit": "b8ca6076f75e49cca1fa0288c080f3d10ec2152c" },
"cmp-buffer": { "branch": "main", "commit": "3022dbc9166796b644a841a02de8dd1cc1d311fa" },
"cmp-cmdline": { "branch": "main", "commit": "8ee981b4a91f536f52add291594e89fb6645e451" },
"cmp-nvim-lsp": { "branch": "main", "commit": "0e6b2ed705ddcff9738ec4ea838141654f12eeef" },
"cmp-nvim-lsp-signature-help": { "branch": "main", "commit": "3d8912ebeb56e5ae08ef0906e3a54de1c66b92f1" },
"cmp-path": { "branch": "main", "commit": "91ff86cd9c29299a64f968ebb45846c485725f23" },
"cmp-spell": { "branch": "master", "commit": "60584cb75e5e8bba5a0c9e4c3ab0791e0698bffa" },
"cmp_luasnip": { "branch": "master", "commit": "18095520391186d634a0045dacaa346291096566" },
"deadcolumn.nvim": { "branch": "master", "commit": "b9b5e237371ae5379e280e4df9ecf62e4bc8d7a5" },
"distant.nvim": { "branch": "v0.2", "commit": "9dd21f8fa25795e56756e1ea27a1586ceee35582" },
"feline.nvim": { "branch": "master", "commit": "d48b6f92c6ccdd6654c956f437be49ea160b5b0c" },
"friendly-snippets": { "branch": "main", "commit": "b71d1ddc30a10ce0474156f7ee93bc9006d0cd74" },
"gitsigns.nvim": { "branch": "main", "commit": "4455bb5364d29ff86639dfd5533d4fe4b48192d4" },
"headlines.nvim": { "branch": "master", "commit": "ddef41b2664f0ce25fe76520d708e2dc9dfebd70" },
"indent-blankline.nvim": { "branch": "master", "commit": "7075d7861f7a6bbf0de0298c83f8a13195e6ec01" },
"lazy.nvim": { "branch": "main", "commit": "6b2311a46a3808e366bb251270f4cc04afb421ed" },
"lsp-colors.nvim": { "branch": "main", "commit": "2bbe7541747fd339bdd8923fc45631a09bb4f1e5" },
"lualine.nvim": { "branch": "master", "commit": "05d78e9fd0cdfb4545974a5aa14b1be95a86e9c9" },
"mason-lspconfig.nvim": { "branch": "main", "commit": "5230617372e656d4a2e1e236e03bf7e7b4b97273" },
"mason.nvim": { "branch": "main", "commit": "7d7efc738e08fc5bee822857db45cb6103f0b0c1" },
"mini.comment": { "branch": "main", "commit": "877acea5b2a32ff55f808fc0ebe9aa898648318c" },
"mini.fuzzy": { "branch": "stable", "commit": "295763d73cbf580c27a4419364c47b09fc82e0f4" },
"mini.move": { "branch": "main", "commit": "3afd39873eb9171684e554a214c055482444a47d" },
"mini.pairs": { "branch": "stable", "commit": "963b800d0524eadd297199207011b98684205ada" },
"mini.surround": { "branch": "main", "commit": "eeaf96562947f75afa51a6266e066529369ca7ef" },
"mini.trailspace": { "branch": "main", "commit": "c41ab1035d184ff20c1aebd76639320c055afebe" },
"moonfly": { "branch": "master", "commit": "8f2b6b97ae5ba1090229c4eb842cbc912d7ffb65" },
"neoscroll.nvim": { "branch": "master", "commit": "d7601c26c8a183fa8994ed339e70c2d841253e93" },
"nightfox.nvim": { "branch": "main", "commit": "77aa7458d2b725c2d9ff55a18befe1b891ac473e" },
"null-ls.nvim": { "branch": "main", "commit": "a138b14099e9623832027ea12b4631ddd2a49256" },
"nvim": { "branch": "main", "commit": "2df7036c5c303c9184869936e40ca18935e4afcb" },
"nvim-cmp": { "branch": "main", "commit": "09ff53ff579cfa3368f8051b0dbe88406891aabe" },
"nvim-dap": { "branch": "master", "commit": "7c1d47cf7188fc31acdf951f9eee22da9d479152" },
"nvim-dap-ui": { "branch": "master", "commit": "c020f660b02772f9f3d11f599fefad3268628a9e" },
"nvim-lspconfig": { "branch": "master", "commit": "179803f537807fff5b5961a2b3efd9e7ddac54a2" },
"nvim-mapper": { "branch": "main", "commit": "baad83aad85d420cce24dd60106114421ed59039" },
"nvim-notify": { "branch": "master", "commit": "ea9c8ce7a37f2238f934e087c255758659948e0f" },
"nvim-tree.lua": { "branch": "master", "commit": "f5d970d4506f385b29534252d8c15a782fa53034" },
"nvim-treesitter": { "branch": "master", "commit": "7be9ebd06abe2ed836abd3e91acb0b243ddcafba" },
"nvim-web-devicons": { "branch": "master", "commit": "2a125024a137677930efcfdf720f205504c97268" },
"plenary.nvim": { "branch": "master", "commit": "499e0743cf5e8075cd32af68baa3946a1c76adf1" },
"popup.nvim": { "branch": "master", "commit": "b7404d35d5d3548a82149238289fa71f7f6de4ac" },
"sidebar.nvim": { "branch": "main", "commit": "990ce5f562c9125283ccac5473235b1a56fea6dc" },
"starry.nvim": { "branch": "master", "commit": "9c4f8669acb302300e1495d4b1f1e618524a48f4" },
"styler.nvim": { "branch": "main", "commit": "58d0d12191adee41fce7ef20d46d1203efa0d11e" },
"symbols-outline.nvim": { "branch": "master", "commit": "512791925d57a61c545bc303356e8a8f7869763c" },
"telescope-file-browser.nvim": { "branch": "master", "commit": "fc70589a93d7bb42f4671ad75c8628a29995bcbe" },
"telescope-fzf-native.nvim": { "branch": "main", "commit": "9bc8237565ded606e6c366a71c64c0af25cd7a50" },
"telescope-live-grep-args.nvim": { "branch": "master", "commit": "0f75ea809c46af8997c64f49c52e3c641d887885" },
"telescope.nvim": { "branch": "master", "commit": "c1a2af0af69e80e14e6b226d3957a064cd080805" },
"tmux.nvim": { "branch": "main", "commit": "03e28fdaa2ef54b975ba1930f1e69b5e231dedc9" },
"tokyonight.nvim": { "branch": "main", "commit": "161114bd39b990995e08dbf941f6821afbdcd666" },
"trouble.nvim": { "branch": "main", "commit": "2af0dd9767526410c88c628f1cbfcb6cf22dd683" },
"vim-wakatime": { "branch": "master", "commit": "018fa9a80c27ccf2a8967b9e27890372e5c2fb4f" },
"which-key.nvim": { "branch": "main", "commit": "e271c28118998c93a14d189af3395812a1aa646c" }
}

Binary file not shown.

View File

@ -1,64 +0,0 @@
local Popup = {}
--- Create a new floating window
-- @param config The configuration passed to vim.api.nvim_open_win
-- @param win_opts The options registered with vim.api.nvim_win_set_option
-- @param buf_opts The options registered with vim.api.nvim_buf_set_option
-- @return A new popup
function Popup:new(opts)
opts = opts or {}
opts.layout = opts.layout or {}
opts.win_opts = opts.win_opts or {}
opts.buf_opts = opts.buf_opts or {}
Popup.__index = Popup
local editor_layout = {
height = vim.o.lines - vim.o.cmdheight - 2, -- Add margin for status and buffer line
width = vim.o.columns,
}
local popup_layout = {
relative = "editor",
height = math.floor(editor_layout.height * 0.9),
width = math.floor(editor_layout.width * 0.8),
style = "minimal",
border = "rounded",
}
popup_layout.row = math.floor((editor_layout.height - popup_layout.height) / 2)
popup_layout.col = math.floor((editor_layout.width - popup_layout.width) / 2)
local obj = {
buffer = im.api.nvim_create_buf(false, true),
layout = vim.tbl_deep_extend("force", popup_layout, opts.layout),
win_opts = opts.win_opts,
buf_opts = opts.buf_opts,
}
setmetatable(obj, Popup)
return obj
end
--- Display the popup with the provided content
-- @param content_provider A function accepting the popup's layout and returning the content to display
function Popup:display(content_provider)
self.win_id = vim.api.nvim_open_win(self.buffer, true, self.layout)
vim.api.nvim_command(
string.format("autocmd BufHidden,BufLeave <buffer> ++once lua pcall(vim.api.nvim_win_close, %d, true)", self.win_id)
)
local lines = content_provider(self.layout)
vim.api.nvim_buf_set_lines(self.bufnr or 0, 0, -1, false, lines)
-- window options
for key, value in pairs(self.win_opts) do
vim.api.nvim_win_set_option(self.win_id or 0, key, value)
end
-- buffer options
for key, value in pairs(self.buf_opts) do
vim.api.nvim_buf_set_option(self.buffer, key, value)
end
end
return Popup

View File

@ -1,95 +0,0 @@
local M = {}
local function max_len_line(lines)
local max_len = 0
for _, line in ipairs(lines) do
local line_len = line:len()
if line_len > max_len then
max_len = line_len
end
end
return max_len
end
--- Left align lines relatively to the parent container
-- @param container The container where lines will be displayed
-- @param lines The text to align
-- @param alignment The alignment value, range: [0-1]
function M.align_left(container, lines, alignment)
local max_len = max_len_line(lines)
local indent_amount = math.ceil(math.max(container.width - max_len, 0) * alignment)
return M.shift_right(lines, indent_amount)
end
--- Center align lines relatively to the parent container
-- @param container The container where lines will be displayed
-- @param lines The text to align
-- @param alignment The alignment value, range: [0-1]
function M.align_center(container, lines, alignment)
local output = {}
local max_len = max_len_line(lines)
for _, line in ipairs(lines) do
local padding = string.rep(" ", (math.max(container.width, max_len) - line:len()) * alignment)
table.insert(output, padding .. line)
end
return output
end
--- Shift lines by a given amount
-- @params lines The lines the shift
-- @param amount The amount of spaces to add
function M.shift_right(lines, amount)
local output = {}
local padding = string.rep(" ", amount)
for _, line in ipairs(lines) do
table.insert(output, padding .. line)
end
return output
end
--- Pretty format tables
-- @param entries The table to format
-- @param col_count The number of column to span the table on
-- @param col_sep The separator between each column, default: " "
function M.format_table(entries, col_count, col_sep)
col_sep = col_sep or " "
local col_rows = math.ceil(vim.tbl_count(entries) / col_count)
local cols = {}
local count = 0
for i, entry in ipairs(entries) do
if ((i - 1) % col_rows) == 0 then
table.insert(cols, {})
count = count + 1
end
table.insert(cols[count], entry)
end
local col_max_len = {}
for _, col in ipairs(cols) do
table.insert(col_max_len, max_len_line(col))
end
local output = {}
for i, col in ipairs(cols) do
for j, entry in ipairs(col) do
if not output[j] then
output[j] = entry
else
local padding = string.rep(" ", col_max_len[i - 1] - cols[i - 1][j]:len())
output[j] = output[j] .. padding .. col_sep .. entry
end
end
end
return output
end
return M

View File

@ -1,126 +0,0 @@
-----------------------------------------------------------
-- Keymaps of Neovim and installed plugins
-----------------------------------------------------------
local map = vim.api.nvim_set_keymap
local default_opts = { noremap = true, silent = true }
-- Fast saving with <leader> and s
map('n', '<leader>s', ':w<CR>', default_opts)
map('n', '<leader>a', ':w|:luafile %<CR>', default_opts)
map('n', '<leader>aa', ':w|:luafile %<CR> |:PackerSync<CR>', default_opts)
map('i', '<leader>s', '<C-c>:w<CR>', default_opts)
-- Python Script that saves the file & moves Todos to my Todolist.
map('n', '<leader>sd', ':w|:! python3 ~/Documents/Northpass/Scripts/TodoMD/todo.py %<CR>', default_opts)
-- Neovim Tab Navgation via Vem-Tabline
map('n', '<leader>t', ':tabnew<CR>', default_opts)
map('n', '<leader>e', ':bnext<CR>', default_opts)
map('n', '<leader>w', ':bprev<CR>', default_opts)
map('n', '<leader>d', ':bdelete<CR>', default_opts)
map('n', '<leader>r', '<Plug>vem_move_buffer_right', default_opts)
map('n', '<leader>q', '<Plug>vem_move_buffer_left', default_opts)
-----------------------------------------------------------
-- Applications and Plugins shortcuts
-----------------------------------------------------------
-----------------------------------------------------------
-- Telescope Keymaps
-----------------------------------------------------------
-- For Neovim >= 0.7.0
Mapper = require("nvim-mapper")
local M = Mapper.map
local default_opts = {noremap=true, silent=true}
-- Sidebar
M('n', '<leader>n', ':SidebarNvimToggle<CR>', default_opts,
"Sidebar Toggle", "sidebar-toggle", "Open or Close Sidebar"
)
M('n', '<leader>q', ':SidebarNvimUpdate<CR>', default_opts,
"Sidebar Update", "sidebar-update", "Refresh the Sidebar"
)
--[[ Sidebar Resize
M('n', '<leader>=', ':SidebarNvimResize +1<CR>', default_opts,
"Sidebar +1", "sidebar-plus1", "Sidebar Bigger by one"
)
M('n', '<leader>-', ':SidebarNvimResize -1<CR>', default_opts,
"Sidebar -1", "sidebar-minus1", "Sidebar Smaller by one"
)
M('n', '<leader>==', ':SidebarNvimResize +10<CR>', default_opts,
"Sidebar +10", "sidebar-plus10", "Sidebar Bigger by 10"
)
M('n', '<leader>--', ':SidebarNvimResize -10<CR>', default_opts,
"Sidebar -10", "sidebar-minus10", "Sidebar Smaller by 10"
)--]]
-- Lazy Git
M('n', '<leader>lg', ":LazyGit<CR>", default_opts,
"Lazy Git", "lazy-git", "Show Lazy Git"
)
-- Markdown Preview Toggle
M('n', '<leader>P', ":MarkdownPreview<CR>", default_opts,
"Markdown Preview", "md_preview", "Display Markdown preview in browser"
)
-- Telescope Options
M('n', '<leader>ff', ':Telescope find_files<CR>', default_opts,
"Find Files", "find-files", "Find Files in Telescope pop-up"
)
M('n', '<leader>fg', ':Telescope live_grep<CR>', default_opts,
"Live Grep", "live-grep", "Grep Files in Telescope pop-up"
)
M('n', '<leader>fb', ':Telescope buffers<CR>', default_opts,
"Buffers", "buffers", "See Buffers in Telescope pop-up"
)
M('n', '<leader>fe', ":Telescope file_browser<CR>", default_opts,
"Telescope Files", "telescope-file-browser", "Find files and directories in telescope"
)
M('n', '<C-t>', "@t<CR>", default_opts,
"Add Todo", "todo_todo", "Add To-do/Task to the beginning of the line"
)
M('n', '<C-s>', "@s<CR>", default_opts,
"Add Solutions Engineering", "todo_seng", "Add Solutions Engineering to the beginning of the line"
)
M('n', '<C-f>', "@f<CR>", default_opts,
"Add Feature", "add_feat", "Add Feature Request tag to the beginning of the line. "
)
M( 'n', '<C-x>', "@c<CR>", default_opts,
"Replace with Complete", "add_complete", "Replace tag with Complete tag at beginning of the line."
)
M('n', '<C-r>', "@w<CR>", default_opts,
"Add Warning/Error", "add_error", "Add Warning/Error tag at the beginning of the line."
)
M('n', '<leader>ce', ":TodoTrouble keywords=TODO<CR> | :resize +10<CR>", default_opts,
"Show Todo Tags", "show_todos", "Show Todo Tags."
)
M('n', '<leader>cf', ":TodoTrouble keywords=FEAT<CR>", default_opts,
"Show Feature Tags", "show_features", "Show Feature Requests."
)
M('n', '<leader>cq', ":TodoTrouble keywords=ERROR, WARN<CR>", default_opts,
"Show Warning Tags", "show_warnings", "Show Errors Tags."
)
M('n', '<leader>b', ":! black %<CR>", default_opts,
"Black Formatting", "black_current_file", "Use Black Formatting on Current File."
)
M('n', '<leader>m', ":! markdownlint -f %<CR>", default_opts,
"Markdownlint", "md_lint_format", "Use mdlint Formatting on Current File."
)
M('n', '<leader>r30', ":resize 30<CR>", default_opts,
"Resize30", "resize_30", "Resize Window to #30"
)

View File

@ -1,74 +0,0 @@
-----------------------------------------------------------
-- startify configuration file
-----------------------------------------------------------
return {
"goolord/alpha-nvim",
dependencies = {
'nvim-tree/nvim-web-devicons',
},
config = function ()
local alpha = require'alpha'
local startify = require'alpha.themes.startify'
startify.section.header.val = {
" ",
" █████ █████ ██████ █████ ███ ",
"░░███ ░░███ ░░██████ ░░███ ░███ ",
" ░███ ░███ ██████ █████ ████ ░███░███ ░███ ██████ ████████ █████████████ ░███ ",
" ░███████████ ███░░███░░███ ░███ ░███░░███░███ ███░░███░░███░░███░░███░░███░░███░███ ",
" ░███░░░░░███ ░███████ ░███ ░███ ░███ ░░██████ ░███ ░███ ░███ ░░░ ░███ ░███ ░███░███ ",
" ░███ ░███ ░███░░░ ░███ ░███ ░███ ░░█████ ░███ ░███ ░███ ░███ ░███ ░███░░░ ",
" █████ █████░░██████ ░░███████ █████ ░░█████░░██████ █████ █████░███ ████████ ",
"░░░░░ ░░░░░ ░░░░░░ ░░░░░███ ░░░░░ ░░░░░ ░░░░░░ ░░░░░ ░░░░░ ░░░ ░░░░░░░░ ",
" ███ ░███ ",
" ░░██████ ",
" ░░░░░░ ",
}
--[[ startify.section.mru.val = {
{ type = "text",
val = findtodos,
opts = {
position = "left",
hl = {{"hl_group", 0, -2}}
}
}
}--]]
startify.section.mru_cwd.val = { { type = "padding", val = 0 } }
-- Devicons - Not sure what this doe
startify.nvim_web_devicons.enabled = false
startify.nvim_web_devicons.highlight = false
startify.nvim_web_devicons.highlight = 'Number'
-- Top Menu
startify.section.top_buttons.val = {
startify.button('e', ' New file', ':ene <BAR> startinsert<CR>'),
startify.button('f', ' Find file', ':Telescope file_browser<CR>'),
startify.button('s', '⋅Find Word', ':Telescope live_grep<CR>'),
startify.button('t', '& Todo List', ':TodoTrouble keywords=TODO<CR>'),
startify.button('r', '' .. ' Recent files', ':Telescope oldfiles <CR>'),
startify.button('u', ' Show plugins', ':Lazy<CR>'),
startify.button('q', ' Quit', ':qa<CR>'),
}
-- Bottom Menu
startify.section.bottom_buttons.val = {
-- Show Empty Space
}
--[[ local function footer()
local version = vim.version()
local print_version = "v" .. version.major .. '.' .. version.minor .. '.' .. version.patch
local datetime = os.date('%Y/%m/%d %H:%M:%S')
return print_version .. ' ' .. datetime
end
--]]
startify.section.footer.val = {
}
alpha.setup(startify.config)
end
}

View File

@ -1,16 +0,0 @@
return
{
'chipsenkbeil/distant.nvim',
branch = 'v0.2',
config = function()
require('distant').setup {
-- Applies Chip's personal settings to every machine you connect to
--
-- 1. Ensures that distant servers terminate with no connections
-- 2. Provides navigation bindings for remote directories
-- 3. Provides keybinding to jump into a remote file's parent directory
['*'] = require('distant.settings').chip_default()
}
end
}

View File

@ -1,48 +0,0 @@
return -- Signs for Git Status Information
{
'lewis6991/gitsigns.nvim',
config = function()
require('gitsigns').setup {
signs = {
add = {hl = 'GitSignsAdd' , text = '', numhl='GitSignsAddNr' , linehl='GitSignsAddLn'},
change = {hl = 'GitSignsChange', text = '', numhl='GitSignsChangeNr', linehl='GitSignsChangeLn'},
delete = {hl = 'GitSignsDelete', text = '_', numhl='GitSignsDeleteNr', linehl='GitSignsDeleteLn'},
topdelete = {hl = 'GitSignsDelete', text = '', numhl='GitSignsDeleteNr', linehl='GitSignsDeleteLn'},
changedelete = {hl = 'GitSignsChange', text = '~', numhl='GitSignsChangeNr', linehl='GitSignsChangeLn'},
},
signcolumn = true, -- Toggle with `:Gitsigns toggle_signs`
numhl = false, -- Toggle with `:Gitsigns toggle_numhl`
linehl = false, -- Toggle with `:Gitsigns toggle_linehl`
word_diff = false, -- Toggle with `:Gitsigns toggle_word_diff`
watch_gitdir = {
interval = 1000,
follow_files = true
},
attach_to_untracked = true,
current_line_blame = false, -- Toggle with `:Gitsigns toggle_current_line_blame`
current_line_blame_opts = {
virt_text = true,
virt_text_pos = 'eol', -- 'eol' | 'overlay' | 'right_align'
delay = 1000,
ignore_whitespace = false,
},
current_line_blame_formatter = '<author>, <author_time:%Y-%m-%d> - <summary>',
sign_priority = 1,
update_debounce = 100,
status_formatter = nil, -- Use default
max_file_length = 40000,
preview_config = {
-- Options passed to nvim_open_win
border = 'double',
style = 'normal',
relative = 'cursor',
row = 0,
col = 2
},
yadm = {
enable = false
},
}
end
}

View File

@ -1,38 +0,0 @@
return {
'lukas-reineke/headlines.nvim',
}
--[[ config = function()
require("headlines").setup {
markdown = {
query = vim.treesitter.parse_query(
"markdown",
[[
(atx_heading [
(atx_h1_marker)
(atx_h2_marker)
(atx_h3_marker)
(atx_h4_marker)
(atx_h5_marker)
(atx_h6_marker)
] @headline)
(thematic_break) @dash
(fenced_code_block) @codeblock
(block_quote_marker) @quote
(block_quote (paragraph (inline (block_continuation) @quote)))
),
headline_highlights = { "Headline" },
codeblock_highlight = "CodeBlock",
dash_highlight = "Dash",
dash_string = "-",
quote_highlight = "Quote",
quote_string = "┃",
fat_headlines = true,
},
}
end
}
--]]

View File

@ -1,227 +0,0 @@
return {
----------------------------------------------------------------
-- LSP and Autocomplete Plugins
-- They should be pulled first!
-----------------------------------------------------------------
{'williamboman/mason.nvim',
config = function() require("mason").setup({
ui = {
icons = {
package_installed = "",
package_pending = "",
package_uninstalled = ""
}
}
})
end,
},
{ 'williamboman/mason-lspconfig.nvim',
config = function() require("mason-lspconfig").setup{} end,
},
{ 'neovim/nvim-lspconfig' },
-- Manage all your Keymaps!
{
"gregorias/nvim-mapper",
config = function() require("nvim-mapper").setup{} end,
before = "telescope.nvim"
},
{
'L3MON4D3/LuaSnip', version = "1.2.1",
dependencies = { "friendly-snippets" },
},
'saadparwaiz1/cmp_luasnip',
'hrsh7th/cmp-nvim-lsp-signature-help',
{
'asiryk/auto-hlsearch.nvim',
version = "1.1.0",
config = function() require("auto-hlsearch").setup{} end,
},
------------------------------------------------------------
-- General Functionality
------------------------------------------------------------
{
'nvim-lualine/lualine.nvim',
dependencies = { 'nvim-tree/nvim-web-devicons' },
config = function() require('lualine').setup{
options = { theme = 'palenight' }
} end,
},
-- Tmux Navigation
{
"aserowy/tmux.nvim",
config = function() require("tmux").setup() end
},
-- Snippets
'rafamadriz/friendly-snippets',
-- Rename and Work with Buffer & Tabs
-- 'pacha/vem-tabline',
{'romgrk/barbar.nvim',
dependencies = 'nvim-tree/nvim-web-devicons',
version = '^1.0.0', -- optional: only update when a new 1.x version is released
},
-- Nvim Tree File Manager on the Left
'nvim-tree/nvim-tree.lua',
-- Trouble Shows Errors with Files.
{
"folke/trouble.nvim",
dependencies = { 'nvim-tree/nvim-web-devicons' },
config = function()
require("trouble").setup {
}
end
},
-- Which Key
{
"folke/which-key.nvim",
config = function()
require("which-key").setup {
}
end
},
"hrsh7th/nvim-cmp", -- optional, for completion
-- Top Right Notify Pop Up
'rcarriga/nvim-notify',
-- echasnovski Mini Modules (Selected)
{
'echasnovski/mini.comment', version = '*',
config = function()
require('mini.comment').setup()
end
},
{
'echasnovski/mini.move',
config = function()
require('mini.move').setup({
mappings = {
left = '<S-left>',
right = '<S-right>',
down = '<S-down>',
up = '<S-up>',
line_left = '<S-left>',
line_right = '<S-right>',
line_down = '<S-down>',
line_up = '<S-up>',
}
})
end
},
{
'echasnovski/mini.trailspace',
config = function()
require('mini.trailspace').setup()
end
},
{
'echasnovski/mini.surround', version = '*',
config = function()
require('mini.surround').setup()
end
},
{
'echasnovski/mini.pairs', branch = 'stable',
config = function()
require('mini.pairs').setup()
end
},
{
'echasnovski/mini.fuzzy', branch = 'stable',
config = function()
require('mini.fuzzy').setup()
end
},
-- DAP (Debug adaptor Protocol)
'mfussenegger/nvim-dap',
-- Sidebar
{
'sidebar-nvim/sidebar.nvim',
config = function()
require("sidebar-nvim").setup({
side = "right",
sections = {
"git",
"symbols",
"diagnostics",
"files",
"todos",
},
todos = {
initially_closed = false, -- whether the groups should be initially closed on start. You can manually open/close groups later.
},
diagnostics = {
icon = "",
},
})
end
},
{
'rcarriga/nvim-dap-ui', dependencies = {"mfussenegger/nvim-dap"}
},
---------------------------------------------------------
-- Text, Icons, Symbols
----------------------------------------------------------
{
'simrat39/symbols-outline.nvim',
config = function()
require('symbols-outline').setup()
end
},
'lukas-reineke/indent-blankline.nvim',
'folke/lsp-colors.nvim',
'karb94/neoscroll.nvim',
-- Allow Popups for Telescope etc
'nvim-lua/popup.nvim',
'nvim-lua/plenary.nvim',
-- Various telescopes
'nvim-telescope/telescope-file-browser.nvim',
{
'nvim-telescope/telescope-fzf-native.nvim',
build = 'make'
},
-----------------------------------------------------------
-- Various Color Schemes, Dashboard, etc
-----------------------------------------------------------
{'ray-x/starry.nvim', setup=function()
end},
'EdenEast/nightfox.nvim',
'catppuccin/nvim',
{
"folke/tokyonight.nvim",
lazy = false, -- make sure we load this during startup if it is your main colorscheme
priority = 1000, -- make sure to load this before all the other start plugins
config = function()
end,
},
{ "bluz71/vim-moonfly-colors", name = "moonfly", lazy = true, priority = 1000 },
'Bekaboo/deadcolumn.nvim',
{
'feline-nvim/feline.nvim',
dependencies = { 'nvim-tree/nvim-web-devicons' },
},
-- Wakatime Tracking
'wakatime/vim-wakatime'
}

View File

@ -1,23 +0,0 @@
return {
'jose-elias-alvarez/null-ls.nvim',
dependencies = {
'nvim-lua/plenary.nvim',
},
config = function ()
local null_ls = require'null-ls'
null_ls.setup({
debug = true,
sources = {
null_ls.builtins.completion.spell,
null_ls.builtins.diagnostics.codespell,
null_ls.builtins.diagnostics.markdownlint.with({ extra_args = { "--disable", "MD013", "MD024", "--" }
,}),
null_ls.builtins.diagnostics.ruff,
-- null_ls.builtins.diagnostics.pylama,
null_ls.builtins.formatting.black,
-- null_ls.builtins.diagnostics.pylint,
null_ls.builtins.diagnostics.pycodestyle.with({ extra_args = { "--max-line-length=150" }}),
},
})
end
}

View File

@ -1,91 +0,0 @@
return {
'hrsh7th/nvim-cmp',
dependencies = {
'neovim/nvim-lspconfig',
'L3MON4D3/LuaSnip',
'hrsh7th/cmp-nvim-lsp',
'hrsh7th/cmp-path',
'hrsh7th/cmp-buffer',
'hrsh7th/cmp-cmdline',
'hrsh7th/nvim-cmp',
'saadparwaiz1/cmp_luasnip',
'hrsh7th/cmp-nvim-lsp-signature-help',
'f3fora/cmp-spell',
},
config = function ()
local cmp_status_ok, cmp = pcall(require, 'cmp')
if not cmp_status_ok then
return
end
local luasnip_status_ok, luasnip = pcall(require, 'luasnip')
if not luasnip_status_ok then
return
end
require("luasnip.loaders.from_vscode").lazy_load()
cmp.setup {
-- Load snippet support
--snippet = {
-- expand = function(args)
-- luasnip.lsp_expand(args.body)
-- },
-- Completion settings
completion = {
--completeopt = 'menu,menuone,noselect'
keyword_length = 2
},
-- Key mapping
mapping = {
['<C-n>'] = cmp.mapping.select_next_item(),
['<C-p>'] = cmp.mapping.select_prev_item(),
['<C-d>'] = cmp.mapping.scroll_docs(-4),
['<C-f>'] = cmp.mapping.scroll_docs(4),
['<C-Space>'] = cmp.mapping.complete(),
["<C-e>"] = cmp.mapping({
i = cmp.mapping.abort(),
c = cmp.mapping.close(),
}),
["<C-y>"] = cmp.config.disable,
['<CR>'] = cmp.mapping.confirm {
select = false,
},
-- Tab mapping
['<Tab>'] = function(fallback)
if cmp.visible() then
cmp.select_next_item()
elseif luasnip.expand_or_jumpable() then
luasnip.expand_or_jump()
else
fallback()
end
end,
['<S-Tab>'] = function(fallback)
if cmp.visible() then
cmp.select_prev_item()
elseif luasnip.jumpable(-1) then
luasnip.jump(-1)
else
fallback()
end
end,
},
snippet = {
expand = function(args)
require('luasnip').lsp_expand(args.body)
end,
},
-- Load sources, see: https://github.com/topics/nvim-cmp
sources = {
{ name = 'nvim-lsp' },
{ name = 'luasnip' },
{ name = 'path' },
-- { name = 'buffer' },
-- { name = 'zsh' },
}
}
end
}

View File

@ -1,51 +0,0 @@
return {
'neovim/nvim-lspconfig',
config = function()
-- Mappings.
-- See `:help vim.diagnostic.*` for documentation on any of the below functions
local opts = { noremap=true, silent=true }
vim.keymap.set('n', '<space>e', vim.diagnostic.open_float, opts)
vim.keymap.set('n', '[d', vim.diagnostic.goto_prev, opts)
vim.keymap.set('n', ']d', vim.diagnostic.goto_next, opts)
vim.keymap.set('n', '<space>q', vim.diagnostic.setloclist, opts)
-- Use an on_attach function to only map the following keys
-- after the language server attaches to the current buffer
local on_attach = function(client, bufnr)
-- Enable completion triggered by <c-x><c-o>
vim.api.nvim_buf_set_option(bufnr, 'omnifunc', 'v:lua.vim.lsp.omnifunc')
-- Mappings.
-- See `:help vim.lsp.*` for documentation on any of the below functions
local bufopts = { noremap=true, silent=true, buffer=bufnr }
vim.keymap.set('n', 'gD', vim.lsp.buf.declaration, bufopts)
vim.keymap.set('n', 'gd', vim.lsp.buf.definition, bufopts)
vim.keymap.set('n', 'K', vim.lsp.buf.hover, bufopts)
vim.keymap.set('n', 'gi', vim.lsp.buf.implementation, bufopts)
vim.keymap.set('n', '<C-k>', vim.lsp.buf.signature_help, bufopts)
vim.keymap.set('n', '<space>wa', vim.lsp.buf.add_workspace_folder, bufopts)
vim.keymap.set('n', '<space>wr', vim.lsp.buf.remove_workspace_folder, bufopts)
vim.keymap.set('n', '<space>wl', function()
print(vim.inspect(vim.lsp.buf.list_workspace_folders()))
end, bufopts)
vim.keymap.set('n', '<space>D', vim.lsp.buf.type_definition, bufopts)
vim.keymap.set('n', '<space>rn', vim.lsp.buf.rename, bufopts)
vim.keymap.set('n', '<space>ca', vim.lsp.buf.code_action, bufopts)
vim.keymap.set('n', 'gr', vim.lsp.buf.references, bufopts)
vim.keymap.set('n', '<space>f', function() vim.lsp.buf.format { async = true } end, bufopts)
end
local lsp_flags = {
-- This is the default in Nvim 0.7+
debounce_text_changes = 150,
}
require('lspconfig')['pyright'].setup{
on_attach = on_attach,
flags = lsp_flags,
}
require('lspconfig')['tsserver'].setup{
on_attach = on_attach,
flags = lsp_flags,
}
end
}

View File

@ -1,24 +0,0 @@
--local status_ok, nvim_treesitter = pcall(require, 'nvim-treesitter.configs')
--if not status_ok then
-- return
--end
return {
-- Treesitter interface
'nvim-treesitter/nvim-treesitter',
--build = ":TSUpdate"
config = function ()
require('nvim-treesitter.install').update({ with_sync = true })
-- A list of parser names, or "all"
ensure_installed = {
'bash', 'css', 'html', 'javascript', 'json', 'lua', 'python',
'vim', 'yaml', 'typescript', 'markdown',
}
sync_install = true
highlight = {
-- `false` will disable the whole extension
enable = true,
additional_vim_regex_highlighting = true,
}
end
}

View File

@ -1,14 +0,0 @@
return {
"folke/styler.nvim",
config = function()
require("styler").setup({
themes = {
markdown = { colorscheme = "tokyonight-storm" },
python = { colorscheme = "dracula" },
html = { colorscheme = "carbonfox" },
help = { colorscheme = "catppuccin-mocha", background = "dark" },
css = { colorscheme = "carbonfox" }
},
})
end,
}

View File

@ -1,161 +0,0 @@
return {
{
'nvim-telescope/telescope.nvim', tag = '0.1.1',
dependencies = {
'nvim-lua/plenary.nvim',
'nvim-telescope/telescope-live-grep-args.nvim',
},
config = function ()
local g = vim.g
local fb_actions = require "telescope".extensions.file_browser.actions
local themes = {
popup_list = {
theme = 'popup_list',
border = true,
preview = false,
prompt_title = false,
results_title = false,
sorting_strategy = 'ascending',
layout_strategy = 'center',
borderchars = {
prompt = { '', '', '', '', '', '', '', '' },
results = { '', '', '', '', '', '', '', '' },
preview = { '', '', '', '', '', '', '', '' },
},
},
popup_extended = {
theme = 'popup_extended',
prompt_title = false,
results_title = false,
layout_strategy = 'center',
layout_config = {
width = 0.7,
height = 0.3,
mirror = true,
preview_cutoff = 1,
},
borderchars = {
prompt = { '', '', ' ', '', '', '', '', '' },
results = { '', '', '', '', '', '', '', '' },
preview = { '', '', '', '', '', '', '', '' },
},
},
command_pane = {
theme = 'command_pane',
preview = false,
prompt_title = false,
results_title = false,
sorting_strategy = 'descending',
layout_strategy = 'bottom_pane',
layout_config = {
height = 13,
preview_cutoff = 1,
prompt_position = 'bottom'
},
},
ivy_plus = {
theme = 'ivy_plus',
preview = false,
prompt_title = false,
results_title = false,
layout_strategy = 'bottom_pane',
layout_config = {
height = 13,
preview_cutoff = 120,
prompt_position = 'bottom'
},
borderchars = {
prompt = { '', '', '', '', '', '', '', '' },
results = { '', '', '', '', '', '', '', '' },
preview = { '', '', ' ', ' ', '', '', '', ' ' },
},
},
}
local telescope_installer = require('telescope').setup({
defaults = {
border = true,
prompt_title = false,
results_title = false,
color_devicons = false,
layout_strategy = 'horizontal',
borderchars = {
prompt = { '', '', '', '', '', '', '', '' },
results = { '', '', '', '', '', '', '', '' },
preview = { '', '', '', '', '', '', '', '' },
},
layout_config = {
bottom_pane = {
height = 20,
preview_cutoff = 120,
prompt_position = 'top'
},
center = {
height = 0.4,
preview_cutoff = 40,
prompt_position = 'top',
width = 0.7
},
horizontal = {
prompt_position = 'top',
preview_cutoff = 40,
height = 0.9,
width = 0.8
}
},
sorting_strategy = 'ascending',
prompt_prefix = ' ',
selection_caret = '',
entry_prefix = ' ',
file_ignore_patterns = {'node_modules'},
path_display = { 'truncate' },
results_title = false,
prompt_title =false,
preview = {
treesitter = {
enable = {
'css', 'dockerfile', 'elixir', 'erlang', 'zsh',
'html', 'http', 'javascript', 'json', 'lua', 'php',
'python', 'regex', 'ruby', 'rust', 'scss',
'typescript', 'yaml', 'markdown', 'bash', 'c',
'cmake', 'comment', 'cpp', 'dart', 'go', 'jsdoc',
'json5', 'jsonc', 'llvm', 'make', 'ninja',
'todotxt', 'toml', 'help'
}
}
},
mappings = {
i = {
['<esc>'] = require('telescope.actions').close,
},
}
},
extensions = {
file_browser = {
mappings = {
["i"] = {
["<C-c>"] = fb_actions.create,
["<C-y>"] = fb_actions.copy,
["<C-r>"] = fb_actions.rename,
["<C-w>"] = fb_actions.goto_cwd,
["<C-o>"] = fb_actions.open,
["<C-d>"] = fb_actions.remove,
},
},
},
fzf = {
fuzzy = true, -- false will only do exact matching
override_generic_sorter = true, -- override the generic sorter
override_file_sorter = true, -- override the file sorter
case_mode = 'smart_case', -- other options: 'ignore_case' or 'respect_case'
}
}
})
require("telescope").load_extension "file_browser"
require("telescope").load_extension "mapper"
require("telescope").load_extension "live_grep_args"
require("telescope").load_extension "fzf"
end
}}

View File

@ -1,118 +0,0 @@
-- General Neovim settings and configuration
-----------------------------------------------------------
-----------------------------------------------------------
-- Neovim API aliases
-----------------------------------------------------------
local fn = vim.fn -- Call Vim functions
local cmd = vim.cmd -- Execute Vim commands
local exec = vim.api.nvim_exec -- Execute Vimscript
local g = vim.g -- Global variables
local opt = vim.opt -- Set options (global/buffer/windows-scoped)
local o = vim.o
-----------------------------------------------------------
-- General
-----------------------------------------------------------
g.mapleader = ',' -- Change leader to a comma
opt.mouse = 'a' -- Enable mouse support
opt.clipboard = 'unnamedplus' -- Copy/paste to system clipboard
opt.swapfile = false -- Don't use swapfile
opt.shadafile = "NONE"
opt.shadafile = ""
opt.shell = "/bin/zsh"
opt.updatetime = 200
opt.cursorline = true
g.markdown_folding = 1
opt.spell=true
opt.spelllang = 'en_us'
cmd [[ autocmd BufWritePre * :%s/\s\+$//e ]]
vim.api.nvim_set_hl(0, "ColorColumn", {guibg=lightmagenta})
o.showtabline = 2
-----------------------------------------------------------
-- Neovim UI
-----------------------------------------------------------
opt.number = true -- Show line number
opt.relativenumber = true -- Show Current Line with Relative numbers above and below cursor.
opt.showmatch = true -- Highlight matching parenthesis
opt.foldmethod = 'syntax' -- Enable folding (default 'foldmarker')
opt.colorcolumn = '100' -- Line length marker at 80 columns
opt.textwidth = 100
opt.splitright = true -- Vertical split to the right
opt.splitbelow = true -- Horizontal split to the bottom
opt.ignorecase = true -- Ignore case letters when search
opt.smartcase = true -- Ignore lowercase for the whole pattern
opt.linebreak = true -- Wrap on word boundary
opt.signcolumn = 'yes:2' -- Signs column always on, minimum 2.
opt.wrap = true
-----------------------------------------------------------
-- Memory, CPU
-----------------------------------------------------------
opt.hidden = true -- Enable background buffers
opt.history = 100 -- Remember N lines in historma:y
opt.lazyredraw = true -- Faster scrolling
opt.synmaxcol = 240 -- Max column for syntax highlight
-----------------------------------------------------------
-- Colorscheme
-----------------------------------------------------------
opt.termguicolors = true -- Enable 24-bit RGB colors
-----------------------------------------------------------
-- Tabs, indent
-----------------------------------------------------------
opt.expandtab = true -- Use spaces instead of tabs
opt.shiftwidth = 1 -- Shift 4 spaces when tab
opt.tabstop = 1 -- 1 tab == 4 spaces
opt.smartindent = true -- Autoindent new lines
-----------------------------------------------------------
-- Glow Settings
-----------------------------------------------------------
g.glow_binary_path = '/bin'
g.glow_border = 'rounded'
g.glow_width = 100
g.glow_use_pager = true
g.glow_style = 'light'
-----------------------------------------------------------
-- MKDX Settings, mkdx#settings.
-----------------------------------------------------------
-- 2 spaces for selected filetypes
cmd [[
autocmd FileType md,liquid,xml,html,xhtml,css,scss,javascript,lua,yaml setlocal shiftwidth=2 tabstop=8 noexpandtab
]]
local disabled_built_ins = {
"netrw",
"netrwPlugin",
"netrwSettings",
"netrwFileHandlers",
"gzip",
"zip",
"zipPlugin",
"tar",
"tarPlugin",
"getscript",
"getscriptPlugin",
"vimball",
"vimballPlugin",
"2html_plugin",
"logipat",
"rrhelper",
"spellfile_plugin",
"matchit"
}
for _, plugin in pairs(disabled_built_ins) do
vim.g["loaded_" .. plugin] = 1
end
--[[
Deletes all trailing whitespaces in a file if it's not binary nor a diff.
]]--
function _G.trim_trailing_whitespaces()
if not o.binary and o.filetype ~= 'diff' then
local current_view = fn.winsaveview()
cmd([[keeppatterns %s/\s\+$//e]])
fn.winrestview(current_view)
end
end

View File

@ -1,311 +0,0 @@
recert
gravatar
TODO
gravatars
webhook
Neovim
accomplished
accomplished
Talkspace
Northpass
CEU
th
B2B
Integrations
NPP
CSV
BBHR
onboarding
Kai
scorms
QMC
trainings
cancelled
Ummey
Ummey's
prev
Kaitlyn
CYA
programmatically
Wistia
iOS
PPT
Kaitlyn's
OneTrust
JS
Analytics
KPI
param
UUID
Pipedrive
pipedrive
Lukasz
Bjorn
webhooks
trackable
Pipedrive's
boolean
Kaisa
SSO
XP
DW
Chołodecki
Łukasz
Kotkas
Patrycja
Q1
Vidyard
badging
Flink
S3
Unclickable
DataDog
wistia
https
https
wifi
autoplaying
tbd
G2
SMEs
CSM
AEs
ZoomInfo's
linkedin
Enablement
enablement
DIY
Zoominfo
G2M
Carli
LevelJump
LMS
CMS
Lessonly
Katlin
nd
LT
EVP's
UX
Schoology
Pendo
Salesforce
ILTs
SFDC
ROI
NPS
roadmap
BigIdeasMath
Hubspot
analytics
SCORM
AWS
JnJ
DSAR
ons
Zapier
Accredible
LPs
Shopify
Callum
Chek
Chek
Chek
Chek
Chek
Chek
prereg
OpenAccess
Camila
SAP
SAP
Workato
Soner
Okta
Auth0
flink
goflink
backfill
Marek
KJ
Canva
Customizable
GoFlink
Cami
auth
Litmos
infographic
Nino's
Flink's
Crowdin
Joonas
QBR
UID
versioning
GDPR
Edume
something
something
AppCues
appcues
Skuad
Skuid
COO
Nergis
pdf
FiveTran
BigQuery
COO
NDA
lifecycle
PALs
LTV
Articulate's
Comms
ILT
Mockup
iFrame
Froala
html
css
resize
customizable
OpenSesame
timestamp
comms
Audrius
Youtube
Omnisend
northpass
Omnisend's
url
Hoc
exisiting
subdomains
iFrame
iFrame
iFrame
gifs
webview
Skuid's
reachs
JJSV
Todos
Phaco
Garg
codeblock
Aleksandr
Sten
v10
TOC
Nitty
KPIs
MAL
walmart
Segura
Luminate
gif
OneDrive
EOC
legistlation
todo
SCA
V2
Rock22
Figma
Foundational
Iorad
ish
Credly
Ritu
Kumar
Deeksha
Prajwal
Praveen
Rakesh
integrations
recomendations
personalization
SLAs
Devanathan
productize
accesss
devs
Sandipan
Kayla
discoverable
Trei
aways
Chronotype
zapier
WildHealth
dev
Shopify's
ProductIDs
Flupdates
availble
enrollees
automations
hoc
Baeligh
Moburley
Baeleigh
Gmail
WHAcademy
www
wildhealth
www
www
transformative
impactful
positivity
CSMs
Basecamp
PSRs
PSR
TSU
ChurnZero
Neste
SEO
oAuth
sso
learning
pre
Margus
pipedive
http
iFrame
learn
OM
duolingo
gamification
CIP
typeform
Trello
repo
Unific
AIIM
FOMO
Async
zendesk
centre
centres
consisently
LiveStorm
represneted
Jagannatha
Q2
Gainsight
unlinked
Gainsight's
RevOps
Heraly
Cherrill
LeanData
nitty
Planhat
Toothman
event
event
MJ
Wix

View File

@ -0,0 +1,22 @@
```
_ _ _
| \ | | (_)
| \| | ___ _ __ _ __ ___ __ __ _ _ __ ___
| . ` | / _ \ | '__|| '_ ` _ \\ \ / /| || '_ ` _ \
| |\ || (_) || | | | | | | |\ V / | || | | | | |
|_| \_| \___/ |_| |_| |_| |_| \_/ |_||_| |_| |_|
```
### Welcome to my setup
Most of the times I'm writing in Markdown or Python. I'll also manage my servers from a similar environment which is mostly yaml and bash scripts. Here's a few images.
![1](images/neovim1.png)
&nbsp;
![2](images/neovim2.png)
&nbsp;
![3](images/neovim3.png)
&nbsp;
![4](images/neovim4.png)
&nbsp;
![5](images/neovim5.png)

BIN
images/neovim1.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 184 KiB

BIN
images/neovim2.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 226 KiB

BIN
images/neovim3.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 345 KiB

BIN
images/neovim4.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 271 KiB

BIN
images/neovim5.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 269 KiB

View File

@ -1,33 +1,35 @@
local lazypath = vim.fn.stdpath("data") .. "/lazy/lazy.nvim" local lazypath = vim.fn.stdpath("data") .. "/lazy/lazy.nvim"
if not vim.loop.fs_stat(lazypath) then if not vim.loop.fs_stat(lazypath) then
vim.fn.system({ vim.fn.system({
"git", "git",
"clone", "clone",
"--filter=blob:none", "--filter=blob:none",
"https://github.com/folke/lazy.nvim.git", "https://github.com/folke/lazy.nvim.git",
"--branch=stable", -- latest stable release "--branch=stable", -- latest stable release
lazypath, lazypath,
}) })
end end
vim.opt.rtp:prepend(lazypath) vim.opt.rtp:prepend(lazypath)
vim.g.mapleader = ',' vim.g.mapleader = ','
vim.g.localmapleader = ',' vim.g.localmapleader = ','
vim.opt.textwidth = 85
vim.opt.colorcolumn = '+2'
require('lazy').setup('plugins') require('lazy').setup('plugins')
require('keymaps')
-----------------------------------------------------------
-- General Neovim settings and configuration -- General Neovim settings and configuration
----------------------------------------------------------- -----------------------------------------------------------
----------------------------------------------------------- -----------------------------------------------------------
-- Neovim API aliases -- Neovim API aliases
----------------------------------------------------------- -----------------------------------------------------------
local fn = vim.fn -- Call Vim functions local fn = vim.fn -- Call Vim functions
local cmd = vim.cmd -- Execute Vim commands local cmd = vim.cmd -- Execute Vim commands
local exec = vim.api.nvim_exec -- Execute Vimscript local exec = vim.api.nvim_exec -- Execute Vimscript
local g = vim.g -- Global variables local g = vim.g -- Global variables
local opt = vim.opt -- Set options (global/buffer/windows-scoped) local opt = vim.opt -- Set options (global/buffer/windows-scoped)
local o = vim.o local o = vim.o
----------------------------------------------------------- -----------------------------------------------------------
@ -43,25 +45,23 @@ opt.shell = "/bin/zsh"
opt.updatetime = 200 opt.updatetime = 200
opt.cursorline = true opt.cursorline = true
g.markdown_folding = 1 g.markdown_folding = 1
opt.spell=true -- opt.spell=true
opt.spelllang = 'en_us' opt.spelllang = 'en_us'
cmd [[ autocmd BufWritePre * :%s/\s\+$//e ]] cmd [[ autocmd BufWritePre * :%s/\s\+$//e ]]
-- vim.api.nvim_set_hl(0, "ColorColumn", {guibg=lightmagenta}) vim.api.nvim_set_hl(0, "ColorColumn", {guibg=DarkOrchid1})
----------------------------------------------------------- -----------------------------------------------------------
-- Neovim UI -- Neovim UI
----------------------------------------------------------- -----------------------------------------------------------
opt.number = true -- Show line number opt.number = true -- Show line number
opt.relativenumber = true -- Show Current Line with Relative numbers above and below cursor. opt.relativenumber = true -- Show Current Line with Relative numbers above and below cursor.
opt.showmatch = true -- Highlight matching parenthesis opt.showmatch = true -- Highlight matching parenthesis
opt.foldmethod = 'syntax' -- Enable folding (default 'foldmarker') opt.foldmethod = "syntax" -- Enable folding (default 'foldmarker')
opt.colorcolumn = '120' -- Line length marker at 80 columns
opt.textwidth = 120
opt.splitright = true -- Vertical split to the right opt.splitright = true -- Vertical split to the right
opt.splitbelow = true -- Horizontal split to the bottom opt.splitbelow = true -- Horizontal split to the bottom
opt.ignorecase = true -- Ignore case letters when search opt.ignorecase = true -- Ignore case letters when search
opt.smartcase = true -- Ignore lowercase for the whole pattern opt.smartcase = true -- Ignore lowercase for the whole pattern
opt.linebreak = true -- Wrap on word boundary opt.linebreak = true -- Wrap on word boundary
opt.signcolumn = 'yes:2' -- Signs column always on, minimum 2. opt.signcolumn = 'yes:1' -- Signs column always on, minimum 2.
opt.wrap = true opt.wrap = true
----------------------------------------------------------- -----------------------------------------------------------
@ -75,13 +75,12 @@ opt.synmaxcol = 240 -- Max column for syntax highlight
-- Colorscheme -- Colorscheme
----------------------------------------------------------- -----------------------------------------------------------
opt.termguicolors = true -- Enable 24-bit RGB colors opt.termguicolors = true -- Enable 24-bit RGB colors
cmd[[colorscheme dracula]]
----------------------------------------------------------- -----------------------------------------------------------
-- Tabs, indent -- Tabs, indent
----------------------------------------------------------- -----------------------------------------------------------
opt.expandtab = true -- Use spaces instead of tabs opt.expandtab = true -- Use spaces instead of tabs
opt.shiftwidth = 1 -- Shift 4 spaces when tab opt.shiftwidth = 4 -- Shift 4 spaces when tab
opt.tabstop = 1 -- 1 tab == 4 spaces opt.tabstop = 4 -- 1 tab == 4 spaces
opt.smartindent = true -- Autoindent new lines opt.smartindent = true -- Autoindent new lines
----------------------------------------------------------- -----------------------------------------------------------
-- Glow Settings -- Glow Settings
@ -137,7 +136,7 @@ function _G.trim_trailing_whitespaces()
end end
-- see https://github.com/hrsh7th/nvim-cmp/wiki/Menu-Appearance#how-to-add-visual-studio-code-dark-theme-colors-to-the-menu -- see https://github.com/hrsh7th/nvim-cmp/wiki/Menu-Appearance#how-to-add-visual-studio-code-dark-theme-colors-to-the-menu
vim.cmd[[ --[[vim.cmd[[
highlight! link CmpItemMenu Comment highlight! link CmpItemMenu Comment
" gray " gray
highlight! CmpItemAbbrDeprecated guibg=NONE gui=strikethrough guifg=#808080 highlight! CmpItemAbbrDeprecated guibg=NONE gui=strikethrough guifg=#808080
@ -156,4 +155,7 @@ vim.cmd[[
highlight! CmpItemKindProperty guibg=NONE guifg=#D4D4D4 highlight! CmpItemKindProperty guibg=NONE guifg=#D4D4D4
highlight! CmpItemKindUnit guibg=NONE guifg=#D4D4D4 highlight! CmpItemKindUnit guibg=NONE guifg=#D4D4D4
]] ]]
--]]
require('core/keymaps')
vim.cmd[[colorscheme moonlight]]

View File

@ -1,67 +1,75 @@
{ {
"LuaSnip": { "branch": "master", "commit": "500981ff6cefc7343e3959ef0f939bd0bfd49ba9" }, "LuaSnip": { "branch": "master", "commit": "0b4950a237ce441a6a3a947d501622453f6860ea" },
"alpha-nvim": { "branch": "main", "commit": "9e33db324b8bb7a147bce9ea5496686ee859461d" }, "adjacent.nvim": { "branch": "main", "commit": "a555ab92d61aa6fbbfa1bfaef4633b663563f04e" },
"alpha-nvim": { "branch": "main", "commit": "5f211a1597b06be24b1600d72a62b94cab1e2df9" },
"auto-hlsearch.nvim": { "branch": "main", "commit": "8f28246d53e9478717ca3b51c8112083fbebd7e3" }, "auto-hlsearch.nvim": { "branch": "main", "commit": "8f28246d53e9478717ca3b51c8112083fbebd7e3" },
"barbar.nvim": { "branch": "master", "commit": "b8ca6076f75e49cca1fa0288c080f3d10ec2152c" }, "barbar.nvim": { "branch": "master", "commit": "dd852401ee902745b67fc09a83d113b3fe82a96f" },
"cmp-buffer": { "branch": "main", "commit": "3022dbc9166796b644a841a02de8dd1cc1d311fa" }, "cmp-buffer": { "branch": "main", "commit": "3022dbc9166796b644a841a02de8dd1cc1d311fa" },
"cmp-cmdline": { "branch": "main", "commit": "8ee981b4a91f536f52add291594e89fb6645e451" }, "cmp-cmdline": { "branch": "main", "commit": "8ee981b4a91f536f52add291594e89fb6645e451" },
"cmp-nvim-lsp": { "branch": "main", "commit": "0e6b2ed705ddcff9738ec4ea838141654f12eeef" }, "cmp-nvim-lsp": { "branch": "main", "commit": "44b16d11215dce86f253ce0c30949813c0a90765" },
"cmp-nvim-lsp-signature-help": { "branch": "main", "commit": "3d8912ebeb56e5ae08ef0906e3a54de1c66b92f1" }, "cmp-nvim-lsp-signature-help": { "branch": "main", "commit": "3d8912ebeb56e5ae08ef0906e3a54de1c66b92f1" },
"cmp-path": { "branch": "main", "commit": "91ff86cd9c29299a64f968ebb45846c485725f23" }, "cmp-path": { "branch": "main", "commit": "91ff86cd9c29299a64f968ebb45846c485725f23" },
"cmp-spell": { "branch": "master", "commit": "60584cb75e5e8bba5a0c9e4c3ab0791e0698bffa" }, "cmp-spell": { "branch": "master", "commit": "60584cb75e5e8bba5a0c9e4c3ab0791e0698bffa" },
"cmp-under-comparator": { "branch": "master", "commit": "6857f10272c3cfe930cece2afa2406e1385bfef8" },
"cmp_luasnip": { "branch": "master", "commit": "18095520391186d634a0045dacaa346291096566" }, "cmp_luasnip": { "branch": "master", "commit": "18095520391186d634a0045dacaa346291096566" },
"deadcolumn.nvim": { "branch": "master", "commit": "b9b5e237371ae5379e280e4df9ecf62e4bc8d7a5" }, "deadcolumn.nvim": { "branch": "master", "commit": "b9b5e237371ae5379e280e4df9ecf62e4bc8d7a5" },
"diffview.nvim": { "branch": "main", "commit": "7e5a85c186027cab1e825d018f07c350177077fc" },
"distant.nvim": { "branch": "v0.2", "commit": "9dd21f8fa25795e56756e1ea27a1586ceee35582" }, "distant.nvim": { "branch": "v0.2", "commit": "9dd21f8fa25795e56756e1ea27a1586ceee35582" },
"dracula.nvim": { "branch": "main", "commit": "9fe831e685a76e1a1898a694623b33247c4d036c" },
"f-string-toggle.nvim": { "branch": "main", "commit": "383ca5c08ed001f7c1632ba752c14e7bb88ce6ed" },
"feline.nvim": { "branch": "master", "commit": "d48b6f92c6ccdd6654c956f437be49ea160b5b0c" }, "feline.nvim": { "branch": "master", "commit": "d48b6f92c6ccdd6654c956f437be49ea160b5b0c" },
"friendly-snippets": { "branch": "main", "commit": "b71d1ddc30a10ce0474156f7ee93bc9006d0cd74" }, "friendly-snippets": { "branch": "main", "commit": "00e191fea2cfbbdd378243f35b5953296537a116" },
"gitsigns.nvim": { "branch": "main", "commit": "4455bb5364d29ff86639dfd5533d4fe4b48192d4" }, "gitsigns.nvim": { "branch": "main", "commit": "44adf808ace6cb65a3353bd61fa585a2d8fe0db3" },
"glow.nvim": { "branch": "main", "commit": "bbd0473d72a45094495ee5600b5577823543eefe" }, "glow.nvim": { "branch": "main", "commit": "5b38fb7b6e806cac62707a4aba8c10c5f14d5bb5" },
"headlines.nvim": { "branch": "master", "commit": "ddef41b2664f0ce25fe76520d708e2dc9dfebd70" }, "headlines.nvim": { "branch": "master", "commit": "74a083a3c32a08be24f7dfcc6f448ecf47857f46" },
"indent-blankline.nvim": { "branch": "master", "commit": "7075d7861f7a6bbf0de0298c83f8a13195e6ec01" }, "indent-blankline.nvim": { "branch": "master", "commit": "9637670896b68805430e2f72cf5d16be5b97a22a" },
"lazy.nvim": { "branch": "main", "commit": "678179543e0d27650c328d8659f2c2cab4d854ef" }, "lazy.nvim": { "branch": "main", "commit": "2a9354c7d2368d78cbd5575a51a2af5bd8a6ad01" },
"lsp-colors.nvim": { "branch": "main", "commit": "2bbe7541747fd339bdd8923fc45631a09bb4f1e5" }, "lsp-colors.nvim": { "branch": "main", "commit": "2bbe7541747fd339bdd8923fc45631a09bb4f1e5" },
"lualine.nvim": { "branch": "master", "commit": "05d78e9fd0cdfb4545974a5aa14b1be95a86e9c9" }, "lualine.nvim": { "branch": "master", "commit": "45e27ca739c7be6c49e5496d14fcf45a303c3a63" },
"markdown-preview.nvim": { "branch": "master", "commit": "02cc3874738bc0f86e4b91f09b8a0ac88aef8e96" }, "markdown-preview.nvim": { "branch": "master", "commit": "02cc3874738bc0f86e4b91f09b8a0ac88aef8e96" },
"mason-lspconfig.nvim": { "branch": "main", "commit": "5230617372e656d4a2e1e236e03bf7e7b4b97273" }, "mason-lspconfig.nvim": { "branch": "main", "commit": "dfdd771b792fbb4bad8e057d72558255695aa1a7" },
"mason.nvim": { "branch": "main", "commit": "7d7efc738e08fc5bee822857db45cb6103f0b0c1" }, "mason-null-ls.nvim": { "branch": "main", "commit": "ae0c5fa57468ac65617f1bf821ba0c3a1e251f0c" },
"mason.nvim": { "branch": "main", "commit": "0942198fb9a998b6ccee36fb8dd7495eb8ba659c" },
"mini.comment": { "branch": "main", "commit": "877acea5b2a32ff55f808fc0ebe9aa898648318c" }, "mini.comment": { "branch": "main", "commit": "877acea5b2a32ff55f808fc0ebe9aa898648318c" },
"mini.fuzzy": { "branch": "stable", "commit": "295763d73cbf580c27a4419364c47b09fc82e0f4" }, "mini.fuzzy": { "branch": "stable", "commit": "295763d73cbf580c27a4419364c47b09fc82e0f4" },
"mini.move": { "branch": "main", "commit": "3afd39873eb9171684e554a214c055482444a47d" }, "mini.move": { "branch": "main", "commit": "3afd39873eb9171684e554a214c055482444a47d" },
"mini.pairs": { "branch": "stable", "commit": "963b800d0524eadd297199207011b98684205ada" }, "mini.pairs": { "branch": "stable", "commit": "963b800d0524eadd297199207011b98684205ada" },
"mini.surround": { "branch": "main", "commit": "eeaf96562947f75afa51a6266e066529369ca7ef" }, "mini.surround": { "branch": "main", "commit": "eeaf96562947f75afa51a6266e066529369ca7ef" },
"mini.trailspace": { "branch": "main", "commit": "c41ab1035d184ff20c1aebd76639320c055afebe" }, "mini.trailspace": { "branch": "main", "commit": "c41ab1035d184ff20c1aebd76639320c055afebe" },
"mkdnflow.nvim": { "branch": "main", "commit": "5a9768fe09c614600fd2881f29c5cedf931f3e36" }, "mkdnflow.nvim": { "branch": "main", "commit": "a728a3533bb57502fdfd6fdb4e5839fc87430edc" },
"moonfly": { "branch": "master", "commit": "8f2b6b97ae5ba1090229c4eb842cbc912d7ffb65" }, "moonfly": { "branch": "master", "commit": "1e81cbb88a34c41572fde43cd633bd6d60727274" },
"neoscroll.nvim": { "branch": "master", "commit": "d7601c26c8a183fa8994ed339e70c2d841253e93" }, "neorg": { "branch": "main", "commit": "064f8f65dd32f4fe728e76acfa3e4e153b121147" },
"neovim": { "branch": "main", "commit": "6b7b38bbb3dac648dbf81f2728ce1101f476f920" }, "neorg-templates": { "branch": "main", "commit": "1078ced1f995cc053cdb10b51bd5e5dd5d76f78a" },
"nightfox.nvim": { "branch": "main", "commit": "77aa7458d2b725c2d9ff55a18befe1b891ac473e" }, "neoscroll.nvim": { "branch": "master", "commit": "4bc0212e9f2a7bc7fe7a6bceb15b33e39f0f41fb" },
"null-ls.nvim": { "branch": "main", "commit": "a138b14099e9623832027ea12b4631ddd2a49256" }, "neovim": { "branch": "main", "commit": "e29002cbee4854a9c8c4b148d8a52fae3176070f" },
"nvim": { "branch": "main", "commit": "2df7036c5c303c9184869936e40ca18935e4afcb" }, "nightfox.nvim": { "branch": "main", "commit": "a48f6d9a0273101df76eb25d2f5477baa277f935" },
"nvim-cmp": { "branch": "main", "commit": "09ff53ff579cfa3368f8051b0dbe88406891aabe" }, "null-ls.nvim": { "branch": "main", "commit": "0010ea927ab7c09ef0ce9bf28c2b573fc302f5a7" },
"nvim-dap": { "branch": "master", "commit": "7c1d47cf7188fc31acdf951f9eee22da9d479152" }, "numb.nvim": { "branch": "master", "commit": "3f7d4a74bd456e747a1278ea1672b26116e0824d" },
"nvim": { "branch": "main", "commit": "2e3e5ebcdc24ef0d5b14a0a999dbbe7936512c46" },
"nvim-cmp": { "branch": "main", "commit": "5dce1b778b85c717f6614e3f4da45e9f19f54435" },
"nvim-dap": { "branch": "master", "commit": "31e1ece773e10448dcb616d5144290946a6264b7" },
"nvim-dap-python": { "branch": "master", "commit": "37b4cba02e337a95cb62ad1609b3d1dccb2e5d42" }, "nvim-dap-python": { "branch": "master", "commit": "37b4cba02e337a95cb62ad1609b3d1dccb2e5d42" },
"nvim-dap-ui": { "branch": "master", "commit": "c020f660b02772f9f3d11f599fefad3268628a9e" }, "nvim-dap-ui": { "branch": "master", "commit": "85b16ac2309d85c88577cd8ee1733ce52be8227e" },
"nvim-lspconfig": { "branch": "master", "commit": "08f1f347c718e945c3b1712ebb68c6834182cf3a" }, "nvim-lspconfig": { "branch": "master", "commit": "a27356f1ef9c11e1f459cc96a3fcac5c265e72d6" },
"nvim-mapper": { "branch": "main", "commit": "baad83aad85d420cce24dd60106114421ed59039" },
"nvim-notify": { "branch": "master", "commit": "ea9c8ce7a37f2238f934e087c255758659948e0f" }, "nvim-notify": { "branch": "master", "commit": "ea9c8ce7a37f2238f934e087c255758659948e0f" },
"nvim-tree.lua": { "branch": "master", "commit": "034511714bacfadc5008e49f73fcef67e5613840" }, "nvim-tree.lua": { "branch": "master", "commit": "00741206c2df9c4b538055def19b99790f0c95c8" },
"nvim-treesitter": { "branch": "master", "commit": "f9d701176cb9a3e206a4c690920a8993630c3ec8" }, "nvim-treesitter": { "branch": "master", "commit": "691d73287a94e8ed82a383df82aabfe77ab4bcaa" },
"nvim-web-devicons": { "branch": "master", "commit": "2a125024a137677930efcfdf720f205504c97268" }, "nvim-web-devicons": { "branch": "master", "commit": "cfc8824cc1db316a276b36517f093baccb8e799a" },
"plenary.nvim": { "branch": "master", "commit": "499e0743cf5e8075cd32af68baa3946a1c76adf1" }, "plenary.nvim": { "branch": "master", "commit": "0dbe561ae023f02c2fb772b879e905055b939ce3" },
"popup.nvim": { "branch": "master", "commit": "b7404d35d5d3548a82149238289fa71f7f6de4ac" }, "popup.nvim": { "branch": "master", "commit": "b7404d35d5d3548a82149238289fa71f7f6de4ac" },
"sidebar.nvim": { "branch": "main", "commit": "990ce5f562c9125283ccac5473235b1a56fea6dc" }, "sidebar.nvim": { "branch": "main", "commit": "990ce5f562c9125283ccac5473235b1a56fea6dc" },
"starry.nvim": { "branch": "master", "commit": "9c4f8669acb302300e1495d4b1f1e618524a48f4" }, "starry.nvim": { "branch": "master", "commit": "f189b1026ef11ab61185a4bb35baf72106a624de" },
"styler.nvim": { "branch": "main", "commit": "58d0d12191adee41fce7ef20d46d1203efa0d11e" },
"symbols-outline.nvim": { "branch": "master", "commit": "512791925d57a61c545bc303356e8a8f7869763c" }, "symbols-outline.nvim": { "branch": "master", "commit": "512791925d57a61c545bc303356e8a8f7869763c" },
"telescope-file-browser.nvim": { "branch": "master", "commit": "fc70589a93d7bb42f4671ad75c8628a29995bcbe" }, "telescope-file-browser.nvim": { "branch": "master", "commit": "ad7b637c72549713b9aaed7c4f9c79c62bcbdff0" },
"telescope-fzf-native.nvim": { "branch": "main", "commit": "9bc8237565ded606e6c366a71c64c0af25cd7a50" }, "telescope-fzf-native.nvim": { "branch": "main", "commit": "9bc8237565ded606e6c366a71c64c0af25cd7a50" },
"telescope-live-grep-args.nvim": { "branch": "master", "commit": "0f75ea809c46af8997c64f49c52e3c641d887885" }, "telescope-live-grep-args.nvim": { "branch": "master", "commit": "851c0997d55601f2afd7290db0f90dc364e29f58" },
"telescope.nvim": { "branch": "master", "commit": "c1a2af0af69e80e14e6b226d3957a064cd080805" }, "telescope.nvim": { "branch": "master", "commit": "c1a2af0af69e80e14e6b226d3957a064cd080805" },
"tmux.nvim": { "branch": "main", "commit": "03e28fdaa2ef54b975ba1930f1e69b5e231dedc9" }, "tmux.nvim": { "branch": "main", "commit": "cb12b31a6b8aea1b39e4735ed70f7c73c2a938b0" },
"todo-comments.nvim": { "branch": "main", "commit": "09b0b17d824d2d56f02ff15967e8a2499a89c731" }, "todo-comments.nvim": { "branch": "main", "commit": "3094ead8edfa9040de2421deddec55d3762f64d1" },
"tokyonight.nvim": { "branch": "main", "commit": "161114bd39b990995e08dbf941f6821afbdcd666" }, "toggleterm.nvim": { "branch": "main", "commit": "b90a1381e9b5b8596f49070ee86c71db267ac868" },
"trouble.nvim": { "branch": "main", "commit": "2af0dd9767526410c88c628f1cbfcb6cf22dd683" }, "tokyonight.nvim": { "branch": "main", "commit": "9a01eada39558dc3243278e6805d90e8dff45dc0" },
"vim-arduino": { "branch": "master", "commit": "b2573b094ec301f2874b7ae3ec0e8806f8fb5e0e" }, "trouble.nvim": { "branch": "main", "commit": "3f85d8ed30e97ceeddbbcf80224245d347053711" },
"vim-wakatime": { "branch": "master", "commit": "018fa9a80c27ccf2a8967b9e27890372e5c2fb4f" }, "vim-arduino": { "branch": "master", "commit": "111db616db21d4f925691f1517792953f7671647" },
"which-key.nvim": { "branch": "main", "commit": "e271c28118998c93a14d189af3395812a1aa646c" } "vim-wakatime": { "branch": "master", "commit": "0d2efa2daff34b27b0d227d4c3b136811c93db93" },
"which-key.nvim": { "branch": "main", "commit": "7ccf476ebe0445a741b64e36c78a682c1c6118b7" }
} }

View File

@ -0,0 +1,80 @@
-----------------------------------------------------------
-- Keymaps of Neovim and installed plugins
-----------------------------------------------------------
local map = vim.api.nvim_set_keymap
local default_opts = { noremap = true, silent = true }
-- Fast saving with <leader> and s
map('n', '<leader>s', ':w<CR>', default_opts)
map('n', '<leader>a', ':w|:luafile %<CR>', default_opts)
map('n', '<leader>aa', ':w|:luafile %<CR> |:Lazy<CR>', default_opts)
map('i', '<leader>s', '<C-c>:w<CR>', default_opts)
-- Python Script that saves the file & moves Todos to my Todolist.
map('n', '<leader>sd', ':w|:! python3 ~/Documents/Northpass/Scripts/TodoMD/todo.py %<CR>', default_opts)
-- Neovim Tab Navgation via Vem-Tabline
map('n', '<leader>t', ':tabnew<CR>', default_opts)
map('n', '<leader>e', ':bnext<CR>', default_opts)
map('n', '<leader>w', ':bprev<CR>', default_opts)
map('n', '<leader>d', ':bdelete<CR>', default_opts)
map('n', '<leader>r', '<Plug>vem_move_buffer_right', default_opts)
map('n', '<leader>q', '<Plug>vem_move_buffer_left', default_opts)
-- Nvim-Tree
map('n', '<leader>v', ':NvimTreeToggle<CR>', default_opts)
-- Nvim Sidebar
map('n', '<leader>n', ':SidebarNvimToggle<CR>', default_opts)
map('n', '<leader>q', ':SidebarNvimUpdate<CR>', default_opts)
-- Telescope
map('n', '<leader>ff', ':Telescope find_files<CR>', default_opts)
map('n', '<leader>fg', ':Telescope live_grep<CR>', default_opts)
map('n', '<leader>fb', ':Telescope buffers<CR>', default_opts)
map('n', '<leader>fe', ':Telescope file_browser<CR>', default_opts)
map('n', '<leader>fk', ':Telescope keymaps<CR>', default_opts)
map('n', '<leader>fa', ':Telescope adjacent<CR>', default_opts)
-- Formatting
map('n', '<leader>b', ':! black %<CR>', default_opts)
map('n', '<leader>m', ':! markdownlint -f %<CR>', default_opts)
------------------------------------------------
-- Old Keymaps from Nvim-Mapper (Sunsetted)
------------------------------------------------
--[[
-- Macros for Todo Trouble
M('n', '<C-t>', "@t<CR>", default_opts,
"Add Todo", "todo_todo", "Add To-do/Task to the beginning of the line"
)
M('n', '<C-s>', "@s<CR>", default_opts,
"Add Solutions Engineering", "todo_seng", "Add Solutions Engineering to the beginning of the line"
)
M('n', '<C-f>', "@f<CR>", default_opts,
"Add Feature", "add_feat", "Add Feature Request tag to the beginning of the line. "
)
M( 'n', '<C-x>', "@c<CR>", default_opts,
"Replace with Complete", "add_complete", "Replace tag with Complete tag at beginning of the line."
)
M('n', '<C-r>', "@w<CR>", default_opts,
"Add Warning/Error", "add_error", "Add Warning/Error tag at the beginning of the line."
)
M('n', '<leader>ce', ":TodoTrouble keywords=TODO<CR>", default_opts,
"Show Todo Tags", "show_todos", "Show Todo Tags."
)
M('n', '<leader>cf', ":TodoTrouble keywords=FEAT<CR>", default_opts,
"Show Feature Tags", "show_features", "Show Feature Requests."
)
M('n', '<leader>cq', ":TodoTrouble keywords=ERROR, WARN<CR>", default_opts,
"Show Warning Tags", "show_warnings", "Show Errors Tags."
)
--]]

View File

@ -1,33 +1,15 @@
local lazypath = vim.fn.stdpath("data") .. "/lazy/lazy.nvim" -----------------------------------------------------------
if not vim.loop.fs_stat(lazypath) then
vim.fn.system({
"git",
"clone",
"--filter=blob:none",
"https://github.com/folke/lazy.nvim.git",
"--branch=stable", -- latest stable release
lazypath,
})
end
vim.opt.rtp:prepend(lazypath)
vim.g.mapleader = ','
vim.g.localmapleader = ','
require('lazy').setup('plugins')
require('keymaps')
-- General Neovim settings and configuration -- General Neovim settings and configuration
----------------------------------------------------------- -----------------------------------------------------------
----------------------------------------------------------- -----------------------------------------------------------
-- Neovim API aliases -- Neovim API aliases
----------------------------------------------------------- -----------------------------------------------------------
local fn = vim.fn -- Call Vim functions local fn = vim.fn -- Call Vim functions
local cmd = vim.cmd -- Execute Vim commands local cmd = vim.cmd -- Execute Vim commands
local exec = vim.api.nvim_exec -- Execute Vimscript local exec = vim.api.nvim_exec -- Execute Vimscript
local g = vim.g -- Global variables local g = vim.g -- Global variables
local opt = vim.opt -- Set options (global/buffer/windows-scoped) local opt = vim.opt -- Set options (global/buffer/windows-scoped)
local o = vim.o local o = vim.o
----------------------------------------------------------- -----------------------------------------------------------
@ -46,22 +28,24 @@ g.markdown_folding = 1
opt.spell=true opt.spell=true
opt.spelllang = 'en_us' opt.spelllang = 'en_us'
cmd [[ autocmd BufWritePre * :%s/\s\+$//e ]] cmd [[ autocmd BufWritePre * :%s/\s\+$//e ]]
-- vim.api.nvim_set_hl(0, "ColorColumn", {guibg=lightmagenta}) --vim.api.nvim_set_hl(0, "ColorColumn", {guibg=lightmagenta})
----------------------------------------------------------- -----------------------------------------------------------
-- Neovim UI -- Neovim UI
----------------------------------------------------------- -----------------------------------------------------------
opt.number = true -- Show line number opt.number = true -- Show line number
opt.relativenumber = true -- Show Current Line with Relative numbers above and below cursor. opt.relativenumber = true -- Show Current Line with Relative numbers above and below cursor.
opt.showmatch = true -- Highlight matching parenthesis opt.showmatch = true -- Highlight matching parenthesis
opt.foldmethod = 'syntax' -- Enable folding (default 'foldmarker') opt.foldmethod = "syntax" -- Enable folding (default 'foldmarker')
opt.colorcolumn = '120' -- Line length marker at 80 columns opt.colorcolumn = '99'
opt.textwidth = 120 opt.textwidth = 100
-- opt.cc = '+1,+2,+3' -- Line length marker at 80 columns
-- opt.tw = 120
opt.splitright = true -- Vertical split to the right opt.splitright = true -- Vertical split to the right
opt.splitbelow = true -- Horizontal split to the bottom opt.splitbelow = true -- Horizontal split to the bottom
opt.ignorecase = true -- Ignore case letters when search opt.ignorecase = true -- Ignore case letters when search
opt.smartcase = true -- Ignore lowercase for the whole pattern opt.smartcase = true -- Ignore lowercase for the whole pattern
opt.linebreak = true -- Wrap on word boundary opt.linebreak = true -- Wrap on word boundary
opt.signcolumn = 'yes:2' -- Signs column always on, minimum 2. opt.signcolumn = 'yes:1' -- Signs column always on, minimum 2.
opt.wrap = true opt.wrap = true
----------------------------------------------------------- -----------------------------------------------------------
@ -80,8 +64,8 @@ cmd[[colorscheme dracula]]
-- Tabs, indent -- Tabs, indent
----------------------------------------------------------- -----------------------------------------------------------
opt.expandtab = true -- Use spaces instead of tabs opt.expandtab = true -- Use spaces instead of tabs
opt.shiftwidth = 1 -- Shift 4 spaces when tab opt.shiftwidth = 4 -- Shift 4 spaces when tab
opt.tabstop = 1 -- 1 tab == 4 spaces opt.tabstop = 4 -- 1 tab == 4 spaces
opt.smartindent = true -- Autoindent new lines opt.smartindent = true -- Autoindent new lines
----------------------------------------------------------- -----------------------------------------------------------
-- Glow Settings -- Glow Settings

View File

@ -1,126 +0,0 @@
-----------------------------------------------------------
-- Keymaps of Neovim and installed plugins
-----------------------------------------------------------
local map = vim.api.nvim_set_keymap
local default_opts = { noremap = true, silent = true }
-- Fast saving with <leader> and s
map('n', '<leader>s', ':w<CR>', default_opts)
map('n', '<leader>a', ':w|:luafile %<CR>', default_opts)
map('n', '<leader>aa', ':w|:luafile %<CR> |:PackerSync<CR>', default_opts)
map('i', '<leader>s', '<C-c>:w<CR>', default_opts)
-- Python Script that saves the file & moves Todos to my Todolist.
map('n', '<leader>sd', ':w|:! python3 ~/Documents/Northpass/Scripts/TodoMD/todo.py %<CR>', default_opts)
-- Neovim Tab Navgation via Vem-Tabline
map('n', '<leader>t', ':tabnew<CR>', default_opts)
map('n', '<leader>e', ':bnext<CR>', default_opts)
map('n', '<leader>w', ':bprev<CR>', default_opts)
map('n', '<leader>d', ':bdelete<CR>', default_opts)
map('n', '<leader>r', '<Plug>vem_move_buffer_right', default_opts)
map('n', '<leader>q', '<Plug>vem_move_buffer_left', default_opts)
-----------------------------------------------------------
-- Applications and Plugins shortcuts
-----------------------------------------------------------
-----------------------------------------------------------
-- Telescope Keymaps
-----------------------------------------------------------
-- For Neovim >= 0.7.0
Mapper = require("nvim-mapper")
local M = Mapper.map
local default_opts = {noremap=true, silent=true}
-- Sidebar
M('n', '<leader>n', ':SidebarNvimToggle<CR>', default_opts,
"Sidebar Toggle", "sidebar-toggle", "Open or Close Sidebar"
)
M('n', '<leader>q', ':SidebarNvimUpdate<CR>', default_opts,
"Sidebar Update", "sidebar-update", "Refresh the Sidebar"
)
--[[ Sidebar Resize
M('n', '<leader>=', ':SidebarNvimResize +1<CR>', default_opts,
"Sidebar +1", "sidebar-plus1", "Sidebar Bigger by one"
)
M('n', '<leader>-', ':SidebarNvimResize -1<CR>', default_opts,
"Sidebar -1", "sidebar-minus1", "Sidebar Smaller by one"
)
M('n', '<leader>==', ':SidebarNvimResize +10<CR>', default_opts,
"Sidebar +10", "sidebar-plus10", "Sidebar Bigger by 10"
)
M('n', '<leader>--', ':SidebarNvimResize -10<CR>', default_opts,
"Sidebar -10", "sidebar-minus10", "Sidebar Smaller by 10"
)--]]
-- Lazy Git
M('n', '<leader>lg', ":LazyGit<CR>", default_opts,
"Lazy Git", "lazy-git", "Show Lazy Git"
)
-- Markdown Preview Toggle
M('n', '<leader>P', ":MarkdownPreview<CR>", default_opts,
"Markdown Preview", "md_preview", "Display Markdown preview in browser"
)
-- Telescope Options
M('n', '<leader>ff', ':Telescope find_files<CR>', default_opts,
"Find Files", "find-files", "Find Files in Telescope pop-up"
)
M('n', '<leader>fg', ':Telescope live_grep<CR>', default_opts,
"Live Grep", "live-grep", "Grep Files in Telescope pop-up"
)
M('n', '<leader>fb', ':Telescope buffers<CR>', default_opts,
"Buffers", "buffers", "See Buffers in Telescope pop-up"
)
M('n', '<leader>fe', ":Telescope file_browser<CR>", default_opts,
"Telescope Files", "telescope-file-browser", "Find files and directories in telescope"
)
M('n', '<C-t>', "@t<CR>", default_opts,
"Add Todo", "todo_todo", "Add To-do/Task to the beginning of the line"
)
M('n', '<C-s>', "@s<CR>", default_opts,
"Add Solutions Engineering", "todo_seng", "Add Solutions Engineering to the beginning of the line"
)
M('n', '<C-f>', "@f<CR>", default_opts,
"Add Feature", "add_feat", "Add Feature Request tag to the beginning of the line. "
)
M( 'n', '<C-x>', "@c<CR>", default_opts,
"Replace with Complete", "add_complete", "Replace tag with Complete tag at beginning of the line."
)
M('n', '<C-r>', "@w<CR>", default_opts,
"Add Warning/Error", "add_error", "Add Warning/Error tag at the beginning of the line."
)
M('n', '<leader>ce', ":TodoTrouble keywords=TODO<CR> | :resize +10<CR>", default_opts,
"Show Todo Tags", "show_todos", "Show Todo Tags."
)
M('n', '<leader>cf', ":TodoTrouble keywords=FEAT<CR>", default_opts,
"Show Feature Tags", "show_features", "Show Feature Requests."
)
M('n', '<leader>cq', ":TodoTrouble keywords=ERROR, WARN<CR>", default_opts,
"Show Warning Tags", "show_warnings", "Show Errors Tags."
)
M('n', '<leader>b', ":! black %<CR>", default_opts,
"Black Formatting", "black_current_file", "Use Black Formatting on Current File."
)
M('n', '<leader>m', ":! markdownlint -f %<CR>", default_opts,
"Markdownlint", "md_lint_format", "Use mdlint Formatting on Current File."
)
M('n', '<leader>r30', ":resize 30<CR>", default_opts,
"Resize30", "resize_30", "Resize Window to #30"
)

View File

@ -1,6 +1,5 @@
return { return {
---------------------------------------------------------------- ----------------------------------------------------------------
-- LSP and Autocomplete Plugins -- LSP and Autocomplete Plugins
-- They should be pulled first! -- They should be pulled first!
----------------------------------------------------------------- -----------------------------------------------------------------
@ -22,27 +21,18 @@ return {
}, },
{ 'neovim/nvim-lspconfig' }, { 'neovim/nvim-lspconfig' },
-- Manage all your Keymaps!
{ {
"gregorias/nvim-mapper", 'L3MON4D3/LuaSnip', version = "2.0.0",
config = function() require("nvim-mapper").setup{} end, build = "make install_jsregexp",
before = "telescope.nvim" dependencies = { "friendly-snippets" },
}, },
{ {"ellisonleao/glow.nvim", config = function() require("glow").setup() end },
'L3MON4D3/LuaSnip', version = "1.2.1",
dependencies = { "friendly-snippets" },
-- {
-- 'bennypowers/nvim-regexplainer',
-- dependencies = {
-- 'nvim-treesitter/nvim-treesitter',
-- 'MunifTanjim/nui.nvim',
-- },
-- config = function() require('regexplainer').setup{} end,
-- },
},
'saadparwaiz1/cmp_luasnip', 'saadparwaiz1/cmp_luasnip',
'hrsh7th/cmp-nvim-lsp-signature-help', 'hrsh7th/cmp-nvim-lsp-signature-help',
'lukas-reineke/cmp-under-comparator',
{ {
'asiryk/auto-hlsearch.nvim', 'asiryk/auto-hlsearch.nvim',
version = "1.1.0", version = "1.1.0",
@ -52,8 +42,20 @@ return {
------------------------------------------------------------ ------------------------------------------------------------
-- General Functionality -- General Functionality
------------------------------------------------------------ ------------------------------------------------------------
{ 'MaximilianLloyd/adjacent.nvim' },
{ 'stevearc/vim-arduino'},
{ 'sindrets/diffview.nvim' },
{ {
'stevearc/vim-arduino' 'nacro90/numb.nvim',
config = function() require('numb').setup{
show_cursorline = false,
show_numbers = false, -- Enable 'number' for the window while peeking
hide_relativenumbers = false, -- Enable turning off 'relativenumber' for the window while peeking
number_only = true, -- Peek only when the command is only a number instead of when it starts with a number
centered_peeking = true,
}
end,
}, },
{ {
'nvim-lualine/lualine.nvim', 'nvim-lualine/lualine.nvim',
@ -62,13 +64,33 @@ return {
options = { theme = 'palenight' } options = { theme = 'palenight' }
} end, } end,
}, },
-- Nvim Tree File Manager on the Left
{
"nvim-tree/nvim-tree.lua",
version = "*",
lazy = false,
dependencies = {
"nvim-tree/nvim-web-devicons",
},
config = function()
require("nvim-tree").setup {}
end,
},
-- Tmux Navigation -- Tmux Navigation
{ {
"aserowy/tmux.nvim", "aserowy/tmux.nvim",
config = function() require("tmux").setup() end config = function() require("tmux").setup() end
}, },
-- Find & Search LSP Tags {
-- 'liuchengxu/vista.vim', "roobert/f-string-toggle.nvim",
config = function()
require("f-string-toggle").setup{
key_binding = "<leader>g"
}
end,
},
-- Snippets -- Snippets
'rafamadriz/friendly-snippets', 'rafamadriz/friendly-snippets',
@ -80,8 +102,6 @@ return {
version = '^1.0.0', -- optional: only update when a new 1.x version is released version = '^1.0.0', -- optional: only update when a new 1.x version is released
}, },
-- Nvim Tree File Manager on the Left
'nvim-tree/nvim-tree.lua',
-- Trouble Shows Errors with Files. -- Trouble Shows Errors with Files.
{ {
@ -105,9 +125,13 @@ return {
-- Top Right Notify Pop Up -- Top Right Notify Pop Up
'rcarriga/nvim-notify', 'rcarriga/nvim-notify',
{'akinsho/toggleterm.nvim', version = "*", opts = {--[[ things you want to change go here]]}},
-- echasnovski Mini Modules (Selected) ------------------------------------------------------------
{ -- echasnovski's Minis get a section of their own...
------------------------------------------------------------
{
'echasnovski/mini.comment', version = '*', 'echasnovski/mini.comment', version = '*',
config = function() config = function()
require('mini.comment').setup() require('mini.comment').setup()
@ -157,31 +181,33 @@ return {
}, },
----------------------------------------------------------- -----------------------------------------------------------
-- Markdown Plugins -- Markdown Plugins
------------------------------------------------------------ ------------------------------------------------------------
{ {
'jakewvincent/mkdnflow.nvim', "iamcco/markdown-preview.nvim",
build = "cd app && npm install",
ft = "markdown",
lazy = true,
keys = { { "gm", "<cmd>MarkdownPreviewToggle<cr>", desc = "Markdown Preview" } },
config = function() config = function()
require('mkdnflow').setup({ vim.g.mkdp_auto_close = true
mappings = { vim.g.mkdp_open_to_the_world = false
MkdnToggleToDo = {{'i', 'n'}, '<C-Space>'}, vim.g.mkdp_open_ip = "127.0.0.1"
MkdnNewListItem = {{'i'}, '<CR>'}, vim.g.mkdp_port = "8888"
MkdnEnter = {{'n'}, '<CR>'}, vim.g.mkdp_browser = ""
MkdnTableNextCell = false, vim.g.mkdp_echo_preview_url = true
MkdnTab = {{'i',}, '<Tab>'}, vim.g.mkdp_page_title = "${name}"
MkdnSTab = {{'i'}, '<S-Tab>'}, end,
MkdnFollowLink = {'n', '<leader>p'}
},
wrap = true
})
end
}, },
--[[
{ "iamcco/markdown-preview.nvim", build = "cd app && npm install", init = function() vim.g.mkdp_filetypes = { { 'toppair/peek.nvim',
"markdown" } end, ft = { "markdown" }, }, build = 'deno task --quiet build:fast',
config = function()
require('peek').setup()
end
},
]]--
-- DAP (Debug adaptor Protocol) -- DAP (Debug adaptor Protocol)
'mfussenegger/nvim-dap', 'mfussenegger/nvim-dap',
@ -234,6 +260,7 @@ return {
'lukas-reineke/indent-blankline.nvim', 'lukas-reineke/indent-blankline.nvim',
'folke/lsp-colors.nvim', 'folke/lsp-colors.nvim',
'Mofiqul/dracula.nvim',
'karb94/neoscroll.nvim', 'karb94/neoscroll.nvim',
-- Allow Popups for Telescope etc -- Allow Popups for Telescope etc
@ -254,10 +281,11 @@ return {
-- signs = false, -- configure signs for some keywords individually -- signs = false, -- configure signs for some keywords individually
}, },
DONE = { icon = "", color = "info" }, DONE = { icon = "", color = "info" },
IN_PROG = { icon = "󰇘", color = "default" },
FEAT = { icon = "", color = "warning", alt = { "NEED", "REQUEST" } }, FEAT = { icon = "", color = "warning", alt = { "NEED", "REQUEST" } },
WARN = { icon = "", color = "error", alt = { "WARNING", "ERROR" } }, WARN = { icon = "", color = "error", alt = { "WARNING", "ERROR" } },
TODO = { icon = "", color = "hint", alt = { "TASK", "TBD" } }, TODO = { icon = "", color = "hint", alt = { "TASK", "TBD" } },
NOTE = { icon = "", color = "hint", alt = { "INFO" } }, RISK = { icon = "", color = "hint", alt = { "RISK" } },
SENG = { icon = "", color = "test", alt = { "SOLUTIONS", "SE", "WORKAROUND" } }, SENG = { icon = "", color = "test", alt = { "SOLUTIONS", "SE", "WORKAROUND" } },
}, },
highlight = { highlight = {
@ -303,14 +331,35 @@ return {
}, },
{ "bluz71/vim-moonfly-colors", name = "moonfly", lazy = true, priority = 1000 }, { "bluz71/vim-moonfly-colors", name = "moonfly", lazy = true, priority = 1000 },
'Bekaboo/deadcolumn.nvim', 'Bekaboo/deadcolumn.nvim',
-- {
-- 'm4xshen/smartcolumn.nvim',
-- config = function()
-- require("smartcolumn").setup{
-- config = {
-- colorcolumn = "100",
-- disabled_filetypes = { "help" },
-- custom_colorcolumn = {},
-- },
-- }
-- end
-- },
{ {
'feline-nvim/feline.nvim', 'feline-nvim/feline.nvim',
dependencies = { 'nvim-tree/nvim-web-devicons' }, dependencies = { 'nvim-tree/nvim-web-devicons' },
}, },
'ellisonleao/glow.nvim',
-- Plugin that causes your code to crumble >:) -- Plugin that causes your code to crumble >:)
-- 'eandrju/cellular-automaton.nvim', -- 'eandrju/cellular-automaton.nvim',
-- Wakatime Tracking -- Wakatime Tracking
'wakatime/vim-wakatime' 'wakatime/vim-wakatime',
}
----------------------------------------------
--- Custom Plugins and Tests
----------------------------------------------
{
dir = '/Users/normrasmussen/Documents/Projects/tasksPlugin.nvim/',
dev = true,
name = "Mkdn Tasks (DEV)",
},
}

View File

@ -1,23 +1,29 @@
return { return {
'jose-elias-alvarez/null-ls.nvim', "jay-babu/mason-null-ls.nvim",
event = { "BufReadPre", "BufNewFile" },
dependencies = { dependencies = {
'nvim-lua/plenary.nvim', "williamboman/mason.nvim",
}, "jose-elias-alvarez/null-ls.nvim",
},
config = function () config = function ()
require("mason-null-ls").setup({
ensure_installed = nil,
automatic_installation = true,
})
local null_ls = require'null-ls' local null_ls = require'null-ls'
null_ls.setup({ null_ls.setup({
debug = true, debug = true,
sources = { sources = {
null_ls.builtins.completion.spell, null_ls.builtins.completion.spell,
null_ls.builtins.diagnostics.codespell, null_ls.builtins.diagnostics.codespell,
null_ls.builtins.diagnostics.markdownlint.with({ extra_args = { "--disable", "MD013", "MD024", "--" } null_ls.builtins.diagnostics.markdownlint.with({ extra_args = { "--disable", "MD024", "MD013", "--" }
,}), ,}),
null_ls.builtins.formatting.black,
null_ls.builtins.diagnostics.ruff, null_ls.builtins.diagnostics.ruff,
-- null_ls.builtins.diagnostics.pylama, -- null_ls.builtins.diagnostics.pylama,
null_ls.builtins.formatting.black, -- null_ls.builtins.diagnostics.pylint,
-- null_ls.builtins.diagnostics.pylint, -- null_ls.builtins.diagnostics.pycodestyle,
null_ls.builtins.diagnostics.pycodestyle.with({ extra_args = { "--max-line-length=150" }}),
}, },
}) })
end end
} }

View File

@ -0,0 +1,41 @@
return {
'jakewvincent/mkdnflow.nvim',
config = function()
require('mkdnflow').setup({
mappings = {
MkdnToggleToDo = {{'i', 'n'}, '<C-Space>'},
MkdnNewListItem = {{'i'}, '<CR>'},
MkdnEnter = {{'n'}, '<CR>'},
MkdnTableNextCell = false,
MkdnTab = {{'i',}, '<Tab>'},
MkdnSTab = {{'i'}, '<S-Tab>'},
MkdnFollowLink = {{'n'}, '<leader>p'}
},
links = {
name_is_source = true,
conceal = true,
},
new_file_template = {
use_template = true,
template = [[
# {{ title }}
* Date: {{ date }}
* Customer: {{ customer }}
## Meeting Notes:]],
placeholders = {
before = {
date = function()
return os.date("%A, %B %d, %Y") -- Wednesday, March 1, 2023
end
},
after = {
customer = function()
return vim.fn.expand('%:p:h:t')
end
}
}
},
})
end,
}

View File

@ -0,0 +1,42 @@
return {
"nvim-neorg/neorg",
build = ":Neorg sync-parsers",
dependencies = {
{ "nvim-lua/plenary.nvim",
"pysan3/neorg-templates", dependencies = { "L3MON4D3/LuaSnip" },
},
},
config = function()
require("neorg").setup {
load = {
["core.defaults"] = {},
["core.concealer"] = {},
["core.integrations.nvim-cmp"] = {},
["core.integrations.treesitter"] = {},
["core.highlights"] = {},
["core.export"] = {},
["core.mode"] = {},
["core.itero"] = {},
["core.keybinds"] = {
config = {
hook = function(keybinds)
keybinds.remap_key("norg", "n", "<M-CR>", "<S-tab>")
end,
}
},
["core.completion"] = {
config = {
engine = "nvim-cmp"
},
},
["core.dirman"] = {
config = {
workspaces = {
customer_notes = "~/Documents/Work/Customer_Notes/",
},
},
},
},
}
end,
}

View File

@ -25,12 +25,13 @@ return {
require("luasnip.loaders.from_vscode").lazy_load() require("luasnip.loaders.from_vscode").lazy_load()
cmp.setup { cmp.setup({
-- Load snippet support -- Load snippet support
--snippet = { snippet = {
-- expand = function(args) expand = function(args)
-- luasnip.lsp_expand(args.body) luasnip.lsp_expand(args.body)
-- }, end
},
-- Completion settings -- Completion settings
completion = { completion = {
@ -73,19 +74,37 @@ return {
end end
end, end,
}, },
snippet = {
expand = function(args)
require('luasnip').lsp_expand(args.body)
end,
},
-- Load sources, see: https://github.com/topics/nvim-cmp
sources = { sources = {
{ name = 'nvim-lsp' }, { name = 'nvim-lsp', keyword_length = 1 },
{ name = 'luasnip' }, { name = 'luasnip', keyword_length=2 },
{ name = 'path' }, { name = 'path' },
-- { name = 'buffer' }, { name = 'nvim_lsp_signature_help' },
-- { name = 'zsh' }, { name = 'buffer', keyword_length = 3 },
} { name = 'neorg' },
} },
formatting = {
fields = {'menu', 'abbr', 'kind'},
format = function(entry, item)
local menu_icon = {
nvim_lsp = 'λ',
luasnip = '',
buffer = 'Ω',
path = '',
}
item.menu = menu_icon[entry.source.name]
return item
end,
},
sorting = {
comparators = {
cmp.config.compare.offset,
cmp.config.compare.exact,
cmp.config.compare.score,
cmp.config.compare.recently_used,
require("cmp-under-comparator").under,
cmp.config.compare.kind,
},
},
})
end end
} }

View File

@ -1,4 +1,4 @@
return { [[--return {
"folke/styler.nvim", "folke/styler.nvim",
config = function() config = function()
require("styler").setup({ require("styler").setup({
@ -7,8 +7,9 @@ return {
python = { colorscheme = "dracula" }, python = { colorscheme = "dracula" },
html = { colorscheme = "carbonfox" }, html = { colorscheme = "carbonfox" },
help = { colorscheme = "catppuccin-mocha", background = "dark" }, help = { colorscheme = "catppuccin-mocha", background = "dark" },
css = { colorscheme = "carbonfox" } css = { colorscheme = "carbonfox" },
}, },
}) })
end, end,
} }
--]]

View File

@ -48,7 +48,7 @@ return {
results_title = false, results_title = false,
sorting_strategy = 'descending', sorting_strategy = 'descending',
layout_strategy = 'bottom_pane', layout_strategy = 'bottom_pane',
layout_config = { layout_config = {
height = 13, height = 13,
preview_cutoff = 1, preview_cutoff = 1,
prompt_position = 'bottom' prompt_position = 'bottom'
@ -152,9 +152,9 @@ return {
} }
}) })
require("telescope").load_extension "file_browser" require("telescope").load_extension "file_browser"
require("telescope").load_extension "mapper"
require("telescope").load_extension "live_grep_args" require("telescope").load_extension "live_grep_args"
require("telescope").load_extension "fzf" require("telescope").load_extension "fzf"
require("telescope").load_extension "adjacent"
end end
}} }}

View File

@ -1,118 +0,0 @@
-- General Neovim settings and configuration
-----------------------------------------------------------
-----------------------------------------------------------
-- Neovim API aliases
-----------------------------------------------------------
local fn = vim.fn -- Call Vim functions
local cmd = vim.cmd -- Execute Vim commands
local exec = vim.api.nvim_exec -- Execute Vimscript
local g = vim.g -- Global variables
local opt = vim.opt -- Set options (global/buffer/windows-scoped)
local o = vim.o
-----------------------------------------------------------
-- General
-----------------------------------------------------------
g.mapleader = ',' -- Change leader to a comma
opt.mouse = 'a' -- Enable mouse support
opt.clipboard = 'unnamedplus' -- Copy/paste to system clipboard
opt.swapfile = false -- Don't use swapfile
opt.shadafile = "NONE"
opt.shadafile = ""
opt.shell = "/bin/zsh"
opt.updatetime = 200
opt.cursorline = true
g.markdown_folding = 1
opt.spell=true
opt.spelllang = 'en_us'
cmd [[ autocmd BufWritePre * :%s/\s\+$//e ]]
vim.api.nvim_set_hl(0, "ColorColumn", {guibg=lightmagenta})
o.showtabline = 2
-----------------------------------------------------------
-- Neovim UI
-----------------------------------------------------------
opt.number = true -- Show line number
opt.relativenumber = true -- Show Current Line with Relative numbers above and below cursor.
opt.showmatch = true -- Highlight matching parenthesis
opt.foldmethod = 'syntax' -- Enable folding (default 'foldmarker')
opt.colorcolumn = '100' -- Line length marker at 80 columns
opt.textwidth = 100
opt.splitright = true -- Vertical split to the right
opt.splitbelow = true -- Horizontal split to the bottom
opt.ignorecase = true -- Ignore case letters when search
opt.smartcase = true -- Ignore lowercase for the whole pattern
opt.linebreak = true -- Wrap on word boundary
opt.signcolumn = 'yes:2' -- Signs column always on, minimum 2.
opt.wrap = true
-----------------------------------------------------------
-- Memory, CPU
-----------------------------------------------------------
opt.hidden = true -- Enable background buffers
opt.history = 100 -- Remember N lines in historma:y
opt.lazyredraw = true -- Faster scrolling
opt.synmaxcol = 240 -- Max column for syntax highlight
-----------------------------------------------------------
-- Colorscheme
-----------------------------------------------------------
opt.termguicolors = true -- Enable 24-bit RGB colors
-----------------------------------------------------------
-- Tabs, indent
-----------------------------------------------------------
opt.expandtab = true -- Use spaces instead of tabs
opt.shiftwidth = 1 -- Shift 4 spaces when tab
opt.tabstop = 1 -- 1 tab == 4 spaces
opt.smartindent = true -- Autoindent new lines
-----------------------------------------------------------
-- Glow Settings
-----------------------------------------------------------
g.glow_binary_path = '/bin'
g.glow_border = 'rounded'
g.glow_width = 100
g.glow_use_pager = true
g.glow_style = 'light'
-----------------------------------------------------------
-- MKDX Settings, mkdx#settings.
-----------------------------------------------------------
-- 2 spaces for selected filetypes
cmd [[
autocmd FileType md,liquid,xml,html,xhtml,css,scss,javascript,lua,yaml setlocal shiftwidth=2 tabstop=8 noexpandtab
]]
local disabled_built_ins = {
"netrw",
"netrwPlugin",
"netrwSettings",
"netrwFileHandlers",
"gzip",
"zip",
"zipPlugin",
"tar",
"tarPlugin",
"getscript",
"getscriptPlugin",
"vimball",
"vimballPlugin",
"2html_plugin",
"logipat",
"rrhelper",
"spellfile_plugin",
"matchit"
}
for _, plugin in pairs(disabled_built_ins) do
vim.g["loaded_" .. plugin] = 1
end
--[[
Deletes all trailing whitespaces in a file if it's not binary nor a diff.
]]--
function _G.trim_trailing_whitespaces()
if not o.binary and o.filetype ~= 'diff' then
local current_view = fn.winsaveview()
cmd([[keeppatterns %s/\s\+$//e]])
fn.winrestview(current_view)
end
end

File diff suppressed because it is too large Load Diff

View File

@ -309,3 +309,12 @@ event
event event
MJ MJ
Wix Wix
cateogries
cateogries
Glassdoor
accomodate
Ines
distrcits
suggstions
Chek's
COO

View File

@ -37,17 +37,17 @@ format = '[$symbol$branch(:$remote_branch)]($style) '
[git_status] [git_status]
style = 'bold white' style = 'bold white'
#conflicted = '🏳' conflicted = '🏳'
#ahead = '🏎💨' #ahead = '🏎💨'
#behind = '😰' #behind = '😰'
#diverged = '😵' #diverged = '😵'
#up_to_date = grey'✓' up_to_date = '✓'
#untracked = '🤷' #untracked = '🤷'
#stashed = '📦' #stashed = '📦'
#modified = '📝' modified = '📝'
staged = '[++\($count\)](green)' staged = '[++\($count\)](green)'
#renamed = '👅' renamed = '👅'
#deleted = '🗑' deleted = '🗑'
[memory_usage] [memory_usage]
disabled = false disabled = false
@ -57,14 +57,14 @@ symbol = '🧙'
style = 'bold green' style = 'bold green'
[palettes.dracula] [palettes.dracula]
black = '#282a36' black = '#282a36'
grey ='#44475a' grey ='#44475a'
white = '#f8f8f2' white = '#f8f8f2'
blue ='#6272a4' blue ='#6272a4'
cyan = '#8be9fd' cyan = '#8be9fd'
green = '#50fa7b' green = '#50fa7b'
orange = '#ffb86c' orange = '#ffb86c'
pink = '#ff79c6' pink = '#ff79c6'
purple = '#bd93f9' purple = '#bd93f9'
red = '#ff5555' red = '#ff5555'
yellow = '#f1fa8c' yellow = '#f1fa8c'

Submodule tmux/.config/tmux/plugins/tmux updated: a966029b99...79068c40b3

Submodule tmux/.config/tmux/plugins/tmux-autoreload deleted from e98aa3b74c

Submodule tmux/.config/tmux/plugins/tmux-colortag deleted from 72ef7174f6

Submodule tmux/.config/tmux/plugins/tmux-continuum updated: fc2f31d795...3e4bc35da4

Submodule tmux/.config/tmux/plugins/tmux-fuzzback deleted from 6031244ae0

Submodule tmux/.config/tmux/plugins/tmux-resurrect updated: 027960ad25...cff343cf9e

Submodule tmux/.config/tmux/plugins/tmux-sensible updated: 5d089e418e...25cb91f42d

View File

@ -18,33 +18,40 @@ set -g focus-events on
# enable mouse support # enable mouse support
set-option -g mouse on set-option -g mouse on
# Open Pane in same working directory
# Set the control character to Ctrl+Spacebar (instead of Ctrl+B)
set -g prefix C-b
unbind-key C-space
bind-key C-b send-prefix
# Set new panes to open in current directory
bind c new-window -c "#{pane_current_path}"
bind '"' split-window -c "#{pane_current_path}"
bind % split-window -h -c "#{pane_current_path}"
# Vim-Tmux-Navigator plugin/ # Vim-Tmux-Navigator plugin/
set -g @plugin 'christoomey/vim-tmux-navigator' set -g @plugin 'christoomey/vim-tmux-navigator'
# Dracula # Dracula
set -g @plugin 'dracula/tmux' set -g @plugin 'dracula/tmux'
set -g @dracula-plugins "git weather network-ping cpu-usage time" set -g @dracula-plugins "git network-ping cpu-usage time"
#set -g @dracula-show-location false set -g @dracula-show-powerline true
#set -g @dracula-fixed-location "Parsippany, NJ" set -g @dracula-show-flags true
#set -g @dracula-show-powerline true set -g @dracula-show-left-icon window
#set -g @dracula-show-flags true set -g @dracula-border-contrast true
#set -g @dracula-show-left-icon window set -g @dracula-ping-server "overras.duckdns.org"
#set -g @dracula-border-contrast true set -g @dracula-ping-rate 5
#set -g @dracula-ping-server "overras.duckdns.org" set -g @dracula-cpu-usage-label " "
#set -g @dracula-ping-rate 5 set -g @dracula-cpu-usage-colors "pink dark_gray"
#set -g @dracula-cpu-usage-label " " set -g @dracula-git-show-current-symbol ✓
#set -g @dracula-cpu-usage-colors "pink dark_gray" set -g @dracula-git-show-diff-symbol !
#set -g @dracula-git-show-current-symbol ✓ set -g @dracula-git-no-repo-message ⊚
#set -g @dracula-git-show-diff-symbol ! set -g @dracula-show-timezone false
#set -g @dracula-git-no-repo-message ⊚ set -g @dracula-military-time true
#set -g @dracula-show-timezone false
#set -g @dracula-military-time true
#run-shell ~/.dotfiles/tmux/.config/tmux/plugins/tmux-continuum/continuum.tmux #run-shell ~/.dotfiles/tmux/.config/tmux/plugins/tmux-continuum/continuum.tmux
# Autoreload tmux.conf
# set-option -g @plugin 'b0o/tmux-autoreload'
# Initiazlie TMUX plugin manager - kept at bottom of file # Initiazlie TMUX plugin manager - kept at bottom of file
# run '~/.config/tmux/plugins/tpm/tpm' # run '~/.config/tmux/plugins/tpm/tpm'
run '~/.dotfiles/tmux/.config/tmux/plugins/tpm/tpm' run '~/.dotfiles/tmux/.config/tmux/plugins/tpm/tpm'

View File

@ -1,9 +0,0 @@
# ~/Documents/Projects/CSM_webapp/
name: Flask
root: ~/Documents/Projects/CSM_webapp/
on_project_start: pyenv activate csmflask
windows:
- flask:
root: ~/Documents/Projects/CSM_webapp/
layout: e90b,204x63,0,0[204x46,0,0,0,204x16,0,47{36x16,0,47,2,84x16,37,47,3,82x16,122,47,4}]

View File

@ -1,24 +0,0 @@
# /Users/normrasmussen/.config/tmuxinator/NvimTemplates.yml
name: Northpass
root: ~/
windows:
- notes:
root: ~/Documents/Work/CustomerNotes
panes:
- nvim
- templates:
root: ~/Documents/Work/Custom_Templates/customer_templates/
panes:
- nvim
- scripts:
root: ~/Documents/Work/Scripts
layout: main-horizontal
panes:
- nvim
- pyenv activate np_scripts
- dots:
root: ~/.config/nvim/
panes:
- nvim
- tut-tut: tut

54
tmuxp/Work.yaml Normal file
View File

@ -0,0 +1,54 @@
session_name: Northpass
windows:
- layout: c39e,229x45,0,0,1
options: {}
panes:
- focus: 'true'
shell_command: zsh
start_directory: /Users/normrasmussen/Documents/Work
window_name: notes
- focus: 'true'
layout: c39f,229x45,0,0,2
options: {}
panes:
- focus: 'true'
shell_command: Python
start_directory: /Users/normrasmussen/.dotfiles/tmuxp
window_name: templates
- layout: 40b3,229x45,0,0[229x42,0,0,3,229x2,0,43,4]
options: {}
panes:
- focus: 'true'
shell_command:
- cd /Users/normrasmussen/Documents/Work/Scripts/GoogleScripts/Luminate_API_Exam
- zsh
- shell_command:
- cd /Users/normrasmussen/Documents/Work/Scripts/API_Tests
- zsh
window_name: scripts
- layout: c3c2,196x45,0,0,5
options: {}
panes:
- focus: 'true'
shell_command: zsh
start_directory: /Users/normrasmussen/.dotfiles
window_name: dots
- layout: 60a9,229x45,0,0[229x42,0,0,6,229x2,0,43,18]
options: {}
panes:
- focus: 'true'
shell_command: zsh
- zsh
start_directory: /Users/normrasmussen/Documents/Projects/nginx_docs
window_name: nginx
- layout: 0ceb,229x45,0,0{115x45,0,0,11,113x45,116,0,14}
options: {}
panes:
- focus: 'true'
shell_command:
- cd /Users/normrasmussen/Documents/Projects
- zsh
- shell_command:
- cd /Users/normrasmussen
- zsh
window_name: zsh

View File

@ -5,16 +5,20 @@ export LC_ALL=en_US.UTF-8
export LANG=en_US.UTF-8 export LANG=en_US.UTF-8
plugins=( plugins=(
zsh-autosuggestions zsh-autosuggestions,
git git,
wakatime wakatime,
brew brew,
npm npm,
z z,
zsh-syntax-highlighting zsh-syntax-highlighting,
vi-mode vi-mode,
) )
# Zsh Autosuggestion Config
source ~/.dotfiles/zsh/zsh-autosuggestions/
ZSH_AUTOSUGGEST_HIGHLIGHT_STYLE="fg=#ff00ff,bg=cyan,bold,underline"
# User configuration # User configuration
export DOT="~/.dotfiles" export DOT="~/.dotfiles"
@ -29,22 +33,21 @@ export PYENV_ROOT="$HOME/.pyenv"
command -v pyenv >/dev/null || export PATH="$PYENV_ROOT/bin:$PATH" command -v pyenv >/dev/null || export PATH="$PYENV_ROOT/bin:$PATH"
eval "$(pyenv init -)" eval "$(pyenv init -)"
alias nvim-minimal="NVIM_APPNAME=Minivim nvim" # alias nvim-minimal="NVIM_APPNAME=Minivim nvim"
# alias nvim-arduino="NVIM_APPNAME=Arduino nvim" # alias nvim-arduino="NVIM_APPNAME=Arduino nvim"
function nvims() { #function nvims() {
items=("Main" "Minivim" "Arduinvim") # items=("Main" "Minivim" "Arduinvim")
config=$(printf "%s\n" "${items[@]}" | fzf --prompt=" Neovim Config  " --height=~50% --layout=reverse --border --exit-0) # config=$(printf "%s\n" "${items[@]}" | fzf --prompt=" Neovim Config  " --height=~50% --layout=reverse --border --exit-0)
if [[ -z $config ]]; then # if [[ -z $config ]]; then
echo "Nothing selected" # echo "Nothing selected"
return 0 # return 0
elif [[ $config == "Main" ]]; then # elif [[ $config == "Main" ]]; then
config="" # config=""
fi # fi
NVIM_APPNAME=$config nvim $@ # NVIM_APPNAME=$config nvim $@
} #}
#bindkey -s ^a "nvims\n"
bindkey -s ^a "nvims\n"
# source /Users/normrasmussen/.docker/init-zsh.sh || true # Added by Docker Desktop # source /Users/normrasmussen/.docker/init-zsh.sh || true # Added by Docker Desktop

Submodule zsh/zsh-autosuggestions added at 9908eb49a3