Switched Zathura for Sioyek

clean_emacs
TuDatTr 2022-02-19 17:10:26 +01:00
parent 68b2a0cf22
commit afcd3df45c
8 changed files with 411 additions and 29 deletions

7
.gitignore vendored
View File

@ -1,6 +1,6 @@
*~
.#*
\#*\#
~
*API*
*.bak
config/.config/ranger/*
@ -13,7 +13,8 @@ config/.mozilla/*
!config/.mozilla/firefox/2x4tnepw.default/prefs.js
!config/.mozilla/firefox/profiles.ini
config/.scripts/playstate
config/.ssh/known_hosts
!config/.ssh/*
!config/.ssh/config
emacs/.emacs.d/*
!emacs/.emacs.d/config.org
!emacs/.emacs.d/ledger.org
@ -22,5 +23,5 @@ emacs/.emacs.d/*
*.log
*.pdf
vim/.vim/bundle/*
vim/.vim/plugged/*
vim/.vim/.netrwhist
vim/.vim/plugged/*

View File

@ -60,7 +60,7 @@ mime ^video, terminal, !X, has mplayer = mplayer -- "$@"
# Documents
#-------------------------------------------
ext pdf, has llpp, X, flag f = llpp "$@"
ext pdf, has zathura, X, flag f = zathura -- "$@"
ext pdf, has sioyek, X, flag f = sioyek -- "$@"
ext pdf, has mupdf, X, flag f = mupdf "$@"
ext pdf, has mupdf-x11,X, flag f = mupdf-x11 "$@"
ext pdf, has apvlv, X, flag f = apvlv -- "$@"
@ -80,7 +80,7 @@ ext pptx?|od[dfgpst]|docx?|sxc|xlsx?|xlt|xlw|gnm|gnumeric, has libreoffice, X, f
ext pptx?|od[dfgpst]|docx?|sxc|xlsx?|xlt|xlw|gnm|gnumeric, has soffice, X, flag f = soffice "$@"
ext pptx?|od[dfgpst]|docx?|sxc|xlsx?|xlt|xlw|gnm|gnumeric, has ooffice, X, flag f = ooffice "$@"
ext djvu, has zathura,X, flag f = zathura -- "$@"
ext djvu, has sioyek,X, flag f = sioyek -- "$@"
ext djvu, has evince, X, flag f = evince -- "$@"
ext djvu, has atril, X, flag f = atril -- "$@"
ext djvu, has djview, X, flag f = djview -- "$@"

View File

@ -0,0 +1,204 @@
# you can edit this file to change keybindings lines that start with '#' are comments
# the syntax is pretty simple. Some examples:
#command k (command is executed when k is pressed)
#command <C-k> (command is executed when k is pressed while holding control)
#command <S-k> (command is executed when k is pressed while holding shift)
#command <A-k> (command is executed when k is pressed while holding alt)
#command <S-+> (command is executed when = is pressed while holding shift.
# Note that <S-=> would not work because of a bug in the command system so
# when prefixing non-ascii keys with shift, you have to specify the shift
# modified key in addition to the shift modifier)
#command <C-S-k> (command is executed when k is pressed while holding control and shift)
#command gg (command is executed when g is pressed twice)
#command gt (command is executed when g is pressed and then t is pressed)
#command g<C-n><S-d>t (command is executed when g is pressed and then n is pressed while holding\
# control and then d is pressed while holding shift and then t is pressed)
# ---------- NAVIGATION AND ZOOM ----------
# Goto the begining of document. If prefixed with a number, it will go to that page.
# for example 150gg goes to page 150.
goto_begining gg
goto_begining <C-<home>>
# Opens a prompt to enter page number and jump to that page
goto_page_with_page_number <home>
# Goto the end of the document
goto_end <end>
goto_end <S-g>
# movement (can be prefixed with a number)
move_down <down>
move_up <up>
move_left <right>
move_right <left>
# Goto forward for one page width. (can be prefixed with a number)
# (note that going forward for one page width is not usually what you want becaue if
# the page is larger than the screen you will miss some content. What you usually want is screen_down)
next_page <C-<pagedown>>
previous_page <C-<pageup>>
# Go down one screen width (can be prefixed with a number which tells how many screen widths should we go down)
screen_down <space>
screen_up <S-space>
screen_down <pagedown>
screen_up <pageup>
# Goto the next/prev chapter
next_chapter gc
prev_chapter g<S-c>
# Goto previous viewing state and delete the current (and future) state(s).
pop_state w
# if we are not at the end of viewing history, goto the next history point
next_state <l>
# goto the previous history point
prev_state <h>
prev_state <backspace>
next_state <C-<right>>
prev_state <C-<left>>
# Open table of contents.
goto_toc t
# zoom
zoom_in <S-+>
zoom_out =
zoom_out -
# Automatically set the zoom level and horizontal offset such that the current page is centered horizontally and
# it fills the screen width
fit_to_page_width <f9>
# same as fit_to_page_with but ignores page margins
fit_to_page_width_smart <f10>
# Open a file dialog to select a document.
open_document o
open_document_embedded <C-o>
open_document_embedded_from_current_path <C-S-o>
# Open a searchable list of previously opened documents.
open_prev_doc <S-o>
# ---------- SEARCH ----------
# search the document.
# example: /something (searches the document for 'something')
# you can also specify a page range to search:
# example: /<110,135>something (searches pages 110 to 135 (inclusive) for 'something')
search <C-f>
search /
# this is the same as search.
ranged_search r<C-f>
ranged_search r/
# searches the current chapter. This is essentially the same as search but the range prefix is autofilled
# with the range of the current lowest level subchapter.
chapter_search c<C-f>
chapter_search c/
# Goto the next search item. Can be prefixed with a number which is the same as performing the command n times
# for example if we are on the 10th search result and we input 15n, we go to the 25th search result.
next_item n
# Goto the previous search result. Can be prefixed with a number with similar rules as next_item.
previous_item <S-n>
# ---------- BOOKMARKS ----------
# Add a bookmark in the current location (opens a text input where you can specify the bookmark text)
add_bookmark b
delete_bookmark db
# Open bookmarks menu of the current document.
goto_bookmark gb
# Open bookmarks menu of all documents.
goto_bookmark_g g<S-b>
# ---------- HIGHLIGHTS ----------
# you can select a piece of text and press the `add_highlight` shortcut followed by a symbol (a character from a-z) to highlight
# the text
add_highlight h
# search in highlights of current document
goto_highlight gh
# search in highlights of all documents
goto_highlight_g g<S-h>
# click on a highlight and then press the `delete_highlight` shortcut to delete it.
delete_highlight dh
# ---------- MARKS ----------
# Mark the current location. After pressing the mark button, you must enter a symbol (a letter from a-z or A-Z).
# this marks the current location in the file with the entered symbol. Afterwards you will be able to return to
# the locations of the marks using goto_mark command.
# example: mm (marks the current location in the file with a mark named 'm')
set_mark m
# Goto a previously set mark. After pressing goto_mark you must enter a symbol associated with a previously set mark.
# example: `m (goes to the location of the mark named m)
goto_mark `
# ---------- PORTALS ----------
# If we are in default state, goto portal state with the current location in document as the portal source
# if we are already in the portal state, create the portal with the current location as destination.
link p
# Delete the portal with the closest source to current location
delete_link dp
# Goto the position of the portal with the closest source to current location
goto_link <tab>
# Similar to goto_link, except when prev_state is called, the destination of the link is update to be the state
# on which prev_state is called
edit_link <S-p>
edit_link <S-<tab>>
# Open/Close the helper window for portals
toggle_one_window <f12>
# ---------- MISC ----------
# copy selected text
copy <C-c>
toggle_fullscreen <f11>
# Toggles whether we highlight pdf links or not
toggle_highlight <f1>
# open command line
command <S-:>
# seach the selected text using one of the search engines defined using search_url_* settings in prefs.config (* can be any letter between 'a' and 'z')
external_search s
#search_selected_text_in_google_scholar ss
#search_selected_text_in_libgen sl
open_selected_url <S-q>
toggle_dark_mode <f8>
# toggle synctex mode. When in synctex mode, right clicking on a pdf launches the corresponding latex page.
toggle_synctex <f4>
# while in mouse drag mode, instead of selecting text you can pan the screen using mouse
toggle_mouse_drag_mode <f6>
# command the move the visual mark to the next/previous line
move_visual_mark_up k
move_visual_mark_down j
# In visual scroll mode, mouse wheel performs `move_visual_mark_up` and `move_visual_mark_down` commands
toggle_visual_scroll <f7>
toggle_presentation_mode <f5>
#quit q

View File

@ -0,0 +1,137 @@
# (can be 0 or 1) if set, shows a notification on startup if a new version of sioyek is available
check_for_updates_on_startup 0
# The color with which the screen is cleared before rendering the pdf
background_color 1.0 1.0 1.0
dark_mode_background_color 0.0 0.0 0.0
# Showing full white text on black background can be irritating for the eye, we can dim the whites a little bit using the contrast option
dark_mode_contrast 0.8
# Highlight color when text is selected using mouse
text_highlight_color 1.0 1.0 0.0
# The color of highlight bar which is displayed when right click is pressed
vertical_line_color 0.0 0.0 0.0 0.1
# Highlight color when text is a search match
search_highlight_color 0.0 1.0 0.0
# Hihglight color for PDF links (note that highlight is off by default
# and can only be seen by performing a toggle_highlight command. See keys.config for more details)
link_highlight_color 0.0 0.0 1.0
# Hihglight color for synctex forward search highlights
synctex_highlight_color 1.0 0.0 1.0
# urls to use when executing external_search commands
search_url_s https://scholar.google.com/scholar?q=
search_url_l http://gen.lib.rus.ec/scimag/?q=
search_url_g https://www.google.com/search?q=
# which search url to choose when middle clicking or shift middle clicking on text (the values are the letters of corresponding search_url_* )
# for example if i set `middle_click_search_engine s`, then we use the url associated with `search_url_s` to handle middle click searches
middle_click_search_engine s
shift_middle_click_search_engine l
# The factor by which we increase/decrease zoom when performing zoom_in or zoom_out
zoom_inc_factor 1.2
# How many inches we move vertically/horizontally when performing move_* commands
vertical_move_amount 1.0
horizontal_move_amount 1.0
# When performing screen_down/screen_up we usually don't move a full screen because it causes the user to lose context
# Here we specify the fraction of the screen width by which we move when performing these commands
move_screen_percentage 0.5
# If 0, Table of Contents is shown in a hierarchial tree, otherwise it is a flat list (can improve performance for extremely large table of contents)
flat_toc 0
# If it is 1, when launching the application if we detect multiple monitors, we automatically launch the helper window in second monitor
should_use_multiple_monitors 0
# if the last opened document is empty, load the tutorial pdf instead
should_load_tutorial_when_no_other_file 1
# if it is 0, then we use the previous instance of sioyek when launching a new file.
# otherwise a new instance is launched every time we open a new file.
should_launch_new_instance 0
# the command to use when trying to do inverse search into a LaTeX document. Uncomment and provide your own command.
# %1 expands to the name of the file and %2 expans to the line number.
#inverse_search_command "C:\path\to\vscode\Code.exe" -r -g %1:%2
# you can specify the exact highlight color for each of 26 different highlight types
# when moving to the next line using visual marker, this setting specifies the distance of the market to the top of the screen in fractions of screen size
visual_mark_next_page_fraction 0.25
# when moving to the next line using visual marker, this setting determines at which point we move the screen
visual_mark_next_page_fraction 0.2
#Amethyst
highlight_color_a 0.94 0.64 1.00
#Blue
highlight_color_b 0.00 0.46 0.86
#Caramel
highlight_color_c 0.60 0.25 0.00
#Damson
highlight_color_d 0.30 0.00 0.36
#Ebony
highlight_color_e 0.10 0.10 0.10
#Forest
highlight_color_f 0.00 0.36 0.19
#Green
highlight_color_g 0.17 0.81 0.28
#Honeydew
highlight_color_h 1.00 0.80 0.60
#Iron
highlight_color_i 0.50 0.50 0.50
#Jade
highlight_color_j 0.58 1.00 0.71
#Khaki
highlight_color_k 0.56 0.49 0.00
#Lime
highlight_color_l 0.62 0.80 0.00
#Mallow
highlight_color_m 0.76 0.00 0.53
#Navy
highlight_color_n 0.00 0.20 0.50
#Orpiment
highlight_color_o 1.00 0.64 0.02
#Pink
highlight_color_p 1.00 0.66 0.73
#Quagmire
highlight_color_q 0.26 0.40 0.00
#Red
highlight_color_r 1.00 0.00 0.06
#Sky
highlight_color_s 0.37 0.95 0.95
#Turquoise
highlight_color_t 0.00 0.60 0.56
#Uranium
highlight_color_u 0.88 1.00 0.40
#Violet
highlight_color_v 0.45 0.04 1.00
#Wine
highlight_color_w 0.60 0.00 0.00
#Xanthin
highlight_color_x 1.00 1.00 0.50
#Yellow
highlight_color_y 1.00 1.00 0.00
#Zinnia
highlight_color_z 1.00 0.31 0.02
# if set, we display a checkerboard pattern for unrendered pages (by default we display nothing)
should_draw_unrendered_pages 0
# displays an overview of destination when hovering over a link with mouse
hover_overview 0
# Use dark mode by default
default_dark_mode 0
# if set, we sort the bookmarks by their location instead of their creation time
sort_bookmarks_by_location 0

View File

@ -9,6 +9,7 @@ t:/home/tuan/Templates
w:/home/tuan/workspace_l
k:/home/tuan/Documents/Uni/Studium/2017&2018 Wintersemester/Rechnerstrukturen und Betriebssysteme [4,0]/Rechnerstrukturen
q:/home/tuan/Quick Drop
':/home/tuan/workspace_l/home lab/config
':/home/tuan/.config/sioyek
e:/home/tuan/Documents/CTF/TryHackMe/Ice/2_Recon
s:/home/tuan/Pictures/Screenshots
v:/home/tuan/.syncthing/Documents/Arbeit/Uni-DuE_NCS_SHK/04_-_Projekte/06-Server_Setup/ansible

View File

@ -23,6 +23,12 @@ Host git.uni-due.de
User git
IdentityFile /mnt/veracrypt1/git
Host soft.tudattr.dev
HostName tudattr.dev
Port 23231
User root
IdentityFile /mnt/veracrypt1/genesis
# Homeserver
Host proxmox
HostName 10.1.10.2
@ -97,6 +103,13 @@ Host iperf-server
Host ncs-server
HostName 132.252.68.50
Port 2122
User tuan-dat.tran
IdentityFile /mnt/veracrypt1/genesis
ForwardX11 yes
Host remote-host
HostName 172.17.0.2
Port 22
User root
IdentityFile /mnt/veracrypt1/genesis
ProxyJump ncs-server

26
config/.ssh/known_hosts Normal file
View File

@ -0,0 +1,26 @@
10.168.68.109 ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIM0qeTTn3IrOM11iWLyqZT8M69+YNrY2sUZZ6a3LBGL6
10.168.68.109 ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC6xxTT9Fud7Fo5MOocn6uf7rZW6f82jQXqTd3ImvfJB+1qEyi5Z4EVPJ7JLqo4rhalAr9DAVaKcaYP7O3bQ/n+YIE/B/HnrNtLhe0sM4OSJmDWXG1JqhPP9QThVPESuFsk2erx7uKpP5t5BwwmS6VlhOLhvtWMTi9roS3h7H0ywpEQt8AygqYixk4TpyMZf3RezQ39oWJv6vJHf1/f6EUBdlBm0UM32MBlwzJkh0RJvExU8OzmomSpb7QHy5Rr6SAiq4Nac915F+UDjSJHClqBjeZ70m5KcMZyveeacBVDxNoOlxE0eC7P6Kji3tZg0Bdv3xyL4Qhz44f7PmRCoQzz
10.168.68.109 ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBJqh1txkoYauEg2RwYhF4m5BJcYCBAI/VvzJP6m/IQWkH0DaEvr2YDQ4JdV9qflezgzgi2ENwiT+vZWJ9fEb55s=
[132.252.68.50]:2122 ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIB8u/i8l8nSkJWZL905sWsvHhRIh/xc8klQH8/DBGVdQ
[132.252.68.50]:2122 ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQCWM5EO4uAu0yarNXEBvcVV0A5sqXaiW/SLh7TSHup9fJjhm7AsFGO6mYd4QbX0UZn3zo08u1ZBRbaQUCPUurYJxUQEsIXdX1E1vaU/QrOPI8mKtqsiFNjtu1jjN+tGoYJeRbLsD4rambcWHLTZfIjjbcnCNZdWPVOS/4Gq9eLb4MTNyIQA4vbW328j9pFwQAnibm9lgUygbCJjx6tkEzjuqZJhXQerzFk+sSn7jk7eyRS4LYceBOhXya1KdDuT0YkOF2i4IfAVbrZihuOf9quy3SsVYf2w6vmX08FowqWmnO/03D83VqolLtaObV9WnNYyox4Ag7Gaug4THYBR8qmaT52a9nAsnAyJZRfRHvCILtdMSwKKZrEGABKI/sJwk06BWKGC9CHbWCfNL8k9tww4ftPagr2FPS9ZdoZxil4AAxGRFjbdhFVbdS+1KQtnKm61hGYMdUnwNTtw2vppkmyOzLgyDJbnDz/3veNOeWgaAdj5WrdfpLLoDf3BFrxiQTE=
[132.252.68.50]:2122 ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBIy4xUxjdgzKYO3VdVnxDCh+6ZkyU0k46X2XKuNfoJef6Qyqvw/p2Tm8OQQvO0KWxzvB27XXPK0IYhQlgyJ63KY=
[127.0.0.1]:2200 ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIFNDCqWTy8JfuYiA6DlzOoqn2uB/zymZRZ71VoMYB/tX
[127.0.0.1]:2200 ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDLoeEhglv/eejPoMA0QwHUC9DMBRVot3w3pHu7353ngCEa6D2lNtG0xlurZzcEEwqrbL1xWNAUmEyNCYBo4JGym5CZsq7jYLjkQwDxQ6QPl47Trc7lA3KmQGE1B3KJV6ySin/OXYveYxHhGQwgTASJ2Ez4y9ioCZ8bsE8F+ivwMUbaCjIvZz8gUftiKv0tfQ0eYb1ZA+jyafD2EdKcth6MHUDRNF4czWj2lOM+q3CWQA1PT7kYqpEO2jY+Jem/QxjwJD3H89/UIYh2zZoMqD5n/5CzSJdNtHqLkCMuZhLD9VJPh7KQNd81Gx6OT0RA3/RrmNJRwkpMmpVT6YrKCiROOsetarMHYFf4LCIEWrnDrjteMsnd36DsKZQqjEsBSRyuGzaCHMtCvYEdM7g8kKC+zg4YCUzLgPOV3I3HKxNvyOYQZr+rreKTRONdYRhMvq3vfbp9wIEFj0dNu3ocwcXaYt7h2i5xifiOF6vlmGCssmp196oXm9APP20pgdkY1z8=
[127.0.0.1]:2200 ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBEeduaiQI0i6rsbU0qysRvWpKpdU1oNMLEZyBYO1LnKdnxwKW7ih2bu9iyWQCDTMIVtncpdrnjXn2N0zrM4z2DE=
[10.1.11.107]:23231 ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIEVhrOGV+PZN0+c0DVZtuK/yEtMHAgNU3G/W1PRlR7p9
[tudattr.dev]:23231 ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIEVhrOGV+PZN0+c0DVZtuK/yEtMHAgNU3G/W1PRlR7p9
[127.0.0.1]:2222 ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIJ+atJEmzF91ZNjjqJOhRmUcwU2wjDksm8D5pTZdnFU+
[127.0.0.1]:2222 ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDAbnvrXcj2mufS69DTvAfC3f/yASLTjNEabNBHBEKDuyGhekQftLebHv6ZyLvNEvo0sYA+5z4ZjIsPwKq1Ekvyhtmy0W0WOTyRDWOvezIlQebM19kNKAk4//2S4aCuWPfBHwWqteBpWcqXYv3IGLH8GN2rEmNE8Ms/SLXtatEWl3s36stzkrYIxkjNIf/nYwT31J9A2ZmBSCo6FR4K9E47ps/ldFiIzmnrRiq80Oh6VzUhgwh5bQdpWClHizqxhPrbz+C8WG9fLNpAVEVwd10P4fXn9IfCEhp5m4tfL0mvOjmO22pQhDvVBvXctfoWFS7+MGHxJzB9XnPhSMHSRW/fybYigazOL4M5FWE5vvoRsrFSAqRami6BEuAG7yCfr/xMVfgiNLbGgOEYJH0XtEW+YNcKdkX9N1Aw07jqzDHb1Fu6IhZciolshsJf+u8YAv4PJ/uWoynccqvCUdBHbUMGGfVjtl/HDA5JjY6WFn5TQ24qfSZE1V4D1TT9IIT4K98=
[127.0.0.1]:2222 ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBPeqKDUWYqzsNmXUwaZyw8lrfzUpCHXXCMx3Lj4pxl7bl4pl47P171/4ojiB1OrdIzZq45F7eL8jEtSiE6j/+no=
172.17.0.2 ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIL91ES6ZHLMGfne5e4w4u8t6+Bhc2IVq66bWlkSBsC1T
172.17.0.2 ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDCqMJKpt3mwxe8Wm+J+oQmoh08MtD3WMUvfrum8gMxkubdl7lGfZ0zQx6FWIwoYmQ7J1W1gvbo0c6tvNiiC5AmpspoaNokVnUoDmHO/uCDctQfjdzvAl1xXN0cBL7Lkr9KHvyFYCC2+dhAIilk/EdY8UaO+LCNF6JklYye/R5c62pgavJp0c+EIk9e94Z5M35FcqIFFhgd2HY5243h7w7NC5s5d4VRCpO5tPigmI079D4QY9b1a5SIvqYMnfjCpxeCGxRlIaVpsbSwJ/dzikvv/Wgm9y3p5ZxAYAnbHZZqTmb3qjMj69wy74P7ekxgbi9gssV2LzyxXhIiJL/yv9qXOZ3lVAlr7c5e0RhPKoD2YKjJFA/eKCc3I9P7l49UTScU+7uvz9u5hDPZK01gm/Wi+qyL6WBf+5XYk1lgsj6bF+CXQCVDhgeQKK58iQmS+dgXjTOjMVw+jIeqwqFNBvLmh3EDpHrj6W+59f75+W2htn8r4/UthgIIiybAJLyx3Yc=
172.17.0.2 ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBFY+dczenTs/qRqZICtrNjS14c+E0GZ8sCfcq2dUufIVaUwIHut9q5fZUipQeVMvvoJZAyvp/qaFDH7V5jiEEPY=
10.168.68.106 ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIEP2mnfjb3w4Vfv67wwVX6talWI/zraOjXoL9Ghs2jSL
10.168.68.106 ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCyJuICQlH6SYCqhBYt3rXrEMp9cTtVjzLpFEbc/DzVm0uEGRteANTXdSw9BcZRLEKyqwlbV+2xiafQX0z3VISfXF7P5ZkoGn4S9e5c1Oa/cY4epeGu7BWq8UBA7b1cHLdNkLg9rWdxKhzkOsr0G/kZ/4e4Su6UAyiXQoZcC7iMUiPJ/j5LA6OCUlaqNIFg9FcNg7T0RHvjOG4BRErbP7AgOT3EafoQpumgVQERMqgQm+fyF1vYa98ErbX88dHqN5Ix1VmYVn6uCctUv1d/UNH9fx7ONxZfQ7SJ0uCgAO8xKdRuY9jNCmQMz6ccLgEmp3T2IuFjhQmyoeh+RkxhYtrh
10.168.68.106 ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBMoTLpWhcuv2ThGpgj8ckxKdRPA0K5ayVi/HuALcm4MpXrF8flp/yCUZJBfOzhtVi+8l6jGFpTQGknDXPC5Q+ws=
10.168.68.117 ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIPkvesmfAWA8wFwdb7LVpZvGxOid2+cckJhqSWXRxdhg
10.168.68.117 ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC/nGbV5+xGKWGfqglwkAi3MhovaH0HE1c4xwJPJMlu/ghMM0CsI7o9pTT9epjOwOdinD872yjUoReJPlwYBMm3BAyqkEsM3hREpekIOTJKCalL94pQhQf2c9kXZI31TDqO9oC7GUQG/zZ8ndXjIEONVxqoH8vNUJzgjknWTdafGPPTKQ1TE7T4dNJ+5MTmOe1nvG9KvFNZS4JjNx/OEbHEDyc32f1EKQx5rEKwR1GYIuymDkMCqAUMMK8da7lBOS1XNznRrLwO1icf/IhE6JJrvnY+RzlDz4h1Y5AXGGMTPGtrt9pcv/Irsn/CCQA5PQPUKDxJwsEsDlDR1DHSx/JX
10.168.68.117 ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBGQCTHUVicRdOGk3V/HiG0tZTupXNxxg1GZRHNurl4AoTAo6rJY2HaukCtP3jDEaiECPIpTLeVOn5VTOeNCZbkU=
git.uni-due.de ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIB/f8VVsjeXT82vK2GX1iU61w5JNLoQUQhOwCocA7Ox5
git.uni-due.de ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC/ksWF8VRco/Wh39wEum8U+g9cMcQkEPlZN2kWxtw1EhtOVraCONnX6KPvbiKqDZQDKlV4FE+Cp9cVPj1NODN3fUiTsDSyj050juCVW16kx1nHSMYpFjzRUxhZMGGiKyTA1S24HDUhKVyqK/znss+oN93WUnE6w4rpQM3SUa7H6Kj1474kPlTNJR319dnsqixc5UjHacil0JkMDyksjb6kZwgfv/b0vHmgFqksHW5/7gVM0qjzwL+mElBxM1xyEEaGzw/C4x2wJDFUPryMryxgwa1FfaC5ywLgSFqh1w1mnxXnoAtO6uKWW9FIfMIlYpZ2TiXPCK3+HbbBm67vqrND
git.uni-due.de ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBAgroRZpxHSEmGpyVxJqzQeLi2sCVNON/7zxx5Jd6tzVG8bLvq+AhWpAo1jAqdGGkOmlynH4GoTb9xrnyeg07Mk=

View File

@ -1,24 +1,24 @@
10.1.11.112 ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIOwP7gRl4mDx3Vfwqs8d4ns0Gc7aFg0YegA31qCyjJVo
10.1.11.112 ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQC2pHKlOxPSS+KKxIGJDZSnaKRlK61g5Cmicjo25sUKTvmc4VlANRs4D3cgUg60imr1fW4KA6YE8a9V5fwrugsEOjx90TqGjO97lxZOzCMtu7UQAL+vqrsNmTHHM+Ivll9Bi9RL878d+YNWxo5sK4SYdwSbo7ZnELeAn02kUIIFq6x4tRzi+OY+Ns/lNEbO8C4K+F3CLD5Mt4Zrh2z9ptVy3LPdjzuzUYnYS49NZyR2dX1qZOtm24Qc6T2TEKIZjOwQSMFYNwhQBzCjTckHFuiDoeZbd4dBhUmJxLTHMa8+Gi3biZvXXwZW3XQFyqdTeMF/WUbEH1+0x+DbSzC4/cA9AUAVmwwLiJstD+zd+e5I/k2a5cojtzEszil6eHPslbok0xeVZzoXDqmMyH3d/h4wnnm5R0sRLaEDRxNT6OJxtYld+38n+m0qrpyyA3mZ7ZMwmSkBrp1/030KST8JW495epBSy2VoUT2ImFqXpfoE2hoIqlKJuSn+sMm7cfkFVhE=
10.1.11.112 ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBPPzaiY+RlxsL5e402czvVuLWwlY1zZkVTSXwj34ek1nzqEwyjLMFOg/Bh1sMW4shKDsDDQqq3pswSHZqn3rXXc=
10.1.11.114 ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAINZTOMnQ5Djjz4c92n89SlSsjGwiY5KJipIHNNVI2bFh
10.1.11.114 ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDBlyJFBz1V1Yw7jP0nBxK/tZ0qIfOQajKMistwwRNOwMeWG7LpNq9weneLDr8lxL0RhH1uxGXFZzcGPMLH4labezKClWQk5pkvBNE/8aqRdZSgQtjdOiQz2K6emyM+uuGIcjiOdmQolfn3fqfnfwqDuo6/lYMJOdAGxpsVZYx/ZSJ+E0COSYj2rRFEO5KaxiHnwcnzLkIqxK0AQEeOPLYMkRD4y1NNFbr5iIavLUNkigAExS72kjyL44NG7agatYksNPc/6vFywg30kJxAYFvs1bSxYBDKnLgxzkmyOhmYhA3/65xK0OuoIoNKoKLplmW6hnantTvJNYsgMgcLG9uxG5wzK3EcHNE3v4fHdxjnGXUZaxnepVXUHLXCOyEe9iUYae0/CqNLlYjbMS2kwbpNQpe+aRd7dlMGaoLOrAmU+oNvtrxij0z0/zUF77vXrWOvsiPah0obREFOU/8B2iSB7/z7Xe/NLjULaZHKW2fOlS3aGnWG/e0UdeC72YBVxFc=
10.1.11.114 ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBOXK2tpwMuXFDdSS6SJb+MeXhstv1pAkM079sKN0TohhIrHJgkJR+MxBsbFlep431WGjat56r5/FqLXJrOwhHMs=
10.1.10.2 ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAION2W4GfmiiaXJVYfZk5wY0caZt1A/i5WkBxx/Txg3qE
10.1.10.2 ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDSLzKI6CPMcnYRmEORx5i8kdf7djYbTpH4/aMM64TaOJgP+iGGA57rx/0tL9YZnGCKh57p6AIm/UBh6M57hIgKFu2WQvHkFdbwGnC4o+OAA0y9Fc9PRQ+pjWqI2ivKlD5+MnonJRt/lq4R2QAb7RZJhPFAK3/wqHm91WXGM2lIyB3tNAeexi/qlVrXnQM6FzjQXCOn2oLuP4GldcqZASFW64EJ4xhH5f93+B3NLHQn8JnE7bJ8nlOG9pU6zqbDwG+fpL3TFmfRZOCsRForrjSfU8euJCI92G2pQUlU7CzjMHR4+9kLaUkTLR4qg0/GFvIlqSS3U6LeWrhfKMYxUzRD
10.1.10.2 ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBNyjs7y8q2lqpfaiaiWZnSZSG68bV4NFSoQzN2DYviHIg6EVNry2DbLy6JvEG3Rua+Mvhg3PHMoz0SjKPI3xp5Q=
[132.252.68.50]:2122 ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIAoDztb9wZq6H2Isg5I2MqzUmYWWRIN7vjBtlIGURo+S
[132.252.68.50]:2122 ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDC8ks9qBhdZfDZ/w84FhoBfiaJleXAseY5OTbQI0rnPaSIbvaSQfEQnoGJHlbLSHsdrJtgeC5ya0K0xHJPd24wGzTYW2+aqxzm3CtVNfJqFW+emDPRRQf+8hbtK3ot52fVTFiam2jtIFvEfbZyfaQszV68x9INpuSouPFv0l/JwQGm83f/kVFfuOzdq7++KEyoj3yZ36jPNoV/CAfDVsld5t3WAV65fcK5/Vsy7IJ3dJODEsJl64XYv7ujPtxHIfEdt1aedj0vkx2Af/+YYEMYPkTSPdM30zeRsiNn3dsAz7IGGCytYXEw9zx9bk8WbSYtllfQhNei3taozpABflkU/lr8t+Cy4N7SOIt7zaUd0/pFH61bOD/wF3xB4wRGE8adqOcsvVc7nek2C4AWFCe4WubtC8YptOz2XL86wSvIG6XeNdIV3QVxaQgp5X4LgER/iGB8iFVPrTruD864X83dv0b7Y6VLuqW/wAuD1V0Ka3Rrr/+lNmy+O5rWEP0HsN0=
[132.252.68.50]:2122 ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBCnlQ4lpY4LgWm9+sd20pk6x8NzdtLasmxZsqq5+qKJlHAbPFpY7LwNF4OLpA/mPEpQYk8NtBtRBJdoBidkg2N4=
10.1.11.100 ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAICJrUSMXZ++NFNZ/qFoRV4hlogwAGV22f7exHoCCL5s7
10.1.11.100 ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDUGwQNz/GwLrAAexhAHBoWZJveieurH4x0sqrhc0ovfEt3CCrc2VC6i8wIpztT7DaUamvyIMUN/s9qbIQNaXlx1HPZjirExADOajh9I85lt5YkWSyoyhy143ESugcnNaCCrvg9kxOlMsa0X3QYUocjnrc7NyXAC81Q1RQPIbLJXeQlTgMMlV5k9e5w+yxFxJIDXhcczsIw2I5g7E2OM9Zr4ZoTWkeDVxesmctmmpUT0PQwx9ucu6qgD6fsRIdcjokJutT229ZpNW5kHckReHYow1XVfL2V+rhzhval1x6JSNoJJpSblusYqrSFY4uN+1+ZZKxHg9dhqC2gIkB2C8J5
10.1.11.100 ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBDmNWFGigpzeAspBQOhBiGesU1p+KHVPcYKdqXohDi9E4NgtyBL2vsoFSgrQbFQORU8bZ+hnT/vbXpL9K2Bvx/A=
git.charm.sh ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIDuy+nYe1WRRM7KrupoN88FSbfayyezygBfvAOS8jbcJ
10.1.11.107 ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIIwhbrYIeq7unsMyZxkfO+GcNhjerPlVkxrt/+dAZ77C
10.1.11.107 ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDgjxLb6fRop4vW2unciqzKX8pHLF63zlpy8y1w//RLHsQHQBau4oN5g7u6gpmiEscw9Vc3qMR6rKmQBmSeSunxfoj+Tqx0on3mrZmr3yTITaEE9Il0EIIZLz1Augs6QPiwljIZueoMMTMqA7qIbiHBiMH8Z5/QrvG73R3x0VeDuqWO1PJBi0AzaA7TrGyzQw/oTlkLuFaYzeTZlUxlJ++VKyfe3bnJya0kxenHL5ERRiUaKgvclHj2aAb2HkchzGw3TpbpviitAaPLFJ2oz73n35Sbp3dmsr++EqNg+KKW+R+GJr8AxagJZs26PD7a9ke3wFd5vO0WLCUBJT6FG5qv
10.1.11.107 ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBONWxxKSm3p3EH3ZjQ84lLXhbemYFYv5wriCcTTyYhCPhSAZn9ybQ9Mb1u8V7H8N9+dEJAW2T2QAX1w9mWb8mUM=
10.168.68.109 ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIM0qeTTn3IrOM11iWLyqZT8M69+YNrY2sUZZ6a3LBGL6
10.168.68.109 ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC6xxTT9Fud7Fo5MOocn6uf7rZW6f82jQXqTd3ImvfJB+1qEyi5Z4EVPJ7JLqo4rhalAr9DAVaKcaYP7O3bQ/n+YIE/B/HnrNtLhe0sM4OSJmDWXG1JqhPP9QThVPESuFsk2erx7uKpP5t5BwwmS6VlhOLhvtWMTi9roS3h7H0ywpEQt8AygqYixk4TpyMZf3RezQ39oWJv6vJHf1/f6EUBdlBm0UM32MBlwzJkh0RJvExU8OzmomSpb7QHy5Rr6SAiq4Nac915F+UDjSJHClqBjeZ70m5KcMZyveeacBVDxNoOlxE0eC7P6Kji3tZg0Bdv3xyL4Qhz44f7PmRCoQzz
10.168.68.109 ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBJqh1txkoYauEg2RwYhF4m5BJcYCBAI/VvzJP6m/IQWkH0DaEvr2YDQ4JdV9qflezgzgi2ENwiT+vZWJ9fEb55s=
[132.252.68.50]:2122 ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIB8u/i8l8nSkJWZL905sWsvHhRIh/xc8klQH8/DBGVdQ
[132.252.68.50]:2122 ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQCWM5EO4uAu0yarNXEBvcVV0A5sqXaiW/SLh7TSHup9fJjhm7AsFGO6mYd4QbX0UZn3zo08u1ZBRbaQUCPUurYJxUQEsIXdX1E1vaU/QrOPI8mKtqsiFNjtu1jjN+tGoYJeRbLsD4rambcWHLTZfIjjbcnCNZdWPVOS/4Gq9eLb4MTNyIQA4vbW328j9pFwQAnibm9lgUygbCJjx6tkEzjuqZJhXQerzFk+sSn7jk7eyRS4LYceBOhXya1KdDuT0YkOF2i4IfAVbrZihuOf9quy3SsVYf2w6vmX08FowqWmnO/03D83VqolLtaObV9WnNYyox4Ag7Gaug4THYBR8qmaT52a9nAsnAyJZRfRHvCILtdMSwKKZrEGABKI/sJwk06BWKGC9CHbWCfNL8k9tww4ftPagr2FPS9ZdoZxil4AAxGRFjbdhFVbdS+1KQtnKm61hGYMdUnwNTtw2vppkmyOzLgyDJbnDz/3veNOeWgaAdj5WrdfpLLoDf3BFrxiQTE=
[132.252.68.50]:2122 ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBIy4xUxjdgzKYO3VdVnxDCh+6ZkyU0k46X2XKuNfoJef6Qyqvw/p2Tm8OQQvO0KWxzvB27XXPK0IYhQlgyJ63KY=
[127.0.0.1]:2200 ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIFNDCqWTy8JfuYiA6DlzOoqn2uB/zymZRZ71VoMYB/tX
[127.0.0.1]:2200 ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDLoeEhglv/eejPoMA0QwHUC9DMBRVot3w3pHu7353ngCEa6D2lNtG0xlurZzcEEwqrbL1xWNAUmEyNCYBo4JGym5CZsq7jYLjkQwDxQ6QPl47Trc7lA3KmQGE1B3KJV6ySin/OXYveYxHhGQwgTASJ2Ez4y9ioCZ8bsE8F+ivwMUbaCjIvZz8gUftiKv0tfQ0eYb1ZA+jyafD2EdKcth6MHUDRNF4czWj2lOM+q3CWQA1PT7kYqpEO2jY+Jem/QxjwJD3H89/UIYh2zZoMqD5n/5CzSJdNtHqLkCMuZhLD9VJPh7KQNd81Gx6OT0RA3/RrmNJRwkpMmpVT6YrKCiROOsetarMHYFf4LCIEWrnDrjteMsnd36DsKZQqjEsBSRyuGzaCHMtCvYEdM7g8kKC+zg4YCUzLgPOV3I3HKxNvyOYQZr+rreKTRONdYRhMvq3vfbp9wIEFj0dNu3ocwcXaYt7h2i5xifiOF6vlmGCssmp196oXm9APP20pgdkY1z8=
[127.0.0.1]:2200 ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBEeduaiQI0i6rsbU0qysRvWpKpdU1oNMLEZyBYO1LnKdnxwKW7ih2bu9iyWQCDTMIVtncpdrnjXn2N0zrM4z2DE=
[10.1.11.107]:23231 ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIEVhrOGV+PZN0+c0DVZtuK/yEtMHAgNU3G/W1PRlR7p9
[tudattr.dev]:23231 ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIEVhrOGV+PZN0+c0DVZtuK/yEtMHAgNU3G/W1PRlR7p9
[127.0.0.1]:2222 ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIJ+atJEmzF91ZNjjqJOhRmUcwU2wjDksm8D5pTZdnFU+
[127.0.0.1]:2222 ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDAbnvrXcj2mufS69DTvAfC3f/yASLTjNEabNBHBEKDuyGhekQftLebHv6ZyLvNEvo0sYA+5z4ZjIsPwKq1Ekvyhtmy0W0WOTyRDWOvezIlQebM19kNKAk4//2S4aCuWPfBHwWqteBpWcqXYv3IGLH8GN2rEmNE8Ms/SLXtatEWl3s36stzkrYIxkjNIf/nYwT31J9A2ZmBSCo6FR4K9E47ps/ldFiIzmnrRiq80Oh6VzUhgwh5bQdpWClHizqxhPrbz+C8WG9fLNpAVEVwd10P4fXn9IfCEhp5m4tfL0mvOjmO22pQhDvVBvXctfoWFS7+MGHxJzB9XnPhSMHSRW/fybYigazOL4M5FWE5vvoRsrFSAqRami6BEuAG7yCfr/xMVfgiNLbGgOEYJH0XtEW+YNcKdkX9N1Aw07jqzDHb1Fu6IhZciolshsJf+u8YAv4PJ/uWoynccqvCUdBHbUMGGfVjtl/HDA5JjY6WFn5TQ24qfSZE1V4D1TT9IIT4K98=
[127.0.0.1]:2222 ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBPeqKDUWYqzsNmXUwaZyw8lrfzUpCHXXCMx3Lj4pxl7bl4pl47P171/4ojiB1OrdIzZq45F7eL8jEtSiE6j/+no=
172.17.0.2 ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIL91ES6ZHLMGfne5e4w4u8t6+Bhc2IVq66bWlkSBsC1T
172.17.0.2 ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDCqMJKpt3mwxe8Wm+J+oQmoh08MtD3WMUvfrum8gMxkubdl7lGfZ0zQx6FWIwoYmQ7J1W1gvbo0c6tvNiiC5AmpspoaNokVnUoDmHO/uCDctQfjdzvAl1xXN0cBL7Lkr9KHvyFYCC2+dhAIilk/EdY8UaO+LCNF6JklYye/R5c62pgavJp0c+EIk9e94Z5M35FcqIFFhgd2HY5243h7w7NC5s5d4VRCpO5tPigmI079D4QY9b1a5SIvqYMnfjCpxeCGxRlIaVpsbSwJ/dzikvv/Wgm9y3p5ZxAYAnbHZZqTmb3qjMj69wy74P7ekxgbi9gssV2LzyxXhIiJL/yv9qXOZ3lVAlr7c5e0RhPKoD2YKjJFA/eKCc3I9P7l49UTScU+7uvz9u5hDPZK01gm/Wi+qyL6WBf+5XYk1lgsj6bF+CXQCVDhgeQKK58iQmS+dgXjTOjMVw+jIeqwqFNBvLmh3EDpHrj6W+59f75+W2htn8r4/UthgIIiybAJLyx3Yc=
172.17.0.2 ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBFY+dczenTs/qRqZICtrNjS14c+E0GZ8sCfcq2dUufIVaUwIHut9q5fZUipQeVMvvoJZAyvp/qaFDH7V5jiEEPY=
10.168.68.106 ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIEP2mnfjb3w4Vfv67wwVX6talWI/zraOjXoL9Ghs2jSL
10.168.68.106 ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCyJuICQlH6SYCqhBYt3rXrEMp9cTtVjzLpFEbc/DzVm0uEGRteANTXdSw9BcZRLEKyqwlbV+2xiafQX0z3VISfXF7P5ZkoGn4S9e5c1Oa/cY4epeGu7BWq8UBA7b1cHLdNkLg9rWdxKhzkOsr0G/kZ/4e4Su6UAyiXQoZcC7iMUiPJ/j5LA6OCUlaqNIFg9FcNg7T0RHvjOG4BRErbP7AgOT3EafoQpumgVQERMqgQm+fyF1vYa98ErbX88dHqN5Ix1VmYVn6uCctUv1d/UNH9fx7ONxZfQ7SJ0uCgAO8xKdRuY9jNCmQMz6ccLgEmp3T2IuFjhQmyoeh+RkxhYtrh
10.168.68.106 ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBMoTLpWhcuv2ThGpgj8ckxKdRPA0K5ayVi/HuALcm4MpXrF8flp/yCUZJBfOzhtVi+8l6jGFpTQGknDXPC5Q+ws=
10.168.68.117 ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIPkvesmfAWA8wFwdb7LVpZvGxOid2+cckJhqSWXRxdhg
10.168.68.117 ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC/nGbV5+xGKWGfqglwkAi3MhovaH0HE1c4xwJPJMlu/ghMM0CsI7o9pTT9epjOwOdinD872yjUoReJPlwYBMm3BAyqkEsM3hREpekIOTJKCalL94pQhQf2c9kXZI31TDqO9oC7GUQG/zZ8ndXjIEONVxqoH8vNUJzgjknWTdafGPPTKQ1TE7T4dNJ+5MTmOe1nvG9KvFNZS4JjNx/OEbHEDyc32f1EKQx5rEKwR1GYIuymDkMCqAUMMK8da7lBOS1XNznRrLwO1icf/IhE6JJrvnY+RzlDz4h1Y5AXGGMTPGtrt9pcv/Irsn/CCQA5PQPUKDxJwsEsDlDR1DHSx/JX
10.168.68.117 ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBGQCTHUVicRdOGk3V/HiG0tZTupXNxxg1GZRHNurl4AoTAo6rJY2HaukCtP3jDEaiECPIpTLeVOn5VTOeNCZbkU=
git.uni-due.de ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIB/f8VVsjeXT82vK2GX1iU61w5JNLoQUQhOwCocA7Ox5
git.uni-due.de ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC/ksWF8VRco/Wh39wEum8U+g9cMcQkEPlZN2kWxtw1EhtOVraCONnX6KPvbiKqDZQDKlV4FE+Cp9cVPj1NODN3fUiTsDSyj050juCVW16kx1nHSMYpFjzRUxhZMGGiKyTA1S24HDUhKVyqK/znss+oN93WUnE6w4rpQM3SUa7H6Kj1474kPlTNJR319dnsqixc5UjHacil0JkMDyksjb6kZwgfv/b0vHmgFqksHW5/7gVM0qjzwL+mElBxM1xyEEaGzw/C4x2wJDFUPryMryxgwa1FfaC5ywLgSFqh1w1mnxXnoAtO6uKWW9FIfMIlYpZ2TiXPCK3+HbbBm67vqrND
git.uni-due.de ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBAgroRZpxHSEmGpyVxJqzQeLi2sCVNON/7zxx5Jd6tzVG8bLvq+AhWpAo1jAqdGGkOmlynH4GoTb9xrnyeg07Mk=
gitlab.com ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIAfuCHKVTjquxvt6CM6tdG4SLp1Btn/nOeHHE5UOzRdf