branch: externals/ergoemacs-mode commit 0e2f76935aa9801af8d00e82caa1c8859668819d Merge: 3f961db a9cea74 Author: Matthew Fidler <matthew.fid...@gmail.com> Commit: GitHub <nore...@github.com>
Merge pull request #507 from ergoemacs/describe_theme Make ergoemacs-describe-current-theme and "C-h '" work. --- ergoemacs-theme-engine.el | 75 ++++- ergoemacs-themes.el | 5 +- kbd-ergo.svg | 757 ---------------------------------------------- 3 files changed, 72 insertions(+), 765 deletions(-) diff --git a/ergoemacs-theme-engine.el b/ergoemacs-theme-engine.el index fc69e20..1c826e6 100644 --- a/ergoemacs-theme-engine.el +++ b/ergoemacs-theme-engine.el @@ -292,6 +292,68 @@ (defvar ergoemacs-theme--svg-prefixes nil) (defvar ergoemacs-theme--svg-prefix nil) +(defun ergoemacs-theme-describe () + "Display the full documentation for Ergoemacs." + (interactive) + (let* (required-p + svg png tmp) + (setq svg (ergoemacs-theme--svg) + png (ergoemacs-theme--png)) + (help-setup-xref (list #'ergoemacs-theme-describe) + (called-interactively-p 'interactive)) + (with-help-window (help-buffer) + (with-current-buffer standard-output + (insert "Ergoemacs Diagram:\n") + (cond + ((and (image-type-available-p 'png) + (car png) + (file-exists-p (car png))) + (insert-image (create-image (car png))) + (insert "\n")) + ((and (car svg) + (file-exists-p (car svg)) (image-type-available-p 'svg)) + (insert-image (create-image (car svg))) + (insert "\n"))) + (if (and (car png) (file-exists-p (car png))) + (insert "[svg] [png]") + (insert "[svg]")) + (beginning-of-line) + (if (looking-at "\\(\\[svg\\]\\) \\(\\[png\\]\\)") + (progn + (help-xref-button 1 'help-url (car svg)) + (help-xref-button 2 'help-url (car png))) + (if (looking-at "\\(\\[svg\\]\\)") + (help-xref-button 1 'help-url (car svg)))) + (goto-char (point-max)) + (when ergoemacs-theme--svg-list + (insert "\n") + (dolist (elt ergoemacs-theme--svg-list) + (when (string= key (nth 0 elt)) + (insert (ergoemacs-key-description (nth 1 elt)) ":\n") + (cond + ((and (image-type-available-p 'png) + (nth 2 elt) + (file-exists-p (replace-regexp-in-string "[.]svg\\'" ".png" (nth 2 elt)))) + (insert-image (create-image (replace-regexp-in-string "[.]svg\\'" ".png" (nth 2 elt)))) + (insert "\n")) + ((and (image-type-available-p 'svg) + (nth 2 elt) + (file-exists-p (nth 2 elt))) + (insert-image (create-image (nth 2 elt))) + (insert "\n"))) + (when (file-exists-p (nth 2 elt)) + (insert "[svg]") + (when (looking-back "\\(\\[svg\\]\\)" nil) + (help-xref-button 1 'help-url (nth 2 elt)))) + (when (file-exists-p (replace-regexp-in-string "[.]svg\\'" ".png" (nth 2 elt))) + (insert " [png]") + (when (looking-back "\\(\\[png\\]\\)" nil) + (help-xref-button 1 'help-url (replace-regexp-in-string "[.]svg\\'" ".png" (nth 2 elt))))) + (insert "\n\n")))) + (insert "\n\n") + (setq required-p t) + (insert "\n\n") + (buffer-string))))) (defun ergoemacs-theme--svg-elt-nonabbrev (what) "Replace WHAT with ergoemacs abbreviation of function." @@ -385,10 +447,11 @@ (let* ((lay (or layout ergoemacs-keyboard-layout)) (layout (symbol-value (ergoemacs :layout lay))) (file-dir (expand-file-name "bindings" (expand-file-name "ergoemacs-extras" user-emacs-directory))) - (file-name (expand-file-name (concat lay "-" (symbol-name (ergoemacs-map--hashkey ergoemacs--start-emacs-state-2)) ".svg") file-dir)) + (file-name (expand-file-name (concat lay ".svg") file-dir)) (reread reread) (old-layout ergoemacs-keyboard-layout) - pt ret) + pt ret + ) (if (and file-name (file-exists-p file-name) (not reread) @@ -396,7 +459,7 @@ ergoemacs-theme--svg-list) ) (progn - (setq ret (file-expand-wildcards (expand-file-name (concat lay "-*-" (symbol-name (ergoemacs-map--hashkey ergoemacs--start-emacs-state-2)) ".svg") file-dir))) + (setq ret (file-expand-wildcards (expand-file-name (concat lay ".svg") file-dir))) (push file-name ret) ret) (unless (equal lay old-layout) @@ -488,9 +551,9 @@ (setq ergoemacs-theme--svg-prefix (pop ergoemacs-theme--svg-prefixes) file-name (expand-file-name (concat ergoemacs-theme "-" lay "-" (replace-regexp-in-string "[^A-Za-z0-9-]+" "_" (key-description ergoemacs-theme--svg-prefix)) - "-" (symbol-name (ergoemacs-map--hashkey ergoemacs--start-emacs-state-2)) ".svg") file-dir)) - (push (list (concat lay "-" (symbol-name (ergoemacs-map--hashkey ergoemacs--start-emacs-state-2))) - ergoemacs-theme--svg-prefix file-name) ergoemacs-theme--svg-list) + ".svg") file-dir)) + (push (list lay + ergoemacs-theme--svg-prefix file-name) ergoemacs-theme--svg-list) (ergoemacs :spinner '("%s→%s" "%s->%s") (ergoemacs-key-description ergoemacs-theme--svg-prefix) file-name) (with-temp-file file-name (dolist (w ergoemacs-theme--svg) diff --git a/ergoemacs-themes.el b/ergoemacs-themes.el index 04231fc..4df9a04 100644 --- a/ergoemacs-themes.el +++ b/ergoemacs-themes.el @@ -378,7 +378,9 @@ These keys do not depend on the layout." (define-key keymap (kbd "C-S-t") 'ergoemacs-open-last-closed) (define-key keymap (kbd "C-x <ergoemacs-timeout>") 'ergoemacs-cut-line-or-region) - (define-key keymap (kbd "C-c <ergoemacs-timeout>") 'ergoemacs-copy-line-or-region)) + (define-key keymap (kbd "C-c <ergoemacs-timeout>") 'ergoemacs-copy-line-or-region) + + (define-key keymap (kbd "C-h '") 'ergoemacs-describe-current-theme)) (defun ergoemacs-set-move-char (keymap) "Movement by Characters & Set Mark for KEYMAP." @@ -1277,7 +1279,6 @@ In a terminal, this can be either arrow keys (e.g. meta+O A == <up>) or regular (ergoemacs-set-standard-vars) (ergoemacs-set-standard-fixed ergoemacs-override-keymap) - (dolist (map (list ergoemacs-override-keymap ergoemacs-mode-term-raw-keymap)) (ergoemacs-set-move-char map) (ergoemacs-set-move-buffer-reduction map) diff --git a/kbd-ergo.svg b/kbd-ergo.svg index 8f0ab67..be53823 100644 --- a/kbd-ergo.svg +++ b/kbd-ergo.svg @@ -4396,18 +4396,6 @@ x="65.173775" y="288.59943">C17</tspan></text> <text - xml:space="preserve" - style="font-size:11.85218238999999940px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#008080;fill-opacity:1;stroke:none;font-family:Sans;-inkscape-font-specification:Helvetica" - x="65.173775" - y="300.4516" - id="text3505-9-5-9-1" - sodipodi:linespacing="125%" - transform="scale(0.98217521,1.0181483)"><tspan - sodipodi:role="line" - id="tspan3507-09-0-2-7" - x="65.173775" - y="300.4516">A17</tspan></text> - <text sodipodi:linespacing="125%" style="font-size:19.75363731px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Helvetica;-inkscape-font-specification:Helvetica Bold" xml:space="preserve" @@ -4468,18 +4456,6 @@ x="157.12979" y="288.33185">C18</tspan></text> <text - xml:space="preserve" - style="font-size:11.85218238999999940px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#008080;fill-opacity:1;stroke:none;font-family:Sans;-inkscape-font-specification:Helvetica" - x="157.12979" - y="300.18402" - id="text3505-0-8-00-7-4" - sodipodi:linespacing="125%" - transform="scale(0.98217521,1.0181483)"><tspan - sodipodi:role="line" - id="tspan3507-4-2-2-6-0" - x="157.12979" - y="300.18402">A18</tspan></text> - <text sodipodi:linespacing="125%" style="font-size:19.75363731px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Helvetica;-inkscape-font-specification:Helvetica Bold" xml:space="preserve" @@ -4540,18 +4516,6 @@ x="249.31731" y="288.3222">C19</tspan></text> <text - xml:space="preserve" - style="font-size:11.85218238999999940px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#008080;fill-opacity:1;stroke:none;font-family:Sans;-inkscape-font-specification:Helvetica" - x="249.31731" - y="300.17441" - id="text3505-2-2-5-1-9" - sodipodi:linespacing="125%" - transform="scale(0.98217521,1.0181483)"><tspan - sodipodi:role="line" - id="tspan3507-0-9-1-7-4" - x="249.31731" - y="300.17441">A19</tspan></text> - <text sodipodi:linespacing="125%" style="font-size:19.75363731px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Helvetica;-inkscape-font-specification:Helvetica Bold" xml:space="preserve" @@ -4612,18 +4576,6 @@ x="341.94461" y="288.33185">C20</tspan></text> <text - xml:space="preserve" - style="font-size:11.85218238999999940px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#008080;fill-opacity:1;stroke:none;font-family:Sans;-inkscape-font-specification:Helvetica" - x="341.94464" - y="300.18402" - id="text3505-0-3-6-8-8-8" - sodipodi:linespacing="125%" - transform="scale(0.98217521,1.0181483)"><tspan - sodipodi:role="line" - id="tspan3507-4-1-0-7-8-8" - x="341.94464" - y="300.18402">A20</tspan></text> - <text sodipodi:linespacing="125%" style="font-size:19.75363731px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Helvetica;-inkscape-font-specification:Helvetica Bold" xml:space="preserve" @@ -4684,18 +4636,6 @@ x="434.23056" y="288.72964">C21</tspan></text> <text - xml:space="preserve" - style="font-size:11.85218238999999940px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#008080;fill-opacity:1;stroke:none;font-family:Sans;-inkscape-font-specification:Helvetica" - x="434.23056" - y="300.58185" - id="text3505-08-1-32-7-2" - sodipodi:linespacing="125%" - transform="scale(0.98217521,1.0181483)"><tspan - sodipodi:role="line" - id="tspan3507-9-6-5-7-4" - x="434.23056" - y="300.58185">A21</tspan></text> - <text sodipodi:linespacing="125%" style="font-size:19.75363731px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Helvetica;-inkscape-font-specification:Helvetica Bold" xml:space="preserve" @@ -4756,18 +4696,6 @@ x="526.55408" y="288.72964">C22</tspan></text> <text - xml:space="preserve" - style="font-size:11.85218238999999940px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#008080;fill-opacity:1;stroke:none;font-family:Sans;-inkscape-font-specification:Helvetica" - x="526.55408" - y="300.58185" - id="text3505-0-5-2-3-7-5" - sodipodi:linespacing="125%" - transform="scale(0.98217521,1.0181483)"><tspan - sodipodi:role="line" - id="tspan3507-4-3-0-8-7-5" - x="526.55408" - y="300.58185">A22</tspan></text> - <text sodipodi:linespacing="125%" style="font-size:19.75363731px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Helvetica;-inkscape-font-specification:Helvetica Bold" xml:space="preserve" @@ -4828,18 +4756,6 @@ x="618.57953" y="288.64575">C23</tspan></text> <text - xml:space="preserve" - style="font-size:11.85218238999999940px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#008080;fill-opacity:1;stroke:none;font-family:Sans;-inkscape-font-specification:Helvetica" - x="618.57953" - y="300.49792" - id="text3505-2-6-4-0-9-1" - sodipodi:linespacing="125%" - transform="scale(0.98217521,1.0181483)"><tspan - sodipodi:role="line" - id="tspan3507-0-4-48-7-9-7" - x="618.57953" - y="300.49792">A23</tspan></text> - <text sodipodi:linespacing="125%" style="font-size:19.75363731px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Helvetica;-inkscape-font-specification:Helvetica Bold" xml:space="preserve" @@ -4900,18 +4816,6 @@ x="710.68317" y="288.72964">C24</tspan></text> <text - xml:space="preserve" - style="font-size:11.85218238999999940px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#008080;fill-opacity:1;stroke:none;font-family:Sans;-inkscape-font-specification:Helvetica" - x="710.68317" - y="300.58185" - id="text3505-0-3-7-4-8-5-1" - sodipodi:linespacing="125%" - transform="scale(0.98217521,1.0181483)"><tspan - sodipodi:role="line" - id="tspan3507-4-1-3-7-4-6-1" - x="710.68317" - y="300.58185">A24</tspan></text> - <text sodipodi:linespacing="125%" style="font-size:19.75363731px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Helvetica;-inkscape-font-specification:Helvetica Bold" xml:space="preserve" @@ -4972,18 +4876,6 @@ x="803.10217" y="288.33185">C25</tspan></text> <text - xml:space="preserve" - style="font-size:11.85218238999999940px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#008080;fill-opacity:1;stroke:none;font-family:Sans;-inkscape-font-specification:Helvetica" - x="803.10217" - y="300.18402" - id="text3505-0-5-0-1-2-6-5" - sodipodi:linespacing="125%" - transform="scale(0.98217521,1.0181483)"><tspan - sodipodi:role="line" - id="tspan3507-4-3-9-4-0-9-2" - x="803.10217" - y="300.18402">A25</tspan></text> - <text sodipodi:linespacing="125%" style="font-size:19.75363731px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Helvetica;-inkscape-font-specification:Helvetica Bold" xml:space="preserve" @@ -5044,18 +4936,6 @@ x="895.84216" y="288.64575">C26</tspan></text> <text - xml:space="preserve" - style="font-size:11.85218238999999940px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#008080;fill-opacity:1;stroke:none;font-family:Sans;-inkscape-font-specification:Helvetica" - x="895.84216" - y="300.49792" - id="text3505-2-6-2-4-99-4-7" - sodipodi:linespacing="125%" - transform="scale(0.98217521,1.0181483)"><tspan - sodipodi:role="line" - id="tspan3507-0-4-4-4-6-6-6" - x="895.84216" - y="300.49792">A26</tspan></text> - <text sodipodi:linespacing="125%" style="font-size:19.75363731px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Helvetica;-inkscape-font-specification:Helvetica Bold" xml:space="preserve" @@ -5116,18 +4996,6 @@ x="987.45117" y="288.72964">C27</tspan></text> <text - xml:space="preserve" - style="font-size:11.85218238999999940px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#008080;fill-opacity:1;stroke:none;font-family:Sans;-inkscape-font-specification:Helvetica" - x="987.45117" - y="300.58185" - id="text3505-0-3-7-6-9-5-0-14" - sodipodi:linespacing="125%" - transform="scale(0.98217521,1.0181483)"><tspan - sodipodi:role="line" - id="tspan3507-4-1-3-5-4-2-7-23" - x="987.45117" - y="300.58185">A27</tspan></text> - <text sodipodi:linespacing="125%" style="font-size:19.75363731px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Helvetica;-inkscape-font-specification:Helvetica Bold" xml:space="preserve" @@ -5188,18 +5056,6 @@ x="1079.5173" y="288.64575">C28</tspan></text> <text - xml:space="preserve" - style="font-size:11.85218238999999940px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#008080;fill-opacity:1;stroke:none;font-family:Sans;-inkscape-font-specification:Helvetica" - x="1079.5173" - y="300.49792" - id="text3505-0-3-7-6-9-5-0-1-2" - sodipodi:linespacing="125%" - transform="scale(0.98217521,1.0181483)"><tspan - sodipodi:role="line" - id="tspan3507-4-1-3-5-4-2-7-2-2" - x="1079.5173" - y="300.49792">A28</tspan></text> - <text sodipodi:linespacing="125%" style="font-size:19.75363731px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Helvetica;-inkscape-font-specification:Helvetica Bold" xml:space="preserve" @@ -5260,18 +5116,6 @@ x="91.471497" y="384.13593">C32</tspan></text> <text - xml:space="preserve" - style="font-size:11.85218238999999940px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#008080;fill-opacity:1;stroke:none;font-family:Sans;-inkscape-font-specification:Helvetica" - x="91.471497" - y="395.98813" - id="text3505-9-9-8-3-1" - sodipodi:linespacing="125%" - transform="scale(0.98217521,1.0181483)"><tspan - sodipodi:role="line" - id="tspan3507-09-3-8-0-6" - x="91.471497" - y="395.98813">A32</tspan></text> - <text sodipodi:linespacing="125%" style="font-size:19.75363731px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Helvetica;-inkscape-font-specification:Helvetica Bold" xml:space="preserve" @@ -5333,18 +5177,6 @@ y="383.82208">C33</tspan></text> <text xml:space="preserve" - style="font-size:11.85218238999999940px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#008080;fill-opacity:1;stroke:none;font-family:Sans;-inkscape-font-specification:Helvetica" - x="183.44896" - y="395.67426" - id="text3505-0-8-0-2-2-8" - sodipodi:linespacing="125%" - transform="scale(0.98217521,1.0181483)"><tspan - sodipodi:role="line" - id="tspan3507-4-2-8-3-8-5" - x="183.44896" - y="395.67426">A33</tspan></text> - <text - xml:space="preserve" style="font-size:11.85218239px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000080;fill-opacity:1;stroke:none;font-family:Sans;-inkscape-font-specification:Helvetica" x="275.52182" y="360.11771" @@ -5392,18 +5224,6 @@ x="275.52182" y="383.82208">C34</tspan></text> <text - xml:space="preserve" - style="font-size:11.85218238999999940px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#008080;fill-opacity:1;stroke:none;font-family:Sans;-inkscape-font-specification:Helvetica" - x="275.52182" - y="395.67426" - id="text3505-2-2-7-01-6-7" - sodipodi:linespacing="125%" - transform="scale(0.98217521,1.0181483)"><tspan - sodipodi:role="line" - id="tspan3507-0-9-3-09-6-6" - x="275.52182" - y="395.67426">A34</tspan></text> - <text sodipodi:linespacing="125%" style="font-size:19.75363731px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Helvetica;-inkscape-font-specification:Helvetica Bold" xml:space="preserve" @@ -5476,18 +5296,6 @@ x="368.06351" y="383.82208">C35</tspan></text> <text - xml:space="preserve" - style="font-size:11.85218238999999940px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#008080;fill-opacity:1;stroke:none;font-family:Sans;-inkscape-font-specification:Helvetica" - x="368.06351" - y="395.67426" - id="text3505-0-3-6-1-6-7-1" - sodipodi:linespacing="125%" - transform="scale(0.98217521,1.0181483)"><tspan - sodipodi:role="line" - id="tspan3507-4-1-0-8-3-2-8" - x="368.06351" - y="395.67426">A35</tspan></text> - <text sodipodi:linespacing="125%" style="font-size:19.75363731px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Helvetica;-inkscape-font-specification:Helvetica Bold" xml:space="preserve" @@ -5549,18 +5357,6 @@ y="384.13593">C36</tspan></text> <text xml:space="preserve" - style="font-size:11.85218238999999940px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#008080;fill-opacity:1;stroke:none;font-family:Sans;-inkscape-font-specification:Helvetica" - x="460.09012" - y="395.98813" - id="text3505-08-1-3-38-7-9" - sodipodi:linespacing="125%" - transform="scale(0.98217521,1.0181483)"><tspan - sodipodi:role="line" - id="tspan3507-9-6-4-3-8-2" - x="460.09012" - y="395.98813">A36</tspan></text> - <text - xml:space="preserve" style="font-size:11.85218239px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000080;fill-opacity:1;stroke:none;font-family:Sans;-inkscape-font-specification:Helvetica" x="552.53925" y="360.43158" @@ -5620,18 +5416,6 @@ x="552.53925" y="384.13593">C37</tspan></text> <text - xml:space="preserve" - style="font-size:11.85218238999999940px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#008080;fill-opacity:1;stroke:none;font-family:Sans;-inkscape-font-specification:Helvetica" - x="552.53925" - y="395.98813" - id="text3505-0-5-2-6-73-9-7" - sodipodi:linespacing="125%" - transform="scale(0.98217521,1.0181483)"><tspan - sodipodi:role="line" - id="tspan3507-4-3-0-0-8-6-9" - x="552.53925" - y="395.98813">A37</tspan></text> - <text sodipodi:linespacing="125%" style="font-size:19.75363731px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Helvetica;-inkscape-font-specification:Helvetica Bold" xml:space="preserve" @@ -5692,18 +5476,6 @@ x="644.62085" y="384.13593">C38</tspan></text> <text - xml:space="preserve" - style="font-size:11.85218238999999940px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#008080;fill-opacity:1;stroke:none;font-family:Sans;-inkscape-font-specification:Helvetica" - x="644.62085" - y="395.98813" - id="text3505-2-6-4-5-7-5-5" - sodipodi:linespacing="125%" - transform="scale(0.98217521,1.0181483)"><tspan - sodipodi:role="line" - id="tspan3507-0-4-48-3-0-0-4" - x="644.62085" - y="395.98813">A38</tspan></text> - <text sodipodi:linespacing="125%" style="font-size:19.75363731px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Helvetica;-inkscape-font-specification:Helvetica Bold" xml:space="preserve" @@ -5764,18 +5536,6 @@ x="736.91656" y="384.13593">C39</tspan></text> <text - xml:space="preserve" - style="font-size:11.85218238999999940px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#008080;fill-opacity:1;stroke:none;font-family:Sans;-inkscape-font-specification:Helvetica" - x="736.91656" - y="395.98813" - id="text3505-0-3-7-4-7-15-6-3" - sodipodi:linespacing="125%" - transform="scale(0.98217521,1.0181483)"><tspan - sodipodi:role="line" - id="tspan3507-4-1-3-7-7-9-7-1" - x="736.91656" - y="395.98813">A39</tspan></text> - <text sodipodi:linespacing="125%" style="font-size:19.75363731px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Helvetica;-inkscape-font-specification:Helvetica Bold" xml:space="preserve" @@ -5836,18 +5596,6 @@ x="825.60974" y="383.82208">C40</tspan></text> <text - xml:space="preserve" - style="font-size:11.85218238999999940px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#008080;fill-opacity:1;stroke:none;font-family:Sans;-inkscape-font-specification:Helvetica" - x="825.60974" - y="395.67426" - id="text3505-0-5-0-1-5-6-8-2" - sodipodi:linespacing="125%" - transform="scale(0.98217521,1.0181483)"><tspan - sodipodi:role="line" - id="tspan3507-4-3-9-4-7-7-3-3" - x="825.60974" - y="395.67426">A40</tspan></text> - <text sodipodi:linespacing="125%" style="font-size:19.75363731px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Helvetica;-inkscape-font-specification:Helvetica Bold" xml:space="preserve" @@ -5908,18 +5656,6 @@ x="918.68652" y="384.08963">C41</tspan></text> <text - xml:space="preserve" - style="font-size:11.85218238999999940px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#008080;fill-opacity:1;stroke:none;font-family:Sans;-inkscape-font-specification:Helvetica" - x="918.68652" - y="395.94183" - id="text3505-2-6-2-4-9-6-8-3" - sodipodi:linespacing="125%" - transform="scale(0.98217521,1.0181483)"><tspan - sodipodi:role="line" - id="tspan3507-0-4-4-4-2-3-5-4" - x="918.68652" - y="395.94183">A41</tspan></text> - <text sodipodi:linespacing="125%" style="font-size:19.75363731px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Helvetica;-inkscape-font-specification:Helvetica Bold" xml:space="preserve" @@ -5980,18 +5716,6 @@ x="1010.2474" y="384.21985">C42</tspan></text> <text - xml:space="preserve" - style="font-size:11.85218238999999940px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#008080;fill-opacity:1;stroke:none;font-family:Sans;-inkscape-font-specification:Helvetica" - x="1010.2474" - y="396.07202" - id="text3505-0-3-7-6-9-6-2-7-1" - sodipodi:linespacing="125%" - transform="scale(0.98217521,1.0181483)"><tspan - sodipodi:role="line" - id="tspan3507-4-1-3-5-4-3-0-7-1" - x="1010.2474" - y="396.07202">A42</tspan></text> - <text sodipodi:linespacing="125%" style="font-size:19.75363731px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Helvetica;-inkscape-font-specification:Helvetica Bold" xml:space="preserve" @@ -6052,18 +5776,6 @@ x="1102.3351" y="384.13593">C43</tspan></text> <text - xml:space="preserve" - style="font-size:11.85218238999999940px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#008080;fill-opacity:1;stroke:none;font-family:Sans;-inkscape-font-specification:Helvetica" - x="1102.3351" - y="395.98813" - id="text3505-0-3-7-6-9-6-2-7-4-3" - sodipodi:linespacing="125%" - transform="scale(0.98217521,1.0181483)"><tspan - sodipodi:role="line" - id="tspan3507-4-1-3-5-4-3-0-7-7-8" - x="1102.3351" - y="395.98813">A43</tspan></text> - <text sodipodi:linespacing="125%" style="font-size:19.75363731px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Helvetica;-inkscape-font-specification:Helvetica Bold" xml:space="preserve" @@ -6124,18 +5836,6 @@ x="50.089474" y="480.91003">C46</tspan></text> <text - xml:space="preserve" - style="font-size:11.85218238999999940px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#008080;fill-opacity:1;stroke:none;font-family:Sans;-inkscape-font-specification:Helvetica" - x="50.089474" - y="492.76221" - id="text3505-9-9-7-6-01-7" - sodipodi:linespacing="125%" - transform="scale(0.98217521,1.0181483)"><tspan - sodipodi:role="line" - id="tspan3507-09-3-5-3-1-4" - x="50.089474" - y="492.76221">A46</tspan></text> - <text sodipodi:linespacing="125%" style="font-size:19.75363731px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Helvetica;-inkscape-font-specification:Helvetica Bold" xml:space="preserve" @@ -6196,18 +5896,6 @@ x="142.23006" y="481.54721">C47</tspan></text> <text - xml:space="preserve" - style="font-size:11.85218238999999940px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#008080;fill-opacity:1;stroke:none;font-family:Sans;-inkscape-font-specification:Helvetica" - x="142.23006" - y="493.39938" - id="text3505-0-8-0-1-8-8-2" - sodipodi:linespacing="125%" - transform="scale(0.98217521,1.0181483)"><tspan - sodipodi:role="line" - id="tspan3507-4-2-8-9-6-7-7" - x="142.23006" - y="493.39938">A47</tspan></text> - <text sodipodi:linespacing="125%" style="font-size:19.75363731px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Helvetica;-inkscape-font-specification:Helvetica Bold" xml:space="preserve" @@ -6268,18 +5956,6 @@ x="234.12468" y="480.6058">C48</tspan></text> <text - xml:space="preserve" - style="font-size:11.85218238999999940px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#008080;fill-opacity:1;stroke:none;font-family:Sans;-inkscape-font-specification:Helvetica" - x="234.12468" - y="492.45801" - id="text3505-2-2-7-0-7-6-7" - sodipodi:linespacing="125%" - transform="scale(0.98217521,1.0181483)"><tspan - sodipodi:role="line" - id="tspan3507-0-9-3-0-4-4-9" - x="234.12468" - y="492.45801">A48</tspan></text> - <text sodipodi:linespacing="125%" style="font-size:19.75363731px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Helvetica;-inkscape-font-specification:Helvetica Bold" xml:space="preserve" @@ -6340,18 +6016,6 @@ x="326.29565" y="480.59616">C49</tspan></text> <text - xml:space="preserve" - style="font-size:11.85218238999999940px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#008080;fill-opacity:1;stroke:none;font-family:Sans;-inkscape-font-specification:Helvetica" - x="326.29565" - y="492.44836" - id="text3505-0-3-6-1-5-6-8-3" - sodipodi:linespacing="125%" - transform="scale(0.98217521,1.0181483)"><tspan - sodipodi:role="line" - id="tspan3507-4-1-0-8-9-8-3-1" - x="326.29565" - y="492.44836">A49</tspan></text> - <text sodipodi:linespacing="125%" style="font-size:19.75363731px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Helvetica;-inkscape-font-specification:Helvetica Bold" xml:space="preserve" @@ -6413,18 +6077,6 @@ y="480.91968">C50</tspan></text> <text xml:space="preserve" - style="font-size:11.85218238999999940px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#008080;fill-opacity:1;stroke:none;font-family:Sans;-inkscape-font-specification:Helvetica" - x="417.9487" - y="492.77185" - id="text3505-08-1-3-3-6-5-9" - sodipodi:linespacing="125%" - transform="scale(0.98217521,1.0181483)"><tspan - sodipodi:role="line" - id="tspan3507-9-6-4-8-7-3-8" - x="417.9487" - y="492.77185">A50</tspan></text> - <text - xml:space="preserve" style="font-size:11.85218239px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000080;fill-opacity:1;stroke:none;font-family:Sans;-inkscape-font-specification:Helvetica" x="510.23541" y="457.08514" @@ -6484,18 +6136,6 @@ y="431.6362" x="510.34375">T51</tspan></text> <text - xml:space="preserve" - style="font-size:11.85218238999999940px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#008080;fill-opacity:1;stroke:none;font-family:Sans;-inkscape-font-specification:Helvetica" - x="510.23541" - y="492.64166" - id="text3505-0-5-2-6-7-6-4-6" - sodipodi:linespacing="125%" - transform="scale(0.98217521,1.0181483)"><tspan - sodipodi:role="line" - id="tspan3507-4-3-0-0-3-9-5-5" - x="510.23541" - y="492.64166">A51</tspan></text> - <text sodipodi:linespacing="125%" style="font-size:21.10373497px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Helvetica;-inkscape-font-specification:Helvetica Bold" xml:space="preserve" @@ -6556,18 +6196,6 @@ x="602.29791" y="480.84637">C52</tspan></text> <text - xml:space="preserve" - style="font-size:11.85218238999999940px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#008080;fill-opacity:1;stroke:none;font-family:Sans;-inkscape-font-specification:Helvetica" - x="602.29791" - y="492.69855" - id="text3505-2-6-4-5-3-0-3-0" - sodipodi:linespacing="125%" - transform="scale(0.98217521,1.0181483)"><tspan - sodipodi:role="line" - id="tspan3507-0-4-48-3-1-7-4-2" - x="602.29791" - y="492.69855">A52</tspan></text> - <text sodipodi:linespacing="125%" style="font-size:19.75363731px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Helvetica;-inkscape-font-specification:Helvetica Bold" xml:space="preserve" @@ -6628,18 +6256,6 @@ x="694.25189" y="480.91968">C53</tspan></text> <text - xml:space="preserve" - style="font-size:11.85218238999999940px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#008080;fill-opacity:1;stroke:none;font-family:Sans;-inkscape-font-specification:Helvetica" - x="694.25189" - y="492.77185" - id="text3505-0-3-7-4-7-1-3-6-8" - sodipodi:linespacing="125%" - transform="scale(0.98217521,1.0181483)"><tspan - sodipodi:role="line" - id="tspan3507-4-1-3-7-7-8-0-0-6" - x="694.25189" - y="492.77185">A53</tspan></text> - <text sodipodi:linespacing="125%" style="font-size:19.75363731px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Helvetica;-inkscape-font-specification:Helvetica Bold" xml:space="preserve" @@ -6701,18 +6317,6 @@ y="480.47562">C54</tspan></text> <text xml:space="preserve" - style="font-size:11.85218238999999940px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#008080;fill-opacity:1;stroke:none;font-family:Sans;-inkscape-font-specification:Helvetica" - x="786.16534" - y="492.32779" - id="text3505-0-5-0-1-5-5-0-4-0" - sodipodi:linespacing="125%" - transform="scale(0.98217521,1.0181483)"><tspan - sodipodi:role="line" - id="tspan3507-4-3-9-4-7-9-1-8-2" - x="786.16534" - y="492.32779">A54</tspan></text> - <text - xml:space="preserve" style="font-size:11.85218239px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#db3027;fill-opacity:1;stroke:none;font-family:Sans;-inkscape-font-specification:Helvetica" x="875.46326" y="445.23294" @@ -6772,18 +6376,6 @@ x="880.09393" y="480.78946">C55</tspan></text> <text - xml:space="preserve" - style="font-size:11.85218238999999940px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#008080;fill-opacity:1;stroke:none;font-family:Sans;-inkscape-font-specification:Helvetica" - x="880.09393" - y="492.64166" - id="text3505-2-6-2-4-9-9-9-5-4" - sodipodi:linespacing="125%" - transform="scale(0.98217521,1.0181483)"><tspan - sodipodi:role="line" - id="tspan3507-0-4-4-4-2-2-0-1-8" - x="880.09393" - y="492.64166">A55</tspan></text> - <text sodipodi:linespacing="125%" style="font-size:19.75363731px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Helvetica;-inkscape-font-specification:Helvetica Bold" xml:space="preserve" @@ -6844,18 +6436,6 @@ x="970.39581" y="480.91003">C56</tspan></text> <text - xml:space="preserve" - style="font-size:11.85218238999999940px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#008080;fill-opacity:1;stroke:none;font-family:Sans;-inkscape-font-specification:Helvetica" - x="970.39581" - y="492.76221" - id="text3505-0-3-7-6-9-6-3-4-2-6" - sodipodi:linespacing="125%" - transform="scale(0.98217521,1.0181483)"><tspan - sodipodi:role="line" - id="tspan3507-4-1-3-5-4-3-8-4-7-5" - x="970.39581" - y="492.76221">A56</tspan></text> - <text sodipodi:linespacing="125%" style="font-size:19.75363731px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Helvetica;-inkscape-font-specification:Helvetica Bold" xml:space="preserve" @@ -6917,18 +6497,6 @@ y="480.78946">C57</tspan></text> <text xml:space="preserve" - style="font-size:11.85218238999999940px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#008080;fill-opacity:1;stroke:none;font-family:Sans;-inkscape-font-specification:Helvetica" - x="1062.5645" - y="492.64166" - id="text3505-0-3-7-6-9-6-3-4-2-4-0" - sodipodi:linespacing="125%" - transform="scale(0.98217521,1.0181483)"><tspan - sodipodi:role="line" - id="tspan3507-4-1-3-5-4-3-8-4-7-7-9" - x="1062.5645" - y="492.64166">A57</tspan></text> - <text - xml:space="preserve" style="font-size:11.85218239px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000080;fill-opacity:1;stroke:none;font-family:Sans;-inkscape-font-specification:Helvetica" x="818.71619" y="535.98798" @@ -6977,31 +6545,6 @@ y="547.82562">CS</tspan></text> <text xml:space="preserve" - style="font-size:11.85218238999999940px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#008080;fill-opacity:1;stroke:none;font-family:Sans;-inkscape-font-specification:Helvetica" - x="818.71619" - y="573.65869" - id="text3505-9-9-7-6-0-6-6" - sodipodi:linespacing="125%" - transform="scale(0.98217521,1.0181483)"><tspan - sodipodi:role="line" - id="tspan3507-09-3-5-3-5-7-1" - x="818.71619" - y="573.65869">AA</tspan></text> - <text - xml:space="preserve" - style="font-size:11.85218239px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Sans;-inkscape-font-specification:Helvetica" - x="56.430885" - y="528.07928" - id="text3505-9-9-7-6-0-4-5" - sodipodi:linespacing="125%" - transform="scale(0.98217521,1.0181483)"><tspan - sodipodi:role="line" - id="tspan3507-09-3-5-3-5-6-82" - x="56.430885" - y="528.07928" - style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;fill:#000000;font-family:Sans;-inkscape-font-specification:Helvetica Bold">⌨ = Emacs Command Sequence </tspan></text> - <text - xml:space="preserve" style="font-size:11.85218239px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000080;fill-opacity:1;stroke:none;font-family:Sans;-inkscape-font-specification:Helvetica" x="21.28425" y="171.75562" @@ -7050,18 +6593,6 @@ y="195.45999">C2</tspan></text> <text xml:space="preserve" - style="font-size:11.85218238999999940px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#008080;fill-opacity:1;stroke:none;font-family:Sans;-inkscape-font-specification:Helvetica" - x="21.28425" - y="207.31216" - id="text3505-6-7-2" - sodipodi:linespacing="125%" - transform="scale(0.98217521,1.0181483)"><tspan - sodipodi:role="line" - id="tspan3507-07-2-2" - x="21.28425" - y="207.31216">A2</tspan></text> - <text - xml:space="preserve" style="font-size:11.85218239px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000080;fill-opacity:1;stroke:none;font-family:Sans;-inkscape-font-specification:Helvetica" x="113.22298" y="171.67171" @@ -7110,18 +6641,6 @@ y="195.37607">C3</tspan></text> <text xml:space="preserve" - style="font-size:11.85218238999999940px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#008080;fill-opacity:1;stroke:none;font-family:Sans;-inkscape-font-specification:Helvetica" - x="113.22298" - y="207.22826" - id="text3505-0-87-1-1" - sodipodi:linespacing="125%" - transform="scale(0.98217521,1.0181483)"><tspan - sodipodi:role="line" - id="tspan3507-4-6-3-6" - x="113.22298" - y="207.22826">A3</tspan></text> - <text - xml:space="preserve" style="font-size:11.85218239px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000080;fill-opacity:1;stroke:none;font-family:Sans;-inkscape-font-specification:Helvetica" x="205.1154" y="171.62541" @@ -7170,18 +6689,6 @@ y="195.32977">C4</tspan></text> <text xml:space="preserve" - style="font-size:11.85218238999999940px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#008080;fill-opacity:1;stroke:none;font-family:Sans;-inkscape-font-specification:Helvetica" - x="205.1154" - y="207.18196" - id="text3505-2-8-0-8" - sodipodi:linespacing="125%" - transform="scale(0.98217521,1.0181483)"><tspan - sodipodi:role="line" - id="tspan3507-0-2-7-5" - x="205.1154" - y="207.18196">A4</tspan></text> - <text - xml:space="preserve" style="font-size:11.85218239px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000080;fill-opacity:1;stroke:none;font-family:Sans;-inkscape-font-specification:Helvetica" x="297.66177" y="171.85536" @@ -7230,18 +6737,6 @@ y="195.55972">C5</tspan></text> <text xml:space="preserve" - style="font-size:11.85218238999999940px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#008080;fill-opacity:1;stroke:none;font-family:Sans;-inkscape-font-specification:Helvetica" - x="297.66177" - y="207.41191" - id="text3505-0-3-72-3-7" - sodipodi:linespacing="125%" - transform="scale(0.98217521,1.0181483)"><tspan - sodipodi:role="line" - id="tspan3507-4-1-2-5-6" - x="297.66177" - y="207.41191">A5</tspan></text> - <text - xml:space="preserve" style="font-size:11.85218239px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000080;fill-opacity:1;stroke:none;font-family:Sans;-inkscape-font-specification:Helvetica" x="389.54843" y="171.97592" @@ -7290,18 +6785,6 @@ y="195.68028">C6</tspan></text> <text xml:space="preserve" - style="font-size:11.85218238999999940px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#008080;fill-opacity:1;stroke:none;font-family:Sans;-inkscape-font-specification:Helvetica" - x="389.54843" - y="207.53247" - id="text3505-08-7-3-1" - sodipodi:linespacing="125%" - transform="scale(0.98217521,1.0181483)"><tspan - sodipodi:role="line" - id="tspan3507-9-8-0-8" - x="389.54843" - y="207.53247">A6</tspan></text> - <text - xml:space="preserve" style="font-size:11.85218239px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000080;fill-opacity:1;stroke:none;font-family:Sans;-inkscape-font-specification:Helvetica" x="481.99063" y="171.93927" @@ -7350,18 +6833,6 @@ y="195.64363">C7</tspan></text> <text xml:space="preserve" - style="font-size:11.85218238999999940px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#008080;fill-opacity:1;stroke:none;font-family:Sans;-inkscape-font-specification:Helvetica" - x="481.99063" - y="207.49582" - id="text3505-0-5-01-1-9" - sodipodi:linespacing="125%" - transform="scale(0.98217521,1.0181483)"><tspan - sodipodi:role="line" - id="tspan3507-4-3-4-6-2" - x="481.99063" - y="207.49582">A7</tspan></text> - <text - xml:space="preserve" style="font-size:11.85218239px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000080;fill-opacity:1;stroke:none;font-family:Sans;-inkscape-font-specification:Helvetica" x="573.96411" y="171.98557" @@ -7410,18 +6881,6 @@ y="195.68994">C8</tspan></text> <text xml:space="preserve" - style="font-size:11.85218238999999940px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#008080;fill-opacity:1;stroke:none;font-family:Sans;-inkscape-font-specification:Helvetica" - x="573.96411" - y="207.54211" - id="text3505-2-6-3-2-7" - sodipodi:linespacing="125%" - transform="scale(0.98217521,1.0181483)"><tspan - sodipodi:role="line" - id="tspan3507-0-4-1-4-9" - x="573.96411" - y="207.54211">A8</tspan></text> - <text - xml:space="preserve" style="font-size:11.85218239px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000080;fill-opacity:1;stroke:none;font-family:Sans;-inkscape-font-specification:Helvetica" x="666.16327" y="171.66206" @@ -7470,18 +6929,6 @@ y="195.36642">C9</tspan></text> <text xml:space="preserve" - style="font-size:11.85218238999999940px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#008080;fill-opacity:1;stroke:none;font-family:Sans;-inkscape-font-specification:Helvetica" - x="666.16327" - y="207.21861" - id="text3505-0-3-7-3-6-5" - sodipodi:linespacing="125%" - transform="scale(0.98217521,1.0181483)"><tspan - sodipodi:role="line" - id="tspan3507-4-1-3-4-9-4" - x="666.16327" - y="207.21861">A9</tspan></text> - <text - xml:space="preserve" style="font-size:11.85218239px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000080;fill-opacity:1;stroke:none;font-family:Sans;-inkscape-font-specification:Helvetica" x="758.29297" y="171.98557" @@ -7530,18 +6977,6 @@ y="195.68994">C10</tspan></text> <text xml:space="preserve" - style="font-size:11.85218238999999940px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#008080;fill-opacity:1;stroke:none;font-family:Sans;-inkscape-font-specification:Helvetica" - x="758.29297" - y="207.54211" - id="text3505-0-5-0-4-0-3" - sodipodi:linespacing="125%" - transform="scale(0.98217521,1.0181483)"><tspan - sodipodi:role="line" - id="tspan3507-4-3-9-0-5-1" - x="758.29297" - y="207.54211">A10</tspan></text> - <text - xml:space="preserve" style="font-size:11.85218239px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000080;fill-opacity:1;stroke:none;font-family:Sans;-inkscape-font-specification:Helvetica" x="850.7757" y="171.93927" @@ -7590,18 +7025,6 @@ y="195.64363">C11</tspan></text> <text xml:space="preserve" - style="font-size:11.85218238999999940px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#008080;fill-opacity:1;stroke:none;font-family:Sans;-inkscape-font-specification:Helvetica" - x="850.7757" - y="207.49582" - id="text3505-2-6-2-5-8-2" - sodipodi:linespacing="125%" - transform="scale(0.98217521,1.0181483)"><tspan - sodipodi:role="line" - id="tspan3507-0-4-4-1-3-3" - x="850.7757" - y="207.49582">A11</tspan></text> - <text - xml:space="preserve" style="font-size:11.85218239px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000080;fill-opacity:1;stroke:none;font-family:Sans;-inkscape-font-specification:Helvetica" x="943.04425" y="172.06947" @@ -7650,18 +7073,6 @@ y="195.77385">C12</tspan></text> <text xml:space="preserve" - style="font-size:11.85218238999999940px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#008080;fill-opacity:1;stroke:none;font-family:Sans;-inkscape-font-specification:Helvetica" - x="943.04425" - y="207.62604" - id="text3505-0-3-7-6-0-1-3" - sodipodi:linespacing="125%" - transform="scale(0.98217521,1.0181483)"><tspan - sodipodi:role="line" - id="tspan3507-4-1-3-5-7-2-4" - x="943.04425" - y="207.62604">A12</tspan></text> - <text - xml:space="preserve" style="font-size:11.85218239px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000080;fill-opacity:1;stroke:none;font-family:Sans;-inkscape-font-specification:Helvetica" x="1034.9829" y="171.98557" @@ -7708,18 +7119,6 @@ id="tspan3507-4-1-3-5-7-2-7" x="1034.9829" y="195.68994">C13</tspan></text> - <text - xml:space="preserve" - style="font-size:11.85218238999999940px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#008080;fill-opacity:1;stroke:none;font-family:Sans;-inkscape-font-specification:Helvetica" - x="1034.9829" - y="207.54211" - id="text3505-0-3-7-6-0-1-5-1" - sodipodi:linespacing="125%" - transform="scale(0.98217521,1.0181483)"><tspan - sodipodi:role="line" - id="tspan3507-4-1-3-5-7-2-7-1" - x="1034.9829" - y="207.54211">A13</tspan></text> <rect style="color:#000000;fill:#828282;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.44599998;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" id="rect9876-8" @@ -7787,18 +7186,6 @@ x="298.52716" y="563.01031">CC-SPC</tspan></text> <text - xml:space="preserve" - style="font-size:11.85218238999999940px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#008080;fill-opacity:1;stroke:none;font-family:Sans;-inkscape-font-specification:Helvetica" - x="298.52716" - y="574.86255" - id="text3505-0-8-0-1-8-8-1-0" - sodipodi:linespacing="125%" - transform="scale(0.98217521,1.0181483)"><tspan - sodipodi:role="line" - id="tspan3507-4-2-8-9-6-7-0-0" - x="298.52716" - y="574.86255">AA-SPC</tspan></text> - <text sodipodi:linespacing="125%" style="font-size:19.75363731px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Helvetica;-inkscape-font-specification:Helvetica Bold" xml:space="preserve" @@ -8173,18 +7560,6 @@ x="38.279083">F1</tspan></text> <text xml:space="preserve" - style="font-size:11.85218238999999940px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:125%;letter-spacing:0px;word-spacing:0px;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;baseline-shift:baseline;color:#000000;fill:#008080;fill-opacity:1;fill-rule:nonzero;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-backgro [...] - x="39.090919" - y="104.60802" - id="text3505-6-3" - sodipodi:linespacing="125%" - transform="scale(0.98217519,1.0181483)"><tspan - sodipodi:role="line" - id="tspan3507-07-4" - x="39.090919" - y="104.60802">CCF1</tspan></text> - <text - xml:space="preserve" style="font-size:11.85218239px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#484537;fill-opacity:1;stroke:none;font-family:Sans;-inkscape-font-specification:Helvetica" x="39.090919" y="80.969749" @@ -8209,18 +7584,6 @@ x="130.55891">F2</tspan></text> <text xml:space="preserve" - style="font-size:11.85218238999999940px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:125%;letter-spacing:0px;word-spacing:0px;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;baseline-shift:baseline;color:#000000;fill:#008080;fill-opacity:1;fill-rule:nonzero;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-backgro [...] - x="131.02956" - y="104.52409" - id="text3505-0-87-9" - sodipodi:linespacing="125%" - transform="scale(0.98217519,1.0181483)"><tspan - sodipodi:role="line" - id="tspan3507-4-6-7" - x="131.02956" - y="104.52409">CCF2</tspan></text> - <text - xml:space="preserve" style="font-size:11.85218239px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#484537;fill-opacity:1;stroke:none;font-family:Sans;-inkscape-font-specification:Helvetica" x="131.02956" y="80.885826" @@ -8245,18 +7608,6 @@ x="222.79259">F3</tspan></text> <text xml:space="preserve" - style="font-size:11.85218238999999940px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:125%;letter-spacing:0px;word-spacing:0px;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;baseline-shift:baseline;color:#000000;fill:#008080;fill-opacity:1;fill-rule:nonzero;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-backgro [...] - x="222.92201" - y="104.47784" - id="text3505-2-8-1" - sodipodi:linespacing="125%" - transform="scale(0.98217519,1.0181483)"><tspan - sodipodi:role="line" - id="tspan3507-0-2-0" - x="222.92201" - y="104.47784">CCF3</tspan></text> - <text - xml:space="preserve" style="font-size:11.85218239px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#484537;fill-opacity:1;stroke:none;font-family:Sans;-inkscape-font-specification:Helvetica" x="222.92201" y="80.839569" @@ -8281,18 +7632,6 @@ x="315.68033">F4</tspan></text> <text xml:space="preserve" - style="font-size:11.85218238999999940px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:125%;letter-spacing:0px;word-spacing:0px;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;baseline-shift:baseline;color:#000000;fill:#008080;fill-opacity:1;fill-rule:nonzero;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-backgro [...] - x="315.46863" - y="104.70779" - id="text3505-0-3-72-0" - sodipodi:linespacing="125%" - transform="scale(0.98217519,1.0181483)"><tspan - sodipodi:role="line" - id="tspan3507-4-1-2-4" - x="315.46863" - y="104.70779">CCF4</tspan></text> - <text - xml:space="preserve" style="font-size:11.85218239px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Sans;-inkscape-font-specification:Helvetica" x="315.46863" y="81.069527" @@ -8317,18 +7656,6 @@ x="407.90802">F5</tspan></text> <text xml:space="preserve" - style="font-size:11.85218238999999940px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:125%;letter-spacing:0px;word-spacing:0px;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;baseline-shift:baseline;color:#000000;fill:#008080;fill-opacity:1;fill-rule:nonzero;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-backgro [...] - x="407.35529" - y="104.82835" - id="text3505-08-7-2" - sodipodi:linespacing="125%" - transform="scale(0.98217519,1.0181483)"><tspan - sodipodi:role="line" - id="tspan3507-9-8-06" - x="407.35529" - y="104.82835">CCF5</tspan></text> - <text - xml:space="preserve" style="font-size:11.85218239px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Sans;-inkscape-font-specification:Helvetica" x="407.35529" y="81.190086" @@ -8353,18 +7680,6 @@ x="500.69107">F6</tspan></text> <text xml:space="preserve" - style="font-size:11.85218238999999940px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:125%;letter-spacing:0px;word-spacing:0px;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;baseline-shift:baseline;color:#000000;fill:#008080;fill-opacity:1;fill-rule:nonzero;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-backgro [...] - x="499.79724" - y="104.79172" - id="text3505-0-5-01-5" - sodipodi:linespacing="125%" - transform="scale(0.98217519,1.0181483)"><tspan - sodipodi:role="line" - id="tspan3507-4-3-4-0" - x="499.79724" - y="104.79172">CCF6</tspan></text> - <text - xml:space="preserve" style="font-size:11.85218239px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Sans;-inkscape-font-specification:Helvetica" x="499.79724" y="81.153427" @@ -8389,18 +7704,6 @@ x="593.00549">F7</tspan></text> <text xml:space="preserve" - style="font-size:11.85218238999999940px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:125%;letter-spacing:0px;word-spacing:0px;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;baseline-shift:baseline;color:#000000;fill:#008080;fill-opacity:1;fill-rule:nonzero;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-backgro [...] - x="591.77051" - y="104.83797" - id="text3505-2-6-3-8" - sodipodi:linespacing="125%" - transform="scale(0.98217519,1.0181483)"><tspan - sodipodi:role="line" - id="tspan3507-0-4-1-48" - x="591.77051" - y="104.83797">CCF7</tspan></text> - <text - xml:space="preserve" style="font-size:11.85218239px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Sans;-inkscape-font-specification:Helvetica" x="591.77051" y="81.199707" @@ -8425,18 +7728,6 @@ x="685.54578">F8</tspan></text> <text xml:space="preserve" - style="font-size:11.85218238999999940px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:125%;letter-spacing:0px;word-spacing:0px;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;baseline-shift:baseline;color:#000000;fill:#008080;fill-opacity:1;fill-rule:nonzero;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-backgro [...] - x="683.96967" - y="104.51448" - id="text3505-0-3-7-3-8" - sodipodi:linespacing="125%" - transform="scale(0.98217519,1.0181483)"><tspan - sodipodi:role="line" - id="tspan3507-4-1-3-4-1" - x="683.96967" - y="104.51448">CCF8</tspan></text> - <text - xml:space="preserve" style="font-size:11.85218239px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Sans;-inkscape-font-specification:Helvetica" x="683.96967" y="80.876205" @@ -8461,18 +7752,6 @@ x="776.76123">F9</tspan></text> <text xml:space="preserve" - style="font-size:11.85218238999999940px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:125%;letter-spacing:0px;word-spacing:0px;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;baseline-shift:baseline;color:#000000;fill:#008080;fill-opacity:1;fill-rule:nonzero;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-backgro [...] - x="776.09937" - y="104.83797" - id="text3505-0-5-0-4-6" - sodipodi:linespacing="125%" - transform="scale(0.98217519,1.0181483)"><tspan - sodipodi:role="line" - id="tspan3507-4-3-9-0-55" - x="776.09937" - y="104.83797">CCF9</tspan></text> - <text - xml:space="preserve" style="font-size:11.85218239px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Sans;-inkscape-font-specification:Helvetica" x="776.09937" y="81.199707" @@ -8497,18 +7776,6 @@ x="870.84058">F10</tspan></text> <text xml:space="preserve" - style="font-size:11.85218238999999940px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:125%;letter-spacing:0px;word-spacing:0px;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;baseline-shift:baseline;color:#000000;fill:#008080;fill-opacity:1;fill-rule:nonzero;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-backgro [...] - x="868.58209" - y="104.79172" - id="text3505-2-6-2-5-6" - sodipodi:linespacing="125%" - transform="scale(0.98217519,1.0181483)"><tspan - sodipodi:role="line" - id="tspan3507-0-4-4-1-2" - x="868.58209" - y="104.79172">CCF10</tspan></text> - <text - xml:space="preserve" style="font-size:11.85218239px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Sans;-inkscape-font-specification:Helvetica" x="868.58209" y="81.153427" @@ -8533,18 +7800,6 @@ x="963.45038">F11</tspan></text> <text xml:space="preserve" - style="font-size:11.85218238999999940px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:125%;letter-spacing:0px;word-spacing:0px;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;baseline-shift:baseline;color:#000000;fill:#008080;fill-opacity:1;fill-rule:nonzero;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-backgro [...] - x="960.85059" - y="104.92187" - id="text3505-0-3-7-6-0-6" - sodipodi:linespacing="125%" - transform="scale(0.98217519,1.0181483)"><tspan - sodipodi:role="line" - id="tspan3507-4-1-3-5-7-25" - x="960.85059" - y="104.92187">CCF11</tspan></text> - <text - xml:space="preserve" style="font-size:11.85218239px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Sans;-inkscape-font-specification:Helvetica" x="960.85059" y="81.283577" @@ -8569,18 +7824,6 @@ x="1055.3901">F12</tspan></text> <text xml:space="preserve" - style="font-size:11.85218238999999940px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:125%;letter-spacing:0px;word-spacing:0px;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;baseline-shift:baseline;color:#000000;fill:#008080;fill-opacity:1;fill-rule:nonzero;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-backgro [...] - x="1052.7904" - y="104.83794" - id="text3505-0-3-7-6-0-0-9" - sodipodi:linespacing="125%" - transform="scale(0.98217519,1.0181483)"><tspan - sodipodi:role="line" - id="tspan3507-4-1-3-5-7-1-8" - x="1052.7904" - y="104.83794">CCF12</tspan></text> - <text - xml:space="preserve" style="font-size:11.85218239px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Sans;-inkscape-font-specification:Helvetica" x="1052.7904" y="81.199707"