Compare commits
67 Commits
backup-mas
...
main
| Author | SHA1 | Date | |
|---|---|---|---|
| 8c9730a06a | |||
| 57ec589f4d | |||
| 92e32f7906 | |||
| 46c37215dc | |||
| 17f7b3243b | |||
| c8de5155b9 | |||
| 2919694e39 | |||
| 51c4676cbf | |||
| abfa8ad841 | |||
| f785609c61 | |||
| e57a7b9ce2 | |||
| 91c4897b7f | |||
| 4dc6ffaa85 | |||
| bd16e37046 | |||
| 0a6f3ca7fd | |||
| dcf6ece06a | |||
| f20db3b89f | |||
| c8dfc7c1ae | |||
| 8c50ac0d15 | |||
| 5e6cba9351 | |||
| 2cafc91ba1 | |||
| 45eca459b6 | |||
| 6828bd4055 | |||
| f6de6e03db | |||
| 354f330c44 | |||
| 8960b58d64 | |||
| 7ff868c5ae | |||
| c22e8287af | |||
| db34ad9ff9 | |||
| c9266d82c6 | |||
| ff2629e02a | |||
| daae4f922b | |||
| a5be5c2535 | |||
| a3a4a22f84 | |||
| 2d74aba1f1 | |||
| 55580ecbf1 | |||
| 65923ed2fd | |||
| 60884400c1 | |||
| 9e83a6d855 | |||
| fe52cc950b | |||
| c6f4ca9cf1 | |||
| af30d2fa0b | |||
| 30bdfe95a3 | |||
| 5b4abd236a | |||
| 83af7a065d | |||
| e302e1a133 | |||
| 3e760c72c1 | |||
| 7325aa5b0e | |||
| e7f73ded6a | |||
| 0e13675a77 | |||
| cbc16fd9ef | |||
| 3c344bc893 | |||
| 2f6161a917 | |||
| b1d3afc7d8 | |||
| dc4a294bc7 | |||
| d4d1d5ef23 | |||
| 00a84209f8 | |||
| bfd35215c7 | |||
| 2dbad0ebdf | |||
| 699304de12 | |||
| 54583572b8 | |||
| ebbf7b99ae | |||
| 458f46cef4 | |||
| e4ca0941d5 | |||
| 4069c13d0d | |||
| b3413957d3 | |||
| 86f495c878 |
228
backups/tmux-powerline-config.sh
Normal file
@ -0,0 +1,228 @@
|
|||||||
|
# Default configuration file for tmux-powerline.
|
||||||
|
# Modeline {
|
||||||
|
# vi: foldmarker={,} foldmethod=marker foldlevel=0 tabstop=4 filetype=sh
|
||||||
|
# }
|
||||||
|
|
||||||
|
# General {
|
||||||
|
# Show which segment fails and its exit code.
|
||||||
|
export TMUX_POWERLINE_DEBUG_MODE_ENABLED="false"
|
||||||
|
# Use patched font symbols.
|
||||||
|
export TMUX_POWERLINE_PATCHED_FONT_IN_USE="true"
|
||||||
|
|
||||||
|
# The theme to use.
|
||||||
|
export TMUX_POWERLINE_THEME="norm-main"
|
||||||
|
# Overlay directory to look for themes. There you can put your own themes outside the repo. Fallback will still be the "themes" directory in the repo.
|
||||||
|
export TMUX_POWERLINE_DIR_USER_THEMES="${XDG_CONFIG_HOME:-$HOME/.dotfiles/tmux/.config/tmux}/tmux-powerline/themes"
|
||||||
|
# Overlay directory to look for segments. There you can put your own segments outside the repo. Fallback will still be the "segments" directory in the repo.
|
||||||
|
export TMUX_POWERLINE_DIR_USER_SEGMENTS="${XDG_CONFIG_HOME:-$HOME/.dotfiles/tmux/.config/tmux}/tmux-powerline/segments"
|
||||||
|
|
||||||
|
# The initial visibility of the status bar. Can be {"on, off"}.
|
||||||
|
export TMUX_POWERLINE_STATUS_VISIBILITY="on"
|
||||||
|
# The status bar refresh interval in seconds.
|
||||||
|
# Note that events that force-refresh the status bar (such as window renaming) will ignore this.
|
||||||
|
export TMUX_POWERLINE_STATUS_INTERVAL="1"
|
||||||
|
# The location of the window list. Can be {"absolute-centre, centre, left, right"}.
|
||||||
|
# Note that "absolute-centre" is only supported on `tmux -V` >= 3.2.
|
||||||
|
export TMUX_POWERLINE_STATUS_JUSTIFICATION="centre"
|
||||||
|
|
||||||
|
# The maximum length of the left status bar.
|
||||||
|
export TMUX_POWERLINE_STATUS_LEFT_LENGTH="60"
|
||||||
|
# The maximum length of the right status bar.
|
||||||
|
export TMUX_POWERLINE_STATUS_RIGHT_LENGTH="60"
|
||||||
|
|
||||||
|
# Uncomment these if you want to enable tmux bindings for muting (hiding) one of the status bars.
|
||||||
|
# E.g. this example binding would mute the left status bar when pressing <prefix> followed by Ctrl-[
|
||||||
|
#export TMUX_POWERLINE_MUTE_LEFT_KEYBINDING="C-["
|
||||||
|
#export TMUX_POWERLINE_MUTE_RIGHT_KEYBINDING="C-]"
|
||||||
|
# }
|
||||||
|
|
||||||
|
# battery.sh {
|
||||||
|
# How to display battery remaining. Can be {percentage, cute}.
|
||||||
|
export TMUX_POWERLINE_SEG_BATTERY_TYPE="percentage"
|
||||||
|
# How may hearts to show if cute indicators are used.
|
||||||
|
export TMUX_POWERLINE_SEG_BATTERY_NUM_HEARTS="5"
|
||||||
|
# }
|
||||||
|
|
||||||
|
# date.sh {
|
||||||
|
# date(1) format for the date. If you don't, for some reason, like ISO 8601 format you might want to have "%D" or "%m/%d/%Y".
|
||||||
|
export TMUX_POWERLINE_SEG_DATE_FORMAT="%F"
|
||||||
|
# }
|
||||||
|
|
||||||
|
# disk_usage.sh {
|
||||||
|
# Filesystem to retrieve disk space information. Any from the filesystems available (run "df | awk '{print }'" to check them).
|
||||||
|
export TMUX_POWERLINE_SEG_DISK_USAGE_FILESYSTEM="/"
|
||||||
|
# }
|
||||||
|
|
||||||
|
# earthquake.sh {
|
||||||
|
# The data provider to use. Currently only "goo" is supported.
|
||||||
|
export TMUX_POWERLINE_SEG_EARTHQUAKE_DATA_PROVIDER="goo"
|
||||||
|
# How often to update the earthquake data in seconds.
|
||||||
|
# Note: This is not an early warning detector, use this
|
||||||
|
# to be informed about recent earthquake magnitudes in your
|
||||||
|
# area. If this is too often, goo may decide to ban you form
|
||||||
|
# their server
|
||||||
|
export TMUX_POWERLINE_SEG_EARTHQUAKE_UPDATE_PERIOD="600"
|
||||||
|
# Only display information when earthquakes are within this many minutes
|
||||||
|
export TMUX_POWERLINE_SEG_EARTHQUAKE_ALERT_TIME_WINDOW="60"
|
||||||
|
# Display time with this format
|
||||||
|
export TMUX_POWERLINE_SEG_EARTHQUAKE_TIME_FORMAT='(%H:%M)'
|
||||||
|
# Display only if magnitude is greater or equal to this number
|
||||||
|
export TMUX_POWERLINE_SEG_EARTHQUAKE_MIN_MAGNITUDE="3"
|
||||||
|
# }
|
||||||
|
|
||||||
|
# gcalcli.sh {
|
||||||
|
# gcalcli uses 24hr time format by default - if you want to see 12hr time format, set TMUX_POWERLINE_SEG_GCALCLI_MILITARY_TIME_DEFAULT to 0
|
||||||
|
export TMUX_POWERLINE_SEG_GCALCLI_24HR_TIME_FORMAT="1"
|
||||||
|
# }
|
||||||
|
|
||||||
|
# hostname.sh {
|
||||||
|
# Use short or long format for the hostname. Can be {"short, long"}.
|
||||||
|
export TMUX_POWERLINE_SEG_HOSTNAME_FORMAT="short"
|
||||||
|
# }
|
||||||
|
|
||||||
|
# macos_notification_count.sh {
|
||||||
|
# App ids to query in notification center, separated by space
|
||||||
|
# To get the app id that is associated with a specific app run:
|
||||||
|
# sqlite3 -list "/var/folders/14/xy84d13x3091_xgcmy34gk8w0000gp/0//com.apple.notificationcenter/db/db" 'select * from app_info'
|
||||||
|
# The first column contains the app ids
|
||||||
|
# "5" is the app id of Messages.app
|
||||||
|
# Only "banner" notifications are supported (see settings in the notification center)
|
||||||
|
export TMUX_POWERLINE_SEG_MACOS_NOTIFICATION_COUNT_APPIDS="5"
|
||||||
|
# Notification symbol
|
||||||
|
export TMUX_POWERLINE_SEG_MACOS_NOTIFICATION_COUNT_CHAR="💬"
|
||||||
|
# }
|
||||||
|
|
||||||
|
# mailcount.sh {
|
||||||
|
# Mailbox type to use. Can be any of {apple_mail, gmail, maildir, mbox, mailcheck}
|
||||||
|
export TMUX_POWERLINE_SEG_MAILCOUNT_MAILBOX_TYPE=""
|
||||||
|
|
||||||
|
## Gmail
|
||||||
|
# Enter your Gmail username here WITH OUT @gmail.com.( OR @domain)
|
||||||
|
export TMUX_POWERLINE_SEG_MAILCOUNT_GMAIL_USERNAME=""
|
||||||
|
# Google password. Recomenned to use application specific password (https://accounts.google.com/b/0/IssuedAuthSubTokens) Leave this empty to get password from OS X keychain.
|
||||||
|
# For OSX users : MAKE SURE that you add a key to the keychain in the format as follows
|
||||||
|
# Keychain Item name : http://<value-you-fill-in-server-variable-below>
|
||||||
|
# Account name : <username-below>@<server-below>
|
||||||
|
# Password : Your password ( Once again, try to use 2 step-verification and application-specific password)
|
||||||
|
# See http://support.google.com/accounts/bin/answer.py?hl=en&answer=185833 for more info.
|
||||||
|
export TMUX_POWERLINE_SEG_MAILCOUNT_GMAIL_PASSWORD=""
|
||||||
|
# Domain name that will complete your email. For normal GMail users it probably is "gmail.com but can be "foo.tld" for Google Apps users.
|
||||||
|
export TMUX_POWERLINE_SEG_MAILCOUNT_GMAIL_SERVER="gmail.com"
|
||||||
|
# How often in minutes to check for new mails.
|
||||||
|
export TMUX_POWERLINE_SEG_MAILCOUNT_GMAIL_INTERVAL="5"
|
||||||
|
|
||||||
|
## Maildir
|
||||||
|
# Path to the maildir to check.
|
||||||
|
export TMUX_POWERLINE_SEG_MAILCOUNT_MAILDIR_INBOX="/Users/normrasmussen/.mail/inbox/new"
|
||||||
|
|
||||||
|
## mbox
|
||||||
|
# Path to the mbox to check.
|
||||||
|
export TMUX_POWERLINE_SEG_MAILCOUNT_MBOX_INBOX=""
|
||||||
|
|
||||||
|
## mailcheck
|
||||||
|
# Optional path to mailcheckrc
|
||||||
|
export TMUX_POWERLINE_SEG_MAILCOUNT_MAILCHECKRC="/Users/normrasmussen/.mailcheckrc"
|
||||||
|
# }
|
||||||
|
|
||||||
|
# now_playing.sh {
|
||||||
|
# Music player to use. Can be any of {audacious, banshee, cmus, apple_music, itunes, lastfm, plexamp, mocp, mpd, mpd_simple, pithos, playerctl, rdio, rhythmbox, spotify, spotify_wine, file}.
|
||||||
|
export TMUX_POWERLINE_SEG_NOW_PLAYING_MUSIC_PLAYER="spotify"
|
||||||
|
# File to be read in case the song is being read from a file
|
||||||
|
export TMUX_POWERLINE_SEG_NOW_PLAYING_FILE_NAME=""
|
||||||
|
# Maximum output length.
|
||||||
|
export TMUX_POWERLINE_SEG_NOW_PLAYING_MAX_LEN="40"
|
||||||
|
# How to handle too long strings. Can be {trim, roll}.
|
||||||
|
export TMUX_POWERLINE_SEG_NOW_PLAYING_TRIM_METHOD="trim"
|
||||||
|
# Charcters per second to roll if rolling trim method is used.
|
||||||
|
export TMUX_POWERLINE_SEG_NOW_PLAYING_ROLL_SPEED="2"
|
||||||
|
|
||||||
|
# Hostname for MPD server in the format "[password@]host"
|
||||||
|
export TMUX_POWERLINE_SEG_NOW_PLAYING_MPD_HOST="localhost"
|
||||||
|
# Port the MPD server is running on.
|
||||||
|
export TMUX_POWERLINE_SEG_NOW_PLAYING_MPD_PORT="6600"
|
||||||
|
# Song display format for mpd_simple. See mpc(1) for delimiters.
|
||||||
|
export TMUX_POWERLINE_SEG_NOW_PLAYING_MPD_SIMPLE_FORMAT="%artist% - %title%"
|
||||||
|
# Song display format for playerctl. see "Format Strings" in playerctl(1).
|
||||||
|
export TMUX_POWERLINE_SEG_NOW_PLAYING_PLAYERCTL_FORMAT="{{ artist }} - {{ title }}"
|
||||||
|
# Song display format for rhythmbox. see "FORMATS" in rhythmbox-client(1).
|
||||||
|
export TMUX_POWERLINE_SEG_NOW_PLAYING_RHYTHMBOX_FORMAT="%aa - %tt"
|
||||||
|
|
||||||
|
# Last.fm
|
||||||
|
# Set up steps for Last.fm
|
||||||
|
# 1. Make sure jq(1) is installed on the system.
|
||||||
|
# 2. Create a new API application at https://www.last.fm/api/account/create (name it tmux-powerline) and copy the API key and insert it below in the setting TMUX_POWERLINE_SEG_NOW_PLAYING_LASTFM_API_KEY
|
||||||
|
# 3. Make sure the API can access your recently played song by going to you user privacy settings https://www.last.fm/settings/privacy and make sure "Hide recent listening information" is UNCHECKED.
|
||||||
|
# Username for Last.fm if that music player is used.
|
||||||
|
export TMUX_POWERLINE_SEG_NOW_PLAYING_LASTFM_USERNAME=""
|
||||||
|
# API Key for the API.
|
||||||
|
export TMUX_POWERLINE_SEG_NOW_PLAYING_LASTFM_API_KEY=""
|
||||||
|
# How often in seconds to update the data from last.fm.
|
||||||
|
export TMUX_POWERLINE_SEG_NOW_PLAYING_LASTFM_UPDATE_PERIOD="30"
|
||||||
|
# Fancy char to display before now playing track
|
||||||
|
export TMUX_POWERLINE_SEG_NOW_PLAYING_NOTE_CHAR="♫"
|
||||||
|
|
||||||
|
# Plexamp
|
||||||
|
# Set up steps for Plexamp
|
||||||
|
# 1. Make sure jq(1) is installed on the system.
|
||||||
|
# 2. Make sure you have an instance of Tautulli that is accessible by the computer running tmux-powerline.
|
||||||
|
# Username for Plexamp if that music player is used.
|
||||||
|
export TMUX_POWERLINE_SEG_NOW_PLAYING_PLEXAMP_USERNAME=""
|
||||||
|
# Hostname for Tautulli server in the format "[password@]host"
|
||||||
|
export TMUX_POWERLINE_SEG_NOW_PLAYING_PLEXAMP_TAUTULLI_HOST=""
|
||||||
|
# API Key for Tautulli.
|
||||||
|
export TMUX_POWERLINE_SEG_NOW_PLAYING_PLEXAMP_TAUTULLI_API_KEY=""
|
||||||
|
# How often in seconds to update the data from Plexamp.
|
||||||
|
export TMUX_POWERLINE_SEG_NOW_PLAYING_PLEXAMP_UPDATE_PERIOD="30"
|
||||||
|
# }
|
||||||
|
|
||||||
|
# pwd.sh {
|
||||||
|
# Maximum length of output.
|
||||||
|
export TMUX_POWERLINE_SEG_PWD_MAX_LEN="40"
|
||||||
|
# }
|
||||||
|
|
||||||
|
# time.sh {
|
||||||
|
# date(1) format for the time. Americans might want to have "%I:%M %p".
|
||||||
|
export TMUX_POWERLINE_SEG_TIME_FORMAT="%H:%M"
|
||||||
|
# Change this to display a different timezone than the system default.
|
||||||
|
# Use TZ Identifier like "America/Los_Angeles"
|
||||||
|
export TMUX_POWERLINE_SEG_TIME_TZ=""
|
||||||
|
# }
|
||||||
|
|
||||||
|
# tmux_mem_cpu_load.sh {
|
||||||
|
# Arguments passed to tmux-mem-cpu-load.
|
||||||
|
# See https://github.com/thewtex/tmux-mem-cpu-load for all available options.
|
||||||
|
export TMUX_POWERLINE_SEG_TMUX_MEM_CPU_LOAD_ARGS="-v"
|
||||||
|
# }
|
||||||
|
|
||||||
|
# tmux_session_info.sh {
|
||||||
|
# Session info format to feed into the command: tmux display-message -p
|
||||||
|
# For example, if FORMAT is '[ #S ]', the command is: tmux display-message -p '[ #S ]'
|
||||||
|
export TMUX_POWERLINE_SEG_TMUX_SESSION_INFO_FORMAT="#S:#I.#P"
|
||||||
|
# }
|
||||||
|
|
||||||
|
# utc_time.sh {
|
||||||
|
# date(1) format for the UTC time.
|
||||||
|
export TMUX_POWERLINE_SEG_UTC_TIME_FORMAT="%H:%M %Z"
|
||||||
|
# }
|
||||||
|
|
||||||
|
# vcs_branch.sh {
|
||||||
|
# Max length of the branch name.
|
||||||
|
export TMUX_POWERLINE_SEG_VCS_BRANCH_MAX_LEN="24"
|
||||||
|
# }
|
||||||
|
|
||||||
|
# weather.sh {
|
||||||
|
# The data provider to use. Currently only "yahoo" is supported.
|
||||||
|
export TMUX_POWERLINE_SEG_WEATHER_DATA_PROVIDER="yahoo"
|
||||||
|
# What unit to use. Can be any of {c,f,k}.
|
||||||
|
export TMUX_POWERLINE_SEG_WEATHER_UNIT="f"
|
||||||
|
# How often to update the weather in seconds.
|
||||||
|
export TMUX_POWERLINE_SEG_WEATHER_UPDATE_PERIOD="60"
|
||||||
|
# Name of GNU grep binary if in PATH, or path to it.
|
||||||
|
export TMUX_POWERLINE_SEG_WEATHER_GREP="grep"
|
||||||
|
# Location of the JSON parser, jq
|
||||||
|
export TMUX_POWERLINE_SEG_WEATHER_JSON="jq"
|
||||||
|
# Your location
|
||||||
|
# Latitude and Longtitude for use with yr.no
|
||||||
|
TMUX_POWERLINE_SEG_WEATHER_LAT="41.099050"
|
||||||
|
TMUX_POWERLINE_SEG_WEATHER_LON="-74.252859"
|
||||||
|
# }
|
||||||
55
backups/tmuxp-main-layout.yaml
Normal file
@ -0,0 +1,55 @@
|
|||||||
|
session_name: Work
|
||||||
|
windows:
|
||||||
|
- layout: ba3e,151x53,0,0,1
|
||||||
|
options: {}
|
||||||
|
panes:
|
||||||
|
- focus: 'true'
|
||||||
|
shell_command: zsh
|
||||||
|
start_directory: /Users/normrasmussen/Documents/Work
|
||||||
|
window_name: notes
|
||||||
|
- layout: c1ff,149x54,0,0,2
|
||||||
|
options: {}
|
||||||
|
panes:
|
||||||
|
- focus: 'true'
|
||||||
|
shell_command: zsh
|
||||||
|
start_directory: /Users/normrasmussen/Documents/Work/Custom_Templates
|
||||||
|
window_name: templates
|
||||||
|
- layout: ba40,151x53,0,0,3
|
||||||
|
options: {}
|
||||||
|
panes:
|
||||||
|
- focus: 'true'
|
||||||
|
shell_command: nvim
|
||||||
|
start_directory: /Users/normrasmussen/Documents/Work/Scripts
|
||||||
|
window_name: scripts
|
||||||
|
- layout: e469,177x53,0,0[177x42,0,0,4,177x10,0,43,5]
|
||||||
|
options: {}
|
||||||
|
panes:
|
||||||
|
- focus: 'true'
|
||||||
|
shell_command:
|
||||||
|
- cd /Users/normrasmussen/.dotfiles
|
||||||
|
- nvim
|
||||||
|
- shell_command:
|
||||||
|
- cd /Users/normrasmussen
|
||||||
|
- zsh
|
||||||
|
window_name: dots
|
||||||
|
- focus: 'true'
|
||||||
|
layout: 5cf6,171x53,0,0[171x36,0,0,7,171x16,0,37{85x16,0,37,14,85x16,86,37,16}]
|
||||||
|
options: {}
|
||||||
|
panes:
|
||||||
|
- shell_command:
|
||||||
|
- cd /Users/normrasmussen/Documents/Projects/hugo_blog/rsmsn_blog
|
||||||
|
- nvim
|
||||||
|
- focus: 'true'
|
||||||
|
shell_command:
|
||||||
|
- cd /Users/normrasmussen/Desktop
|
||||||
|
- shell_command:
|
||||||
|
- cd /Users/normrasmussen/Documents/Projects/hugo_blog/rsmsn_blog
|
||||||
|
- zsh
|
||||||
|
window_name: hugo
|
||||||
|
- layout: 5d96,171x53,0,0,17
|
||||||
|
options: {}
|
||||||
|
panes:
|
||||||
|
- focus: 'true'
|
||||||
|
shell_command: zsh
|
||||||
|
start_directory: /Users/normrasmussen
|
||||||
|
window_name: zsh
|
||||||
106
nvim/.config/nvim/code-shot.lua
Normal file
@ -0,0 +1,106 @@
|
|||||||
|
local M = {}
|
||||||
|
|
||||||
|
-- Function to get visual selection
|
||||||
|
local function get_visual_selection()
|
||||||
|
local start_pos = vim.fn.getpos("'<")
|
||||||
|
local end_pos = vim.fn.getpos("'>")
|
||||||
|
local lines = vim.fn.getline(start_pos[2], end_pos[2])
|
||||||
|
|
||||||
|
-- Handle partial line selections
|
||||||
|
if #lines == 1 then
|
||||||
|
lines[1] = string.sub(lines[1], start_pos[3], end_pos[3])
|
||||||
|
else
|
||||||
|
lines[1] = string.sub(lines[1], start_pos[3])
|
||||||
|
lines[#lines] = string.sub(lines[#lines], 1, end_pos[3])
|
||||||
|
end
|
||||||
|
|
||||||
|
return table.concat(lines, '\n')
|
||||||
|
end
|
||||||
|
|
||||||
|
-- Function to create carbon 50<
|
||||||
|
function M.create_screenshot()
|
||||||
|
-- Get the visual selection
|
||||||
|
local code = get_visual_selection()
|
||||||
|
if code == "" then
|
||||||
|
vim.notify("No text selected", vim.log.levels.ERROR)
|
||||||
|
return
|
||||||
|
end
|
||||||
|
|
||||||
|
-- Get file extension for language detection
|
||||||
|
local file_extension = vim.fn.expand('%:e')
|
||||||
|
|
||||||
|
-- Get download directory
|
||||||
|
local download_dir = vim.fn.expand('~/Downloads')
|
||||||
|
local timestamp = os.date("%Y%m%d_%H%M%S")
|
||||||
|
local output_file = string.format("%s/carbon_%s.png", download_dir, timestamp)
|
||||||
|
|
||||||
|
-- Prepare the curl command
|
||||||
|
local carbon_url = "https://carbonara.solopov.dev/api/cook"
|
||||||
|
local json_data = string.format([[{
|
||||||
|
"code": %s,
|
||||||
|
"theme": "one-dark",
|
||||||
|
"language": "%s",
|
||||||
|
"dropShadow": true,
|
||||||
|
"windowControls": true,
|
||||||
|
}]], vim.fn.json_encode(code), file_extension)
|
||||||
|
|
||||||
|
-- Create temporary file for JSON data
|
||||||
|
local temp_json = os.tmpname()
|
||||||
|
local f = io.open(temp_json, "w")
|
||||||
|
f:write(json_data)
|
||||||
|
f:close()
|
||||||
|
|
||||||
|
-- Execute curl command
|
||||||
|
local cmd = string.format(
|
||||||
|
'curl -L %s -X POST -H "Content-Type: application/json" --data %s --output %s',
|
||||||
|
carbon_url,
|
||||||
|
json_data,
|
||||||
|
output_file
|
||||||
|
)
|
||||||
|
vim.print(cmd)
|
||||||
|
-- [[--
|
||||||
|
-- curl -L https://carbonara.solopov.dev/api/cook \
|
||||||
|
-- -X POST \
|
||||||
|
-- -H 'Content-Type: application/json' \
|
||||||
|
-- -d '{
|
||||||
|
-- "code": "export default const sum = (a, b) => a + b",
|
||||||
|
-- "backgroundColor": "#1F816D"
|
||||||
|
-- }' \
|
||||||
|
-- > code.png
|
||||||
|
-- --]]
|
||||||
|
-- Run the command asynchronously
|
||||||
|
vim.fn.jobstart(cmd, {
|
||||||
|
on_exit = function(_, exit_code)
|
||||||
|
-- Clean up temp file
|
||||||
|
-- os.remove(temp_json)
|
||||||
|
os.rename(temp_json, '~/Downloads/temp_json.json')
|
||||||
|
|
||||||
|
if exit_code == 0 then
|
||||||
|
vim.notify(
|
||||||
|
string.format("Screenshot saved to %s", output_file),
|
||||||
|
vim.log.levels.INFO
|
||||||
|
)
|
||||||
|
else
|
||||||
|
vim.notify(
|
||||||
|
"Failed to create screenshot",
|
||||||
|
vim.log.levels.ERROR
|
||||||
|
)
|
||||||
|
end
|
||||||
|
end
|
||||||
|
})
|
||||||
|
end
|
||||||
|
|
||||||
|
-- Set up the plugin
|
||||||
|
function M.setup()
|
||||||
|
-- Create user command
|
||||||
|
vim.api.nvim_create_user_command(
|
||||||
|
'CodeShot',
|
||||||
|
function()
|
||||||
|
M.create_screenshot()
|
||||||
|
end,
|
||||||
|
{ range = true }
|
||||||
|
)
|
||||||
|
end
|
||||||
|
|
||||||
|
return M
|
||||||
|
|
||||||
BIN
nvim/.config/nvim/data/.DS_Store
vendored
|
Before Width: | Height: | Size: 99 KiB |
@ -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 |
@ -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 |
@ -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 |
@ -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 |
@ -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 |
@ -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 |
@ -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 |
@ -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 |
@ -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 |
@ -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 |
@ -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 |
@ -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 |
@ -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 |
@ -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 |
@ -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 |
@ -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'
|
|
||||||
@ -1,26 +1,10 @@
|
|||||||
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 = ','
|
|
||||||
vim.opt.textwidth = 85
|
|
||||||
vim.opt.colorcolumn = '+2'
|
|
||||||
|
|
||||||
require('lazy').setup('plugins')
|
|
||||||
|
|
||||||
|
|
||||||
-----------------------------------------------------------
|
-----------------------------------------------------------
|
||||||
-- General Neovim settings and configuration
|
-- General Neovim settings and configuration
|
||||||
-----------------------------------------------------------
|
-----------------------------------------------------------
|
||||||
|
vim.g.mapleader = ','
|
||||||
|
vim.g.localmapleader = ','
|
||||||
|
vim.opt.colorcolumn = '+2'
|
||||||
|
-- vim.diagnostic.config({ virtual_text = true, virtual_lines = true })
|
||||||
|
|
||||||
-----------------------------------------------------------
|
-----------------------------------------------------------
|
||||||
-- Neovim API aliases
|
-- Neovim API aliases
|
||||||
@ -43,19 +27,22 @@ opt.shadafile = "NONE"
|
|||||||
opt.shadafile = ""
|
opt.shadafile = ""
|
||||||
opt.shell = "/bin/zsh"
|
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
|
-- g.markdown_enable_folding = 1
|
||||||
|
opt.spell=true
|
||||||
opt.spelllang = 'en_us'
|
opt.spelllang = 'en_us'
|
||||||
cmd [[ autocmd BufWritePre * :%s/\s\+$//e ]]
|
opt.autochdir = true
|
||||||
vim.api.nvim_set_hl(0, "ColorColumn", {guibg=DarkOrchid1})
|
vim.cmd [[ autocmd BufWritePre * :%s/\s\+$//e ]]
|
||||||
|
-- vim.cmd [[ autocmd autochdir ]]
|
||||||
-----------------------------------------------------------
|
-----------------------------------------------------------
|
||||||
-- 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 = "expr" -- Enable folding (default 'foldmarker')
|
||||||
|
opt.foldexpr = "nvim_treesitter#foldexpr()"
|
||||||
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
|
||||||
@ -69,7 +56,7 @@ opt.wrap = true
|
|||||||
-----------------------------------------------------------
|
-----------------------------------------------------------
|
||||||
opt.hidden = true -- Enable background buffers
|
opt.hidden = true -- Enable background buffers
|
||||||
opt.history = 100 -- Remember N lines in historma:y
|
opt.history = 100 -- Remember N lines in historma:y
|
||||||
opt.lazyredraw = true -- Faster scrolling
|
opt.lazyredraw = false -- Faster scrolling
|
||||||
opt.synmaxcol = 240 -- Max column for syntax highlight
|
opt.synmaxcol = 240 -- Max column for syntax highlight
|
||||||
-----------------------------------------------------------
|
-----------------------------------------------------------
|
||||||
-- Colorscheme
|
-- Colorscheme
|
||||||
@ -78,26 +65,21 @@ opt.termguicolors = true -- Enable 24-bit RGB colors
|
|||||||
-----------------------------------------------------------
|
-----------------------------------------------------------
|
||||||
-- Tabs, indent
|
-- Tabs, indent
|
||||||
-----------------------------------------------------------
|
-----------------------------------------------------------
|
||||||
opt.expandtab = true -- Use spaces instead of tabs
|
g.expandtab = false -- Use spaces instead of tabs
|
||||||
opt.shiftwidth = 4 -- Shift 4 spaces when tab
|
g.shiftwidth = 2 -- Shift 4 spaces when tab
|
||||||
opt.tabstop = 4 -- 1 tab == 4 spaces
|
g.tabstop = 2 -- 1 tab == 4 spaces
|
||||||
opt.smartindent = true -- Autoindent new lines
|
g.smartindent = true -- Autoindent new lines
|
||||||
|
|
||||||
-----------------------------------------------------------
|
-----------------------------------------------------------
|
||||||
-- Glow Settings
|
-- AutoCmd and Additional Function Settings.
|
||||||
-----------------------------------------------------------
|
|
||||||
g.glow_binary_path = '/bin'
|
|
||||||
g.glow_border = 'rounded'
|
|
||||||
g.glow_width = 120
|
|
||||||
g.glow_use_pager = true
|
|
||||||
g.glow_style = 'dark'
|
|
||||||
-----------------------------------------------------------
|
|
||||||
-- MKDX Settings, mkdx#settings.
|
|
||||||
-----------------------------------------------------------
|
-----------------------------------------------------------
|
||||||
-- 2 spaces for selected filetypes
|
-- 2 spaces for selected filetypes
|
||||||
cmd [[
|
vim.cmd [[
|
||||||
autocmd FileType md,liquid,xml,html,xhtml,css,scss,javascript,lua,yaml setlocal shiftwidth=2 tabstop=8 noexpandtab
|
autocmd FileType md,liquid,xml,html,xhtml,css,scss,javascript,lua,yaml setlocal shiftwidth=2 tabstop=2 noexpandtab
|
||||||
]]
|
]]
|
||||||
|
vim.cmd [[ autocmd FileType python set textwidth=250 ]]
|
||||||
|
vim.cmd [[ autocmd FileType lua set textwidth=80 ]]
|
||||||
|
vim.cmd [[ autocmd FileType markdown,text set shiftwidth=2 foldlevel=99 ]]
|
||||||
|
|
||||||
local disabled_built_ins = {
|
local disabled_built_ins = {
|
||||||
"netrw",
|
"netrw",
|
||||||
@ -120,42 +102,18 @@ local disabled_built_ins = {
|
|||||||
"matchit"
|
"matchit"
|
||||||
}
|
}
|
||||||
|
|
||||||
for _, plugin in pairs(disabled_built_ins) do
|
-- for _, plugin in pairs(disabled_built_ins) do
|
||||||
vim.g["loaded_" .. plugin] = 1
|
-- vim.g["loaded_" .. plugin] = 1
|
||||||
|
-- end
|
||||||
|
|
||||||
|
-- Correctly set $VIRTUAL_ENV for Python venvs.
|
||||||
|
if vim.fn.exists("$VIRTUAL_ENV") == 1 then
|
||||||
|
vim.g.python3_host_prog = vim.fn.substitute(vim.fn.system("pyenv which python3 | head -n2 | tail -n1"), "\n", "", "g")
|
||||||
|
else
|
||||||
|
vim.g.python3_host_prog = vim.fn.substitute(vim.fn.system("which python3"), "\n", "", "g")
|
||||||
end
|
end
|
||||||
|
|
||||||
--[[
|
vim.lsp.enable({'ruff', 'pyright', 'marksman', 'emmet-ls', 'lua'})
|
||||||
Deletes all trailing whitespaces in a file if it's not binary nor a diff.
|
local capabilities = vim.lsp.protocol.make_client_capabilities()
|
||||||
]]--
|
capabilities.textDocument.completion.completionItem.snippetSupport = true
|
||||||
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
|
|
||||||
|
|
||||||
-- see https://github.com/hrsh7th/nvim-cmp/wiki/Menu-Appearance#how-to-add-visual-studio-code-dark-theme-colors-to-the-menu
|
|
||||||
--[[vim.cmd[[
|
|
||||||
highlight! link CmpItemMenu Comment
|
|
||||||
" gray
|
|
||||||
highlight! CmpItemAbbrDeprecated guibg=NONE gui=strikethrough guifg=#808080
|
|
||||||
" blue
|
|
||||||
highlight! CmpItemAbbrMatch guibg=NONE guifg=#569CD6
|
|
||||||
highlight! CmpItemAbbrMatchFuzzy guibg=NONE guifg=#569CD6
|
|
||||||
" light blue
|
|
||||||
highlight! CmpItemKindVariable guibg=NONE guifg=#9CDCFE
|
|
||||||
highlight! CmpItemKindInterface guibg=NONE guifg=#9CDCFE
|
|
||||||
highlight! CmpItemKindText guibg=NONE guifg=#9CDCFE
|
|
||||||
" pink
|
|
||||||
highlight! CmpItemKindFunction guibg=NONE guifg=#C586C0
|
|
||||||
highlight! CmpItemKindMethod guibg=NONE guifg=#C586C0
|
|
||||||
" front
|
|
||||||
highlight! CmpItemKindKeyword guibg=NONE guifg=#D4D4D4
|
|
||||||
highlight! CmpItemKindProperty guibg=NONE guifg=#D4D4D4
|
|
||||||
highlight! CmpItemKindUnit guibg=NONE guifg=#D4D4D4
|
|
||||||
]]
|
|
||||||
--]]
|
|
||||||
|
|
||||||
require('core/keymaps')
|
require('core/keymaps')
|
||||||
vim.cmd[[colorscheme moonlight]]
|
|
||||||
|
|||||||
@ -1,75 +1,71 @@
|
|||||||
{
|
{
|
||||||
"LuaSnip": { "branch": "master", "commit": "0b4950a237ce441a6a3a947d501622453f6860ea" },
|
"LuaSnip": { "branch": "master", "commit": "642b0c595e11608b4c18219e93b88d7637af27bc" },
|
||||||
"adjacent.nvim": { "branch": "main", "commit": "a555ab92d61aa6fbbfa1bfaef4633b663563f04e" },
|
"async.vim": { "branch": "master", "commit": "2082d13bb195f3203d41a308b89417426a7deca1" },
|
||||||
"alpha-nvim": { "branch": "main", "commit": "5f211a1597b06be24b1600d72a62b94cab1e2df9" },
|
"barbar.nvim": { "branch": "master", "commit": "539d73def39c9172b4d4d769f14090e08f37b29d" },
|
||||||
"auto-hlsearch.nvim": { "branch": "main", "commit": "8f28246d53e9478717ca3b51c8112083fbebd7e3" },
|
"blink.cmp": { "branch": "main", "commit": "78336bc89ee5365633bcf754d93df01678b5c08f" },
|
||||||
"barbar.nvim": { "branch": "master", "commit": "dd852401ee902745b67fc09a83d113b3fe82a96f" },
|
"codecompanion-history.nvim": { "branch": "main", "commit": "bc1b4fe06eaaf0aa2399be742e843c22f7f1652a" },
|
||||||
"cmp-buffer": { "branch": "main", "commit": "3022dbc9166796b644a841a02de8dd1cc1d311fa" },
|
"codecompanion.nvim": { "branch": "main", "commit": "9eeea4820a091321b085db2155c6133833bf72b0" },
|
||||||
"cmp-cmdline": { "branch": "main", "commit": "8ee981b4a91f536f52add291594e89fb6645e451" },
|
"dashboard-nvim": { "branch": "master", "commit": "62a10d9d55132b338dd742afc3c8a2683f3dd426" },
|
||||||
"cmp-nvim-lsp": { "branch": "main", "commit": "44b16d11215dce86f253ce0c30949813c0a90765" },
|
"deadcolumn.nvim": { "branch": "master", "commit": "92c86f10bfba2717ca2280e2e759b047135d5288" },
|
||||||
"cmp-nvim-lsp-signature-help": { "branch": "main", "commit": "3d8912ebeb56e5ae08ef0906e3a54de1c66b92f1" },
|
"diffview.nvim": { "branch": "main", "commit": "4516612fe98ff56ae0415a259ff6361a89419b0a" },
|
||||||
"cmp-path": { "branch": "main", "commit": "91ff86cd9c29299a64f968ebb45846c485725f23" },
|
"dracula.nvim": { "branch": "main", "commit": "ae752c13e95fb7c5f58da4b5123cb804ea7568ee" },
|
||||||
"cmp-spell": { "branch": "master", "commit": "60584cb75e5e8bba5a0c9e4c3ab0791e0698bffa" },
|
"eldritch.nvim": { "branch": "master", "commit": "0415fa72c348e814a7a6cc9405593a4f812fe12f" },
|
||||||
"cmp-under-comparator": { "branch": "master", "commit": "6857f10272c3cfe930cece2afa2406e1385bfef8" },
|
"f-string-toggle.nvim": { "branch": "main", "commit": "c1c77b4fce192e1615490d895863e2a0508d6021" },
|
||||||
"cmp_luasnip": { "branch": "master", "commit": "18095520391186d634a0045dacaa346291096566" },
|
"fidget.nvim": { "branch": "main", "commit": "889e2e96edef4e144965571d46f7a77bcc4d0ddf" },
|
||||||
"deadcolumn.nvim": { "branch": "master", "commit": "b9b5e237371ae5379e280e4df9ecf62e4bc8d7a5" },
|
"flemma.nvim": { "branch": "develop", "commit": "589b45f0911944e6f0833c23137186acca36b469" },
|
||||||
"diffview.nvim": { "branch": "main", "commit": "7e5a85c186027cab1e825d018f07c350177077fc" },
|
"friendly-snippets": { "branch": "main", "commit": "6cd7280adead7f586db6fccbd15d2cac7e2188b9" },
|
||||||
"distant.nvim": { "branch": "v0.2", "commit": "9dd21f8fa25795e56756e1ea27a1586ceee35582" },
|
"gitsigns.nvim": { "branch": "main", "commit": "0d797daee85366bc242580e352a4f62d67557b84" },
|
||||||
"dracula.nvim": { "branch": "main", "commit": "9fe831e685a76e1a1898a694623b33247c4d036c" },
|
"hackthebox.vim": { "branch": "main", "commit": "91a84adea2319e3701d76eaa25ae56795ad4dd0d" },
|
||||||
"f-string-toggle.nvim": { "branch": "main", "commit": "383ca5c08ed001f7c1632ba752c14e7bb88ce6ed" },
|
"headlines.nvim": { "branch": "master", "commit": "bf17c96a836ea27c0a7a2650ba385a7783ed322e" },
|
||||||
"feline.nvim": { "branch": "master", "commit": "d48b6f92c6ccdd6654c956f437be49ea160b5b0c" },
|
"hover.nvim": { "branch": "main", "commit": "e73c00da3a9c87a21d2a8ddf7ab4a39824bd5d56" },
|
||||||
"friendly-snippets": { "branch": "main", "commit": "00e191fea2cfbbdd378243f35b5953296537a116" },
|
"indent-blankline.nvim": { "branch": "master", "commit": "d28a3f70721c79e3c5f6693057ae929f3d9c0a03" },
|
||||||
"gitsigns.nvim": { "branch": "main", "commit": "44adf808ace6cb65a3353bd61fa585a2d8fe0db3" },
|
"kanagawa.nvim": { "branch": "master", "commit": "aef7f5cec0a40dbe7f3304214850c472e2264b10" },
|
||||||
"glow.nvim": { "branch": "main", "commit": "5b38fb7b6e806cac62707a4aba8c10c5f14d5bb5" },
|
"koda.nvim": { "branch": "main", "commit": "a560a332ccc1eb2caacb280a390213bb9f37b3cb" },
|
||||||
"headlines.nvim": { "branch": "master", "commit": "74a083a3c32a08be24f7dfcc6f448ecf47857f46" },
|
"lazy.nvim": { "branch": "main", "commit": "306a05526ada86a7b30af95c5cc81ffba93fef97" },
|
||||||
"indent-blankline.nvim": { "branch": "master", "commit": "9637670896b68805430e2f72cf5d16be5b97a22a" },
|
"lualine.nvim": { "branch": "master", "commit": "8811f3f3f4dc09d740c67e9ce399e7a541e2e5b2" },
|
||||||
"lazy.nvim": { "branch": "main", "commit": "2a9354c7d2368d78cbd5575a51a2af5bd8a6ad01" },
|
"mcphub.nvim": { "branch": "main", "commit": "7cd5db330f41b7bae02b2d6202218a061c3ebc1f" },
|
||||||
"lsp-colors.nvim": { "branch": "main", "commit": "2bbe7541747fd339bdd8923fc45631a09bb4f1e5" },
|
"mini.comment": { "branch": "main", "commit": "a0c721115faff8d05505c0a12dab410084d9e536" },
|
||||||
"lualine.nvim": { "branch": "master", "commit": "45e27ca739c7be6c49e5496d14fcf45a303c3a63" },
|
"mini.diff": { "branch": "main", "commit": "ab11575a6c147ecfba894d676d0c93e855021d34" },
|
||||||
"markdown-preview.nvim": { "branch": "master", "commit": "02cc3874738bc0f86e4b91f09b8a0ac88aef8e96" },
|
"mini.fuzzy": { "branch": "stable", "commit": "18e9cc3d7406f44a145d074ad18b10e472509a18" },
|
||||||
"mason-lspconfig.nvim": { "branch": "main", "commit": "dfdd771b792fbb4bad8e057d72558255695aa1a7" },
|
"mini.hipatterns": { "branch": "main", "commit": "a3ffba45e4119917b254c372df82e79f7d8c4aad" },
|
||||||
"mason-null-ls.nvim": { "branch": "main", "commit": "ae0c5fa57468ac65617f1bf821ba0c3a1e251f0c" },
|
"mini.icons": { "branch": "main", "commit": "7fdae2443a0e2910015ca39ad74b50524ee682d3" },
|
||||||
"mason.nvim": { "branch": "main", "commit": "0942198fb9a998b6ccee36fb8dd7495eb8ba659c" },
|
"mini.indentscope": { "branch": "main", "commit": "0308f949f31769e509696af5d5f91cebb2159c69" },
|
||||||
"mini.comment": { "branch": "main", "commit": "877acea5b2a32ff55f808fc0ebe9aa898648318c" },
|
"mini.move": { "branch": "main", "commit": "74d140143b1bb905c3d0aebcfc2f216fd237080e" },
|
||||||
"mini.fuzzy": { "branch": "stable", "commit": "295763d73cbf580c27a4419364c47b09fc82e0f4" },
|
"mini.pairs": { "branch": "stable", "commit": "d5a29b6254dad07757832db505ea5aeab9aad43a" },
|
||||||
"mini.move": { "branch": "main", "commit": "3afd39873eb9171684e554a214c055482444a47d" },
|
"mini.surround": { "branch": "main", "commit": "88c52297ed3e69ecf9f8652837888ecc727a28ee" },
|
||||||
"mini.pairs": { "branch": "stable", "commit": "963b800d0524eadd297199207011b98684205ada" },
|
"mini.trailspace": { "branch": "main", "commit": "b362246495d18c29b4545a8f1c47f627f8011b7c" },
|
||||||
"mini.surround": { "branch": "main", "commit": "eeaf96562947f75afa51a6266e066529369ca7ef" },
|
"mkdnflow.nvim": { "branch": "main", "commit": "f20732686f70f60f18f09f4befe984ae63a99201" },
|
||||||
"mini.trailspace": { "branch": "main", "commit": "c41ab1035d184ff20c1aebd76639320c055afebe" },
|
"morta": { "branch": "main", "commit": "10b4cdb8b7ae3f814b77f617f985245b3c11c1fa" },
|
||||||
"mkdnflow.nvim": { "branch": "main", "commit": "a728a3533bb57502fdfd6fdb4e5839fc87430edc" },
|
"neowarrior.nvim": { "branch": "main", "commit": "197cd4a7a56d07374fcda09b5b56baa433e40549" },
|
||||||
"moonfly": { "branch": "master", "commit": "1e81cbb88a34c41572fde43cd633bd6d60727274" },
|
"nightfly": { "branch": "master", "commit": "250ee0eb4975e59a277f50cc03c980eef27fb483" },
|
||||||
"neorg": { "branch": "main", "commit": "064f8f65dd32f4fe728e76acfa3e4e153b121147" },
|
"nightfox.nvim": { "branch": "main", "commit": "ba47d4b4c5ec308718641ba7402c143836f35aa9" },
|
||||||
"neorg-templates": { "branch": "main", "commit": "1078ced1f995cc053cdb10b51bd5e5dd5d76f78a" },
|
"noice.nvim": { "branch": "main", "commit": "7bfd942445fb63089b59f97ca487d605e715f155" },
|
||||||
"neoscroll.nvim": { "branch": "master", "commit": "4bc0212e9f2a7bc7fe7a6bceb15b33e39f0f41fb" },
|
"nui.nvim": { "branch": "main", "commit": "de740991c12411b663994b2860f1a4fd0937c130" },
|
||||||
"neovim": { "branch": "main", "commit": "e29002cbee4854a9c8c4b148d8a52fae3176070f" },
|
"numb.nvim": { "branch": "master", "commit": "12ef3913dea8727d4632c6f2ed47957a993de627" },
|
||||||
"nightfox.nvim": { "branch": "main", "commit": "a48f6d9a0273101df76eb25d2f5477baa277f935" },
|
"nvim": { "branch": "main", "commit": "df2a1f9f3392d688397e945544a30aec8fc9b4c7" },
|
||||||
"null-ls.nvim": { "branch": "main", "commit": "0010ea927ab7c09ef0ce9bf28c2b573fc302f5a7" },
|
"nvim-notify": { "branch": "master", "commit": "8701bece920b38ea289b457f902e2ad184131a5d" },
|
||||||
"numb.nvim": { "branch": "master", "commit": "3f7d4a74bd456e747a1278ea1672b26116e0824d" },
|
"nvim-tree.lua": { "branch": "master", "commit": "e16cd38962bc40c22a51ee004aa4f43726d74a16" },
|
||||||
"nvim": { "branch": "main", "commit": "2e3e5ebcdc24ef0d5b14a0a999dbbe7936512c46" },
|
"nvim-treesitter": { "branch": "master", "commit": "cf12346a3414fa1b06af75c79faebe7f76df080a" },
|
||||||
"nvim-cmp": { "branch": "main", "commit": "5dce1b778b85c717f6614e3f4da45e9f19f54435" },
|
"nvim-web-devicons": { "branch": "master", "commit": "40e9d5a6cc3db11b309e39593fc7ac03bb844e38" },
|
||||||
"nvim-dap": { "branch": "master", "commit": "31e1ece773e10448dcb616d5144290946a6264b7" },
|
"plenary.nvim": { "branch": "master", "commit": "b9fd5226c2f76c951fc8ed5923d85e4de065e509" },
|
||||||
"nvim-dap-python": { "branch": "master", "commit": "37b4cba02e337a95cb62ad1609b3d1dccb2e5d42" },
|
"pulse.nvim": { "branch": "main", "commit": "4026460b12da9abcfe34322db0bdc80e4b0dce3d" },
|
||||||
"nvim-dap-ui": { "branch": "master", "commit": "85b16ac2309d85c88577cd8ee1733ce52be8227e" },
|
"rainbow-delimiters.nvim": { "branch": "master", "commit": "aab6caaffd79b8def22ec4320a5344f7c42f58d2" },
|
||||||
"nvim-lspconfig": { "branch": "master", "commit": "a27356f1ef9c11e1f459cc96a3fcac5c265e72d6" },
|
"rainbow_csv.nvim": { "branch": "main", "commit": "26de78d8324f7ac6a3e478319d1eb1f17123eb5b" },
|
||||||
"nvim-notify": { "branch": "master", "commit": "ea9c8ce7a37f2238f934e087c255758659948e0f" },
|
"solarized-osaka.nvim": { "branch": "main", "commit": "f0c2f0ba0bd56108d53c9bfae4bb28ff6c67bbdb" },
|
||||||
"nvim-tree.lua": { "branch": "master", "commit": "00741206c2df9c4b538055def19b99790f0c95c8" },
|
"telescope-cmdline.nvim": { "branch": "main", "commit": "b1c330835563c9628ce7c095cf20772f22f93f07" },
|
||||||
"nvim-treesitter": { "branch": "master", "commit": "691d73287a94e8ed82a383df82aabfe77ab4bcaa" },
|
"telescope-file-browser.nvim": { "branch": "master", "commit": "3610dc7dc91f06aa98b11dca5cc30dfa98626b7e" },
|
||||||
"nvim-web-devicons": { "branch": "master", "commit": "cfc8824cc1db316a276b36517f093baccb8e799a" },
|
"telescope-fzf-native.nvim": { "branch": "main", "commit": "6fea601bd2b694c6f2ae08a6c6fab14930c60e2c" },
|
||||||
"plenary.nvim": { "branch": "master", "commit": "0dbe561ae023f02c2fb772b879e905055b939ce3" },
|
"telescope-live-grep-args.nvim": { "branch": "master", "commit": "b80ec2c70ec4f32571478b501218c8979fab5201" },
|
||||||
"popup.nvim": { "branch": "master", "commit": "b7404d35d5d3548a82149238289fa71f7f6de4ac" },
|
"telescope.nvim": { "branch": "master", "commit": "a0bbec21143c7bc5f8bb02e0005fa0b982edc026" },
|
||||||
"sidebar.nvim": { "branch": "main", "commit": "990ce5f562c9125283ccac5473235b1a56fea6dc" },
|
"thethethe.nvim": { "branch": "main", "commit": "357580127cd291c8a813564eeaff07c09303084e" },
|
||||||
"starry.nvim": { "branch": "master", "commit": "f189b1026ef11ab61185a4bb35baf72106a624de" },
|
"tiny-inline-diagnostic.nvim": { "branch": "main", "commit": "57a0eb84b2008c76e77930639890d9874195b1e1" },
|
||||||
"symbols-outline.nvim": { "branch": "master", "commit": "512791925d57a61c545bc303356e8a8f7869763c" },
|
"tmux.nvim": { "branch": "main", "commit": "2c1c3be0ef287073cef963f2aefa31a15c8b9cd8" },
|
||||||
"telescope-file-browser.nvim": { "branch": "master", "commit": "ad7b637c72549713b9aaed7c4f9c79c62bcbdff0" },
|
"todo-comments.nvim": { "branch": "main", "commit": "31e3c38ce9b29781e4422fc0322eb0a21f4e8668" },
|
||||||
"telescope-fzf-native.nvim": { "branch": "main", "commit": "9bc8237565ded606e6c366a71c64c0af25cd7a50" },
|
"toggleterm.nvim": { "branch": "main", "commit": "50ea089fc548917cc3cc16b46a8211833b9e3c7c" },
|
||||||
"telescope-live-grep-args.nvim": { "branch": "master", "commit": "851c0997d55601f2afd7290db0f90dc364e29f58" },
|
"tokyonight.nvim": { "branch": "main", "commit": "cdc07ac78467a233fd62c493de29a17e0cf2b2b6" },
|
||||||
"telescope.nvim": { "branch": "master", "commit": "c1a2af0af69e80e14e6b226d3957a064cd080805" },
|
"trouble.nvim": { "branch": "main", "commit": "bd67efe408d4816e25e8491cc5ad4088e708a69a" },
|
||||||
"tmux.nvim": { "branch": "main", "commit": "cb12b31a6b8aea1b39e4735ed70f7c73c2a938b0" },
|
"vim-arduino": { "branch": "master", "commit": "2ded67cdf09bb07c4805d9e93d478095ed3d8606" },
|
||||||
"todo-comments.nvim": { "branch": "main", "commit": "3094ead8edfa9040de2421deddec55d3762f64d1" },
|
"vim-arsync": { "branch": "master", "commit": "dd5fd93182aafb67ede2ef465f379610980b52d3" },
|
||||||
"toggleterm.nvim": { "branch": "main", "commit": "b90a1381e9b5b8596f49070ee86c71db267ac868" },
|
"vim-wakatime": { "branch": "master", "commit": "d7973b157a632d1edeff01818f18d67e584eeaff" },
|
||||||
"tokyonight.nvim": { "branch": "main", "commit": "9a01eada39558dc3243278e6805d90e8dff45dc0" },
|
"which-key.nvim": { "branch": "main", "commit": "3aab2147e74890957785941f0c1ad87d0a44c15a" }
|
||||||
"trouble.nvim": { "branch": "main", "commit": "3f85d8ed30e97ceeddbbcf80224245d347053711" },
|
|
||||||
"vim-arduino": { "branch": "master", "commit": "111db616db21d4f925691f1517792953f7671647" },
|
|
||||||
"vim-wakatime": { "branch": "master", "commit": "0d2efa2daff34b27b0d227d4c3b136811c93db93" },
|
|
||||||
"which-key.nvim": { "branch": "main", "commit": "7ccf476ebe0445a741b64e36c78a682c1c6118b7" }
|
|
||||||
}
|
}
|
||||||
5
nvim/.config/nvim/lsp/dprint.lua
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
return {
|
||||||
|
cmd = {'dprint', 'lsp'},
|
||||||
|
root_markers = { './' },
|
||||||
|
filetypes = { "javascript", "js", "javascriptreact", "typescript", "typescriptreact", "json", "jsonc", "toml", "rust", "roslyn", "graphql" }
|
||||||
|
}
|
||||||
15
nvim/.config/nvim/lsp/emmet-ls.lua
Normal file
@ -0,0 +1,15 @@
|
|||||||
|
return {
|
||||||
|
cmd = { 'emmet-ls', '--stdio' },
|
||||||
|
root_markers = { './', },
|
||||||
|
filetypes = { "astro", "css", "eruby", "html", "liquid", "htmldjango", "javascriptreact", "javascript", "js", "less", "pug", "sass", "scss", "svelte", "typescriptreact", "vue", "htmlangular" },
|
||||||
|
capabilities = capabilities,
|
||||||
|
settings = {
|
||||||
|
init_options = {
|
||||||
|
html = {
|
||||||
|
options = {
|
||||||
|
["bem.enabled"] = true,
|
||||||
|
},
|
||||||
|
},
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
5
nvim/.config/nvim/lsp/marksman.lua
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
return {
|
||||||
|
cmd = { 'marksman' },
|
||||||
|
root_markers = { './', },
|
||||||
|
filetypes = { 'md', 'markdown' },
|
||||||
|
}
|
||||||
67
nvim/.config/nvim/lsp/pyright.lua
Normal file
@ -0,0 +1,67 @@
|
|||||||
|
---@brief
|
||||||
|
---
|
||||||
|
--- https://github.com/microsoft/pyright
|
||||||
|
---
|
||||||
|
--- `pyright`, a static type checker and language server for python
|
||||||
|
|
||||||
|
local function set_python_path(command)
|
||||||
|
local path = command.args
|
||||||
|
local clients = vim.lsp.get_clients {
|
||||||
|
bufnr = vim.api.nvim_get_current_buf(),
|
||||||
|
name = 'pyright',
|
||||||
|
}
|
||||||
|
for _, client in ipairs(clients) do
|
||||||
|
if client.settings then
|
||||||
|
client.settings.python =
|
||||||
|
vim.tbl_deep_extend('force', client.settings.python --[[@as table]], { pythonPath = path })
|
||||||
|
else
|
||||||
|
client.config.settings = vim.tbl_deep_extend('force', client.config.settings, { python = { pythonPath = path } })
|
||||||
|
end
|
||||||
|
client:notify('workspace/didChangeConfiguration', { settings = nil })
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
---@type vim.lsp.Config
|
||||||
|
return {
|
||||||
|
cmd = { 'pyright-langserver', '--stdio' },
|
||||||
|
filetypes = { 'python' },
|
||||||
|
root_markers = {
|
||||||
|
'pyrightconfig.json',
|
||||||
|
'pyproject.toml',
|
||||||
|
'setup.py',
|
||||||
|
'setup.cfg',
|
||||||
|
'requirements.txt',
|
||||||
|
'Pipfile',
|
||||||
|
'.git',
|
||||||
|
},
|
||||||
|
settings = {
|
||||||
|
python = {
|
||||||
|
analysis = {
|
||||||
|
autoSearchPaths = true,
|
||||||
|
useLibraryCodeForTypes = true,
|
||||||
|
diagnosticMode = 'openFilesOnly',
|
||||||
|
},
|
||||||
|
},
|
||||||
|
},
|
||||||
|
on_attach = function(client, bufnr)
|
||||||
|
vim.api.nvim_buf_create_user_command(bufnr, 'LspPyrightOrganizeImports', function()
|
||||||
|
local params = {
|
||||||
|
command = 'pyright.organizeimports',
|
||||||
|
arguments = { vim.uri_from_bufnr(bufnr) },
|
||||||
|
}
|
||||||
|
|
||||||
|
-- Using client.request() directly because "pyright.organizeimports" is private
|
||||||
|
-- (not advertised via capabilities), which client:exec_cmd() refuses to call.
|
||||||
|
-- https://github.com/neovim/neovim/blob/c333d64663d3b6e0dd9aa440e433d346af4a3d81/runtime/lua/vim/lsp/client.lua#L1024-L1030
|
||||||
|
---@diagnostic disable-next-line: param-type-mismatch
|
||||||
|
client.request('workspace/executeCommand', params, nil, bufnr)
|
||||||
|
end, {
|
||||||
|
desc = 'Organize Imports',
|
||||||
|
})
|
||||||
|
vim.api.nvim_buf_create_user_command(bufnr, 'LspPyrightSetPythonPath', set_python_path, {
|
||||||
|
desc = 'Reconfigure pyright with the provided python path',
|
||||||
|
nargs = 1,
|
||||||
|
complete = 'file',
|
||||||
|
})
|
||||||
|
end,
|
||||||
|
}
|
||||||
7
nvim/.config/nvim/lsp/ruff.lua
Normal file
@ -0,0 +1,7 @@
|
|||||||
|
---@type vim.lsp.Config
|
||||||
|
return {
|
||||||
|
cmd = { 'ruff', 'server' },
|
||||||
|
filetypes = { 'python' },
|
||||||
|
root_markers = { 'pyproject.toml', 'ruff.toml', '.ruff.toml', '.git' },
|
||||||
|
settings = {},
|
||||||
|
}
|
||||||
BIN
nvim/.config/nvim/lua/.DS_Store
vendored
@ -5,13 +5,11 @@
|
|||||||
local map = vim.api.nvim_set_keymap
|
local map = vim.api.nvim_set_keymap
|
||||||
local default_opts = { noremap = true, silent = true }
|
local default_opts = { noremap = true, silent = true }
|
||||||
|
|
||||||
-- Fast saving with <leader> and s
|
-- Update all plugins using vim.pack
|
||||||
map('n', '<leader>s', ':w<CR>', default_opts)
|
map('n', '<leader>u', ':lua vim.pack.update()<CR>', default_opts)
|
||||||
map('n', '<leader>a', ':w|:luafile %<CR>', default_opts)
|
|
||||||
map('n', '<leader>aa', ':w|:luafile %<CR> |:Lazy<CR>', default_opts)
|
-- Close and save all buffers and return to Dashboard
|
||||||
map('i', '<leader>s', '<C-c>:w<CR>', default_opts)
|
map('n', '<leader>ds', ':silent wa | %bd | Alpha', 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
|
-- Neovim Tab Navgation via Vem-Tabline
|
||||||
map('n', '<leader>t', ':tabnew<CR>', default_opts)
|
map('n', '<leader>t', ':tabnew<CR>', default_opts)
|
||||||
@ -24,57 +22,31 @@ map('n', '<leader>q', '<Plug>vem_move_buffer_left', default_opts)
|
|||||||
-- Nvim-Tree
|
-- Nvim-Tree
|
||||||
map('n', '<leader>v', ':NvimTreeToggle<CR>', default_opts)
|
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
|
-- Telescope
|
||||||
map('n', '<leader>ff', ':Telescope find_files<CR>', default_opts)
|
map('n', '<leader>ff', ':Telescope find_files<CR>', default_opts)
|
||||||
map('n', '<leader>fg', ':Telescope live_grep<CR>', default_opts)
|
map('n', '<leader>fh', ':Telescope live_grep<CR>', default_opts)
|
||||||
|
map('n', '<leader>fg', ':Telescope live_grep_args<CR>', default_opts)
|
||||||
map('n', '<leader>fb', ':Telescope buffers<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>fe', ':Telescope file_browser<CR>', default_opts)
|
||||||
map('n', '<leader>fk', ':Telescope keymaps<CR>', default_opts)
|
map('n', '<leader>fk', ':Telescope keymaps<CR>', default_opts)
|
||||||
map('n', '<leader>fa', ':Telescope adjacent<CR>', default_opts)
|
map('n', '<leader>fa', ':Telescope adjacent<CR>', default_opts)
|
||||||
|
map('n', '<leader>cb', ':Telescope current_buffer_fuzzy_find<CR>', default_opts)
|
||||||
|
|
||||||
-- Formatting
|
-- Formatting
|
||||||
map('n', '<leader>b', ':! black %<CR>', default_opts)
|
map('n', '<leader>b', ':! black %<CR>', default_opts)
|
||||||
map('n', '<leader>m', ':! markdownlint -f %<CR>', default_opts)
|
map('n', '<leader>m', ':! markdownlint -f %<CR>', default_opts)
|
||||||
|
map('n', '<leader>pj', ':!python -m json.tool<CR>', default_opts)
|
||||||
|
map('n', '<leader>cs', ':%s/\\s*\\([^|]\\{-}\\)\\s*|/"\1",/g', default_opts)
|
||||||
|
|
||||||
------------------------------------------------
|
-- Fold all comments
|
||||||
-- Old Keymaps from Nvim-Mapper (Sunsetted)
|
map('n', '<leader>fc', ':set foldmethod=expr foldexpr=getline(v:lnum)=~"^\\s*".&commentstring[0]<CR>', default_opts)
|
||||||
------------------------------------------------
|
|
||||||
--[[
|
|
||||||
-- 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,
|
-- Terminal
|
||||||
"Add Solutions Engineering", "todo_seng", "Add Solutions Engineering to the beginning of the line"
|
map('n', '<C-t>', ':ToggleTerm direction=float<CR>', default_opts)
|
||||||
)
|
map('t', '<C-n>', '<C-\\><C-n><CR>', default_opts) -- Exit Insert Mode Faster
|
||||||
|
|
||||||
M('n', '<C-f>', "@f<CR>", default_opts,
|
-- Tiny Code Action
|
||||||
"Add Feature", "add_feat", "Add Feature Request tag to the beginning of the line. "
|
-- map('n', "<leader>ca", function() require("tiny-code-action").code_action() end, default_opts)
|
||||||
)
|
vim.keymap.set("n", "<leader>ca", function()
|
||||||
|
require("tiny-code-action").code_action()
|
||||||
M( 'n', '<C-x>', "@c<CR>", default_opts,
|
end, { noremap = true, silent = true })
|
||||||
"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."
|
|
||||||
)
|
|
||||||
|
|
||||||
--]]
|
|
||||||
|
|||||||
@ -1,143 +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})
|
|
||||||
-----------------------------------------------------------
|
|
||||||
-- 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 = '99'
|
|
||||||
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.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:1' -- 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
|
|
||||||
cmd[[colorscheme dracula]]
|
|
||||||
-----------------------------------------------------------
|
|
||||||
-- Tabs, indent
|
|
||||||
-----------------------------------------------------------
|
|
||||||
opt.expandtab = true -- Use spaces instead of tabs
|
|
||||||
opt.shiftwidth = 4 -- Shift 4 spaces when tab
|
|
||||||
opt.tabstop = 4 -- 1 tab == 4 spaces
|
|
||||||
opt.smartindent = true -- Autoindent new lines
|
|
||||||
-----------------------------------------------------------
|
|
||||||
-- Glow Settings
|
|
||||||
-----------------------------------------------------------
|
|
||||||
g.glow_binary_path = '/bin'
|
|
||||||
g.glow_border = 'rounded'
|
|
||||||
g.glow_width = 120
|
|
||||||
g.glow_use_pager = true
|
|
||||||
g.glow_style = 'dark'
|
|
||||||
-----------------------------------------------------------
|
|
||||||
-- 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
|
|
||||||
|
|
||||||
-- see https://github.com/hrsh7th/nvim-cmp/wiki/Menu-Appearance#how-to-add-visual-studio-code-dark-theme-colors-to-the-menu
|
|
||||||
vim.cmd[[
|
|
||||||
highlight! link CmpItemMenu Comment
|
|
||||||
" gray
|
|
||||||
highlight! CmpItemAbbrDeprecated guibg=NONE gui=strikethrough guifg=#808080
|
|
||||||
" blue
|
|
||||||
highlight! CmpItemAbbrMatch guibg=NONE guifg=#569CD6
|
|
||||||
highlight! CmpItemAbbrMatchFuzzy guibg=NONE guifg=#569CD6
|
|
||||||
" light blue
|
|
||||||
highlight! CmpItemKindVariable guibg=NONE guifg=#9CDCFE
|
|
||||||
highlight! CmpItemKindInterface guibg=NONE guifg=#9CDCFE
|
|
||||||
highlight! CmpItemKindText guibg=NONE guifg=#9CDCFE
|
|
||||||
" pink
|
|
||||||
highlight! CmpItemKindFunction guibg=NONE guifg=#C586C0
|
|
||||||
highlight! CmpItemKindMethod guibg=NONE guifg=#C586C0
|
|
||||||
" front
|
|
||||||
highlight! CmpItemKindKeyword guibg=NONE guifg=#D4D4D4
|
|
||||||
highlight! CmpItemKindProperty guibg=NONE guifg=#D4D4D4
|
|
||||||
highlight! CmpItemKindUnit guibg=NONE guifg=#D4D4D4
|
|
||||||
]]
|
|
||||||
|
|
||||||
@ -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
|
|
||||||
}
|
|
||||||
@ -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
|
|
||||||
}
|
|
||||||
|
|
||||||
@ -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
|
|
||||||
}
|
|
||||||
|
|
||||||
@ -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
|
|
||||||
}
|
|
||||||
--]]
|
|
||||||
@ -1,365 +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' },
|
|
||||||
|
|
||||||
{
|
|
||||||
'L3MON4D3/LuaSnip', version = "2.0.0",
|
|
||||||
build = "make install_jsregexp",
|
|
||||||
dependencies = { "friendly-snippets" },
|
|
||||||
},
|
|
||||||
|
|
||||||
{"ellisonleao/glow.nvim", config = function() require("glow").setup() end },
|
|
||||||
|
|
||||||
'saadparwaiz1/cmp_luasnip',
|
|
||||||
'hrsh7th/cmp-nvim-lsp-signature-help',
|
|
||||||
'lukas-reineke/cmp-under-comparator',
|
|
||||||
|
|
||||||
{
|
|
||||||
'asiryk/auto-hlsearch.nvim',
|
|
||||||
version = "1.1.0",
|
|
||||||
config = function() require("auto-hlsearch").setup{} end,
|
|
||||||
},
|
|
||||||
|
|
||||||
------------------------------------------------------------
|
|
||||||
-- General Functionality
|
|
||||||
------------------------------------------------------------
|
|
||||||
|
|
||||||
{ 'MaximilianLloyd/adjacent.nvim' },
|
|
||||||
{ 'stevearc/vim-arduino'},
|
|
||||||
{ 'sindrets/diffview.nvim' },
|
|
||||||
{
|
|
||||||
'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',
|
|
||||||
dependencies = { 'nvim-tree/nvim-web-devicons' },
|
|
||||||
config = function() require('lualine').setup{
|
|
||||||
options = { theme = 'palenight' }
|
|
||||||
} 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
|
|
||||||
{
|
|
||||||
"aserowy/tmux.nvim",
|
|
||||||
config = function() require("tmux").setup() end
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"roobert/f-string-toggle.nvim",
|
|
||||||
config = function()
|
|
||||||
require("f-string-toggle").setup{
|
|
||||||
key_binding = "<leader>g"
|
|
||||||
}
|
|
||||||
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
|
|
||||||
},
|
|
||||||
|
|
||||||
|
|
||||||
-- 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',
|
|
||||||
{'akinsho/toggleterm.nvim', version = "*", opts = {--[[ things you want to change go here]]}},
|
|
||||||
|
|
||||||
------------------------------------------------------------
|
|
||||||
-- echasnovski's Minis get a section of their own...
|
|
||||||
------------------------------------------------------------
|
|
||||||
|
|
||||||
{
|
|
||||||
'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
|
|
||||||
},
|
|
||||||
|
|
||||||
-----------------------------------------------------------
|
|
||||||
-- Markdown Plugins
|
|
||||||
------------------------------------------------------------
|
|
||||||
|
|
||||||
{
|
|
||||||
"iamcco/markdown-preview.nvim",
|
|
||||||
build = "cd app && npm install",
|
|
||||||
ft = "markdown",
|
|
||||||
lazy = true,
|
|
||||||
keys = { { "gm", "<cmd>MarkdownPreviewToggle<cr>", desc = "Markdown Preview" } },
|
|
||||||
config = function()
|
|
||||||
vim.g.mkdp_auto_close = true
|
|
||||||
vim.g.mkdp_open_to_the_world = false
|
|
||||||
vim.g.mkdp_open_ip = "127.0.0.1"
|
|
||||||
vim.g.mkdp_port = "8888"
|
|
||||||
vim.g.mkdp_browser = ""
|
|
||||||
vim.g.mkdp_echo_preview_url = true
|
|
||||||
vim.g.mkdp_page_title = "${name}"
|
|
||||||
end,
|
|
||||||
},
|
|
||||||
--[[
|
|
||||||
{ 'toppair/peek.nvim',
|
|
||||||
build = 'deno task --quiet build:fast',
|
|
||||||
config = function()
|
|
||||||
require('peek').setup()
|
|
||||||
end
|
|
||||||
},
|
|
||||||
]]--
|
|
||||||
-- DAP (Debug adaptor Protocol)
|
|
||||||
'mfussenegger/nvim-dap',
|
|
||||||
|
|
||||||
{
|
|
||||||
'mfussenegger/nvim-dap-python',
|
|
||||||
config = function()
|
|
||||||
require('dap-python').setup(
|
|
||||||
'~/.virtualenvs/debugpy/bin/python'
|
|
||||||
)
|
|
||||||
end
|
|
||||||
},
|
|
||||||
-- 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',
|
|
||||||
'Mofiqul/dracula.nvim',
|
|
||||||
'karb94/neoscroll.nvim',
|
|
||||||
|
|
||||||
-- Allow Popups for Telescope etc
|
|
||||||
'nvim-lua/popup.nvim',
|
|
||||||
'nvim-lua/plenary.nvim',
|
|
||||||
|
|
||||||
-- Todo & Comments for Organization
|
|
||||||
{
|
|
||||||
'folke/todo-comments.nvim',
|
|
||||||
dependencies = "nvim-lua/plenary.nvim",
|
|
||||||
config = function()
|
|
||||||
require("todo-comments").setup {
|
|
||||||
keywords = {
|
|
||||||
FIX = {
|
|
||||||
icon = " ", -- icon used for the sign, and in search results
|
|
||||||
color = "error", -- can be a hex color, or a named color (see below)
|
|
||||||
alt = { "FIXME", "BUG", "FIXIT", "ISSUE" }, -- a set of other keywords that all map to this FIX keywords
|
|
||||||
-- signs = false, -- configure signs for some keywords individually
|
|
||||||
},
|
|
||||||
DONE = { icon = " ", color = "info" },
|
|
||||||
IN_PROG = { icon = "", color = "default" },
|
|
||||||
FEAT = { icon = " ", color = "warning", alt = { "NEED", "REQUEST" } },
|
|
||||||
WARN = { icon = " ", color = "error", alt = { "WARNING", "ERROR" } },
|
|
||||||
TODO = { icon = " ", color = "hint", alt = { "TASK", "TBD" } },
|
|
||||||
RISK = { icon = " ", color = "hint", alt = { "RISK" } },
|
|
||||||
SENG = { icon = " ", color = "test", alt = { "SOLUTIONS", "SE", "WORKAROUND" } },
|
|
||||||
},
|
|
||||||
highlight = {
|
|
||||||
comments_only = false,
|
|
||||||
},
|
|
||||||
colors = {
|
|
||||||
error = { "DiagnosticError", "ErrorMsg", "#DC2626" },
|
|
||||||
warning = { "DiagnosticWarning", "WarningMsg", "#FBBF24" },
|
|
||||||
info = { "DiagnosticInfo", "#2563EB" },
|
|
||||||
hint = { "DiagnosticHint", "#10B981" },
|
|
||||||
default = { "Identifier", "#7C3AED" },
|
|
||||||
test = { "Identifier", "#FF00FF" }
|
|
||||||
},
|
|
||||||
}
|
|
||||||
end
|
|
||||||
},
|
|
||||||
-- 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},
|
|
||||||
'rose-pine/neovim',
|
|
||||||
'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()
|
|
||||||
-- load the colorscheme here
|
|
||||||
-- vim.cmd([[colorscheme tokyonight]])
|
|
||||||
end,
|
|
||||||
},
|
|
||||||
{ "bluz71/vim-moonfly-colors", name = "moonfly", lazy = true, priority = 1000 },
|
|
||||||
'Bekaboo/deadcolumn.nvim',
|
|
||||||
-- {
|
|
||||||
-- 'm4xshen/smartcolumn.nvim',
|
|
||||||
-- config = function()
|
|
||||||
-- require("smartcolumn").setup{
|
|
||||||
-- config = {
|
|
||||||
-- colorcolumn = "100",
|
|
||||||
-- disabled_filetypes = { "help" },
|
|
||||||
-- custom_colorcolumn = {},
|
|
||||||
-- },
|
|
||||||
-- }
|
|
||||||
-- end
|
|
||||||
-- },
|
|
||||||
{
|
|
||||||
'feline-nvim/feline.nvim',
|
|
||||||
dependencies = { 'nvim-tree/nvim-web-devicons' },
|
|
||||||
},
|
|
||||||
-- Plugin that causes your code to crumble >:)
|
|
||||||
-- 'eandrju/cellular-automaton.nvim',
|
|
||||||
|
|
||||||
-- Wakatime Tracking
|
|
||||||
'wakatime/vim-wakatime',
|
|
||||||
|
|
||||||
----------------------------------------------
|
|
||||||
--- Custom Plugins and Tests
|
|
||||||
----------------------------------------------
|
|
||||||
{
|
|
||||||
dir = '/Users/normrasmussen/Documents/Projects/tasksPlugin.nvim/',
|
|
||||||
dev = true,
|
|
||||||
name = "Mkdn Tasks (DEV)",
|
|
||||||
},
|
|
||||||
}
|
|
||||||
|
|
||||||
@ -1,29 +0,0 @@
|
|||||||
return {
|
|
||||||
"jay-babu/mason-null-ls.nvim",
|
|
||||||
event = { "BufReadPre", "BufNewFile" },
|
|
||||||
dependencies = {
|
|
||||||
"williamboman/mason.nvim",
|
|
||||||
"jose-elias-alvarez/null-ls.nvim",
|
|
||||||
},
|
|
||||||
config = function ()
|
|
||||||
require("mason-null-ls").setup({
|
|
||||||
ensure_installed = nil,
|
|
||||||
automatic_installation = true,
|
|
||||||
})
|
|
||||||
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", "MD024", "MD013", "--" }
|
|
||||||
,}),
|
|
||||||
null_ls.builtins.formatting.black,
|
|
||||||
null_ls.builtins.diagnostics.ruff,
|
|
||||||
-- null_ls.builtins.diagnostics.pylama,
|
|
||||||
-- null_ls.builtins.diagnostics.pylint,
|
|
||||||
-- null_ls.builtins.diagnostics.pycodestyle,
|
|
||||||
},
|
|
||||||
})
|
|
||||||
end
|
|
||||||
}
|
|
||||||
@ -1,41 +0,0 @@
|
|||||||
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,
|
|
||||||
}
|
|
||||||
@ -1,42 +0,0 @@
|
|||||||
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,
|
|
||||||
}
|
|
||||||
@ -1,110 +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)
|
|
||||||
end
|
|
||||||
},
|
|
||||||
|
|
||||||
-- 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,
|
|
||||||
},
|
|
||||||
sources = {
|
|
||||||
{ name = 'nvim-lsp', keyword_length = 1 },
|
|
||||||
{ name = 'luasnip', keyword_length=2 },
|
|
||||||
{ name = 'path' },
|
|
||||||
{ name = 'nvim_lsp_signature_help' },
|
|
||||||
{ 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
|
|
||||||
}
|
|
||||||
@ -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
|
|
||||||
}
|
|
||||||
@ -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
|
|
||||||
}
|
|
||||||
@ -1,15 +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,
|
|
||||||
}
|
|
||||||
--]]
|
|
||||||
@ -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 "live_grep_args"
|
|
||||||
require("telescope").load_extension "fzf"
|
|
||||||
require("telescope").load_extension "adjacent"
|
|
||||||
end
|
|
||||||
|
|
||||||
}}
|
|
||||||
|
|
||||||
243
nvim/.config/nvim/nvim-pack-lock.json
Normal file
@ -0,0 +1,243 @@
|
|||||||
|
{
|
||||||
|
"plugins": {
|
||||||
|
"LuaSnip": {
|
||||||
|
"rev": "a62e1083a3cfe8b6b206e7d3d33a51091df25357",
|
||||||
|
"src": "https://github.com/L3MON4D3/LuaSnip"
|
||||||
|
},
|
||||||
|
"async.vim": {
|
||||||
|
"rev": "2082d13bb195f3203d41a308b89417426a7deca1",
|
||||||
|
"src": "https://github.com/prabirshrestha/async.vim"
|
||||||
|
},
|
||||||
|
"barbar.nvim": {
|
||||||
|
"rev": "539d73def39c9172b4d4d769f14090e08f37b29d",
|
||||||
|
"src": "https://github.com/romgrk/barbar.nvim"
|
||||||
|
},
|
||||||
|
"blink.cmp": {
|
||||||
|
"rev": "a327b19a419347084074cce77f6cd074f54705ac",
|
||||||
|
"src": "https://github.com/saghen/blink.cmp",
|
||||||
|
"version": ">=0.0.0"
|
||||||
|
},
|
||||||
|
"codecompanion-history.nvim": {
|
||||||
|
"rev": "bc1b4fe06eaaf0aa2399be742e843c22f7f1652a",
|
||||||
|
"src": "https://github.com/ravitemer/codecompanion-history.nvim"
|
||||||
|
},
|
||||||
|
"codecompanion.nvim": {
|
||||||
|
"rev": "7d7957c26d33a97085d3a0c82eeb0147a0f51314",
|
||||||
|
"src": "https://github.com/olimorris/codecompanion.nvim"
|
||||||
|
},
|
||||||
|
"dashboard-nvim": {
|
||||||
|
"rev": "62a10d9d55132b338dd742afc3c8a2683f3dd426",
|
||||||
|
"src": "https://github.com/nvimdev/dashboard-nvim"
|
||||||
|
},
|
||||||
|
"deadcolumn.nvim": {
|
||||||
|
"rev": "92c86f10bfba2717ca2280e2e759b047135d5288",
|
||||||
|
"src": "https://github.com/Bekaboo/deadcolumn.nvim"
|
||||||
|
},
|
||||||
|
"dracula.nvim": {
|
||||||
|
"rev": "ae752c13e95fb7c5f58da4b5123cb804ea7568ee",
|
||||||
|
"src": "https://github.com/Mofiqul/dracula.nvim"
|
||||||
|
},
|
||||||
|
"eldritch.nvim": {
|
||||||
|
"rev": "0415fa72c348e814a7a6cc9405593a4f812fe12f",
|
||||||
|
"src": "https://github.com/eldritch-theme/eldritch.nvim"
|
||||||
|
},
|
||||||
|
"f-string-toggle.nvim": {
|
||||||
|
"rev": "c1c77b4fce192e1615490d895863e2a0508d6021",
|
||||||
|
"src": "https://github.com/roobert/f-string-toggle.nvim"
|
||||||
|
},
|
||||||
|
"fidget.nvim": {
|
||||||
|
"rev": "889e2e96edef4e144965571d46f7a77bcc4d0ddf",
|
||||||
|
"src": "https://github.com/j-hui/fidget.nvim"
|
||||||
|
},
|
||||||
|
"flemma.nvim": {
|
||||||
|
"rev": "589b45f0911944e6f0833c23137186acca36b469",
|
||||||
|
"src": "https://github.com/Flemma-Dev/flemma.nvim"
|
||||||
|
},
|
||||||
|
"friendly-snippets": {
|
||||||
|
"rev": "6cd7280adead7f586db6fccbd15d2cac7e2188b9",
|
||||||
|
"src": "https://github.com/rafamadriz/friendly-snippets"
|
||||||
|
},
|
||||||
|
"gitsigns.nvim": {
|
||||||
|
"rev": "8d82c240f190fc33723d48c308ccc1ed8baad69d",
|
||||||
|
"src": "https://github.com/lewis6991/gitsigns.nvim"
|
||||||
|
},
|
||||||
|
"hackthebox.vim": {
|
||||||
|
"rev": "91a84adea2319e3701d76eaa25ae56795ad4dd0d",
|
||||||
|
"src": "https://github.com/audibleblink/hackthebox.vim"
|
||||||
|
},
|
||||||
|
"headlines.nvim": {
|
||||||
|
"rev": "bf17c96a836ea27c0a7a2650ba385a7783ed322e",
|
||||||
|
"src": "https://github.com/lukas-reineke/headlines.nvim"
|
||||||
|
},
|
||||||
|
"hover.nvim": {
|
||||||
|
"rev": "e73c00da3a9c87a21d2a8ddf7ab4a39824bd5d56",
|
||||||
|
"src": "https://github.com/lewis6991/hover.nvim"
|
||||||
|
},
|
||||||
|
"indent-blankline.nvim": {
|
||||||
|
"rev": "d28a3f70721c79e3c5f6693057ae929f3d9c0a03",
|
||||||
|
"src": "https://github.com/lukas-reineke/indent-blankline.nvim"
|
||||||
|
},
|
||||||
|
"kanagawa.nvim": {
|
||||||
|
"rev": "aef7f5cec0a40dbe7f3304214850c472e2264b10",
|
||||||
|
"src": "https://github.com/rebelot/kanagawa.nvim"
|
||||||
|
},
|
||||||
|
"koda.nvim": {
|
||||||
|
"rev": "a560a332ccc1eb2caacb280a390213bb9f37b3cb",
|
||||||
|
"src": "https://github.com/oskarnurm/koda.nvim"
|
||||||
|
},
|
||||||
|
"lualine.nvim": {
|
||||||
|
"rev": "8811f3f3f4dc09d740c67e9ce399e7a541e2e5b2",
|
||||||
|
"src": "https://github.com/nvim-lualine/lualine.nvim"
|
||||||
|
},
|
||||||
|
"mcphub.nvim": {
|
||||||
|
"rev": "7cd5db330f41b7bae02b2d6202218a061c3ebc1f",
|
||||||
|
"src": "https://github.com/ravitemer/mcphub.nvim"
|
||||||
|
},
|
||||||
|
"mini.icons": {
|
||||||
|
"rev": "7fdae2443a0e2910015ca39ad74b50524ee682d3",
|
||||||
|
"src": "https://github.com/echasnovski/mini.icons"
|
||||||
|
},
|
||||||
|
"mini.nvim": {
|
||||||
|
"rev": "2431902e78b76f435542d1e606f08475360068ca",
|
||||||
|
"src": "https://github.com/nvim-mini/mini.nvim"
|
||||||
|
},
|
||||||
|
"mkdnflow.nvim": {
|
||||||
|
"rev": "f20732686f70f60f18f09f4befe984ae63a99201",
|
||||||
|
"src": "https://github.com/jakewvincent/mkdnflow.nvim"
|
||||||
|
},
|
||||||
|
"morta.nvim": {
|
||||||
|
"rev": "10b4cdb8b7ae3f814b77f617f985245b3c11c1fa",
|
||||||
|
"src": "https://github.com/philosofonusus/morta.nvim"
|
||||||
|
},
|
||||||
|
"nightfox.nvim": {
|
||||||
|
"rev": "ba47d4b4c5ec308718641ba7402c143836f35aa9",
|
||||||
|
"src": "https://github.com/EdenEast/nightfox.nvim"
|
||||||
|
},
|
||||||
|
"noice.nvim": {
|
||||||
|
"rev": "7bfd942445fb63089b59f97ca487d605e715f155",
|
||||||
|
"src": "https://github.com/folke/noice.nvim"
|
||||||
|
},
|
||||||
|
"nui.nvim": {
|
||||||
|
"rev": "de740991c12411b663994b2860f1a4fd0937c130",
|
||||||
|
"src": "https://github.com/MunifTanjim/nui.nvim"
|
||||||
|
},
|
||||||
|
"numb.nvim": {
|
||||||
|
"rev": "12ef3913dea8727d4632c6f2ed47957a993de627",
|
||||||
|
"src": "https://github.com/nacro90/numb.nvim"
|
||||||
|
},
|
||||||
|
"nvim": {
|
||||||
|
"rev": "426dbebe06b5c69fd846ceb17b42e12f890aedf1",
|
||||||
|
"src": "https://github.com/catppuccin/nvim"
|
||||||
|
},
|
||||||
|
"nvim-notify": {
|
||||||
|
"rev": "8701bece920b38ea289b457f902e2ad184131a5d",
|
||||||
|
"src": "https://github.com/rcarriga/nvim-notify"
|
||||||
|
},
|
||||||
|
"nvim-tree.lua": {
|
||||||
|
"rev": "509962f21ab7289d8dcd28568af539be39a8c01e",
|
||||||
|
"src": "https://github.com/nvim-tree/nvim-tree.lua"
|
||||||
|
},
|
||||||
|
"nvim-treesitter": {
|
||||||
|
"rev": "4916d6592ede8c07973490d9322f187e07dfefac",
|
||||||
|
"src": "https://github.com/nvim-treesitter/nvim-treesitter"
|
||||||
|
},
|
||||||
|
"nvim-web-devicons": {
|
||||||
|
"rev": "95b7a002d5dba1a42eb58f5fac5c565a485eefd0",
|
||||||
|
"src": "https://github.com/nvim-tree/nvim-web-devicons"
|
||||||
|
},
|
||||||
|
"nvimtelescope": {
|
||||||
|
"rev": "3333a52ff548ba0a68af6d8da1e54f9cd96e9179",
|
||||||
|
"src": "https://github.com/nvim-telescope/telescope.nvim",
|
||||||
|
"version": "'v0.2.1'"
|
||||||
|
},
|
||||||
|
"obsidian.nvim": {
|
||||||
|
"rev": "726b60c89f4bafef267a714ea1faa1335bdd414a",
|
||||||
|
"src": "https://github.com/epwalsh/obsidian.nvim"
|
||||||
|
},
|
||||||
|
"plenary.nvim": {
|
||||||
|
"rev": "b9fd5226c2f76c951fc8ed5923d85e4de065e509",
|
||||||
|
"src": "https://github.com/nvim-lua/plenary.nvim"
|
||||||
|
},
|
||||||
|
"rainbow-delimiters.nvim": {
|
||||||
|
"rev": "aab6caaffd79b8def22ec4320a5344f7c42f58d2",
|
||||||
|
"src": "https://github.com/HiPhish/rainbow-delimiters.nvim"
|
||||||
|
},
|
||||||
|
"rainbow_csv.nvim": {
|
||||||
|
"rev": "26de78d8324f7ac6a3e478319d1eb1f17123eb5b",
|
||||||
|
"src": "https://github.com/cameron-wags/rainbow_csv.nvim"
|
||||||
|
},
|
||||||
|
"ripgrep": {
|
||||||
|
"rev": "4519153e5e461527f4bca45b042fff45c4ec6fb9",
|
||||||
|
"src": "https://github.com/BurntSushi/ripgrep"
|
||||||
|
},
|
||||||
|
"solarized-osaka.nvim": {
|
||||||
|
"rev": "f0c2f0ba0bd56108d53c9bfae4bb28ff6c67bbdb",
|
||||||
|
"src": "https://github.com/craftzdog/solarized-osaka.nvim"
|
||||||
|
},
|
||||||
|
"telescope": {
|
||||||
|
"rev": "3333a52ff548ba0a68af6d8da1e54f9cd96e9179",
|
||||||
|
"src": "https://github.com/nvim-telescope/telescope.nvim",
|
||||||
|
"version": "'v0.2.1'"
|
||||||
|
},
|
||||||
|
"telescope-cmdline.nvim": {
|
||||||
|
"rev": "b1c330835563c9628ce7c095cf20772f22f93f07",
|
||||||
|
"src": "https://github.com/jonarrien/telescope-cmdline.nvim"
|
||||||
|
},
|
||||||
|
"telescope-file-browser.nvim": {
|
||||||
|
"rev": "3610dc7dc91f06aa98b11dca5cc30dfa98626b7e",
|
||||||
|
"src": "https://github.com/nvim-telescope/telescope-file-browser.nvim"
|
||||||
|
},
|
||||||
|
"telescope-fzf-native.nvim": {
|
||||||
|
"rev": "6fea601bd2b694c6f2ae08a6c6fab14930c60e2c",
|
||||||
|
"src": "https://github.com/nvim-telescope/telescope-fzf-native.nvim"
|
||||||
|
},
|
||||||
|
"telescope-live-grep-args.nvim": {
|
||||||
|
"rev": "53e9df55b3651dd7cf77e172f1e8c9a17407acca",
|
||||||
|
"src": "https://github.com/nvim-telescope/telescope-live-grep-args.nvim"
|
||||||
|
},
|
||||||
|
"telescope.nvim": {
|
||||||
|
"rev": "7ef4d6dccb78ee71e552bbd866176762ad328afa",
|
||||||
|
"src": "https://github.com/nvim-telescope/telescope.nvim"
|
||||||
|
},
|
||||||
|
"tiny-inline-diagnostic.nvim": {
|
||||||
|
"rev": "57a0eb84b2008c76e77930639890d9874195b1e1",
|
||||||
|
"src": "https://github.com/rachartier/tiny-inline-diagnostic.nvim"
|
||||||
|
},
|
||||||
|
"tmux.nvim": {
|
||||||
|
"rev": "2c1c3be0ef287073cef963f2aefa31a15c8b9cd8",
|
||||||
|
"src": "https://github.com/aserowy/tmux.nvim"
|
||||||
|
},
|
||||||
|
"todo-comments.nvim": {
|
||||||
|
"rev": "31e3c38ce9b29781e4422fc0322eb0a21f4e8668",
|
||||||
|
"src": "https://github.com/folke/todo-comments.nvim"
|
||||||
|
},
|
||||||
|
"toggleterm.nvim": {
|
||||||
|
"rev": "9a88eae817ef395952e08650b3283726786fb5fb",
|
||||||
|
"src": "https://github.com/akinsho/toggleterm.nvim"
|
||||||
|
},
|
||||||
|
"tokyonight.nvim": {
|
||||||
|
"rev": "cdc07ac78467a233fd62c493de29a17e0cf2b2b6",
|
||||||
|
"src": "https://github.com/folke/tokyonight.nvim"
|
||||||
|
},
|
||||||
|
"trouble.nvim": {
|
||||||
|
"rev": "bd67efe408d4816e25e8491cc5ad4088e708a69a",
|
||||||
|
"src": "https://github.com/folke/trouble.nvim"
|
||||||
|
},
|
||||||
|
"vim-arsync": {
|
||||||
|
"rev": "dd5fd93182aafb67ede2ef465f379610980b52d3",
|
||||||
|
"src": "https://github.com/kenn7/vim-arsync"
|
||||||
|
},
|
||||||
|
"vim-nightfly-colors": {
|
||||||
|
"rev": "250ee0eb4975e59a277f50cc03c980eef27fb483",
|
||||||
|
"src": "https://github.com/bluz71/vim-nightfly-colors"
|
||||||
|
},
|
||||||
|
"vim-wakatime": {
|
||||||
|
"rev": "d7973b157a632d1edeff01818f18d67e584eeaff",
|
||||||
|
"src": "https://github.com/wakatime/vim-wakatime"
|
||||||
|
},
|
||||||
|
"which-key.nvim": {
|
||||||
|
"rev": "3aab2147e74890957785941f0c1ad87d0a44c15a",
|
||||||
|
"src": "https://github.com/folke/which-key.nvim"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
82
nvim/.config/nvim/plugin/blink.lua
Normal file
@ -0,0 +1,82 @@
|
|||||||
|
vim.api.nvim_create_autocmd('PackChanged', {
|
||||||
|
callback = function(ev)
|
||||||
|
if ev.data.spec.name == 'blink.cmp' then
|
||||||
|
local res = vim.system({ 'cargo', 'build', '--release' }, { cwd = ev.data.path })
|
||||||
|
if vim.v.shell_error ~= 0 then
|
||||||
|
vim.notify('Failed to compile blink.cmp: ' .. res, vim.log.levels.ERROR)
|
||||||
|
else
|
||||||
|
vim.notify('Successfully compiled blink.cmp', vim.log.levels.INFO)
|
||||||
|
end
|
||||||
|
end
|
||||||
|
end,
|
||||||
|
})
|
||||||
|
|
||||||
|
vim.pack.add({
|
||||||
|
{src = "https://github.com/saghen/blink.cmp", version = vim.version.range("*")}
|
||||||
|
})
|
||||||
|
|
||||||
|
require("blink.cmp").setup({
|
||||||
|
fuzzy = { implementation = "rust" },
|
||||||
|
keymap = {
|
||||||
|
preset = "default",
|
||||||
|
['<C-space>'] = { 'show', 'show_documentation', 'hide_documentation' },
|
||||||
|
['<C-e>'] = { 'hide', 'fallback' },
|
||||||
|
['<Tab>'] = {
|
||||||
|
function(cmp)
|
||||||
|
if cmp.snippet_active() then return cmp.accept()
|
||||||
|
else return cmp.select_and_accept() end
|
||||||
|
end,
|
||||||
|
'snippet_forward',
|
||||||
|
'fallback'
|
||||||
|
},
|
||||||
|
['<S-Tab>'] = { 'snippet_backward', 'fallback' },
|
||||||
|
['<Up>'] = { 'select_prev', 'fallback' },
|
||||||
|
['<Down>'] = { 'select_next', 'fallback' },
|
||||||
|
['<C-p>'] = { 'select_prev', 'fallback' },
|
||||||
|
['<C-n>'] = { 'select_next', 'fallback' },
|
||||||
|
['<C-b>'] = { 'scroll_documentation_up', 'fallback' },
|
||||||
|
['<C-f>'] = { 'scroll_documentation_down', 'fallback' },
|
||||||
|
},
|
||||||
|
appearance = {
|
||||||
|
nerd_font_variant = 'mono',
|
||||||
|
},
|
||||||
|
completion = {documentation = { auto_show = true },
|
||||||
|
},
|
||||||
|
sources = {
|
||||||
|
per_filetype = {
|
||||||
|
},
|
||||||
|
default = {'lsp', 'path', 'snippets', 'buffer' },
|
||||||
|
providers = {
|
||||||
|
lsp = {
|
||||||
|
name = "[Lsp]",
|
||||||
|
module = "blink.cmp.sources.lsp",
|
||||||
|
opts = {}, -- Passed to the source directly, varies by source
|
||||||
|
enabled = true, -- Whether or not to enable the provider
|
||||||
|
async = true, -- Whether we should wait for the provider to return before showing the completions
|
||||||
|
timeout_ms = 1000, -- How long to wait for the provider to return before showing completions and treating it as asynchronous
|
||||||
|
transform_items = nil, -- Function to transform the items before they're returned
|
||||||
|
should_show_items = true, -- Whether or not to show the items
|
||||||
|
max_items = nil, -- Maximum number of items to display in the menu
|
||||||
|
min_keyword_length = 0, -- Minimum number of characters in the keyword to trigger the provider
|
||||||
|
fallbacks = {},
|
||||||
|
score_offset = 7, -- Boost/penalize the score of the items
|
||||||
|
override = nil, -- Override the source's functions
|
||||||
|
},
|
||||||
|
path = {
|
||||||
|
name = "[Path]",
|
||||||
|
module = "blink.cmp.sources.path",
|
||||||
|
fallbacks = { "buffer" },
|
||||||
|
score_offset = 5,
|
||||||
|
opts = {
|
||||||
|
trailing_slash = true,
|
||||||
|
label_trailing_slash = true,
|
||||||
|
get_cwd = function(context)
|
||||||
|
return vim.fn.expand(("#%d:p:h"):format(context.bufnr))
|
||||||
|
end,
|
||||||
|
show_hidden_files_by_default = true,
|
||||||
|
},
|
||||||
|
},
|
||||||
|
},
|
||||||
|
},
|
||||||
|
-- }
|
||||||
|
})
|
||||||
29
nvim/.config/nvim/plugin/codecompanion.lua
Normal file
@ -0,0 +1,29 @@
|
|||||||
|
-- vim.pack.add({"https://github.com/olimorris/codecompanion.nvim"})
|
||||||
|
-- require("codecompanion").setup({
|
||||||
|
-- strategies = {
|
||||||
|
-- chat = {
|
||||||
|
-- adapter = 'anthropic',
|
||||||
|
-- },
|
||||||
|
-- inline = {
|
||||||
|
-- adapter = 'anthropic',
|
||||||
|
-- },
|
||||||
|
-- },
|
||||||
|
-- adapters = {
|
||||||
|
-- http = {
|
||||||
|
-- anthropic = function()
|
||||||
|
-- return require("codecompanion.adapters").extend("anthropic", {
|
||||||
|
-- env = {
|
||||||
|
-- -- Enter API KEY Here
|
||||||
|
-- api_key = ""
|
||||||
|
-- },
|
||||||
|
-- })
|
||||||
|
-- end,
|
||||||
|
-- },
|
||||||
|
-- },
|
||||||
|
-- -- NOTE: The log_level is in `opts.opts`
|
||||||
|
-- opts = {
|
||||||
|
-- opts = {
|
||||||
|
-- log_level = "DEBUG",
|
||||||
|
-- }
|
||||||
|
-- }
|
||||||
|
-- })
|
||||||
16
nvim/.config/nvim/plugin/colorschemes.lua
Normal file
@ -0,0 +1,16 @@
|
|||||||
|
vim.pack.add({
|
||||||
|
"https://github.com/oskarnurm/koda.nvim",
|
||||||
|
"https://github.com/eldritch-theme/eldritch.nvim",
|
||||||
|
"https://github.com/audibleblink/hackthebox.vim",
|
||||||
|
"https://github.com/craftzdog/solarized-osaka.nvim",
|
||||||
|
"https://github.com/philosofonusus/morta.nvim",
|
||||||
|
"https://github.com/Mofiqul/dracula.nvim",
|
||||||
|
"https://github.com/EdenEast/nightfox.nvim",
|
||||||
|
-- "https://github.com/rebelot/kanagawa.nvim",
|
||||||
|
"https://github.com/catppuccin/nvim",
|
||||||
|
"https://github.com/folke/tokyonight.nvim",
|
||||||
|
"https://github.com/bluz71/vim-nightfly-colors",
|
||||||
|
"https://github.com/Bekaboo/deadcolumn.nvim",
|
||||||
|
})
|
||||||
|
vim.cmd('colorscheme dracula')
|
||||||
|
|
||||||
34
nvim/.config/nvim/plugin/dashboard.lua
Normal file
@ -0,0 +1,34 @@
|
|||||||
|
vim.pack.add({
|
||||||
|
"https://github.com/nvimdev/dashboard-nvim"
|
||||||
|
})
|
||||||
|
require("dashboard").setup({
|
||||||
|
theme = 'hyper',
|
||||||
|
config = {
|
||||||
|
week_header = {
|
||||||
|
enable = true,
|
||||||
|
},
|
||||||
|
shortcut = {
|
||||||
|
{ desc = ' Update', group = '@property', action = 'lua vim.pack.update()', key = 'u' },
|
||||||
|
{
|
||||||
|
icon = ' ',
|
||||||
|
icon_hl = '@variable',
|
||||||
|
desc = 'Files',
|
||||||
|
group = 'Label',
|
||||||
|
action = 'Telescope find_files',
|
||||||
|
key = 'f',
|
||||||
|
},
|
||||||
|
-- {
|
||||||
|
-- desc = ' NeoWarrior',
|
||||||
|
-- group = 'DiagnosticHint',
|
||||||
|
-- action = 'NeoWarriorOpen current',
|
||||||
|
-- key = 'n',
|
||||||
|
-- },
|
||||||
|
-- {
|
||||||
|
-- desc = ' dotfiles',
|
||||||
|
-- group = 'Number',
|
||||||
|
-- action = 'Telescope dotfiles',
|
||||||
|
-- key = 'd',
|
||||||
|
-- },
|
||||||
|
},
|
||||||
|
},
|
||||||
|
})
|
||||||
46
nvim/.config/nvim/plugin/headlines.lua
Normal file
@ -0,0 +1,46 @@
|
|||||||
|
vim.pack.add({"https://github.com/lukas-reineke/headlines.nvim"})
|
||||||
|
require("headlines").setup({
|
||||||
|
markdown = {
|
||||||
|
query = vim.treesitter.query.parse(
|
||||||
|
"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 = {
|
||||||
|
'Headline1',
|
||||||
|
'Headline2',
|
||||||
|
'Headline3',
|
||||||
|
'Headline4',
|
||||||
|
'Headline5',
|
||||||
|
'Headline6',
|
||||||
|
},
|
||||||
|
codeblock_highlight = "CodeBlock",
|
||||||
|
dash_highlight = "Dash",
|
||||||
|
dash_string = "-",
|
||||||
|
quote_highlight = "Quote",
|
||||||
|
quote_string = "┃",
|
||||||
|
fat_headlines = false,
|
||||||
|
},
|
||||||
|
})
|
||||||
|
vim.api.nvim_set_hl(0, 'Headline1', { fg = '#ffffff', bg = '#6272A4', italic = false })
|
||||||
|
vim.api.nvim_set_hl(0, 'Headline2', { fg = '#000000', bg = '#8BE9FD', italic = false })
|
||||||
|
vim.api.nvim_set_hl(0, 'Headline3', { fg = '#000000', bg = '#BD93F9', italic = false })
|
||||||
|
vim.api.nvim_set_hl(0, 'Headline4', { fg = '#000000', bg = '#FFB86C', italic = false })
|
||||||
|
vim.api.nvim_set_hl(0, 'Headline5', { fg = '#000000', bg = '#FF79C6', italic = false })
|
||||||
|
vim.api.nvim_set_hl(0, 'Headline6', { fg = '#000000', bg = '#FF5555', italic = false })
|
||||||
|
vim.api.nvim_set_hl(0, 'CodeBlock', { bg = '#222221' })
|
||||||
17
nvim/.config/nvim/plugin/hover.lua
Normal file
@ -0,0 +1,17 @@
|
|||||||
|
vim.pack.add({"https://github.com/lewis6991/hover.nvim"})
|
||||||
|
require("hover").setup({
|
||||||
|
init = function()
|
||||||
|
require("hover.providers.lsp")
|
||||||
|
require('hover.providers.man')
|
||||||
|
require('hover.providers.dictionary')
|
||||||
|
end,
|
||||||
|
preview_opts = {
|
||||||
|
border = nil
|
||||||
|
},
|
||||||
|
preview_window = false,
|
||||||
|
title = true
|
||||||
|
})
|
||||||
|
-- Setup keymaps
|
||||||
|
vim.keymap.set("n", "K", require("hover").hover, {desc = "hover.nvim"})
|
||||||
|
vim.keymap.set("n", "gK", require("hover").hover_select, {desc = "hover.nvim (select)"})
|
||||||
|
|
||||||
184
nvim/.config/nvim/plugin/init.lua
Normal file
@ -0,0 +1,184 @@
|
|||||||
|
vim.pack.add({
|
||||||
|
----------------------------------------------------------------
|
||||||
|
-- LSP and Autocomplete Plugins
|
||||||
|
-- They should be pulled first!
|
||||||
|
-----------------------------------------------------------------
|
||||||
|
"https://github.com/rachartier/tiny-inline-diagnostic.nvim",
|
||||||
|
"https://github.com/L3MON4D3/LuaSnip",
|
||||||
|
------------------------------------------------------------
|
||||||
|
-- General Functionality
|
||||||
|
------------------------------------------------------------
|
||||||
|
"https://github.com/Flemma-Dev/flemma.nvim",
|
||||||
|
"https://github.com/ravitemer/mcphub.nvim",
|
||||||
|
"https://github.com/ravitemer/codecompanion-history.nvim",
|
||||||
|
"https://github.com/folke/noice.nvim",
|
||||||
|
"https://github.com/epwalsh/obsidian.nvim",
|
||||||
|
"https://github.com/nvim-lua/plenary.nvim",
|
||||||
|
"https://github.com/nvim-lualine/lualine.nvim",
|
||||||
|
"https://github.com/rcarriga/nvim-notify",
|
||||||
|
"https://github.com/kenn7/vim-arsync",
|
||||||
|
"https://github.com/nacro90/numb.nvim",
|
||||||
|
"https://github.com/nvim-tree/nvim-tree.lua",
|
||||||
|
"https://github.com/aserowy/tmux.nvim",
|
||||||
|
"https://github.com/MunifTanjim/nui.nvim",
|
||||||
|
"https://github.com/roobert/f-string-toggle.nvim",
|
||||||
|
"https://github.com/rafamadriz/friendly-snippets",
|
||||||
|
"https://github.com/nvim-tree/nvim-web-devicons",
|
||||||
|
"https://github.com/romgrk/barbar.nvim",
|
||||||
|
"https://github.com/folke/trouble.nvim",
|
||||||
|
"https://github.com/lewis6991/gitsigns.nvim",
|
||||||
|
"https://github.com/jakewvincent/mkdnflow.nvim",
|
||||||
|
"https://github.com/j-hui/fidget.nvim",
|
||||||
|
"https://github.com/lukas-reineke/indent-blankline.nvim",
|
||||||
|
"https://github.com/folke/todo-comments.nvim",
|
||||||
|
"https://github.com/Bekaboo/deadcolumn.nvim",
|
||||||
|
"https://github.com/HiPhish/rainbow-delimiters.nvim",
|
||||||
|
"https://github.com/wakatime/vim-wakatime",
|
||||||
|
"https://github.com/folke/which-key.nvim",
|
||||||
|
"https://github.com/akinsho/toggleterm.nvim",
|
||||||
|
"https://github.com/nvim-mini/mini.nvim",
|
||||||
|
"https://github.com/prabirshrestha/async.vim",
|
||||||
|
})
|
||||||
|
|
||||||
|
|
||||||
|
require('tiny-inline-diagnostic').setup(vim.diagnostic.config({ virtual_text = true }))
|
||||||
|
require("luasnip").setup({
|
||||||
|
build = "make install_jsregexp",
|
||||||
|
history = true,
|
||||||
|
delete_check_events = "TextChanged",
|
||||||
|
})
|
||||||
|
require("luasnip").filetype_extend("liquid", {"html","css","javascript","python"})
|
||||||
|
require("luasnip.loaders.from_vscode").lazy_load()
|
||||||
|
require("luasnip.loaders.from_vscode").load({})
|
||||||
|
require("lualine").setup({
|
||||||
|
options = {
|
||||||
|
theme = "nord",
|
||||||
|
},
|
||||||
|
sections = {
|
||||||
|
lualine_x = {
|
||||||
|
{
|
||||||
|
require("noice").api.statusline.mode.get,
|
||||||
|
cond = require("noice").api.statusline.mode.has,
|
||||||
|
color = { fg = "#ff9e64" },
|
||||||
|
},
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{"fileformat", symbols = { unix = " " }, "filetype" },
|
||||||
|
})
|
||||||
|
require("obsidian").setup({
|
||||||
|
workspaces = {
|
||||||
|
{
|
||||||
|
name = "Work",
|
||||||
|
path = "~/Documents/Work",
|
||||||
|
}
|
||||||
|
}
|
||||||
|
})
|
||||||
|
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,
|
||||||
|
})
|
||||||
|
require("nvim-tree").setup({
|
||||||
|
sort_by = "case_sensitive",
|
||||||
|
view = {
|
||||||
|
width = 30,
|
||||||
|
},
|
||||||
|
renderer = {
|
||||||
|
group_empty = true,
|
||||||
|
},
|
||||||
|
filters = {
|
||||||
|
dotfiles = true,
|
||||||
|
},
|
||||||
|
diagnostics = {
|
||||||
|
enable = true,
|
||||||
|
},
|
||||||
|
})
|
||||||
|
require("f-string-toggle").setup({
|
||||||
|
key_binding = "<leader>g"
|
||||||
|
})
|
||||||
|
require("barbar").setup({
|
||||||
|
})
|
||||||
|
require("trouble").setup({
|
||||||
|
})
|
||||||
|
require("which-key").setup({
|
||||||
|
add = ({
|
||||||
|
{ "<leader>?", function() require("which-key").show({ global = false }) end,
|
||||||
|
desc = "Buffer Local Keymaps (which-key)",
|
||||||
|
},
|
||||||
|
})
|
||||||
|
})
|
||||||
|
require("notify").setup({
|
||||||
|
-- timeout = 5000,
|
||||||
|
-- render = "minimal",
|
||||||
|
-- stages = "fade_in_slide_out",
|
||||||
|
-- on_open = function(win)
|
||||||
|
-- vim.api.nvim_win_set_config(win, { focusable = false })
|
||||||
|
-- end,
|
||||||
|
-- vim.keymap.set("n", "<Esc>", function()
|
||||||
|
-- require("notify").dismiss()
|
||||||
|
-- end, { desc = "dismiss notify popup and clear hlsearch" })
|
||||||
|
-- vim.api.nvim_notify = require('notify')
|
||||||
|
-- vim.notify = require('notify')
|
||||||
|
-- end,
|
||||||
|
})
|
||||||
|
require("toggleterm").setup({
|
||||||
|
opts = {
|
||||||
|
direction = 'float',
|
||||||
|
}
|
||||||
|
})
|
||||||
|
-- ------------------------------------------------------------
|
||||||
|
-- -- echasnovski's Minis get a section of their own...
|
||||||
|
-- ------------------------------------------------------------
|
||||||
|
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>',
|
||||||
|
}})
|
||||||
|
require("mini.trailspace").setup({
|
||||||
|
})
|
||||||
|
require("mini.surround").setup({
|
||||||
|
})
|
||||||
|
require("mini.pairs").setup({
|
||||||
|
})
|
||||||
|
require("mini.fuzzy").setup({
|
||||||
|
})
|
||||||
|
require("mini.hipatterns").setup({
|
||||||
|
-- highlighters = {
|
||||||
|
-- hex_color = gen_highlighter.hex_color(),
|
||||||
|
-- hsl_color = {
|
||||||
|
-- pattern = "hsl%(%d+,? %d+,? %d+%)",
|
||||||
|
-- group = function(_, match)
|
||||||
|
-- local utils = require("solarized-osaka.hsl")
|
||||||
|
-- local nh, ns, nl = match:match("hsl%((%d+),? (%d+),? (%d+)%)")
|
||||||
|
-- local h, s, l = tonumber(nh), tonumber(ns), tonumber(nl)
|
||||||
|
-- local hex_color = utils.hslToHex(h, s, l)
|
||||||
|
-- return MiniHipatterns.compute_hex_color_group(hex_color, "bg")
|
||||||
|
-- end,
|
||||||
|
-- },
|
||||||
|
-- },
|
||||||
|
})
|
||||||
|
require("mini.indentscope").setup({
|
||||||
|
})
|
||||||
|
require("mini.diff").setup({
|
||||||
|
})
|
||||||
|
|
||||||
|
----------------------------------------------
|
||||||
|
--- Custom Plugins and Tests
|
||||||
|
----------------------------------------------
|
||||||
|
-- {
|
||||||
|
-- dir = '/Users/normrasmussen/Documents/Projects/markdown_organizer.nvim',
|
||||||
|
-- dev = true,
|
||||||
|
-- name = 'MarkdownOrganizerPlugin',
|
||||||
|
-- },
|
||||||
|
-- }
|
||||||
|
|
||||||
|
|
||||||
186
nvim/.config/nvim/plugin/nvim-telescope.lua
Normal file
@ -0,0 +1,186 @@
|
|||||||
|
vim.api.nvim_create_autocmd('PackChanged', {
|
||||||
|
callback = function(ev)
|
||||||
|
if ev.data.spec.name == 'telescope' then
|
||||||
|
local res = vim.system({ 'cmake', '-S.', '-Bbuild', '-DCMAKE_BUILD_TYPE=Release', 'cmake', '--build', 'build', '--config', 'Release', '--target', 'install' }, { cwd = ev.data.path })
|
||||||
|
if vim.v.shell_error ~= 0 then
|
||||||
|
vim.notify('Failed to compile telescope: ' .. res, vim.log.levels.ERROR)
|
||||||
|
else
|
||||||
|
vim.notify('Successfully compiled telescope', vim.log.levels.INFO)
|
||||||
|
end
|
||||||
|
end
|
||||||
|
end,
|
||||||
|
})
|
||||||
|
|
||||||
|
|
||||||
|
vim.pack.add({
|
||||||
|
"https://github.com/nvim-telescope/telescope.nvim",
|
||||||
|
"https://github.com/nvim-lua/plenary.nvim",
|
||||||
|
"https://github.com/nvim-telescope/telescope-file-browser.nvim",
|
||||||
|
"https://github.com/nvim-telescope/telescope-fzf-native.nvim",
|
||||||
|
"https://github.com/nvim-telescope/telescope-live-grep-args.nvim",
|
||||||
|
"https://github.com/jonarrien/telescope-cmdline.nvim",
|
||||||
|
"https://github.com/BurntSushi/ripgrep",
|
||||||
|
})
|
||||||
|
local builtin = require('telescope.builtin')
|
||||||
|
vim.keymap.set('n', '<leader>ff', builtin.find_files, { desc = 'Telescope find files' })
|
||||||
|
vim.keymap.set('n', '<leader>fg', builtin.live_grep, { desc = 'Telescope live grep' })
|
||||||
|
vim.keymap.set('n', '<leader>fb', builtin.buffers, { desc = 'Telescope buffers' })
|
||||||
|
vim.keymap.set('n', '<leader>fh', builtin.help_tags, { desc = 'Telescope help tags' })
|
||||||
|
|
||||||
|
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>"] = require("telescope").extensions.file_browser.actions.create,
|
||||||
|
["<C-y>"] = require("telescope").extensions.file_browser.actions.copy,
|
||||||
|
["<C-r>"] = require("telescope").extensions.file_browser.actions.rename,
|
||||||
|
["<C-w>"] = require("telescope").extensions.file_browser.actions.goto_cwd,
|
||||||
|
["<C-o>"] = require("telescope").extensions.file_browser.actions.open,
|
||||||
|
["<C-d>"] = require("telescope").extensions.file_browser.actions.remove,
|
||||||
|
},
|
||||||
|
},
|
||||||
|
cmdline = {
|
||||||
|
mappings = {
|
||||||
|
complete = '<Tab>',
|
||||||
|
run_selection = '<C-CR>',
|
||||||
|
run_input = '<CR>',
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
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'
|
||||||
|
}
|
||||||
|
},
|
||||||
|
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 = { '─', '│', ' ', ' ', '─', '┐', '│', ' ' },
|
||||||
|
},
|
||||||
|
},
|
||||||
|
}
|
||||||
|
end
|
||||||
|
})
|
||||||
|
require("telescope").load_extension("file_browser")
|
||||||
|
require("telescope").load_extension("live_grep_args")
|
||||||
|
-- require("telescope").load_extension("fzf-native")
|
||||||
|
require("telescope").load_extension("cmdline")
|
||||||
32
nvim/.config/nvim/plugin/nvim-treesitter.lua
Normal file
@ -0,0 +1,32 @@
|
|||||||
|
vim.pack.add({
|
||||||
|
"https://github.com/nvim-treesitter/nvim-treesitter"
|
||||||
|
})
|
||||||
|
require("nvim-treesitter").setup({
|
||||||
|
ensure_installed = {
|
||||||
|
'bash', 'css', 'html', 'javascript', 'json', 'lua', 'python',
|
||||||
|
'vim', 'yaml', 'typescript', 'markdown',
|
||||||
|
},
|
||||||
|
sync_install = true,
|
||||||
|
highlight = {
|
||||||
|
enable = true,
|
||||||
|
disable = function(lang, bufnr)
|
||||||
|
return lang == "py" and vim.api.nvim_buf_line_count(bufnr) > 5000
|
||||||
|
end,
|
||||||
|
additional_vim_regex_highlighting = true,
|
||||||
|
},
|
||||||
|
indent = { enable = true },
|
||||||
|
})
|
||||||
|
-- disable = function(lang, buf)
|
||||||
|
-- local max_filesize = 100 * 1024 -- 100 KB
|
||||||
|
-- local ok, stats = pcall(vim.loop.fs_stat, vim.api.nvim_buf_get_name(buf))
|
||||||
|
-- if ok and stats and stats.size > max_filesize then
|
||||||
|
-- return true
|
||||||
|
-- end
|
||||||
|
-- end, disable = function(lang, buf)
|
||||||
|
-- local max_filesize = 100 * 1024 -- 100 KB
|
||||||
|
-- local ok, stats = pcall(vim.loop.fs_stat, vim.api.nvim_buf_get_name(buf))
|
||||||
|
-- if ok and stats and stats.size > max_filesize then
|
||||||
|
-- return true
|
||||||
|
-- end
|
||||||
|
-- end,
|
||||||
|
-- })
|
||||||
20
nvim/.config/nvim/plugin/pulse.lua.backup
Normal file
@ -0,0 +1,20 @@
|
|||||||
|
return {
|
||||||
|
'linguini1/pulse.nvim',
|
||||||
|
-- 'Normanras/pulse.nvim',
|
||||||
|
version = "*",
|
||||||
|
config = function()
|
||||||
|
|
||||||
|
local pulse = require("pulse")
|
||||||
|
|
||||||
|
pulse.setup({level = vim.log.levels.ERROR})
|
||||||
|
|
||||||
|
pulse.add("Send Krista Message", {
|
||||||
|
interval = 90,
|
||||||
|
message = "Tell Krista that you love her!",
|
||||||
|
enabled = True,
|
||||||
|
})
|
||||||
|
end
|
||||||
|
}
|
||||||
|
|
||||||
|
-- Not working: DEBUG, TRACE
|
||||||
|
-- Working: ERROR, OFF, WARN, INFO
|
||||||
19
nvim/.config/nvim/plugin/rainbow_csv.lua
Normal file
@ -0,0 +1,19 @@
|
|||||||
|
vim.pack.add({"https://github.com/cameron-wags/rainbow_csv.nvim"})
|
||||||
|
require("rainbow_csv").setup({
|
||||||
|
config = true,
|
||||||
|
ft = {
|
||||||
|
'csv',
|
||||||
|
'tsv',
|
||||||
|
'csv_semicolon',
|
||||||
|
'csv_whitespace',
|
||||||
|
'csv_pipe',
|
||||||
|
'rfc_csv',
|
||||||
|
'rfc_semicolon'
|
||||||
|
},
|
||||||
|
cmd = {
|
||||||
|
'RainbowDelim',
|
||||||
|
'RainbowDelimSimple',
|
||||||
|
'RainbowDelimQuoted',
|
||||||
|
'RainbowMultiDelim'
|
||||||
|
}
|
||||||
|
})
|
||||||
18
nvim/.config/nvim/snippets/markdown.json
Normal file
@ -0,0 +1,18 @@
|
|||||||
|
{
|
||||||
|
"today-date": {
|
||||||
|
"prefix": "today",
|
||||||
|
"body": ["${CURRENT_MONTH}-${CURRENT_DATE}-${CURRENT_YEAR}"],
|
||||||
|
"description": "Puts the date in (Y-m-D) format"
|
||||||
|
},
|
||||||
|
"today-tasks": {
|
||||||
|
"prefix": "todaytask",
|
||||||
|
"body": ["## ${CURRENT_MONTH}-${CURRENT_DATE}-${CURRENT_YEAR} \n\n- [ ] "],
|
||||||
|
"description": "Today's date plus a markdown task for easy addition."
|
||||||
|
},
|
||||||
|
"box": {
|
||||||
|
"prefix": "hugobox",
|
||||||
|
"body": ["{{< box info >}} \n\n {{< /box >}}"],
|
||||||
|
"description": "Cstom info box for hugo website. Info can also be warn, tip."
|
||||||
|
|
||||||
|
}
|
||||||
|
}
|
||||||
14
nvim/.config/nvim/snippets/package.json
Normal file
@ -0,0 +1,14 @@
|
|||||||
|
{
|
||||||
|
"contributes": {
|
||||||
|
"snippets": [
|
||||||
|
{
|
||||||
|
"language": "markdown",
|
||||||
|
"path": "./markdown.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"language": "python",
|
||||||
|
"path": "./python.json"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
}
|
||||||
7
nvim/.config/nvim/snippets/python.json
Normal file
@ -0,0 +1,7 @@
|
|||||||
|
{
|
||||||
|
"pprint-import": {
|
||||||
|
"prefix": "pprint-import",
|
||||||
|
"body": ["import pprint \n\n pp=pprint.PrettyPrinter(indent=4) \n\n pp.pprint(VARIABLE)"],
|
||||||
|
"description": "Easily import, declare, and add a Pretty Print for easier reading."
|
||||||
|
}
|
||||||
|
}
|
||||||
@ -318,3 +318,32 @@ distrcits
|
|||||||
suggstions
|
suggstions
|
||||||
Chek's
|
Chek's
|
||||||
COO
|
COO
|
||||||
|
nginx's
|
||||||
|
nginx
|
||||||
|
config
|
||||||
|
javascript
|
||||||
|
subdomain
|
||||||
|
Moodle
|
||||||
|
MSP
|
||||||
|
moodle
|
||||||
|
Faux
|
||||||
|
repos
|
||||||
|
Github
|
||||||
|
Gitea
|
||||||
|
AppDaemon
|
||||||
|
AppDaemon's
|
||||||
|
birdnet
|
||||||
|
HomeAssistant
|
||||||
|
MQTT
|
||||||
|
BirdNET
|
||||||
|
reseller
|
||||||
|
Ece
|
||||||
|
accredation
|
||||||
|
assesment
|
||||||
|
submodules
|
||||||
|
Artera
|
||||||
|
Qualtrics
|
||||||
|
Discoverability
|
||||||
|
programatically
|
||||||
|
#ASEURL/!
|
||||||
|
BASEURL/!
|
||||||
|
|||||||
6
package-lock.json
generated
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
{
|
||||||
|
"name": ".dotfiles",
|
||||||
|
"lockfileVersion": 3,
|
||||||
|
"requires": true,
|
||||||
|
"packages": {}
|
||||||
|
}
|
||||||
@ -1,70 +0,0 @@
|
|||||||
# ~/.config/starship.toml
|
|
||||||
|
|
||||||
format = """
|
|
||||||
$character\
|
|
||||||
$directory\
|
|
||||||
$python\
|
|
||||||
$fill\
|
|
||||||
$git_branch$git_commit$git_state$git_status
|
|
||||||
[>... ](fg:purple)
|
|
||||||
"""
|
|
||||||
|
|
||||||
#right_format = "$memory_usage$git_metrics"
|
|
||||||
scan_timeout = 10
|
|
||||||
add_newline = false
|
|
||||||
palette = 'dracula'
|
|
||||||
|
|
||||||
[character]
|
|
||||||
error_symbol = '[\(ಠ_ಠ\)](fg:red)'
|
|
||||||
success_symbol = '[¯\\_\(ツ\)_/¯](fg:green)'
|
|
||||||
|
|
||||||
[directory]
|
|
||||||
truncation_length = 3
|
|
||||||
|
|
||||||
[fill]
|
|
||||||
symbol = '-'
|
|
||||||
style = 'bold grey'
|
|
||||||
|
|
||||||
[python]
|
|
||||||
format = '$symbol($virtualenv)($style)'
|
|
||||||
|
|
||||||
[git_branch]
|
|
||||||
symbol = '🌱 '
|
|
||||||
truncation_length = 4
|
|
||||||
truncation_symbol = ''
|
|
||||||
always_show_remote = true
|
|
||||||
format = '[$symbol$branch(:$remote_branch)]($style) '
|
|
||||||
|
|
||||||
[git_status]
|
|
||||||
style = 'bold white'
|
|
||||||
conflicted = '🏳'
|
|
||||||
#ahead = '🏎💨'
|
|
||||||
#behind = '😰'
|
|
||||||
#diverged = '😵'
|
|
||||||
up_to_date = '✓'
|
|
||||||
#untracked = '🤷'
|
|
||||||
#stashed = '📦'
|
|
||||||
modified = '📝'
|
|
||||||
staged = '[++\($count\)](green)'
|
|
||||||
renamed = '👅'
|
|
||||||
deleted = '🗑'
|
|
||||||
|
|
||||||
[memory_usage]
|
|
||||||
disabled = false
|
|
||||||
format = ' $symbol [${ram_pct}](${style})'
|
|
||||||
threshold = -1
|
|
||||||
symbol = '🧙'
|
|
||||||
style = 'bold green'
|
|
||||||
|
|
||||||
[palettes.dracula]
|
|
||||||
black = '#282a36'
|
|
||||||
grey ='#44475a'
|
|
||||||
white = '#f8f8f2'
|
|
||||||
blue ='#6272a4'
|
|
||||||
cyan = '#8be9fd'
|
|
||||||
green = '#50fa7b'
|
|
||||||
orange = '#ffb86c'
|
|
||||||
pink = '#ff79c6'
|
|
||||||
purple = '#bd93f9'
|
|
||||||
red = '#ff5555'
|
|
||||||
yellow = '#f1fa8c'
|
|
||||||
19
tmux/.config/tmux/lan_test.sh
Executable file
@ -0,0 +1,19 @@
|
|||||||
|
run_program() {
|
||||||
|
default_route_nic=$(route get default | grep -i interface | awk '{print $2}')
|
||||||
|
all_nics=$(ifconfig 2>/dev/null | awk -F':' '/^[a-z]/ && !/^lo/ { print $1 }' | tr '\n' ' ')
|
||||||
|
IFS=' ' read -ra all_nics_array <<< "$all_nics"
|
||||||
|
all_nics_array=("$default_route_nic" "${all_nics_array[@]}")
|
||||||
|
for nic in "${all_nics_array[@]}"; do
|
||||||
|
ipv4s_on_nic=$(ifconfig ${nic} 2>/dev/null | awk '$1 == "inet" { print $2 }')
|
||||||
|
echo ${ipv4s_on_nic}
|
||||||
|
for lan_ip in ${ipv4s_on_nic[@]}; do
|
||||||
|
echo ${lan_ip}
|
||||||
|
[[ -n "${lan_ip}" ]]
|
||||||
|
done
|
||||||
|
[[ -n "${lan_ip}" ]]
|
||||||
|
done
|
||||||
|
echo "ⓛ ${lan_ip-Not working}"
|
||||||
|
return 0
|
||||||
|
}
|
||||||
|
|
||||||
|
"$@"
|
||||||
30
tmux/.config/tmux/plugins/ifstat.sh
Executable file
@ -0,0 +1,30 @@
|
|||||||
|
#!/bin/bash
|
||||||
|
|
||||||
|
find_data=$(ifstat -S -q 1 1)
|
||||||
|
interfaces=$(echo -e "${find_data}" | head -n 1)
|
||||||
|
final=()
|
||||||
|
for interface in ${interfaces}; do
|
||||||
|
has_data=$(ifstat -i ${interface} -S -q 1 1 | tail -n 1 | tr -d '\r' | tr -d ' ')
|
||||||
|
if [[ "$has_data" != "0.000.00" ]]; then
|
||||||
|
for int in ${interface}; do
|
||||||
|
data=$(ifstat -i ${interface} -S -q 1 1)
|
||||||
|
flow_data=$(echo -e "${data}" | tail -n 1 | tr -d '\r' )
|
||||||
|
up=${flow_data% *}
|
||||||
|
down=${flow_data##* }
|
||||||
|
up=$up | tr -d ' '
|
||||||
|
down=$down | tr -d ' '
|
||||||
|
final+=("$int: $up/ $down")
|
||||||
|
echo $final
|
||||||
|
done
|
||||||
|
# OUTPUT="⇈ $up ⇊ $down"
|
||||||
|
# echo $OUTPUT
|
||||||
|
fi
|
||||||
|
done
|
||||||
|
|
||||||
|
|
||||||
|
# data=$(ifstat -i en0 -i en5 -S -q 1 1)
|
||||||
|
# flow_data=$(echo -e "${data}" | tail -n 1 | tr -d '\r')
|
||||||
|
# up=${flow_data% *}
|
||||||
|
# down=${flow_data##* }
|
||||||
|
# OUTPUT="⇈ $up ⇊ $down"
|
||||||
|
# echo $OUTPUT
|
||||||
17
tmux/.config/tmux/plugins/lan_ip.sh
Executable file
@ -0,0 +1,17 @@
|
|||||||
|
#!/bin/bash
|
||||||
|
|
||||||
|
|
||||||
|
function ip_address() {
|
||||||
|
|
||||||
|
# Loop through the interfaces and check for the interface that is up.
|
||||||
|
for file in /sys/class/net/*; do
|
||||||
|
|
||||||
|
iface=$(basename $file);
|
||||||
|
|
||||||
|
read status < $file/operstate;
|
||||||
|
|
||||||
|
[ "$status" == "up" ] && ip addr show $iface | awk '/inet /{printf $2" "}'
|
||||||
|
|
||||||
|
done
|
||||||
|
|
||||||
|
}
|
||||||
6
tmux/.config/tmux/plugins/timezones.sh
Executable file
@ -0,0 +1,6 @@
|
|||||||
|
#!/bin/bash
|
||||||
|
|
||||||
|
PST=$(TZ=":America/Los_Angeles" date -R +%H:%M)
|
||||||
|
EST=$(TZ=":America/New_York" date -R +%H:%M)
|
||||||
|
CET=$(TZ=":Europe/Warsaw" date -R +%H:%M)
|
||||||
|
echo "PST: $PST | EST: $EST | CET: $CET"
|
||||||
1
tmux/.config/tmux/plugins/tmux-which-key
Submodule
1
tmux/.config/tmux/plugins/tmux-world-clock
Submodule
27
tmux/.config/tmux/plugins/wan_ip.sh
Executable file
@ -0,0 +1,27 @@
|
|||||||
|
#!/bin/bash
|
||||||
|
|
||||||
|
function wan_ip() {
|
||||||
|
|
||||||
|
tmp_file="./wan_ip.txt"
|
||||||
|
wan_up="N/a"
|
||||||
|
|
||||||
|
if [ -z "$wan_ip" ]; then
|
||||||
|
wan_ip=$(curl --max-time 2 -s http://whatismyip.akamai.com/)
|
||||||
|
|
||||||
|
if [ "$?" -eq "0" ]; then
|
||||||
|
echo "${wan_ip}" > $tmp_file
|
||||||
|
elif [ -f "${tmp_file}" ]; then
|
||||||
|
wan_ip=$(cat "$tmp_file")
|
||||||
|
fi
|
||||||
|
fi
|
||||||
|
|
||||||
|
if [ -n "$wan_ip" ]; then
|
||||||
|
printf "ⓦ ${wan_ip}"
|
||||||
|
fi
|
||||||
|
}
|
||||||
|
|
||||||
|
function main() {
|
||||||
|
wan_ip
|
||||||
|
}
|
||||||
|
|
||||||
|
main
|
||||||
1
tmux/.config/tmux/plugins/wan_ip.txt
Normal file
@ -0,0 +1 @@
|
|||||||
|
104.246.2.167
|
||||||
@ -1,17 +0,0 @@
|
|||||||
pane 1 0 0 :- 0 :/Users/normrasmussen/Documents/Projects/nvim_plugin_mdtodo/lua/plugin 1 nvim :nvim init.lua
|
|
||||||
pane 1 1 1 :* 0 :/Users/normrasmussen 1 zsh :
|
|
||||||
pane 2 0 1 :* 0 :/Users/normrasmussen 1 ssh :ssh norm@192.168.200.11
|
|
||||||
pane 2 1 0 :- 0 :/Users/normrasmussen 1 nvim :nvim .tmux.conf
|
|
||||||
pane Northpass 0 0 : 0 :/Users/normrasmussen/Documents/Northpass 1 nvim :nvim
|
|
||||||
pane Northpass 1 0 :- 0 :/Users/normrasmussen/Documents/Northpass 1 nvim :nvim
|
|
||||||
pane Northpass 1 0 :- 1 :/Users/normrasmussen/Documents/Northpass/Timetagger 0 zsh :
|
|
||||||
pane Northpass 2 1 :* 0 :/Users/normrasmussen/.config/nvim 1 nvim :nvim
|
|
||||||
pane Northpass 2 1 :* 1 :/Users/normrasmussen/.config/nvim 0 zsh :
|
|
||||||
window 1 0 :nvim 0 :- b981,106x62,0,0,4 :
|
|
||||||
window 1 1 :whiptailpy 1 :* b982,106x62,0,0,5 off
|
|
||||||
window 2 0 :ssh 1 :* cd44,119x57,0,0,7 :
|
|
||||||
window 2 1 :nvim 0 :- cd45,119x57,0,0,8 :
|
|
||||||
window Northpass 0 :notes 0 : c13d,115x64,0,0,0 off
|
|
||||||
window Northpass 1 :templates 0 :- a804,136x64,0,0[136x46,0,0,1,136x17,0,47,3] off
|
|
||||||
window Northpass 2 :nvim-config 1 :* 4f08,136x64,0,0[136x47,0,0,2,136x16,0,48,6] off
|
|
||||||
state 2
|
|
||||||
@ -1,16 +0,0 @@
|
|||||||
pane 1 0 0 : 0 :/Users/normrasmussen 1 ssh :ssh norm@192.168.1.12
|
|
||||||
pane 1 1 1 :* 0 :/Users/normrasmussen 1 nvim :nvim /Users/normrasmussen/.tmux.conf
|
|
||||||
pane 1 2 0 :- 0 :/Users/normrasmussen 1 nvim :nvim
|
|
||||||
pane Northpass 0 1 :* 0 :/Users/normrasmussen/Documents/Northpass/NP_Custom_Templates 0 nvim :nvim
|
|
||||||
pane Northpass 0 1 :* 1 :/Users/normrasmussen/Documents/Northpass 1 fish :fish
|
|
||||||
pane Northpass 1 0 : 0 :/Users/normrasmussen/Documents/Northpass/NP_Startpage 1 nvim :nvim
|
|
||||||
pane Northpass 2 0 :- 0 :/Users/normrasmussen/Documents/Northpass/Google_Scripts 1 fish :
|
|
||||||
pane Northpass 3 0 : 0 :/Users/normrasmussen/Documents/Northpass 1 fish :fish
|
|
||||||
window 1 0 :ssh 0 : b902,101x34,0,0,5 :
|
|
||||||
window 1 1 :tmux.conf 1 :* cd03,143x48,0,0,6 off
|
|
||||||
window 1 2 :nvim 0 :- cd04,143x48,0,0,7 :
|
|
||||||
window Northpass 0 :Templates 1 :* 13d7,148x49,0,0[148x34,0,0,0,148x14,0,35,4] off
|
|
||||||
window Northpass 1 :Start Page 0 : b25e,80x24,0,0,1 off
|
|
||||||
window Northpass 2 :Google Apps 0 :- d37f,148x49,0,0,2 off
|
|
||||||
window Northpass 3 :SSH 0 : b260,80x24,0,0,3 off
|
|
||||||
state 1
|
|
||||||
@ -1,16 +0,0 @@
|
|||||||
pane 1 0 0 : 0 :/Users/normrasmussen 1 ssh :ssh norm@192.168.1.12
|
|
||||||
pane 1 1 1 :* 0 :/Users/normrasmussen 1 nvim :nvim /Users/normrasmussen/.tmux.conf
|
|
||||||
pane 1 2 0 :- 0 :/Users/normrasmussen 1 ssh :ssh norm@192.168.1.7
|
|
||||||
pane Northpass 0 1 :* 0 :/Users/normrasmussen/Documents/Northpass/NP_Custom_Templates 0 nvim :nvim
|
|
||||||
pane Northpass 0 1 :* 1 :/Users/normrasmussen/Documents/Northpass 1 fish :fish
|
|
||||||
pane Northpass 1 0 : 0 :/Users/normrasmussen/Documents/Northpass/NP_Startpage 1 nvim :nvim
|
|
||||||
pane Northpass 2 0 :- 0 :/Users/normrasmussen/Documents/Northpass/Google_Scripts 1 fish :
|
|
||||||
pane Northpass 3 0 : 0 :/Users/normrasmussen/Documents/Northpass 1 fish :fish
|
|
||||||
window 1 0 :ssh 0 : b902,101x34,0,0,5 :
|
|
||||||
window 1 1 :tmux.conf 1 :* cd03,143x48,0,0,6 off
|
|
||||||
window 1 2 :ssh 0 :- cd04,143x48,0,0,7 :
|
|
||||||
window Northpass 0 :Templates 1 :* 13d7,148x49,0,0[148x34,0,0,0,148x14,0,35,4] off
|
|
||||||
window Northpass 1 :Start Page 0 : b25e,80x24,0,0,1 off
|
|
||||||
window Northpass 2 :Google Apps 0 :- d37f,148x49,0,0,2 off
|
|
||||||
window Northpass 3 :SSH 0 : b260,80x24,0,0,3 off
|
|
||||||
state 1
|
|
||||||
@ -1,5 +0,0 @@
|
|||||||
pane 0 0 1 :* 0 :/Users/normrasmussen 1 ssh :ssh norm@192.168.1.3
|
|
||||||
pane 0 1 0 :- 0 :/Users/normrasmussen 1 fish :
|
|
||||||
window 0 0 :ssh 1 :* b09d,98x51,0,0,0 :
|
|
||||||
window 0 1 :fish 0 :- b09e,98x51,0,0,1 :
|
|
||||||
state 0
|
|
||||||
@ -1,3 +0,0 @@
|
|||||||
pane 0 0 1 :* 0 :/Users/normrasmussen 1 zsh :
|
|
||||||
window 0 0 :zsh 1 :* bffd,107x54,0,0,0 :
|
|
||||||
state 0
|
|
||||||
@ -1,17 +0,0 @@
|
|||||||
pane 1 0 0 :- 0 :/Users/normrasmussen/Documents/Projects/nvim_plugin_mdtodo/lua/plugin 1 nvim :nvim init.lua
|
|
||||||
pane 1 1 1 :* 0 :/Users/normrasmussen 1 zsh :
|
|
||||||
pane 2 0 1 :* 0 :/Users/normrasmussen 1 ssh :ssh norm@192.168.200.11
|
|
||||||
pane 2 1 0 :- 0 :/Users/normrasmussen 1 nvim :nvim .tmux.conf
|
|
||||||
pane Northpass 0 0 : 0 :/Users/normrasmussen/Documents/Northpass 1 nvim :nvim
|
|
||||||
pane Northpass 1 0 :- 0 :/Users/normrasmussen/Documents/Northpass 1 nvim :nvim
|
|
||||||
pane Northpass 1 0 :- 1 :/Users/normrasmussen/Documents/Northpass/Timetagger 0 zsh :
|
|
||||||
pane Northpass 2 1 :* 0 :/Users/normrasmussen/.config/nvim 1 nvim :nvim
|
|
||||||
pane Northpass 2 1 :* 1 :/Users/normrasmussen/.config/nvim 0 zsh :
|
|
||||||
window 1 0 :nvim 0 :- b981,106x62,0,0,4 :
|
|
||||||
window 1 1 :whiptailpy 1 :* b982,106x62,0,0,5 off
|
|
||||||
window 2 0 :ssh 1 :* cd44,119x57,0,0,7 :
|
|
||||||
window 2 1 :nvim 0 :- cd45,119x57,0,0,8 :
|
|
||||||
window Northpass 0 :notes 0 : c13d,115x64,0,0,0 off
|
|
||||||
window Northpass 1 :templates 0 :- a804,136x64,0,0[136x46,0,0,1,136x17,0,47,3] off
|
|
||||||
window Northpass 2 :nvim-config 1 :* 4f08,136x64,0,0[136x47,0,0,2,136x16,0,48,6] off
|
|
||||||
state 2
|
|
||||||
@ -1,5 +1,49 @@
|
|||||||
set-environment -g PATH "/opt/homebrew/bin:/bin:/usr/bin"
|
set-environment -g PATH "/opt/homebrew/bin:/bin:/usr/bin"
|
||||||
set-window-option -g mode-keys vi
|
set-window-option -g mode-keys vi
|
||||||
|
set-option default-terminal "screen-256color"
|
||||||
|
set-option default-terminal "tmux-256color"
|
||||||
|
set-option -a terminal-overrides ",*256col*:RGB"
|
||||||
|
|
||||||
|
# Set up Variables
|
||||||
|
black='#000000'
|
||||||
|
white='#f8f8f2'
|
||||||
|
gray='#44475a'
|
||||||
|
dark_gray='#282a36'
|
||||||
|
light_purple='#bd93f9'
|
||||||
|
dark_purple='#6272a4'
|
||||||
|
cyan='#8be9fd'
|
||||||
|
green='#50fa7b'
|
||||||
|
orange='#ffb86c'
|
||||||
|
red='#ff5555'
|
||||||
|
pink='#ff79c6'
|
||||||
|
yellow='#f1fa8c'
|
||||||
|
active='#50fa7b'
|
||||||
|
nonactive='#6272a4'
|
||||||
|
left_sep=''
|
||||||
|
right_sep=''
|
||||||
|
|
||||||
|
wanip="~/.dotfiles/tmux/.config/tmux/plugins/wan_ip.sh"
|
||||||
|
timezones="~/.dotfiles/tmux/.config/tmux/plugins/timezones.sh"
|
||||||
|
ifstat="~/.dotfiles/tmux/.config/tmux/plugins/ifstat.sh"
|
||||||
|
|
||||||
|
|
||||||
|
set -g status on
|
||||||
|
set -g status-interval 1
|
||||||
|
set -g status-justify centre
|
||||||
|
|
||||||
|
set-window-option -g window-status-separator ''
|
||||||
|
set-window-option -g window-status-current-format "#[fg=${active},bg=${dark_gray}]${right_sep}#[fg=${black},bg=${active}] #I #W #[fg=${active},bg=${dark_gray}]${left_sep}"
|
||||||
|
set-window-option -g window-status-format "#[fg=${white},bg=${dark_gray}] #I #W "
|
||||||
|
set-option -g status-bg ${dark_gray}
|
||||||
|
# set-option -g status-fg white
|
||||||
|
set -g status-left-length 50
|
||||||
|
# set -g status-left-style default
|
||||||
|
set -g status-left "#[fg=${black},bg=${light_purple}] #(${wanip}) #[fg=${light_purple},bg=${green}]${left_sep}#[fg=${black},bg=${green}] #(${ifstat})#[fg=${green},bg=${dark_gray}]${left_sep}"
|
||||||
|
|
||||||
|
set -g status-right-length 60
|
||||||
|
set -g status-right "#[fg=${pink},bg=${dark_gray}]${right_sep}#[fg=${black},bg=${pink}]#(${timezones}) "
|
||||||
|
set -g status-right-style default
|
||||||
|
|
||||||
|
|
||||||
# Standard Plugins
|
# Standard Plugins
|
||||||
set -g @plugin 'tmux-plugins/tpm'
|
set -g @plugin 'tmux-plugins/tpm'
|
||||||
@ -12,6 +56,7 @@ set -g @plugin 'tmux-plugins/tmux-continuum'
|
|||||||
# Search your Scrollback using fzf
|
# Search your Scrollback using fzf
|
||||||
# set -g @plugin 'roosta/tmux-fuzzback'
|
# set -g @plugin 'roosta/tmux-fuzzback'
|
||||||
|
|
||||||
|
|
||||||
# Allow Focus Events
|
# Allow Focus Events
|
||||||
set -g focus-events on
|
set -g focus-events on
|
||||||
|
|
||||||
@ -32,26 +77,8 @@ 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
|
# Which Key for Tmux
|
||||||
set -g @plugin 'dracula/tmux'
|
set -g @plugin 'alexwforsythe/tmux-which-key'
|
||||||
set -g @dracula-plugins "git network-ping cpu-usage time"
|
|
||||||
|
|
||||||
set -g @dracula-show-powerline true
|
# Initialize TMUX plugin manager - kept at bottom of file
|
||||||
set -g @dracula-show-flags true
|
|
||||||
set -g @dracula-show-left-icon window
|
|
||||||
set -g @dracula-border-contrast true
|
|
||||||
set -g @dracula-ping-server "overras.duckdns.org"
|
|
||||||
set -g @dracula-ping-rate 5
|
|
||||||
set -g @dracula-cpu-usage-label " "
|
|
||||||
set -g @dracula-cpu-usage-colors "pink dark_gray"
|
|
||||||
set -g @dracula-git-show-current-symbol ✓
|
|
||||||
set -g @dracula-git-show-diff-symbol !
|
|
||||||
set -g @dracula-git-no-repo-message ⊚
|
|
||||||
set -g @dracula-show-timezone false
|
|
||||||
set -g @dracula-military-time true
|
|
||||||
|
|
||||||
#run-shell ~/.dotfiles/tmux/.config/tmux/plugins/tmux-continuum/continuum.tmux
|
|
||||||
|
|
||||||
# Initiazlie TMUX plugin manager - kept at bottom of file
|
|
||||||
# run '~/.config/tmux/plugins/tpm/tpm'
|
|
||||||
run '~/.dotfiles/tmux/.config/tmux/plugins/tpm/tpm'
|
run '~/.dotfiles/tmux/.config/tmux/plugins/tpm/tpm'
|
||||||
|
|||||||
1
tmux/.config/tmux/wan_ip.txt
Normal file
@ -0,0 +1 @@
|
|||||||
|
69.120.56.29
|
||||||
@ -1,54 +0,0 @@
|
|||||||
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
|
|
||||||
1
wan_ip.txt
Normal file
@ -0,0 +1 @@
|
|||||||
|
69.120.56.29
|
||||||
5
wezterm/.wezterm.lua
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
local wezterm = require 'wezterm'
|
||||||
|
local config = wezterm.config_builder()
|
||||||
|
config.window_background_opacity = 0.9
|
||||||
|
config.color_scheme = 'Rapture'
|
||||||
|
return config
|
||||||
1712
zsh/.p10k.zsh
Normal file
110
zsh/.zshrc
@ -1,59 +1,93 @@
|
|||||||
|
|
||||||
# Path to your oh-my-zsh installation.
|
# Enable Powerlevel10k instant prompt. Should stay close to the top of ~/.zshrc.
|
||||||
# export ZSH="$HOME/.oh-my-zsh"
|
# Initialization code that may require console input (password prompts, [y/n]
|
||||||
|
# confirmations, etc.) must go above this block; everything else may go below.
|
||||||
|
if [[ -r "${XDG_CACHE_HOME:-$HOME/.cache}/p10k-instant-prompt-${(%):-%n}.zsh" ]]; then
|
||||||
|
source "${XDG_CACHE_HOME:-$HOME/.cache}/p10k-instant-prompt-${(%):-%n}.zsh"
|
||||||
|
fi
|
||||||
|
|
||||||
|
# autoload -Uz compinit
|
||||||
|
# compinit
|
||||||
export LC_ALL=en_US.UTF-8
|
export LC_ALL=en_US.UTF-8
|
||||||
export LANG=en_US.UTF-8
|
export LANG=en_US.UTF-8
|
||||||
|
# autoload -Uz compinit; compinit; _comp_options+=(globdots);
|
||||||
|
|
||||||
plugins=(
|
# ssh using a new window when we are in TMUX
|
||||||
zsh-autosuggestions,
|
ssh() {
|
||||||
git,
|
if [ -n "${TMUX:-}" ]; then
|
||||||
wakatime,
|
# Extract the destination host from the command arguments
|
||||||
brew,
|
local dest_user_host=$(
|
||||||
npm,
|
printf "%s " "$@" | awk 'match($0, /[a-zA-Z0-9_.-]+@[a-zA-Z0-9_.-]+/) {print substr($0,RSTART,RLENGTH)}'
|
||||||
z,
|
)
|
||||||
zsh-syntax-highlighting,
|
|
||||||
vi-mode,
|
# Rename tmux window and pane if possible
|
||||||
)
|
(
|
||||||
|
set +e # Continue even if rename fails
|
||||||
|
tmux display-message -p "#{pane_id}" > /dev/null && tmux rename-window "$dest_user_host"
|
||||||
|
tmux rename-pane "$dest_user_host" 2>/dev/null || true
|
||||||
|
) &> /dev/null
|
||||||
|
|
||||||
|
command ssh "$@"
|
||||||
|
|
||||||
|
# Restore automatic renaming (if enabled)
|
||||||
|
tmux set-window-option automatic-rename on > /dev/null 2>&1 || true
|
||||||
|
else
|
||||||
|
command ssh "$@"
|
||||||
|
fi
|
||||||
|
}
|
||||||
|
|
||||||
# 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"
|
||||||
alias vim='vim -S ~/.vimrc'
|
alias vim='vim -S ~/.vimrc'
|
||||||
alias nvim='nvim'
|
alias nvim='nvim'
|
||||||
alias brew='env PATH="${PATH//$(pyenv root)\/shims:/}" brew'
|
alias uvupdate='while read line; do [[ -n "$line" && ! "$line" =~ ^[[:space:]]*# ]] && uv pip install "$line" --upgrade; done < requirements.txt'
|
||||||
|
# alias brew='env PATH="${PATH//$(pyenv root)\/shims:/}" brew'
|
||||||
|
export CLICOLOR=1
|
||||||
|
export LSCOLORS=ExGxBxDxCxEgEdxbxgxcxd
|
||||||
|
|
||||||
export EDITOR="$VISUAL"
|
export EDITOR="$VISUAL"
|
||||||
export VISUAL='nvim'
|
export VISUAL='nvim'
|
||||||
export PYTHONPATH="/opt/homebrew/bin/python3:$PYTHONPATH"
|
export PYTHONPATH="/opt/homebrew/bin/python3:$PYTHONPATH"
|
||||||
export PYENV_ROOT="$HOME/.pyenv"
|
# 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 -)"
|
|
||||||
|
|
||||||
# alias nvim-minimal="NVIM_APPNAME=Minivim nvim"
|
# Function to Correctly Source $VIRTUAL_ENV for Neovim
|
||||||
# alias nvim-arduino="NVIM_APPNAME=Arduino nvim"
|
function nvimvenv {
|
||||||
|
if [[ -e "$VIRTUAL_ENV" && -f "$VIRTUAL_ENV/bin/activate" ]]; then
|
||||||
#function nvims() {
|
source "$VIRTUAL_ENV/bin/activate"
|
||||||
# items=("Main" "Minivim" "Arduinvim")
|
command nvim "$@"
|
||||||
# config=$(printf "%s\n" "${items[@]}" | fzf --prompt=" Neovim Config " --height=~50% --layout=reverse --border --exit-0)
|
deactivate
|
||||||
# if [[ -z $config ]]; then
|
else
|
||||||
# echo "Nothing selected"
|
command nvim "$@"
|
||||||
# return 0
|
fi
|
||||||
# elif [[ $config == "Main" ]]; then
|
}
|
||||||
# config=""
|
|
||||||
# fi
|
|
||||||
# NVIM_APPNAME=$config nvim $@
|
|
||||||
#}
|
|
||||||
#bindkey -s ^a "nvims\n"
|
|
||||||
|
|
||||||
# source /Users/normrasmussen/.docker/init-zsh.sh || true # Added by Docker Desktop
|
|
||||||
|
|
||||||
export PATH="$PATH:$HOME/.rvm/bin"
|
export PATH="$PATH:$HOME/.rvm/bin"
|
||||||
|
|
||||||
[ -f ~/.fzf.zsh ] && source ~/.fzf.zsh
|
[ -f ~/.fzf.zsh ] && source ~/.fzf.zsh
|
||||||
|
NPM_PACKAGES=/Users/$USERNAME/.npm-packages
|
||||||
export PATH="/opt/homebrew/sbin:$PATH"
|
export PATH="/opt/homebrew/sbin:$PATH"
|
||||||
eval "$(starship init zsh)"
|
|
||||||
export PATH="/opt/homebrew/bin:$PATH"
|
export PATH="/opt/homebrew/bin:$PATH"
|
||||||
|
export PATH="$NPM_PACKAGES/bin:$PATH"
|
||||||
|
source /opt/homebrew/share/powerlevel10k/powerlevel10k.zsh-theme
|
||||||
|
|
||||||
|
# To customize prompt, run `p10k configure` or edit ~/.p10k.zsh.
|
||||||
|
# [[ ! -f ~/.p10k.zsh ]] || source ~/.p10k.zsh
|
||||||
|
source ~/.dotfiles/zsh/zsh-autosuggestions/zsh-autosuggestions.zsh
|
||||||
|
source ~/.dotfiles/zsh/zsh-syntax-highlighting/zsh-syntax-highlighting.zsh
|
||||||
|
. "$HOME/.cargo/env"
|
||||||
|
export PATH="/usr/local/opt/openssl/bin:$PATH"
|
||||||
|
. "$HOME/.local/bin/env"
|
||||||
|
|
||||||
|
# To customize prompt, run `p10k configure` or edit ~/.p10k.zsh.
|
||||||
|
[[ ! -f ~/.p10k.zsh ]] || source ~/.p10k.zsh
|
||||||
|
|
||||||
|
eval "$(uv generate-shell-completion zsh)"
|
||||||
|
|
||||||
|
# export NVM_DIR="$HOME/.nvm"
|
||||||
|
[ -s "$NVM_DIR/nvm.sh" ] && \. "$NVM_DIR/nvm.sh" # This loads nvm
|
||||||
|
[ -s "$NVM_DIR/bash_completion" ] && \. "$NVM_DIR/bash_completion" # This loads nvm bash_completion
|
||||||
|
|
||||||
|
# To customize prompt, run `p10k configure` or edit ~/.dotfiles/zsh/.p10k.zsh.
|
||||||
|
[[ ! -f ~/.dotfiles/zsh/.p10k.zsh ]] || source ~/.dotfiles/zsh/.p10k.zsh
|
||||||
|
|||||||
8
zsh/.zshrc.minimal
Normal file
@ -0,0 +1,8 @@
|
|||||||
|
export LC_ALL=en_US.UTF-8
|
||||||
|
export LANG=en_US.UTF-8
|
||||||
|
|
||||||
|
# User configuration
|
||||||
|
export DOT="~/.dotfiles"
|
||||||
|
alias vim='vim -S ~/.vimrc'
|
||||||
|
alias nvim='nvim'
|
||||||
|
source ~/.dotfiles/zsh/.zshrc
|
||||||