diff options
66 files changed, 5426 insertions, 503 deletions
diff --git a/LICENSE.org b/LICENSE.org index df18b21..0c2a051 100644 --- a/LICENSE.org +++ b/LICENSE.org @@ -5,7 +5,7 @@ #+date: <2023-06-11 Sun> #+language: en -Copyright © 2023 Preston Pan +Copyright © 2024 Preston Pan Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the “Software”), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: @@ -5,20 +5,33 @@ #+language: en #+OPTIONS: broken-links:t #+date: <2023-06-26 Mon> +#+html_head: <link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png"> +#+html_head: <link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png"> +#+html_head: <link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png"> +#+html_head: <link rel="manifest" href="/site.webmanifest"> +#+html_head: <link rel="mask-icon" href="/safari-pinned-tab.svg" color="#5bbad5"> +#+html_head: <meta name="msapplication-TileColor" content="#da532c"> +#+html_head: <meta name="theme-color" content="#ffffff"> * About Me -Some might know me as ret2pop, some as Preston Pan, and -others as [[https://preston.nullring.xyz][LiCoO2]]. +** whoami? +[[https://preston.nullring.xyz][Preston Pan]]. Although, that is not really important for the enjoyment of ret2pop, and +it is certainly not the focus at all. Ret2pop is a separate entity, controlled only +by the will of Francois. Ret2pop is a relentlessly curious force willing to entertain +ideas that are unconventional and unorthodox; Preston Pan is the individual that tries +to live this out and fails in a somewhat cringy manner. +Some might know me as ret2pop, some as Preston Pan, and others as LiCoO2. ** Contact Here are all the methods you should use to contact me: *** IRC - ret2pop on libera.chat - Note: I will not always be online and I don't use a bouncer on this server. Email me to coordinate a time if you really need to reach me this way. -- LiCoO2 on [[https://andrei.rm-r.org/irc][the best irc server]]. *** Email - preston@nullring.xyz - ret2pop@gmail.com +*** Amateur Radio (In case the world ends) +My callsign is ~VE7PPN~. * Professional For now, you should consult [[https://preston.nullring.xyz/about/index.html][my other website]], but I will make diff --git a/android-chrome-192x192.png b/android-chrome-192x192.png Binary files differnew file mode 100644 index 0000000..653f43d --- /dev/null +++ b/android-chrome-192x192.png diff --git a/android-chrome-512x512.png b/android-chrome-512x512.png Binary files differnew file mode 100644 index 0000000..864b240 --- /dev/null +++ b/android-chrome-512x512.png diff --git a/apple-touch-icon.png b/apple-touch-icon.png Binary files differnew file mode 100644 index 0000000..1e3ed09 --- /dev/null +++ b/apple-touch-icon.png diff --git a/browserconfig.xml b/browserconfig.xml new file mode 100644 index 0000000..b3930d0 --- /dev/null +++ b/browserconfig.xml @@ -0,0 +1,9 @@ +<?xml version="1.0" encoding="utf-8"?> +<browserconfig> + <msapplication> + <tile> + <square150x150logo src="/mstile-150x150.png"/> + <TileColor>#da532c</TileColor> + </tile> + </msapplication> +</browserconfig> diff --git a/config/doom.org b/config/doom.org index 480c4c6..5e77b70 100644 --- a/config/doom.org +++ b/config/doom.org @@ -32,84 +32,92 @@ To display the battery percentage: #+begin_src emacs-lisp :tangle yes (display-battery-mode 1) #+end_src +** Transparency +Let's make emacs transparent. +#+begin_src emacs-lisp :tangle yes +(set-frame-parameter nil 'alpha-background 90) + +(add-to-list 'default-frame-alist '(alpha-background . 90)) +#+end_src ** EXWM First we load our packages: #+begin_src emacs-lisp :tangle yes -(use-package! exwm) -(use-package! exwm-config) -(exwm-config-example) +;; (use-package! exwm) +;; (use-package! exwm-config) +;; (exwm-config-example) #+end_src Now, we set our keybindings: #+begin_src emacs-lisp :tangle yes -(setq exwm-input-global-keys - `( - ([?\s-r] . exwm-reset) - ([?\s-w] . exwm-workspace-switch) - ,@(mapcar (lambda (i) - `(,(kbd (format "s-%d" i)) . - (lambda () - (interactive) - (exwm-workspace-switch-create ,i)))) - (number-sequence 0 9)) - ([?\s-&] . (lambda (command) - (interactive (list (read-shell-command "$ "))) - (start-process-shell-command command nil command))) +;; (setq exwm-input-global-keys +;; `( +;; ([?\s-r] . exwm-reset) +;; ([?\s-w] . exwm-workspace-switch) +;; ,@(mapcar (lambda (i) +;; `(,(kbd (format "s-%d" i)) . +;; (lambda () +;; (interactive) +;; (exwm-workspace-switch-create ,i)))) +;; (number-sequence 0 9)) +;; ([?\s-&] . (lambda (command) +;; (interactive (list (read-shell-command "$ "))) +;; (start-process-shell-command command nil command))) - ([?\s-d] . (lambda () - (interactive) - (dired default-directory))) +;; ([?\s-d] . (lambda () +;; (interactive) +;; (dired default-directory))) - ([?\s-f] . (lambda () - (interactive) - (exwm-layout-toggle-mode-line) - (exwm-workspace-toggle-minibuffer))) +;; ([?\s-f] . (lambda () +;; (interactive) +;; (exwm-layout-toggle-mode-line) +;; (exwm-workspace-toggle-minibuffer))) - ([?\s-b] . exwm-workspace-switch-to-buffer) +;; ([?\s-b] . exwm-workspace-switch-to-buffer) - ([?\s-w] . (lambda () - (interactive) - (start-process "" nil "qutebrowser"))) - ([?\s-n] . (lambda () - (interactive) - (start-process "" nil "nyxt"))) - ([?\s-k] . (lambda () - (interactive) - (start-process "" nil "krita"))) - ([?\s-g] . (lambda () - (interactive) - (start-process "" nil "gimp"))) - ([?\s-b] . (lambda () - (interactive) - (start-process "" nil "blender"))) - ([?\s-c] . (lambda () - (interactive) - (start-process "" nil "chromium"))) - ([s-f2] . (lambda () - (interactive) - (start-process "" nil "/usr/bin/slock"))))) +;; ([?\s-w] . (lambda () +;; (interactive) +;; (start-process "" nil "qutebrowser"))) +;; ([?\s-n] . (lambda () +;; (interactive) +;; (start-process "" nil "nyxt"))) +;; ([?\s-k] . (lambda () +;; (interactive) +;; (start-process "" nil "krita"))) +;; ([?\s-g] . (lambda () +;; (interactive) +;; (start-process "" nil "gimp"))) +;; ([?\s-b] . (lambda () +;; (interactive) +;; (start-process "" nil "blender"))) +;; ([?\s-c] . (lambda () +;; (interactive) +;; (start-process "" nil "chromium"))) +;; ([s-f2] . (lambda () +;; (interactive) +;; (start-process "" nil "/usr/bin/slock"))))) #+end_src And we also need to set up our media keys: #+begin_src emacs-lisp :tangle yes -(exwm-input-set-key (kbd "<XF86AudioNext>") 'emms-next) -(exwm-input-set-key (kbd "<XF86AudioPrev>") 'emms-previous) -(exwm-input-set-key (kbd "<XF86AudioPlay>") 'emms-pause) -(exwm-input-set-key - (kbd "<XF86AudioRaiseVolume>") - (lambda () - (interactive) (start-process-shell-command - "pactl" nil "pactl set-sink-volume 0 +5% && pactl set-sink-volume 1 +5%"))) -(exwm-input-set-key - (kbd "<XF86AudioLowerVolume>") - (lambda () - (interactive) (start-process-shell-command - "pactl" nil "pactl set-sink-volume 0 -5% && pactl set-sink-volume 1 -5%"))) -(exwm-input-set-key - (kbd "<XF86AudioMute>") - (lambda () - (interactive) (start-process-shell-command - "pactl" nil "pactl set-sink-mute 0 toggle && pactl set-sink-mute 1 toggle"))) +;; (exwm-input-set-key (kbd "<XF86AudioNext>") 'emms-next) +;; (exwm-input-set-key (kbd "<XF86AudioPrev>") 'emms-previous) +;; (exwm-input-set-key (kbd "<XF86AudioPlay>") 'emms-pause) +;; (exwm-input-set-key +;; (kbd "<XF86AudioRaiseVolume>") +;; (lambda () +;; (interactive) (start-process-shell-command +;; "pactl" nil "pactl set-sink-volume 0 +5% && pactl set-sink-volume 1 +5%"))) +;; (exwm-input-set-key +;; (kbd "<XF86AudioLowerVolume>") +;; (lambda () +;; (interactive) (start-process-shell-command +;; "pactl" nil "pactl set-sink-volume 0 -5% && pactl set-sink-volume 1 -5%"))) +;; (exwm-input-set-key +;; (kbd "<XF86AudioMute>") +;; (lambda () +;; (interactive) (start-process-shell-command +;; "pactl" nil "pactl set-sink-mute 0 tog +;; gle && pactl set-sink-mute 1 toggle"))) ;; Things to implement in exwm: ;;Key([], 'XF86MonBrightnessUp', lazy.spawn("light -A 10")), ;;Key([], 'XF86MonBrightnessDown', lazy.spawn("light -U 10")), @@ -118,24 +126,26 @@ And we also need to set up our media keys: ** Font Now we configure fonts: #+begin_src emacs-lisp :tangle yes -(setq doom-font (font-spec :family "FiraCode Nerd Font" :size 14 :weight 'semi-light) - doom-variable-pitch-font (font-spec :family "Fira Sans" :size 14) - doom-unicode-font (font-spec :family "Symbola" :size 14) - doom-serif-font (font-spec :family "Fira Sans" :size 14) - doom-big-font (font-spec :family "FiraCode Nerd Font" :size 28)) +(setq doom-font (font-spec :family "Hack" :size 16 :weight 'semi-light) + doom-variable-pitch-font (font-spec :family "Fira Sans" :size 16) + doom-unicode-font (font-spec :family "Symbola" :size 16) + doom-serif-font (font-spec :family "Fira Sans" :size 16) + doom-big-font (font-spec :family "Hack" :size 28)) #+end_src ** Color Scheme I'm experimenting with many themes right now. One of these themes is the city-lights theme, another one of them is the catppuccin theme. #+begin_src emacs-lisp :tangle yes -(setq doom-theme 'doom-ayu-light) -;; (setq doom-theme 'doom-rouge) +;; (setq doom-theme 'doom-ayu-light) +(setq doom-theme 'doom-miramare) ;; (setq catppuccin-flavor 'mocha) +;; (load-theme 'catppuccin) #+end_src ** Doom Module and Programs Configuration *** Agenda Now we add these two files to our agenda search path: #+begin_src emacs-lisp :tangle yes +(require 'org-habit) (setq org-agenda-files (list "~/org/agenda.org" "~/org/contacts.org" "~/org/notes.org")) @@ -148,23 +158,29 @@ And we also want to set up org-habit to start graphing our habits as soon as pos *** IRC Set up circe to connect to my bouncer: #+begin_src emacs-lisp :tangle yes -(after! circe - (set-irc-server! "nullring.xyz" - `(:tls t - :port 4095 - :nick "LiCoO2/AndreiNet" - :user "LiCoO2/AndreiNet" - :pass ,(+pass-get-secret "ZNC")))) +;; (after! circe +;; (set-irc-server! "nullring.xyz" +;; `(:tls t +;; :port 4095 +;; :nick "LiCoO2/AndreiNet" +;; :user "LiCoO2/AndreiNet" +;; :pass ,(+pass-get-secret "ZNC")))) #+end_src And another to connect to libera: #+begin_src emacs-lisp :tangle yes -(set-irc-server! "irc.libera.chat" +(after! circe (set-irc-server! "irc.libera.chat" `(:tls t :port 6697 :nick "ret2pop" :sasl-username "ret2pop" :sasl-password (lambda (&rest _) (+pass-get-secret "libera.chat")) - :channels ("#emacs" "#rwx"))) + :channels ("#emacs" "#rwx")))) +#+end_src +#+begin_src emacs-lisp :tangle yes +(after! circe (set-irc-server! "nullring.xyz" + `(:tls t + :port 6697 + :nick "LiCoO2"))) #+end_src *** Email In order to use this configuration, you must install and configure mu and mbsync. @@ -210,6 +226,7 @@ We want the default search engine of eww to be google because duckduckgo is bad: (setq search-engine-default "google") (setq eww-search-prefix "https://google.com/search?q=") +(setq browse-url-secondary-browser-function 'browse-url-generic browse-url-generic-program "qutebrowser") (setq browse-url-browser-function 'eww-browse-url) (add-hook 'eww-mode-hook (lambda () (local-set-key (kbd "y Y") #'eww-copy-page-url))) @@ -218,11 +235,41 @@ We want the default search engine of eww to be google because duckduckgo is bad: In order to use this configuration, you must have mpd configured to use the same directory. We automatically connect to mpd. #+begin_src emacs-lisp :tangle yes +(emms-all) +(setq emms-source-file-default-directory (expand-file-name "~/music/")) (setq emms-player-mpd-music-directory "~/music/") +(setq emms-player-mpd-server-name "localhost") +(setq emms-player-mpd-server-port "6600") (setq emms-player-list '(emms-player-mpd)) -(emms-all) +(add-to-list 'emms-info-functions 'emms-info-mpd) +(add-to-list 'emms-player-list 'emms-player-mpd) (emms-player-mpd-connect) #+end_src +** Keybindings +Now we set up our keybindings for our applications: +#+begin_src emacs-lisp :tangle yes +(map! :leader + :desc "Open irc" + "i c" #'circe) +(map! :leader + :desc "Open audio manager" + "m m" #'emms) +(map! :leader + :desc "Open RSS feed reader" + "r s" #'elfeed) +(map! :leader + :desc "Open password manager" + "p w" #'ivy-pass) +(map! :leader + :desc "Open dictionary program" + "d i" #'dictionary) +(map! :leader + :desc "Open rtorrent frontend" + "r t" #'mentor) +(map! :leader + :desc "Open eww web browser" + "e w" #'eww) +#+end_src *** Journal First we set the journal to be in the website directory: #+begin_src emacs-lisp :tangle yes @@ -241,6 +288,7 @@ And then we add the headers needed to export the journal automatically: (`yearly "#+TITLE: Yearly Journal\n#+STARTUP: folded")))) (setq org-journal-file-header 'org-journal-file-header-func) +(setq org-export-with-section-numbers nil) (setq org-journal-file-format "%Y%m%d.org") #+end_src To add everything to the agenda search path, we toggle: @@ -276,13 +324,12 @@ In order to publish my website, we need to configure emacs to publish it somewhe :auto-preamble t) ("website-static" :base-directory "~/org/website" - :base-extension "css\\|js\\|png\\|jpg\\|gif\\|pdf\\|mp3\\|ogg\\|swf" + :base-extension "css\\|js\\|png\\|jpg\\|gif\\|pdf\\|mp3\\|ogg\\|swf\\|ico" :publishing-directory "~/website_html/" :recursive t :publishing-function org-publish-attachment) - ("website" :components ("website-org" "website-static")))) - - + ("website" :auto-sitemap t :components ("website-org" "website-static")))) +(setq org-html-postamble "Copyright (c) 2024 Preston Pan") #+end_src *** Contacts Now we configure org-contacts, which allows me to store contacts in an org mode file: @@ -308,31 +355,6 @@ Sometimes I want a timer to help me keep track of the time. #+begin_src emacs-lisp :tangle yes (setq org-clock-sound "~/audio/ding.wav") #+end_src -** Keybindings -Now we set up our keybindings for our applications: -#+begin_src emacs-lisp :tangle yes -(map! :leader - :desc "Open irc" - "i c" #'circe) -(map! :leader - :desc "Open audio manager" - "m m" #'emms) -(map! :leader - :desc "Open RSS feed reader" - "r s" #'elfeed) -(map! :leader - :desc "Open password manager" - "p w" #'ivy-pass) -(map! :leader - :desc "Open dictionary program" - "d i" #'dictionary) -(map! :leader - :desc "Open rtorrent frontend" - "r t" #'mentor) -(map! :leader - :desc "Open eww web browser" - "e w" #'eww) -#+end_src ** External Packages we want to include some packages that don't come with doom emacs. *** KBD-Mode @@ -393,9 +415,26 @@ We use ednc to manage notifications. #+end_src *** Mastodon #+begin_src emacs-lisp :tangle yes -(setq mastodon-instance-url "https://types.pl" - mastodon-active-user "ret2pop") +(setq mastodon-instance-url "https://types.pl") +(setq mastodon-active-user "ret2pop") +#+end_src +*** Ement +#+begin_src emacs-lisp :tangle yes +;; (ement-connect :uri-prefix "http://localhost:8009") #+end_src +*** Stem +I wrote a [[https://github.com/ret2pop/stem-mode][major mode]] for my programming language [[https://github.com/ret2pop/stem][stem]]. +#+begin_src emacs-lisp :tangle yes +(use-package stem-mode) +(add-to-list 'auto-mode-alist '("\\.stem\\'" . stem-mode)) +#+end_src +*** Tufte +Our website uses the tufte css styling and we must therefore tell emacs to generate html that is compliant with this html: +#+begin_src emacs-lisp +(use-package! ox-tufte) +(use-package! plan9-theme) +#+end_src + * packages.el Configuration These are some external packages that I use that are not provided by doom modules. #+begin_src emacs-lisp :tangle packages.el @@ -424,6 +463,8 @@ These are some external packages that I use that are not provided by doom module (package! go-translate) (package! ts) (package! chess) +(package! ox-tufte) +(package! plan9-theme) #+end_src * init.el Configuration @@ -552,7 +593,7 @@ This installs all the doom modules that we are going to be configuring: ;;gdscript ; the language you waited for (go +lsp) ;;(graphql +lsp) ; Give queries a REST - ;;(haskell +lsp) ; a language that's lazier than I am + (haskell +lsp) ; a language that's lazier than I am ;;hy ; readability of scheme w/ speed of python ;;idris ; a language you can depend on (json +lsp) @@ -584,7 +625,7 @@ This installs all the doom modules that we are going to be configuring: (scheme +guile) (sh +fish +lsp) ;;sml - ;;solidity ; do you need a blockchain? No. + solidity ; do you need a blockchain? No. ;;swift ; who asked for emoji variables? ;;terra ; Earth and Moon in alignment for performance. (web +lsp) diff --git a/config/elfeed.org b/config/elfeed.org index ca942ea..94fdbf5 100644 --- a/config/elfeed.org +++ b/config/elfeed.org @@ -18,6 +18,8 @@ Here are some interesting blogs, many of which are from substack. ** News :news: These are the news articles that I subscribe to. Some of these are politics related but I mostly just want to inform myself about technology subjects. +*** https://www.wired.com/feed/tag/ai/latest/rss +*** https://www.wired.com/feed/category/science/latest/rss *** https://feeds.washingtonpost.com/rss/politics?itid=lk_inline_manual_2 *** https://news.ycombinator.com/rss diff --git a/config/qtile.org b/config/qtile.org index 04bcb12..537bab5 100644 --- a/config/qtile.org +++ b/config/qtile.org @@ -30,7 +30,7 @@ import subprocess mod = "mod4" -terminal = guess_terminal() +terminal = "kitty" wl_import_rules = None auto_minimize = True wmname = "LG3D" @@ -38,8 +38,9 @@ wmname = "LG3D" ** Hex Colors We then load the catppuccin colors for the bar and window borders. #+begin_src python :tangle config.py -def get_colors(): - return [ +def get_colors(theme): + if theme == "city-lights": + return [ # Normal colors '#45475a', '#f38ba8', @@ -65,8 +66,33 @@ def get_colors(): # foreground '#cdd6f4', ] + elif theme == "gruvbox": + return [ + # normal colors + '#282828', + '#cc241d', + '#98971a', + '#d79921', + '#458588', + '#b16286', + '#689d6a', + '#a89984', + #bright colors + '#928374', + '#fb4934', + '#b8bb26', + '#fabd2f', + '#83a598', + '#d3869b', + '#8ec07c', + '#ebdbb2', + # background + '#282828', + # foreground + '#ebdbb2', + ] -colors = get_colors() +colors = get_colors("gruvbox") #+end_src ** Keybindings The _keys_ variable is going to be our final list of keybindings. We start by initializing it @@ -123,6 +149,7 @@ keys.extend([ Key([mod], "g", lazy.spawn("gimp"), desc="Run GIMP"), Key([mod], "t", lazy.spawn("torbrowser-launcher"), desc="Run Tor Browser"), Key([mod], "i", lazy.spawn("emacsclient --eval \"(emacs-everywhere)\""), desc="Emacs Everywhere!"), + Key([mod], "d", lazy.spawn("dmenu_run"), desc="dmenu"), ]) #+end_src *** XF86 @@ -173,7 +200,7 @@ layouts = [ # layout.Stack(num_stacks=2), # layout.Bsp(), # layout.Matrix(), - # layout.MonadTall(), + layout.MonadTall(border_focus=colors[2], border_normal=colors[0], border_width=4, margin=7), # layout.MonadWide(), # layout.RatioTile(), # layout.Tile(), @@ -195,40 +222,120 @@ widget_defaults = dict( ) extension_defaults = widget_defaults.copy() +# screens = [ +# Screen( +# top=bar.Bar( +# [ +# # widget.CurrentLayout(), +# widget.GroupBox(active=colors[6], inactive=colors[15], this_current_screen_border=colors[4], highlight_colorsr=colors[3]), +# widget.Prompt(), +# widget.WindowName(), +# widget.Chord( +# chords_colors={ +# "launch": ("#ff0000", "#ffffff"), +# }, +# name_transform=lambda name: name.upper(), +# ), +# # widget.StatusNotifier(), + +# widget.Systray(), +# widget.Battery(charge_char="🔋", discharge_char="🔋", full_char="🔋", format="{char} {percent:2.0%}"), +# # widget.TextBox("|", foreground=colors[1]), +# widget.Sep(padding=16, size_percent=80, foreground=colors[1]), +# widget.Clock(format="🕒 %a %I:%M %p"), +# widget.Sep(padding=16, size_percent=80, foreground=colors[1]), +# widget.Mpd2(), +# widget.TextBox(" "), + +# ], +# 24, + +# # border_width=[2, 0, 2, 0], # Draw top and bottom borders +# # border_colorsr=["ff00ff", "000000", "ff00ff", "000000"] # Borders are magenta +# ), +# bottom=bar.Gap(4), +# left=bar.Gap(3), +# right=bar.Gap(3), +# ), +# ] + +def pline(rl, fg, bg): + if rl == 0: + uc = "" + else: + uc = "" + return widget.TextBox(text = uc, + padding = 0, + fontsize = 22, + foreground=fg, + background=bg) + screens = [ Screen( + wallpaper="~/.config/qtile/wallpaper", + wallpaper_mode="fill", top=bar.Bar( [ - # widget.CurrentLayout(), - widget.GroupBox(active=colors[6], inactive=colors[15], this_current_screen_border=colors[4], highlight_color=colors[3]), - widget.Prompt(), - widget.WindowName(), - widget.Chord( - chords_colors={ - "launch": ("#ff0000", "#ffffff"), - }, - name_transform=lambda name: name.upper(), + widget.CurrentLayoutIcon( + scale=0.75, + background=colors[3] ), - # widget.StatusNotifier(), - - widget.Systray(), - widget.Battery(charge_char="🔋", discharge_char="🔋", full_char="🔋", format="{char} {percent:2.0%}"), - # widget.TextBox("|", foreground=colors[1]), - widget.Sep(padding=16, size_percent=80, foreground=colors[1]), - widget.Clock(format="🕒 %a %I:%M %p"), - widget.Sep(padding=16, size_percent=80, foreground=colors[1]), - widget.Mpd2(), - widget.TextBox(" "), + pline(0, colors[3], colors[6]), + widget.GroupBox( + highlight_method="block", + background=colors[6], + this_current_screen_border="#7daea3" + ), + pline(0, colors[6], colors[7]), + widget.TaskList( + highlight_method="block", + max_title_width=300, + border="#d3869b", + padding=2, + background=colors[7] + ), + pline(0, colors[7], colors[0]), + widget.Spacer(), + pline(1, colors[2], colors[0]), + widget.Net( # requires python-psutil + interface="wlp0s20f3", + format="📡 {total}", + update_interval=30, + background=colors[2] + ), + pline(1, colors[5], colors[2]), + widget.Backlight( + format="💡 {percent:2.0%}", + backlight_name="intel_backlight", + background=colors[5] + ), + pline(1, colors[3], colors[5]), + widget.Volume( + emoji=True, + background=colors[3] + ), + widget.Volume( + background=colors[3] + ), + pline(1, colors[4], colors[3]), + widget.BatteryIcon( + background=colors[4] + ), + widget.Battery( + charge_char="now ", + discharge_char="left", + format="{percent:2.0%} {char}", + background=colors[4] + ), + pline(1, colors[1], colors[4]), + widget.Clock( + format="%Y-%m-%d %a %I:%M %p", + background=colors[1] + ), ], - 24, - - # border_width=[2, 0, 2, 0], # Draw top and bottom borders - # border_color=["ff00ff", "000000", "ff00ff", "000000"] # Borders are magenta + 26, ), - bottom=bar.Gap(4), - left=bar.Gap(3), - right=bar.Gap(3), ), ] #+end_src diff --git a/config/qutebrowser.org b/config/qutebrowser.org index 03741b0..1deb37a 100644 --- a/config/qutebrowser.org +++ b/config/qutebrowser.org @@ -18,7 +18,8 @@ We import pathlib to get our home directory. I am experimenting with many themes right now, and one of them is the [[https://github.com/gicrisf/qute-city-lights][city-lights]] theme. Another one I have used is the [[https://github.com/catppuccin/catppuccin][catppuccin]] theme. #+begin_src python :tangle config.py -config.source('themes/qute-city-lights/city-lights-theme.py') +# config.source('themes/qute-city-lights/city-lights-theme.py') +config.source('gruvbox.py') #+end_src ** Variables We need the location of the home directory. @@ -96,7 +97,7 @@ for item in js_blacklist: ** Misc. Doing mundane things like setting the downloads directory to not use an upper case letter. #+begin_src python :tangle config.py -c.downloads.location.directory = "~/downloads" +c.downloads.location.directory = "~/Downloads" #+end_src ** End of Config #+begin_src python :tangle config.py diff --git a/favicon-16x16.png b/favicon-16x16.png Binary files differnew file mode 100644 index 0000000..03a6eec --- /dev/null +++ b/favicon-16x16.png diff --git a/favicon-32x32.png b/favicon-32x32.png Binary files differnew file mode 100644 index 0000000..d5eba6e --- /dev/null +++ b/favicon-32x32.png diff --git a/favicon.ico b/favicon.ico Binary files differnew file mode 100644 index 0000000..2b34bfd --- /dev/null +++ b/favicon.ico diff --git a/img/churchill.png b/img/churchill.png Binary files differnew file mode 100644 index 0000000..23003ad --- /dev/null +++ b/img/churchill.png diff --git a/img/drawing-old.png b/img/drawing-old.png Binary files differnew file mode 100644 index 0000000..d2907a4 --- /dev/null +++ b/img/drawing-old.png diff --git a/img/drawing.png b/img/drawing.png Binary files differnew file mode 100644 index 0000000..522dc50 --- /dev/null +++ b/img/drawing.png diff --git a/img/favicon.ico b/img/favicon.ico Binary files differnew file mode 100644 index 0000000..2633e87 --- /dev/null +++ b/img/favicon.ico diff --git a/img/relativity1.jpg b/img/relativity1.jpg Binary files differnew file mode 100644 index 0000000..e3b0a82 --- /dev/null +++ b/img/relativity1.jpg diff --git a/img/relativity2.jpg b/img/relativity2.jpg Binary files differnew file mode 100644 index 0000000..3455404 --- /dev/null +++ b/img/relativity2.jpg diff --git a/img/relativity2.jpg~ b/img/relativity2.jpg~ Binary files differnew file mode 100644 index 0000000..e23e252 --- /dev/null +++ b/img/relativity2.jpg~ @@ -1,17 +1,28 @@ -#+title: ret2pop +#+title: Introducing ret2pop #+author: Preston Pan #+description: My personal website #+html_head: <link rel="stylesheet" type="text/css" href="style.css" /> +#+html_head: <link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png"> +#+html_head: <link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png"> +#+html_head: <link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png"> +#+html_head: <link rel="manifest" href="/site.webmanifest"> +#+html_head: <link rel="mask-icon" href="/safari-pinned-tab.svg" color="#5bbad5"> +#+html_head: <meta name="msapplication-TileColor" content="#da532c"> +#+html_head: <meta name="theme-color" content="#ffffff"> #+date: <2023-06-09 Fri> #+language: en #+OPTIONS: broken-links:t -* Introducing ret2pop +* Introduction +#+caption: All Hope Abandon, Ye Who Enter Here +[[./img/drawing-old.png]] + Hello! I'm a person on the internet that does things, such as: - Music - Programming - Mathematics - Physics +- Linguistics - Thinking And if you're here to do one of these things, I guarantee you're in the right place! ** [[file:journal/index.org][Journal]] @@ -37,7 +48,7 @@ can therefore publish them. So I did! Configurations include: - Elfeed …and many more! ** [[file:about.org][About]] -To see my contact information and whatnot. +Who is the man behind ret2pop? How do you contact him? So many mysteries await… * About this Website I wrote this website in org mode. For more information, see the [[file:README.org][README]]. diff --git a/journal/20231208.org b/journal/20231208.org new file mode 100644 index 0000000..3c207bc --- /dev/null +++ b/journal/20231208.org @@ -0,0 +1,22 @@ +#+TITLE: Daily Journal +#+STARTUP: showeverything +#+DESCRIPTION: My daily journal entry +#+AUTHOR: Preston Pan +#+HTML_HEAD: <link rel="stylesheet" type="text/css" href="../style.css" /> +#+html_head: <script src="https://polyfill.io/v3/polyfill.min.js?features=es6"></script> +#+html_head: <script id="MathJax-script" async src="https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-mml-chtml.js"></script> +#+options: broken-links:t +* Friday, 08 December 2023 +** 17:31 +Recently I have decided to start using emacs again, and this website is therefore +going to be updated much more. I have learned a little bit of Lagrangian and Hamiltonian +mechanics, and I am trying to learn some quantum mechanics as a result. I have my amateur +radio license now so I want to get my advanced amateur radio license. + +Also, I am kind of failing out of University because I don't really like any of the classes and +I obviously know a lot of the math and physics already, as well as a decent amount of programming. +I don't really know what University has to offer for me other than the paper, but it makes the +whole thing feel really pointless. Maybe I'll start a company, or starve on the streets, who knows! +** 21:57 +I'm just with my friend Jude right now because I am demonstrating the power of emacs and how it +can do journaling automatically and add it to my website which is integrated with all my other org files. diff --git a/journal/20231209.org b/journal/20231209.org new file mode 100644 index 0000000..419f2a1 --- /dev/null +++ b/journal/20231209.org @@ -0,0 +1,13 @@ +#+TITLE: Daily Journal +#+STARTUP: showeverything +#+DESCRIPTION: My daily journal entry +#+AUTHOR: Preston Pan +#+HTML_HEAD: <link rel="stylesheet" type="text/css" href="../style.css" /> +#+html_head: <script src="https://polyfill.io/v3/polyfill.min.js?features=es6"></script> +#+html_head: <script id="MathJax-script" async src="https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-mml-chtml.js"></script> +#+options: broken-links:t +* Saturday, 09 December 2023 +** 18:37 +Today I lost my charger but later my friend Lucien returned it to me. He has the same computer +as me and I therefore lost some time today. However, it is fine because I managed to read +some of my quantum mechanics book. diff --git a/journal/20231210.org b/journal/20231210.org new file mode 100644 index 0000000..c64278a --- /dev/null +++ b/journal/20231210.org @@ -0,0 +1,17 @@ +#+TITLE: Daily Journal +#+STARTUP: showeverything +#+DESCRIPTION: My daily journal entry +#+AUTHOR: Preston Pan +#+HTML_HEAD: <link rel="stylesheet" type="text/css" href="../style.css" /> +#+html_head: <script src="https://polyfill.io/v3/polyfill.min.js?features=es6"></script> +#+html_head: <script id="MathJax-script" async src="https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-mml-chtml.js"></script> +#+options: broken-links:t +* Sunday, 10 December 2023 +** 15:21 +After not using my computer for a day due to not finding my charger, I have finally found it. I am now working on some quantum mechanics. +Specifically, I am trying to wrap my head around the Schrodinger equation and how that relates to position and velocity. I understand +currently that the time-evolution of the system is governed by it, and I understand how to solve the equation for certain assumptions. However, +I am unclear as to how Fourier Transforms have a connection to quantum systems. +** 21:10 +I have worked a lot on the website; I am currently attempting to figure out how to make it look good instead of bad, and I want to add a navbar. +I also probably want to reformat how I'm doing some things in org mode. I have a favicon now but it isn't good. diff --git a/journal/20231213.org b/journal/20231213.org new file mode 100644 index 0000000..376f61f --- /dev/null +++ b/journal/20231213.org @@ -0,0 +1,13 @@ +#+TITLE: Daily Journal +#+STARTUP: showeverything +#+DESCRIPTION: My daily journal entry +#+AUTHOR: Preston Pan +#+HTML_HEAD: <link rel="stylesheet" type="text/css" href="../style.css" /> +#+html_head: <script src="https://polyfill.io/v3/polyfill.min.js?features=es6"></script> +#+html_head: <script id="MathJax-script" async src="https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-mml-chtml.js"></script> +#+options: broken-links:t +* Wednesday, 13 December 2023 +** 14:06 +Today, I am meeting my friend Matthew. +** 19:32 +That meeting is done. I played some really good piano and I think now I am going to work on the mindmap more. diff --git a/journal/20231214.org b/journal/20231214.org new file mode 100644 index 0000000..bfd05b1 --- /dev/null +++ b/journal/20231214.org @@ -0,0 +1,14 @@ +#+TITLE: Daily Journal +#+STARTUP: showeverything +#+DESCRIPTION: My daily journal entry +#+AUTHOR: Preston Pan +#+HTML_HEAD: <link rel="stylesheet" type="text/css" href="../style.css" /> +#+html_head: <script src="https://polyfill.io/v3/polyfill.min.js?features=es6"></script> +#+html_head: <script id="MathJax-script" async src="https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-mml-chtml.js"></script> +#+options: broken-links:t +* Thursday, 14 December 2023 +** 13:46 +Yesterday I had good conversations with many of my friends; I talked a decent bit about the Null +Philosophy with my dorm friends and I talked about the mindmap with Matthew Hinton. In any case, +I did not really work much on the mindmap yesterday so I believe I will do so today. I also need +to get my advanced license. diff --git a/journal/20231215.org b/journal/20231215.org new file mode 100644 index 0000000..9be750e --- /dev/null +++ b/journal/20231215.org @@ -0,0 +1,12 @@ +#+TITLE: Daily Journal +#+STARTUP: showeverything +#+DESCRIPTION: My daily journal entry +#+AUTHOR: Preston Pan +#+HTML_HEAD: <link rel="stylesheet" type="text/css" href="../style.css" /> +#+html_head: <script src="https://polyfill.io/v3/polyfill.min.js?features=es6"></script> +#+html_head: <script id="MathJax-script" async src="https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-mml-chtml.js"></script> +#+options: broken-links:t +* Friday, 15 December 2023 +** 13:31 +I went on an early morning run at 4 today; it felt really really good and I want to do it again. I then +woke up very late. diff --git a/journal/20231217.org b/journal/20231217.org new file mode 100644 index 0000000..6a70d9e --- /dev/null +++ b/journal/20231217.org @@ -0,0 +1,12 @@ +#+TITLE: Daily Journal +#+STARTUP: showeverything +#+DESCRIPTION: My daily journal entry +#+AUTHOR: Preston Pan +#+HTML_HEAD: <link rel="stylesheet" type="text/css" href="../style.css" /> +#+html_head: <script src="https://polyfill.io/v3/polyfill.min.js?features=es6"></script> +#+html_head: <script id="MathJax-script" async src="https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-mml-chtml.js"></script> +#+options: broken-links:t +* Sunday, 17 December 2023 +** 23:21 +Today I talked with my friend Jude and I also did some electrodynamics problems. We tried solving for the magnetic +field equations with special relativity and the Coulomb law as a postulate. diff --git a/journal/20231220.org b/journal/20231220.org new file mode 100644 index 0000000..8605381 --- /dev/null +++ b/journal/20231220.org @@ -0,0 +1,12 @@ +#+TITLE: Daily Journal +#+STARTUP: showeverything +#+DESCRIPTION: My daily journal entry +#+AUTHOR: Preston Pan +#+HTML_HEAD: <link rel="stylesheet" type="text/css" href="../style.css" /> +#+html_head: <script src="https://polyfill.io/v3/polyfill.min.js?features=es6"></script> +#+html_head: <script id="MathJax-script" async src="https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-mml-chtml.js"></script> +#+options: broken-links:t +* Wednesday, 20 December 2023 +** 16:35 +Shit is a little bit fucked, but I don't really feel that bad which is good. I do not know if I am going +to university anymore. diff --git a/journal/20240110.org b/journal/20240110.org new file mode 100644 index 0000000..86465ca --- /dev/null +++ b/journal/20240110.org @@ -0,0 +1,13 @@ +#+TITLE: Daily Journal +#+STARTUP: showeverything +#+DESCRIPTION: My daily journal entry +#+AUTHOR: Preston Pan +#+HTML_HEAD: <link rel="stylesheet" type="text/css" href="../style.css" /> +#+html_head: <script src="https://polyfill.io/v3/polyfill.min.js?features=es6"></script> +#+html_head: <script id="MathJax-script" async src="https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-mml-chtml.js"></script> +#+options: broken-links:t +* Wednesday, 10 January 2024 +** 16:39 +I have remembered that journaling capabilities existed in emacs again. I've been working on a programming language +called stem for the past 6 days, and it's finally looking like a finished project. It is a stack based language +and it has a foreign language interface and metaprogramming. diff --git a/journal/20240123.org b/journal/20240123.org new file mode 100644 index 0000000..d86dc5b --- /dev/null +++ b/journal/20240123.org @@ -0,0 +1,24 @@ +#+TITLE: Daily Journal +#+STARTUP: showeverything +#+DESCRIPTION: My daily journal entry +#+AUTHOR: Preston Pan +#+HTML_HEAD: <link rel="stylesheet" type="text/css" href="../style.css" /> +#+html_head: <script src="https://polyfill.io/v3/polyfill.min.js?features=es6"></script> +#+html_head: <script id="MathJax-script" async src="https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-mml-chtml.js"></script> +#+options: broken-links:t +* Tuesday, 23 January 2024 +** 02:13 +I have decided to write in my journal yet again. I've been working on a programming language ~stem~ for the past +few weeks, and it has been exhilarating. I plan to add much more functionality to the programming language, as I +am already attempting to implement object oriented programming for it. Additionally, I have had ideas about how I would +implement a compiler for this programming language, and I have thought about writing a new lisp dialect based on +this language. + +In other news, I have become a University drop-out. I am still visiting my old university UVic from time to time, but I +am no longer enrolled in any classes at UVic nor am I staying there long term. I don't really know what I'm going to do. + +I found that university was utterly stiffling and didn't allow me to pursue my own interests. Additionally, I found that +many of the professors were unwilling to help me. Therefore, I dropped out. +** 11:34 +I just woke up. I will do my agenda tasks and then try to go to a BCIT convention to try to do some job-hunting. I'm pretty +excited for this. diff --git a/journal/20240124.org b/journal/20240124.org new file mode 100644 index 0000000..1b10e38 --- /dev/null +++ b/journal/20240124.org @@ -0,0 +1,17 @@ +#+TITLE: Daily Journal +#+STARTUP: showeverything +#+DESCRIPTION: My daily journal entry +#+AUTHOR: Preston Pan +#+HTML_HEAD: <link rel="stylesheet" type="text/css" href="../style.css" /> +#+html_head: <script src="https://polyfill.io/v3/polyfill.min.js?features=es6"></script> +#+html_head: <script id="MathJax-script" async src="https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-mml-chtml.js"></script> +#+options: broken-links:t +* Wednesday, 24 January 2024 +** 13:43 +For lunch, I ate rice and vegetables, mainly cauliflower, and two eggs. I plan to take my protein in the night, and I need to +get more protein soon. +*** TODO Get more protein +Vega to be mixed with milk. +** 15:44 +What's weird is I think my journal might be a little broken; I wrote the thing above yesterday. Oh well. I am also looking into +changing my website's css to make it less ugly. I also need to buy some vega protein. diff --git a/journal/index.org b/journal/index.org index bfdcb46..290f751 100644 --- a/journal/index.org +++ b/journal/index.org @@ -5,10 +5,18 @@ #+date: <2023-06-09 Fri> #+language: en #+OPTIONS: broken-links:t -* Journal! +#+html_head: <link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png"> +#+html_head: <link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png"> +#+html_head: <link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png"> +#+html_head: <link rel="manifest" href="/site.webmanifest"> +#+html_head: <link rel="mask-icon" href="/safari-pinned-tab.svg" color="#5bbad5"> +#+html_head: <meta name="msapplication-TileColor" content="#da532c"> +#+html_head: <meta name="theme-color" content="#ffffff"> +* Introduction This is my journal. It's basically my everyday life from a technology perspective (not many personal details although -there will be some). +there will be some). I will also be posting some TODOs that I have +throughout time. ** Entries Here is a list of all my journal entries: @@ -23,6 +31,17 @@ done #+end_src #+RESULTS: +- [[file:20240124.org][20240124.org]] +- [[file:20240123.org][20240123.org]] +- [[file:20240110.org][20240110.org]] +- [[file:20231220.org][20231220.org]] +- [[file:20231217.org][20231217.org]] +- [[file:20231215.org][20231215.org]] +- [[file:20231214.org][20231214.org]] +- [[file:20231213.org][20231213.org]] +- [[file:20231210.org][20231210.org]] +- [[file:20231209.org][20231209.org]] +- [[file:20231208.org][20231208.org]] - [[file:20230711.org][20230711.org]] - [[file:20230704.org][20230704.org]] - [[file:20230625.org][20230625.org]] diff --git a/mindmap/Fourier Transform.org b/mindmap/Fourier Transform.org new file mode 100644 index 0000000..9996abd --- /dev/null +++ b/mindmap/Fourier Transform.org @@ -0,0 +1,12 @@ +:PROPERTIES: +:ID: 262ca511-432f-404f-8320-09a2afe1dfb7 +:END: +#+title: Fourier Transform +#+author: Preston Pan +#+html_head: <link rel="stylesheet" type="text/css" href="../style.css" /> +#+html_head: <script src="https://polyfill.io/v3/polyfill.min.js?features=es6"></script> +#+html_head: <script id="MathJax-script" async src="https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-mml-chtml.js"></script> +#+options: broken-links:t + +* Introduction +The Fourier Transform is a generalization of the Fourier Series. diff --git a/mindmap/Lagrangian mechanics.org b/mindmap/Lagrangian mechanics.org new file mode 100644 index 0000000..d306be7 --- /dev/null +++ b/mindmap/Lagrangian mechanics.org @@ -0,0 +1,106 @@ +:PROPERTIES: +:ID: 83da205c-7966-417e-9b77-a0a354099f30 +:END: +#+title: Lagrangian mechanics +#+author: Preston Pan +#+html_head: <link rel="stylesheet" type="text/css" href="../style.css" /> +#+html_head: <script src="https://polyfill.io/v3/polyfill.min.js?features=es6"></script> +#+html_head: <script id="MathJax-script" async src="https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-mml-chtml.js"></script> +#+options: broken-links:t +* Introduction +The Lagrangian, $L: (\mathbb{R}, \mathbb{R} \rightarrow \mathbb{R}, \mathbb{R} \rightarrow \mathbb{R}) \rightarrow \mathbb{R}$ is simply a functional: +\begin{align*} +L = L(t, f(t), f'(t)) +\end{align*} +Where the Lagrangian represents some metric by which we calculate how optimized $f(x)$ is. The action: +\begin{align*} +J[f] = \int_{a}^{b}L(t, f(t), f'(t))dt \\ +\end{align*} +Defines the actual relationship between $f(t)$ and its level of optimization, where $a$ and $b$ represent the start +and end points for a certain curve. For example, if you wanted to minimize the surface area of something, $a$ and $b$ +would be the starting and end points of the surface. +* Euler-Lagrange Equation +We first define some function: +\begin{align*} +g(t) := f(t) + \epsilon \nu(t) +\end{align*} +Where $f(t)$ is our optimized function and $\nu(t)$ represents some function we add to $f(t)$ such that we perturb it +by some small amount. Now $\epsilon$ is a small number such that the perturbation is small. Note that when $\epsilon = 0$, $g(t) = f(t)$, +our optimized function. +\begin{align*} +J[g] = \int_{a}^{b}L(t, g(t), g'(t))dt +\end{align*} +Now $J[g]$ is optimized when $g(t)$ is a maximum or minimum with respect to the Lagrangian. $\frac{dJ}{d\epsilon}$ represents the extent to which +the action changes when the perturbation changes. When $\epsilon = 0$, $g(t) = f(t)$, which means $\frac{dJ}{d\epsilon}$ evaluated at $\epsilon = 0$ +should be zero, by definition of maxima and minima. +\begin{align*} +\frac{dJ[g]}{d\epsilon} = \int_{a}^{b}\frac{dL}{d\epsilon}dt +\end{align*} +By the multivariable chain rule: +\begin{align*} +\frac{dL}{d\epsilon} = \frac{\partial L}{\partial t}\frac{dt}{d\epsilon} + \frac{\partial L}{\partial g}\frac{dg}{d\epsilon} + \frac{\partial L}{\partial g'}\frac{dg'}{d\epsilon} +\end{align*} +because $t$ does not depend on $\epsilon$, $g = f + \epsilon\nu$, and $g' = f' + \epsilon\nu'$: +\begin{align*} +\frac{dL}{d\epsilon} = \frac{\partial L}{\partial g}\nu(t) + \frac{\partial L}{\partial g'}\nu'(t) +\end{align*} +now substituting back into the integral: +\begin{align*} +\frac{dJ}{d\epsilon} = \int_{a}^{b}(\frac{\partial L}{\partial g}\nu(t) + \frac{\partial L}{\partial g'}\nu'(t))dt +\end{align*} +applying integration by parts to the right side: +\begin{align*} +\frac{dJ}{d\epsilon} = \int_{a}^{b}\frac{\partial L}{\partial g}\nu(t)dt + \nu(t)\frac{\partial L}{\partial g'}\bigg|_{a}^{b} - \int_{a}^{b}\nu(t)\frac{d}{dt}\frac{\partial L}{\partial g'}dt +\end{align*} +now $\nu(t)$ can be any perturbation of $f(t)$ but the boundary conditions must stay the same (every function that we are considering for optimization must have the same start and end points); +therefore, $\nu(a) = \nu(b) = 0$. We can evaluate the bar to be 0 as a result. Doing this, combining the integral, then factoring out $\nu(t)$: +\begin{align*} +\frac{dJ}{d\epsilon} = \int_{a}^{b}\nu(t)(\frac{\partial L}{\partial g} - \frac{d}{dt}\frac{\partial L}{\partial g'})dt +\end{align*} +Now we finally set $\epsilon = 0$. This means $g(t) = f(t)$, $g'(t) = f'(t)$, and $\frac{dJ}{d\epsilon} = 0$: +\begin{align*} +0 = \int_{a}^{b}\nu(t)(\frac{\partial L}{\partial f} - \frac{d}{dt}\frac{\partial L}{\partial f'})dt +\end{align*} +And now because $\nu(t)$ can be an arbitrarily large or small valued function as long as the boundary conditions remain the same and the left hand side +must be zero, we get the Euler-Lagrange equation: +\begin{align*} +\frac{\partial L}{\partial f} - \frac{d}{dt}\frac{\partial L}{\partial f'} = 0 +\end{align*} +This is because the integral implies that for all selections for this function $\nu(t)$, $\nu(t)(\frac{dL}{df} - \frac{d}{dt}\frac{dL}{dg'}) = 0$. Because $\nu(t)$ can be any +function assuming it satisfies the boundary conditions, this can only be the case if $\frac{dL}{df} - \frac{d}{dt}\frac{dL}{dg'} = 0$. +In physics, we re-cast $f$ as $q$ and $f'$ as $\dot{q}$, where $q$ and $\dot{q}$ are the /generalized coordinates/ and /generalized velocities/ respectively. +* The Hamiltonian +The Hamiltonian represents the total energy in the system; it is the [[id:23df3ba6-ffb2-4805-b678-c5f167b681de][Legendre Transformation]] of the Lagrangian. Applying the Legendre Transformation to the +Lagrangian for coordinate $\dot{q}$: +\begin{align*} +L = \frac{1}{2}m\dot{q}^{2} - V(q) \\ +H = \frac{\partial L}{\partial \dot{q}}\dot{q} - L +\end{align*} +the Hamiltonian is defined as: +\begin{align*} +H(q, p) = \sum _{i}p_{i}\dot{q_{i}} - L(q, \dot{q}) +\end{align*} +Or: +\begin{align*} +H(q, p) = \frac{p^{2}}{2m} + V(q) +\end{align*} +where $p$ is the generalized momentum, and $q$ is a generalized coordinate. This results in two differential equations, the first of which is: +\begin{align*} +\frac{\partial H}{\partial p_{i}} = \dot{q_{i}} +\end{align*} +which follows directly from the Hamiltonian definition. Then, from the Euler-Lagrange equation: +\begin{align*} +L = \sum_{i}p_{i}\dot{q_{i}} - H \\ +\frac{\partial(\sum_{i}p_{i}\dot{q_{i}} - H)}{\partial q_{i}} - \frac{d}{dt}\frac{\partial(\sum_{i}p_{i}\dot{q_{i}} - H)}{\partial \dot{q_{i}}} = 0 \\ +- \frac{\partial H}{\partial q_{i}} = \frac{dp_{i}}{dt} \\ +\frac{\partial H}{\partial q_{i}} = - \frac{dp_{i}}{dt} +\end{align*} +Although the generalized coordinate system in question does not have to be linear, we can encode all the differential +equations for all the coordinates at once with the [[id:4bfd6585-1305-4cf2-afc0-c0ba7de71896][del operator]]: +\begin{align*} +\vec{\nabla}_{p}H = \frac{d\vec{q}}{dt} \\ +\vec{\nabla}_{q}H = -\frac{d\vec{p}}{dt} +\end{align*} +this notation isn't standard and I kind of made it up, but I think it works, as long as you don't take the divergence +or the curl of this system to really mean anything. Note that in both the Hamiltonian formulation and Lagrangian formulation, +the differential equations reduce to [[id:6e2a9d7b-7010-41da-bd41-f5b2dba576d3][Newtonian mechanics]] if we are working in a linear coordinate system with energy conservation. diff --git a/mindmap/Legendre Transformation.org b/mindmap/Legendre Transformation.org new file mode 100644 index 0000000..f9bc51f --- /dev/null +++ b/mindmap/Legendre Transformation.org @@ -0,0 +1,31 @@ +:PROPERTIES: +:ID: 23df3ba6-ffb2-4805-b678-c5f167b681de +:END: +#+title: Legendre Transformation +#+author: Preston Pan +#+html_head: <link rel="stylesheet" type="text/css" href="../style.css" /> +#+html_head: <script src="https://polyfill.io/v3/polyfill.min.js?features=es6"></script> +#+html_head: <script id="MathJax-script" async src="https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-mml-chtml.js"></script> +#+options: broken-links:t + +* Definition +The Legendre Transformation represents a function in terms of the y-intercept of the tangent line at every point on the function. +we start with the equation for a tangent line: +\begin{align*} +y = mx + b +\end{align*} +However, the Legendre transform actually solves for $b$. For a general function $f(x)$ we define +the tangent line to a point on that function to be: +\begin{align*} +y = y'(x)x - b +\end{align*} +where subtracting $b$ is the convention, for some reason. Then solving for b: +\begin{align*} +b = y'(x)x - y +\end{align*} +The actual Legendre Transform requires $b$ to be a function of $y'$, therefore: +\begin{align*} +x(f') = (f'(x))^{-1} \\ +L\{f(x)\} = b(f') = f'x(f') - f((x(f')) +\end{align*} +In [[id:83da205c-7966-417e-9b77-a0a354099f30][Lagrangian mechanics]], the Hamiltonian can be defined as the Legendre transform of the Lagrangian. diff --git a/mindmap/Lorentz Force.org b/mindmap/Lorentz Force.org new file mode 100644 index 0000000..23aa782 --- /dev/null +++ b/mindmap/Lorentz Force.org @@ -0,0 +1,21 @@ +:PROPERTIES: +:ID: 658f3916-6b7f-4897-85c6-9acc82b13214 +:END: +#+title: Lorentz Force +#+author: Preston Pan +#+html_head: <link rel="stylesheet" type="text/css" href="../style.css" /> +#+html_head: <script src="https://polyfill.io/v3/polyfill.min.js?features=es6"></script> +#+html_head: <script id="MathJax-script" async src="https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-mml-chtml.js"></script> +#+options: broken-links:t + +* Definition +The Lorentz Force is an experimental law given by the equation: +\begin{align*} +\vec{F} = q(\vec{E} + \vec{v} \times \vec{B}) +\end{align*} +Where $q$ is the electric charge, $\vec{E}$ is the [[id:63656810-537f-42fc-a38a-1468d763b39a][Electric Field]], and $\vec{B}$ is the Magnetic Field. +For a continuous charge distribution: +\begin{align*} +\vec{F} = \rho\vec{E} + \vec{J} \times \vec{B} +\end{align*} +Where $\vec{J}$ is the electric current. diff --git a/mindmap/Maxwell's Equations.org b/mindmap/Maxwell's Equations.org new file mode 100644 index 0000000..187f7a5 --- /dev/null +++ b/mindmap/Maxwell's Equations.org @@ -0,0 +1,78 @@ +:PROPERTIES: +:ID: fde2f257-fa2e-469a-bc20-4d11714a515e +:END: +#+title: Maxwell's Equations +#+author: Preston Pan +#+html_head: <link rel="stylesheet" type="text/css" href="../style.css" /> +#+html_head: <script src="https://polyfill.io/v3/polyfill.min.js?features=es6"></script> +#+html_head: <script id="MathJax-script" async src="https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-mml-chtml.js"></script> +#+options: broken-links:t + +* Introduction +Maxwell's Equations are a set of four differential equations in multiple dimensions that produce a complete classical +theory of electromagnetic phenomena. + +* Derivations +These are the derivations of all four laws in their differential forms based on the [[id:2a543b79-33a0-4bc8-bd1c-e4d693666aba][inverse square]] law for [[id:32f0b8b1-17bc-4c91-a824-2f2a3bbbdbd1][electrostatics]] ([[id:5388f4e8-7bb8-452e-b997-fe9892aefcf3][Coulomb's Law]]), the [[id:658f3916-6b7f-4897-85c6-9acc82b13214][Lorentz Force]], +as well as the [[id:a871e62c-b4a0-4674-9dea-d377de2f780b][continuity equation]] and electromagnetic induction (which are just special cases of [[id:e38d94f2-8332-4811-b7bd-060f80fcfa9b][special relativity]]) as initial assumptions: +** Gauss' Law +This is given by the divergence of an [[id:2a543b79-33a0-4bc8-bd1c-e4d693666aba][inverse square]] field, specifically for an electric field which is the same as in [[id:32f0b8b1-17bc-4c91-a824-2f2a3bbbdbd1][electrostatics]]: +\begin{align*} +\vec{\nabla} \cdot \vec{E} = \frac{\rho}{\epsilon_{0}} +\end{align*} +** Divergence of Magnetic Field +The divergence of the magnetic field is the same as in [[id:5c36d0f1-06ad-436a-a56f-5ecc198b9b3e][magnetostatics]]: +\begin{align*} +\vec{\nabla} \cdot \vec{B} = 0 +\end{align*} +** Ampere's Law with Modifications +The [[id:5c36d0f1-06ad-436a-a56f-5ecc198b9b3e][magnetostatic]] magnetic field is given by the Bio-Savart Law, which can be derived from [[id:e38d94f2-8332-4811-b7bd-060f80fcfa9b][special relativity]] and [[id:5388f4e8-7bb8-452e-b997-fe9892aefcf3][Coulomb's Law]]: +\begin{align*} +\vec{B} = \frac{\mu_{0}}{4\pi}\int_{V}\frac{\vec{J} \times \hat{r}}{r^{2}}d\tau +\end{align*} +Now the curl of this field is given by [[id:5c36d0f1-06ad-436a-a56f-5ecc198b9b3e][magnetostatics]]: +\begin{align*} +\vec{\nabla} \times \vec{B} = \mu_{0}\vec{J} +\end{align*} +However, if you take the divergence of this equation, the left hand side reduces to zero by the definition of the [[id:4bfd6585-1305-4cf2-afc0-c0ba7de71896][del operator]], but the +right hand side does not always: +\begin{align*} +\vec{\nabla} \cdot \mu_{0}\vec{J} = \mu_{0} (\vec{\nabla} \cdot \vec{J}) \neq 0 +\end{align*} + +Given this problem, a correction is given via the [[id:a871e62c-b4a0-4674-9dea-d377de2f780b][continuity equation]]: +\begin{align*} +\vec{\nabla} \cdot \vec{J} = -\frac{\partial \rho}{\partial t} \\ +\epsilon_{0}(\vec{\nabla} \cdot \vec{E}) = \rho \\ +\vec{\nabla} \cdot \vec{J} = -\epsilon_{0}\vec{\nabla} \cdot \frac{\partial\vec{E}}{\partial t} +\end{align*} +So therefore when we account for the fact that $\vec{\nabla} \cdot \vec{\nabla} \times \vec{B} = 0$ +\begin{align*} +\vec{\nabla} \times \vec{B} = \mu_{0}\vec{J} + \mu_{0}\epsilon_{0}\frac{\partial\vec{E}}{\partial t} +\end{align*} +** Faraday's Law of Induction +By definition of electromagnetic induction (and to make Ampere's law consistent with relativity): +\begin{align*} +\vec{\nabla} \times \vec{E} = - \frac{\partial\vec{B}}{\partial t} +\end{align*} +Instead of assuming induction as an axiom, it is possible to fix Ampere's equation with the [[id:a871e62c-b4a0-4674-9dea-d377de2f780b][continuity equation]] first, and then +assume Lorentz symmetry. This explanation is a work in progress. +* Implications +Maxwell's Equations can be used to calculate all electromagnetic phenomena on the macro scale all the way down to the atom. +In practice, solving Maxwell's Equations can be analytically impossible, so several simplifying assumptions are often made. +To recap, these are the four equations: +\begin{align*} +\vec{\nabla} \cdot \vec{E} = \frac{\rho}{\epsilon_{0}} \\ +\vec{\nabla} \times \vec{E} = -\frac{\partial\vec{B}}{\partial t} \\ +\vec{\nabla} \cdot \vec{B} = 0 \\ +\vec{\nabla} \times \vec{B} = \mu_{0}\vec{J} + \mu_{0}\epsilon_{0}\frac{\partial\vec{E}}{\partial t} +\end{align*} +* Speed of Light +Maxwell's Equations can be shown to reproduce the speed of light in a vacuum, where: +\begin{align*} +\mu_{0}\epsilon_{0} = \frac{1}{c^{2}} +\end{align*} +* Relativity +It is known that Maxwell's Equations are consistent with [[id:e38d94f2-8332-4811-b7bd-060f80fcfa9b][special relativity]] and can be expressed +in terms of curved spacetime. In fact, if relativity is taken as an axiom, it can be proven that the electric +and magnetic fields are descriptions of the same phenomena; this can be taken as a specific example of a [[id:1b1a8cff-1d20-4689-8466-ea88411007d7][duality]]. diff --git a/mindmap/Newtonian mechanics.org b/mindmap/Newtonian mechanics.org index c78b1e3..7d4b414 100644 --- a/mindmap/Newtonian mechanics.org +++ b/mindmap/Newtonian mechanics.org @@ -54,12 +54,13 @@ In general, the total momentum is defined to be: \end{align*} And in real life, we observe that things can transfer momentum. That is: \begin{align*} -\vec{p}_{1} = -\vec{p}_{2} +\vec{p}_{1} = -\vec{p}_{2} + \vec{p}_{i} \end{align*} -When these two objects have the same position vector \( \vec{r}_{1} = \vec{r}_{2} \) (if they are point masses; don't have volume but have mass which is idealistic but works as an approximation). -Because this operation of momentum transfer is symmetrical: +Where $\vec{p}_{i}$ is the initial momentum of the objects. +this happens when these two objects have the same position vector \( \vec{r}_{1} = \vec{r}_{2} \) (if they are point masses; don't have volume but have mass which is idealistic but works as an approximation). +This operation of momentum transfer is symmetrical: \begin{align*} -\vec{p}_{2} = -\vec{p}_{1} +\vec{p}_{2} = -\vec{p}_{1} + \vec{p}_{i} \end{align*} Note that the fact that this operation is symmetrical must be the case to preserve the property: \begin{align*} diff --git a/mindmap/conservative force.org b/mindmap/conservative force.org index 83d1c36..9b01117 100644 --- a/mindmap/conservative force.org +++ b/mindmap/conservative force.org @@ -15,7 +15,7 @@ A conservative force has this property: \end{align*} In other words, work done by \(\vec{f}\) is path independent, because in any closed loop integral, you go from point \(\vec{a}\) to point \(\vec{b}\) and then back. If these forwards and backwards -paths end up canceling no matter what path you take, then it is clear that \(\vec{f}\) will do the +paths end up canceling no matter what path you take, then it is clear that \(\vec{f}\) will be the same amount of force no matter what path you take. Using Stokes' theorem: \begin{align*} \int_{S}(\vec{\nabla} \times \vec{f}) \cdot d\vec{a} = \oint\vec{f} \cdot d\vec{l} diff --git a/mindmap/continuity equation.org b/mindmap/continuity equation.org new file mode 100644 index 0000000..579e09a --- /dev/null +++ b/mindmap/continuity equation.org @@ -0,0 +1,24 @@ +:PROPERTIES: +:ID: a871e62c-b4a0-4674-9dea-d377de2f780b +:END: +#+title: continuity equation +#+author: Preston Pan +#+html_head: <link rel="stylesheet" type="text/css" href="../style.css" /> +#+html_head: <script src="https://polyfill.io/v3/polyfill.min.js?features=es6"></script> +#+html_head: <script id="MathJax-script" async src="https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-mml-chtml.js"></script> +#+options: broken-links:t + +* Derivation and Motivation +In continuum mechanics, the continuity equation is a statement about the inability for particles to teleport between +two different points in space. In other words, each particle must take a path between two points. In particular, if +$Q_{enc} = \int_{V} \rho(r')d\tau$ or $Q_{enc}$ is the total amount of particles inside some surface where $\rho$ is the density: +\begin{align*} +\oint_{S} \vec{J} \cdot d\vec{a} = -\frac{\partial Q_{enc}}{\partial t}, +\end{align*} +or in other words, the amount that the current goes through some closed surface must be proportional to the loss of particles +inside of the enclosure. This is of course because of conservation of mass (which is in and of itself conservation of energy). +Using the [[id:44e65b69-e5d5-464a-b1f3-8a914e1b7e9e][divergence theorem]]: +\begin{align*} +\int_{V}\vec{\nabla} \cdot \vec{J}d\tau = - \int_{V}\frac{\partial\rho}{\partial t}d\tau \\ +\vec{\nabla} \cdot \vec{J} = -\frac{\partial\rho}{\partial t} +\end{align*} diff --git a/mindmap/del operator.org b/mindmap/del operator.org index 7410e30..3d9e2f5 100644 --- a/mindmap/del operator.org +++ b/mindmap/del operator.org @@ -86,6 +86,15 @@ vector field "perpendicular" to the divergence of the field. In fact, if you hav you can represent this field as an addition of a curl-less field and a divergence-less field. Another way to think of it is that you are measuring the strength of rotational component of the vector field about a certain axis. +** directional derivative +:PROPERTIES: +:ID: e255eb0a-246b-4a4b-8db8-ac0d15d9cc3c +:END: +The directional derivative is defined as follows: +\begin{align*} +\vec{f} \cdot \vec{\nabla} = \sum_{i=0}^{n}f_{i}\frac{\partial}{\partial x_{i}} +\end{align*} +Which represents a superposition of states which corresponds to the direction you want to take the derivative in. ** Laplacian :PROPERTIES: :ID: 65004429-a6b7-41f2-8489-07605841da3d @@ -98,6 +107,6 @@ It returns a scalar field and is the multivariable analogue to the second deriva and gradient have been described, I feel it is trivial to understand the Laplacian. ** Product Rules -The product rules pertaining to the del operator are consistent with that of linear algebra. +The product rules pertaining to the del operator are consistent with that of linear algebra and single variable derivative rules. For example, \( \vec{\nabla} \times \vec{\nabla}f = 0\). You can show this yourself quite easily, so I find no need to go over it here. -When in doubt, just assume the del works the same way as any old vector, and you will usually be correct. +When in doubt, just assume the del works the same way as any old vector except you apply the [[id:d1e245f4-0b04-450e-8465-a9c85fe57f7e][product rule]], and you will usually be correct. diff --git a/mindmap/derivative.org b/mindmap/derivative.org index be84116..d046459 100644 --- a/mindmap/derivative.org +++ b/mindmap/derivative.org @@ -7,7 +7,6 @@ #+html_head: <script src="https://polyfill.io/v3/polyfill.min.js?features=es6"></script> #+html_head: <script id="MathJax-script" async src="https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-mml-chtml.js"></script> #+options: broken-links:t -#+OPTIONS: tex:dvipng * Derivation Let's say we want to know the rate of change of the [[id:b1f9aa55-5f1e-4865-8118-43e5e5dc7752][function]] \(f(x) = x^{2}\). Because this [[id:b1f9aa55-5f1e-4865-8118-43e5e5dc7752][function]] is not @@ -76,14 +75,17 @@ We derive many of them here. = \frac{d}{dx}f(x) + \frac{d}{dx}g(x) \end{align*} of course, subtraction works in the same way. -** Multiplication Rule +** product rule +:PROPERTIES: +:ID: d1e245f4-0b04-450e-8465-a9c85fe57f7e +:END: \begin{align*} \frac{d}{dx}(f(x)g(x)) = \lim_{h\to0}\frac{f(x + h)g(x + h) - f(x)g(x)}{h} = \lim_{h\to0}\frac{f(x + h)g(x + h) - f(x)g(x + h) + f(x)g(x + h) - f(x)g(x)}{h} \\ = \lim_{h\to0}\frac{g(x + h)(f(x + h) - f(x)) + f(x)(g(x + h) - g(x))}{h} \\ = g(x)\lim_{h\to0}\frac{f(x + h) - f(x)}{h} + f(x)\frac{g(x + h) - g(x)}{h} = g(x)f'(x) + g'(x)f(x) \end{align*} And using the this rule as well as the chain rule and power rule which we will show later, the division rule is easily acquired. -** Chain Rule +** chain rule :PROPERTIES: :ID: ffd1bc3d-ab64-4916-9c09-0c89d2731b6d :END: diff --git a/mindmap/divergence theorem.org b/mindmap/divergence theorem.org new file mode 100644 index 0000000..b2c6660 --- /dev/null +++ b/mindmap/divergence theorem.org @@ -0,0 +1,17 @@ +:PROPERTIES: +:ID: 44e65b69-e5d5-464a-b1f3-8a914e1b7e9e +:END: +#+title: divergence theorem +#+author: Preston Pan +#+html_head: <link rel="stylesheet" type="text/css" href="../style.css" /> +#+html_head: <script src="https://polyfill.io/v3/polyfill.min.js?features=es6"></script> +#+html_head: <script id="MathJax-script" async src="https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-mml-chtml.js"></script> +#+options: broken-links:t + +* Definition +The [[id:12a2d5b3-f98c-45e5-9107-5560288b5aa8][divergence]] theorem is a generalization of the one-dimensional fundamental theorem of calculus: +\begin{align*} +\int_{V}\vec{\nabla} \cdot \vec{f}(\vec{r})d\tau = \oint_{S}\vec{f}(\vec{r}) \cdot d\vec{a} +\end{align*} +it is a statement about conservation in physical systems: the outflow of force from the inside of a closed boundary has +to be equal to the amount of force at the boundaries. diff --git a/mindmap/duality.org b/mindmap/duality.org index cef6faa..c18db08 100644 --- a/mindmap/duality.org +++ b/mindmap/duality.org @@ -71,7 +71,9 @@ p \neq \neg p. This statement filters for binary, or as I would call it, dual mode frameworks, and gets around the principle of explosion. We have an intuitive understanding of truth and falsehood, and we can use those general terms whenever there is a mutually exclusive divide. In short, you can view the logical framework as an abstraction of all other dual frameworks. I propose that you can do analysis on all dual frameworks in much the same -way group theory does analysis on groups. +way [[id:ba7b95b0-0ce6-4b33-9a79-5e5fddaea710][group]] theory does analysis on groups. [[id:a6bc601a-7910-44bb-afd5-dffa5bc869b1][Mathematics]] in general has the same recursive binary structure to it, because it is based on a couple +of axioms and utilizes logic as an extrapolation mechanism. By [[id:4ed61028-811e-4425-b956-feca6ee92ba1][inheritance]], everything that utilizes [[id:a6bc601a-7910-44bb-afd5-dffa5bc869b1][mathematics]] is also an inherently dualistic +structure. * Programming Explains Duality Of course, there is logic in programming, but that is kind of boring. What I am going to explain here is a recursive, binary structure known @@ -120,7 +122,7 @@ into small tasks, which is needed for recursion to be finite. * Why duality, and not Any other Modality? This is a good question, and one that I've still yet to answer completely. However, I would still like to try my hand at this, because there are things that make the number two specially suited for the task of subdividing. -** Two is a Natural Number +** Two is a [[id:2d6fb5ac-a273-4b33-949c-37380d03c076][Natural Number]] From a biological perspective, we're probably more used to dealing with whole numbers. We did not even come up with the concept of any others until much later, and negative numbers, and even zero, were a construct invented much later as well. Yes, there are an infinite number of natural numbers, but at least it's a filter we can use. @@ -131,5 +133,5 @@ prime can be represented by a smaller factor of that number. For example, 4-alit What's interesting is that one is a factor of everything. This represents the "null filter", or "anti filter", which doesn't filter any data and simply represents it all as one thing. Very interesting. ** Two is small and not One -The number two is also the smallest natural number that is not one. This means it is the simplest way to subdivide any particular object. This makes +The number two is also the smallest [[id:2d6fb5ac-a273-4b33-949c-37380d03c076][natural number]] that is not one. This means it is the simplest way to subdivide any particular object. This makes it more elegant compared to some other modalities. diff --git a/mindmap/electrostatics.org b/mindmap/electrostatics.org index 55310de..6625d4c 100644 --- a/mindmap/electrostatics.org +++ b/mindmap/electrostatics.org @@ -14,6 +14,9 @@ defined by the charge that an object has that corresponds the force that it both to other objects. Charge is measured in coulombs and can be negative or positive, which leads us to the man himself: * Coulomb's Law +:PROPERTIES: +:ID: 5388f4e8-7bb8-452e-b997-fe9892aefcf3 +:END: In order to define the phenomena of electric force in the real world, we use this experimentally verified law known as Coulomb's Law. Let \( \vec{r_{1}} \) be the displacement of a charge \( Q \), and let \( \vec{r_{2}} \) be the displacement of a charge \( q \), where these two charges are named \( P_{1}\) and \( P_{2} \) respectively. @@ -53,6 +56,9 @@ but since this is electrostatics and not electrodynamics, you will not have to w magnetic constants. Again, it is just a shift from speed of light units to our mortal units. ** Electric Field +:PROPERTIES: +:ID: 63656810-537f-42fc-a38a-1468d763b39a +:END: Okay, now we can continue to defining the /electric field/ of a particle. Let's call \( P_{1} \) our /test charge/, and \( P_{2} \) our /source charge/. If we now want to measure the force on \( P_{1} \), our equation is going to be the same. However, we can define a field \( \vec{E(\vec{r})} \) such that: diff --git a/mindmap/emergence.org b/mindmap/emergence.org index 9c975a5..a2ea32e 100644 --- a/mindmap/emergence.org +++ b/mindmap/emergence.org @@ -4,6 +4,9 @@ #+title: emergence #+author: Preston Pan #+html_head: <link rel="stylesheet" type="text/css" href="style.css" /> +#+html_head: <script src="https://polyfill.io/v3/polyfill.min.js?features=es6"></script> +#+html_head: <script id="MathJax-script" async src="https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-mml-chtml.js"></script> +#+options: broken-links:t * Emergence systems are… Existent in many forms and at many levels. They are the fundamental building @@ -17,16 +20,42 @@ into a larger structure via simpler rules that each component follows. Entire systems such as [[id:a6bc601a-7910-44bb-afd5-dffa5bc869b1][mathematics]] can be explained in terms of a couple axioms, where all the theorems arising from those axioms are emergent from those axioms. At least, that is a relatively simple explanation, and does not capture the full -beauty of emergent systems. Therefore, I call apoun an example from daily life: +beauty of emergent systems. Therefore, I call upon an example from daily life: *** Societies At every scale, societies exhibit properties of emergence. For example, families and small communities comprise small areas of town, which comprise cities, which then make up provinces, and finally countries. In this particular example, we self organize into self-similar [[id:8f265f93-e5fd-4150-a845-a60ab7063164][recursive]] hierarchies. This is for a good reason; -in order for societies to scale, there need to be abstractions. Each level in the +in order for societies to scale, there needs to be abstractions. Each level in the hierarchy conveys more but less exact information, until we get to the national level which deals the most with aggregates. *** Markets Emergent -To use a particular hierarchy example, markets are emergent from barter in goods. +In order to define the emergence of markets, we must first define the emergence of +property rights. Property rights emerge when a society scales and is able to extract +value from more and more natural resources. Property rights come from two different +things: a need for certain people to use certain resources more or less often +(specialization, division of labor causes this, as well as belongings), and a need +for some incentive for people to maintain resources. When property is traded, a market +emerges, as well as a currency; a currency is simply the most fungible and liquid +asset that has a market. When goods are traded, both parties gain value from the trade. +In this way, the distribution of resources becomes more optimal the more consensual trade happens. +Capital, or resources used to produce other resources, are sold to people that believe +they have the skills to utilize the capital, from people that believe that the capital is suboptimally +allocated to them. Companies are simply contractually enforced percentage ownerships of capital. + +Prices are adjusted in markets according to supply and demand; they are a signal of the relative scarcity +of the good in question. High prices communicate to consumers that they should look for alternatives +due to the scarcity of the good, and low prices communicate to consumers that the resource is currently +widely available. + +This whole study of markets has lead to the study of human behavior known as economics. Although this +naive view of markets gives a good intuition about human behavior, it is an incomplete story. Economists +have made more particular statements about the state of economic affairs with the tools of [[id:a6bc601a-7910-44bb-afd5-dffa5bc869b1][mathematics]], +under neokeynesian theory. + +*** Languages Emergent + +* Key Takeaway +Emergence is the bootstrapping problem that attempts to solve the problem of induction. diff --git a/mindmap/factorial.org b/mindmap/factorial.org index 345fe39..2f738b1 100644 --- a/mindmap/factorial.org +++ b/mindmap/factorial.org @@ -5,4 +5,11 @@ #+author: Preston Pan #+options: num:nil #+html_head: <link rel="stylesheet" type="text/css" href="../style.css" /> -#+options: tex:dvipng + +* Introduction +The factorial [[id:b1f9aa55-5f1e-4865-8118-43e5e5dc7752][function]] $n!: \mathbb{N} \rightarrow \mathbb{N}$ describes the amount of ways one can arrange $n$ differentiable objects. In practice: +\begin{align*} +0! = 1 \\ +n! = (n - 1)! \times n +\end{align*} +is a [[id:8f265f93-e5fd-4150-a845-a60ab7063164][recursive]] definition of the factorial. diff --git a/mindmap/function.org b/mindmap/function.org index 07b86cb..716a1ec 100644 --- a/mindmap/function.org +++ b/mindmap/function.org @@ -8,8 +8,6 @@ #+html_head: <script id="MathJax-script" async src="https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-mml-chtml.js"></script> #+options: broken-links:t - - * Definition A function \( f(x) \) is a set \( S \) of ordered pairs that map the first value of the ordered pair to the second value in the ordered pair, where the first value may not have duplicates in the set \(S\). The map from the first value to the diff --git a/mindmap/group.org b/mindmap/group.org index 5fb0498..fb24bf8 100644 --- a/mindmap/group.org +++ b/mindmap/group.org @@ -28,3 +28,6 @@ An inverse is defined as follows: \begin{align*} \forall a \exists a^{-1} : a * a^{-1} = e \end{align*} + +* Motivation +In [[id:ece8bf94-4e3c-4939-a77a-9949c1ec0dc6][physics]], natural phenomena including conservation laws follow from group symmetries. diff --git a/mindmap/index.org b/mindmap/index.org index c2ffc5e..350a564 100644 --- a/mindmap/index.org +++ b/mindmap/index.org @@ -27,3 +27,57 @@ That won't stop me from stalking you and physically threatening you, though. Tee * How did you make it? This section of the website was made with ~org-roam~, an emacs package that allows you to make a web of notes, something close to a wiki. + +* I want to Break the Rules +No you don't. That being said, if you really want the list of all articles, here you go: +#+begin_src shell :results output raw :exports both +set -f +IFS=' +' +for f in $(ls | sort -r); +do + if [[ "$f" == "index.org" || "$f" == "README.org" ]]; then + continue + fi + printf -- "- [[file:$f][$f]]\n" +done +unset IFS +set +f +#+end_src + +#+RESULTS: +- [[file:stack.org][stack.org]] +- [[file:special relativity.org][special relativity.org]] +- [[file:self-assembly.org][self-assembly.org]] +- [[file:recursion.org][recursion.org]] +- [[file:python.org][python.org]] +- [[file:physics.org][physics.org]] +- [[file:partial derivative.org][partial derivative.org]] +- [[file:natural number.org][natural number.org]] +- [[file:mathematics.org][mathematics.org]] +- [[file:magnetostatics.org][magnetostatics.org]] +- [[file:logic.org][logic.org]] +- [[file:inverse square.org][inverse square.org]] +- [[file:inheritance.org][inheritance.org]] +- [[file:infinity.org][infinity.org]] +- [[file:induction.org][induction.org]] +- [[file:group.org][group.org]] +- [[file:function.org][function.org]] +- [[file:factorial.org][factorial.org]] +- [[file:everything.org][everything.org]] +- [[file:emergence.org][emergence.org]] +- [[file:electrostatics.org][electrostatics.org]] +- [[file:duality.org][duality.org]] +- [[file:divergence theorem.org][divergence theorem.org]] +- [[file:dirac delta.org][dirac delta.org]] +- [[file:derivative.org][derivative.org]] +- [[file:del operator.org][del operator.org]] +- [[file:continuity equation.org][continuity equation.org]] +- [[file:conservative force.org][conservative force.org]] +- [[file:central force.org][central force.org]] +- [[file:Newtonian mechanics.org][Newtonian mechanics.org]] +- [[file:Maxwell's Equations.org][Maxwell's Equations.org]] +- [[file:Lorentz Force.org][Lorentz Force.org]] +- [[file:Legendre Transformation.org][Legendre Transformation.org]] +- [[file:Lagrangian mechanics.org][Lagrangian mechanics.org]] +- [[file:Fourier Transform.org][Fourier Transform.org]] diff --git a/mindmap/induction.org b/mindmap/induction.org index 9ba2cbc..1cccbdc 100644 --- a/mindmap/induction.org +++ b/mindmap/induction.org @@ -7,4 +7,5 @@ #+html_head: <link rel="stylesheet" type="text/css" href="../style.css" /> #+options: tex:dvipng -* Placeholder +* Introduction +Induction is a concept. diff --git a/mindmap/infinity.org b/mindmap/infinity.org index b08e723..8d41105 100644 --- a/mindmap/infinity.org +++ b/mindmap/infinity.org @@ -3,7 +3,19 @@ :END: #+title: infinity #+author: Preston Pan -#+options: num:nil #+html_head: <link rel="stylesheet" type="text/css" href="../style.css" /> -#+options: tex:dvipng -* placeholder text +#+html_head: <script src="https://polyfill.io/v3/polyfill.min.js?features=es6"></script> +#+html_head: <script id="MathJax-script" async src="https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-mml-chtml.js"></script> +#+options: broken-links:t + +* Introduction +Infinity has been a concept that has caused many troubles in the realm of mathematics. Algebra with infinities +have not been easy to define in history, and there are limited cases of success in this endevour. Generally speaking, +we can add infinities to existing sets, and define ordering. For example, for real numbers, the set: +\begin{align*} +\mathbb{R}\cup \{-\infty, \infty \} +\end{align*} +extends the real numbers to include infinites. However, only order is well defined; algebra is generally not allowed. +\begin{align*} +\forall a \in \mathbb{R}, -\infty < a < \infty +\end{align*} diff --git a/mindmap/inverse square.org b/mindmap/inverse square.org index 52a3f61..132b322 100644 --- a/mindmap/inverse square.org +++ b/mindmap/inverse square.org @@ -63,7 +63,7 @@ And from 6 properties that seem like reasonable constraints, we derive the inver To formalize the sixth property by taking the flux through a sphere and showing it doesn't depend on \(\vec{r}\): \begin{align*} -kP_{1}P_{2}\oint\frac{\hat{r}}{r^{2}} \cdot d\vec{a} = kP_{1}P_{2}\oint\frac{1}{r^{2}}da = k\frac{P_{1}P_{2} 4\pi r^{2}}{r^{2}} = constant +kP_{1}P_{2}\oint\frac{\hat{r}}{r^{2}} \cdot d\vec{a} = kP_{1}P_{2}\frac{1}{r^{2}}\int da = k\frac{P_{1}P_{2} 4\pi r^{2}}{r^{2}} = constant \end{align*} Which is a result we will use later. @@ -127,7 +127,7 @@ k\int_{space}\sigma(\vec{r'})(3(x^{2} + y^{2} + z^{2})^{-\frac{3}{2}} - 3(x^{2} So is the divergence of this field zero? Well, not exactly. In order to understand why, we must ask: What happens to the divergence at \(\vec{0}\)? On first glance, it seems clearly undefined. After all, we're dividing by zero. However, after some amount of inspection, the assumption that our field's divergence is zero everywhere is incoherent. As we know from section one, he surface integral over a sphere of a point charge (flux) is a constant, -but if the divergence theorem is true, then the surface integral should also be zero, not constant. Because this flux is not \(\vec{r}\) dependent and therefore +but if the [[id:44e65b69-e5d5-464a-b1f3-8a914e1b7e9e][divergence theorem]] is true, then the surface integral should also be zero, not constant. Because this flux is not \(\vec{r}\) dependent and therefore is the same no matter how small the concentric ring is, the flux must come from the origin. We can model this behavior with the [[id:90574fea-88f4-4b80-9cda-32cff0bcb76d][dirac delta]] distribution. Our actual divergence is: @@ -147,7 +147,7 @@ includes the term \(\frac{1}{4\pi}\), we can just say: \vec{\nabla} \cdot \vec{f}(\vec{r''}) = k\sigma(\vec{r''}) \end{align*} -Where \(k\) in this case is a constant without the \(4\pi\) term. By the divergence theorem: +Where \(k\) in this case is a constant without the \(4\pi\) term. By the [[id:44e65b69-e5d5-464a-b1f3-8a914e1b7e9e][divergence theorem]]: \begin{align*} \int_{V}\vec{\nabla} \cdot \vec{f}d\tau = \int_{S}\vec{f} \cdot d\vec{a} = k\int_{V}\sigma(\vec{r''})d\tau = k\sigma_{enc.} \end{align*} diff --git a/mindmap/logic.org b/mindmap/logic.org new file mode 100644 index 0000000..b43a76b --- /dev/null +++ b/mindmap/logic.org @@ -0,0 +1,14 @@ +:PROPERTIES: +:ID: 29ebc4f9-0fd8-4203-8bfe-84f8558e09cf +:END: +#+title: logic +#+author: Preston Pan +#+html_head: <link rel="stylesheet" type="text/css" href="../style.css" /> +#+html_head: <script src="https://polyfill.io/v3/polyfill.min.js?features=es6"></script> +#+html_head: <script id="MathJax-script" async src="https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-mml-chtml.js"></script> +#+options: broken-links:t + +* Introduction +Logic is the foundation of everything mathematical, and can even study itself; this is known as metalogic. In order to +demonstrate logic, we must first demonstrate some axioms of logic, starting with propositional logic. +** Propositional Logic diff --git a/mindmap/magnetostatics.org b/mindmap/magnetostatics.org new file mode 100644 index 0000000..ea763e7 --- /dev/null +++ b/mindmap/magnetostatics.org @@ -0,0 +1,91 @@ +:PROPERTIES: +:ID: 5c36d0f1-06ad-436a-a56f-5ecc198b9b3e +:END: +#+title: magnetostatics +#+author: Preston Pan +#+html_head: <link rel="stylesheet" type="text/css" href="../style.css" /> +#+html_head: <script src="https://polyfill.io/v3/polyfill.min.js?features=es6"></script> +#+html_head: <script id="MathJax-script" async src="https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-mml-chtml.js"></script> +#+options: broken-links:t + +* Introduction +Magnetostatics is a little bit of an oxymoron; the magnetic field is created by a moving current of charges and a magnetic +field for a point charge is therefore hard to model or often wrong; because magnetostatics assumes a steady current, a point +charge moving cannot be replaced with another charge. However, for some continuous current distribution, the magnetic field is: +\begin{align*} +\vec{B} = \frac{\mu_{0}}{4\pi}\int_{V}\frac{\vec{J} \times \hat{r}}{r^{2}}dV +\end{align*} +Which is the Bio-Savart law. Later, we will derive this from the axioms of [[id:32f0b8b1-17bc-4c91-a824-2f2a3bbbdbd1][electrostatics]] and [[id:e38d94f2-8332-4811-b7bd-060f80fcfa9b][special relativity]]. + +* Divergence of B +The divergence of B is given by: +\begin{align*} +\vec{\nabla} \cdot \vec{B} = \frac{\mu_{0}}{4\pi}\int_{V}\frac{\vec{\nabla} \cdot (\vec{J} \times \hat{r})}{r^{2}}dV += \frac{\mu_{0}}{4\pi}\int_{V}\vec{\nabla} \cdot (\vec{J} \times \frac{\hat{r}}{r^{2}})dV \\ +\end{align*} +Now we want to evaluate $\vec{\nabla} \cdot \vec{J} \times \frac{\hat{r}}{r^{2}}$ using the [[id:4bfd6585-1305-4cf2-afc0-c0ba7de71896][del operator]] rules: +\begin{align*} +\vec{\nabla} \cdot \vec{J} \times \frac{\hat{r}}{r^{2}} = (\vec{\nabla} \times \vec{J}) \cdot \frac{\hat{r}}{r^{2}} - \vec{J} \cdot (\vec{\nabla} \times \frac{\hat{r}}{r^{2}}) +\end{align*} +And while $B$, and by extension $\vec{\nabla}$ is dependent on $\vec{r}$, the radial distance between two charges, +$\vec{J}$ is a function of $r'$, the position vector to a given charge. This, of course, means that $J$ does not +depend on any of the variables that we are taking the derivative over. Thus: +\begin{align*} +\vec{\nabla} \times \vec{J} = 0 +\end{align*} +Also, due to the [[id:2a543b79-33a0-4bc8-bd1c-e4d693666aba][inverse square]] law, the curl of $\frac{\hat{r}}{r^{2}}$ is zero, and therefore: +\begin{align*} +\vec{\nabla} \cdot \vec{J} \times \frac{\hat{r}}{r^{2}} = 0 +\end{align*} +And therefore: +\begin{align*} +\vec{\nabla} \cdot \vec{B} = 0 +\end{align*} +This is one of [[id:fde2f257-fa2e-469a-bc20-4d11714a515e][Maxwell's Equations]]. +* Curl of B +The curl of $\vec{B}$ is given by: +\begin{align*} +\vec{\nabla} \times \vec{B} = \frac{\mu_{0}}{4\pi}\int_{V}\frac{\vec{\nabla} \times (\vec{J} \times \hat{r})}{r^{2}}dV \\ += \frac{\mu_{0}}{4\pi}\int_{V}\vec{\nabla} \times (\vec{J} \times \frac{\hat{r}}{r^{2}})dV +\end{align*} +where $\vec{\nabla} \times \vec{J} \times \hat{r}$ is given by the [[id:4bfd6585-1305-4cf2-afc0-c0ba7de71896][del operator]] identity: +\begin{align*} +\vec{\nabla} \times (\vec{J} \times \frac{\hat{r}}{r^{2}}) = \vec{J}(\vec{\nabla} \cdot \frac{\hat{r}}{r^{2}}) - \frac{\hat{r}}{r^{2}}(\vec{\nabla} \cdot \vec{J}) + (\frac{\hat{r}}{r^{2}} \cdot \vec{\nabla})\vec{J} - (\vec{J} \cdot \vec{\nabla})\frac{\hat{r}}{r^{2}} +\end{align*} +Due to the [[id:2a543b79-33a0-4bc8-bd1c-e4d693666aba][inverse square]] law, we know that $\vec{\nabla} \cdot \frac{\hat{r}}{r^{2}} = 4\pi\delta(\vec{r})$; From the section above we know that $\vec{\nabla} \cdot \vec{J} = 0$; hence: +\begin{align*} +\vec{\nabla} \times (\vec{J} \times \frac{\hat{r}}{r^{2}}) = 4\pi\vec{J}(\vec{r'})\delta(\vec{r}) + (\frac{\hat{r}}{r^{2}} \cdot \vec{\nabla})\vec{J} - (\vec{J} \cdot \vec{\nabla})\frac{\hat{r}}{r^{2}} +\end{align*} +The first directional derivative is zero because $\vec{J}$ does not depend on the same coordinates as $\vec{\nabla}}$ +with the same reasoning as for the divergence, so we have: +\begin{align*} +\vec{\nabla} \times (\vec{J} \times \frac{\hat{r}}{r^{2}}) = 4\pi\vec{J}(\vec{r'})\delta(\vec{r}) - (\vec{J} \cdot \vec{\nabla})\frac{\hat{r}}{r^{2}} +\end{align*} +The second term reduces to zero for some reason (reason coming later; I currently do not know why). Now plugging this back into the original equation: +\begin{align*} +\vec{\nabla} \times \vec{B} = \frac{\mu_{0}}{4\pi}\int_{V}4\pi\vec{J}(r')\delta(\vec{r})dV \\ += \mu_{0}\int_{V}\vec{J}(r')\delta(\vec{r'} - \vec{r''})dV +\end{align*} +Where $r''$ is the location of the test particle. Now the [[id:90574fea-88f4-4b80-9cda-32cff0bcb76d][dirac delta]] distribution propreties under an integral: +\begin{align*} +\vec{\nabla} \times \vec{B} = \mu_{0}\vec{J}(\vec{r''}) +\end{align*} +or simply: +\begin{align*} +\vec{\nabla} \times \vec{B} = \mu_{0}\vec{J} +\end{align*} +This is for magnetostatics only; [[id:fde2f257-fa2e-469a-bc20-4d11714a515e][Maxwell's Equations]] offer a correction to this equation. +* The Vector Potential +We can define a /vector potential/ $\vec{A}(\vec{r})$ such that: +\begin{align*} +\vec{B} = \vec{\nabla} \times \vec{A} +\end{align*} +which is consistent with the fact that: +\begin{align*} +\vec{\nabla} \cdot \vec{B} = 0 +\end{align*} +By taking the divergence of both sides in the first equation in this section. When $\vec{J}$ is zero at infinity: +\begin{align*} +\vec{A} = \frac{\mu_{0}}{4\pi}\int_{V}\frac{\vec{J}}{r}d\tau +\end{align*} +The reasoning for this is not obvious, even to me. One could analogize this to the scalar potential for [[id:32f0b8b1-17bc-4c91-a824-2f2a3bbbdbd1][electrostatics]]. diff --git a/mindmap/mathematics.org b/mindmap/mathematics.org index d6d7065..dc51536 100644 --- a/mindmap/mathematics.org +++ b/mindmap/mathematics.org @@ -24,4 +24,7 @@ model using category theory. ** Mathematical Models *** [[id:ece8bf94-4e3c-4939-a77a-9949c1ec0dc6][Physics]] -This is a stub. +Physics is the study of the natural world and its laws, usually resorting to a mathematical framework. + +*** Economics +the study of human behavior; generally speaking, economists use mathematical models for models of the macroeconomy. diff --git a/mindmap/natural number.org b/mindmap/natural number.org index 9861df6..8b3f31a 100644 --- a/mindmap/natural number.org +++ b/mindmap/natural number.org @@ -13,8 +13,8 @@ I will start with the Peano arithmetic formulation. First, we define an immediat successor function $S:\mathbb{N}\rightarrow\mathbb{N}$ which effectively "adds one" (although we haven't defined addition yet), and a number we call $0 \in \mathbb{N}$. We then define an axiom: \begin{align*} -\forall n \in \mathbb{N} \; \nexists S(n) \; s.t. S(n) = 0; \\ -\forall n \in \mathbb{N} \; S(n) \in \mathbb{N}. +\forall n \in \mathbb{N}, \nexists S(n), s.t. S(n) = 0; \\ +\forall n \in \mathbb{N}, S(n) \in \mathbb{N}. \end{align*} which is equivalent to saying: adding one to any natural number makes it not equal to zero, and any natural number's successor is a natural number. Because zero is a natural number, we can define @@ -42,7 +42,7 @@ however, they don't allow for the ability for us to extrapolate properties of na ** [[id:16b06b82-99cc-4343-b171-fb2166c46a30][Induction]] Let's introduce our last axiom: \begin{align*} -\forall n \in \mathbb{N} \: \forall P(n) \; P(0) \land (P(n) \rightarrow P(S(n))) \rightarrow P(n) \; \forall n \in \mathbb{N} +\forall n \in \mathbb{N}, \forall P(x), P(0) \land (P(x) \rightarrow P(S(x))) \rightarrow P(n) \end{align*} now, this is the principle of [[id:16b06b82-99cc-4343-b171-fb2166c46a30][induction]] specific to natural numbers. What it is saying is that a property $P(n)$ is true for all $n$ if there is a "base case" $P(0)$ which is true, and you can show that $P(1)$ is diff --git a/mindmap/physics.org b/mindmap/physics.org index b70f829..f0fcf89 100644 --- a/mindmap/physics.org +++ b/mindmap/physics.org @@ -15,22 +15,31 @@ mathematical models postulate this, and non-mathematical models of the universe have been relegated to the study of metaphysics. * Fields in Physics +The current challenge in physics is uniting the big and the small; general relativity, and quantum mechanics. +There is no currently known theory that can describe [[id:2b8515d8-9f3c-44a3-a40d-147f6a2bbb25][everything]], and the very nature of this problem is one containing +many correspondences and [[id:1b1a8cff-1d20-4689-8466-ea88411007d7][dualities]]. ** Classical Mechanics Classical mechanics deals with fields of physics that do not deal with time dilation or quantum -weirdness. It is called classical mechanics because most of these theories were invented before +weirdness. It is called classical mechanics because most of these theories wer invented before their quantum or relativistic counterparts, and usually serve as a baseline understanding for the later topics. -*** Newtonian Mechanics +*** [[id:6e2a9d7b-7010-41da-bd41-f5b2dba576d3][Newtonian mechanics]] It all started when Newton created three (but really two) fundamental laws of the universe that governed all things. -*** Lagrangian Mechanics +*** [[id:83da205c-7966-417e-9b77-a0a354099f30][Lagrangian mechanics]] This is a different strain of classical mechanics. Instead of looking at direction and vectors, it looks at a single fundamental principle, even more fundamental than inertia and conservation of momentum: -optimization. We believe that nature always optimizes for some parameters in all physical phenomena. +optimization. We believe that nature always optimizes for some parameters in all physical phenomena. Almost +all physical theories including electromagnetism, general relativity, Newtonian mechanics, and even quantum mechanics can be explained +within the Lagrangian framework. *** Classical Electrodynamics Classical electrodynamics attempts to explain the electromagnetic force from a classical perspective. What is light? How does electricity actually work? All these questions you will find (half) answered in the study -of electrodynamics. -**** [[id:32f0b8b1-17bc-4c91-a824-2f2a3bbbdbd1][Electrostatics]] -This is a study of the force of particles with charge on another in a motionless context. It is the baseline -for studying more complicated electromagnetic theory. +of electrodynamics, giving rise to the complete theory encoded in [[id:fde2f257-fa2e-469a-bc20-4d11714a515e][Maxwell's Equations]]. +*** General Relativity +General Relativity aims unify gravity with [[id:e38d94f2-8332-4811-b7bd-060f80fcfa9b][special relativity]], in a unified theory of macroscopic forces +including classical electromagnetism. + +** Quantum Mechanics +Quantum mechanics renounces all hope of having a deterministic view of physics, and instead replaces direct causation +with statistical causation, at least according to some interpretations. diff --git a/mindmap/recursion.org b/mindmap/recursion.org index f500fb3..bfedaca 100644 --- a/mindmap/recursion.org +++ b/mindmap/recursion.org @@ -20,34 +20,35 @@ as [[id:42dbae12-827c-43c4-8dfc-a2cb1e835efa][self-assembly]] and it has deep co describe it in a mathematics context, and then a programming context. For demonstration purposes, I will use [[id:5d2e2f3b-96ac-4196-9baf-4c3d6d349c98][python]]. * [[id:a6bc601a-7910-44bb-afd5-dffa5bc869b1][Mathematics]] Describes Recursion -For this example, I will be using the factorial. One might define it like so: +For this example, I will be using the [[id:aed6b5dc-c2ec-4e8c-b793-538cd5d6e355][factorial]]. One might define it like so: \begin{align*} f: \mathbb{N}\rightarrow\mathbb{N}\ s.t. \\ f(0) = 1 \\ f(n) = nf(n - 1) \end{align*} -in other words, we want a function defined over [[id:2d6fb5ac-a273-4b33-949c-37380d03c076][natural numbers]] that is one when the input is zero, +in other words, we want a [[id:b1f9aa55-5f1e-4865-8118-43e5e5dc7752][function]] defined over [[id:2d6fb5ac-a273-4b33-949c-37380d03c076][natural numbers]] that is one when the input is zero, and otherwise multiplies the input with a copy of itself, only the input is one less. Let's try evaluating -this function at $x = 3$. +this [[id:b1f9aa55-5f1e-4865-8118-43e5e5dc7752][function]] at $x = 3$. \begin{align*} -f(3) = 3 * f(3 - 1) = 3 * f(2) \\ -f(2) = 2 * f(1) \\ -f(1) = 1 * f(0) \\ +f(3) = 3f(3 - 1) = 3f(2) \\ +f(2) = 2f(1) \\ +f(1) = 1f(0) \\ f(0) = 1 \end{align*} once we substitute $f(0) = 1$ in, you will see it all collapses. \begin{align*} f(0) = 1 \\ -f(1) = 1 * f(0) = 1 * 1 = 1 \\ -f(2) = 2 * f(1) = 2 * 1 = 2 \\ -f(3) = 3 * f(2) = 3 * 2 = 6 +f(1) = 1f(0) = 1 \times 1 = 1 \\ +f(2) = 2f(1) = 2 \times 1 = 2 \\ +f(3) = 3f(2) = 3 \times 2 = 6 \end{align*} and so the result is multiplying $3 * 2 * 1 * 1 = 6$. If you observe what we did, you'll see that we started by trying to replace unknown variables by trying to evaluate $f(x)$ one number down, and eventually we reach a "base case" -- zero. As soon as the "base case" occurs, we then "go back up" by replacing all the unknown values with known ones -- and that's how we evaluate recursive functions. + * Programming Describes Recursion -Even if you don't understand programming, it should be clear that this represents the factorial function: +Even if you don't understand programming, it should be clear that this represents the [[id:aed6b5dc-c2ec-4e8c-b793-538cd5d6e355][factorial]] [[id:b1f9aa55-5f1e-4865-8118-43e5e5dc7752][function]]: #+begin_src python :exports both def factorial(x): if x < 0: @@ -130,5 +131,4 @@ Assembly language section coming soon! We will be using NASM due to its readabil * TODO Recursion Describes…? * TODO Recursion is not Recursive -There are some things * TODO Recursion = [[id:1b1a8cff-1d20-4689-8466-ea88411007d7][duality]]? diff --git a/mindmap/special relativity.org b/mindmap/special relativity.org new file mode 100644 index 0000000..ffb4cb7 --- /dev/null +++ b/mindmap/special relativity.org @@ -0,0 +1,68 @@ +:PROPERTIES: +:ID: e38d94f2-8332-4811-b7bd-060f80fcfa9b +:END: +#+title: special relativity +#+author: Preston Pan +#+html_head: <link rel="stylesheet" type="text/css" href="../style.css" /> +#+html_head: <script src="https://polyfill.io/v3/polyfill.min.js?features=es6"></script> +#+html_head: <script id="MathJax-script" async src="https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-mml-chtml.js"></script> +#+options: broken-links:t + +* Motivation +[[id:6e2a9d7b-7010-41da-bd41-f5b2dba576d3][Newtonian mechanics]] is proven to be experimentally effective for macroscopic phenomena. However, it fails in the attempt +to unify it with [[id:fde2f257-fa2e-469a-bc20-4d11714a515e][Maxwell's Equations]]; the speed of light and electromagnetic radiation in general confirmed by Maxwell's equations +are invariant to relative speed; this is in contradiction to the Galilean velocity addition that Newtonian mechanics postulates: +\begin{align*} +\vec{v} = \vec{v}_{1} + \vec{v}_{2} +\end{align*} +Where $\vec{v}_{1}$ and $\vec{v}_{2}$ are the speeds of the two objects, and $\vec{v}$ is the relative velocity between the two. The contradiction lies in the +attempt to do this type of velocity addition with the speed of light. The speed of light must remain invariant including the relative +speed (all experiments thus far confirm this and Maxwell's equations have an absolute velocity of the speed of light in a vacuum), +but when another object is moving relative to light, it results in something lesser or greater than the speed of light, even though +it must remain the same. To solve this, we must add another two postulates to Newtonian mechanics: +1. The speed of light must remain constant under all reference frames. +2. The laws of physics remain consistent within all inertial reference frames. +The result of these two additions is known as the /special theory of relativity/. + +* Derivation of Gamma Factor +Suppose Bob is on a train, where the train is moving at a constant speed to the right $\vec{v}$. Alice is outside of the train observing +Bob. Now Alice and Bob decide to use a clock to keep track of time; they do this by calculating the amount of times light +bounces from the floor to the roof of the train on mirrors. Note that the method by which they keep track of time doesn't matter, and +who keeps track of time doesn't matter, as we will see. All that matters is that nothing can move faster than the speed of light, so +no information can either; light in this case can be replaced with something else that can keep track of time in the same way. In any case, +once the light reaches the roof from the floor, where this distance is $d$ meters, $\frac{d}{c}$ seconds will have passed for Bob. + +#+caption: A very scientifically accurate drawing of the situation +#+attr_html: :width 300px +[[../img/relativity1.jpg]] + +Now this image is from Bob's perspective; when we switch to Alice's perspective, we gain a new insight; that /light has to travel the same speed for her/, but +it has a larger distance to travel because of the train's velocity. + +#+caption: Light ray from Alice's perspective +#+attr_html: :width 300px +[[../img/relativity2.jpg]] + +from this diagram, we can gather that the amount of time it takes for light to reach the roof will be longer. +Also, we can see that if Alice believes in Bob's clock, her time would be: +\begin{align*} +t' = \frac{d}{\sqrt{c^{2} - v^{2}}} +\end{align*} +which is considerably different from the $\frac{d}{c}$ we got for Bob. This means that using the same clock can cause /different time measurements/ between the two +people. The gamma factor is defined as: +\begin{align*} +\gamma = \frac{t'}{t} \\ +\gamma = \frac{d}{\sqrt{c^{2} - v^{2}}}\frac{c}{d} \\ += \frac{c}{\sqrt{c^{2} - v^{2}}} \\ += \frac{c}{\frac{c}{c}\sqrt{c^{2} - v^{2}}} \\ +\gamma = \frac{1}{\sqrt{1 - \frac{v^{2}}{c^{2}}}} +\end{align*} +Note that the gamma factor is independent of distance traveled, which lets us calculate our relativistic time: +\begin{align*} +\gamma t = t' +\end{align*} +There is a profound implication from this realization, and that is that it is not sufficient to view time in an objective way; time measurements +are inertial reference frame dependent. This process where time slows down for the moving reference frame is called /time contraction/. +* Space Contraction +Now we introduce the idea of /space contraction/; just like how time can slow down for moving inertial reference frames with respect to other +reference frames, space can also contract in the same way. Imagine a light ray that goes from one side of the train to the other. diff --git a/mstile-150x150.png b/mstile-150x150.png Binary files differnew file mode 100644 index 0000000..8e1fd5d --- /dev/null +++ b/mstile-150x150.png diff --git a/robots.txt b/robots.txt new file mode 100644 index 0000000..eb05362 --- /dev/null +++ b/robots.txt @@ -0,0 +1,2 @@ +User-agent: * +Disallow: diff --git a/safari-pinned-tab.svg b/safari-pinned-tab.svg new file mode 100644 index 0000000..47377e2 --- /dev/null +++ b/safari-pinned-tab.svg @@ -0,0 +1,4100 @@ +<?xml version="1.0" standalone="no"?> +<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 20010904//EN" + "http://www.w3.org/TR/2001/REC-SVG-20010904/DTD/svg10.dtd"> +<svg version="1.0" xmlns="http://www.w3.org/2000/svg" + width="1123.000000pt" height="1123.000000pt" viewBox="0 0 1123.000000 1123.000000" + preserveAspectRatio="xMidYMid meet"> +<metadata> +Created by potrace 1.14, written by Peter Selinger 2001-2017 +</metadata> +<g transform="translate(0.000000,1123.000000) scale(0.100000,-0.100000)" +fill="#000000" stroke="none"> +<path d="M5406 9973 c-3 -4 -12 -8 -20 -9 -7 -1 -30 -13 -52 -26 -21 -13 -54 +-30 -71 -37 -18 -8 -33 -17 -33 -22 0 -5 -7 -9 -15 -9 -8 0 -15 -4 -15 -10 0 +-5 -3 -9 -7 -9 -22 4 -33 -3 -33 -18 0 -15 2 -15 9 -4 5 8 17 16 25 17 9 1 14 +-2 10 -7 -3 -5 -10 -7 -15 -4 -12 8 -11 -2 2 -27 6 -11 7 -18 2 -16 -4 3 -16 +-3 -25 -14 -14 -14 -15 -18 -4 -18 8 0 18 5 21 10 4 6 11 8 16 5 5 -4 9 -1 9 +5 0 6 5 8 10 5 17 -10 11 7 -6 20 -15 10 -15 13 1 28 10 11 12 17 4 17 -6 0 0 +9 14 20 15 12 33 18 44 14 15 -5 16 -4 3 6 -12 9 -11 10 9 5 15 -5 21 -3 17 3 +-10 17 13 25 31 10 15 -11 16 -11 10 4 -4 12 0 21 13 28 11 6 20 8 20 4 0 -3 +7 -1 15 6 11 9 15 9 15 1 0 -7 5 -9 11 -5 8 4 7 9 -2 16 -11 8 -11 9 1 5 8 -2 +14 -10 13 -16 -2 -6 2 -11 7 -11 6 0 9 -3 9 -7 -3 -21 2 -34 11 -28 6 4 8 10 +5 15 -3 5 0 12 6 16 8 4 9 3 5 -4 -4 -7 -1 -12 9 -12 12 0 15 -5 11 -16 -4 -9 +-1 -14 6 -12 6 2 12 11 14 20 2 16 -29 32 -56 28 -8 -1 -12 1 -8 6 4 4 0 13 +-10 20 -20 15 -26 17 -36 7z"/> +<path d="M5370 9928 c0 -5 -3 -7 -7 -5 -5 3 -9 -6 -9 -19 -1 -13 2 -24 7 -24 +5 0 8 3 8 8 -4 21 4 28 31 28 27 0 35 -7 31 -28 0 -5 4 -8 9 -8 13 0 12 10 -3 +35 -12 21 -67 31 -67 13z"/> +<path d="M5522 9899 c-13 -21 -39 -21 -34 0 4 19 -17 12 -28 -10 -11 -19 -33 +-23 -30 -5 1 5 -5 13 -14 18 -17 10 -49 -3 -46 -18 3 -18 -19 -14 -30 5 -6 12 +-15 21 -21 21 -6 0 -8 -4 -4 -9 8 -13 -30 -32 -48 -25 -15 6 -30 -10 -34 -36 +-1 -8 -7 -16 -13 -18 -7 -3 -4 -10 7 -18 17 -13 17 -15 -1 -29 -10 -8 -22 -12 +-26 -10 -4 3 -15 -6 -24 -20 -9 -14 -12 -25 -7 -25 5 0 13 5 16 10 4 6 11 8 +16 5 5 -4 9 2 9 12 0 10 4 14 8 8 4 -5 16 -11 27 -13 l20 -3 -20 17 c-13 11 +-15 15 -4 11 12 -4 15 3 15 33 0 21 -4 36 -9 33 -5 -3 -4 4 2 16 14 25 23 28 +15 4 -4 -13 -3 -14 3 -5 6 7 17 10 28 6 12 -5 16 -4 11 4 -3 6 -1 14 5 18 7 4 +10 3 6 -2 -3 -5 18 -10 46 -11 33 -1 46 2 36 8 -23 14 -5 10 29 -7 35 -17 56 +-11 48 15 -5 12 -3 12 8 -3 14 -17 16 -17 31 -2 9 9 21 14 26 11 5 -4 9 -1 9 +4 0 8 6 8 18 0 19 -12 26 -39 11 -39 -5 0 -6 -7 -3 -15 4 -8 10 -12 15 -9 5 3 +7 10 4 15 -6 8 8 13 28 10 4 0 7 2 7 7 0 9 -71 49 -78 44 -3 -2 -8 1 -11 7 -4 +6 -12 2 -19 -10z"/> +<path d="M5520 9865 c-7 -9 -19 -14 -26 -11 -7 3 -16 1 -20 -5 -3 -5 -14 -7 +-24 -4 -13 4 -22 -1 -31 -16 -10 -20 -9 -21 7 -15 11 4 24 8 29 9 6 1 14 7 18 +12 5 6 6 1 3 -11 -5 -14 -2 -21 9 -21 11 0 14 7 9 21 -4 17 -3 18 5 6 10 -15 +12 -13 15 13 1 6 9 11 19 9 11 -2 15 2 11 13 -8 19 -9 19 -24 0z"/> +<path d="M5552 9863 c2 -12 -3 -18 -14 -17 -10 1 -16 -1 -16 -5 1 -3 -5 -19 +-15 -36 -9 -16 -16 -24 -17 -17 0 7 -4 11 -9 7 -6 -3 -14 1 -18 10 -8 14 -11 +14 -28 -1 -11 -8 -13 -12 -5 -8 12 6 13 4 3 -7 -7 -7 -13 -18 -13 -23 1 -6 9 +-1 19 12 11 12 21 18 23 13 6 -17 68 -18 68 0 0 5 -5 7 -12 3 -7 -4 -8 -3 -4 +5 4 6 12 8 18 5 8 -5 9 -1 5 10 -4 9 -3 15 2 11 5 -3 11 -2 14 2 2 5 2 3 1 -4 +-2 -6 4 -14 13 -17 11 -5 13 -2 8 11 -4 10 -7 28 -6 41 0 12 -4 22 -10 22 -5 +0 -9 -8 -7 -17z"/> +<path d="M5315 9850 c-4 -6 -13 -9 -21 -6 -7 3 -18 -3 -23 -13 -11 -20 -8 -54 +5 -58 13 -4 40 15 31 23 -3 4 -12 2 -20 -4 -10 -8 -13 -6 -14 9 -1 10 3 19 8 +19 6 0 7 5 3 12 -4 7 -3 8 5 4 6 -4 9 -12 6 -17 -8 -12 6 -11 25 1 13 9 13 10 +0 10 -13 0 -13 1 0 10 8 5 12 12 8 15 -3 4 -9 1 -13 -5z"/> +<path d="M5339 9849 c-1 -5 -2 -14 -3 -19 0 -6 -5 -14 -11 -18 -12 -8 -13 -37 +-2 -48 4 -4 7 -3 8 2 0 5 3 18 5 29 3 11 6 25 6 30 1 6 9 11 19 11 10 0 15 -4 +13 -8 -3 -4 0 -8 5 -8 13 0 14 11 3 25 -9 13 -42 16 -43 4z"/> +<path d="M5405 9852 c-6 -4 -10 -14 -10 -22 0 -10 -8 -14 -22 -13 -22 3 -25 +-1 -25 -32 0 -34 3 -45 12 -45 12 0 13 27 1 32 -5 2 3 12 17 22 l27 20 -19 +-22 c-19 -22 -19 -22 5 -18 13 3 25 5 27 5 1 1 -2 9 -7 19 -6 11 -6 24 1 36 +11 20 8 29 -7 18z"/> +<path d="M5635 9850 c-4 -6 -10 -8 -15 -5 -8 5 -25 -23 -22 -37 1 -5 -3 -8 -9 +-8 -5 0 -7 -4 -4 -10 3 -5 11 -10 17 -10 6 0 8 3 5 7 -4 3 3 14 15 22 13 9 24 +24 26 34 3 19 -3 23 -13 7z"/> +<path d="M5132 9822 c-8 -11 -11 -12 -7 -2 4 10 1 9 -8 -3 -8 -10 -21 -16 -28 +-15 -7 2 -15 -5 -17 -16 -2 -12 0 -16 7 -11 6 3 8 11 5 17 -4 7 -2 8 5 4 6 -4 +8 -12 5 -18 -5 -8 -1 -9 10 -5 10 4 21 7 24 7 4 0 0 5 -8 10 -13 8 -12 10 5 +11 11 1 23 1 28 0 9 -1 9 11 -1 26 -6 9 -11 8 -20 -5z"/> +<path d="M5652 9833 c3 -9 -45 -63 -55 -63 -3 0 -13 7 -21 16 -9 8 -22 14 -29 +11 -7 -2 1 -11 18 -21 18 -10 22 -15 9 -11 -14 4 -21 1 -21 -10 0 -18 26 -15 +61 8 16 11 24 23 20 30 -4 7 -4 9 1 5 4 -4 14 -1 22 7 8 8 20 15 26 15 9 0 9 +-2 0 -8 -8 -5 -9 -13 -3 -22 6 -9 4 -20 -3 -29 -10 -11 -9 -13 3 -9 8 3 14 14 +13 26 -1 11 4 23 13 26 9 3 12 2 9 -4 -4 -6 -1 -9 7 -8 7 2 12 -3 10 -10 -2 +-9 4 -11 18 -7 11 4 20 2 20 -4 0 -6 3 -10 8 -9 4 1 18 -2 31 -6 19 -7 21 -10 +10 -18 -11 -8 -10 -8 4 -4 26 8 41 -3 26 -20 -7 -9 -8 -14 -1 -14 6 0 14 5 17 +10 3 6 12 10 18 10 7 0 6 -4 -3 -11 -12 -9 -11 -10 7 -6 14 3 20 1 17 -8 -6 +-14 23 -41 33 -31 4 3 -2 13 -13 22 -18 14 -18 15 4 4 12 -6 22 -7 22 -3 0 4 +-10 13 -23 19 -70 33 -173 89 -178 97 -3 5 -9 8 -13 8 -3 -1 -22 6 -42 14 -42 +17 -45 18 -42 8z"/> +<path d="M5166 9805 c-9 -26 -7 -32 5 -12 6 10 9 21 6 23 -2 3 -7 -2 -11 -11z"/> +<path d="M5128 9779 c-11 -11 -27 -17 -40 -15 -13 3 -27 5 -31 5 -5 1 -5 5 -2 +11 3 6 -1 7 -9 4 -9 -3 -16 -10 -16 -16 0 -5 -3 -7 -8 -4 -4 2 -15 -2 -25 -9 +-12 -8 -14 -15 -7 -20 5 -3 7 -11 4 -17 -5 -7 -2 -8 5 -4 7 5 10 15 7 23 -4 9 +-2 11 6 7 7 -5 8 -2 3 7 -5 8 -5 11 0 7 4 -4 14 -3 22 4 8 6 13 7 12 2 -4 -21 +2 -28 12 -14 8 12 9 11 5 -6 -5 -14 -2 -21 9 -21 10 0 14 7 10 21 -3 12 -2 15 +1 8 5 -10 9 -10 22 0 12 10 16 10 19 0 3 -6 10 -9 16 -6 8 5 8 2 0 -7 -7 -7 +-13 -17 -13 -22 0 -4 6 -5 13 -1 7 5 6 0 -3 -11 -13 -16 -13 -18 0 -13 8 2 15 +11 15 19 0 8 4 19 8 25 4 7 1 14 -7 17 -9 4 -12 14 -9 26 6 25 3 25 -19 0z"/> +<path d="M5630 9763 c-18 -21 -29 -31 -25 -23 4 8 -3 4 -14 -10 -18 -21 -20 +-22 -15 -5 5 16 4 17 -5 5 -10 -13 -12 -13 -20 0 -5 8 -7 18 -5 22 3 4 -1 8 +-8 8 -10 0 -9 3 2 11 12 9 11 9 -5 3 -11 -4 -29 -7 -40 -7 -14 0 -21 -6 -22 +-19 -2 -15 1 -17 12 -8 11 9 16 7 23 -7 5 -10 7 -25 4 -33 -5 -13 -3 -13 12 +-1 15 13 15 16 1 40 -14 23 -13 23 9 -3 18 -22 22 -34 15 -47 -12 -24 -12 -25 +12 -26 16 -2 18 1 9 12 -9 11 -7 16 7 23 10 5 24 7 31 5 7 -3 12 -1 11 4 -1 4 +3 19 9 33 6 14 11 19 11 12 1 -7 7 -10 14 -7 6 4 5 1 -3 -7 -21 -19 -23 -38 +-3 -38 9 0 13 3 10 7 -4 3 -2 12 5 20 6 7 8 16 5 20 -4 3 -3 11 3 17 5 7 5 18 +1 25 -6 9 -17 2 -41 -26z m40 13 c0 -2 -7 -7 -16 -10 -8 -3 -12 -2 -9 4 6 10 +25 14 25 6z"/> +<path d="M5707 9778 c3 -6 -7 -23 -23 -39 -15 -16 -24 -29 -21 -29 4 0 3 -10 +-4 -21 -7 -13 -7 -19 -1 -15 6 3 13 2 17 -4 3 -5 11 -10 17 -10 6 0 3 10 -8 +22 -15 19 -16 20 -1 9 12 -9 17 -10 17 -2 0 6 -7 14 -15 17 -11 5 -12 9 -2 19 +10 11 13 10 20 -1 5 -8 13 -12 19 -8 6 4 5 10 -3 15 -11 7 -11 9 1 9 13 0 13 +1 0 11 -13 9 -13 10 0 6 8 -2 14 -10 13 -16 -4 -13 7 -14 27 -1 17 10 6 25 +-18 25 -9 0 -16 5 -15 11 1 6 -4 11 -12 11 -8 0 -12 -4 -8 -9z"/> +<path d="M5440 9765 c-9 -10 -17 -12 -30 -5 -14 7 -21 4 -34 -13 -13 -19 -17 +-20 -28 -7 -15 18 -35 23 -72 21 -16 -1 -17 -4 -8 -13 10 -10 14 -10 21 0 6 +10 10 10 20 -1 9 -12 6 -18 -14 -31 -14 -9 -23 -21 -19 -27 3 -6 11 -4 18 7 +12 15 13 15 29 -1 9 -9 17 -12 17 -6 0 5 -4 12 -10 16 -5 3 -7 12 -4 20 9 23 +23 7 20 -23 -1 -18 -7 -26 -17 -24 -9 1 -16 -5 -16 -13 0 -11 6 -14 16 -9 20 +9 42 9 61 0 11 -5 16 0 17 15 2 16 -1 18 -12 9 -22 -18 -39 21 -20 46 11 15 +15 16 16 4 1 -8 1 -19 0 -24 -1 -5 5 -6 13 -3 9 4 19 -1 24 -10 6 -10 12 -12 +16 -5 4 6 -5 19 -19 28 -30 19 -25 32 10 29 14 -2 27 1 31 6 3 5 0 9 -6 9 -6 +0 -8 5 -5 10 9 15 -1 12 -15 -5z"/> +<path d="M5775 9739 c-4 -10 -10 -17 -14 -14 -5 2 -17 -2 -27 -9 -15 -11 -22 +-12 -33 -3 -12 10 -13 9 -5 -3 11 -18 13 -80 2 -74 -5 3 -8 1 -8 -4 0 -6 7 +-13 16 -16 13 -5 14 -9 4 -21 -9 -11 -8 -14 9 -12 15 1 20 6 15 17 -3 8 -7 22 +-8 30 0 8 -5 19 -11 23 -5 5 -1 6 11 3 14 -5 21 -2 21 9 0 10 -7 14 -21 10 +-12 -3 -15 -2 -8 1 6 3 10 10 7 15 -4 5 2 6 11 2 11 -4 15 -3 10 5 -3 6 -1 14 +5 18 8 4 9 3 5 -4 -4 -7 -3 -12 2 -12 5 0 14 10 21 23 11 22 11 22 5 -3 -5 +-20 -4 -23 7 -13 18 18 20 41 4 47 -8 3 -17 -4 -20 -15z"/> +<path d="M5017 9726 c-10 -14 -15 -26 -11 -26 4 0 0 -7 -7 -17 -12 -14 -12 +-16 1 -11 8 3 14 14 13 24 -1 18 -1 18 12 1 8 -12 15 -14 20 -8 3 6 2 11 -3 +11 -5 0 -9 7 -9 16 0 15 2 15 13 -1 7 -9 10 -24 7 -32 -5 -13 -3 -13 16 -2 12 +8 17 15 11 17 -6 2 -8 8 -4 13 3 5 1 8 -5 7 -5 -2 -16 5 -23 16 -14 17 -15 17 +-31 -8z"/> +<path d="M5104 9739 c-4 -7 -9 -28 -11 -48 -4 -35 -3 -35 12 -16 9 11 13 14 9 +6 -4 -9 -3 -12 4 -7 6 3 14 1 18 -5 4 -8 9 -7 15 2 7 12 9 12 9 0 0 -11 3 -11 +15 -1 9 7 12 16 7 19 -6 3 -4 12 4 19 11 10 14 10 14 0 0 -9 3 -9 11 2 9 12 +10 12 5 -3 -4 -12 -2 -17 6 -14 7 2 12 11 12 20 -1 9 3 14 9 10 6 -3 7 -1 3 5 +-5 9 -13 9 -27 2 -10 -6 -19 -7 -19 -3 0 3 -13 -6 -30 -22 -28 -27 -44 -28 +-45 -2 -1 7 -7 11 -15 9 -11 -1 -10 2 3 12 11 8 14 17 8 20 -5 4 -13 1 -17 -5z"/> +<path d="M4953 9733 c-7 -3 -13 -12 -13 -21 0 -14 2 -14 13 -1 6 8 11 12 10 +10 -2 -2 2 -10 8 -17 7 -8 7 -14 -1 -19 -8 -5 -8 -10 0 -20 8 -9 8 -15 0 -20 +-6 -3 -8 -11 -4 -16 3 -6 12 -3 21 8 11 14 16 15 20 5 4 -10 10 -9 26 5 12 10 +17 12 12 4 -6 -10 -4 -13 7 -9 8 4 21 2 29 -2 9 -6 21 -3 34 8 18 15 18 15 7 +0 -8 -9 -9 -19 -4 -22 12 -7 25 22 16 35 -3 5 -12 5 -22 0 -22 -11 -44 -3 -35 +12 5 9 3 9 -8 0 -9 -7 -20 -8 -28 -3 -9 5 -22 4 -32 -3 -23 -14 -36 -2 -19 18 +10 12 10 15 0 15 -7 0 -10 6 -7 14 6 16 -11 26 -30 19z"/> +<path d="M5255 9718 c-10 -30 -33 -42 -52 -27 -10 7 -15 9 -10 4 9 -10 -22 +-47 -34 -39 -8 5 -12 -9 -6 -22 4 -10 -35 -27 -42 -18 -3 5 -12 10 -18 12 -7 +1 -19 3 -25 5 -7 1 -12 -3 -11 -10 2 -7 -4 -10 -12 -7 -8 4 -12 11 -8 18 4 6 +-1 5 -11 -3 -14 -12 -19 -12 -25 -2 -6 10 -10 9 -15 -4 -7 -19 0 -35 16 -35 6 +0 7 5 2 13 -5 7 -2 5 7 -5 17 -18 34 -13 21 7 -4 6 1 3 10 -7 16 -18 17 -18 +23 2 3 11 11 20 17 20 6 0 8 -3 5 -6 -3 -4 -2 -15 3 -25 8 -13 6 -21 -7 -29 +-16 -10 -16 -11 2 -5 11 4 25 8 32 8 7 0 15 7 18 15 4 11 8 12 20 2 11 -9 14 +-8 12 9 -2 25 -6 26 -34 6 -19 -13 -22 -13 -27 1 -3 8 -2 12 3 9 15 -9 60 16 +67 38 3 11 9 16 13 11 8 -12 31 -16 31 -6 0 4 -6 14 -12 22 -11 12 -10 12 4 2 +13 -10 17 -10 22 0 3 7 4 4 1 -8 -4 -14 0 -21 10 -21 11 0 14 7 9 21 -4 15 -3 +17 4 7 7 -9 12 -10 16 -2 4 6 0 14 -9 17 -13 5 -10 11 15 29 l31 23 -26 -2 +c-14 0 -28 -8 -30 -18z"/> +<path d="M5436 9731 c-4 -5 4 -17 16 -25 26 -19 42 -21 32 -4 -4 6 -3 8 4 4 +15 -9 23 7 11 24 -7 12 -9 12 -9 1 0 -8 -6 -11 -16 -7 -10 4 -13 2 -9 -7 4 -6 +0 -4 -8 6 -9 11 -18 14 -21 8z"/> +<path d="M5805 9705 c-31 -30 -31 -40 -4 -42 17 -2 19 1 10 10 -8 8 -4 17 16 +34 16 12 22 22 15 23 -7 0 -24 -11 -37 -25z"/> +<path d="M4900 9700 c-13 -10 -28 -16 -32 -14 -4 2 -11 -3 -16 -12 -5 -9 -13 +-15 -18 -15 -18 2 -44 -11 -44 -20 0 -6 -5 -7 -12 -3 -7 5 -8 3 -3 -6 6 -10 4 +-12 -8 -7 -11 4 -17 1 -17 -8 0 -8 -6 -12 -14 -9 -7 3 -20 -2 -29 -10 -8 -8 +-18 -12 -22 -8 -5 4 -4 1 0 -7 6 -11 4 -13 -8 -8 -10 3 -17 2 -17 -3 0 -6 -3 +-9 -7 -8 -5 1 -24 -6 -43 -17 -19 -11 -38 -19 -42 -20 -4 0 -17 -8 -29 -19 +-12 -10 -27 -19 -33 -20 -25 -6 -65 -29 -61 -37 3 -4 1 -10 -5 -14 -5 -3 -10 +-2 -10 4 0 6 -7 8 -15 5 -8 -4 -12 -10 -9 -15 3 -5 9 -7 14 -4 4 3 10 -1 13 +-7 2 -8 10 -1 18 15 10 23 18 27 38 23 14 -3 20 -3 14 0 -18 8 -16 21 2 21 8 +0 12 -4 9 -9 -3 -4 2 -8 10 -8 9 0 15 3 14 8 0 4 2 15 7 25 7 17 8 17 21 0 13 +-16 14 -16 12 -1 -2 9 2 17 7 16 6 0 9 -4 8 -8 -1 -4 4 -11 12 -14 19 -7 19 8 +0 27 -13 13 -13 16 1 21 8 3 24 1 34 -4 22 -12 30 -13 29 -2 -3 19 2 33 11 27 +5 -3 15 3 21 14 12 19 13 18 30 -3 10 -11 18 -16 19 -9 0 6 -4 15 -10 18 -5 3 +-10 12 -10 18 0 7 4 6 10 -3 7 -11 10 -11 10 -2 0 7 5 10 12 6 7 -5 9 -2 4 7 +-4 8 -1 6 7 -4 9 -11 18 -14 21 -8 4 5 2 12 -4 16 -6 4 -8 11 -4 16 3 5 10 7 +15 3 5 -3 8 -1 7 4 -2 6 1 10 6 10 5 0 12 6 16 12 5 9 10 5 15 -10 6 -18 9 +-20 16 -9 12 19 11 32 -1 24 -6 -3 -7 1 -3 10 5 13 7 14 14 3 7 -10 9 -10 9 2 +0 13 2 13 9 0 6 -8 7 -18 5 -22 -3 -4 -1 -8 4 -8 16 0 21 13 12 31 -7 12 -6 +20 1 25 15 9 30 -16 23 -38 -3 -12 0 -15 13 -13 10 2 20 4 23 4 3 1 -1 5 -9 +10 -13 8 -13 12 0 27 12 16 12 17 -3 11 -10 -4 -21 0 -25 8 -7 11 -12 11 -33 +-5z m-250 -150 c0 -5 -5 -10 -11 -10 -5 0 -7 5 -4 10 3 6 8 10 11 10 2 0 4 -4 +4 -10z"/> +<path d="M5376 9712 c-2 -4 -1 -14 4 -22 7 -11 9 -9 7 8 -1 24 -3 26 -11 14z"/> +<path d="M5534 9697 c-3 -8 -21 -14 -42 -15 -20 0 -46 -3 -57 -5 -11 -3 -22 +-6 -25 -6 -3 -1 2 -5 10 -11 8 -5 19 -6 25 -2 5 4 19 7 30 7 11 0 23 4 27 10 +5 6 8 3 8 -6 0 -9 7 -19 14 -22 10 -4 13 -1 10 8 -3 7 -1 23 6 34 6 12 8 21 5 +21 -3 0 -8 -6 -11 -13z"/> +<path d="M5282 9666 c-20 -29 -27 -33 -62 -31 -22 1 -37 -2 -35 -6 3 -4 -1 -9 +-7 -12 -7 -3 7 -2 32 0 25 3 53 5 63 5 13 -1 17 4 13 14 -3 8 0 17 7 20 7 2 +13 13 14 24 2 26 2 26 -25 -14z"/> +<path d="M5580 9689 c-12 -7 -12 -9 -1 -9 8 0 11 -6 7 -16 -4 -10 -2 -13 7 -9 +6 4 3 -1 -7 -9 -19 -15 -19 -17 -2 -29 17 -13 17 -14 1 -30 -9 -9 -12 -17 -6 +-17 5 0 13 5 16 10 4 7 12 7 25 0 25 -13 26 -13 27 11 2 16 -1 18 -12 9 -20 +-16 -40 22 -25 49 13 26 13 34 -2 25 -6 -4 -8 -3 -4 4 9 15 -7 23 -24 11z"/> +<path d="M5626 9657 c3 -30 2 -38 -6 -27 -13 19 -13 0 0 -20 7 -12 10 -12 10 +-1 0 8 6 11 15 7 12 -4 13 -1 7 12 -5 9 -7 27 -7 39 1 12 -4 24 -11 27 -10 4 +-12 -5 -8 -37z"/> +<path d="M5770 9689 c0 -5 -4 -8 -8 -5 -4 2 -8 -5 -8 -17 -1 -12 -2 -31 -4 +-42 -4 -34 0 -55 11 -55 5 0 7 4 4 10 -3 5 0 7 8 4 8 -3 14 2 14 11 0 11 -6 +14 -21 9 -12 -3 -16 -2 -10 3 6 4 10 16 8 26 -1 9 1 15 4 13 4 -2 7 9 8 25 1 +16 0 29 -2 29 -2 0 -4 -5 -4 -11z"/> +<path d="M5820 9689 c-12 -7 -12 -9 -1 -9 8 0 11 -6 7 -16 -4 -10 -2 -13 7 -9 +6 4 4 0 -6 -8 -11 -9 -14 -18 -8 -21 6 -4 18 5 27 19 12 19 20 23 29 15 9 -8 +14 -7 17 2 3 9 6 9 12 0 4 -7 3 -12 -3 -12 -6 0 -8 -7 -5 -15 5 -12 9 -13 20 +-4 12 10 12 15 -3 31 -20 22 -59 46 -49 30 3 -5 -1 -13 -10 -16 -8 -3 -12 -2 +-9 3 8 14 -9 21 -25 10z"/> +<path d="M4916 9677 c3 -10 9 -15 12 -12 3 3 0 11 -7 18 -10 9 -11 8 -5 -6z"/> +<path d="M5938 9651 c-21 -32 -23 -41 -12 -45 10 -4 14 0 12 11 -2 10 3 18 10 +19 25 3 27 4 14 12 -8 6 -1 9 20 9 18 0 27 -2 21 -4 -16 -6 -17 -33 -1 -33 6 +0 8 3 5 7 -4 3 -2 12 4 19 10 13 -6 32 -18 20 -3 -3 -11 1 -17 10 -10 13 -16 +9 -38 -25z"/> +<path d="M5664 9663 c4 -7 3 -13 -3 -13 -7 0 -7 -8 1 -25 6 -14 14 -23 16 -20 +12 12 8 46 -7 58 -12 9 -13 9 -7 0z"/> +<path d="M5340 9650 c-8 -5 -24 -7 -35 -4 -14 4 -16 3 -7 -4 10 -7 10 -11 -2 +-21 -8 -7 -21 -9 -27 -5 -7 4 -9 3 -5 -4 3 -5 1 -12 -6 -14 -9 -3 -9 -6 0 -12 +7 -4 22 4 37 20 14 15 25 24 25 20 0 -4 7 0 16 8 8 9 20 16 27 16 6 0 2 -7 -9 +-15 -16 -12 -17 -14 -2 -15 9 0 19 6 21 13 4 9 8 8 16 -3 10 -13 12 -13 20 0 +6 8 13 11 18 7 4 -5 1 -12 -7 -17 -11 -7 -10 -9 7 -7 12 0 21 5 20 10 -3 12 +31 18 39 6 3 -5 10 -9 15 -9 6 0 7 6 3 13 -5 8 -2 8 9 -2 9 -7 17 -9 17 -4 0 +17 -46 33 -59 20 -8 -8 -11 -8 -11 2 0 9 -4 10 -12 4 -14 -10 -54 -10 -78 0 +-8 4 -22 2 -30 -3z"/> +<path d="M5540 9630 c-7 -17 -17 -30 -22 -30 -5 0 -6 -5 -2 -11 4 -8 12 -3 21 +12 l14 24 -7 -24 c-4 -17 -3 -21 6 -16 9 6 9 3 1 -13 -15 -28 -14 -37 3 -23 +10 8 16 9 21 1 3 -6 11 -7 17 -4 6 4 5 -2 -2 -15 -6 -12 -15 -19 -19 -16 -5 3 +-11 -2 -15 -10 -7 -18 -4 -18 28 -4 14 7 23 16 19 22 -4 6 -1 7 7 2 9 -6 10 +-2 5 15 -5 16 -4 21 6 18 8 -3 13 -12 11 -20 -1 -8 5 -15 13 -15 10 0 13 6 9 +19 -4 14 -1 17 18 16 15 -2 23 2 23 12 0 8 4 21 9 28 7 12 4 12 -15 1 -13 -7 +-25 -10 -26 -8 -1 2 -5 1 -9 -3 -7 -8 11 -12 31 -8 6 1 7 -2 2 -6 -11 -11 -49 +-13 -68 -3 -10 5 -21 3 -27 -3 -9 -9 -15 -9 -23 -1 -7 7 -6 15 5 26 14 14 14 +16 0 21 -9 3 -14 13 -10 21 11 29 -12 24 -24 -5z"/> +<path d="M5782 9640 c-9 -14 -8 -19 4 -24 8 -3 12 -10 9 -16 -3 -5 -2 -10 4 +-10 16 0 23 20 12 34 -6 7 -8 15 -5 18 3 3 1 8 -3 11 -5 3 -14 -3 -21 -13z"/> +<path d="M5866 9644 c4 -10 11 -24 15 -29 4 -6 4 -17 -1 -25 -13 -21 -12 -27 +5 -27 11 0 14 7 9 21 -3 12 -2 16 3 11 4 -6 19 -11 33 -12 14 0 33 -4 43 -8 +13 -5 16 -3 12 7 -4 9 -16 14 -28 14 -29 -3 -67 14 -67 29 0 7 -7 18 -15 25 +-13 11 -14 10 -9 -6z"/> +<path d="M6019 9639 c-8 -5 -10 -9 -4 -9 5 0 3 -6 -4 -12 -10 -11 -15 -9 -26 +5 -8 12 -15 14 -20 7 -3 -5 -12 -7 -18 -3 -7 4 -7 1 1 -9 8 -9 20 -14 28 -11 +8 3 14 -1 14 -11 0 -24 17 -19 25 7 4 13 8 17 12 9 2 -6 9 -9 14 -6 6 3 5 12 +-3 21 -12 15 -11 15 9 3 12 -8 21 -16 21 -19 -2 -21 4 -31 13 -25 8 4 7 9 -2 +16 -11 7 -9 8 4 4 10 -3 21 -6 23 -6 3 0 2 -5 -2 -12 -4 -7 -3 -8 5 -4 6 4 23 +0 36 -8 14 -9 25 -13 25 -9 0 5 -31 24 -68 45 -47 24 -73 33 -83 27z"/> +<path d="M4813 9628 c1 -7 -4 -12 -12 -10 -12 3 -12 0 -2 -12 14 -17 -3 -32 +-32 -27 -18 2 -18 2 0 -17 18 -19 39 -19 27 0 -5 7 -2 8 6 3 9 -6 11 -4 5 5 +-5 8 -4 11 3 7 5 -4 18 -4 27 -1 15 6 15 8 -5 19 -19 10 -20 13 -6 18 10 4 15 +3 11 -3 -3 -6 -1 -10 4 -10 13 0 14 11 3 25 -11 15 -32 17 -29 3z"/> +<path d="M4863 9616 c-4 -11 -7 -24 -8 -28 0 -3 -16 -17 -35 -30 -36 -24 -66 +-27 -54 -5 5 8 2 8 -6 0 -11 -10 -17 -10 -29 1 -14 13 -19 12 -40 -5 -13 -10 +-17 -19 -10 -19 8 0 5 -6 -7 -15 -17 -14 -15 -14 14 0 17 8 32 18 32 21 0 3 +-4 2 -10 -1 -6 -4 -7 1 -3 11 6 16 7 16 19 -1 9 -12 10 -24 4 -35 -6 -11 -5 +-21 2 -28 8 -8 8 -15 0 -24 -7 -9 -7 -19 -2 -28 11 -18 12 -17 17 40 2 25 4 +51 5 59 1 10 7 7 20 -9 11 -13 18 -17 18 -9 0 11 3 11 11 -1 9 -12 10 -11 6 7 +-3 13 0 26 5 30 7 4 8 1 3 -7 -5 -8 -3 -11 6 -8 8 3 13 10 12 16 -2 6 6 9 17 +7 13 -3 17 1 13 11 -4 12 7 18 29 16 3 -1 9 5 12 13 6 18 2 18 -27 4 -20 -9 +-20 -9 -5 4 10 8 16 16 13 19 -8 7 29 3 43 -6 6 -4 17 -4 24 0 7 4 8 3 4 -4 +-4 -7 -1 -12 6 -12 9 0 10 -2 1 -8 -8 -5 -6 -14 8 -31 14 -17 19 -19 19 -7 0 +21 9 20 33 -1 20 -17 20 -17 13 1 -5 16 -4 17 9 6 12 -10 16 -9 21 4 3 9 10 +13 15 10 5 -3 6 2 2 12 -5 14 -7 14 -14 1 -14 -23 -70 -12 -96 20 -30 36 -98 +42 -110 9z"/> +<path d="M5834 9615 c-24 -36 -69 -58 -93 -46 -14 8 -23 6 -37 -10 -10 -11 +-24 -17 -31 -14 -8 2 -12 1 -8 -4 3 -5 2 -17 -1 -26 -5 -12 -9 -13 -14 -5 -5 +8 -9 7 -13 -3 -7 -19 38 -16 56 3 10 10 8 12 -7 6 -16 -6 -17 -4 -5 10 7 9 15 +12 17 6 2 -6 10 -8 18 -5 12 4 12 8 2 22 -11 14 -11 14 4 3 13 -10 17 -10 21 +0 4 8 6 7 6 -4 1 -10 6 -18 12 -18 5 0 7 6 3 13 -4 6 -4 9 1 5 4 -4 14 0 22 +10 10 11 12 12 8 2 -4 -8 1 -6 9 4 9 11 16 15 16 9 0 -6 8 -10 18 -9 13 1 17 +-6 15 -26 -2 -24 0 -26 16 -16 16 10 17 14 5 25 -17 17 -17 19 -5 41 6 12 5 +23 -4 35 -13 18 -14 17 -31 -8z m28 -13 c-7 -2 -10 -7 -8 -11 3 -4 -4 -7 -15 +-7 -18 0 -18 2 -5 12 9 6 13 14 9 18 -4 4 1 4 12 0 11 -5 14 -9 7 -12z"/> +<path d="M5457 9614 c4 -10 -2 -13 -25 -10 -16 1 -34 6 -40 10 -7 4 -20 2 -31 +-3 -22 -12 -38 -45 -19 -38 7 2 12 10 10 17 -2 11 0 11 12 1 9 -7 17 -8 20 -2 +3 5 1 12 -4 14 -6 3 -5 4 2 3 7 -2 12 -9 10 -16 -2 -8 3 -10 12 -7 10 4 20 -2 +26 -14 11 -19 30 -18 30 2 0 6 -6 7 -12 3 -10 -6 -9 -3 0 9 11 13 18 14 38 5 +21 -10 22 -13 9 -20 -8 -5 -13 -13 -10 -19 4 -5 1 -9 -6 -9 -19 0 -1 -13 23 +-17 17 -3 19 -1 8 12 -10 11 -10 18 -1 29 9 10 9 16 1 21 -8 5 -7 11 2 23 10 +12 10 14 1 8 -7 -4 -19 -4 -25 1 -22 13 -37 12 -31 -3z"/> +<path d="M4912 9607 c-1 -7 -3 -24 -6 -39 -3 -18 0 -28 8 -28 6 0 12 9 13 20 +1 11 -2 18 -7 15 -6 -3 -7 1 -3 11 5 13 10 10 24 -17 9 -19 15 -38 12 -43 -4 +-5 -1 -6 5 -2 6 3 13 2 17 -4 4 -6 11 -8 16 -4 17 10 59 12 65 3 3 -5 13 -5 +23 1 10 5 21 6 25 3 3 -3 6 -2 6 4 0 6 10 10 23 9 14 -1 21 -7 19 -17 -1 -9 5 +-16 13 -16 17 0 18 6 5 27 -5 9 -5 19 2 27 8 10 7 12 -6 7 -10 -4 -16 -1 -16 +7 -1 9 -4 8 -11 -4 -6 -9 -14 -15 -20 -12 -5 4 -9 2 -9 -4 0 -5 -11 -8 -24 -7 +-14 2 -30 -1 -38 -5 -7 -5 -20 -1 -32 9 -11 9 -16 12 -13 6 9 -15 -16 -25 -34 +-13 -8 5 -10 9 -5 9 5 0 2 8 -7 18 -10 10 -15 21 -12 23 2 3 -4 10 -14 16 -13 +8 -18 8 -19 0z"/> +<path d="M5310 9608 c0 -4 -13 -16 -29 -26 -30 -18 -30 -36 1 -38 9 -1 19 5 +22 13 5 11 0 13 -17 8 -21 -6 -21 -5 -2 6 11 7 23 17 28 23 4 6 5 -4 2 -22 -3 +-20 -2 -31 4 -28 5 4 9 14 9 24 0 9 2 24 6 33 5 10 2 16 -9 16 -8 0 -15 -4 +-15 -9z"/> +<path d="M5182 9602 c-6 -2 -9 -8 -6 -13 3 -6 12 -5 22 3 10 8 8 2 -5 -18 -15 +-20 -19 -35 -13 -45 5 -7 7 -23 5 -34 -3 -11 -2 -14 1 -7 3 6 10 10 15 6 5 -3 +9 2 9 10 0 9 -4 16 -10 16 -5 0 -10 5 -10 11 0 5 5 7 11 3 7 -4 10 -1 7 7 -7 +18 10 51 23 44 5 -4 5 -14 -2 -27 -9 -16 -8 -19 2 -13 7 5 10 4 6 -2 -4 -6 0 +-14 9 -17 13 -5 15 -2 9 11 -4 10 -8 30 -8 44 -1 21 -6 26 -26 26 -14 0 -32 +-2 -39 -5z"/> +<path d="M6014 9578 c-3 -10 -10 -15 -16 -12 -6 4 -9 1 -6 -7 3 -8 1 -22 -4 +-32 -7 -14 -12 -16 -23 -7 -11 9 -14 7 -12 -9 2 -26 8 -26 36 -3 19 15 27 32 +30 67 1 6 6 3 11 -5 6 -9 6 -18 0 -24 -6 -6 -10 -14 -10 -19 0 -5 8 -1 17 8 +16 16 17 16 30 -1 7 -9 16 -15 19 -11 3 3 -5 17 -20 30 -19 17 -22 27 -14 35 +8 8 5 11 -11 9 -11 -1 -24 -9 -27 -19z"/> +<path d="M5466 9576 c3 -7 -2 -18 -10 -25 -11 -10 -17 -8 -30 11 -9 12 -16 17 +-16 11 0 -6 -7 -13 -14 -16 -10 -4 -13 -1 -10 8 8 20 -23 12 -45 -12 -11 -11 +-17 -25 -13 -29 4 -5 -1 -2 -10 5 -21 15 -24 2 -5 -19 10 -12 9 -12 -5 -2 -11 +9 -17 10 -20 2 -2 -6 -12 -13 -23 -15 -11 -2 -22 -4 -24 -4 -2 -1 3 -9 10 -18 +12 -16 11 -16 -8 0 -17 15 -25 16 -42 7 -12 -6 -20 -14 -17 -18 2 -4 -2 -16 +-10 -27 -8 -10 -14 -13 -14 -6 0 7 -4 10 -8 7 -5 -3 -16 4 -25 15 -21 23 -22 +36 -3 20 8 -7 17 -8 20 -3 3 5 -8 15 -24 22 -16 7 -27 17 -24 22 4 6 -4 5 -16 +-2 -18 -9 -24 -9 -30 0 -5 8 -10 8 -14 2 -3 -5 1 -12 9 -16 9 -3 12 -12 8 -22 +-5 -14 -3 -14 15 -3 16 10 18 16 9 22 -9 6 -8 7 3 4 11 -3 14 -15 13 -42 -3 +-36 -2 -37 13 -19 8 10 13 13 9 7 -3 -7 -1 -13 4 -13 6 0 11 -4 11 -10 0 -5 +-7 -6 -17 -3 -12 5 -14 3 -8 -7 5 -8 4 -11 -3 -6 -6 3 -15 -2 -21 -11 -6 -10 +-11 -13 -11 -6 0 7 -12 1 -26 -12 -14 -13 -31 -23 -38 -22 -6 1 -10 -3 -9 -10 +2 -7 -3 -10 -11 -7 -8 3 -17 1 -20 -5 -4 -6 -14 -7 -24 -4 -15 6 -16 5 -2 -13 +14 -18 13 -18 -9 1 l-24 20 5 -23 c4 -12 2 -20 -2 -17 -5 3 -12 1 -15 -5 -4 +-6 -16 -8 -27 -4 -13 4 -18 2 -14 -4 3 -6 1 -14 -5 -18 -8 -4 -9 -3 -5 4 14 +22 -6 12 -26 -13 -11 -14 -24 -22 -30 -19 -6 4 -15 0 -20 -7 -8 -11 -9 -10 -4 +3 3 10 1 20 -4 23 -6 4 -11 0 -11 -7 -1 -7 -2 -17 -4 -23 -1 -5 -3 -14 -3 -19 +-1 -4 -11 2 -22 15 -24 29 -26 13 -3 -21 15 -22 15 -23 1 -12 -14 11 -18 10 +-26 -4 -5 -9 -21 -16 -35 -16 -15 0 -24 -4 -22 -9 3 -4 0 -11 -6 -15 -8 -4 -9 +-3 -5 4 4 7 2 12 -3 12 -11 0 -15 -15 -12 -34 1 -5 -6 -3 -15 5 -16 12 -17 12 +-11 -3 10 -27 1 -21 -21 14 -14 22 -18 37 -11 49 6 12 4 21 -8 30 -14 12 -16 +12 -11 -2 3 -9 2 -22 -2 -30 -5 -8 -4 -19 2 -26 6 -7 7 -13 2 -13 -4 0 0 -6 +10 -13 18 -13 18 -15 -4 -35 -18 -16 -27 -19 -37 -11 -17 14 -17 -2 0 -21 10 +-12 9 -12 -5 -2 -13 10 -17 10 -21 0 -4 -10 -6 -10 -6 0 -1 6 -6 12 -12 12 -5 +0 -8 -3 -6 -7 3 -5 -6 -16 -18 -26 -14 -10 -26 -13 -30 -7 -7 11 -35 2 -35 +-11 0 -4 8 -6 18 -3 14 5 14 4 2 -4 -8 -6 -18 -8 -23 -5 -5 3 -6 -4 -3 -15 4 +-12 2 -23 -5 -28 -8 -4 -9 -3 -5 4 4 7 2 20 -3 29 -6 10 -11 15 -12 11 -1 -5 +-3 -12 -4 -18 -1 -5 -3 -13 -4 -16 0 -4 -8 0 -18 7 -19 16 -23 16 -34 -3 -14 +-21 -10 -32 5 -18 11 9 19 9 33 0 17 -11 17 -11 -1 -6 -10 4 -25 1 -32 -5 -8 +-6 -14 -8 -14 -4 0 4 -7 2 -16 -6 -12 -10 -17 -10 -23 -1 -5 9 -11 4 -19 -13 +-7 -14 -17 -23 -22 -20 -6 3 -10 1 -10 -4 0 -6 -7 -11 -16 -11 -8 0 -13 -4 +-10 -9 3 -4 -4 -8 -17 -7 -13 1 -21 -4 -19 -12 1 -8 -2 -11 -8 -7 -8 5 -7 11 +1 21 15 18 0 18 -24 0 -10 -8 -19 -24 -20 -36 -1 -20 -2 -20 -14 -4 -7 10 -14 +15 -14 11 -1 -4 -2 -11 -3 -17 -1 -12 -26 -37 -26 -26 0 5 -7 3 -15 -4 -8 -7 +-12 -17 -8 -24 3 -6 0 -6 -8 2 -15 14 -43 16 -34 3 5 -8 -26 -32 -45 -35 -3 +-1 -4 -4 -3 -8 2 -4 -5 -4 -14 -1 -12 5 -14 3 -8 -7 5 -9 4 -11 -3 -6 -11 6 +-68 -27 -84 -49 -4 -5 -8 -6 -8 -1 0 5 -8 2 -17 -5 -15 -11 -16 -11 -5 1 6 8 +12 21 12 30 -1 13 -2 13 -10 -2 -12 -19 -54 -13 -46 8 3 7 -1 17 -8 24 -11 8 +-13 3 -13 -25 1 -28 5 -34 18 -30 29 10 30 -12 1 -31 -15 -10 -30 -19 -34 -19 +-4 0 -17 -8 -28 -18 -19 -16 -21 -16 -18 -1 2 9 -2 19 -8 21 -7 2 -11 -6 -10 +-19 0 -13 -5 -23 -12 -23 -8 0 -20 -9 -28 -19 -8 -11 -14 -16 -14 -11 0 5 7 +17 17 27 9 10 11 18 5 18 -14 0 -43 -41 -36 -51 2 -4 0 -11 -6 -14 -6 -4 -10 +-3 -9 2 3 19 -2 33 -12 33 -6 0 -9 -7 -6 -15 7 -15 -9 -29 -33 -30 -8 0 -14 +-5 -13 -11 1 -6 -5 -11 -12 -11 -11 0 -12 4 -4 14 14 17 -1 16 -23 -1 -14 -10 +-15 -15 -5 -26 9 -10 9 -11 0 -6 -7 4 -13 2 -13 -4 0 -6 -8 -10 -17 -8 -12 2 +-17 -2 -15 -12 2 -8 0 -12 -4 -8 -4 4 -14 2 -22 -5 -11 -8 -14 -8 -9 0 4 6 3 +14 -3 18 -10 6 -11 3 -14 -34 0 -11 -5 -23 -10 -28 -5 -4 -6 -3 -2 4 9 16 -14 +29 -24 13 -5 -9 -9 -9 -14 -1 -4 6 -2 11 5 11 16 0 3 13 -16 16 -18 3 -18 -1 +-4 -28 9 -16 8 -19 -2 -13 -9 6 -10 3 -5 -11 4 -10 4 -15 0 -11 -4 4 -13 2 +-21 -4 -10 -9 -18 -6 -33 12 -21 26 -26 19 -9 -13 8 -15 8 -19 0 -14 -6 4 -11 +3 -11 -3 0 -6 -7 -7 -17 -4 -10 4 -14 2 -9 -5 3 -6 1 -14 -5 -18 -8 -4 -9 -3 +-5 4 4 7 3 12 -2 12 -17 0 -22 -13 -9 -28 10 -13 9 -14 -1 -8 -7 4 -20 2 -29 +-6 -15 -12 -15 -11 -2 12 8 14 19 28 24 32 6 4 8 8 5 9 -3 0 -13 2 -23 4 -13 +2 -16 -1 -12 -14 3 -10 -1 -24 -10 -31 -8 -7 -12 -17 -8 -23 3 -5 1 -7 -4 -4 +-6 4 -16 0 -23 -8 -7 -8 -16 -13 -20 -10 -4 2 -15 -4 -25 -15 -17 -18 -20 -19 +-36 -4 -11 10 -19 12 -24 5 -3 -6 -2 -11 3 -11 5 0 9 -7 9 -15 0 -8 -3 -13 -5 +-10 -3 3 -12 0 -19 -7 -11 -9 -17 -9 -24 3 -8 14 -10 12 -13 -13 -1 -7 -12 +-12 -24 -11 -13 2 -21 -1 -17 -6 3 -5 1 -12 -4 -15 -5 -4 -12 -2 -16 4 -3 5 +-11 10 -17 10 -6 0 -4 -8 5 -18 16 -18 16 -19 -5 -17 -13 1 -26 -3 -30 -9 -4 +-6 -12 -12 -18 -12 -5 -1 -12 -3 -15 -4 -3 -1 -11 -3 -17 -4 -7 -1 -12 -7 -11 +-12 1 -6 -5 -11 -12 -11 -10 0 -12 4 -5 12 5 6 5 17 0 24 -4 8 -5 21 -2 30 5 +14 3 14 -11 2 -12 -9 -14 -18 -8 -29 5 -9 5 -26 1 -38 -5 -12 -6 -24 -3 -27 2 +-3 -7 -4 -21 -3 -16 2 -30 -3 -36 -13 -5 -9 -10 -11 -10 -6 0 6 5 16 12 23 17 +17 2 15 -27 -4 -21 -14 -24 -14 -34 3 -6 10 -11 14 -11 9 0 -5 -9 -1 -20 9 +-11 10 -20 13 -20 7 0 -6 17 -23 37 -36 28 -19 39 -23 46 -13 6 9 8 8 5 -2 -7 +-24 -46 -23 -63 1 -9 14 -15 17 -15 9 0 -8 8 -24 17 -35 17 -20 17 -20 -1 -6 +-18 14 -19 13 -13 -2 4 -12 2 -15 -9 -11 -10 3 -12 0 -8 -10 8 -21 -11 -30 +-26 -12 -6 7 -18 11 -26 8 -20 -8 -17 -23 4 -17 14 5 14 4 2 -4 -18 -13 -33 +-5 -26 14 3 8 1 14 -5 14 -6 0 -9 -8 -8 -17 3 -34 -1 -54 -10 -48 -5 3 -13 0 +-17 -6 -4 -8 -3 -9 4 -5 13 8 14 6 16 -36 1 -15 -2 -24 -6 -21 -5 2 -6 13 -3 +24 4 10 3 19 -2 19 -5 0 -8 -86 -9 -190 0 -136 4 -189 12 -186 6 2 11 -2 11 +-10 0 -8 -6 -13 -12 -10 -15 5 -15 -36 0 -46 6 -5 5 -8 -4 -8 -11 0 -11 -3 0 +-17 8 -9 9 -14 4 -11 -12 8 -14 -229 -3 -248 4 -6 4 -14 0 -18 -10 -11 -10 +-348 1 -370 5 -10 5 -16 0 -13 -10 6 -10 -314 0 -330 4 -7 4 -14 0 -16 -5 -3 +-7 -108 -5 -234 1 -125 2 -239 1 -253 -4 -92 -1 -198 5 -208 4 -7 4 -12 -1 +-12 -4 0 -7 -53 -5 -117 3 -145 3 -126 0 -201 -2 -35 1 -64 7 -66 7 -3 7 -5 0 +-5 -11 -1 -11 -132 -1 -150 4 -6 4 -11 -1 -11 -4 0 -8 -52 -8 -115 0 -63 2 +-115 5 -115 3 0 3 -27 0 -60 -3 -33 -2 -60 3 -60 4 0 5 -5 2 -10 -9 -15 -10 +-93 -1 -108 4 -7 4 -12 -1 -12 -4 0 0 -5 10 -11 9 -5 22 -7 29 -3 7 5 8 3 3 +-6 -6 -10 -4 -12 8 -7 8 3 21 -1 27 -9 7 -8 18 -14 26 -14 18 0 27 -17 13 -26 +-8 -4 -9 -3 -5 4 4 7 1 12 -6 13 -7 0 -21 2 -31 4 -11 2 -16 -1 -14 -8 2 -7 +11 -11 21 -9 9 2 16 -4 16 -13 0 -9 4 -14 9 -10 5 3 12 1 16 -5 3 -5 11 -10 +17 -10 7 0 6 5 -1 14 -8 9 -8 16 -2 20 5 4 13 1 16 -5 4 -5 14 -8 24 -5 13 5 +13 3 -2 -8 -20 -16 -9 -30 13 -16 9 5 19 5 27 -2 7 -6 13 -7 13 -4 0 4 7 0 16 +-8 8 -9 19 -14 23 -12 4 3 8 -1 9 -9 1 -8 3 -22 4 -30 1 -16 10 -19 21 -8 4 3 +3 11 -1 18 -4 6 0 4 8 -5 9 -8 22 -16 30 -18 8 -2 18 -8 21 -14 4 -6 9 -5 13 +3 3 8 3 4 0 -8 -4 -18 -2 -22 10 -17 9 3 13 11 9 18 -3 6 4 2 16 -9 13 -11 26 +-19 29 -17 4 2 8 -1 10 -7 2 -6 -4 -14 -13 -17 -13 -5 -14 -8 -3 -15 16 -11 +28 -11 27 -1 -1 4 -1 14 0 22 1 13 2 13 11 0 5 -8 10 -12 10 -7 0 4 18 -4 39 +-17 21 -14 42 -22 47 -18 4 4 3 1 -1 -7 -6 -11 -4 -13 8 -8 9 3 19 2 22 -4 4 +-5 12 -6 18 -2 7 4 5 -2 -3 -12 -13 -17 -13 -18 1 -13 13 5 16 2 12 -15 -4 +-20 -3 -21 10 -4 15 18 33 24 22 8 -3 -5 -1 -12 5 -16 5 -3 10 -1 10 5 0 6 5 +8 11 4 8 -4 7 -9 -2 -15 -8 -4 -19 -3 -26 3 -21 17 -15 -6 7 -30 24 -26 37 +-28 37 -7 0 9 -6 14 -14 11 -20 -8 -15 2 7 14 11 6 20 7 19 3 -4 -22 3 -25 17 +-7 12 15 14 15 11 2 -6 -16 22 -32 53 -29 13 2 13 1 0 -8 -8 -5 -18 -7 -22 -5 +-10 6 -11 -10 -1 -19 3 -4 12 -2 20 4 10 9 13 8 13 0 0 -7 6 -9 13 -5 10 6 10 +4 0 -7 -20 -20 -15 -31 6 -17 11 7 17 16 14 22 -3 5 -1 6 5 3 5 -4 8 -16 5 +-27 -3 -12 0 -20 6 -20 7 0 10 4 7 8 -3 5 1 9 9 9 8 0 15 -5 15 -11 0 -6 5 -4 +11 4 8 11 9 9 3 -10 -6 -21 -5 -23 8 -13 8 7 18 10 21 6 4 -3 15 0 24 8 16 12 +17 12 7 -1 -9 -12 -9 -18 2 -28 9 -8 14 -9 14 -2 0 6 5 8 11 5 6 -5 3 -13 -10 +-22 -12 -8 -19 -18 -16 -23 3 -5 15 0 27 12 13 13 23 17 26 10 2 -6 11 -8 20 +-5 12 5 10 0 -6 -17 -12 -13 -22 -29 -22 -34 1 -6 9 -1 19 10 17 21 18 21 29 +3 7 -10 17 -19 24 -19 6 0 4 7 -5 18 -10 10 -17 23 -17 28 0 5 5 1 11 -8 5 +-10 17 -15 27 -12 13 5 14 4 4 -4 -11 -8 -11 -10 1 -15 8 -3 21 0 28 6 11 10 +11 9 0 -5 -7 -9 -18 -15 -25 -12 -7 3 -13 -2 -13 -11 0 -19 7 -19 34 0 19 13 +22 13 27 -1 5 -14 9 -14 23 -3 12 10 14 10 9 2 -7 -12 5 -18 27 -14 5 1 6 -3 +2 -9 -3 -5 -1 -11 4 -11 6 -1 17 -2 24 -3 8 -1 11 -15 10 -41 -2 -31 0 -36 8 +-23 5 10 17 15 27 12 16 -5 16 -5 0 9 -22 17 -23 24 -4 24 8 0 14 -5 13 -11 +-1 -6 4 -10 11 -8 8 1 11 -2 6 -9 -5 -9 -2 -10 9 -6 9 3 19 2 22 -4 4 -5 11 +-7 16 -3 6 3 8 -5 5 -20 -3 -18 -1 -23 10 -19 8 3 11 10 8 15 -4 6 3 5 15 -1 +11 -7 21 -17 21 -24 0 -8 3 -8 9 1 7 11 9 10 15 -3 3 -9 11 -13 17 -9 8 5 9 3 +4 -6 -6 -10 -4 -12 9 -7 10 4 19 1 22 -8 4 -8 10 -12 15 -9 6 3 22 -2 37 -12 +15 -10 32 -17 37 -15 6 1 7 -1 3 -4 -11 -11 11 -47 24 -39 7 4 6 9 -3 15 -10 +6 -10 9 -2 9 6 0 15 -5 19 -11 4 -8 9 -7 16 2 8 11 9 10 4 -3 -7 -23 11 -33 +32 -16 15 12 16 11 3 -5 -7 -9 -12 -17 -10 -18 2 0 13 -3 24 -6 11 -2 33 -5 +48 -5 24 0 26 -2 11 -13 -9 -6 -28 -11 -41 -9 -15 1 -23 -2 -20 -9 5 -17 39 +-15 61 3 11 8 16 10 13 4 -4 -7 1 -18 10 -25 15 -12 16 -12 10 3 -4 12 -2 15 +8 11 8 -3 13 -8 10 -12 -2 -4 3 -18 12 -31 l16 -23 19 24 c13 16 18 18 14 7 +-3 -10 -1 -20 4 -23 6 -4 10 -1 10 6 0 8 6 6 18 -4 10 -10 22 -14 27 -10 4 5 +6 3 2 -2 -3 -6 -2 -17 4 -25 5 -10 9 -11 9 -3 0 7 7 10 17 6 15 -6 14 -7 -3 +-14 -12 -4 -23 -1 -31 9 -17 21 -17 -2 -1 -27 11 -18 13 -18 25 -3 11 15 14 +15 23 2 9 -13 14 -7 11 12 0 4 15 0 34 -9 20 -10 30 -20 24 -23 -7 -5 -5 -9 5 +-13 9 -4 16 -1 16 6 0 8 4 6 10 -3 5 -8 10 -11 10 -7 0 4 16 -4 35 -19 24 -18 +35 -22 35 -13 1 8 7 3 15 -11 9 -16 15 -19 15 -10 1 8 5 5 11 -9 8 -20 11 -22 +26 -10 14 12 16 12 8 0 -6 -11 -4 -13 10 -7 14 5 16 4 6 -7 -9 -11 -7 -17 6 +-28 15 -12 16 -12 10 3 -3 10 -1 20 5 24 7 4 8 3 4 -4 -4 -7 -2 -12 4 -12 6 0 +9 -4 6 -9 -3 -5 3 -19 13 -32 17 -21 22 -22 45 -11 19 9 25 9 20 1 -4 -7 -1 +-10 7 -7 8 3 26 -3 40 -13 14 -10 29 -16 33 -14 3 3 4 2 1 -1 -7 -10 14 -44 +27 -44 9 0 9 3 0 12 -7 7 -12 17 -12 23 0 5 11 -3 25 -19 15 -17 25 -23 25 +-15 0 9 3 10 8 3 11 -17 52 -36 66 -31 8 3 13 -2 13 -11 0 -34 3 -43 13 -37 6 +4 8 11 5 16 -4 5 -1 9 5 9 7 0 9 -7 6 -16 -4 -11 -1 -14 13 -9 11 3 25 -1 34 +-9 8 -8 18 -12 23 -8 5 4 2 -1 -5 -10 -12 -16 -10 -17 18 -13 17 2 31 -1 31 +-6 0 -5 -7 -9 -15 -9 -8 0 -15 -4 -15 -9 0 -16 35 -6 46 13 11 19 12 19 18 -2 +4 -12 12 -22 17 -22 6 0 7 5 3 12 -5 7 -3 8 6 3 10 -6 10 -10 -3 -20 -11 -7 +-13 -16 -6 -26 5 -8 9 -9 9 -4 0 6 10 16 23 24 12 7 19 10 15 6 -4 -5 -3 -14 +3 -22 9 -10 15 -10 25 -2 10 8 14 8 14 0 0 -6 -5 -11 -11 -11 -5 0 -7 -5 -4 +-10 4 -6 11 -8 16 -4 5 3 21 -2 34 -10 14 -9 25 -14 25 -10 0 4 7 1 15 -6 8 +-7 12 -17 9 -24 -3 -6 1 -3 10 8 14 17 15 16 10 -24 -5 -41 7 -70 29 -70 5 0 +2 9 -8 20 -14 15 -16 23 -8 31 6 6 9 18 5 27 -4 11 -1 14 12 9 10 -4 19 -1 22 +8 4 8 10 12 15 9 5 -3 9 0 9 7 0 10 3 10 12 1 18 -18 32 -14 17 5 -8 10 -9 14 +-2 10 6 -4 14 -3 18 3 3 5 16 15 28 20 19 10 20 9 6 -2 -14 -11 -14 -15 -3 +-26 8 -7 14 -11 15 -10 0 2 3 14 5 28 3 13 9 29 15 35 7 7 8 4 3 -10 -5 -15 0 +-13 22 10 16 16 28 34 26 40 -1 5 4 2 11 -7 19 -24 30 -23 17 1 -10 20 2 24 +27 8 6 -4 14 -3 18 3 3 5 0 10 -7 10 -8 0 -6 5 5 11 9 5 21 8 26 4 5 -3 12 -1 +15 4 4 5 18 8 32 6 18 -2 24 1 20 12 -3 8 -6 17 -6 20 0 3 -8 -1 -17 -8 -16 +-13 -17 -12 -4 3 10 13 18 15 32 8 10 -6 16 -16 13 -23 -3 -8 2 -14 10 -14 8 +0 14 9 13 19 -1 10 -5 18 -10 18 -4 0 -5 5 -2 10 4 6 14 9 23 8 11 -2 16 3 14 +12 -3 12 -1 13 9 2 19 -18 33 -14 18 6 -7 9 -9 14 -4 9 4 -4 17 0 27 10 11 9 +18 11 18 5 0 -7 4 -12 10 -12 5 0 7 6 4 13 -3 8 2 20 11 27 11 9 15 9 15 1 0 +-7 5 -9 10 -6 6 4 8 11 5 16 -3 5 1 6 9 3 15 -6 21 6 17 30 -1 5 5 4 13 -3 9 +-7 13 -17 10 -22 -8 -14 10 -10 32 6 13 11 14 13 3 9 -10 -3 -19 2 -23 13 -6 +14 -4 15 5 6 13 -13 42 -6 33 9 -4 6 4 5 16 -2 20 -11 22 -10 17 4 -4 10 -3 +15 3 11 14 -9 12 8 -2 25 -7 8 -3 6 10 -4 22 -19 22 -19 22 0 0 16 2 17 10 4 +9 -15 11 -13 14 13 1 7 13 11 30 10 23 -2 26 0 16 12 -9 11 -6 13 15 11 15 -2 +29 3 35 13 5 9 9 12 10 6 0 -19 -17 -36 -31 -30 -10 4 -15 -3 -17 -22 -2 -26 +-1 -26 13 -7 15 19 15 19 31 -1 16 -20 16 -20 11 1 -7 31 7 51 26 36 12 -10 +15 -8 15 14 0 18 -4 22 -11 15 -14 -14 -27 -14 -27 0 0 5 4 8 9 4 5 -3 16 3 +23 12 7 10 20 19 28 21 8 2 23 12 32 23 10 11 19 15 23 9 3 -5 11 -10 16 -10 +6 0 7 5 4 10 -3 6 -1 10 4 10 6 0 11 -5 11 -11 0 -5 5 -7 10 -4 6 4 8 10 5 15 +-6 10 14 25 22 16 3 -3 0 -13 -8 -23 -12 -15 -12 -16 2 -11 9 4 22 1 28 -5 15 +-15 14 6 -1 22 -10 11 -10 13 0 7 7 -5 12 -1 12 9 0 9 -4 14 -9 11 -4 -3 -17 +4 -27 17 -18 20 -18 21 0 7 10 -8 23 -15 30 -16 6 -1 20 -5 31 -10 16 -6 15 +-3 -5 14 -20 16 -21 20 -7 18 20 -3 50 -40 40 -50 -3 -3 -2 -6 4 -6 6 0 13 7 +17 15 3 8 1 15 -4 15 -5 0 -14 10 -21 21 -8 15 -8 19 0 15 6 -4 11 -2 11 4 0 +6 4 9 9 6 5 -3 11 1 15 9 3 9 12 12 22 8 13 -5 15 -3 9 7 -5 9 -4 11 3 6 7 -4 +12 -3 12 3 0 6 7 8 15 5 10 -4 14 -1 12 7 -2 8 -2 10 1 6 2 -4 10 0 17 9 6 9 +21 18 31 19 30 3 54 16 48 26 -3 5 -10 6 -16 3 -7 -4 -8 -2 -4 5 5 7 12 9 19 +3 19 -14 49 -11 43 5 -3 8 -1 11 4 8 6 -3 10 0 10 7 0 9 3 9 10 -2 8 -12 10 +-12 11 5 0 19 1 19 8 1 7 -18 8 -18 14 -3 9 23 7 33 -5 29 -5 -1 -7 2 -3 8 4 +7 16 3 32 -10 31 -24 40 -25 40 -5 0 9 -6 14 -13 11 -8 -3 -16 -1 -19 4 -4 6 +2 10 11 10 10 0 26 8 36 17 20 18 40 25 71 24 14 0 16 3 7 14 -8 9 -8 15 0 20 +6 4 9 1 8 -6 -2 -6 3 -14 11 -17 8 -2 11 0 7 6 -7 11 35 42 58 42 7 0 17 7 20 +16 4 11 12 13 28 8 21 -6 22 -6 8 12 -14 18 -14 18 4 4 18 -14 19 -13 13 5 -6 +16 -3 15 13 -5 11 -15 17 -33 14 -44 -4 -12 -2 -16 5 -11 7 4 17 2 24 -4 7 -5 +19 -6 26 -2 7 5 23 7 35 4 19 -4 19 -3 3 7 -9 6 -15 15 -12 21 9 14 -5 11 -21 +-6 -14 -14 -48 -10 -39 5 3 4 -2 13 -10 20 -20 17 -19 23 6 38 12 8 19 10 16 +5 -3 -5 -2 -15 4 -23 7 -12 9 -12 9 4 0 12 5 16 16 12 11 -4 14 -1 10 12 -5 +13 1 22 19 30 19 9 24 9 19 1 -4 -7 -1 -10 7 -7 8 3 14 11 14 19 0 8 6 14 13 +14 7 0 17 7 22 15 5 8 12 11 16 7 4 -4 16 1 27 10 10 10 22 18 26 18 3 0 5 4 +3 8 -1 4 7 3 18 -3 11 -6 20 -7 20 -2 0 4 7 17 15 28 9 10 14 13 13 5 -2 -7 3 +-16 10 -18 7 -3 12 -1 11 4 -4 25 2 34 21 28 16 -5 19 -3 14 12 -5 15 -4 16 5 +3 9 -13 11 -13 12 0 1 8 1 19 0 23 -1 5 3 6 8 2 6 -3 8 -13 5 -23 -4 -11 2 -8 +14 8 11 13 18 29 15 35 -3 5 0 5 7 -2 10 -9 16 -7 30 9 14 17 20 19 38 9 24 +-13 29 -3 10 19 -10 11 -9 11 6 0 18 -13 19 -13 13 2 -4 13 -1 16 14 13 15 -3 +19 0 15 11 -3 8 -2 12 3 9 5 -3 12 -1 16 5 4 6 10 8 15 5 5 -3 13 3 19 12 5 +10 12 17 15 16 3 -2 8 -2 11 -2 3 1 10 3 15 4 6 1 13 3 16 4 4 0 0 9 -7 19 +-13 15 -12 16 4 3 15 -12 21 -11 42 9 18 16 25 19 25 9 0 -12 2 -11 10 1 7 11 +10 11 10 2 0 -7 5 -10 10 -7 8 5 7 12 -2 23 -7 10 -8 14 -3 9 4 -4 20 0 34 9 +l26 15 -24 -20 c-17 -16 -19 -21 -8 -21 9 0 22 9 30 21 8 11 22 22 32 23 9 1 +20 8 24 15 5 7 12 13 17 14 5 1 8 6 6 10 -1 5 2 6 8 2 5 -3 10 0 10 7 0 9 3 9 +10 -2 9 -14 14 -7 11 13 -1 5 3 6 8 3 5 -3 14 1 21 10 7 8 19 13 26 10 7 -3 +15 0 18 7 3 7 3 1 -1 -13 -5 -22 -4 -23 10 -11 9 7 14 17 11 22 -3 5 0 9 6 9 +6 0 9 4 6 8 -2 4 4 13 15 20 11 7 19 8 19 2 0 -5 -4 -10 -9 -10 -5 0 -12 -7 +-15 -16 -5 -14 -4 -15 9 -4 8 7 15 9 15 4 0 -5 4 -3 9 5 5 8 8 23 6 34 -3 15 +-1 16 9 7 8 -6 16 -7 18 -3 3 4 4 3 2 -3 -1 -6 10 -11 25 -11 17 0 28 6 28 14 +0 9 -7 11 -20 7 -14 -4 -18 -2 -15 7 3 8 11 14 19 14 8 1 13 5 12 11 -1 5 8 +10 20 11 12 0 17 -1 10 -4 -7 -2 -10 -10 -7 -18 3 -7 0 -16 -6 -20 -9 -6 -9 +-10 1 -16 12 -7 11 -9 0 -9 -11 0 -9 -4 5 -15 10 -8 15 -15 9 -14 -24 3 -28 +-2 -10 -14 19 -14 12 -43 -7 -31 -8 5 -9 1 -4 -12 4 -10 9 -27 11 -37 2 -9 6 +-21 10 -27 3 -5 -4 -7 -15 -5 -14 3 -20 0 -17 -8 2 -7 11 -11 21 -9 19 3 20 +-2 6 -29 -6 -11 -8 -25 -3 -32 10 -16 12 -78 2 -71 -4 2 -10 0 -14 -6 -3 -5 +-1 -10 5 -10 8 0 7 -6 -1 -21 -9 -17 -8 -20 2 -14 8 5 10 4 5 -4 -6 -9 -11 -9 +-21 -1 -14 11 -59 9 -71 -3 -4 -4 -3 -7 3 -7 16 0 24 -28 11 -36 -6 -4 -8 -3 +-5 3 4 6 -1 17 -10 24 -14 12 -15 11 -10 -6 4 -11 2 -27 -3 -35 -7 -11 -10 +-11 -10 -2 0 7 -5 10 -11 6 -8 -4 -7 -9 2 -15 8 -4 24 0 41 12 15 11 28 18 28 +14 0 -9 54 28 65 45 12 18 14 230 2 230 -4 0 -5 6 0 13 11 18 11 107 0 107 -6 +0 -6 5 0 13 5 6 8 39 8 72 0 47 -4 59 -15 57 -13 -2 -13 0 0 10 16 14 21 68 6 +68 -5 0 -3 6 3 14 8 10 9 16 1 21 -6 3 -7 12 -3 18 11 18 11 99 0 121 -5 11 +-5 16 0 13 6 -4 9 15 7 45 -2 55 3 81 15 73 4 -2 8 2 8 10 0 8 -4 12 -9 9 -4 +-3 -8 0 -8 5 0 6 6 11 13 11 9 0 8 3 -2 9 -11 7 -11 10 0 15 11 5 11 7 2 12 +-7 3 -13 10 -13 15 0 6 4 8 8 5 5 -3 9 1 9 9 0 8 -4 12 -9 9 -4 -3 -8 -1 -8 5 +0 5 6 12 13 14 10 4 10 6 0 6 -7 1 -13 6 -13 12 0 5 3 8 8 6 4 -3 7 26 7 63 0 +38 -3 66 -7 64 -5 -3 -8 0 -8 5 0 6 5 11 11 11 6 0 9 6 6 13 -2 6 -10 11 -16 +9 -7 -1 -10 2 -6 8 3 6 10 8 14 6 4 -3 7 6 7 19 0 13 -4 21 -8 19 -4 -3 -8 0 +-8 5 0 6 6 11 13 11 8 0 7 4 -3 10 -13 9 -13 10 0 10 13 0 13 1 0 10 -13 9 +-13 10 0 10 13 0 13 1 0 10 -8 5 -10 10 -5 10 6 0 11 20 11 44 0 25 -4 42 -8 +40 -4 -3 -8 0 -8 5 0 6 6 11 13 11 8 0 7 4 -3 10 -13 9 -13 10 0 10 13 0 13 1 +0 10 -9 6 -11 13 -5 18 6 4 10 17 11 30 0 16 -4 21 -14 17 -13 -5 -13 -3 -1 +11 15 19 21 47 8 38 -5 -3 -9 0 -9 5 0 6 6 11 13 11 9 0 8 3 -2 9 -11 7 -11 9 +0 14 10 4 10 6 2 6 -7 1 -13 6 -13 12 0 5 4 8 8 5 4 -2 7 7 6 22 0 14 -6 28 +-13 30 -8 3 -6 9 6 19 10 8 11 11 3 7 -13 -7 -13 -5 -1 9 12 15 9 21 -11 18 +-12 -2 -9 6 8 23 8 9 11 16 5 16 -6 0 -11 5 -11 11 0 5 3 8 8 6 4 -3 7 5 7 18 +0 15 -4 20 -10 15 -7 -6 -11 -2 -11 10 0 10 4 17 7 14 4 -2 10 0 14 6 3 5 1 +10 -6 10 -8 0 -8 4 1 15 11 14 7 19 -12 16 -4 0 -5 6 -2 14 4 8 11 12 18 8 6 +-3 6 -1 -1 8 -14 14 -18 33 -5 26 4 -3 7 5 7 18 0 13 -3 21 -7 18 -13 -7 -9 +12 5 26 10 12 9 13 -7 7 -19 -7 -19 -6 -2 13 11 12 14 21 7 26 -15 9 -14 28 2 +19 10 -6 10 -4 0 7 -14 14 -18 33 -5 26 4 -3 7 5 7 18 0 13 -3 21 -7 18 -13 +-7 -9 12 5 26 10 12 9 13 -7 7 -19 -7 -19 -6 -2 13 11 12 14 21 7 26 -15 9 +-14 28 2 19 10 -6 10 -4 0 7 -7 7 -13 17 -13 22 0 4 6 5 13 1 9 -6 9 -5 0 7 +-10 12 -10 18 0 29 9 10 9 11 0 6 -7 -4 -13 -3 -13 1 0 5 6 15 13 22 10 11 10 +13 0 7 -16 -9 -17 6 -2 21 8 8 8 13 0 17 -15 10 -14 29 2 20 10 -6 10 -4 0 7 +-7 7 -13 17 -13 22 0 4 6 5 13 1 10 -6 10 -4 0 7 -15 15 -18 33 -5 25 5 -3 9 +1 9 9 0 8 -4 12 -8 10 -4 -3 -9 2 -13 10 -3 8 -2 14 2 14 19 -3 25 2 12 11 +-13 9 -13 11 -1 19 12 8 12 12 2 24 -9 12 -9 16 1 20 10 4 10 6 1 6 -7 1 -13 +6 -13 12 0 5 4 7 10 4 6 -3 7 1 4 9 -3 9 -11 13 -18 10 -6 -3 -2 2 8 10 11 9 +14 16 8 16 -7 0 -12 5 -12 11 0 5 6 7 13 3 6 -4 4 2 -6 13 -11 13 -14 23 -8 +27 6 4 7 14 4 23 -4 11 -3 14 5 9 8 -5 10 -2 6 8 -3 9 -11 13 -18 10 -6 -3 -2 +2 8 10 13 10 15 16 7 16 -10 0 -11 3 -2 14 9 11 9 16 0 22 -8 5 -9 3 -4 -6 5 +-9 4 -11 -4 -6 -8 6 -9 12 -2 20 6 7 8 16 4 19 -3 4 0 7 8 7 12 0 11 2 -1 10 +-13 9 -13 11 0 20 12 7 12 10 1 10 -7 0 -11 6 -8 14 3 7 1 18 -5 24 -6 6 -6 +12 1 16 8 5 8 13 -1 29 -10 21 -10 21 7 7 17 -14 17 -14 7 7 -14 25 -15 36 -4 +29 9 -5 8 41 -1 51 -12 11 -8 25 6 17 10 -6 10 -4 0 7 -7 7 -13 17 -13 22 0 4 +6 5 13 1 10 -6 10 -4 0 7 -14 14 -18 33 -5 25 4 -2 8 4 8 15 0 21 -12 26 -19 +7 -2 -7 -4 -1 -3 14 0 14 4 24 8 22 4 -2 9 0 13 6 3 5 2 10 -3 10 -6 0 -13 7 +-16 16 -3 8 -2 12 3 9 5 -3 12 -1 16 5 3 5 1 10 -6 10 -9 0 -9 3 0 14 9 11 9 +16 0 22 -8 5 -9 3 -4 -7 8 -12 6 -12 -8 0 -18 14 -24 26 -8 17 5 -3 15 2 22 +11 12 14 12 16 -2 11 -12 -5 -15 1 -15 22 1 16 4 32 9 36 4 4 0 15 -9 25 -10 +11 -12 19 -4 24 6 3 9 1 8 -6 -2 -6 4 -14 12 -16 9 -3 11 -1 5 4 -12 9 -13 23 +-3 38 8 13 -16 47 -26 38 -4 -4 -4 0 0 10 3 9 10 17 16 17 5 0 6 -4 3 -10 -3 +-5 -1 -10 4 -10 14 0 14 17 1 25 -7 4 -7 13 0 26 10 17 7 22 -10 21 -6 -1 -5 +47 0 58 1 3 2 8 1 13 0 4 5 7 11 7 10 0 9 3 -1 9 -10 7 -11 13 -1 31 8 15 8 +20 1 16 -13 -9 -14 4 -2 23 6 9 6 22 1 31 -6 11 -5 21 2 28 8 8 8 12 2 12 -11 +0 -12 35 -2 46 4 3 4 13 0 22 -8 22 -7 65 2 80 4 7 3 12 -3 12 -6 0 -8 6 -5 +14 3 8 -3 19 -16 26 -17 9 -19 14 -10 25 9 11 7 14 -9 12 -27 -2 -26 -12 4 +-42 13 -14 19 -25 12 -25 -7 0 -6 -4 3 -10 12 -8 13 -11 1 -19 -11 -7 -11 -9 +0 -14 10 -4 10 -6 2 -6 -7 -1 -13 -6 -13 -12 0 -5 4 -8 8 -5 4 2 8 -3 8 -13 0 +-13 -7 -17 -23 -15 -29 3 -29 -11 0 -40 26 -26 34 -56 15 -56 -9 0 -9 -3 2 +-10 8 -5 10 -10 4 -10 -18 0 -24 12 -13 26 8 10 6 13 -10 11 -25 -2 -24 1 -10 +-31 7 -14 17 -23 23 -20 6 3 2 -2 -9 -12 -20 -16 -20 -16 3 -11 23 5 23 5 6 +-20 -13 -20 -13 -25 -2 -21 9 4 14 -1 14 -13 0 -16 -2 -17 -16 -4 -17 15 -20 +29 -20 73 0 22 -1 21 -31 -9 -23 -24 -30 -27 -27 -13 2 12 -2 18 -11 16 -12 +-3 -12 0 -1 12 15 19 7 21 -19 4 -15 -9 -24 -7 -45 9 -20 16 -23 22 -11 26 8 +4 17 2 20 -3 4 -6 11 -10 17 -10 7 0 7 5 -1 14 -9 11 -9 15 1 18 7 3 -1 5 -19 +5 -21 0 -30 -4 -25 -11 3 -6 -6 -3 -21 7 -15 9 -27 13 -27 8 0 -6 8 -15 18 +-20 9 -6 12 -11 6 -11 -6 0 -17 7 -24 15 -7 8 -17 12 -24 9 -6 -3 -4 0 4 8 8 +7 16 19 18 26 4 20 -16 14 -28 -9 -9 -15 -15 -18 -24 -10 -7 6 -16 7 -20 3 -4 +-4 -6 0 -4 8 2 9 -4 15 -14 15 -10 0 -23 7 -30 15 -11 12 -11 12 4 1 15 -11 +17 -10 15 8 -1 24 -2 24 -27 11 -15 -8 -25 -4 -49 20 -31 31 -53 42 -30 14 7 +-9 -11 -2 -40 15 -29 17 -57 28 -63 25 -6 -4 -9 -3 -5 2 3 5 -1 18 -9 29 -12 +16 -14 17 -14 2 0 -9 -5 -17 -10 -17 -6 0 -9 6 -8 13 2 6 -3 11 -10 9 -8 -1 +-11 2 -8 6 3 5 17 8 31 6 16 -1 25 2 22 9 -4 14 -37 16 -55 3 -8 -6 -17 -5 +-24 2 -6 6 -17 8 -24 5 -8 -3 -14 1 -14 9 0 8 -9 23 -20 33 -22 20 -28 8 -7 +-14 6 -8 0 -6 -15 4 -16 9 -28 14 -28 10 0 -3 -7 1 -16 9 -8 9 -20 14 -25 10 +-5 -3 -8 0 -7 6 2 7 -8 14 -22 16 -14 3 -34 14 -45 25 -17 17 -18 21 -5 29 8 +5 13 10 10 11 -3 0 -13 2 -23 4 -14 3 -17 -1 -12 -18 5 -18 4 -19 -5 -5 -6 10 +-20 15 -37 13 l-27 -3 27 20 c25 19 28 38 6 38 -6 0 -8 -4 -4 -9 3 -6 -4 -15 +-15 -21 -14 -8 -20 -8 -20 0 0 6 -5 8 -10 5 -6 -3 -13 1 -16 9 -3 9 -11 13 +-17 9 -6 -3 -7 -1 -3 6 4 6 11 9 15 6 5 -2 13 7 20 21 14 32 15 29 -10 31 -16 +2 -18 -1 -10 -11 9 -10 6 -17 -11 -28 -30 -19 -53 -17 -52 5 2 19 -12 23 -18 +6 -2 -7 -9 -5 -17 5 -12 14 -12 16 1 11 9 -3 15 0 15 8 0 8 -11 14 -29 14 -24 +0 -26 -3 -16 -16 7 -9 2 -7 -11 4 -13 11 -26 20 -30 20 -3 0 -5 14 -5 30 1 24 +-3 31 -17 31 -19 0 -22 -6 -20 -36 0 -10 -1 -11 -5 -2 -3 6 -10 10 -15 6 -14 +-8 -10 6 6 22 19 20 19 31 0 31 -9 0 -14 -6 -11 -14 3 -8 1 -11 -4 -8 -6 3 +-10 1 -10 -4 0 -19 -26 -12 -47 13 l-21 24 22 11 c20 10 20 11 -4 5 -14 -4 +-28 -12 -32 -18 -5 -8 -8 -7 -8 2 0 7 -5 10 -10 7 -6 -4 -9 -1 -8 6 2 6 -3 14 +-11 17 -8 3 -11 0 -7 -7 5 -7 1 -9 -8 -5 -9 3 -16 10 -16 16 0 5 -6 6 -12 2 +-9 -5 -9 -2 1 9 14 18 2 24 -15 7 -7 -7 -19 -4 -37 10 -15 12 -27 18 -27 13 0 +-4 -5 0 -11 10 -6 9 -14 15 -20 12 -5 -4 -9 -2 -9 4 0 6 -8 8 -17 5 -14 -4 +-15 -3 -5 4 11 7 10 11 -4 16 -10 4 -21 1 -27 -6 -6 -9 -7 -8 -3 4 3 10 1 20 +-5 24 -7 4 -6 10 1 19 6 7 7 16 2 19 -5 3 -14 -5 -20 -19 -8 -18 -8 -25 1 -29 +7 -2 8 -5 1 -5 -17 -1 -57 46 -49 59 5 8 10 8 20 0 11 -9 14 -7 12 9 -1 15 -6 +20 -17 15 -8 -3 -22 -7 -30 -8 -8 0 -20 -8 -27 -16 -10 -13 -12 -13 -18 2 -4 +10 -11 15 -16 12 -5 -3 -6 3 -2 13 6 15 4 16 -9 5 -13 -10 -18 -10 -24 -1 -4 +7 -3 9 3 6 6 -4 18 4 27 18 22 33 20 49 -2 28 -11 -10 -16 -22 -13 -28 3 -5 +-7 -2 -22 8 -35 22 -44 22 -23 -2 13 -14 14 -21 5 -27 -7 -4 -10 -3 -6 3 4 6 +0 16 -8 23 -8 7 -15 9 -15 5 0 -4 -6 -2 -13 4 -8 6 -17 7 -21 3 -4 -4 -6 0 -4 +8 2 8 -3 14 -9 13 -7 -2 -12 2 -10 8 1 6 -4 14 -12 17 -8 2 -11 0 -8 -5 3 -5 +-3 -9 -13 -9 -11 0 -17 2 -15 5 8 7 -17 31 -32 31 -18 0 -44 25 -36 34 4 3 1 +6 -5 6 -7 0 -12 -5 -12 -11 0 -6 -7 -3 -16 6 -10 9 -24 13 -38 10 -16 -5 -18 +-4 -6 4 8 5 11 13 8 17 -4 4 -3 15 3 26 8 15 13 17 24 8 11 -9 14 -7 12 9 -1 +15 -6 20 -17 15 -20 -9 -41 -9 -63 1 -13 5 -16 4 -11 -9 3 -8 11 -14 17 -13 6 +1 12 -7 13 -19 0 -11 -5 -21 -12 -21 -7 0 -11 3 -9 7 5 9 -46 34 -62 31 -7 -1 +-13 5 -13 14 0 8 -3 14 -7 14 -20 -3 -34 2 -28 10 3 5 1 12 -4 15 -5 4 -12 -2 +-14 -11 -4 -14 -5 -13 -7 5 -1 12 -4 27 -5 32 -1 6 -3 13 -4 18 -1 4 -5 0 -11 +-8 -6 -9 -5 -20 3 -30 6 -8 2 -7 -10 4 -13 10 -20 22 -18 26 3 4 -2 10 -10 13 +-10 4 -12 1 -8 -10 4 -11 2 -14 -8 -11 -8 3 -12 13 -11 23 3 16 2 17 -13 5 +-12 -10 -18 -11 -28 -1 -9 10 -8 11 8 5 18 -7 18 -6 6 9 -11 14 -17 15 -30 5 +-13 -10 -14 -10 -3 2 19 21 14 35 -6 17 -16 -14 -19 -14 -38 1 -11 9 -28 30 +-38 45 -10 16 -20 26 -23 23 -3 -3 -15 0 -27 6 -19 10 -20 10 -7 -6 8 -9 11 +-19 7 -23 -3 -3 -6 -1 -6 6 0 7 -5 9 -10 6 -6 -4 -10 -3 -9 2 3 18 -2 33 -11 +33 -5 0 -8 -6 -6 -12 1 -7 1 -10 -1 -5 -3 4 -9 4 -15 1 -5 -3 -4 3 3 14 9 15 +17 18 25 11 7 -5 15 -6 17 -2 3 5 -8 16 -25 26 -24 13 -29 14 -25 3 3 -8 -1 +-22 -9 -33 -9 -10 -12 -12 -9 -5 5 9 2 12 -8 10 -9 -2 -15 2 -15 7 1 6 10 9 +20 7 19 -3 19 -3 1 15 -11 12 -21 15 -25 9 -4 -6 -10 -7 -14 -3 -4 4 -14 1 +-23 -6 -14 -10 -14 -10 -4 3 8 10 9 21 3 30 -9 14 -11 13 -14 -9 0 -5 -5 -13 +-10 -18 -5 -5 -6 -3 -2 5 7 11 -4 16 -31 13 -6 -1 -15 4 -19 10 -5 8 -2 10 9 +6 8 -3 20 0 27 7 8 11 5 14 -17 13 -16 0 -37 4 -47 8 -15 7 -17 5 -11 -6 8 +-12 6 -12 -8 0 -9 7 -17 10 -17 5 0 -12 -20 19 -20 31 0 6 4 4 9 -4 5 -8 14 +-10 22 -6 20 13 -21 24 -48 14 -22 -8 -22 -8 -6 26 12 24 19 31 25 23 6 -10 8 +-10 8 -1 0 16 -17 26 -25 13 -11 -18 -26 1 -19 23 6 20 6 20 -11 3 -15 -14 +-16 -19 -5 -26 11 -7 11 -11 1 -24 -8 -9 -9 -16 -3 -16 6 0 13 6 15 13 4 9 6 +9 6 0 1 -7 -9 -17 -20 -24 -15 -8 -19 -8 -15 0 4 6 2 11 -4 11 -6 0 -8 5 -4 +13 5 7 2 7 -10 -2 -15 -12 -17 -12 -14 0 2 8 -3 13 -9 12 -7 -2 -13 2 -13 7 0 +6 3 10 8 10 4 0 13 9 19 19 10 15 9 20 -2 25 -9 3 -12 0 -9 -8z m-99 -21 c0 +-8 -4 -15 -9 -15 -10 0 -11 14 -1 23 9 10 10 9 10 -8z m-27 -121 c0 -8 -19 +-13 -24 -6 -3 5 1 9 9 9 8 0 15 -2 15 -3z m147 -9 c0 -8 -4 -12 -9 -9 -5 3 -6 +10 -3 15 9 13 12 11 12 -6z m256 -70 c-3 -9 -8 -14 -10 -11 -3 3 -2 9 2 15 9 +16 15 13 8 -4z m-523 -1 c0 -8 -19 -13 -24 -6 -3 5 1 9 9 9 8 0 15 -2 15 -3z +m360 0 c0 -8 -19 -13 -24 -6 -3 5 1 9 9 9 8 0 15 -2 15 -3z m195 -44 c3 -6 -1 +-7 -9 -4 -18 7 -21 14 -7 14 6 0 13 -4 16 -10z m139 -19 c3 -5 0 -11 -7 -14 +-8 -3 -14 1 -14 9 0 16 13 19 21 5z m-894 -17 c0 -8 -19 -13 -24 -6 -3 5 1 9 +9 9 8 0 15 -2 15 -3z m144 -2 c3 -5 -1 -9 -9 -9 -8 0 -12 4 -9 9 3 4 7 8 9 8 +2 0 6 -4 9 -8z m90 0 c3 -5 -1 -9 -9 -9 -8 0 -12 4 -9 9 3 4 7 8 9 8 2 0 6 -4 +9 -8z m393 -77 c0 -8 -4 -12 -9 -9 -5 3 -6 10 -3 15 9 13 12 11 12 -6z m160 0 +c0 -8 -4 -12 -9 -9 -5 3 -6 10 -3 15 9 13 12 11 12 -6z m-960 -10 c0 -8 -4 +-12 -9 -9 -5 3 -6 10 -3 15 9 13 12 11 12 -6z m478 6 c3 -5 2 -12 -3 -15 -5 +-3 -9 1 -9 9 0 17 3 19 12 6z m169 1 c3 -5 -1 -9 -9 -9 -8 0 -12 4 -9 9 3 4 7 +8 9 8 2 0 6 -4 9 -8z m516 -2 c0 -5 -2 -10 -4 -10 -3 0 -8 5 -11 10 -3 6 -1 +10 4 10 6 0 11 -4 11 -10z m-43 -75 c0 -8 -4 -12 -9 -9 -5 3 -6 10 -3 15 9 13 +12 11 12 -6z m-1280 -10 c0 -8 -4 -12 -9 -9 -5 3 -6 10 -3 15 9 13 12 11 12 +-6z m253 9 c0 -8 -19 -13 -24 -6 -3 5 1 9 9 9 8 0 15 -2 15 -3z m307 -9 c0 -8 +-4 -12 -9 -9 -5 3 -6 10 -3 15 9 13 12 11 12 -6z m400 0 c0 -8 -4 -12 -9 -9 +-5 3 -6 10 -3 15 9 13 12 11 12 -6z m487 7 c3 -5 -1 -9 -9 -9 -8 0 -12 4 -9 9 +3 4 7 8 9 8 2 0 6 -4 9 -8z m-1007 -17 c0 -8 -4 -12 -9 -9 -5 3 -6 10 -3 15 9 +13 12 11 12 -6z m-42 -54 c3 -5 2 -12 -3 -15 -5 -3 -9 1 -9 9 0 17 3 19 12 6z +m719 -9 c3 -5 -1 -9 -9 -9 -8 0 -12 4 -9 9 3 4 7 8 9 8 2 0 6 -4 9 -8z m163 +-7 c0 -8 -4 -12 -9 -9 -5 3 -6 10 -3 15 9 13 12 11 12 -6z m-1537 -29 c0 -3 +-4 -8 -10 -11 -5 -3 -10 -1 -10 4 0 6 5 11 10 11 6 0 10 -2 10 -4z m1710 0 c0 +-2 -8 -10 -17 -17 -16 -13 -17 -12 -4 4 13 16 21 21 21 13z m221 -19 c-10 -9 +-11 -8 -5 6 3 10 9 15 12 12 3 -3 0 -11 -7 -18z m-1756 -16 c3 -5 2 -12 -3 +-15 -5 -3 -9 1 -9 9 0 17 3 19 12 6z m175 -7 c0 -8 -19 -13 -24 -6 -3 5 1 9 9 +9 8 0 15 -2 15 -3z m67 -9 c0 -8 -4 -12 -9 -9 -5 3 -6 10 -3 15 9 13 12 11 12 +-6z m1133 9 c0 -8 -19 -13 -24 -6 -3 5 1 9 9 9 8 0 15 -2 15 -3z m431 -41 c13 +-16 12 -17 -3 -4 -10 7 -18 15 -18 17 0 8 8 3 21 -13z m-1726 -2 c3 -5 2 -12 +-3 -15 -5 -3 -9 1 -9 9 0 17 3 19 12 6z m1396 -14 c-10 -9 -11 -8 -5 6 3 10 9 +15 12 12 3 -3 0 -11 -7 -18z m-1637 -25 c3 -5 -1 -9 -9 -9 -8 0 -12 4 -9 9 3 +4 7 8 9 8 2 0 6 -4 9 -8z m126 2 c0 -8 -19 -13 -24 -6 -3 5 1 9 9 9 8 0 15 -2 +15 -3z m1320 0 c0 -8 -19 -13 -24 -6 -3 5 1 9 9 9 8 0 15 -2 15 -3z m314 -2 +c3 -5 -1 -9 -9 -9 -8 0 -12 4 -9 9 3 4 7 8 9 8 2 0 6 -4 9 -8z m90 0 c3 -5 -1 +-9 -9 -9 -8 0 -12 4 -9 9 3 4 7 8 9 8 2 0 6 -4 9 -8z m236 2 c0 -8 -19 -13 +-24 -6 -3 5 1 9 9 9 8 0 15 -2 15 -3z m-2403 -79 c0 -8 -4 -12 -9 -9 -5 3 -6 +10 -3 15 9 13 12 11 12 -6z m478 6 c3 -5 2 -12 -3 -15 -5 -3 -9 1 -9 9 0 17 3 +19 12 6z m-320 -10 c3 -5 2 -12 -3 -15 -5 -3 -9 1 -9 9 0 17 3 19 12 6z m165 +3 c0 -8 -19 -13 -24 -6 -3 5 1 9 9 9 8 0 15 -2 15 -3z m237 -9 c0 -8 -4 -12 +-9 -9 -5 3 -6 10 -3 15 9 13 12 11 12 -6z m1520 -70 c0 -8 -4 -12 -9 -9 -5 3 +-6 10 -3 15 9 13 12 11 12 -6z m78 6 c3 -5 2 -12 -3 -15 -5 -3 -9 1 -9 9 0 17 +3 19 12 6z m242 -6 c0 -8 -4 -12 -9 -9 -5 3 -6 10 -3 15 9 13 12 11 12 -6z +m78 6 c3 -5 2 -12 -3 -15 -5 -3 -9 1 -9 9 0 17 3 19 12 6z m160 0 c3 -5 2 -12 +-3 -15 -5 -3 -9 1 -9 9 0 17 3 19 12 6z m-2855 -5 c0 -2 -7 -7 -16 -10 -8 -3 +-12 -2 -9 4 6 10 25 14 25 6z m217 -11 c0 -8 -4 -12 -9 -9 -5 3 -6 10 -3 15 9 +13 12 11 12 -6z m2837 -33 c3 -5 -1 -9 -9 -9 -8 0 -12 4 -9 9 3 4 7 8 9 8 2 0 +6 -4 9 -8z m-2824 -38 c0 -8 -19 -13 -24 -6 -3 5 1 9 9 9 8 0 15 -2 15 -3z +m2387 -9 c0 -8 -4 -12 -9 -9 -5 3 -6 10 -3 15 9 13 12 11 12 -6z m676 -20 c4 +-8 3 -16 -1 -19 -4 -3 -9 4 -9 15 -2 23 3 25 10 4z m-3357 -10 c-1 -8 -5 -17 +-8 -21 -5 -4 -4 16 1 34 3 9 9 -1 7 -13z m3001 0 c0 -8 -4 -12 -9 -9 -5 3 -6 +10 -3 15 9 13 12 11 12 -6z m-2802 -4 c3 -5 2 -12 -3 -15 -5 -3 -9 1 -9 9 0 +17 3 19 12 6z m-400 -30 c3 -5 2 -12 -3 -15 -5 -3 -9 1 -9 9 0 17 3 19 12 6z +m82 -16 c0 -8 -4 -12 -9 -9 -5 3 -6 10 -3 15 9 13 12 11 12 -6z m203 9 c0 -8 +-19 -13 -24 -6 -3 5 1 9 9 9 8 0 15 -2 15 -3z m2674 -2 c3 -5 -1 -9 -9 -9 -8 +0 -12 4 -9 9 3 4 7 8 9 8 2 0 6 -4 9 -8z m160 0 c3 -5 -1 -9 -9 -9 -8 0 -12 4 +-9 9 3 4 7 8 9 8 2 0 6 -4 9 -8z m166 2 c0 -8 -19 -13 -24 -6 -3 5 1 9 9 9 8 +0 15 -2 15 -3z m-2965 -73 c3 -5 2 -12 -3 -15 -5 -3 -9 1 -9 9 0 17 3 19 12 6z +m3360 0 c3 -5 2 -12 -3 -15 -5 -3 -9 1 -9 9 0 17 3 19 12 6z m-3835 -11 c0 -5 +-2 -10 -4 -10 -3 0 -8 5 -11 10 -3 6 -1 10 4 10 6 0 11 -4 11 -10z m77 -5 c0 +-8 -4 -12 -9 -9 -5 3 -6 10 -3 15 9 13 12 11 12 -6z m213 9 c0 -8 -19 -13 -24 +-6 -3 5 1 9 9 9 8 0 15 -2 15 -3z m347 -9 c0 -8 -4 -12 -9 -9 -5 3 -6 10 -3 +15 9 13 12 11 12 -6z m-402 -74 c3 -5 2 -12 -3 -15 -5 -3 -9 1 -9 9 0 17 3 19 +12 6z m240 0 c3 -5 2 -12 -3 -15 -5 -3 -9 1 -9 9 0 17 3 19 12 6z m3360 0 c3 +-5 2 -12 -3 -15 -5 -3 -9 1 -9 9 0 17 3 19 12 6z m-3954 -38 c13 -16 12 -17 +-3 -4 -10 7 -18 15 -18 17 0 8 8 3 21 -13z m4116 -38 c0 -8 -4 -12 -9 -9 -5 3 +-6 10 -3 15 9 13 12 11 12 -6z m-4162 -4 c3 -5 2 -12 -3 -15 -5 -3 -9 1 -9 9 +0 17 3 19 12 6z m162 -6 c0 -8 -4 -12 -9 -9 -5 3 -6 10 -3 15 9 13 12 11 12 +-6z m323 9 c0 -8 -19 -13 -24 -6 -3 5 1 9 9 9 8 0 15 -2 15 -3z m-163 -79 c0 +-8 -4 -12 -9 -9 -5 3 -6 10 -3 15 9 13 12 11 12 -6z m3998 6 c3 -5 2 -12 -3 +-15 -5 -3 -9 1 -9 9 0 17 3 19 12 6z m-4158 -56 c0 -8 -4 -12 -9 -9 -5 3 -6 +10 -3 15 9 13 12 11 12 -6z m4238 6 c3 -5 2 -12 -3 -15 -5 -3 -9 1 -9 9 0 17 +3 19 12 6z m-4480 -30 c3 -5 2 -12 -3 -15 -5 -3 -9 1 -9 9 0 17 3 19 12 6z +m-41 -9 c3 -5 -1 -9 -9 -9 -8 0 -12 4 -9 9 3 4 7 8 9 8 2 0 6 -4 9 -8z m216 2 +c0 -8 -19 -13 -24 -6 -3 5 1 9 9 9 8 0 15 -2 15 -3z m147 -9 c0 -8 -4 -12 -9 +-9 -5 3 -6 10 -3 15 9 13 12 11 12 -6z m4078 6 c3 -5 2 -12 -3 -15 -5 -3 -9 1 +-9 9 0 17 3 19 12 6z m747 -23 c-12 -12 -35 -1 -27 12 3 5 13 6 21 3 10 -4 12 +-9 6 -15z m-711 -31 c-10 -9 -11 -8 -5 6 3 10 9 15 12 12 3 -3 0 -11 -7 -18z +m-4836 -16 c3 -5 2 -12 -3 -15 -5 -3 -9 1 -9 9 0 17 3 19 12 6z m80 0 c3 -5 2 +-12 -3 -15 -5 -3 -9 1 -9 9 0 17 3 19 12 6z m162 -6 c0 -8 -4 -12 -9 -9 -5 3 +-6 10 -3 15 9 13 12 11 12 -6z m4400 -10 c0 -8 -4 -12 -9 -9 -5 3 -6 10 -3 15 +9 13 12 11 12 -6z m317 7 c3 -5 -1 -9 -9 -9 -8 0 -12 4 -9 9 3 4 7 8 9 8 2 0 +6 -4 9 -8z m96 2 c0 -8 -19 -13 -24 -6 -3 5 1 9 9 9 8 0 15 -2 15 -3z m-255 +-43 c3 -5 2 -12 -3 -15 -5 -3 -9 1 -9 9 0 17 3 19 12 6z m240 -30 c3 -5 2 -12 +-3 -15 -5 -3 -9 1 -9 9 0 17 3 19 12 6z m-5198 -16 c0 -8 -4 -12 -9 -9 -5 3 +-6 10 -3 15 9 13 12 11 12 -6z m78 6 c3 -5 2 -12 -3 -15 -5 -3 -9 1 -9 9 0 17 +3 19 12 6z m242 -6 c0 -8 -4 -12 -9 -9 -5 3 -6 10 -3 15 9 13 12 11 12 -6z +m80 0 c0 -8 -4 -12 -9 -9 -5 3 -6 10 -3 15 9 13 12 11 12 -6z m4438 -3 c-3 -3 +-11 0 -18 7 -9 10 -8 11 6 5 10 -3 15 -9 12 -12z m535 12 c0 -8 -19 -13 -24 +-6 -3 5 1 9 9 9 8 0 15 -2 15 -3z m273 -7 c3 -8 0 -14 -7 -14 -7 0 -13 6 -13 +14 0 7 4 13 8 13 4 0 9 -6 12 -13z m-5833 -31 c0 -2 -8 -10 -17 -17 -16 -13 +-17 -12 -4 4 13 16 21 21 21 13z m5667 -21 c0 -8 -4 -12 -9 -9 -5 3 -6 10 -3 +15 9 13 12 11 12 -6z m118 -14 c3 -5 2 -12 -3 -15 -5 -3 -9 1 -9 9 0 17 3 19 +12 6z m-5844 -78 c13 -17 13 -17 -6 -3 -11 8 -22 16 -24 17 -2 2 0 3 6 3 6 0 +17 -8 24 -17z m5446 -8 c0 -8 -4 -12 -9 -9 -5 3 -6 10 -3 15 9 13 12 11 12 -6z +m503 -5 c-12 -22 -21 -26 -17 -7 2 10 17 26 25 27 1 0 -2 -9 -8 -20z m-5700 4 +c0 -8 -19 -13 -24 -6 -3 5 1 9 9 9 8 0 15 -2 15 -3z m84 -2 c3 -5 -1 -9 -9 -9 +-8 0 -12 4 -9 9 3 4 7 8 9 8 2 0 6 -4 9 -8z m5280 0 c3 -5 -1 -9 -9 -9 -8 0 +-12 4 -9 9 3 4 7 8 9 8 2 0 6 -4 9 -8z m-5624 -66 c0 -3 -4 -8 -10 -11 -5 -3 +-10 -1 -10 4 0 6 5 11 10 11 6 0 10 -2 10 -4z m5774 -14 c3 -5 -1 -9 -9 -9 -8 +0 -12 4 -9 9 3 4 7 8 9 8 2 0 6 -4 9 -8z m186 -7 c0 -8 -4 -15 -10 -15 -5 0 +-7 7 -4 15 4 8 8 15 10 15 2 0 4 -7 4 -15z m-5955 -15 c3 -6 -1 -7 -9 -4 -18 +7 -21 14 -7 14 6 0 13 -4 16 -10z m172 -15 c0 -8 -4 -12 -9 -9 -5 3 -6 10 -3 +15 9 13 12 11 12 -6z m-184 -10 c4 -8 3 -16 -1 -19 -4 -3 -9 4 -9 15 -2 23 3 +25 10 4z m5862 -24 c3 -5 2 -12 -3 -15 -5 -3 -9 1 -9 9 0 17 3 19 12 6z m80 0 +c3 -5 2 -12 -3 -15 -5 -3 -9 1 -9 9 0 17 3 19 12 6z m-240 -11 c3 -5 1 -10 -4 +-10 -6 0 -11 5 -11 10 0 6 2 10 4 10 3 0 8 -4 11 -10z m-5700 -70 c-1 -17 -5 +-33 -8 -36 -4 -5 -2 51 2 64 5 12 8 -4 6 -28z m19 -2568 c3 -5 -1 -9 -9 -9 -8 +0 -12 4 -9 9 3 4 7 8 9 8 2 0 6 -4 9 -8z m81 -41 c3 -5 2 -12 -3 -15 -5 -3 -9 +1 -9 9 0 17 3 19 12 6z m82 -36 c0 -8 -4 -12 -9 -9 -5 3 -6 10 -3 15 9 13 12 +11 12 -6z m160 0 c0 -8 -4 -12 -9 -9 -5 3 -6 10 -3 15 9 13 12 11 12 -6z +m5603 -1 c0 -8 -19 -13 -24 -6 -3 5 1 9 9 9 8 0 15 -2 15 -3z m-85 -73 c3 -5 +2 -12 -3 -15 -5 -3 -9 1 -9 9 0 17 3 19 12 6z m-5678 -16 c0 -8 -4 -12 -9 -9 +-5 3 -6 10 -3 15 9 13 12 11 12 -6z m5323 -33 c0 -5 -7 -9 -15 -9 -8 0 -12 4 +-9 9 3 4 9 8 15 8 5 0 9 -4 9 -8z m-5486 -40 c3 -5 -1 -9 -9 -9 -8 0 -12 4 -9 +9 3 4 7 8 9 8 2 0 6 -4 9 -8z m90 0 c3 -5 -1 -9 -9 -9 -8 0 -12 4 -9 9 3 4 7 +8 9 8 2 0 6 -4 9 -8z m166 2 c0 -8 -19 -13 -24 -6 -3 5 1 9 9 9 8 0 15 -2 15 +-3z m240 0 c0 -8 -19 -13 -24 -6 -3 5 1 9 9 9 8 0 15 -2 15 -3z m5107 -9 c0 +-8 -4 -12 -9 -9 -5 3 -6 10 -3 15 9 13 12 11 12 -6z m-319 -40 c-3 -3 -9 2 +-12 12 -6 14 -5 15 5 6 7 -7 10 -15 7 -18z m-4641 -30 c0 -8 -4 -12 -9 -9 -5 +3 -6 10 -3 15 9 13 12 11 12 -6z m-237 -1 c0 -8 -19 -13 -24 -6 -3 5 1 9 9 9 +8 0 15 -2 15 -3z m5034 -2 c3 -5 -1 -9 -9 -9 -8 0 -12 4 -9 9 3 4 7 8 9 8 2 0 +6 -4 9 -8z m320 0 c3 -5 -1 -9 -9 -9 -8 0 -12 4 -9 9 3 4 7 8 9 8 2 0 6 -4 9 +-8z m-5194 -26 c0 -2 -8 -10 -17 -17 -16 -13 -17 -12 -4 4 13 16 21 21 21 13z +m-365 -16 c3 -5 1 -10 -4 -10 -6 0 -11 5 -11 10 0 6 2 10 4 10 3 0 8 -4 11 +-10z m556 -7 c13 -16 12 -17 -3 -4 -17 13 -22 21 -14 21 2 0 10 -8 17 -17z +m4526 -28 c0 -8 -4 -12 -9 -9 -5 3 -6 10 -3 15 9 13 12 11 12 -6z m238 6 c3 +-5 2 -12 -3 -15 -5 -3 -9 1 -9 9 0 17 3 19 12 6z m-5025 -7 c0 -8 -19 -13 -24 +-6 -3 5 1 9 9 9 8 0 15 -2 15 -3z m147 -9 c0 -8 -4 -12 -9 -9 -5 3 -6 10 -3 +15 9 13 12 11 12 -6z m157 7 c3 -5 -1 -9 -9 -9 -8 0 -12 4 -9 9 3 4 7 8 9 8 2 +0 6 -4 9 -8z m90 0 c3 -5 -1 -9 -9 -9 -8 0 -12 4 -9 9 3 4 7 8 9 8 2 0 6 -4 9 +-8z m4233 -77 c0 -8 -4 -12 -9 -9 -5 3 -6 10 -3 15 9 13 12 11 12 -6z m-4802 +-5 c3 -5 1 -10 -4 -10 -6 0 -11 5 -11 10 0 6 2 10 4 10 3 0 8 -4 11 -10z m85 +4 c0 -8 -19 -13 -24 -6 -3 5 1 9 9 9 8 0 15 -2 15 -3z m4877 -9 c0 -8 -4 -12 +-9 -9 -5 3 -6 10 -3 15 9 13 12 11 12 -6z m238 6 c3 -5 2 -12 -3 -15 -5 -3 -9 +1 -9 9 0 17 3 19 12 6z m-5035 -41 c0 -5 -5 -10 -11 -10 -5 0 -7 5 -4 10 3 6 +8 10 11 10 2 0 4 -4 4 -10z m4526 -2 c3 -4 -1 -5 -10 -4 -8 1 -18 5 -22 8 -3 +4 1 5 10 4 8 -1 18 -5 22 -8z m368 4 c3 -5 -1 -9 -9 -9 -8 0 -12 4 -9 9 3 4 7 +8 9 8 2 0 6 -4 9 -8z m-4657 -37 c0 -8 -4 -12 -9 -9 -5 3 -6 10 -3 15 9 13 12 +11 12 -6z m-157 -1 c0 -8 -19 -13 -24 -6 -3 5 1 9 9 9 8 0 15 -2 15 -3z m4118 +-49 c-3 -3 -9 2 -12 12 -6 14 -5 15 5 6 7 -7 10 -15 7 -18z m279 10 c0 -8 -4 +-12 -9 -9 -5 3 -6 10 -3 15 9 13 12 11 12 -6z m-160 -40 c0 -8 -4 -12 -9 -9 +-5 3 -6 10 -3 15 9 13 12 11 12 -6z m-4080 -10 c0 -8 -4 -12 -9 -9 -5 3 -6 10 +-3 15 9 13 12 11 12 -6z m77 7 c3 -5 -1 -9 -9 -9 -8 0 -12 4 -9 9 3 4 7 8 9 8 +2 0 6 -4 9 -8z m166 2 c0 -8 -19 -13 -24 -6 -3 5 1 9 9 9 8 0 15 -2 15 -3z +m90 0 c0 -8 -19 -13 -24 -6 -3 5 1 9 9 9 8 0 15 -2 15 -3z m4000 0 c0 -8 -19 +-13 -24 -6 -3 5 1 9 9 9 8 0 15 -2 15 -3z m154 -2 c3 -5 -1 -9 -9 -9 -8 0 -12 +4 -9 9 3 4 7 8 9 8 2 0 6 -4 9 -8z m-4404 -42 c0 -5 -5 -10 -11 -10 -5 0 -7 5 +-4 10 3 6 8 10 11 10 2 0 4 -4 4 -10z m3675 -29 c3 -5 2 -12 -3 -15 -5 -3 -9 +1 -9 9 0 17 3 19 12 6z m242 -6 c0 -8 -4 -12 -9 -9 -5 3 -6 10 -3 15 9 13 12 +11 12 -6z m-3723 -3 c3 -5 -1 -9 -9 -9 -8 0 -12 4 -9 9 3 4 7 8 9 8 2 0 6 -4 +9 -8z m360 0 c3 -5 -1 -9 -9 -9 -8 0 -12 4 -9 9 3 4 7 8 9 8 2 0 6 -4 9 -8z +m96 2 c0 -8 -19 -13 -24 -6 -3 5 1 9 9 9 8 0 15 -2 15 -3z m3554 -2 c3 -5 -1 +-9 -9 -9 -8 0 -12 4 -9 9 3 4 7 8 9 8 2 0 6 -4 9 -8z m-129 -31 c3 -5 2 -12 +-3 -15 -5 -3 -9 1 -9 9 0 17 3 19 12 6z m1009 0 c3 -5 0 -14 -8 -20 -10 -9 +-15 -8 -19 3 -9 22 15 37 27 17z m-4849 -50 c3 -5 2 -12 -3 -15 -5 -3 -9 1 -9 +9 0 17 3 19 12 6z m169 1 c3 -5 -1 -9 -9 -9 -8 0 -12 4 -9 9 3 4 7 8 9 8 2 0 +6 -4 9 -8z m3206 2 c0 -8 -19 -13 -24 -6 -3 5 1 9 9 9 8 0 15 -2 15 -3z m264 +-2 c3 -5 -1 -9 -9 -9 -8 0 -12 4 -9 9 3 4 7 8 9 8 2 0 6 -4 9 -8z m126 2 c0 +-8 -19 -13 -24 -6 -3 5 1 9 9 9 8 0 15 -2 15 -3z m-3525 -73 c3 -5 2 -12 -3 +-15 -5 -3 -9 1 -9 9 0 17 3 19 12 6z m3120 0 c3 -5 2 -12 -3 -15 -5 -3 -9 1 +-9 9 0 17 3 19 12 6z m-3281 -9 c3 -5 -1 -9 -9 -9 -8 0 -12 4 -9 9 3 4 7 8 9 +8 2 0 6 -4 9 -8z m600 0 c3 -5 -1 -9 -9 -9 -8 0 -12 4 -9 9 3 4 7 8 9 8 2 0 6 +-4 9 -8z m2526 2 c0 -8 -19 -13 -24 -6 -3 5 1 9 9 9 8 0 15 -2 15 -3z m330 0 +c0 -8 -19 -13 -24 -6 -3 5 1 9 9 9 8 0 15 -2 15 -3z m154 -2 c3 -5 -1 -9 -9 +-9 -8 0 -12 4 -9 9 3 4 7 8 9 8 2 0 6 -4 9 -8z m-3527 -47 c0 -8 -4 -12 -9 -9 +-5 3 -6 10 -3 15 9 13 12 11 12 -6z m400 -30 c0 -8 -4 -12 -9 -9 -5 3 -6 10 +-3 15 9 13 12 11 12 -6z m-267 -1 c0 -8 -19 -13 -24 -6 -3 5 1 9 9 9 8 0 15 +-2 15 -3z m114 -2 c3 -5 -1 -9 -9 -9 -8 0 -12 4 -9 9 3 4 7 8 9 8 2 0 6 -4 9 +-8z m390 0 c3 -5 -1 -9 -9 -9 -8 0 -12 4 -9 9 3 4 7 8 9 8 2 0 6 -4 9 -8z +m126 2 c0 -8 -19 -13 -24 -6 -3 5 1 9 9 9 8 0 15 -2 15 -3z m2435 -3 c3 -5 2 +-12 -3 -15 -5 -3 -9 1 -9 9 0 17 3 19 12 6z m-234 -38 c13 -16 12 -17 -3 -4 +-10 7 -18 15 -18 17 0 8 8 3 21 -13z m-2606 -12 c3 -5 2 -12 -3 -15 -5 -3 -9 +1 -9 9 0 17 3 19 12 6z m-105 -27 c0 -8 -19 -13 -24 -6 -3 5 1 9 9 9 8 0 15 +-2 15 -3z m2625 -3 c3 -5 2 -12 -3 -15 -5 -3 -9 1 -9 9 0 17 3 19 12 6z m159 +1 c3 -5 -1 -9 -9 -9 -8 0 -12 4 -9 9 3 4 7 8 9 8 2 0 6 -4 9 -8z m120 0 c3 -5 +-1 -9 -9 -9 -8 0 -12 4 -9 9 3 4 7 8 9 8 2 0 6 -4 9 -8z m-2757 -37 c0 -8 -4 +-12 -9 -9 -5 3 -6 10 -3 15 9 13 12 11 12 -6z m2320 0 c0 -8 -4 -12 -9 -9 -5 +3 -6 10 -3 15 9 13 12 11 12 -6z m-2162 -34 c3 -5 2 -12 -3 -15 -5 -3 -9 1 -9 +9 0 17 3 19 12 6z m162 -6 c0 -8 -4 -12 -9 -9 -5 3 -6 10 -3 15 9 13 12 11 12 +-6z m-227 -1 c0 -8 -19 -13 -24 -6 -3 5 1 9 9 9 8 0 15 -2 15 -3z m434 -2 c3 +-5 -1 -9 -9 -9 -8 0 -12 4 -9 9 3 4 7 8 9 8 2 0 6 -4 9 -8z m1633 -7 c0 -8 -4 +-12 -9 -9 -5 3 -6 10 -3 15 9 13 12 11 12 -6z m400 -30 c0 -8 -4 -12 -9 -9 -5 +3 -6 10 -3 15 9 13 12 11 12 -6z m-1920 -40 c0 -8 -4 -12 -9 -9 -5 3 -6 10 -3 +15 9 13 12 11 12 -6z m1680 0 c0 -8 -4 -12 -9 -9 -5 3 -6 10 -3 15 9 13 12 11 +12 -6z m78 6 c3 -5 2 -12 -3 -15 -5 -3 -9 1 -9 9 0 17 3 19 12 6z m-2158 -16 +c0 -8 -4 -12 -9 -9 -5 3 -6 10 -3 15 9 13 12 11 12 -6z m243 9 c0 -8 -19 -13 +-24 -6 -3 5 1 9 9 9 8 0 15 -2 15 -3z m1680 0 c0 -8 -19 -13 -24 -6 -3 5 1 9 +9 9 8 0 15 -2 15 -3z m-110 -40 c0 -8 -19 -13 -24 -6 -3 5 1 9 9 9 8 0 15 -2 +15 -3z m-1769 -41 c13 -16 12 -17 -3 -4 -10 7 -18 15 -18 17 0 8 8 3 21 -13z +m-90 -2 c-8 -5 -10 -14 -6 -22 6 -11 5 -11 -5 -2 -14 12 -6 33 13 33 8 0 7 -3 +-2 -9z m446 -6 c0 -8 -4 -12 -9 -9 -5 3 -6 10 -3 15 9 13 12 11 12 -6z m167 7 +c3 -5 -1 -9 -9 -9 -8 0 -12 4 -9 9 3 4 7 8 9 8 2 0 6 -4 9 -8z m-444 -36 c0 +-3 -4 -8 -10 -11 -5 -3 -10 -1 -10 4 0 6 5 11 10 11 6 0 10 -2 10 -4z m197 +-51 c0 -8 -4 -12 -9 -9 -5 3 -6 10 -3 15 9 13 12 11 12 -6z m253 9 c0 -8 -19 +-13 -24 -6 -3 5 1 9 9 9 8 0 15 -2 15 -3z m147 -9 c0 -8 -4 -12 -9 -9 -5 3 -6 +10 -3 15 9 13 12 11 12 -6z m797 7 c3 -5 -1 -9 -9 -9 -8 0 -12 4 -9 9 3 4 7 8 +9 8 2 0 6 -4 9 -8z m90 0 c3 -5 -1 -9 -9 -9 -8 0 -12 4 -9 9 3 4 7 8 9 8 2 0 +6 -4 9 -8z m166 2 c0 -8 -19 -13 -24 -6 -3 5 1 9 9 9 8 0 15 -2 15 -3z m-335 +-43 c3 -5 2 -12 -3 -15 -5 -3 -9 1 -9 9 0 17 3 19 12 6z m-478 -36 c0 -8 -4 +-12 -9 -9 -5 3 -6 10 -3 15 9 13 12 11 12 -6z m880 0 c0 -8 -4 -12 -9 -9 -5 3 +-6 10 -3 15 9 13 12 11 12 -6z m-1442 -4 c3 -5 2 -12 -3 -15 -5 -3 -9 1 -9 9 +0 17 3 19 12 6z m402 -76 c0 -8 -4 -12 -9 -9 -5 3 -6 10 -3 15 9 13 12 11 12 +-6z m478 -4 c3 -5 2 -12 -3 -15 -5 -3 -9 1 -9 9 0 17 3 19 12 6z m162 -6 c0 +-8 -4 -12 -9 -9 -5 3 -6 10 -3 15 9 13 12 11 12 -6z m318 6 c3 -5 2 -12 -3 +-15 -5 -3 -9 1 -9 9 0 17 3 19 12 6z m-1335 -37 c0 -14 3 -14 15 -4 9 7 15 8 +15 2 0 -20 -30 -21 -40 -2 -7 14 -7 20 0 20 5 0 10 -7 10 -16z m1177 1 c0 -8 +-4 -12 -9 -9 -5 3 -6 10 -3 15 9 13 12 11 12 -6z m78 6 c3 -5 2 -12 -3 -15 -5 +-3 -9 1 -9 9 0 17 3 19 12 6z m-1041 -49 c3 -5 -1 -9 -9 -9 -8 0 -12 4 -9 9 3 +4 7 8 9 8 2 0 6 -4 9 -8z m120 0 c3 -5 -1 -9 -9 -9 -8 0 -12 4 -9 9 3 4 7 8 9 +8 2 0 6 -4 9 -8z m120 0 c3 -5 -1 -9 -9 -9 -8 0 -12 4 -9 9 3 4 7 8 9 8 2 0 6 +-4 9 -8z m166 2 c0 -8 -19 -13 -24 -6 -3 5 1 9 9 9 8 0 15 -2 15 -3z m90 0 c0 +-8 -19 -13 -24 -6 -3 5 1 9 9 9 8 0 15 -2 15 -3z m384 -2 c3 -5 -1 -9 -9 -9 +-8 0 -12 4 -9 9 3 4 7 8 9 8 2 0 6 -4 9 -8z m-855 -66 c-3 -3 -11 5 -18 17 +-13 21 -12 21 5 5 10 -10 16 -20 13 -22z m741 30 c0 -2 -7 -7 -16 -10 -8 -3 +-12 -2 -9 4 6 10 25 14 25 6z m117 -11 c0 -8 -4 -12 -9 -9 -5 3 -6 10 -3 15 9 +13 12 11 12 -6z m67 7 c3 -5 -1 -9 -9 -9 -8 0 -12 4 -9 9 3 4 7 8 9 8 2 0 6 +-4 9 -8z m-310 -40 c3 -5 -1 -9 -9 -9 -8 0 -12 4 -9 9 3 4 7 8 9 8 2 0 6 -4 9 +-8z m96 2 c0 -8 -19 -13 -24 -6 -3 5 1 9 9 9 8 0 15 -2 15 -3z m-410 -80 c0 +-8 -19 -13 -24 -6 -3 5 1 9 9 9 8 0 15 -2 15 -3z m157 -9 c0 -8 -4 -12 -9 -9 +-5 3 -6 10 -3 15 9 13 12 11 12 -6z m80 -80 c0 -8 -4 -12 -9 -9 -5 3 -6 10 -3 +15 9 13 12 11 12 -6z"/> +<path d="M4875 9571 c-3 -6 0 -11 7 -11 10 0 9 -3 -2 -9 -8 -6 -17 -8 -22 -5 +-4 2 -17 -9 -29 -25 -17 -24 -27 -28 -53 -24 -30 4 -30 4 -11 -11 20 -16 20 +-16 1 -31 -19 -14 -19 -15 7 -13 22 2 26 6 21 23 -4 16 -3 17 5 5 9 -13 11 +-13 11 1 0 9 12 21 27 28 20 9 23 15 14 20 -9 6 -10 11 -2 15 6 4 11 2 11 -5 +0 -8 3 -9 13 0 8 6 17 8 20 5 4 -4 4 4 2 16 -5 28 -11 34 -20 21z"/> +<path d="M5906 9565 c-3 -9 -11 -13 -17 -9 -8 5 -9 3 -3 -7 5 -8 7 -23 5 -34 +l-3 -20 16 20 c8 11 16 16 16 11 0 -6 7 -1 16 10 8 10 13 13 9 7 -4 -9 -1 -11 +9 -7 10 4 16 1 16 -7 0 -11 2 -11 9 1 12 17 7 26 -21 41 -15 8 -19 8 -14 0 9 +-14 -7 -14 -21 0 -7 7 -12 6 -17 -6z m24 -9 c0 -3 -4 -8 -10 -11 -5 -3 -10 -1 +-10 4 0 6 5 11 10 11 6 0 10 -2 10 -4z"/> +<path d="M6076 9555 c15 -15 21 -30 17 -41 -6 -15 -8 -15 -24 5 -9 11 -19 16 +-21 11 -2 -6 -11 -12 -21 -14 -9 -1 -23 -8 -29 -14 -15 -15 -3 -15 24 -1 16 9 +19 8 13 -2 -6 -9 -3 -11 9 -6 9 4 30 0 46 -8 32 -17 55 -20 27 -4 -13 7 -15 +15 -8 27 7 12 5 23 -7 37 -9 11 -13 17 -8 13 5 -4 16 -2 24 5 13 10 14 9 7 -2 +-6 -11 -4 -13 9 -8 9 4 15 3 12 -1 -3 -5 2 -9 10 -9 13 0 13 2 0 15 -9 9 -35 +17 -59 18 l-44 2 23 -23z"/> +<path d="M6179 9568 c-1 -5 -2 -14 -3 -20 -1 -16 -24 -18 -51 -5 -16 8 -18 7 +-8 -3 9 -10 9 -19 2 -33 -7 -12 -7 -17 -1 -13 5 3 13 -1 16 -10 3 -8 11 -12 +17 -8 8 4 9 3 5 -4 -4 -7 -2 -12 4 -12 6 0 10 8 8 18 -2 9 -10 17 -17 17 -8 0 +-16 7 -18 15 -4 13 -3 13 6 0 10 -13 11 -13 11 0 0 13 1 13 10 0 8 -13 10 -12 +10 3 0 9 3 17 8 18 4 0 15 2 25 4 9 2 17 -1 17 -6 0 -6 6 -7 13 -3 8 5 8 2 -2 +-9 -12 -15 -11 -17 3 -17 9 0 16 5 16 10 0 6 6 5 14 -2 7 -7 13 -23 11 -35 -2 +-25 2 -28 24 -14 9 6 10 11 2 15 -6 4 -11 13 -11 19 0 7 4 6 10 -3 7 -10 10 +-11 10 -2 0 7 -8 16 -17 19 -10 4 -35 17 -55 30 -21 13 -38 20 -38 16 0 -5 -5 +-1 -10 7 -5 8 -10 12 -11 8z"/> +<path d="M5788 9538 c-13 -9 -30 -15 -39 -13 -8 3 -30 -6 -49 -20 -21 -16 -42 +-23 -58 -20 -26 4 -43 15 -24 15 7 0 12 5 12 10 0 6 -8 5 -20 -2 -17 -11 -17 +-14 -4 -21 11 -6 12 -12 5 -21 -8 -10 -5 -12 12 -11 12 1 26 -3 30 -9 5 -7 6 +-3 3 9 -6 19 -5 19 7 3 8 -10 17 -15 20 -11 4 3 1 13 -6 21 -8 11 -9 14 0 9 7 +-4 16 0 22 10 6 11 11 13 11 5 0 -7 5 -10 11 -6 8 4 7 9 -2 16 -10 6 -7 7 10 +3 17 -5 21 -4 16 5 -6 10 -3 10 10 2 14 -7 22 -6 34 7 9 9 12 10 6 2 -8 -11 +-6 -13 5 -9 8 3 14 12 14 21 -1 9 1 15 5 13 4 -3 13 -1 21 4 11 7 9 9 -7 7 +-12 0 -32 -9 -45 -19z"/> +<path d="M4927 9533 c-4 -3 -15 -7 -25 -8 -27 -2 -80 -45 -93 -77 -7 -16 -15 +-25 -18 -19 -4 6 -12 2 -19 -9 -11 -18 -10 -20 9 -17 13 2 28 19 40 43 17 34 +19 29 4 -9 -3 -8 3 -13 16 -14 16 -2 18 1 9 12 -8 10 -7 16 7 24 15 9 16 12 4 +20 -11 7 -10 11 8 20 11 7 21 9 21 5 0 -3 7 -1 15 6 13 11 14 10 8 -6 -6 -17 +-5 -17 10 -5 14 11 18 11 23 -3 8 -22 25 -20 18 2 -5 13 -4 14 4 3 6 -8 8 -21 +5 -29 -5 -12 -3 -12 16 -1 12 8 17 15 11 17 -6 2 -8 8 -4 13 3 5 2 9 -3 8 -4 +-1 -11 0 -15 1 -14 4 -28 7 -40 9 -9 1 -8 4 2 11 8 5 10 10 4 10 -6 0 -14 -3 +-17 -7z"/> +<path d="M5275 9530 c3 -5 1 -10 -4 -10 -6 0 -11 -5 -11 -11 0 -8 5 -8 15 1 +17 14 20 30 4 30 -5 0 -7 -4 -4 -10z"/> +<path d="M5820 9519 c-8 -10 -29 -21 -46 -23 -39 -4 -56 -14 -48 -28 4 -7 10 +-5 16 6 5 9 14 16 21 16 8 0 7 -3 -2 -9 -17 -11 -10 -34 12 -37 13 -2 16 3 12 +16 -3 10 0 22 7 26 6 4 14 2 16 -5 3 -9 10 -7 25 6 12 10 17 12 12 4 -6 -11 +-4 -13 8 -8 9 3 23 -1 32 -9 8 -9 15 -11 15 -5 0 6 12 17 28 25 15 8 25 16 22 +16 -28 7 -39 7 -35 0 6 -10 -16 -19 -33 -13 -6 3 -9 10 -6 16 5 9 4 9 -6 0 +-18 -17 -44 -5 -29 13 6 8 8 14 3 14 -5 -1 -16 -10 -24 -21z"/> +<path d="M4620 9510 c6 -11 15 -18 19 -15 11 6 22 -21 15 -38 -3 -8 2 -14 11 +-15 8 -1 22 -3 30 -4 21 -2 19 -16 -5 -23 -16 -5 -17 -9 -7 -20 12 -13 31 -10 +23 4 -3 4 1 8 9 8 8 0 15 -4 15 -9 0 -5 6 -6 13 -2 6 4 1 -5 -12 -19 -14 -15 +-19 -27 -13 -27 6 0 17 9 25 20 8 11 18 17 23 12 4 -4 3 0 -4 9 -9 12 -9 18 0 +27 9 9 9 12 1 12 -7 0 -15 -5 -19 -12 -5 -8 -11 -5 -20 7 -11 14 -11 22 -2 32 +9 11 9 16 -1 22 -10 7 -11 14 -1 32 11 23 10 23 -4 5 -9 -11 -16 -17 -16 -13 +0 4 -8 3 -18 -2 -14 -7 -23 -5 -35 10 -23 26 -41 25 -27 -1z m89 -51 c-14 -8 +-39 -1 -39 11 0 14 24 18 38 7 10 -8 10 -12 1 -18z"/> +<path d="M5123 9523 c-20 -7 -15 -19 12 -31 21 -10 24 -15 16 -31 -9 -16 -8 +-19 7 -17 15 3 18 10 13 47 0 5 -5 8 -9 5 -4 -2 -14 0 -22 5 -13 8 -13 10 0 +19 16 10 4 12 -17 3z"/> +<path d="M5221 9509 c8 -16 14 -18 22 -10 9 9 8 14 -3 21 -24 16 -31 11 -19 +-11z"/> +<path d="M6179 9509 c-10 -19 -8 -20 10 -14 20 6 20 5 -4 -20 -17 -19 -22 -32 +-16 -44 5 -9 6 -23 3 -31 -4 -13 -3 -13 11 -1 11 9 14 18 8 30 -5 9 -5 25 0 +36 4 11 8 14 8 6 1 -22 13 -5 16 23 4 32 -21 42 -36 15z"/> +<path d="M5012 9493 c1 -28 3 -30 19 -20 12 7 14 14 7 18 -6 4 -14 13 -19 20 +-5 8 -7 2 -7 -18z"/> +<path d="M4879 9495 c-1 -5 -2 -16 -3 -23 0 -7 -8 -17 -16 -22 -12 -8 -12 -10 +-1 -10 7 0 11 -6 8 -13 -3 -8 6 -12 28 -13 20 0 32 4 32 13 0 8 -9 11 -24 9 +-12 -3 -26 0 -29 6 -4 6 -2 8 3 5 15 -10 25 21 13 41 -5 10 -10 13 -11 7z"/> +<path d="M4930 9490 c0 -7 -6 -10 -12 -7 -8 3 -14 -5 -15 -21 -1 -18 1 -21 8 +-11 8 12 10 12 18 -1 5 -8 8 -17 5 -21 -5 -8 22 -20 29 -12 3 2 -3 13 -14 24 +-10 10 -19 25 -18 32 0 6 5 2 11 -10 6 -13 15 -23 20 -23 13 0 10 10 -12 37 +-11 14 -20 20 -20 13z"/> +<path d="M6220 9470 l-31 -30 27 2 c14 2 29 8 31 15 3 7 9 10 14 7 5 -3 9 0 9 +5 0 6 -5 11 -11 11 -5 0 -7 5 -4 10 12 19 -4 10 -35 -20z"/> +<path d="M4547 9483 c-2 -5 -3 -16 -2 -25 2 -10 -1 -18 -6 -18 -6 0 -7 -5 -4 +-10 5 -8 11 -7 21 1 12 10 12 14 2 20 -14 9 -1 12 60 11 17 0 32 4 32 8 0 5 +-17 8 -37 7 -21 -1 -43 2 -50 6 -6 4 -14 4 -16 0z"/> +<path d="M5909 9467 c-15 -16 -18 -16 -31 -3 -14 13 -17 12 -27 -10 -14 -31 +-14 -45 0 -21 8 13 14 15 29 7 15 -8 21 -6 28 7 7 12 23 16 61 16 28 -1 48 3 +45 8 -3 5 0 9 5 9 6 0 11 -4 11 -10 0 -5 7 -10 16 -10 8 0 12 5 9 10 -3 6 -1 +10 5 10 7 0 9 -8 5 -19 -3 -10 1 -24 10 -31 9 -8 15 -8 15 -2 0 6 -5 14 -11 +18 -8 4 -7 9 2 15 25 15 -2 23 -78 24 -61 0 -80 -4 -94 -18z"/> +<path d="M6324 9482 c-11 -8 -12 -27 -1 -38 6 -7 11 10 8 29 -1 5 3 6 9 2 6 +-3 8 -11 5 -16 -3 -5 1 -6 9 -3 9 3 16 1 16 -6 0 -6 5 -8 12 -4 7 4 8 3 4 -5 +-6 -9 -11 -9 -21 -1 -11 9 -14 7 -12 -9 1 -15 6 -20 17 -16 8 4 20 7 25 8 6 1 +13 6 16 10 3 4 12 1 19 -8 11 -13 10 -15 -2 -10 -9 4 -15 0 -15 -9 0 -10 9 +-14 29 -11 15 2 28 -1 28 -6 0 -6 4 -8 8 -5 5 3 16 -8 25 -24 17 -28 17 -29 +-4 -41 -13 -6 -19 -7 -15 -1 3 6 2 13 -3 16 -11 7 -22 -17 -13 -30 11 -14 45 +-18 36 -3 -4 7 -3 10 3 6 6 -4 15 5 22 19 14 31 14 37 -1 28 -7 -4 -8 -3 -4 5 +10 16 -12 41 -35 41 -11 0 -19 6 -19 13 0 8 -4 7 -10 -3 -8 -13 -10 -13 -10 1 +0 16 -9 23 -35 29 -5 1 -21 10 -35 19 -40 28 -45 30 -56 23z"/> +<path d="M5698 9474 c-4 -4 0 -13 10 -21 10 -9 11 -12 2 -7 -8 4 -12 4 -8 -1 +4 -4 2 -15 -5 -23 -10 -13 -9 -14 11 -3 12 6 22 8 22 4 0 -4 5 -1 11 7 9 12 +10 11 6 -7 -6 -25 7 -40 19 -22 5 9 11 7 20 -5 7 -10 15 -13 18 -7 4 6 20 2 +41 -10 24 -15 32 -25 28 -37 -6 -14 -4 -15 9 -4 14 11 20 6 47 -34 17 -26 31 +-44 31 -39 0 5 6 1 13 -9 11 -15 15 -16 25 -3 7 8 23 13 37 11 14 -1 25 0 25 +2 0 14 -32 64 -40 64 -14 0 -8 -23 10 -37 17 -14 17 -14 -27 -17 -18 -1 -33 1 +-33 6 0 5 -4 6 -10 3 -9 -5 -12 1 -9 21 0 3 -7 11 -16 18 -16 12 -16 13 0 29 +9 9 12 17 6 17 -5 0 -12 -4 -16 -10 -3 -6 -15 -5 -31 2 -18 9 -21 14 -12 20 8 +6 4 7 -12 3 -17 -4 -21 -3 -12 3 8 5 13 13 12 18 -1 5 4 10 12 12 11 3 11 2 0 +-6 -11 -7 -10 -10 3 -16 22 -8 22 -8 22 8 0 8 -11 19 -24 25 -15 7 -22 7 -18 +1 3 -5 3 -10 -2 -11 -4 0 -16 -2 -25 -4 -14 -3 -16 0 -8 15 5 9 6 20 3 24 -3 +3 -1 6 6 6 7 0 9 5 5 11 -4 8 -9 7 -14 -2 -7 -10 -11 -10 -24 0 -9 8 -16 9 +-16 3 0 -5 7 -13 15 -16 12 -4 13 -10 6 -25 -6 -10 -7 -21 -4 -25 3 -3 1 -6 +-5 -6 -15 0 -15 5 -1 33 10 21 10 21 -5 3 -12 -14 -16 -16 -16 -5 0 11 -2 11 +-9 1 -6 -11 -10 -10 -15 4 -3 9 -9 14 -12 11 -4 -3 -14 3 -23 14 -9 11 -20 17 +-23 13z m147 -74 c3 -5 1 -10 -4 -10 -6 0 -11 5 -11 10 0 6 2 10 4 10 3 0 8 +-4 11 -10z"/> +<path d="M4980 9450 c-6 -11 -8 -20 -4 -20 3 0 2 -6 -5 -13 -6 -8 -29 -13 -56 +-12 -32 2 -53 -4 -68 -16 -27 -23 -16 -24 25 -3 17 9 33 12 37 7 9 -12 34 -15 +26 -3 -3 5 -1 10 4 10 6 0 11 -4 11 -10 0 -5 5 -10 11 -10 5 0 8 4 4 9 -3 6 4 +15 15 21 11 6 20 15 20 21 0 6 -5 7 -12 3 -7 -4 -8 -3 -4 5 4 6 12 9 17 6 5 +-4 9 -2 9 4 0 20 -19 21 -30 1z"/> +<path d="M5012 9436 c-12 -20 -26 -36 -32 -36 -5 0 -9 -6 -7 -12 1 -7 -6 -12 +-15 -12 -21 2 -23 -7 -5 -26 10 -12 9 -12 -5 -2 -13 10 -17 10 -22 0 -3 -7 -3 +-2 0 12 4 14 3 22 -1 18 -5 -4 -13 -4 -19 2 -7 5 -18 5 -25 1 -9 -6 -10 -11 +-2 -15 6 -4 11 -1 11 6 0 9 3 9 10 -2 12 -18 14 -40 2 -25 -14 19 -93 30 -86 +11 3 -7 17 -13 32 -14 15 -1 46 -3 70 -5 29 -2 46 1 51 11 4 8 12 13 17 12 5 +-1 10 4 12 12 2 9 0 8 -8 -2 -10 -13 -11 -12 -6 3 3 10 6 22 6 25 0 4 4 1 8 +-6 7 -9 13 -8 27 8 10 11 13 20 7 20 -7 0 -12 5 -12 11 0 5 5 7 12 3 7 -4 8 +-3 4 4 -4 7 -2 12 3 12 6 0 11 -5 11 -10 0 -6 8 -5 19 2 11 7 17 16 14 20 -2 +5 -10 4 -17 -1 -9 -7 -16 -7 -23 0 -7 7 -17 -1 -31 -25z"/> +<path d="M6094 9458 c-9 -15 5 -25 31 -23 30 4 34 -11 5 -20 -16 -5 -17 -9 -7 +-20 14 -15 31 -9 21 7 -4 6 -2 8 4 4 17 -10 21 7 7 33 -12 24 -51 36 -61 19z"/> +<path d="M4584 9451 c3 -5 -1 -11 -8 -14 -8 -3 -19 -15 -25 -25 -8 -15 -7 -23 +6 -33 14 -12 15 -12 11 1 -3 8 -1 23 4 33 7 14 12 16 23 7 11 -9 14 -7 12 9 +-1 11 -7 23 -15 26 -7 2 -11 1 -8 -4z"/> +<path d="M4620 9451 c0 -6 -1 -14 -2 -18 -2 -3 5 -7 15 -9 21 -3 22 9 2 26 +-10 9 -15 9 -15 1z"/> +<path d="M5945 9449 c4 -6 0 -9 -11 -7 -13 2 -19 -4 -20 -19 -1 -27 11 -31 20 +-7 5 13 9 14 21 4 11 -9 14 -8 12 9 -1 11 -7 23 -15 26 -7 3 -10 0 -7 -6z"/> +<path d="M5985 9450 c3 -6 1 -10 -5 -10 -6 0 -8 -5 -5 -10 5 -8 11 -7 21 1 12 +10 14 10 12 -1 -2 -7 3 -15 10 -17 11 -4 12 -1 3 15 -6 11 -18 22 -26 26 -9 3 +-13 2 -10 -4z"/> +<path d="M6025 9444 c4 -11 8 -31 8 -46 0 -15 7 -30 14 -32 15 -6 16 -1 4 23 +-11 20 2 50 13 32 4 -6 3 -11 -3 -11 -6 0 -8 -7 -5 -15 7 -17 23 -11 20 8 -3 +20 -16 36 -38 48 -19 10 -20 9 -13 -7z"/> +<path d="M4455 9423 c-9 -13 -20 -21 -25 -18 -4 3 -7 -3 -5 -12 2 -10 4 -22 4 +-26 1 -5 6 -5 12 -2 6 4 8 9 5 12 -3 3 0 15 5 26 9 16 13 17 20 6 7 -11 11 +-11 22 4 12 17 14 17 26 3 8 -9 9 -16 5 -16 -5 0 -10 -13 -10 -28 -1 -18 4 +-29 12 -29 10 0 12 7 9 21 -5 19 -5 19 7 -2 11 -18 16 -20 27 -10 11 10 12 10 +7 1 -8 -15 3 -17 22 -4 11 7 11 9 -2 14 -9 4 -22 4 -30 1 -15 -6 -34 30 -38 +72 -2 21 -57 12 -73 -13z"/> +<path d="M6243 9434 c-5 -13 -7 -13 -14 -2 -7 10 -9 11 -9 0 0 -7 -5 -10 -12 +-6 -6 4 -8 3 -5 -3 8 -13 -19 -38 -41 -38 -8 0 -18 -7 -20 -15 -5 -13 -3 -13 +12 -1 9 8 16 10 15 5 -3 -19 1 -37 9 -30 7 7 8 11 11 37 0 5 6 7 13 3 7 -4 8 +-3 4 4 -4 7 -2 13 3 13 6 1 16 2 22 3 7 0 15 10 20 21 4 11 8 15 8 9 1 -6 11 +-10 24 -10 12 1 27 -1 32 -5 6 -4 17 -4 25 1 8 6 13 10 10 11 -3 0 -14 3 -25 +5 -58 13 -76 13 -82 -2z"/> +<path d="M4665 9430 c5 -8 -8 -14 -17 -8 -2 1 -12 -4 -24 -10 -16 -8 -24 -8 +-33 1 -10 9 -11 8 -5 -7 6 -15 4 -18 -7 -12 -8 4 -1 -4 15 -17 29 -25 29 -25 +7 -36 -12 -7 -27 -9 -34 -5 -8 6 -8 3 1 -8 10 -13 11 -22 3 -37 -14 -25 -14 +-42 0 -18 8 13 14 15 28 7 14 -7 22 -5 32 6 11 13 10 15 -2 14 -26 -4 -36 0 +-36 15 0 8 4 12 8 10 4 -3 10 2 13 10 4 12 10 13 25 5 26 -14 31 -13 25 5 -4 +8 -10 13 -14 10 -10 -6 -40 22 -40 38 0 7 4 6 10 -3 9 -14 14 -7 11 15 -1 6 5 +2 12 -7 8 -10 17 -15 21 -11 4 4 4 0 1 -8 -4 -10 0 -16 10 -16 19 0 19 11 -1 +28 -14 12 -14 14 0 25 15 11 15 12 1 18 -9 3 -13 2 -10 -4z"/> +<path d="M5066 9432 c-4 -7 -12 -9 -18 -6 -6 4 -8 2 -5 -3 4 -6 -2 -18 -13 +-28 -26 -23 -26 -39 -1 -23 11 7 17 16 15 20 -3 4 0 9 5 9 6 1 16 2 21 3 11 1 +14 10 8 28 -3 9 -6 9 -12 0z"/> +<path d="M4366 9414 c-16 -11 -17 -16 -6 -29 7 -8 17 -15 22 -15 6 0 5 7 -2 +15 -10 12 -10 19 -2 27 11 11 14 6 11 -18 0 -4 5 -11 13 -15 7 -5 8 -9 2 -9 +-6 0 -11 -7 -11 -15 0 -8 4 -15 9 -15 8 0 11 12 11 45 0 8 -1 19 -2 24 -2 16 +-27 19 -45 5z"/> +<path d="M6098 9419 c-9 -5 -15 -16 -12 -24 4 -8 10 -12 15 -9 5 3 6 -2 3 -11 +-4 -9 -2 -15 2 -13 5 2 17 -4 25 -12 14 -12 14 -16 2 -25 -11 -8 -11 -13 2 +-33 9 -12 21 -22 27 -22 6 0 3 9 -7 20 -15 16 -16 23 -6 33 9 9 14 9 20 -1 6 +-9 12 -8 26 8 10 11 13 20 7 20 -6 0 -13 -4 -17 -10 -3 -5 -12 -7 -20 -4 -8 4 +-12 11 -8 17 3 5 2 7 -4 4 -5 -3 -20 7 -31 23 -21 27 -21 30 -4 39 9 6 13 10 +7 10 -5 0 -18 -4 -27 -10z"/> +<path d="M4496 9404 c-3 -9 -13 -14 -21 -10 -8 3 -17 1 -20 -3 -6 -11 21 -22 +38 -15 7 2 13 13 14 24 2 24 -3 26 -11 4z"/> +<path d="M4830 9410 c0 -6 -4 -9 -9 -5 -5 3 -12 1 -16 -5 -4 -6 -11 -8 -16 -5 +-5 4 -9 2 -9 -3 0 -4 -14 -18 -30 -31 -36 -26 -60 -19 -34 10 9 10 12 19 6 19 +-6 0 -16 -9 -22 -21 -9 -17 -8 -23 7 -34 13 -10 20 -10 25 -2 6 9 8 8 8 -2 0 +-11 3 -11 15 -1 9 8 12 16 6 19 -5 4 1 11 13 17 17 8 23 8 23 -2 0 -7 -4 -11 +-8 -9 -4 3 -9 -2 -12 -9 -4 -10 1 -14 14 -13 11 1 19 8 18 17 -3 35 1 55 10 +42 6 -10 10 -10 20 2 8 10 9 16 1 21 -5 3 -10 1 -10 -5z"/> +<path d="M5940 9412 c0 -7 -11 -18 -25 -24 -17 -8 -22 -14 -14 -19 15 -9 50 +11 42 25 -3 5 -1 6 5 2 13 -8 7 -47 -9 -56 -7 -5 -5 -9 6 -14 9 -3 14 -10 11 +-15 -3 -5 0 -11 7 -14 8 -3 12 7 13 29 0 20 -3 31 -9 27 -6 -3 -7 -1 -3 5 13 +21 16 53 4 46 -5 -4 -14 0 -19 7 -6 11 -9 11 -9 1z"/> +<path d="M5989 9413 c-6 -35 -4 -115 3 -125 4 -7 8 -11 9 -8 0 3 2 13 4 23 2 +9 -1 17 -6 17 -18 0 -8 16 11 17 11 1 27 -8 35 -20 8 -12 15 -16 15 -10 0 6 +-7 18 -15 27 -14 13 -13 15 3 13 13 -1 18 -10 19 -31 2 -61 3 -67 12 -61 5 3 +12 1 16 -5 3 -5 10 -10 16 -10 5 0 4 9 -3 19 -7 11 -15 19 -19 18 -4 -1 -7 1 +-8 6 -1 8 6 8 34 -4 11 -4 14 -8 6 -8 -11 -1 -11 -4 -1 -16 11 -13 15 -13 21 +-3 7 10 9 10 9 1 0 -7 6 -13 13 -13 6 1 -6 17 -28 37 -22 20 -34 32 -26 28 9 +-5 12 -4 7 3 -3 6 -2 13 3 17 6 3 8 12 5 20 -4 8 -10 13 -14 10 -5 -3 -14 3 +-19 12 -10 17 -11 17 -22 0 -8 -13 -14 -15 -29 -7 -23 13 -33 13 -25 1 3 -5 0 +-13 -6 -17 -7 -4 -9 -3 -5 4 3 5 1 12 -6 14 -8 3 -8 9 1 24 9 14 11 15 7 2 -3 +-12 -1 -15 10 -11 13 5 13 8 -2 24 -19 21 -23 23 -25 12z m103 -73 c-2 -8 3 +-10 13 -7 22 9 18 -1 -6 -14 -15 -8 -19 -8 -15 0 4 6 1 11 -6 12 -10 0 -10 2 +1 6 11 5 11 7 0 15 -11 8 -11 9 1 5 8 -2 14 -10 12 -17z"/> +<path d="M6253 9405 c-11 -8 -22 -13 -24 -11 -2 1 -12 -6 -21 -16 -15 -15 -15 +-18 -3 -18 22 0 18 -13 -11 -40 -21 -21 -27 -22 -34 -10 -5 8 -10 10 -10 4 0 +-6 6 -17 13 -23 8 -6 13 -21 12 -33 -1 -18 -8 -23 -31 -23 -20 -1 -28 -5 -26 +-15 1 -8 -7 -4 -18 10 -11 14 -20 21 -20 17 0 -4 -9 -3 -19 3 -24 12 -36 -3 +-16 -20 12 -10 15 -10 15 1 0 9 3 10 8 3 7 -11 46 -34 57 -34 4 0 5 6 2 13 -3 +8 1 14 8 14 7 0 12 -7 11 -15 0 -8 6 -17 14 -20 11 -4 13 -2 5 9 -5 8 -2 6 8 +-4 12 -14 17 -15 17 -5 0 8 -6 20 -12 27 -7 8 -8 11 -3 9 6 -3 15 0 22 7 10 +10 9 15 -5 20 -16 6 -16 7 1 20 10 7 28 11 40 8 22 -5 22 -5 2 10 -15 12 -24 +13 -40 4 -18 -9 -19 -9 -6 7 8 9 20 15 28 12 8 -3 11 -2 8 3 -3 5 -1 13 5 16 +8 5 8 11 0 20 -7 9 -6 16 3 24 8 6 17 8 20 4 4 -3 12 -2 19 4 21 15 73 9 70 +-8 -1 -9 5 -16 13 -16 8 0 14 7 13 15 -2 8 3 17 11 20 10 3 11 -2 6 -18 -6 +-17 -4 -21 6 -14 20 12 52 13 69 2 11 -6 9 -7 -8 -3 -23 7 -28 -12 -7 -27 6 +-5 4 -12 -5 -18 -11 -7 -18 -5 -26 5 -14 19 -21 19 -21 1 0 -8 11 -19 25 -25 +20 -10 22 -14 11 -27 -11 -13 -10 -15 7 -12 10 1 22 8 26 13 5 6 8 4 8 -5 0 +-9 9 -16 20 -17 11 -1 18 2 15 8 -4 5 1 12 9 15 8 3 18 15 22 26 5 16 8 18 15 +7 7 -11 9 -11 9 -1 0 7 4 11 9 7 5 -3 12 -1 16 5 9 15 25 12 25 -5 0 -8 -5 +-15 -12 -15 -21 0 2 -14 30 -18 26 -3 26 -3 7 12 -11 8 -17 18 -12 22 4 4 7 2 +7 -5 0 -7 4 -10 9 -7 5 3 11 -1 15 -9 3 -8 -3 -19 -12 -24 -10 -6 -12 -11 -4 +-11 7 0 25 7 40 16 20 12 22 12 9 1 -16 -13 -16 -15 -1 -21 22 -8 21 -9 20 17 +-1 15 -7 21 -20 19 -12 -2 -16 1 -10 10 4 7 4 10 -1 6 -4 -4 -20 1 -35 12 -16 +11 -35 20 -43 20 -8 0 -18 7 -21 16 -3 8 -10 13 -15 10 -5 -4 -12 0 -15 6 -3 +7 -4 4 -1 -7 3 -11 -4 -34 -14 -51 -15 -25 -26 -31 -50 -30 -26 1 -30 4 -26 +23 6 37 15 46 31 32 8 -6 17 -9 21 -5 3 3 1 6 -6 6 -7 0 -10 4 -6 10 7 12 -44 +39 -70 37 -11 -1 -20 4 -20 13 -1 8 -7 13 -15 11 -31 -9 -65 -8 -77 2 -9 6 +-13 6 -13 -3 0 -9 -3 -10 -13 -2 -10 9 -19 8 -34 -3z m321 -61 c3 -8 2 -12 -4 +-9 -6 3 -10 1 -10 -6 0 -7 -2 -10 -5 -7 -5 5 4 38 10 38 2 0 6 -7 9 -16z"/> +<path d="M4314 9386 c-15 -12 -16 -16 -5 -30 7 -9 18 -16 24 -16 5 0 2 10 -9 +22 -15 19 -16 20 -1 9 12 -9 17 -10 17 -2 0 8 4 8 14 -1 9 -8 10 -15 4 -19 -6 +-4 -1 -10 11 -14 11 -3 21 -13 21 -21 0 -22 17 -16 24 9 5 18 8 19 15 7 5 -8 +8 -17 5 -21 -2 -4 5 -7 16 -6 24 2 26 12 4 21 -13 5 -14 9 -4 22 7 8 16 11 19 +6 3 -5 16 -14 29 -21 12 -7 20 -16 17 -22 -7 -10 8 -13 18 -3 8 8 -3 35 -12 +30 -4 -3 -13 0 -21 5 -13 8 -13 10 0 19 11 7 7 9 -15 6 -49 -6 -59 -10 -71 +-25 -11 -13 -38 -7 -30 7 2 4 -9 17 -24 29 -24 19 -30 20 -46 9z"/> +<path d="M6273 9377 c-3 -4 -11 -6 -19 -3 -16 6 -29 -10 -14 -19 6 -4 7 -12 3 +-18 -14 -22 -13 -39 2 -27 9 8 15 8 20 0 3 -5 12 -10 18 -10 7 1 2 9 -11 20 +l-22 19 21 6 c17 6 19 9 8 17 -11 8 -10 9 3 5 9 -3 18 -1 20 5 2 6 10 3 17 -6 +12 -14 11 -16 -5 -10 -15 6 -17 4 -7 -6 18 -19 63 -22 56 -3 -4 10 -8 11 -13 +3 -5 -8 -9 -7 -14 5 -3 9 -4 20 -2 23 2 4 -9 7 -26 7 -16 1 -32 -3 -35 -8z"/> +<path d="M4635 9370 c3 -5 8 -10 11 -10 2 0 4 5 4 10 0 6 -5 10 -11 10 -5 0 +-7 -4 -4 -10z"/> +<path d="M4277 9351 c-3 -12 -1 -21 4 -21 5 0 9 5 9 11 0 5 5 7 11 3 8 -5 8 +-8 0 -14 -9 -5 -8 -10 4 -20 8 -7 15 -8 15 -3 0 5 11 9 25 9 14 0 25 -4 25 -8 +0 -8 -16 -12 -39 -8 -12 1 -13 -1 -2 -14 10 -11 18 -13 32 -6 14 8 20 6 28 -7 +16 -28 13 -6 -4 26 -15 30 -45 49 -45 29 0 -7 -13 1 -29 16 -27 26 -29 26 -34 +7z"/> +<path d="M6395 9359 c-4 -5 -11 -7 -16 -4 -5 4 -9 1 -9 -5 0 -7 8 -9 19 -5 13 +4 23 0 30 -12 9 -16 10 -16 8 4 -1 24 -22 38 -32 22z"/> +<path d="M4241 9346 c-13 -7 -20 -16 -15 -19 10 -6 51 20 43 27 -2 2 -15 -1 +-28 -8z"/> +<path d="M4673 9346 c8 -21 -8 -29 -32 -17 -15 8 -20 7 -25 -6 -4 -9 -4 -18 +-1 -21 3 -3 5 0 5 8 0 10 4 10 17 -1 14 -12 16 -12 8 0 -6 10 -4 12 4 7 9 -6 +8 -13 -6 -29 -10 -12 -19 -23 -20 -25 0 -2 -12 2 -25 9 -12 6 -20 8 -16 4 4 +-4 1 -13 -8 -20 -14 -10 -14 -12 1 -25 15 -12 16 -12 13 5 -1 10 4 20 12 22 +11 3 11 2 3 -4 -9 -6 -7 -12 9 -22 18 -11 20 -11 16 1 -3 8 0 22 8 33 14 19 +19 10 14 -24 -1 -12 1 -13 14 -2 10 9 13 18 7 30 -5 9 -5 25 0 36 4 11 8 14 8 +6 1 -10 4 -11 15 -2 11 9 16 9 22 0 4 -7 3 -10 -2 -6 -5 3 -18 -1 -29 -9 -18 +-13 -17 -14 9 -12 16 2 31 8 33 15 8 22 24 3 17 -20 -3 -12 -3 -19 1 -14 5 4 +19 0 32 -8 22 -15 24 -14 43 17 11 18 20 29 20 23 0 -5 4 -4 9 4 5 8 17 16 25 +17 9 1 14 -2 10 -7 -3 -5 -11 -6 -17 -3 -8 5 -8 3 1 -7 10 -10 14 -11 25 0 10 +10 8 15 -7 26 -17 13 -21 12 -33 -3 -10 -13 -13 -14 -11 -2 2 9 -3 13 -12 11 +-8 -2 -28 -5 -45 -7 -16 -1 -30 -3 -30 -4 0 -1 -8 -3 -17 -5 -9 -2 -29 8 -44 +22 -15 14 -24 18 -21 9z m124 -41 c-4 -8 -2 -17 3 -20 9 -6 14 8 11 28 -1 5 3 +6 9 2 7 -4 7 -12 0 -26 -6 -11 -16 -16 -22 -13 -8 5 -9 1 -4 -11 7 -18 6 -18 +-14 0 -19 17 -19 19 -3 36 22 22 27 23 20 4z"/> +<path d="M6281 9341 c-9 -6 -8 -11 3 -21 9 -7 13 -16 10 -21 -3 -5 -1 -16 3 +-24 7 -12 11 -11 22 7 11 18 11 20 -1 15 -8 -3 -15 0 -15 7 0 7 6 13 14 13 7 +0 13 -5 13 -10 0 -5 7 -4 15 3 11 9 15 9 15 1 0 -7 4 -10 9 -6 6 3 15 -3 20 +-14 8 -14 7 -22 -4 -31 -8 -7 -15 -20 -15 -28 0 -12 4 -11 16 6 8 12 20 20 25 +17 5 -3 6 1 3 9 -4 10 -1 16 7 16 8 1 1 8 -14 16 -15 8 -25 19 -21 25 3 6 -5 +8 -22 5 -16 -3 -38 1 -49 8 -12 8 -27 11 -34 7z"/> +<path d="M4471 9320 c21 -17 18 -23 -7 -19 -8 1 -24 -23 -24 -36 0 -5 5 -3 10 +5 7 11 10 12 10 2 0 -10 4 -9 16 2 8 9 20 13 25 10 6 -3 9 2 7 12 -2 11 -12 +24 -23 31 -31 19 -40 15 -14 -7z"/> +<path d="M4543 9328 c4 -12 -2 -26 -18 -42 -14 -14 -25 -20 -25 -15 0 6 -7 3 +-16 -5 -8 -9 -19 -14 -23 -12 -4 3 -8 -7 -8 -22 0 -25 4 -28 38 -29 35 -1 37 +-1 21 16 -11 11 -20 13 -24 7 -4 -6 -10 -7 -15 -3 -9 9 17 28 29 21 4 -3 8 -1 +8 3 0 5 7 18 16 29 15 18 15 18 5 -2 -6 -12 -7 -24 -4 -28 3 -3 1 -6 -5 -6 -7 +0 -12 -5 -12 -11 0 -9 4 -9 13 0 11 8 18 7 31 -7 9 -10 13 -22 9 -27 -5 -4 -2 +-5 5 -1 6 4 12 2 12 -3 0 -6 -8 -11 -17 -11 -14 0 -15 -2 -5 -9 8 -4 13 -12 +13 -17 -1 -14 23 -11 35 4 6 8 23 16 39 18 35 3 60 31 44 50 -14 18 12 25 31 +8 14 -11 16 -9 15 22 0 28 -2 32 -11 19 -9 -13 -13 -13 -17 -3 -4 11 -6 11 -6 +0 -1 -7 -6 -10 -13 -6 -6 4 -8 3 -5 -3 4 -6 -2 -18 -13 -28 -11 -10 -20 -15 +-20 -10 0 4 -6 2 -14 -4 -10 -9 -16 -9 -21 -1 -4 7 -11 8 -18 1 -19 -15 -45 +11 -43 44 0 17 5 33 10 37 5 3 1 14 -9 25 -17 16 -18 16 -12 1z m102 -118 c-3 +-5 -2 -10 4 -10 5 0 13 5 16 10 3 6 12 10 18 9 9 0 8 -2 -1 -6 -6 -2 -9 -10 +-6 -15 4 -7 2 -8 -4 -4 -7 4 -12 3 -12 -2 0 -10 -30 -9 -48 2 -9 5 -12 3 -10 +-7 2 -9 -1 -15 -7 -14 -5 1 -8 9 -6 17 5 22 9 24 25 11 11 -9 15 -8 20 4 3 8 +8 15 11 15 4 0 3 -4 0 -10z"/> +<path d="M4183 9317 c-13 -5 -23 -14 -23 -20 0 -5 7 -4 15 3 13 11 14 10 9 -4 +-5 -12 -2 -15 9 -10 9 3 15 11 13 17 -1 7 -1 9 1 4 3 -4 9 -5 14 -1 5 3 9 0 9 +-6 0 -6 4 -9 9 -5 5 3 12 1 16 -5 3 -5 14 -10 23 -10 13 0 13 2 -4 14 -10 8 +-16 18 -11 22 4 4 7 2 7 -5 0 -7 5 -9 10 -6 6 3 11 1 11 -4 3 -26 4 -30 12 +-37 4 -4 7 -2 7 5 0 7 5 9 11 6 6 -4 8 -14 5 -22 -3 -8 -1 -11 4 -8 6 4 7 -1 +3 -10 -5 -15 -3 -15 16 -4 12 8 17 15 11 17 -6 2 -7 9 -3 15 3 7 3 9 -2 5 -4 +-4 -25 8 -47 27 -40 37 -53 42 -63 25 -4 -6 -13 -7 -23 -1 -10 5 -26 4 -39 -2z"/> +<path d="M6576 9305 c-10 -8 -22 -13 -25 -11 -6 3 -39 -28 -43 -41 -2 -5 -13 +-8 -26 -7 -12 1 -20 -1 -17 -4 2 -3 0 -11 -6 -19 -9 -9 -8 -13 0 -13 6 0 14 7 +18 16 5 13 7 13 14 2 8 -11 10 -11 18 1 5 7 11 9 13 5 3 -5 3 -3 1 4 -1 7 2 +10 8 7 6 -4 9 1 7 11 -2 14 2 18 16 16 12 -2 16 1 10 10 -4 7 2 4 14 -6 12 +-11 22 -14 22 -8 0 6 -5 14 -10 17 -8 5 -7 11 1 21 15 18 9 17 -15 -1z"/> +<path d="M6253 9300 c2 -8 0 -23 -4 -32 -7 -13 -4 -20 10 -28 27 -14 38 -13 +18 3 -13 9 -14 16 -6 27 9 12 10 11 4 -5 -3 -11 -3 -16 1 -12 4 4 12 0 19 -9 +10 -14 12 -14 25 1 12 14 12 16 -1 13 -9 -1 -28 11 -43 27 -15 17 -25 23 -23 +15z"/> +<path d="M4140 9292 c0 -7 -5 -10 -10 -7 -6 3 -13 -1 -16 -9 -3 -9 -10 -13 +-15 -10 -5 3 -9 0 -9 -5 0 -6 -3 -10 -7 -9 -14 4 -53 -13 -53 -23 0 -5 -3 -8 +-7 -7 -9 1 -61 -20 -53 -22 27 -8 39 -7 34 2 -4 7 -2 8 5 4 6 -4 8 -12 5 -18 +-4 -6 -1 -9 7 -6 8 3 13 12 11 20 -1 9 5 22 15 29 10 9 14 9 10 2 -7 -11 11 +-53 23 -53 3 0 6 9 7 20 1 11 -1 19 -5 17 -4 -1 -8 1 -9 6 -6 16 -2 24 11 24 +8 0 12 -6 9 -15 -5 -12 -3 -12 15 -1 12 7 17 16 12 19 -5 3 -5 11 0 20 8 12 +10 11 11 -5 1 -11 0 -27 -1 -34 -1 -11 1 -12 12 -4 7 6 17 11 23 11 5 0 11 5 +13 10 2 6 -5 9 -14 8 -9 0 -19 6 -21 14 -3 10 -2 11 4 4 10 -14 65 -13 75 1 5 +6 8 2 8 -8 0 -10 4 -16 9 -12 5 3 12 1 16 -5 3 -5 11 -10 16 -10 5 0 2 11 -6 +24 -12 18 -23 23 -43 20 -45 -8 -65 -6 -73 8 -7 11 -9 11 -9 0z"/> +<path d="M4407 9294 c-3 -4 -2 -16 4 -27 7 -11 7 -17 1 -13 -6 3 -8 -9 -6 -32 +3 -20 5 -45 5 -55 0 -15 3 -16 14 -7 11 9 12 17 5 31 -8 14 -6 20 7 28 12 7 +14 13 7 18 -5 5 -10 19 -10 32 0 24 -14 38 -27 25z m23 -64 c0 -5 -4 -10 -10 +-10 -5 0 -10 5 -10 10 0 6 5 10 10 10 6 0 10 -4 10 -10z"/> +<path d="M6332 9288 c-8 -8 -8 -15 -1 -24 7 -8 7 -14 -1 -19 -5 -3 -10 -11 +-10 -17 0 -7 4 -7 13 1 8 6 17 9 20 6 4 -3 5 -2 2 2 -3 3 4 12 15 20 10 7 17 +19 14 26 -6 16 -38 19 -52 5z m22 -10 c-5 -8 -2 -9 10 -5 10 4 15 3 11 -3 -7 +-12 -35 -13 -35 -2 0 9 10 22 17 22 2 0 1 -5 -3 -12z"/> +<path d="M4373 9229 c0 -30 2 -48 4 -41 3 6 8 10 12 8 11 -7 6 46 -6 68 -8 15 +-10 8 -10 -35z"/> +<path d="M6213 9264 c1 -11 -3 -27 -10 -35 -10 -12 -8 -17 8 -27 21 -14 26 -3 +7 17 -9 9 -9 12 -1 7 6 -3 13 -3 16 1 2 5 2 2 0 -5 -1 -7 2 -10 7 -7 6 3 10 1 +10 -6 0 -7 3 -9 6 -6 4 3 15 2 25 -3 10 -6 20 -6 23 -1 6 8 48 7 63 -2 5 -3 +17 2 28 10 20 15 20 15 -1 11 -12 -3 -28 -1 -37 3 -10 6 -18 5 -22 -1 -3 -6 +-14 -7 -23 -2 -9 4 -26 7 -37 7 -22 -1 -46 25 -38 39 4 5 1 6 -5 2 -5 -3 -13 +0 -16 6 -3 7 -4 4 -3 -8z"/> +<path d="M6610 9265 c0 -18 -12 -19 -28 -3 -9 9 -12 9 -12 -1 0 -11 -3 -11 +-17 0 -11 9 -14 10 -9 2 12 -22 -11 -52 -39 -48 -14 1 -29 -3 -32 -9 -14 -21 +-12 -43 2 -43 18 0 19 9 3 27 -11 12 -10 12 4 2 13 -10 17 -10 22 0 3 7 4 4 1 +-8 -4 -14 0 -21 10 -21 10 0 13 6 10 18 -7 21 25 42 52 33 10 -3 8 1 -6 9 -20 +12 -21 15 -7 20 10 4 19 1 22 -8 7 -17 34 -20 34 -4 0 5 -5 7 -12 3 -7 -5 -8 +-3 -3 6 5 9 14 4 31 -16 13 -16 23 -24 24 -17 0 6 -5 15 -10 18 -6 4 -9 9 -7 +13 2 4 -4 15 -15 25 -15 14 -18 14 -18 2z"/> +<path d="M6719 9278 c-6 -20 -8 -61 -3 -55 10 9 17 57 9 57 -3 0 -5 -1 -6 -2z"/> +<path d="M4277 9259 c6 -6 9 -17 6 -24 -5 -14 30 -38 41 -28 3 3 6 1 6 -5 0 +-9 5 -9 19 0 11 7 17 16 14 20 -2 5 -11 4 -18 -2 -15 -13 -41 13 -29 31 4 7 3 +9 -4 5 -6 -3 -13 -2 -17 4 -3 5 -11 10 -18 10 -8 0 -8 -3 0 -11z m34 -36 c13 +-16 12 -17 -3 -4 -10 7 -18 15 -18 17 0 8 8 3 21 -13z"/> +<path d="M6747 9253 c5 -12 3 -14 -8 -8 -12 8 -12 6 0 -8 15 -19 36 -23 25 -5 +-4 7 -3 8 4 4 8 -4 10 -2 6 8 -3 8 -12 17 -19 20 -10 3 -12 0 -8 -11z"/> +<path d="M4185 9240 c-10 -11 -22 -18 -27 -17 -6 1 -13 -4 -15 -11 -4 -12 -1 +-12 18 -1 13 7 29 19 36 28 10 14 11 14 10 -3 -1 -10 4 -21 11 -23 8 -3 10 2 +6 14 -5 15 -4 15 5 3 8 -11 11 -11 11 -2 0 10 3 10 14 0 8 -7 10 -16 4 -19 -5 +-3 -3 -11 6 -18 11 -9 15 -9 19 1 4 11 6 10 6 0 1 -7 5 -11 9 -8 4 2 14 0 22 +-6 12 -8 12 -9 -2 -4 -10 3 -18 2 -18 -3 0 -18 15 -20 39 -5 14 9 23 13 19 9 +-4 -4 -1 -14 7 -21 15 -16 29 -19 20 -5 -3 6 3 15 12 21 16 10 15 11 -5 7 -13 +-3 -25 1 -31 10 -6 11 -10 12 -15 4 -9 -14 -39 0 -78 37 -16 14 -28 22 -28 19 +0 -4 -8 -3 -19 2 -14 8 -23 6 -36 -9z"/> +<path d="M6439 9260 c-1 -3 -2 -18 -4 -35 -2 -16 -6 -38 -10 -49 -7 -16 -6 +-17 14 -7 17 9 19 16 12 30 -6 11 -6 22 -1 27 6 6 5 15 0 24 -5 8 -10 13 -11 +10z"/> +<path d="M6656 9245 c-6 -16 17 -38 29 -27 5 4 5 1 1 -5 -5 -9 -2 -11 8 -7 11 +4 16 0 16 -12 0 -15 2 -16 9 -5 5 8 21 15 34 15 21 1 24 -1 16 -16 -6 -10 -5 +-19 1 -23 6 -4 8 -10 5 -15 -3 -4 2 -10 10 -14 8 -3 12 -11 9 -19 -3 -8 2 -14 +11 -14 19 0 19 6 -4 41 -14 21 -17 35 -11 46 5 10 6 21 2 25 -4 5 -1 5 6 1 7 +-4 9 -12 6 -18 -4 -7 -2 -8 4 -4 7 4 12 1 12 -6 0 -9 3 -9 10 2 7 11 10 11 10 +2 0 -7 5 -10 12 -6 7 5 8 3 3 -6 -5 -9 -1 -11 16 -6 13 3 18 3 11 0 -6 -3 -9 +-11 -6 -16 4 -6 2 -8 -3 -5 -6 4 -14 0 -17 -9 -5 -12 -2 -15 10 -10 8 3 20 6 +25 6 6 0 8 4 4 9 -3 5 0 13 6 17 8 4 9 3 5 -4 -5 -8 -2 -10 8 -6 9 3 16 1 16 +-6 0 -6 4 -9 9 -5 5 3 13 0 17 -6 4 -8 3 -9 -4 -5 -7 4 -12 3 -12 -2 0 -17 13 +-22 29 -9 14 10 14 10 4 -4 -7 -9 -10 -19 -6 -22 12 -12 19 -7 20 16 2 18 -11 +29 -73 60 -41 21 -80 35 -86 31 -8 -5 -9 -2 -5 10 4 9 3 14 -2 11 -5 -3 -12 +-1 -16 5 -4 6 -12 5 -21 -5 -18 -18 -30 -19 -39 -5 -5 8 -11 8 -20 0 -10 -9 +-16 -7 -24 8 -13 25 -38 35 -45 17z m34 -11 c0 -8 -19 -13 -24 -6 -3 5 1 9 9 +9 8 0 15 -2 15 -3z"/> +<path d="M6395 9241 c-3 -5 2 -11 10 -15 8 -3 17 -1 20 3 3 5 -2 11 -10 15 -8 +3 -17 1 -20 -3z"/> +<path d="M4101 9212 c-6 -12 -8 -22 -4 -22 4 0 1 -6 -6 -12 -10 -11 -16 -8 +-32 12 -10 14 -17 18 -14 9 7 -18 -20 -33 -38 -22 -22 14 -48 13 -77 -2 -17 +-9 -31 -14 -32 -13 -2 2 -16 -7 -33 -18 -16 -12 -40 -25 -52 -28 -13 -4 -23 +-12 -23 -18 0 -6 7 -5 18 3 15 12 16 12 5 -1 -8 -10 -9 -21 -3 -30 6 -8 10 +-12 11 -7 1 4 3 12 4 17 1 6 3 15 4 20 0 6 7 9 14 8 6 -2 11 3 9 10 -2 10 3 +10 20 -2 28 -20 35 -20 35 -1 0 9 -6 14 -13 11 -8 -3 -16 0 -20 6 -4 6 -3 8 4 +4 6 -3 14 -1 18 5 5 8 9 7 15 -2 4 -7 20 -14 36 -16 27 -4 27 -4 8 11 -11 8 +-23 12 -27 10 -4 -2 -10 1 -14 8 -4 7 -3 10 1 5 5 -4 17 1 27 10 11 10 18 13 +17 8 -2 -6 3 -21 11 -35 7 -14 13 -26 12 -27 -7 -11 0 -11 11 -2 11 11 10 16 +-5 31 -10 10 -18 24 -18 31 0 9 3 8 9 -2 7 -11 9 -11 13 0 3 10 6 10 12 1 4 +-7 2 -12 -3 -12 -6 0 -11 -5 -11 -11 0 -8 4 -8 14 0 10 8 16 9 21 1 3 -5 11 +-10 17 -10 6 0 5 7 -3 17 -10 11 -10 14 -1 9 7 -4 12 -2 12 6 0 8 4 6 11 -4 9 +-17 12 -17 34 -2 24 16 37 42 13 28 -7 -5 -8 -3 -3 6 6 10 10 10 20 -3 12 -17 +45 -18 58 -2 5 6 6 1 3 -11 -5 -14 -2 -21 9 -21 10 0 14 7 10 21 -3 12 -2 15 +1 8 5 -10 9 -10 22 0 14 10 15 10 5 -2 -7 -8 -13 -17 -13 -20 0 -12 30 -7 30 +4 0 6 5 3 11 -7 6 -9 14 -15 19 -12 5 3 12 1 15 -5 4 -6 3 -10 -2 -9 -22 4 +-25 -2 -8 -15 17 -12 21 -12 33 3 7 9 11 10 7 4 -7 -15 11 -18 20 -3 10 16 25 +1 18 -18 -6 -14 -4 -15 9 -5 8 7 18 9 22 5 4 -4 14 2 22 12 8 11 14 14 14 8 0 +-7 4 -12 9 -12 6 0 8 9 6 20 -2 11 -1 20 3 21 42 5 53 4 64 -3 7 -4 8 -8 3 -8 +-6 0 -11 -12 -10 -27 0 -32 5 -34 28 -11 15 14 15 17 1 22 -8 3 -13 10 -9 15 +3 5 1 12 -5 16 -6 4 -7 11 -4 17 4 7 2 8 -4 4 -7 -4 -12 -1 -12 6 0 9 -3 9 +-10 -2 -9 -13 -11 -13 -20 0 -8 13 -10 13 -10 1 0 -11 -4 -9 -16 5 -15 18 -15 +18 -5 -2 14 -28 -17 -61 -39 -41 -9 8 -11 8 -6 0 11 -20 -14 -26 -35 -7 -10 9 +-19 12 -19 6 0 -16 -31 -8 -46 13 -8 10 -14 15 -14 10 0 -4 -9 0 -20 10 -11 +10 -17 23 -13 29 4 6 -1 5 -11 -3 -12 -10 -20 -11 -28 -3 -8 8 -18 7 -38 -3 +-26 -13 -29 -13 -42 7 l-15 22 -12 -22z"/> +<path d="M6624 9213 c4 -7 2 -13 -4 -13 -6 0 -9 -4 -6 -9 4 -5 17 -8 31 -7 14 +2 22 -1 18 -7 -3 -6 -1 -7 5 -4 17 11 42 -4 42 -25 0 -10 5 -16 10 -13 6 4 8 +10 5 15 -8 13 9 20 25 9 10 -5 11 -9 3 -9 -7 0 -10 -7 -7 -15 8 -20 23 -10 19 +13 -2 9 -4 19 -5 22 -1 3 -2 9 -1 13 1 5 -3 6 -9 2 -5 -3 -10 -1 -10 6 0 7 -6 +4 -14 -7 -13 -17 -15 -17 -21 -3 -3 9 -16 15 -28 15 -12 -1 -31 5 -41 13 -11 +9 -16 10 -12 4z"/> +<path d="M6394 9195 c-12 -8 -25 -11 -29 -7 -5 4 -5 1 -1 -5 4 -8 2 -13 -6 +-13 -9 0 -9 -3 2 -10 18 -12 30 -13 29 -2 -3 19 2 32 12 32 8 0 8 -4 0 -14 -8 +-10 -9 -16 -1 -21 6 -3 8 -9 6 -13 -2 -4 2 -16 11 -27 14 -19 15 -19 11 4 -2 +15 3 26 12 28 11 3 12 2 3 -4 -9 -6 -7 -12 9 -22 18 -11 20 -11 15 3 -3 8 -1 +18 5 22 6 4 9 3 6 -2 -3 -5 3 -17 14 -26 19 -19 27 -1 8 18 -7 7 -6 11 4 11 8 +0 13 -3 11 -7 -2 -3 5 -11 16 -18 10 -7 19 -8 19 -3 0 6 -5 13 -10 16 -8 5 -7 +11 1 21 6 7 15 12 19 9 4 -3 11 2 14 11 6 15 9 15 28 -2 21 -19 21 -19 10 2 +-6 12 -9 24 -6 27 4 4 -36 3 -68 -2 -4 -1 -7 -11 -5 -23 2 -21 -2 -23 -53 -23 +-77 0 -82 2 -63 31 17 27 8 31 -23 9z m176 1 c0 -2 -7 -7 -16 -10 -8 -3 -12 +-2 -9 4 6 10 25 14 25 6z"/> +<path d="M6197 9186 c-4 -9 -14 -12 -28 -9 -21 6 -21 6 2 -18 27 -27 61 -36 +53 -14 -3 8 -11 13 -17 11 -7 -1 -9 -1 -4 1 4 3 5 9 2 13 -3 5 8 2 25 -6 17 +-9 28 -20 25 -25 -4 -5 1 -6 9 -3 8 3 24 1 35 -6 15 -8 27 -8 41 0 14 7 26 8 +38 1 10 -7 12 -11 4 -11 -7 0 -11 -4 -7 -10 3 -5 12 -7 21 -3 10 4 12 9 4 18 +-5 6 -6 16 -2 20 4 5 1 5 -5 1 -22 -12 -52 11 -46 35 6 22 6 22 -13 3 -20 -19 +-20 -19 0 -31 19 -10 17 -11 -15 -9 -20 2 -41 6 -48 10 -13 9 -5 26 12 26 8 0 +8 -3 -1 -9 -11 -7 -10 -10 3 -15 23 -8 27 -8 20 4 -3 6 1 13 9 16 9 3 13 11 +10 16 -4 6 -9 6 -14 -2 -6 -9 -12 -9 -30 0 -12 7 -20 8 -16 2 11 -17 -26 -23 +-44 -7 -15 14 -18 14 -23 1z"/> +<path d="M6235 9190 c-3 -5 -1 -10 4 -10 6 0 11 5 11 10 0 6 -2 10 -4 10 -3 0 +-8 -4 -11 -10z"/> +<path d="M4104 9163 c-9 -6 -13 -16 -10 -22 4 -5 2 -12 -4 -16 -6 -4 -8 -11 +-4 -16 3 -6 12 -3 19 8 9 12 10 20 3 24 -7 4 -6 9 1 13 6 4 11 2 11 -4 0 -6 5 +-8 13 -3 18 11 37 12 37 2 0 -5 -4 -9 -10 -9 -5 0 -10 -5 -10 -11 0 -5 4 -8 9 +-4 6 3 15 -3 21 -12 10 -17 10 -16 8 2 -1 11 1 26 6 34 6 10 5 12 -3 7 -6 -4 +-14 -1 -17 7 -6 17 -46 17 -70 0z"/> +<path d="M6576 9165 c-3 -9 -9 -15 -13 -14 -20 3 -24 -2 -12 -17 11 -14 14 +-13 26 8 l14 23 -7 -25 c-6 -23 -6 -23 10 -7 15 15 16 19 3 32 -13 13 -16 13 +-21 0z"/> +<path d="M6620 9150 c-11 -25 -22 -35 -32 -28 -2 1 -12 -4 -24 -10 -14 -7 -24 +-8 -31 -1 -7 7 -12 6 -16 -3 -3 -10 7 -14 43 -14 27 0 47 3 45 6 -2 3 3 14 11 +25 8 10 14 13 14 6 0 -7 4 -10 8 -7 9 6 9 42 0 51 -3 3 -11 -8 -18 -25z"/> +<path d="M6798 9172 c8 -5 13 -12 13 -16 -2 -17 0 -17 16 -5 12 10 15 10 9 1 +-14 -24 -16 -71 -2 -66 7 3 12 21 12 46 -1 38 -3 42 -31 45 -20 2 -25 0 -17 +-5z"/> +<path d="M6660 9160 c-13 -9 -13 -12 3 -21 15 -9 16 -13 6 -26 -11 -12 -10 +-14 7 -11 10 1 22 8 26 13 4 6 8 2 8 -8 0 -23 16 -14 23 13 3 14 1 18 -6 13 +-23 -15 -36 -11 -34 9 2 24 -12 32 -33 18z"/> +<path d="M4053 9147 c0 -7 -4 -21 -8 -32 -5 -14 -4 -16 3 -7 7 11 10 11 15 -3 +4 -9 3 -13 -3 -10 -6 3 -10 2 -10 -3 0 -17 13 -22 29 -9 14 11 14 10 2 -5 -16 +-22 1 -24 19 -3 17 20 30 19 30 -2 0 -14 3 -13 16 6 15 21 18 21 26 7 6 -11 +14 -14 26 -7 9 4 24 6 32 3 13 -4 13 -3 1 11 -10 12 -18 14 -32 7 -13 -7 -20 +-6 -26 4 -4 8 -12 16 -18 18 -5 2 -9 9 -9 16 2 9 -4 8 -17 -4 -22 -20 -24 -26 +-6 -22 7 2 12 -1 12 -6 0 -12 -41 -15 -57 -5 -9 6 -9 11 0 21 8 11 7 16 -7 25 +-13 8 -18 8 -18 0z"/> +<path d="M4202 9143 c-9 -8 -9 -13 -2 -13 6 0 8 -5 4 -12 -4 -6 -3 -8 3 -5 13 +8 38 -19 38 -41 0 -8 7 -18 15 -20 13 -5 13 -3 1 12 -8 9 -10 16 -5 15 19 -3 +37 1 30 9 -7 7 -11 8 -37 11 -5 0 -7 6 -3 13 4 6 3 8 -3 5 -6 -4 -13 0 -17 8 +-3 8 0 17 6 21 6 4 9 3 6 -2 -3 -5 4 -17 14 -27 18 -17 19 -17 15 10 -3 21 -9 +27 -28 28 -14 1 -30 -4 -37 -12z"/> +<path d="M4455 9142 c-3 -9 1 -12 15 -7 12 4 20 2 20 -5 0 -6 -4 -9 -8 -6 -5 +3 -9 -1 -9 -9 0 -15 16 -21 18 -7 7 39 5 48 -12 48 -10 0 -21 -6 -24 -14z"/> +<path d="M4013 9138 c8 -23 -21 -54 -36 -39 -20 20 -30 11 -12 -9 12 -14 21 +-17 25 -9 5 8 16 6 39 -5 17 -9 31 -19 31 -22 0 -2 -8 0 -19 5 -10 6 -21 7 +-25 4 -10 -10 -7 -20 7 -20 22 -1 42 -8 49 -18 4 -5 10 -7 13 -4 3 4 -7 20 +-23 37 -16 17 -28 40 -27 51 1 12 -5 27 -14 34 -12 10 -14 9 -8 -5z"/> +<path d="M6906 9141 c-4 -6 -2 -19 3 -28 6 -11 11 -13 11 -5 0 10 3 10 14 0 8 +-7 10 -16 5 -19 -5 -3 0 -14 11 -24 12 -11 20 -13 20 -6 0 7 4 10 9 7 5 -4 11 +-3 14 1 5 10 -1 -12 -8 -30 -3 -8 3 -13 16 -14 16 -2 18 1 9 12 -9 11 -7 16 8 +24 11 6 23 7 27 3 5 -4 5 2 1 12 -5 15 -4 17 7 8 8 -7 18 -8 22 -4 5 4 4 1 0 +-7 -6 -11 -4 -13 8 -8 11 4 14 2 11 -8 -4 -10 0 -13 16 -10 12 2 23 -2 26 -10 +3 -7 13 -11 22 -8 13 4 14 3 3 -5 -9 -7 -10 -12 -2 -16 6 -4 11 -3 11 2 0 5 7 +9 16 9 14 0 14 -2 -2 -14 -10 -7 -14 -13 -8 -13 5 0 0 -7 -10 -15 -17 -13 -17 +-15 -3 -15 9 0 23 10 31 22 11 15 16 18 16 8 0 -10 3 -11 8 -4 12 19 34 -15 +35 -54 0 -8 7 -10 16 -6 25 10 71 12 71 2 0 -5 4 -7 9 -3 6 3 8 -3 6 -14 -2 +-11 3 -22 11 -25 12 -5 14 -1 9 17 -4 14 1 10 12 -10 15 -27 20 -30 28 -18 8 +11 14 12 25 4 13 -9 13 -10 -2 -6 -9 3 -19 -1 -22 -9 -6 -17 -1 -18 24 -4 15 +8 21 6 29 -7 7 -13 10 -14 11 -4 0 8 3 11 6 8 4 -4 1 -13 -6 -22 -7 -8 -8 -15 +-2 -15 5 0 15 7 23 16 10 13 10 17 -1 24 -8 5 -18 6 -22 4 -4 -3 -8 -1 -8 4 0 +10 -60 38 -72 34 -5 -1 -8 2 -8 7 0 12 -69 52 -99 58 -21 3 -23 2 -11 -12 7 +-8 8 -15 2 -15 -16 0 -22 26 -9 40 9 10 9 11 -1 6 -6 -4 -19 0 -28 8 -9 9 -19 +14 -24 11 -4 -3 -11 2 -14 10 -3 8 -9 14 -13 13 -4 -2 -38 14 -75 35 -36 20 +-71 37 -77 37 -6 0 -11 6 -11 13 0 8 -4 7 -10 -3 -8 -12 -10 -12 -10 5 0 16 +-2 17 -9 6 -6 -9 -5 -19 2 -26 9 -10 14 -10 19 -1 6 8 8 8 8 -1 0 -16 -17 -26 +-25 -14 -3 6 -12 8 -19 5 -8 -3 -27 11 -44 31 -18 22 -32 32 -36 26z"/> +<path d="M4340 9110 c-6 -11 -16 -20 -23 -20 -8 0 -7 4 3 11 13 9 13 10 -1 6 +-9 -3 -22 0 -28 6 -8 8 -11 8 -11 0 0 -7 4 -14 10 -18 5 -3 7 -12 4 -20 -4 -8 +-11 -12 -17 -8 -5 3 -7 1 -3 -5 13 -21 -16 -24 -37 -4 -18 17 -26 18 -41 10 +-15 -8 -21 -8 -24 0 -2 7 -8 12 -13 12 -6 0 -8 -4 -5 -9 7 -11 -14 -20 -32 +-14 -6 3 -9 10 -5 16 3 7 -3 3 -16 -7 -16 -15 -18 -21 -9 -27 10 -6 10 -11 2 +-19 -9 -9 -20 -7 -44 5 -18 9 -29 12 -26 7 11 -19 -28 -24 -41 -6 -11 15 -13 +15 -13 2 0 -8 7 -21 15 -28 8 -7 15 -9 15 -4 0 4 5 3 12 -4 7 -7 19 -12 27 +-12 11 0 11 3 -4 13 -13 10 -15 16 -6 21 7 5 15 5 18 2 4 -3 0 -6 -7 -6 -19 0 +20 -29 39 -30 11 0 9 4 -5 16 -18 15 -18 15 3 5 30 -15 31 -15 29 18 -2 25 1 +28 15 20 12 -6 20 -5 24 1 4 6 11 7 17 4 7 -5 8 -2 3 6 -5 8 -4 11 2 7 6 -4 9 +-18 7 -32 -1 -17 2 -25 9 -22 7 2 11 16 11 30 -2 33 9 35 24 5 6 -13 11 -17 +11 -10 1 6 6 12 11 12 6 0 9 -5 8 -11 -2 -6 3 -14 11 -17 8 -2 11 0 8 5 -3 5 +2 17 13 25 16 14 19 15 24 2 3 -9 11 -12 17 -8 8 5 6 10 -5 16 -18 10 -22 28 +-5 28 5 0 7 -4 4 -10 -3 -5 -2 -10 3 -10 6 0 13 7 16 16 3 8 10 12 16 9 6 -4 +8 -11 5 -16 -4 -5 0 -9 7 -9 7 0 -2 -9 -19 -20 -35 -21 -41 -34 -21 -46 6 -4 +8 -3 5 3 -4 6 0 16 8 23 8 7 15 10 15 6 0 -3 9 3 21 15 16 16 23 18 34 9 11 +-9 17 -6 31 15 10 16 23 24 32 20 12 -4 12 -2 4 8 -7 8 -9 17 -6 20 9 8 -39 2 +-54 -7 -7 -4 -16 -5 -21 -1 -5 3 -12 1 -16 -5 -11 -18 -27 -11 -22 10 3 11 3 +20 1 20 -2 0 -8 -9 -14 -20z m110 -17 c0 -3 -7 -2 -16 1 -11 4 -14 1 -10 -12 +5 -15 1 -19 -24 -19 -16 0 -30 1 -30 3 0 1 3 10 6 19 6 13 9 14 16 3 7 -10 10 +-10 18 4 9 15 40 15 40 1z"/> +<path d="M6225 9120 c-4 -6 -3 -9 2 -8 4 1 18 -3 31 -10 26 -15 28 -10 6 12 +-18 19 -30 20 -39 6z"/> +<path d="M6645 9120 c-4 -6 -10 -8 -15 -5 -5 3 -11 1 -15 -5 -3 -5 -3 -10 2 +-11 4 0 16 -2 26 -4 10 -2 14 1 11 7 -4 6 0 14 7 19 9 6 10 9 2 9 -6 0 -15 -5 +-18 -10z"/> +<path d="M6770 9121 c-8 -6 -17 -8 -21 -5 -4 2 -10 -5 -14 -16 -6 -20 -34 -24 +-46 -6 -4 4 -9 4 -13 -2 -3 -5 1 -15 9 -22 12 -10 15 -10 16 1 0 8 4 5 8 -6 8 +-19 9 -18 22 8 10 23 14 25 21 13 16 -28 44 -37 59 -19 12 14 12 15 -1 11 -8 +-3 -23 -1 -33 4 -18 9 -18 11 -1 29 19 21 17 24 -6 10z"/> +<path d="M6862 9117 c-6 -7 -7 -18 -3 -26 6 -9 11 -10 15 -3 10 16 38 2 32 +-15 -4 -9 -2 -11 6 -7 7 5 8 3 3 -6 -6 -9 -4 -11 5 -5 9 5 11 4 6 -3 -5 -8 -2 +-10 8 -6 10 4 16 1 16 -9 0 -8 6 -19 13 -25 9 -8 12 -5 12 13 0 13 -3 21 -6 +19 -10 -6 -50 42 -42 51 5 4 3 5 -4 1 -7 -4 -17 2 -23 14 -12 23 -23 25 -38 7z +m28 -1 c0 -2 -7 -7 -16 -10 -8 -3 -12 -2 -9 4 6 10 25 14 25 6z"/> +<path d="M3930 9112 c0 -15 -30 -23 -48 -13 -12 6 -24 4 -37 -5 -10 -8 -15 +-14 -10 -14 5 0 4 -5 -3 -12 -17 -17 -15 -26 7 -37 15 -8 20 -7 25 5 4 12 2 +15 -9 11 -8 -4 -17 -1 -21 5 -5 7 -2 8 6 3 7 -5 11 -4 7 1 -3 5 1 18 9 29 8 +10 14 13 14 6 0 -7 4 -10 9 -7 5 3 8 -2 7 -11 0 -9 4 -18 10 -20 7 -2 11 4 10 +14 -1 16 6 19 45 14 6 0 8 -8 5 -17 -4 -10 -2 -13 6 -8 7 4 8 3 4 -4 -4 -6 +-14 -8 -23 -5 -12 5 -14 3 -7 -8 4 -8 9 -21 9 -29 0 -8 6 -14 13 -12 8 1 11 +-2 6 -9 -5 -8 -3 -9 6 -4 9 5 11 4 6 -4 -4 -6 -12 -9 -17 -6 -11 8 -11 -6 0 +-24 7 -11 10 -9 16 8 l6 21 18 -21 c12 -15 20 -19 25 -11 4 7 2 12 -3 12 -6 0 +-10 5 -8 12 1 7 -2 12 -8 13 -5 0 -20 7 -32 15 -16 11 -19 18 -12 32 5 10 16 +15 24 12 8 -4 12 -10 9 -15 -3 -5 0 -9 5 -9 14 0 14 13 -1 28 -9 9 -9 12 0 12 +7 0 12 5 12 11 0 8 -4 8 -14 0 -11 -9 -19 -5 -40 19 -14 18 -26 27 -26 22z"/> +<path d="M6444 9113 c7 -13 -5 -17 -32 -14 -8 1 -21 -6 -29 -16 -8 -10 -12 +-12 -8 -6 4 9 1 11 -9 7 -10 -4 -16 -1 -16 7 0 11 -2 11 -9 -1 -12 -17 -7 -26 +21 -41 15 -8 19 -8 14 0 -7 10 7 16 28 12 5 -1 5 6 2 16 -6 14 -5 15 5 6 7 -7 +19 -9 28 -5 24 11 46 8 65 -7 13 -11 16 -11 16 0 0 9 3 10 8 4 10 -14 42 -18 +42 -5 0 5 5 10 11 10 5 0 7 -5 4 -10 -7 -12 17 -9 26 3 3 5 22 0 42 -9 33 -16 +35 -19 19 -30 -15 -12 -15 -13 6 -11 12 1 22 6 23 12 0 5 4 1 8 -10 7 -18 9 +-17 24 10 9 17 16 24 17 17 0 -7 5 -10 12 -6 7 4 8 3 4 -5 -4 -6 -12 -8 -18 +-5 -8 5 -9 1 -5 -10 4 -10 2 -26 -3 -37 -7 -12 -7 -19 -1 -19 12 0 21 14 26 +41 6 30 14 36 25 19 7 -10 5 -19 -7 -27 -9 -7 -13 -16 -9 -20 4 -5 18 4 30 20 +16 20 25 24 33 16 9 -9 12 -7 10 10 -2 24 -1 24 -30 10 -21 -10 -21 -10 -3 5 +11 9 26 16 33 16 7 0 13 5 13 10 0 6 -7 10 -15 10 -8 0 -15 -3 -15 -8 0 -4 -9 +-13 -19 -19 -16 -10 -24 -9 -44 8 -25 19 -26 19 -32 -1 -8 -26 -14 -25 -53 3 +-26 20 -42 23 -99 22 -69 -1 -107 10 -95 30 3 5 -1 4 -9 -2 -12 -10 -18 -10 +-29 0 -10 9 -11 9 -6 0z"/> +<path d="M6770 9095 c0 -7 30 -13 34 -7 3 4 -4 9 -15 9 -10 1 -19 0 -19 -2z"/> +<path d="M3760 9079 c0 -5 4 -8 9 -5 5 3 15 -2 22 -11 10 -12 10 -14 2 -9 -15 +9 -17 -3 -3 -24 7 -11 10 -11 10 -2 0 8 8 6 22 -8 30 -27 35 -18 6 13 -13 14 +-29 32 -36 41 -15 18 -32 21 -32 5z"/> +<path d="M6869 9068 c-6 -12 -8 -20 -4 -16 5 4 14 3 22 -3 11 -9 13 -7 10 9 +-5 33 -14 36 -28 10z"/> +<path d="M3733 9073 c-7 -3 -13 -9 -13 -14 0 -6 5 -7 10 -4 6 3 10 1 10 -5 0 +-6 4 -9 9 -5 5 3 13 0 17 -6 4 -8 3 -9 -4 -5 -7 4 -12 2 -12 -3 0 -6 4 -11 10 +-11 5 0 19 -10 31 -22 20 -21 21 -21 15 -3 -6 19 -5 19 8 2 8 -11 17 -14 20 +-8 7 11 -28 34 -37 25 -9 -9 -28 36 -21 49 4 6 4 9 -1 5 -4 -4 -13 -4 -19 1 +-6 4 -17 6 -23 4z"/> +<path d="M3856 9073 c-3 -3 1 -11 10 -17 13 -10 12 -16 -10 -49 -30 -44 -30 +-44 -11 -44 8 0 14 7 13 16 -2 9 3 16 11 16 8 0 16 6 19 14 3 8 0 11 -7 7 -7 +-5 -9 -1 -4 9 3 9 9 12 12 7 3 -5 14 -8 24 -6 9 1 15 -2 11 -7 -3 -5 -10 -6 +-16 -3 -6 4 -8 1 -6 -7 3 -8 11 -13 17 -11 7 1 9 -2 5 -9 -5 -8 -3 -9 6 -4 9 +5 11 4 6 -4 -4 -6 -12 -8 -18 -5 -6 4 -8 1 -6 -7 3 -8 11 -13 17 -11 7 1 10 +-2 7 -7 -3 -5 1 -12 10 -15 15 -6 15 -8 -1 -26 -10 -11 -13 -20 -7 -20 6 0 17 +8 24 18 14 20 45 42 35 25 -4 -6 0 -16 8 -23 20 -16 19 0 -1 28 -15 22 -17 22 +-29 6 -12 -16 -13 -16 -24 4 -7 13 -9 27 -6 32 3 5 0 12 -6 15 -5 4 -8 13 -5 +21 3 7 0 16 -6 20 -7 5 -5 11 6 20 11 8 13 14 7 19 -6 3 -11 0 -11 -7 0 -10 +-3 -9 -11 2 -9 13 -10 12 -5 -2 8 -27 -15 -34 -34 -10 -10 12 -20 18 -24 15z"/> +<path d="M6430 9065 c-14 -7 -29 -11 -33 -8 -5 3 -1 -7 8 -21 19 -28 35 -30 +44 -5 4 12 1 12 -15 -1 -17 -14 -18 -13 -7 1 7 9 10 19 6 22 -3 4 -1 7 5 7 6 +0 13 -9 17 -20 5 -16 9 -17 20 -7 15 14 9 31 -7 21 -6 -4 -8 -2 -4 4 11 17 -7 +21 -34 7z"/> +<path d="M6480 9072 c0 -6 9 -16 19 -22 25 -13 31 -13 31 2 0 6 -3 8 -7 5 -3 +-4 -15 0 -25 10 -10 9 -18 11 -18 5z"/> +<path d="M6615 9059 c-4 -5 -11 -7 -16 -4 -11 8 -11 -6 0 -24 7 -11 10 -9 16 +9 5 16 10 19 15 10 5 -8 10 -8 14 -2 3 5 -1 12 -9 16 -8 3 -17 1 -20 -5z"/> +<path d="M3697 9054 c-6 -11 6 -36 17 -35 21 3 28 -1 23 -13 -4 -9 0 -13 11 +-12 19 3 53 -24 45 -36 -3 -5 3 -8 13 -6 13 2 18 -2 16 -14 -2 -12 2 -16 13 +-12 8 3 12 10 9 15 -3 5 1 6 9 3 8 -3 17 2 21 11 3 9 11 13 17 10 6 -4 8 -13 +5 -21 -4 -10 0 -14 12 -12 11 2 16 -2 13 -12 -2 -8 -4 -21 -4 -28 0 -9 -4 -9 +-11 -2 -17 17 -27 11 -15 -8 15 -24 42 -25 36 -1 -3 10 1 23 9 30 11 9 9 15 +-12 31 -14 11 -23 26 -20 34 6 16 -10 28 -19 14 -4 -6 -10 -8 -15 -5 -4 3 -7 +-3 -6 -11 1 -21 -33 -27 -41 -8 -3 8 -8 12 -12 10 -4 -3 -24 11 -45 30 -20 19 +-41 34 -46 34 -4 0 -10 5 -12 12 -3 7 -7 8 -11 2z"/> +<path d="M6536 9043 c-4 -9 -13 -12 -25 -8 -10 3 -23 -1 -31 -10 -7 -8 -16 +-12 -21 -9 -15 9 -10 -13 6 -26 8 -6 19 -9 25 -5 7 4 26 -7 44 -24 l33 -32 16 +24 c15 24 15 25 -9 25 -20 0 -22 -3 -13 -14 18 -22 6 -23 -13 -2 -10 10 -13 +18 -8 18 6 0 10 4 10 9 0 6 -9 8 -20 6 -13 -2 -18 0 -14 7 4 6 -2 5 -16 -2 +-12 -6 -24 -9 -28 -6 -3 3 0 6 7 6 7 0 9 4 6 10 -4 6 1 7 11 3 13 -5 15 -3 9 +8 -5 8 2 5 14 -6 22 -19 23 -19 20 -1 -3 14 2 19 18 21 12 1 20 -2 18 -6 -3 +-4 2 -10 11 -13 8 -3 13 -10 9 -15 -3 -5 -1 -12 5 -16 5 -3 10 0 10 8 0 15 29 +32 38 22 3 -3 0 -5 -6 -5 -6 0 -9 -7 -5 -16 5 -15 7 -15 15 1 6 9 7 19 4 22 +-3 4 0 13 7 21 10 13 9 14 -10 3 -13 -6 -23 -8 -23 -4 0 4 -6 -2 -14 -12 -13 +-18 -14 -18 -27 6 -16 27 -45 34 -53 12z"/> +<path d="M7017 9048 c-9 -6 -9 -8 0 -8 6 0 11 -9 10 -20 -1 -11 -5 -20 -10 +-20 -4 0 -5 -5 -2 -10 12 -19 25 1 21 33 -3 28 -3 29 9 13 8 -10 11 -25 7 -34 +-5 -15 -3 -15 11 -3 13 10 14 18 6 35 -10 20 -10 20 5 2 9 -11 16 -23 16 -27 +0 -4 9 -6 20 -4 28 5 35 -13 14 -37 -18 -19 -18 -20 1 -17 15 3 19 -1 17 -15 +-2 -13 0 -16 10 -10 7 5 20 9 28 9 8 0 14 6 13 13 -2 6 2 12 7 12 6 0 10 -6 +10 -12 0 -9 4 -8 11 2 9 13 10 13 6 0 -2 -8 -9 -16 -15 -16 -25 -3 -27 -5 -13 +-13 12 -8 12 -12 2 -25 -11 -12 -9 -15 8 -13 13 1 20 6 17 14 -7 18 4 44 15 +37 5 -3 4 6 -2 19 -12 27 -35 29 -53 5 -8 -12 -17 -13 -29 -7 -18 10 -12 42 7 +33 6 -3 2 3 -10 13 -11 10 -23 25 -27 33 -5 13 -6 13 -6 0 -1 -13 -2 -13 -11 +0 -8 13 -10 13 -10 0 0 -10 -5 -8 -15 7 -15 21 -44 26 -68 11z"/> +<path d="M6861 9041 c-16 -11 -3 -19 26 -16 12 1 19 -3 16 -8 -3 -6 -1 -7 5 +-4 16 11 44 -4 38 -20 -4 -9 -2 -11 6 -7 6 4 8 3 5 -2 -3 -6 3 -11 14 -11 18 +-2 17 1 -8 31 -16 18 -37 32 -48 31 -11 -1 -25 2 -30 6 -6 4 -17 4 -24 0z"/> +<path d="M3670 9029 c0 -5 -5 -7 -11 -4 -6 4 -17 -1 -25 -11 -9 -11 -12 -12 +-8 -4 5 12 4 12 -6 3 -18 -16 -3 -38 16 -22 10 8 14 8 14 0 0 -11 -13 -15 -39 +-11 -12 1 -13 -1 -2 -14 10 -11 18 -13 32 -6 14 8 20 6 28 -7 6 -10 10 -13 10 +-8 0 6 -6 21 -14 35 -18 32 -18 37 -1 37 8 0 11 -8 8 -19 -2 -10 0 -18 5 -18 +6 0 10 14 11 30 0 17 -4 30 -9 30 -5 0 -9 -5 -9 -11z"/> +<path d="M4145 9030 c-4 -6 -11 -7 -17 -4 -7 4 -8 2 -4 -4 4 -7 1 -12 -6 -12 +-9 0 -9 -3 2 -10 17 -11 37 -14 27 -4 -3 4 -2 15 4 25 10 20 5 27 -6 9z"/> +<path d="M4200 9036 c0 -4 4 -16 10 -26 10 -19 4 -53 -9 -46 -3 2 -7 -8 -8 +-22 l-1 -27 15 28 c11 22 17 26 28 17 11 -9 17 -5 30 20 9 17 20 28 24 25 10 +-5 23 20 14 28 -8 9 -34 -4 -28 -13 9 -15 -15 -22 -30 -10 -8 7 -15 9 -15 4 0 +-5 -7 0 -15 10 -8 11 -15 16 -15 12z m53 -42 c3 -3 3 -13 0 -21 -5 -12 -7 -12 +-14 -1 -15 23 -4 40 14 22z"/> +<path d="M6550 9010 c14 -26 27 -33 33 -16 3 8 -5 18 -19 25 -23 10 -24 9 -14 +-9z"/> +<path d="M3702 9013 c-9 -4 -10 -9 -2 -18 8 -9 6 -14 -5 -19 -13 -4 -14 -10 +-5 -26 6 -11 7 -20 3 -20 -12 0 20 -20 32 -20 6 0 3 5 -5 10 -8 5 -11 10 -7 +10 4 0 3 9 -3 19 -11 21 6 43 19 24 3 -6 14 -9 23 -8 10 2 16 0 15 -3 -1 -4 +11 -19 26 -35 23 -22 32 -25 48 -17 10 6 20 7 20 3 1 -4 2 -14 3 -22 0 -8 8 +-16 16 -19 12 -3 12 -2 3 8 -16 17 -5 44 12 30 9 -8 14 -7 18 4 3 8 -1 13 -11 +12 -11 -1 -16 6 -15 19 1 11 0 14 -3 7 -9 -19 -62 -44 -69 -32 -3 6 -4 14 -1 +19 3 5 -2 8 -12 7 -9 0 -16 4 -15 11 2 11 -27 26 -52 28 -5 0 -10 5 -10 12 0 +16 -8 21 -23 16z"/> +<path d="M4159 9015 c-1 -3 -2 -11 -3 -17 -1 -7 -10 -12 -21 -11 -10 1 -31 -5 +-47 -13 -32 -16 -41 -18 -33 -4 3 5 0 7 -8 4 -7 -2 -14 -10 -15 -17 0 -7 -3 +-26 -6 -44 -4 -25 -2 -31 9 -27 15 6 16 25 2 35 -4 3 -2 11 6 18 12 9 18 6 32 +-15 9 -15 12 -23 6 -20 -6 4 -11 3 -11 -3 0 -12 -38 -26 -62 -22 -9 1 -20 -3 +-24 -10 -5 -9 -1 -10 14 -7 14 4 20 2 16 -4 -4 -6 3 -5 15 1 11 7 21 10 21 7 +0 -3 12 6 26 19 26 24 26 25 9 52 -15 22 -15 25 -3 15 11 -9 18 -10 23 -2 3 5 +1 10 -6 10 -29 0 4 13 38 15 21 2 32 1 25 -2 -10 -4 -8 -9 5 -19 14 -12 11 +-12 -14 1 -39 19 -40 19 -40 0 0 -9 6 -14 13 -11 19 7 27 -11 14 -31 -9 -15 +-10 -14 -5 7 5 19 4 22 -4 10 -10 -13 -12 -13 -21 0 -5 8 -10 10 -10 4 0 -6 8 +-18 18 -28 18 -15 20 -15 46 9 16 15 25 32 22 40 -3 8 2 19 12 24 9 5 13 13 9 +17 -5 5 -12 2 -18 -6 -8 -13 -10 -13 -18 0 -5 8 -7 18 -5 22 3 4 3 8 0 8 -3 0 +-7 -2 -7 -5z"/> +<path d="M6664 8995 c-19 -29 -34 -33 -34 -9 0 12 -5 11 -19 -7 -16 -20 -17 +-26 -6 -38 10 -10 17 -11 31 -2 17 11 16 11 -6 7 -14 -3 -19 -3 -12 0 6 3 10 +9 8 13 -3 3 7 6 21 5 13 0 28 -6 33 -13 5 -10 9 -10 14 -2 4 6 13 8 19 4 20 +-12 37 -12 37 0 0 7 5 5 10 -3 9 -13 10 -13 10 0 0 9 3 11 8 5 4 -5 16 -11 27 +-13 l20 -3 -20 17 c-18 15 -18 16 -1 10 13 -4 17 -2 13 8 -6 14 16 16 29 3 13 +-13 27 -7 15 6 -6 8 -8 17 -4 21 4 4 0 4 -10 0 -10 -4 -17 -1 -17 6 0 7 -10 1 +-21 -14 -12 -15 -27 -25 -34 -22 -7 2 -17 0 -23 -6 -17 -17 -34 0 -22 22 12 +23 13 40 1 21 -7 -10 -13 -11 -29 -2 -18 10 -24 8 -38 -14z m24 4 c-2 -6 3 +-14 11 -17 9 -3 11 0 6 8 -6 9 -4 11 4 6 7 -5 10 -11 7 -14 -3 -3 0 -12 7 -21 +10 -14 10 -14 -4 -3 -9 7 -23 11 -30 10 -12 -3 -20 18 -12 35 6 11 13 8 11 -4z"/> +<path d="M6867 9007 c-3 -8 -1 -19 5 -25 15 -15 -10 -26 -27 -12 -11 9 -15 9 +-15 1 0 -19 -2 -25 -11 -43 -7 -12 -5 -15 9 -13 9 2 19 4 22 4 3 1 -2 6 -10 +12 -12 8 -10 9 9 4 15 -5 21 -3 17 3 -3 6 -1 14 5 18 8 5 9 3 4 -6 -5 -8 -4 +-11 2 -7 10 6 11 62 1 72 -3 3 -8 -1 -11 -8z"/> +<path d="M6987 9006 c-4 -9 -2 -18 2 -20 5 -3 7 -17 6 -30 -2 -15 3 -27 12 +-30 11 -5 13 -2 8 11 -4 10 -8 30 -9 45 -2 32 -11 44 -19 24z"/> +<path d="M6900 9000 c-8 -5 -11 -12 -7 -16 3 -4 15 -1 24 7 14 10 15 10 6 0 +-8 -10 -4 -19 20 -41 21 -19 34 -24 39 -17 9 16 -10 37 -28 30 -8 -3 -15 0 +-15 6 -1 6 -2 16 -3 23 -1 16 -18 20 -36 8z"/> +<path d="M3590 8989 c0 -5 -5 -7 -12 -3 -7 5 -9 2 -5 -8 3 -9 0 -21 -6 -27 +-15 -15 6 -14 22 2 9 7 11 7 8 1 -4 -7 0 -15 9 -18 13 -5 14 -9 4 -21 -16 -19 +-1 -19 24 0 13 10 15 15 6 15 -7 0 -11 3 -7 6 3 3 11 3 18 -2 9 -5 7 -11 -6 +-21 -15 -10 -15 -13 -4 -13 8 0 21 6 28 13 11 10 13 10 7 0 -4 -7 -3 -13 3 +-13 5 0 9 9 8 19 0 11 -4 19 -7 19 -20 -2 -30 4 -24 13 4 7 -1 7 -16 -1 -18 +-10 -24 -9 -35 6 -7 10 -11 24 -8 31 3 7 2 13 -1 13 -3 0 -6 -5 -6 -11z"/> +<path d="M7065 8989 c-4 -5 -9 -7 -13 -5 -4 2 -15 -1 -24 -8 -15 -11 -16 -15 +-3 -32 14 -18 14 -18 11 2 -3 16 1 20 17 19 29 -3 42 6 26 16 -10 6 -10 9 -2 +9 16 0 26 -17 13 -25 -5 -3 -10 -11 -10 -17 0 -6 11 -1 25 12 14 13 25 28 24 +34 0 6 -3 5 -6 -1 -2 -7 -9 -13 -14 -13 -6 0 -8 4 -5 8 2 4 -4 8 -14 9 -11 1 +-22 -3 -25 -8z"/> +<path d="M3549 8973 c-8 -58 -6 -73 8 -62 9 8 11 15 4 22 -7 7 -7 14 0 23 7 8 +7 14 -1 19 -5 3 -10 3 -11 -2z"/> +<path d="M3720 8952 c6 -13 13 -32 15 -43 3 -16 1 -17 -15 -9 -13 7 -21 7 -25 +-1 -4 -6 -13 -8 -20 -5 -7 2 -16 -2 -19 -10 -8 -21 -8 -24 5 -24 5 0 7 5 3 12 +-4 6 -3 8 2 5 6 -3 16 -2 24 3 8 5 21 5 31 0 12 -7 21 -5 29 5 7 8 8 15 3 15 +-5 0 -10 6 -10 13 0 8 6 14 13 14 7 0 10 -7 6 -16 -5 -14 -4 -14 14 -1 19 14 +19 14 0 -8 -11 -12 -14 -22 -8 -22 6 0 14 5 17 10 10 16 25 1 18 -18 -5 -14 +-3 -14 17 3 13 11 20 14 15 6 -6 -10 -4 -12 5 -6 9 5 11 4 6 -3 -4 -7 0 -22 8 +-34 14 -19 16 -20 16 -4 0 10 5 16 13 13 6 -2 11 -10 9 -17 -2 -8 3 -10 13 -6 +9 3 14 2 10 -3 -3 -5 1 -12 7 -15 7 -3 2 -3 -11 0 -13 3 -21 2 -18 -3 3 -5 2 +-15 -3 -23 -7 -12 -11 -12 -26 1 -16 12 -17 12 -12 -2 4 -11 -4 -24 -25 -39 +-18 -13 -29 -20 -25 -15 9 9 -9 45 -23 45 -6 0 -6 -7 1 -19 13 -25 13 -41 0 +-21 -5 8 -10 11 -10 5 0 -34 18 -33 75 3 32 20 62 38 67 38 4 1 13 2 18 3 5 0 +9 4 9 9 -3 19 2 33 11 27 6 -3 7 1 3 10 -5 13 -7 14 -14 3 -7 -10 -9 -9 -9 3 +0 19 26 33 42 22 6 -3 8 -1 4 5 -3 6 3 17 14 25 17 12 18 16 6 26 -12 10 -19 +6 -42 -23 -21 -27 -33 -33 -53 -29 -33 6 -53 23 -47 40 4 11 1 11 -15 3 -17 +-9 -25 -7 -44 12 -41 41 -55 50 -55 36 0 -6 -7 -3 -16 8 -14 18 -15 18 -4 -4z +m264 -56 c-3 -8 -13 -17 -22 -21 -13 -5 -13 -2 3 15 21 24 26 25 19 6z"/> +<path d="M6895 8961 c3 -5 -9 -20 -25 -33 -36 -28 -97 -32 -92 -6 1 8 -5 15 +-13 15 -8 0 -14 -7 -13 -15 2 -8 -3 -17 -11 -20 -9 -3 -11 1 -6 17 5 16 3 20 +-9 15 -9 -3 -16 -1 -16 5 0 7 -9 5 -25 -5 -14 -9 -25 -20 -25 -25 0 -15 22 +-10 35 8 9 13 14 13 20 3 5 -9 4 -11 -3 -6 -7 4 -12 2 -12 -3 0 -6 8 -11 18 +-11 15 0 15 -2 2 -11 -12 -9 -11 -9 5 -3 32 11 69 12 83 1 8 -6 12 -6 12 1 0 +6 11 9 26 6 15 -3 23 -1 20 5 -4 5 -1 13 5 17 8 5 9 3 4 -6 -5 -9 -4 -11 4 -6 +6 4 8 12 5 18 -4 7 -2 8 5 4 6 -4 9 -12 6 -17 -4 -5 -2 -9 4 -9 18 0 23 20 6 +26 -13 6 -14 8 -3 15 7 5 18 9 23 9 6 0 4 -4 -4 -9 -9 -6 -10 -11 -2 -15 6 -4 +11 -2 11 3 0 6 9 2 20 -9 12 -12 26 -18 33 -14 9 5 9 3 0 -7 -20 -20 -15 -31 +6 -17 11 7 18 15 16 18 -2 4 3 7 11 7 10 0 11 -4 4 -11 -5 -5 -10 -16 -10 -23 +0 -6 12 0 27 15 15 15 27 30 25 34 -1 4 5 5 13 2 8 -4 15 -11 15 -17 0 -18 14 +2 17 26 3 17 1 19 -9 9 -17 -17 -28 -15 -29 6 0 10 -3 12 -6 4 -2 -6 -9 -10 +-13 -7 -5 3 -7 -3 -6 -12 6 -30 -65 -23 -104 10 -31 26 -57 36 -45 18z"/> +<path d="M3520 8952 c0 -7 -3 -11 -7 -11 -27 4 -33 -1 -21 -21 12 -19 13 -19 +25 3 7 12 12 18 13 14 0 -17 -21 -47 -31 -42 -11 8 -12 -5 0 -23 7 -11 9 -10 +15 3 3 9 9 14 14 11 9 -5 8 61 -1 71 -4 3 -7 1 -7 -5z"/> +<path d="M7120 8935 c-10 -12 -10 -15 1 -15 8 0 5 -6 -7 -14 -14 -11 -16 -17 +-7 -26 13 -15 36 -3 30 14 -3 7 1 13 8 13 7 0 11 -6 8 -14 -3 -7 0 -13 5 -13 +6 0 9 9 7 20 -2 12 0 18 6 15 5 -4 7 -11 4 -16 -4 -5 -2 -9 4 -9 20 0 21 19 2 +30 -13 7 -22 7 -26 0 -9 -15 -27 -1 -21 16 7 18 2 18 -14 -1z"/> +<path d="M3582 8935 c3 -3 -5 -17 -18 -30 -29 -30 -30 -40 -3 -42 16 -2 18 1 +9 12 -13 15 3 30 21 19 8 -5 8 -9 -1 -14 -9 -6 -7 -11 9 -19 12 -7 27 -9 34 +-4 6 4 4 -5 -6 -20 -9 -15 -13 -27 -8 -27 14 0 32 26 23 35 -4 5 -1 5 6 1 7 +-4 9 -12 6 -18 -4 -6 -1 -9 7 -6 8 3 14 10 14 16 0 5 4 14 9 19 5 4 6 3 3 -3 +-4 -7 -1 -17 7 -23 10 -9 13 -4 14 21 1 23 -2 28 -8 18 -6 -8 -10 -11 -10 -6 +0 5 -7 3 -15 -4 -17 -14 -39 -4 -31 15 2 7 -2 16 -10 19 -12 5 -14 1 -10 -17 +3 -12 3 -16 0 -9 -3 6 -11 9 -16 6 -6 -4 -8 -2 -4 4 3 6 2 14 -4 17 -8 5 -8 +11 0 20 8 9 6 14 -7 19 -10 4 -15 4 -11 1z"/> +<path d="M4053 8921 c0 -11 5 -18 9 -15 4 3 5 11 1 19 -7 21 -12 19 -10 -4z"/> +<path d="M6787 8926 c-4 -10 -1 -13 8 -9 8 3 12 9 9 14 -7 12 -11 11 -17 -5z"/> +<path d="M3441 8913 c-5 -10 -12 -17 -15 -15 -15 6 -27 1 -21 -9 4 -6 1 -9 -6 +-7 -8 1 -42 -13 -77 -31 -49 -27 -60 -37 -51 -47 12 -14 29 -10 29 7 0 6 -5 7 +-12 3 -6 -4 -8 -3 -5 4 4 5 17 8 30 5 18 -4 19 -3 7 6 -11 8 -11 11 -2 12 27 +3 31 4 37 11 4 4 13 4 21 1 10 -4 13 0 8 13 -4 14 -3 16 4 5 7 -9 12 -10 16 +-2 10 15 29 14 24 -1 -3 -7 -10 -13 -15 -13 -19 0 -25 -12 -9 -18 18 -7 41 27 +30 45 -5 7 -3 8 6 3 9 -6 11 -4 5 5 -5 8 -4 11 2 7 6 -4 9 -18 7 -32 -1 -17 2 +-25 9 -22 7 2 11 13 9 23 -1 13 3 10 14 -9 12 -23 18 -26 30 -16 13 10 18 6 +15 -13 -1 -11 17 -10 23 1 9 13 42 6 38 -9 -4 -19 31 -41 41 -27 5 7 6 3 3 -9 +-5 -14 -2 -21 9 -21 10 0 14 7 10 21 -3 12 -2 16 1 9 3 -7 12 -9 20 -6 13 5 +13 7 2 14 -9 6 -9 9 -1 9 7 0 17 -8 22 -17 10 -17 10 -17 11 0 0 20 11 22 28 +5 8 -8 12 -8 12 -1 0 18 -27 36 -35 23 -5 -8 -10 -8 -20 0 -10 8 -15 8 -20 0 +-4 -6 -13 -9 -20 -6 -7 2 -17 0 -23 -6 -16 -16 -36 0 -22 17 9 10 6 16 -9 25 +-16 8 -21 8 -21 -2 0 -9 -3 -9 -11 -1 -6 6 -18 9 -25 6 -9 -3 -14 2 -14 13 0 +17 0 17 -13 0 -13 -17 -14 -17 -30 7 -12 19 -13 27 -4 30 9 4 8 8 -3 16 -21 +15 -28 14 -39 -6z m29 -3 c0 -5 -4 -10 -10 -10 -5 0 -10 5 -10 10 0 6 5 10 10 +10 6 0 10 -4 10 -10z"/> +<path d="M7290 8922 c-8 -3 -18 -10 -22 -16 -6 -8 -11 -6 -17 4 -6 8 -13 11 +-18 7 -4 -5 -1 -12 6 -16 9 -6 10 -11 2 -15 -6 -4 -11 -13 -11 -19 0 -7 4 -6 +11 3 8 13 9 12 7 -4 -2 -10 2 -21 9 -23 7 -3 10 5 9 21 -2 14 4 32 12 38 9 7 +13 8 10 3 -4 -6 0 -19 9 -30 14 -19 14 -18 10 12 -4 25 -2 30 10 26 9 -4 11 +-8 4 -12 -6 -4 -2 -12 9 -19 18 -11 20 -10 17 10 -4 23 -33 38 -57 30z"/> +<path d="M6920 8904 c-7 -8 -20 -13 -28 -12 -9 2 -18 -4 -19 -12 -2 -10 4 -16 +17 -17 11 -1 18 2 15 7 -3 5 0 12 6 16 8 4 9 3 5 -4 -4 -7 -2 -12 4 -12 6 0 +13 7 17 16 4 11 8 12 13 4 4 -7 10 -8 13 -3 3 5 -3 14 -13 21 -14 9 -21 8 -30 +-4z"/> +<path d="M7066 8901 c-4 -6 -2 -19 3 -28 6 -11 11 -13 11 -5 0 8 8 6 22 -8 16 +-15 24 -17 30 -8 6 10 8 10 9 1 1 -7 3 -17 4 -23 1 -5 3 -15 4 -22 2 -17 16 1 +16 20 0 9 -4 20 -8 23 -5 3 -1 9 8 12 10 5 14 3 9 -4 -4 -7 -2 -10 5 -8 7 3 +12 9 12 14 -2 13 -42 13 -60 0 -10 -7 -19 -2 -36 19 -14 18 -25 24 -29 17z"/> +<path d="M6683 8892 c-7 -4 -9 -13 -4 -21 6 -10 10 -9 15 5 8 20 4 25 -11 16z"/> +<path d="M3775 8866 c-12 -13 -19 -29 -17 -37 3 -12 2 -12 -6 0 -12 17 -4 43 +11 34 6 -3 7 -1 3 6 -6 8 -12 9 -20 2 -7 -6 -17 -7 -21 -3 -5 4 -5 1 -1 -5 4 +-8 2 -13 -5 -13 -7 0 2 -11 21 -25 41 -30 40 -30 37 -6 -1 11 3 19 8 18 6 -1 +9 -9 8 -18 -1 -9 4 -16 13 -16 9 0 12 7 9 18 -3 9 -1 20 4 24 6 3 9 0 8 -7 -2 +-7 -2 -10 0 -5 3 4 9 4 15 1 5 -3 4 3 -4 15 -8 13 -16 17 -22 11 -17 -17 -29 +-11 -23 10 6 25 6 25 -18 -4z"/> +<path d="M6780 8880 c-8 -5 -13 -10 -10 -11 3 0 14 -3 25 -5 11 -3 29 -6 40 +-8 11 -2 23 -4 28 -5 4 0 7 -8 7 -17 0 -8 4 -13 9 -10 11 7 20 -14 14 -32 -3 +-6 -9 -9 -15 -6 -6 4 -6 9 -1 13 5 3 0 15 -11 25 -19 19 -19 19 -14 -2 5 -19 +3 -20 -13 -11 -10 5 -19 12 -19 15 0 3 4 3 9 0 5 -3 11 1 15 9 7 18 -4 19 -27 +2 -16 -11 -9 -18 57 -61 41 -27 76 -49 79 -50 3 0 16 11 29 25 l25 26 -50 0 +c-35 0 -45 -2 -33 -9 9 -5 16 -13 16 -18 0 -6 -9 -2 -19 7 -14 12 -17 21 -11 +33 6 11 5 21 -2 28 -9 9 -9 15 1 25 10 10 11 8 6 -8 -4 -16 -3 -16 6 2 11 21 +13 22 26 5 8 -9 12 -12 9 -5 -4 6 -1 15 5 19 7 4 9 3 6 -3 -4 -6 0 -13 8 -17 +8 -3 14 -2 12 2 -1 4 2 7 8 7 5 0 8 -7 6 -15 -2 -11 2 -10 18 4 25 23 27 30 6 +22 -9 -3 -18 1 -22 9 -3 11 -9 12 -17 6 -7 -6 -17 -6 -26 -1 -9 5 -19 5 -27 +-2 -24 -19 -62 -18 -74 3 -7 15 -14 17 -28 10 -11 -6 -22 -6 -27 -1 -6 6 -15 +5 -24 0z m190 -129 c0 -6 -4 -12 -8 -15 -5 -3 -9 1 -9 9 0 8 4 15 9 15 4 0 8 +-4 8 -9z"/> +<path d="M7036 8882 c-3 -6 -1 -14 5 -17 18 -12 -31 -56 -50 -46 -9 6 -23 5 +-34 -1 -13 -7 -17 -7 -13 0 3 6 1 14 -5 18 -8 4 -9 3 -5 -4 4 -7 3 -12 -2 -12 +-5 0 -9 -7 -9 -15 0 -8 4 -12 9 -9 4 3 8 -1 8 -8 0 -9 3 -9 10 2 9 13 11 13 +20 0 7 -11 10 -11 10 -2 0 7 5 10 12 6 7 -5 9 -2 4 7 -4 8 -1 6 7 -4 8 -10 13 +-28 10 -40 -5 -22 -5 -22 10 -2 9 12 12 26 7 35 -4 8 -5 21 -3 28 4 10 9 8 19 +-5 13 -17 14 -16 10 10 -5 32 4 35 22 7 7 -11 17 -20 24 -20 6 0 3 10 -8 22 +l-19 22 27 -20 c14 -10 22 -20 17 -22 -12 -5 -11 -32 1 -32 6 0 10 6 11 13 0 +6 2 20 4 29 2 10 0 17 -3 16 -4 -1 -17 3 -29 10 -13 7 -23 9 -23 5 0 -4 -9 3 +-19 16 -11 14 -21 20 -25 13z"/> +<path d="M7192 8852 c-28 -28 -24 -34 23 -38 23 -1 33 1 29 8 -5 7 -2 8 6 3 8 +-5 11 -4 6 3 -7 12 -46 12 -46 -1 0 -4 -5 -5 -11 -1 -8 4 -7 9 2 15 7 4 17 5 +21 3 10 -6 10 8 0 21 -4 6 -16 1 -30 -13z"/> +<path d="M7324 8873 c7 -13 -3 -17 -39 -13 -20 2 -20 2 0 -13 12 -9 26 -12 35 +-7 8 4 21 5 29 2 9 -3 11 0 6 8 -6 9 -4 11 5 5 9 -5 11 -4 6 3 -5 8 -1 10 9 5 +11 -4 13 -8 5 -13 -8 -5 -6 -11 5 -20 12 -10 15 -10 15 1 0 11 2 11 10 -1 6 +-9 13 -11 18 -5 11 15 29 16 29 0 0 -7 -7 -11 -15 -8 -12 5 -12 3 -1 -15 15 +-25 30 -10 24 24 -2 10 -4 23 -4 27 -1 4 -11 2 -23 -4 -18 -10 -24 -9 -37 7 +-17 20 -34 24 -47 12 -4 -4 -14 -2 -22 5 -13 9 -14 9 -8 0z"/> +<path d="M6740 8854 c0 -6 6 -17 14 -23 11 -9 15 -8 20 4 4 10 2 14 -5 9 -6 +-4 -15 0 -20 7 -5 8 -9 9 -9 3z"/> +<path d="M3355 8839 c-4 -5 -11 -7 -16 -3 -5 3 -8 1 -7 -4 2 -5 -8 -18 -22 +-30 -22 -18 -26 -18 -47 -5 -16 11 -23 12 -23 4 0 -7 -4 -10 -9 -6 -5 3 -15 0 +-23 -7 -7 -7 -20 -14 -28 -16 -8 -2 -17 -8 -18 -13 -2 -5 -9 -6 -14 -3 -7 5 +-8 2 -3 -6 6 -10 4 -12 -8 -7 -8 3 -21 -1 -27 -9 -7 -8 -19 -14 -27 -14 -8 0 +-11 -5 -8 -10 5 -8 11 -8 20 0 9 8 14 7 18 -4 4 -9 -4 -21 -19 -31 -14 -9 -22 +-21 -18 -27 4 -7 10 -5 16 5 5 10 15 14 26 10 9 -3 14 -2 9 2 -4 5 0 20 9 33 +15 23 15 25 1 19 -9 -3 -19 -2 -22 4 -4 5 -3 8 2 7 14 -4 53 13 53 23 0 6 4 8 +9 4 5 -3 17 2 25 11 9 8 16 13 16 9 0 -3 10 -1 21 6 15 8 19 8 15 0 -8 -12 21 +-11 41 2 6 4 13 1 16 -5 2 -8 10 -1 18 15 10 23 17 27 37 22 18 -4 22 -3 16 7 +-6 10 -3 9 9 -1 9 -7 17 -9 17 -4 0 15 -48 34 -55 22z"/> +<path d="M3962 8824 c11 -23 12 -23 31 -7 10 10 21 16 22 13 2 -3 7 -2 11 3 8 +7 7 8 -43 12 -30 2 -31 1 -21 -21z"/> +<path d="M7519 8839 c-7 -4 -10 -11 -6 -16 5 -4 12 -1 16 6 6 8 11 9 15 3 3 +-6 -3 -13 -14 -17 -16 -5 -17 -9 -7 -20 13 -14 22 -11 22 8 0 5 7 12 15 14 13 +4 13 3 0 -7 -13 -10 -11 -11 6 -7 12 2 28 0 35 -5 11 -8 11 -9 -2 -5 -8 3 -21 +-3 -27 -14 -7 -10 -8 -19 -3 -19 6 0 13 5 16 10 9 15 38 8 54 -13 7 -10 20 +-16 28 -13 8 3 12 2 8 -3 -3 -5 6 -8 20 -7 13 2 22 0 20 -5 -3 -4 -1 -10 4 +-14 6 -3 8 -11 5 -18 -3 -8 4 -13 17 -14 17 -2 18 1 8 13 -6 8 -9 17 -5 21 3 +3 6 1 6 -6 0 -7 5 -9 10 -6 6 4 9 1 8 -6 -2 -6 3 -14 11 -17 9 -3 11 0 6 7 -5 +9 -2 9 13 0 12 -7 18 -17 15 -23 -3 -5 -1 -6 5 -2 7 4 12 2 12 -4 0 -6 5 -8 +10 -5 6 3 10 0 10 -7 0 -11 2 -10 9 0 7 11 9 10 14 -3 4 -9 3 -14 -1 -11 -5 3 +-9 -8 -9 -25 0 -21 3 -27 11 -19 6 6 12 15 12 21 1 5 2 14 3 20 0 5 6 7 12 3 +8 -4 7 -9 -2 -16 -11 -8 -10 -9 2 -5 9 3 22 0 28 -6 7 -7 11 -8 11 0 0 12 -80 +68 -80 56 0 -5 -4 -3 -8 2 -11 15 -112 67 -112 58 0 -4 -5 0 -11 10 -6 9 -15 +15 -20 11 -6 -3 -19 4 -30 17 -10 12 -19 17 -19 10 0 -7 -5 -9 -10 -6 -6 4 -8 +11 -5 16 4 5 2 9 -4 9 -6 0 -32 13 -59 29 -32 19 -54 26 -63 20z"/> +<path d="M3425 8831 c-3 -6 4 -15 15 -21 11 -6 20 -7 20 -2 0 4 13 8 28 7 21 +0 28 -4 25 -16 -3 -9 2 -16 11 -16 9 0 16 3 16 7 0 5 23 6 50 1 2 -1 -1 -6 -8 +-13 -21 -21 -13 -32 10 -12 22 19 22 19 8 0 -14 -18 -13 -19 2 -13 13 5 16 1 +12 -19 -4 -22 -2 -23 15 -13 20 13 18 19 -27 64 -13 13 -21 28 -18 34 7 11 +-13 9 -31 -2 -17 -11 -35 1 -27 16 5 9 3 8 -6 0 -10 -9 -17 -10 -27 -2 -9 9 +-17 8 -28 -1 -10 -9 -15 -9 -15 -1 0 13 -17 15 -25 2z"/> +<path d="M7270 8825 c0 -17 0 -17 -55 -20 -55 -3 -68 -8 -82 -25 -10 -13 -16 +-10 -44 20 -17 19 -26 28 -20 19 14 -21 -10 -34 -28 -16 -9 9 -11 8 -5 -6 3 +-9 11 -16 18 -15 6 2 12 -2 13 -7 2 -6 -4 -10 -13 -10 -8 0 -20 -9 -26 -19 +-11 -19 -11 -19 -25 0 -13 18 -14 17 -9 -11 2 -16 5 -32 6 -35 0 -3 10 6 20 +19 12 14 20 18 20 10 1 -10 4 -9 11 3 5 10 16 15 25 11 8 -3 14 -2 13 3 -1 5 +-1 16 0 24 1 12 5 11 16 -4 19 -25 2 -64 -20 -46 -11 9 -14 8 -12 -7 1 -16 9 +-19 47 -19 31 0 47 4 47 13 0 13 -23 13 -46 -1 -11 -7 -11 -4 2 13 8 13 13 29 +11 36 -3 7 -1 16 4 19 6 3 12 -1 16 -9 3 -8 1 -17 -4 -20 -6 -4 -10 -11 -10 +-16 0 -6 8 -3 17 6 16 16 17 16 29 1 7 -11 15 -13 18 -7 4 6 -5 18 -19 27 -20 +13 -23 19 -14 31 7 8 15 10 18 5 10 -16 65 -8 79 11 11 14 17 15 28 6 7 -6 20 +-9 29 -6 8 4 17 1 21 -5 5 -7 11 -6 19 6 12 15 13 15 19 0 4 -9 13 -14 21 -10 +8 3 15 1 15 -5 0 -6 5 -7 12 -3 8 5 6 11 -7 20 -10 7 -21 11 -25 9 -4 -3 -13 +2 -20 10 -14 17 -34 10 -24 -8 3 -7 -2 -3 -10 7 -14 17 -16 18 -16 3 0 -9 -5 +-17 -11 -17 -5 0 -7 5 -3 12 4 6 3 8 -4 4 -6 -3 -13 -2 -17 4 -9 15 -25 12 +-25 -5z"/> +<path d="M3826 8804 c-3 -9 -10 -12 -16 -9 -5 3 -10 0 -10 -7 0 -8 -3 -9 -8 +-3 -8 12 -27 13 -38 3 -4 -4 -13 -3 -19 2 -9 8 -14 6 -18 -5 -4 -9 -13 -12 +-23 -8 -10 4 -20 0 -26 -11 -5 -9 -14 -13 -21 -9 -8 4 -7 1 1 -9 11 -14 10 +-18 -10 -29 -13 -7 -26 -13 -29 -12 -3 1 -6 -5 -6 -13 0 -8 6 -13 13 -10 8 3 +20 -1 28 -9 13 -13 15 -13 21 5 4 11 10 18 14 16 9 -6 7 31 -2 40 -12 12 -8 +22 7 20 22 -3 46 -27 39 -39 -3 -6 -1 -7 5 -3 7 4 12 1 12 -6 1 -7 8 -1 16 15 +8 15 12 32 9 37 -12 19 19 22 35 3 14 -18 19 -19 35 -7 12 9 14 14 6 14 -10 0 +-11 3 -2 13 6 8 7 18 3 23 -4 5 3 0 16 -10 12 -11 22 -17 23 -15 0 2 2 11 4 +20 4 21 -51 24 -59 3z m-63 -25 c-6 -6 -9 -17 -7 -24 8 -21 -13 -27 -30 -9 +-18 18 -13 36 8 28 8 -3 17 -1 21 5 3 6 9 11 13 11 3 0 1 -5 -5 -11z m62 -17 +c-3 -3 -11 0 -18 7 -9 10 -8 11 6 5 10 -3 15 -9 12 -12z m-155 -52 c-6 -12 +-16 -17 -26 -13 -14 5 -12 8 7 19 31 17 31 17 19 -6z"/> +<path d="M3720 8766 c0 -2 7 -9 15 -16 9 -7 15 -8 15 -2 0 5 -7 12 -15 16 -8 +3 -15 4 -15 2z"/> +<path d="M7475 8796 c-12 -18 -23 -22 -47 -20 -17 2 -37 9 -44 14 -8 8 -14 8 +-19 0 -5 -7 -11 -8 -19 -1 -6 5 -17 6 -24 2 -9 -5 -7 -13 9 -27 20 -17 22 -17 +16 -1 -6 15 -3 16 12 7 11 -5 22 -15 24 -22 3 -8 6 -6 6 5 1 9 4 17 8 17 3 0 +15 -8 26 -17 20 -17 20 -17 13 1 -5 16 -4 17 8 7 12 -10 18 -7 30 16 12 21 16 +23 14 8 -2 -11 -7 -24 -13 -28 -10 -8 5 -5 40 9 8 3 15 1 15 -6 0 -6 5 -8 13 +-4 6 4 3 -2 -7 -14 -11 -12 -14 -22 -9 -22 14 0 37 29 30 37 -4 3 -2 12 4 20 +12 13 -2 19 -15 6 -3 -4 -15 -7 -25 -8 -13 -1 -17 5 -15 22 3 30 -11 29 -31 +-1z"/> +<path d="M3336 8785 c-10 -15 -23 -21 -40 -20 -34 4 -42 -11 -15 -25 13 -7 19 +-8 15 -2 -3 6 -2 14 4 17 6 4 10 3 9 -2 -3 -20 2 -34 11 -28 6 4 8 10 5 14 -2 +5 2 17 10 27 8 10 15 14 15 8 0 -12 30 -15 30 -3 0 4 -8 13 -17 18 -10 6 -13 +11 -6 11 6 0 15 -5 19 -11 4 -8 9 -7 16 2 7 10 8 8 4 -7 -5 -14 -2 -21 9 -21 +10 0 14 7 10 21 -3 12 -2 15 1 8 3 -6 11 -9 16 -6 7 5 8 2 3 -6 -6 -10 -4 -10 +10 -2 21 11 65 -4 65 -23 0 -19 23 -13 50 14 14 13 20 21 14 18 -30 -17 -64 +-15 -74 4 -8 15 -15 17 -29 9 -10 -5 -21 -6 -25 -3 -3 4 -26 7 -51 8 -36 2 +-47 -2 -59 -20z"/> +<path d="M7277 8803 c-12 -11 -8 -33 6 -30 6 1 11 -6 9 -15 -2 -10 2 -18 8 +-18 6 0 8 5 5 10 -3 6 -1 10 5 10 7 0 10 -6 7 -14 -4 -10 1 -13 18 -11 16 1 +22 -2 18 -9 -3 -6 -2 -8 2 -3 5 4 17 -1 28 -10 17 -15 19 -15 15 -2 -5 12 1 +15 23 14 16 -1 32 -4 35 -8 4 -3 15 -2 25 4 15 7 21 6 25 -6 3 -8 11 -15 16 +-15 6 0 5 7 -3 16 -10 13 -10 17 0 24 9 5 10 10 2 14 -6 4 -11 3 -11 -3 0 -5 +-11 -8 -24 -7 -14 2 -30 -1 -38 -5 -7 -5 -20 -1 -32 9 -11 9 -16 12 -13 5 4 +-6 1 -13 -5 -16 -20 -6 -39 4 -31 17 4 6 0 6 -9 -2 -14 -11 -20 -8 -45 23 -16 +19 -32 32 -36 28z"/> +<path d="M3464 8771 c3 -5 -1 -12 -10 -15 -8 -3 -12 -2 -9 4 3 6 -1 7 -10 4 +-12 -5 -13 -9 -4 -20 10 -12 16 -12 38 3 22 14 24 14 13 1 -8 -10 -9 -19 -3 +-22 5 -3 12 0 14 6 4 8 8 4 13 -10 5 -18 9 -20 15 -10 7 11 9 11 9 -1 0 -9 5 +-7 18 6 9 10 13 13 8 6 -11 -17 6 -17 23 0 11 10 12 9 5 -3 -5 -8 -10 -26 -12 +-40 -3 -24 -3 -24 12 -5 8 11 12 23 9 28 -2 4 1 15 9 24 9 12 9 15 1 9 -8 -4 +-13 -2 -13 5 0 7 -3 9 -7 6 -3 -4 -13 -1 -21 6 -13 9 -14 9 -8 0 4 -7 4 -13 +-1 -14 -4 0 -16 -2 -26 -4 -9 -2 -22 5 -27 15 -5 10 -17 20 -25 24 -9 3 -14 2 +-11 -3z"/> +<path d="M7190 8763 c14 -10 28 -17 33 -15 4 1 7 -3 7 -10 0 -6 10 -3 22 8 22 +19 22 19 8 0 -14 -18 -13 -19 3 -13 12 5 16 3 11 -5 -5 -7 -3 -8 6 -3 9 6 11 +4 5 -5 -5 -8 -4 -11 3 -6 6 3 14 1 18 -5 4 -8 9 -7 15 2 6 10 9 10 9 2 0 -6 8 +-10 19 -8 12 2 23 -5 31 -21 15 -27 27 -29 50 -11 14 11 14 14 -4 31 -19 19 +-19 19 -14 -2 4 -12 1 -25 -5 -29 -7 -3 -9 -3 -5 2 8 8 -26 37 -47 42 -67 14 +-78 20 -72 37 3 7 0 13 -6 13 -7 0 -19 2 -27 4 -9 2 -14 -2 -12 -11 2 -13 1 +-13 -10 0 -7 8 -24 16 -38 18 l-25 3 25 -18z"/> +<path d="M3233 8750 c4 -24 17 -39 17 -19 0 11 2 11 10 -1 5 -8 10 -10 10 -5 +-1 12 -25 45 -34 45 -3 0 -5 -9 -3 -20z"/> +<path d="M7557 8730 c-23 -28 -39 -38 -51 -34 -9 3 -13 11 -10 16 4 6 -1 6 +-13 -1 -14 -7 -23 -7 -30 0 -8 8 -13 7 -18 -2 -5 -7 -4 -10 2 -6 6 4 13 0 17 +-8 3 -9 -3 -19 -15 -25 -11 -6 -17 -15 -14 -21 4 -5 1 -9 -5 -9 -6 0 -8 -5 -5 +-10 5 -8 11 -7 21 1 9 8 11 15 5 18 -6 4 4 13 21 20 22 10 27 16 17 22 -10 6 +-10 9 -2 9 20 0 24 -18 6 -29 -16 -9 -16 -10 -1 -11 9 0 20 5 23 10 4 6 11 8 +16 5 5 -4 14 6 21 20 7 15 14 21 18 15 5 -7 11 -6 20 5 9 11 9 15 1 15 -8 0 +-8 4 1 14 11 11 14 11 24 -2 7 -9 16 -12 24 -7 9 6 11 4 5 -5 -6 -9 -4 -11 4 +-5 10 6 11 3 2 -13 -14 -27 -14 -29 4 -29 11 0 14 7 9 21 -3 12 -2 16 3 11 4 +-6 18 -10 30 -9 13 1 19 -4 17 -11 -6 -15 24 -47 37 -40 5 4 9 1 9 -6 0 -9 3 +-9 14 0 7 6 21 8 30 5 15 -6 15 -8 -1 -20 -17 -14 -17 -14 2 -12 11 2 23 8 27 +13 4 6 8 2 8 -8 0 -10 5 -15 10 -12 6 3 10 1 10 -4 0 -6 -4 -11 -8 -11 -5 0 +-9 -7 -9 -15 0 -8 4 -12 8 -9 4 2 9 -2 12 -8 3 -7 4 5 2 27 -1 21 -8 41 -15 +43 -7 3 -20 12 -29 21 -9 9 -32 16 -56 16 -31 0 -40 4 -40 17 0 21 -7 28 -35 +33 -13 2 -31 12 -40 20 -14 13 -19 13 -23 3 -4 -8 -6 -7 -6 5 -1 27 -17 20 +-54 -23z"/> +<path d="M3180 8739 c-19 -10 -32 -18 -27 -19 4 0 1 -10 -7 -22 -8 -13 -16 +-27 -18 -33 -2 -5 -8 -9 -14 -9 -6 1 -9 -7 -7 -17 6 -20 23 -26 23 -8 0 6 11 +20 25 31 14 11 25 25 25 31 0 7 -4 6 -10 -3 -5 -8 -12 -11 -17 -7 -4 5 -1 12 +7 17 11 7 20 3 33 -15 10 -14 23 -23 28 -19 5 3 9 0 9 -7 0 -15 13 -4 16 14 1 +7 5 21 10 32 4 11 4 17 -1 13 -4 -4 -14 -3 -22 3 -9 8 -17 8 -26 1 -8 -7 -18 +-7 -27 -2 -8 6 -10 10 -5 11 41 3 62 13 48 22 -4 3 -24 -3 -43 -14z m53 -34 +c7 -16 -8 -29 -23 -20 -10 6 -2 35 10 35 4 0 10 -7 13 -15z"/> +<path d="M3334 8748 c-6 -9 -3 -10 48 -12 21 -1 41 -6 45 -10 4 -5 -1 -6 -13 +-2 -14 4 -21 2 -21 -8 0 -16 47 -18 58 -3 3 4 12 1 19 -7 10 -13 9 -17 -4 -22 +-9 -3 -16 -11 -16 -17 0 -6 3 -7 6 -4 4 3 16 1 28 -5 18 -10 19 -9 9 3 -8 10 +-9 20 -3 29 8 13 10 13 10 1 0 -8 2 -12 5 -9 9 8 -5 35 -18 36 -29 2 -49 9 +-66 23 -21 17 -45 23 -36 9 3 -5 1 -10 -4 -10 -6 0 -11 4 -11 8 0 5 -7 9 -15 +9 -9 0 -18 -4 -21 -9z"/> +<path d="M7093 8739 c-2 -23 3 -25 10 -4 4 8 3 16 -1 19 -4 3 -9 -4 -9 -15z"/> +<path d="M7173 8722 c0 -11 9 -25 19 -31 23 -15 23 -5 -1 26 -18 21 -20 22 +-18 5z"/> +<path d="M7594 8732 c3 -5 -3 -17 -14 -27 -11 -10 -20 -14 -20 -9 0 5 -7 -2 +-16 -14 -8 -12 -19 -20 -24 -17 -5 3 -14 -3 -19 -14 -14 -25 -14 -31 0 -31 5 +0 7 5 3 12 -5 7 -3 8 6 3 9 -6 12 -4 8 7 -4 8 -1 15 7 15 7 0 11 -7 8 -15 -5 +-12 -3 -12 15 -1 11 7 18 17 16 21 -3 5 -10 5 -16 2 -7 -4 -8 -2 -4 5 4 6 11 +9 16 6 5 -3 13 3 19 12 6 10 11 12 11 6 0 -7 6 -12 13 -10 7 1 11 -8 10 -25 +-2 -24 0 -26 16 -16 16 10 17 13 5 26 -8 8 -12 22 -9 31 3 10 -3 21 -16 29 +-12 8 -18 9 -15 4z m20 -20 c3 -5 -1 -9 -9 -9 -8 0 -12 4 -9 9 3 4 7 8 9 8 2 +0 6 -4 9 -8z"/> +<path d="M3266 8701 c-9 -16 -13 -31 -10 -33 2 -3 -2 -10 -9 -17 -11 -8 -20 +-7 -40 9 l-25 20 -32 -37 c-27 -33 -33 -36 -43 -23 -12 16 -23 19 -69 25 -19 +3 -25 0 -22 -9 6 -15 34 -17 34 -3 0 5 7 4 16 -4 14 -12 14 -14 -1 -25 -9 -7 +-24 -10 -33 -6 -15 5 -16 4 -2 -13 9 -11 10 -16 3 -11 -14 8 -18 -6 -6 -18 4 +-4 15 3 23 15 16 20 18 20 33 4 9 -9 17 -12 17 -6 0 5 -4 12 -10 16 -5 3 -7 +12 -4 20 9 23 23 7 20 -23 -1 -18 -7 -26 -17 -24 -9 1 -16 -5 -16 -13 0 -11 6 +-14 16 -9 20 9 42 9 61 0 11 -5 16 0 17 15 2 16 -1 18 -12 9 -22 -18 -39 21 +-20 46 11 15 15 16 16 4 1 -8 1 -19 0 -24 -1 -5 5 -6 14 -2 9 3 18 -1 21 -9 4 +-8 10 -13 14 -10 5 3 14 -3 19 -12 9 -15 11 -13 8 11 -2 17 -9 32 -17 34 -8 3 +-10 0 -5 -8 4 -7 -4 -4 -19 5 -20 13 -24 21 -16 30 8 9 7 14 -2 17 -9 3 -9 6 +0 12 7 4 12 3 12 -3 0 -6 8 -8 18 -4 14 5 13 3 -3 -11 l-20 -17 20 3 c11 2 24 +8 28 13 5 6 5 0 2 -12 -5 -18 -3 -22 9 -17 8 3 12 13 9 22 -4 13 -3 14 5 3 7 +-9 12 -10 16 -2 4 6 1 11 -6 11 -7 0 -2 7 10 16 21 15 32 42 12 29 -5 -3 -10 +-1 -10 5 0 7 6 10 14 7 10 -4 12 0 9 14 -7 25 -10 24 -27 -10z"/> +<path d="M3329 8720 c-7 -5 -17 -6 -23 -3 -5 4 -7 -1 -2 -12 4 -12 -1 -26 -15 +-42 -13 -12 -18 -23 -12 -23 6 0 14 6 16 13 4 9 6 9 6 0 1 -7 8 -10 16 -7 8 4 +12 10 9 15 -3 5 -10 6 -16 3 -7 -4 -8 -2 -4 5 6 9 11 9 22 0 8 -6 17 -9 21 -5 +4 3 -1 12 -11 19 -16 12 -16 14 -2 26 12 10 16 10 16 2 0 -7 4 -10 9 -6 14 8 +29 -25 26 -56 -2 -17 2 -26 11 -26 9 0 12 8 10 24 -3 12 0 25 5 28 5 4 9 12 9 +18 0 7 -4 6 -10 -3 -9 -13 -11 -13 -19 0 -5 8 -7 18 -5 22 3 4 2 8 -3 9 -4 0 +-15 2 -24 4 -9 1 -22 -1 -30 -5z"/> +<path d="M7207 8723 c-4 -3 -2 -12 4 -19 14 -17 2 -38 -14 -26 -16 13 -80 8 +-85 -7 -2 -6 -8 -8 -14 -5 -6 4 -5 -2 1 -15 15 -26 27 -27 41 -1 6 11 15 18 +21 15 5 -4 9 -1 9 4 0 6 5 11 10 11 6 0 9 -3 9 -7 -3 -20 2 -33 13 -33 6 0 9 +3 5 6 -8 9 25 44 36 37 5 -3 7 5 3 18 -3 13 -3 18 0 11 3 -6 10 -10 15 -7 5 4 +6 -1 3 -10 -7 -17 15 -18 27 -1 4 5 10 -2 14 -14 6 -18 9 -20 16 -9 10 16 12 +35 2 26 -3 -4 -12 -2 -20 4 -7 6 -13 8 -13 4 0 -4 -6 -2 -14 4 -17 15 -60 23 +-69 14z m-57 -47 c0 -3 -4 -8 -10 -11 -5 -3 -10 -1 -10 4 0 6 5 11 10 11 6 0 +10 -2 10 -4z"/> +<path d="M7030 8710 c0 -4 8 -14 17 -21 11 -10 14 -10 9 -1 -4 7 -2 12 5 12 7 +0 9 3 5 7 -10 10 -36 13 -36 3z"/> +<path d="M3050 8695 c0 -10 5 -13 12 -9 7 4 8 3 4 -5 -4 -6 -11 -9 -16 -6 -4 +3 -10 2 -13 -2 -2 -5 -2 -2 -1 5 4 15 1 15 -31 0 -14 -6 -25 -15 -25 -20 0 -5 +4 -7 8 -4 5 3 8 -5 7 -17 -1 -12 3 -25 9 -29 7 -5 4 -8 -7 -8 -10 0 -15 -5 +-12 -10 4 -6 11 -7 17 -4 7 4 8 2 4 -5 -4 -6 -12 -9 -17 -6 -12 8 -11 -6 1 +-25 7 -11 10 -12 10 -2 0 10 4 10 16 -2 24 -25 47 -16 52 19 3 18 2 18 -13 -3 +-13 -18 -20 -21 -31 -11 -8 6 -12 22 -9 37 2 13 0 32 -5 41 -10 20 3 50 14 32 +10 -16 18 -14 57 15 19 15 27 24 19 21 -8 -2 -23 0 -32 5 -14 6 -18 5 -18 -7z"/> +<path d="M3343 8689 c9 -6 17 -14 17 -19 0 -11 -33 -30 -63 -36 -12 -2 -27 +-11 -33 -19 -6 -8 -16 -15 -21 -15 -17 0 -11 -27 9 -39 10 -6 18 -7 18 -2 0 6 +-5 13 -10 16 -16 10 10 37 28 30 9 -3 12 0 9 9 -4 11 1 13 24 11 16 -2 27 0 +24 4 -2 5 2 14 10 21 10 9 15 9 15 1 0 -6 -4 -11 -8 -11 -5 0 -9 -7 -9 -15 0 +-8 4 -12 8 -9 4 2 9 -2 12 -8 3 -11 2 64 -2 82 -1 3 -11 6 -23 7 -20 2 -21 1 +-5 -8z"/> +<path d="M3423 8681 c-7 -12 -6 -19 6 -28 14 -12 14 -12 -4 -7 -16 5 -17 4 -5 +-5 13 -10 13 -12 0 -20 -8 -5 -17 -8 -21 -5 -6 3 -19 -19 -19 -32 0 -3 15 6 +33 20 23 18 37 22 47 16 22 -14 26 -12 27 11 2 16 -1 18 -12 9 -11 -9 -16 -6 +-26 11 -10 19 -9 25 6 35 16 12 16 13 -3 11 -11 0 -24 -8 -29 -16z"/> +<path d="M3515 8682 c-3 -7 -10 -10 -16 -7 -6 4 -5 -2 2 -13 15 -23 31 -20 22 +5 -5 13 -2 12 15 -3 15 -12 18 -21 11 -30 -7 -8 -6 -13 3 -16 9 -3 9 -6 0 -12 +-7 -4 -12 -2 -12 4 0 6 -5 8 -12 4 -18 -12 -51 -13 -70 -3 -12 6 -25 1 -47 +-20 -17 -16 -31 -35 -31 -42 0 -7 3 -9 6 -6 4 3 15 2 24 -3 13 -7 21 -5 29 4 +9 10 8 15 -5 20 -23 9 -31 7 -14 -4 8 -5 12 -12 9 -15 -4 -3 -12 1 -18 9 -10 +12 -8 17 11 27 13 6 20 8 16 5 -3 -4 1 -15 10 -25 15 -15 18 -15 30 -1 7 8 11 +11 10 5 -2 -5 1 -11 7 -12 5 -2 10 5 10 15 0 10 7 16 17 16 9 -1 26 8 38 21 +18 19 19 26 9 48 -7 15 -17 24 -23 21 -6 -3 -2 2 8 10 19 16 19 16 -7 14 -14 +-1 -29 -8 -32 -16z m-42 -108 c-6 -17 -6 -17 -22 14 -12 22 -11 23 8 13 12 -7 +18 -17 14 -27z m37 22 c0 -3 -4 -8 -10 -11 -5 -3 -10 -1 -10 4 0 6 5 11 10 11 +6 0 10 -2 10 -4z"/> +<path d="M7331 8673 c-12 -27 -13 -27 -27 -8 -18 24 -18 8 0 -23 l13 -24 13 +32 c7 17 16 27 19 22 3 -4 15 -12 25 -16 19 -6 19 -7 -2 -22 -12 -8 -19 -20 +-16 -26 4 -7 10 -4 16 6 8 14 12 15 25 5 28 -23 11 23 -20 53 -15 16 -29 28 +-31 28 -1 0 -8 -12 -15 -27z"/> +<path d="M7666 8684 c-3 -9 -11 -12 -18 -8 -10 6 -10 5 0 -8 10 -13 8 -18 -11 +-31 -19 -12 -27 -13 -37 -4 -10 9 -11 9 -6 0 4 -7 2 -14 -3 -14 -6 -1 -15 -3 +-21 -4 -5 -1 -13 -3 -17 -4 -5 -1 -1 -6 7 -11 10 -6 21 -4 34 8 11 9 16 12 13 +5 -5 -7 -1 -11 10 -11 10 0 24 -1 32 -3 7 -2 16 2 19 10 2 8 0 11 -5 8 -5 -3 +-15 -1 -23 5 -12 8 -12 9 3 4 10 -3 16 -2 13 3 -3 5 1 11 9 14 9 4 12 1 9 -7 +-3 -7 1 -13 8 -13 7 0 20 -4 28 -7 11 -5 16 0 17 15 1 16 -1 18 -11 10 -14 +-11 -26 -5 -26 13 0 6 5 4 10 -4 13 -21 12 -6 -2 25 -13 29 -23 32 -32 9z m19 +-14 c3 -5 1 -10 -4 -10 -6 0 -11 5 -11 10 0 6 2 10 4 10 3 0 8 -4 11 -10z"/> +<path d="M3589 8663 c-2 -28 2 -47 12 -57 5 -6 7 -1 4 12 -5 27 9 36 34 22 13 +-7 22 -7 26 0 4 6 11 8 16 5 5 -4 9 -2 9 3 0 5 10 13 22 19 20 9 20 10 -10 10 +-22 0 -33 -6 -38 -20 -6 -18 -6 -18 -21 3 -14 20 -16 20 -30 3 -8 -10 -12 -13 +-9 -6 4 6 2 14 -4 18 -5 3 -11 -2 -11 -12z"/> +<path d="M7229 8666 c-1 -6 -2 -29 -3 -52 l-1 -40 40 2 c22 1 48 -3 58 -8 19 +-10 21 -5 7 22 -8 14 -4 21 17 35 20 13 23 19 12 26 -10 6 -18 1 -27 -16 -7 +-14 -15 -25 -17 -25 -3 0 -14 17 -25 38 -12 20 -19 29 -16 19 4 -12 2 -16 -5 +-11 -7 4 -10 1 -7 -7 3 -8 10 -13 16 -12 6 2 9 -6 7 -17 -2 -12 1 -17 9 -14 8 +3 16 -2 20 -12 5 -14 4 -15 -9 -4 -10 8 -15 9 -15 1 0 -6 -4 -11 -10 -11 -5 0 +-9 5 -7 11 1 6 -4 14 -12 17 -8 2 -11 0 -7 -6 3 -6 3 -13 -2 -16 -5 -3 -8 9 +-7 27 1 18 -3 35 -9 39 -7 5 -4 8 7 8 9 0 17 4 17 8 0 13 -30 10 -31 -2z"/> +<path d="M7579 8678 c0 -2 -3 -16 -5 -33 -3 -20 -1 -26 5 -16 5 7 13 16 19 20 +6 4 5 11 -4 19 -8 7 -14 11 -15 10z"/> +<path d="M2947 8646 c-8 -8 -17 -12 -21 -9 -3 4 -6 1 -6 -6 0 -7 -3 -10 -7 -8 +-5 3 -9 -6 -9 -19 -2 -20 1 -23 12 -13 8 7 12 14 9 17 -6 6 26 31 39 32 6 0 1 +-7 -10 -16 -10 -8 -14 -13 -7 -10 6 4 15 1 19 -5 4 -8 3 -9 -4 -5 -12 7 -62 +-35 -62 -51 0 -5 9 -9 21 -10 16 -2 18 1 9 12 -9 11 -7 16 9 25 17 8 21 8 19 +-2 -2 -7 -7 -16 -12 -20 -6 -4 2 -12 17 -19 30 -14 32 -20 15 -37 -8 -8 -8 +-12 -1 -12 15 0 34 25 25 35 -4 5 -1 5 6 1 7 -4 9 -12 6 -18 -5 -8 -1 -9 12 +-3 10 4 30 9 44 10 14 1 34 6 45 10 11 4 16 3 10 -2 -16 -13 -14 -27 6 -45 15 +-14 19 -15 19 -4 0 8 -4 18 -10 21 -14 9 -12 28 3 22 6 -2 11 -9 10 -14 -1 -5 +7 -14 17 -21 14 -9 19 -8 24 3 3 8 0 14 -6 12 -6 -1 -13 4 -15 11 -3 6 0 12 7 +12 6 0 8 -4 5 -10 -3 -6 1 -7 10 -4 9 4 13 9 10 12 -5 6 -58 13 -87 12 -78 -2 +-95 -1 -111 2 -22 5 -54 48 -36 48 7 0 9 3 6 6 -3 4 -2 14 2 23 6 10 4 23 -4 +34 -11 16 -14 16 -28 3z"/> +<path d="M7437 8627 c-24 -25 -30 -27 -44 -15 -15 12 -15 11 -3 -12 7 -14 11 +-26 9 -27 -2 -1 -1 -5 4 -9 7 -7 11 11 7 31 -1 6 2 7 6 2 13 -13 12 -51 -2 +-79 -18 -35 -18 -33 13 -36 24 -2 25 -1 9 11 -16 12 -13 53 3 42 4 -2 8 2 8 +10 0 8 -4 15 -8 15 -10 0 -5 48 6 58 4 4 5 1 0 -6 -6 -11 -3 -12 12 -3 18 9 +20 7 18 -14 -2 -13 3 -26 11 -29 17 -6 17 -2 3 27 -10 21 -10 21 5 3 14 -18 +20 -15 17 6 0 4 6 5 15 1 17 -6 13 -29 -5 -25 -13 3 -15 -14 -2 -23 5 -3 12 +-1 16 4 3 6 13 8 23 5 10 -4 13 -3 6 3 -16 12 -24 42 -14 48 6 4 10 11 10 17 +0 7 -6 6 -15 -2 -8 -7 -15 -9 -15 -5 0 4 -7 2 -15 -5 -17 -14 -39 -4 -31 15 9 +26 -19 21 -47 -8z"/> +<path d="M3530 8641 c-8 -6 -17 -8 -21 -5 -4 2 -10 0 -13 -5 -12 -18 23 -19 +40 0 19 21 17 24 -6 10z"/> +<path d="M7770 8641 c-8 -6 -17 -8 -21 -5 -4 2 -10 0 -14 -6 -6 -10 9 -15 30 +-10 6 1 6 -2 2 -7 -5 -4 -27 -9 -49 -10 -49 -2 -57 -9 -34 -31 14 -14 17 -14 +14 -2 -2 9 2 16 7 16 6 0 9 -5 7 -12 -1 -6 5 -11 13 -11 8 0 14 7 13 16 -2 10 +5 16 17 16 11 0 20 7 20 15 0 8 4 21 8 28 10 14 7 15 -13 3z"/> +<path d="M7250 8636 c0 -2 8 -10 18 -17 15 -13 16 -12 3 4 -13 16 -21 21 -21 +13z"/> +<path d="M2877 8613 c-8 -15 -6 -73 4 -78 5 -4 9 0 10 7 0 7 2 26 3 41 2 28 +-8 45 -17 30z"/> +<path d="M3036 8608 c3 -4 11 -5 19 -1 21 7 19 12 -4 10 -11 0 -18 -5 -15 -9z"/> +<path d="M3306 8605 c-3 -8 -12 -12 -20 -9 -20 8 -29 -11 -11 -26 9 -8 15 -8 +15 -2 0 6 -6 12 -12 15 -7 3 -4 5 8 4 12 -1 21 -7 20 -15 -1 -8 6 -17 14 -20 +13 -4 13 -3 2 10 -9 11 -10 18 -2 23 6 3 7 11 4 17 -4 7 -2 8 5 4 6 -4 8 -12 +5 -18 -5 -8 -1 -9 10 -5 9 4 15 3 11 -2 -3 -5 1 -12 7 -15 7 -3 3 -3 -9 0 -18 +4 -22 2 -17 -10 3 -9 11 -13 17 -9 5 3 7 1 4 -4 -4 -6 -1 -13 6 -16 8 -3 12 4 +11 22 -1 14 -3 31 -3 37 -1 6 -12 16 -26 22 -32 15 -32 15 -39 -3z"/> +<path d="M7784 8599 c-10 -11 -23 -18 -30 -15 -6 2 -11 -3 -10 -12 0 -9 -5 +-16 -12 -14 -18 3 -10 -20 8 -26 8 -3 10 0 5 8 -5 9 -4 11 3 6 7 -4 17 -4 23 +0 8 5 8 9 -1 14 -9 5 -9 9 -1 14 6 4 11 3 11 -3 0 -6 7 -8 15 -5 13 5 13 9 3 +23 -10 13 -10 14 2 4 18 -17 27 -16 27 2 0 23 -24 25 -43 4z"/> +<path d="M7953 8613 c9 -15 -18 -24 -31 -11 -7 7 -18 3 -36 -15 -31 -32 -33 +-42 -5 -44 16 -2 18 1 9 12 -15 18 2 28 55 29 37 1 41 -1 39 -21 -1 -15 2 -20 +12 -16 11 4 12 9 3 19 -6 8 -7 14 -3 14 5 0 15 -9 22 -20 7 -12 17 -18 22 -15 +10 6 14 -7 11 -33 -2 -10 2 -10 18 0 12 7 21 18 21 24 0 14 -29 28 -49 25 -8 +-2 -10 2 -5 11 4 7 4 10 -1 6 -4 -4 -20 1 -34 11 -42 29 -55 35 -48 24z m118 +-70 c13 -16 12 -17 -3 -4 -10 7 -18 15 -18 17 0 8 8 3 21 -13z"/> +<path d="M7339 8591 c14 -26 6 -42 -17 -35 -16 5 -16 5 0 -6 9 -6 15 -17 12 +-24 -3 -9 0 -14 8 -12 19 3 55 25 41 26 -13 0 -14 40 0 40 4 0 5 5 2 10 -5 8 +-11 7 -21 -1 -12 -10 -14 -10 -12 1 2 7 -3 15 -10 17 -11 4 -12 1 -3 -16z m26 +-41 c-1 -11 -4 -22 -7 -25 -4 -5 -4 34 1 43 4 8 7 -1 6 -18z"/> +<path d="M2846 8593 c-4 -5 -12 -8 -17 -8 -5 0 -9 -3 -9 -7 0 -5 0 -11 0 -14 +0 -4 8 0 17 7 11 9 14 10 9 2 -5 -9 -2 -11 8 -7 8 3 12 12 9 20 -6 16 -7 17 +-17 7z"/> +<path d="M3136 8592 c-2 -4 -1 -14 4 -22 7 -11 9 -9 7 8 -1 24 -3 26 -11 14z"/> +<path d="M7446 8585 c-3 -8 -1 -17 5 -20 5 -4 7 -10 4 -15 -3 -5 8 -7 24 -5 +23 3 28 0 24 -11 -6 -16 17 -16 29 1 5 6 8 4 8 -4 0 -11 5 -9 22 5 12 10 18 +13 13 5 -5 -9 -4 -12 4 -10 7 3 13 9 14 14 2 12 -52 14 -60 2 -2 -4 -10 -4 +-16 2 -7 5 -16 10 -22 10 -29 3 -47 14 -35 21 8 5 8 10 2 14 -5 3 -12 -1 -16 +-9z"/> +<path d="M7585 8590 c-4 -6 -12 -8 -18 -4 -7 3 -3 -1 7 -10 10 -8 24 -17 30 +-19 16 -6 -13 -38 -32 -35 -8 2 -17 -4 -19 -12 -4 -13 -3 -13 6 0 9 13 11 13 +12 -2 1 -10 3 -22 4 -28 1 -5 3 -13 4 -17 1 -5 5 -1 11 7 5 9 5 19 -1 26 -7 9 +-5 16 9 23 11 6 22 7 26 4 10 -10 7 6 -5 29 -8 15 -8 19 0 14 6 -4 11 -2 11 3 +0 6 4 11 8 11 5 0 8 -13 8 -30 0 -16 -4 -30 -9 -30 -6 0 -8 -2 -5 -5 13 -13 +36 8 33 31 -2 20 0 22 12 12 11 -9 11 -13 1 -20 -8 -6 -4 -7 12 -3 16 4 20 3 +12 -3 -10 -7 -10 -11 3 -22 12 -10 15 -10 15 0 0 10 3 10 15 0 11 -9 15 -9 15 +-1 0 7 4 10 9 6 6 -3 14 3 20 12 6 11 11 13 11 5 0 -7 5 -10 11 -6 8 4 7 9 -2 +16 -10 6 -7 7 10 3 17 -5 22 -4 16 5 -5 9 -4 11 4 6 6 -4 9 -11 6 -16 -3 -4 1 +-10 9 -13 9 -4 12 0 9 13 -8 31 -34 32 -76 3 l-39 -27 -19 23 c-11 13 -19 21 +-19 17 0 -3 -16 6 -37 19 -34 24 -37 24 -55 8 -18 -16 -18 -16 -12 0 7 18 -1 +23 -11 7z"/> +<path d="M7900 8569 c-12 -7 -12 -9 -1 -9 8 0 11 -6 7 -16 -4 -10 -2 -13 7 -9 +6 4 3 -1 -7 -9 -11 -9 -16 -16 -10 -16 5 0 0 -8 -11 -16 -19 -15 -19 -15 9 +-11 17 2 32 9 34 17 3 8 0 10 -8 5 -7 -4 -4 4 5 19 13 19 21 24 30 16 9 -8 14 +-6 18 5 4 9 -2 19 -15 26 -11 6 -18 7 -14 1 3 -5 -1 -13 -10 -16 -8 -3 -12 -2 +-9 3 8 14 -9 21 -25 10z"/> +<path d="M2780 8552 c0 -4 9 -8 20 -9 11 -1 20 2 20 8 0 5 -9 9 -20 9 -11 0 +-20 -4 -20 -8z"/> +<path d="M2820 8529 c-7 -16 -10 -32 -7 -36 4 -3 2 -14 -3 -23 -7 -13 -5 -22 +7 -31 14 -12 16 -12 11 2 -3 9 -2 22 2 30 5 8 4 19 -2 26 -6 8 -8 16 -4 20 3 +3 6 0 6 -8 0 -12 2 -12 10 1 6 9 5 17 -3 22 -9 6 -9 8 0 8 6 0 19 -7 27 -16 9 +-8 21 -12 27 -8 8 4 9 3 5 -4 -4 -7 -3 -12 3 -12 5 0 12 4 15 9 9 13 42 6 38 +-9 -4 -18 31 -42 40 -27 5 8 8 7 8 -3 0 -13 1 -13 10 0 6 9 10 11 10 3 0 -7 7 +-10 16 -6 13 5 13 7 2 14 -9 6 -9 9 -1 9 7 0 17 -8 23 -17 10 -16 11 -15 6 5 +-4 22 -4 23 19 8 22 -15 24 -14 22 3 -1 16 -7 18 -37 15 -54 -7 -64 -9 -78 +-18 -19 -11 -35 3 -22 19 9 10 6 16 -9 25 -16 8 -21 8 -21 -2 0 -9 -3 -9 -12 +0 -7 7 -17 8 -29 1 -13 -7 -21 -5 -31 8 -20 28 -35 25 -48 -8z"/> +<path d="M3175 8550 c-2 -4 7 -12 21 -18 21 -10 23 -15 13 -33 -8 -16 -8 -20 +1 -14 9 6 9 2 1 -14 -10 -17 -9 -22 4 -27 8 -3 12 -11 8 -17 -4 -6 -1 -7 7 -2 +9 6 11 4 5 -5 -6 -10 -11 -9 -21 4 -6 9 -14 14 -17 9 -2 -4 4 -16 13 -26 18 +-18 19 -18 30 4 10 18 9 23 -4 31 -12 7 -14 14 -7 27 7 12 6 22 -1 29 -8 8 -7 +13 5 18 9 3 14 11 10 17 -3 6 -1 7 6 3 6 -4 9 -12 6 -17 -3 -5 1 -6 9 -3 9 3 +13 11 9 18 -3 6 3 3 14 -7 16 -14 22 -15 26 -5 3 10 9 9 24 -5 11 -9 23 -14 +26 -10 4 3 7 1 7 -5 0 -15 -17 -16 -26 -1 -4 8 -9 7 -15 -2 -6 -10 -12 -9 -28 +5 -12 11 -21 14 -21 9 0 -17 29 -36 45 -30 8 4 17 2 21 -4 4 -7 12 -5 22 5 10 +8 21 14 26 13 12 -2 17 31 6 38 -4 3 -11 -2 -14 -10 -5 -14 -12 -12 -49 9 -28 +15 -49 21 -58 16 -7 -5 -18 -5 -25 1 -8 6 -14 5 -17 -6 -4 -8 -13 -12 -22 -9 +-8 3 -13 9 -10 13 2 4 -3 8 -11 8 -8 0 -17 -3 -19 -7z"/> +<path d="M2750 8541 c0 -5 7 -11 14 -14 10 -4 13 -1 9 9 -6 15 -23 19 -23 5z"/> +<path d="M8010 8539 c0 -5 -4 -8 -8 -5 -4 2 -14 1 -22 -4 -9 -5 -19 -5 -27 2 +-11 8 -12 7 -7 -7 6 -14 4 -16 -6 -10 -9 5 -11 4 -6 -4 4 -6 12 -8 18 -5 6 4 +8 2 5 -3 -4 -6 0 -14 9 -17 12 -5 14 -1 9 17 -5 17 -4 19 4 7 9 -13 15 -8 12 +12 0 3 7 5 17 3 10 -1 16 -10 15 -22 -1 -11 4 -20 11 -20 20 0 14 43 -6 56 +-13 8 -18 8 -18 0z"/> +<path d="M2786 8525 c-3 -8 -1 -17 3 -20 5 -3 11 2 15 10 3 8 1 17 -3 20 -5 3 +-11 -2 -15 -10z"/> +<path d="M7453 8528 c-13 -6 -23 -15 -23 -20 0 -13 12 -10 33 10 11 9 17 11 +12 3 -4 -8 -2 -17 6 -22 11 -6 10 -12 -5 -28 -22 -24 -15 -28 8 -5 9 8 16 11 +16 4 0 -7 5 -6 14 2 14 13 11 32 -4 23 -5 -3 -11 -1 -14 4 -8 13 22 7 36 -7 +21 -21 40 -14 21 6 -10 11 -26 18 -36 16 -10 -2 -21 3 -24 11 -6 17 -10 18 +-40 3z"/> +<path d="M7862 8515 c-6 -14 -16 -25 -22 -25 -7 0 -6 -6 2 -14 7 -8 18 -11 23 +-8 6 2 4 -1 -2 -9 -21 -22 -15 -34 7 -14 18 16 19 20 6 27 -8 5 -13 15 -10 23 +4 8 10 13 14 10 5 -3 7 2 6 10 -4 26 -12 26 -24 0z"/> +<path d="M8095 8521 c-3 -12 -10 -19 -15 -16 -10 6 -35 -34 -26 -42 3 -4 1 +-12 -5 -19 -11 -14 -4 -34 12 -34 6 0 7 5 4 10 -4 6 -1 17 5 25 9 11 9 15 1 +15 -6 0 -11 5 -11 11 0 5 5 7 12 3 6 -4 9 -3 6 2 -3 5 3 17 14 27 10 9 18 13 +18 8 0 -6 -4 -13 -10 -16 -5 -3 -10 -10 -10 -16 0 -5 9 -4 19 3 11 7 17 16 14 +22 -3 5 -1 6 5 3 5 -4 8 -17 5 -30 -5 -22 -5 -22 10 -2 15 20 15 20 38 0 15 +-14 21 -16 17 -5 -2 8 -22 24 -44 35 -21 11 -42 24 -45 29 -4 5 -10 -1 -14 +-13z"/> +<path d="M2704 8518 c-3 -5 -17 -13 -30 -18 -13 -5 -24 -15 -24 -22 0 -9 3 -9 +12 0 16 16 28 15 28 -3 0 -12 3 -12 18 3 11 10 15 21 11 28 -5 6 -3 11 6 11 8 +0 11 -5 8 -10 -4 -6 0 -8 10 -4 18 7 33 -10 29 -34 -1 -8 7 -24 18 -34 11 -10 +20 -13 20 -7 0 6 -5 14 -10 17 -6 4 -7 11 -4 17 4 7 2 8 -4 4 -7 -4 -12 -2 +-12 3 0 6 7 11 16 11 12 0 9 6 -11 21 -30 24 -71 33 -81 17z"/> +<path d="M7806 8523 c-4 -5 -11 -8 -14 -8 -4 -1 -16 -5 -27 -11 -27 -13 -49 +-11 -69 5 -21 18 -31 8 -17 -16 8 -14 11 -15 11 -3 0 12 3 11 11 -2 11 -20 34 +-25 24 -5 -4 6 1 3 9 -7 15 -18 20 -15 17 9 -1 6 5 2 13 -8 12 -16 14 -16 20 +-1 3 9 4 20 1 25 -4 5 0 6 8 3 8 -3 18 0 22 6 5 8 11 8 21 -1 8 -7 14 -7 14 +-1 0 5 -7 13 -16 16 -20 8 -19 8 -28 -1z"/> +<path d="M2854 8511 c4 -6 3 -11 -2 -11 -5 0 -9 -7 -9 -15 0 -8 4 -12 9 -9 4 +3 8 0 8 -7 0 -7 7 -4 16 7 8 10 13 14 10 7 -4 -6 -2 -14 4 -18 5 -3 10 -2 10 +3 0 7 20 8 50 3 2 -1 -1 -6 -8 -13 -21 -21 -13 -32 10 -12 19 15 20 16 9 2 -8 +-11 -9 -18 -3 -18 23 0 24 24 2 40 -13 9 -20 22 -16 28 7 12 -12 11 -32 -2 -8 +-4 -23 -1 -39 9 -14 9 -22 12 -19 6z"/> +<path d="M7615 8510 c6 -10 4 -12 -9 -7 -12 5 -15 3 -9 -6 22 -35 8 -54 -25 +-33 -22 13 -23 0 -2 -19 11 -10 20 -14 20 -8 0 5 6 10 13 10 9 0 13 -10 11 +-29 -3 -25 -2 -27 16 -16 14 9 16 15 7 21 -9 7 -9 10 1 14 9 3 7 9 -6 21 -10 +10 -16 16 -14 15 3 -1 12 2 22 7 14 7 23 2 44 -28 17 -24 26 -31 26 -19 0 21 +13 22 30 2 18 -21 35 -19 19 3 -13 15 -12 16 3 3 15 -11 19 -11 24 3 3 9 10 +13 15 10 5 -3 6 3 3 13 -5 15 -4 16 5 3 8 -11 7 -18 -6 -27 -21 -16 -12 -17 +21 -2 21 10 23 14 11 26 -8 7 -12 21 -9 31 3 10 -6 4 -23 -14 -29 -31 -70 -37 +-97 -15 -7 6 -15 8 -19 5 -3 -3 -10 4 -17 15 -9 18 -14 19 -32 10 -13 -7 -18 +-7 -14 -1 3 6 1 14 -5 18 -8 5 -9 3 -4 -6z"/> +<path d="M8002 8505 c-7 -8 -9 -15 -5 -15 4 0 1 -4 -6 -9 -9 -6 -22 -6 -33 0 +-10 6 -23 7 -28 4 -21 -13 1 -22 44 -20 25 1 43 -2 40 -7 -3 -4 1 -8 8 -8 10 +0 10 -2 0 -8 -9 -6 -7 -14 8 -30 13 -14 16 -22 8 -22 -9 0 -9 -3 2 -10 19 -12 +33 -13 25 -1 -3 5 0 13 6 17 6 3 14 2 18 -4 4 -7 11 -4 19 9 11 17 10 20 -4 +17 -9 -2 -19 3 -22 11 -3 10 0 12 12 8 9 -4 14 -3 11 2 -3 5 0 13 6 17 7 4 9 +3 6 -3 -4 -6 0 -13 8 -17 8 -3 17 -1 20 5 4 5 11 6 17 3 7 -5 8 -2 4 5 -5 7 +-14 10 -22 7 -8 -3 -17 1 -21 9 -4 11 -9 13 -18 5 -6 -5 -16 -6 -20 -2 -5 4 +-5 2 -1 -5 3 -6 1 -15 -5 -18 -5 -4 -8 -13 -5 -21 8 -21 -14 -28 -32 -11 -11 +12 -12 19 -4 29 11 14 2 40 -14 39 -5 -1 -8 8 -7 19 3 24 2 24 -15 5z"/> +<path d="M3239 8497 c7 -7 7 -17 0 -31 -9 -20 -9 -20 4 -3 11 14 16 15 20 5 4 +-10 6 -10 6 0 1 6 6 12 12 12 5 0 8 -4 4 -9 -3 -6 3 -14 13 -20 14 -8 19 -6 +19 5 0 7 -2 12 -5 9 -2 -2 -12 5 -22 17 -9 12 -27 22 -39 23 -14 1 -18 -2 -12 +-8z"/> +<path d="M2730 8483 c-14 -8 -18 -12 -9 -9 9 2 21 0 26 -5 7 -7 12 -5 16 5 9 +22 -5 26 -33 9z"/> +<path d="M2630 8471 c0 -6 -3 -10 -7 -9 -14 4 -113 -47 -118 -60 -3 -7 0 -22 +5 -32 7 -13 7 -21 0 -25 -5 -3 -10 -11 -10 -16 0 -6 7 -3 16 6 11 11 20 13 26 +7 13 -13 1 -33 -16 -26 -7 3 -13 -2 -13 -11 0 -19 7 -19 35 1 12 8 20 20 17 +25 -3 5 1 6 10 3 11 -5 14 -2 9 10 -3 9 -10 13 -15 10 -16 -10 -49 15 -42 33 +5 12 3 14 -7 8 -8 -5 -11 -4 -6 3 8 13 36 5 36 -10 0 -6 6 -5 15 2 8 7 15 17 +15 22 0 7 -5 7 -13 0 -9 -8 -17 -8 -27 0 -12 8 -12 9 2 4 10 -3 20 -1 23 5 4 +5 11 6 17 3 7 -5 8 -2 3 7 -7 12 -6 12 8 1 13 -12 18 -10 29 7 7 12 16 21 21 +21 4 0 6 -4 3 -9 -3 -5 1 -11 9 -15 8 -3 14 -1 12 3 -1 5 2 8 8 8 5 -1 8 -9 7 +-16 -3 -12 -1 -12 11 -3 7 6 18 8 22 4 5 -4 5 -2 2 5 -6 10 11 11 33 3 3 -1 8 +-2 13 -1 7 1 11 -15 8 -32 -1 -4 10 -5 24 -3 22 4 24 2 15 -13 -5 -10 -6 -21 +-3 -25 11 -10 20 -7 21 9 1 8 3 22 4 30 1 8 5 15 10 15 4 0 8 5 8 11 0 6 -9 4 +-21 -5 -20 -14 -25 -13 -58 14 -19 16 -38 26 -41 22 -9 -12 -40 -8 -49 7 -6 +10 -10 10 -16 2 -5 -9 -10 -9 -21 0 -10 8 -14 8 -14 0z m-15 -21 c-3 -5 -12 +-10 -18 -10 -7 0 -6 4 3 10 19 12 23 12 15 0z"/> +<path d="M3084 8473 c7 -13 -3 -17 -36 -14 -10 1 -18 -3 -18 -9 0 -6 4 -9 9 +-5 5 3 12 1 16 -5 3 -6 14 -7 23 -2 24 11 47 9 66 -7 9 -8 16 -9 16 -3 0 6 -9 +17 -20 25 -11 8 -17 18 -12 23 4 4 0 3 -9 -4 -12 -9 -18 -9 -29 1 -10 9 -11 9 +-6 0z"/> +<path d="M3157 8466 c-3 -7 -1 -18 5 -24 8 -8 8 -15 -1 -26 -9 -11 -9 -15 1 +-18 8 -3 6 -7 -6 -11 -10 -4 -15 -3 -11 3 3 6 2 10 -4 10 -14 0 -23 -17 -13 +-24 5 -3 18 -2 31 1 15 4 20 11 16 23 -3 10 0 24 7 32 14 14 25 49 12 36 -4 +-4 -13 -3 -19 2 -9 7 -14 6 -18 -4z"/> +<path d="M7525 8471 c-3 -5 -1 -13 5 -16 8 -5 8 -11 0 -20 -12 -14 5 -33 36 +-38 10 -2 34 -13 53 -25 33 -20 51 -21 51 -1 0 5 -3 8 -7 8 -22 -4 -33 2 -27 +14 5 8 2 8 -9 -2 -17 -13 -19 -11 -21 19 -1 8 -7 14 -13 13 -7 -2 -23 11 -37 +27 -13 17 -27 26 -31 21z m45 -46 c7 -9 10 -18 6 -22 -3 -3 -6 -1 -6 5 0 7 -5 +11 -11 10 -6 -2 -14 3 -16 10 -6 17 12 15 27 -3z"/> +<path d="M7653 8430 c0 -43 2 -48 12 -33 10 13 16 15 27 6 8 -7 19 -8 27 -3 8 +4 21 6 30 2 13 -4 12 -1 -3 16 -19 22 -32 30 -22 13 4 -5 0 -11 -6 -14 -18 -5 +-48 4 -48 15 0 5 6 6 13 2 6 -4 3 3 -8 17 -11 13 -20 25 -21 27 -1 1 -1 -20 +-1 -48z"/> +<path d="M7881 8448 c-18 -23 -26 -26 -37 -17 -9 7 -14 8 -14 1 0 -6 -11 -9 +-25 -8 -17 2 -29 -4 -40 -20 -9 -13 -11 -24 -5 -24 5 0 10 4 10 8 0 5 7 9 15 +10 8 1 22 3 30 4 8 1 15 5 15 10 0 4 5 8 11 8 5 0 7 -4 4 -10 -3 -5 -2 -10 4 +-10 5 0 13 5 16 10 4 6 11 8 16 5 5 -3 6 1 3 9 -3 9 -1 17 5 17 39 5 46 2 45 +-14 -1 -10 3 -16 10 -14 6 2 10 11 10 20 -1 9 2 14 7 11 5 -3 9 0 9 6 0 7 -8 +9 -19 5 -10 -3 -25 0 -32 8 -12 11 -18 9 -38 -15z"/> +<path d="M8163 8466 c8 -8 13 -26 12 -39 -2 -20 2 -24 24 -24 16 0 28 6 29 14 +1 7 3 20 4 29 1 15 3 15 14 -1 8 -10 10 -23 6 -29 -11 -16 -8 -49 4 -53 7 -2 +11 11 10 36 -2 32 1 38 11 29 16 -13 17 -32 1 -22 -7 4 -8 3 -4 -5 4 -6 12 -9 +17 -6 5 4 9 0 9 -7 0 -9 3 -9 10 2 7 10 12 12 18 4 4 -6 15 -10 25 -8 9 1 14 +-2 11 -7 -3 -5 -2 -9 3 -8 20 3 25 -2 13 -16 -7 -8 -8 -15 -3 -15 5 0 9 -9 10 +-20 1 -11 -4 -20 -10 -20 -7 0 -6 -4 3 -9 20 -14 32 -3 20 18 -5 10 -7 21 -3 +24 14 15 -9 57 -35 64 -15 3 -33 12 -40 20 -8 7 -18 11 -23 8 -5 -4 -9 -2 -9 +2 0 11 -60 47 -60 36 0 -4 -5 -1 -10 7 -8 13 -10 12 -10 -2 0 -22 -13 -23 -30 +-3 -7 8 -17 15 -22 15 -5 0 -3 -6 5 -14z m51 -31 c-7 -16 -24 -21 -24 -6 0 8 +7 13 27 20 1 1 0 -6 -3 -14z"/> +<path d="M2915 8461 c-10 -4 -35 -6 -55 -4 -32 4 -33 3 -16 -10 18 -13 18 -15 +1 -48 -10 -19 -14 -30 -9 -26 4 4 14 -3 21 -15 7 -13 12 -17 13 -10 0 6 5 12 +10 12 6 0 3 -11 -6 -25 -13 -19 -20 -23 -30 -14 -10 8 -13 6 -11 -10 2 -35 14 +-28 81 50 15 18 14 18 -21 16 -25 -1 -38 3 -40 13 -4 12 -3 12 5 1 8 -11 10 +-11 15 0 4 11 7 11 14 2 6 -9 12 -7 21 7 11 18 9 19 -18 16 -26 -3 -28 -1 -19 +15 5 11 12 19 15 19 3 0 3 -4 -1 -9 -12 -20 11 -16 34 6 26 25 26 25 -4 14z"/> +<path d="M2976 8433 c-14 -20 -20 -22 -27 -12 -5 8 -9 10 -9 5 0 -5 -8 -2 -17 +5 -16 13 -17 12 -5 -3 10 -12 10 -18 1 -23 -8 -6 -7 -10 4 -17 9 -5 14 -15 11 +-23 -4 -8 -9 -13 -14 -10 -4 2 -12 -6 -18 -20 -21 -46 -72 -65 -111 -41 -9 6 +-12 5 -9 -5 3 -8 13 -14 24 -14 12 0 18 -7 16 -16 -1 -9 5 -16 13 -16 9 0 14 +6 11 14 -7 16 47 45 69 37 17 -7 18 16 0 28 -5 4 -6 10 -2 15 5 4 13 1 18 -7 +9 -13 10 -12 6 2 -3 9 0 22 8 28 16 13 9 43 -8 33 -6 -3 -7 -1 -3 5 3 6 16 9 +28 7 11 -3 28 0 37 5 10 6 11 10 4 10 -18 0 -16 17 1 17 8 0 13 -8 11 -19 -4 +-18 9 -25 19 -10 6 9 -16 47 -29 49 -5 0 -18 -10 -29 -24z"/> +<path d="M7967 8428 c-18 -32 -44 -33 -39 -2 2 15 1 16 -7 4 -5 -8 -8 -17 -6 +-20 2 -4 -6 -6 -18 -5 -12 2 -29 -6 -37 -17 -16 -19 -56 -16 -44 4 3 5 -9 2 +-27 -7 -31 -17 -33 -16 -46 1 -13 18 -14 17 -11 -8 4 -27 18 -51 18 -31 0 6 6 +13 14 16 9 4 12 -2 10 -18 -2 -25 16 -38 41 -29 14 6 17 1 19 -38 1 -26 21 +-21 21 5 0 14 5 21 16 19 9 -1 16 5 16 13 0 18 -2 18 -27 5 -21 -12 -43 8 -31 +29 6 10 10 9 14 -3 4 -9 12 -16 19 -16 11 0 11 2 0 8 -10 7 -10 14 3 38 8 16 +15 23 15 15 0 -10 3 -11 13 -2 8 6 17 7 21 3 11 -10 30 -9 38 3 5 6 8 4 8 -5 +0 -13 1 -13 10 0 7 11 10 11 10 2 0 -10 5 -10 23 -1 12 6 19 8 15 4 -10 -11 +11 -47 23 -40 5 4 8 1 7 -6 -2 -6 3 -14 10 -16 7 -3 11 1 10 9 -2 7 5 13 16 +13 11 0 21 6 24 13 2 6 8 10 13 7 5 -4 6 2 3 12 -5 15 -4 15 4 3 6 -8 8 -18 6 +-22 -3 -4 -1 -8 5 -8 15 0 21 14 11 30 -5 8 -4 22 2 34 10 18 9 19 -4 9 -8 -7 +-18 -9 -22 -5 -4 4 -6 3 -5 -3 2 -5 -3 -20 -10 -33 -11 -20 -15 -21 -29 -10 +-10 8 -13 9 -9 1 4 -6 3 -14 -3 -18 -11 -7 -55 14 -46 22 3 3 0 15 -6 27 -7 +11 -11 24 -10 28 1 3 -4 8 -11 11 -7 3 -21 -9 -30 -25z m38 -16 c-3 -3 -15 -6 +-27 -7 -18 -2 -19 -1 -5 10 9 7 13 16 9 21 -4 4 1 2 11 -5 9 -8 15 -16 12 -19z +m-191 -40 c7 -12 -12 -38 -21 -28 -4 5 -2 11 6 14 11 4 11 6 0 13 -9 6 -10 9 +-2 9 6 0 14 -4 17 -8z"/> +<path d="M2620 8425 c-7 -9 -15 -13 -18 -11 -2 3 -13 -6 -24 -19 -12 -15 -25 +-22 -36 -19 -14 5 -14 3 2 -6 14 -9 20 -9 25 -1 5 7 12 3 19 -13 10 -22 7 -27 +-27 -50 -24 -17 -45 -24 -57 -21 -17 6 -17 6 -2 -5 13 -8 23 -8 38 0 11 6 26 +8 32 4 8 -5 9 -2 5 10 -4 9 -3 15 2 11 5 -3 12 1 15 7 3 7 4 4 1 -8 -4 -14 0 +-21 10 -21 10 0 14 6 10 16 -4 9 -8 24 -11 35 -2 10 -6 21 -9 24 -2 3 0 11 6 +19 9 10 8 13 -2 13 -8 1 -2 8 14 16 15 8 27 19 27 24 0 14 -6 12 -20 -5z"/> +<path d="M2725 8422 c-5 -13 -8 -14 -14 -3 -6 9 -11 10 -15 2 -5 -7 -13 -8 +-24 -2 -12 6 -24 4 -41 -10 -13 -10 -20 -19 -16 -19 4 0 3 -6 -3 -13 -12 -14 +2 -46 15 -34 4 5 2 12 -6 16 -10 6 -9 10 4 15 9 3 13 10 10 16 -3 5 -1 10 4 +10 6 0 11 -5 11 -12 0 -6 7 -3 16 8 8 10 13 13 9 7 -7 -15 11 -18 20 -4 6 11 +33 7 67 -9 21 -10 21 -10 5 3 -10 9 -13 17 -7 19 5 1 2 8 -9 15 -16 10 -20 9 +-26 -5z"/> +<path d="M3043 8429 c3 -8 -2 -25 -12 -37 -12 -16 -19 -19 -31 -11 -12 9 -11 +10 5 4 16 -5 17 -4 8 6 -9 9 -15 9 -27 0 -8 -6 -16 -8 -18 -4 -3 4 -3 3 -2 -4 +2 -6 -3 -17 -11 -23 -15 -12 -9 -44 6 -34 5 3 6 10 3 16 -4 6 -1 14 6 18 16 +10 40 2 40 -12 0 -6 -6 -6 -14 1 -9 7 -17 8 -20 3 -3 -6 1 -12 9 -16 9 -3 12 +-12 8 -22 -5 -13 -3 -15 7 -9 9 5 11 4 6 -4 -4 -6 -12 -9 -17 -6 -5 4 -9 1 -9 +-5 0 -6 -5 -8 -11 -4 -8 4 -7 9 2 15 8 5 12 9 9 10 -3 0 -13 2 -22 4 -10 2 +-20 -1 -24 -6 -3 -5 1 -9 8 -9 9 0 9 -3 -2 -10 -8 -5 -22 -7 -31 -4 -9 2 -24 +-2 -32 -10 -8 -8 -18 -12 -22 -8 -5 4 -5 1 -1 -5 4 -7 2 -21 -3 -30 -8 -14 +-10 -15 -11 -3 0 12 -2 12 -9 2 -7 -11 -10 -10 -15 3 -3 9 -3 22 1 27 3 7 1 8 +-6 4 -6 -4 -19 -2 -27 5 -24 20 -55 22 -47 4 4 -13 8 -13 22 -3 14 11 14 11 3 +-3 -10 -14 -10 -18 2 -22 8 -3 16 -1 18 5 2 6 10 3 17 -6 12 -14 12 -16 -3 +-10 -28 11 -17 -3 19 -25 21 -12 34 -15 32 -8 -1 7 8 11 23 10 22 -2 23 -1 7 +8 -16 10 -16 11 0 34 18 24 41 36 27 13 -4 -6 -3 -8 4 -4 6 3 14 1 18 -5 5 -8 +3 -9 -6 -4 -8 5 -11 3 -9 -4 6 -17 24 -9 22 9 -3 23 20 31 38 14 16 -14 19 +-13 34 10 9 14 14 30 10 35 -5 9 30 91 39 91 1 0 2 -10 1 -22 -1 -13 5 -28 14 +-35 11 -8 12 -12 4 -13 -19 0 -28 4 -25 13 1 4 -2 7 -8 7 -14 0 -12 -23 3 -39 +10 -11 10 -13 0 -7 -8 5 -13 1 -13 -11 0 -14 7 -11 33 15 25 25 29 34 18 41 +-9 6 -10 11 -2 15 6 4 11 13 11 19 0 7 -4 6 -10 -3 -7 -12 -9 -10 -7 8 2 28 +14 28 22 1 4 -12 10 -17 14 -12 3 5 14 14 24 20 17 9 17 10 1 24 -16 12 -17 +12 -12 -2 4 -9 1 -16 -7 -16 -8 0 -14 3 -13 6 2 18 -4 21 -23 10 -17 -9 -24 +-8 -31 2 -8 11 -9 11 -5 -2z"/> +<path d="M7895 8430 c-3 -5 -1 -10 4 -10 6 0 11 5 11 10 0 6 -2 10 -4 10 -3 0 +-8 -4 -11 -10z"/> +<path d="M8157 8414 c-3 -4 -1 -16 4 -27 13 -23 -5 -40 -33 -31 -9 2 -19 0 +-22 -5 -4 -6 -14 -7 -23 -4 -15 6 -16 5 -3 -9 11 -11 17 -12 22 -4 6 8 8 7 8 +-2 0 -7 5 -10 10 -7 6 4 7 11 4 17 -4 6 2 6 15 -1 25 -14 25 -15 5 -35 -8 -9 +-11 -16 -5 -16 5 0 13 5 16 10 4 7 12 7 25 0 25 -13 26 -13 27 11 2 16 -1 18 +-12 9 -11 -9 -16 -7 -25 11 -9 15 -9 19 -1 14 7 -3 10 -1 9 6 -2 7 6 12 20 12 +34 -1 35 -2 22 -17 -9 -12 -8 -15 9 -13 11 0 17 6 15 12 -3 5 1 2 8 -7 8 -9 +18 -14 24 -10 13 10 16 32 4 32 -5 0 -10 -5 -10 -10 0 -6 -8 -5 -20 2 -13 8 +-18 20 -15 33 3 11 2 14 -1 7 -5 -10 -9 -10 -20 -1 -11 9 -18 9 -29 -1 -15 +-12 -20 -4 -16 23 1 9 -4 9 -12 1z"/> +<path d="M2476 8391 c-4 -6 -11 -9 -16 -6 -16 10 -25 -20 -26 -95 -1 -69 5 +-89 29 -90 4 0 6 6 5 13 -2 6 3 11 10 10 6 -2 12 2 12 7 0 14 -23 13 -37 -1 +-9 -9 -11 -7 -9 6 3 19 34 41 43 31 4 -3 0 -6 -8 -6 -11 0 -11 -2 1 -10 21 +-14 33 -12 23 3 -4 6 6 4 21 -7 24 -15 28 -16 23 -3 -3 9 -1 19 5 23 6 4 8 3 +5 -3 -4 -6 14 -9 46 -7 68 2 69 2 62 14 -3 5 -11 8 -18 6 -7 -1 -8 -1 -4 2 4 +2 3 10 -4 18 -10 12 -8 13 7 8 18 -5 18 -4 -1 12 -17 14 -17 16 -2 11 17 -6 +24 7 9 17 -10 6 -43 -19 -36 -27 11 -10 13 -57 3 -57 -5 0 -9 4 -9 8 0 5 -7 9 +-15 9 -8 0 -12 -4 -9 -9 3 -4 1 -8 -5 -8 -5 0 -11 5 -13 11 -3 9 -10 9 -27 0 +-18 -10 -27 -10 -45 2 -14 10 -28 12 -37 6 -11 -5 -16 -4 -16 5 0 7 10 12 22 +10 20 -2 60 14 43 17 -25 5 -34 4 -40 -5 -4 -6 -10 -7 -15 -3 -4 5 -1 13 7 18 +12 9 11 10 -5 5 -19 -6 -19 -5 -2 8 12 9 14 16 8 21 -6 3 -11 12 -11 18 0 8 3 +7 9 -2 7 -11 9 -11 13 0 3 8 9 10 14 6 5 -4 4 -11 -2 -15 -10 -7 -13 -27 -4 +-36 3 -3 11 3 17 13 8 13 8 23 -2 40 -8 16 -15 20 -19 12z"/> +<path d="M2694 8390 c-8 -8 -26 -13 -64 -19 -2 -1 7 -9 20 -18 29 -20 64 -28 +55 -13 -4 6 -2 16 4 23 12 16 -1 41 -15 27z m-4 -30 c-6 -11 -16 -17 -22 -14 +-7 5 -5 12 7 21 25 18 28 17 15 -7z"/> +<path d="M2724 8388 c3 -10 2 -20 -3 -22 -11 -7 -11 -105 0 -111 4 -3 7 19 6 +49 -2 32 1 57 7 59 17 6 37 -4 30 -15 -4 -7 -9 -6 -14 2 -6 10 -7 -43 -1 -58 +1 -1 10 2 20 8 13 6 22 7 26 0 3 -5 12 -7 20 -4 23 9 8 23 -20 19 -28 -3 -44 +12 -22 21 7 2 14 10 14 17 0 7 4 21 8 32 6 18 5 18 -5 2 -9 -13 -15 -15 -31 +-7 -10 6 -19 7 -19 3 0 -4 -5 -1 -11 7 -9 13 -10 12 -5 -2z"/> +<path d="M7670 8389 c0 -5 5 -7 12 -3 8 5 9 2 5 -9 -4 -10 3 -23 18 -35 13 +-11 21 -23 17 -27 -4 -5 -2 -5 5 -1 6 3 14 2 18 -4 11 -17 24 -11 22 10 -1 11 +-5 20 -10 20 -5 0 -6 -8 -3 -17 5 -15 3 -14 -10 2 -8 11 -20 19 -25 18 -14 -4 +-11 15 4 20 9 4 9 6 -1 6 -7 1 -10 6 -6 13 4 6 3 8 -4 4 -6 -3 -13 -2 -17 4 +-8 13 -25 13 -25 -1z"/> +<path d="M7830 8390 c0 -5 5 -10 11 -10 5 0 7 5 4 10 -3 6 -8 10 -11 10 -2 0 +-4 -4 -4 -10z"/> +<path d="M7881 8371 l-24 -19 21 -11 c24 -13 43 -15 23 -2 -10 7 -11 13 -2 27 +8 15 11 16 12 4 1 -8 1 -18 0 -22 0 -5 5 -8 12 -8 7 0 13 10 14 21 1 12 -1 19 +-4 15 -3 -3 -11 -2 -17 3 -7 6 -20 3 -35 -8z"/> +<path d="M7949 8366 c-1 -6 -2 -19 -2 -29 0 -11 -5 -16 -13 -13 -17 6 -46 -3 +-40 -13 3 -4 0 -13 -5 -21 -8 -13 -10 -13 -18 -1 -6 9 -8 3 -7 -19 1 -23 9 +-36 26 -46 32 -17 40 -17 40 1 0 8 -5 15 -11 15 -5 0 -7 -5 -3 -12 4 -7 3 -8 +-5 -4 -6 4 -8 12 -5 18 4 6 -2 8 -17 4 -13 -3 -18 -3 -11 0 6 3 10 9 8 13 -3 +4 7 20 20 37 17 18 20 21 11 5 -9 -13 -13 -30 -10 -37 6 -17 26 -19 20 -1 -2 +6 0 20 5 30 8 15 12 16 25 6 12 -11 14 -10 11 7 -1 10 -7 22 -13 26 -6 5 -4 8 +5 8 9 0 16 8 17 18 2 19 -26 27 -28 8z"/> +<path d="M7989 8373 c0 -5 -2 -16 -4 -26 -2 -11 -1 -16 2 -13 4 3 12 1 20 -5 +9 -9 13 -8 13 0 0 8 4 8 14 -1 8 -8 10 -15 4 -19 -5 -3 -2 -9 8 -13 28 -11 26 +-1 -8 42 -32 39 -47 50 -49 35z m26 -23 c3 -6 -1 -7 -9 -4 -18 7 -21 14 -7 14 +6 0 13 -4 16 -10z"/> +<path d="M8283 8369 c10 -6 14 -15 10 -22 -5 -9 -3 -9 8 -1 15 12 48 15 47 5 +-2 -19 3 -33 10 -27 4 4 7 11 7 14 0 4 4 13 8 19 6 9 3 11 -7 7 -9 -3 -16 -2 +-16 3 0 5 -19 9 -42 10 -33 1 -39 -1 -25 -8z"/> +<path d="M2794 8345 c2 -17 16 -33 16 -18 0 13 33 13 42 -1 5 -6 8 -7 8 -1 0 +6 -5 17 -10 25 -8 12 -11 13 -19 1 -6 -9 -11 -10 -15 -2 -10 16 -25 14 -22 -4z"/> +<path d="M8184 8338 c0 -16 2 -16 18 -1 10 9 18 17 18 17 0 1 -8 2 -18 2 -10 +0 -18 -8 -18 -18z"/> +<path d="M8312 8320 c0 -21 3 -28 11 -23 8 4 7 1 -1 -9 -9 -11 -10 -18 -2 -23 +5 -3 10 1 11 9 3 54 2 70 -7 73 -6 2 -11 -10 -12 -27z"/> +<path d="M2675 8322 c-16 -11 -12 -48 4 -44 12 3 12 0 2 -12 -7 -9 -8 -17 -2 +-20 5 -3 11 0 14 6 3 8 9 3 14 -11 5 -14 12 -20 16 -14 3 5 -7 24 -24 42 -25 +28 -26 31 -8 26 18 -6 20 -5 10 14 -13 24 -12 23 -26 13z"/> +<path d="M7980 8320 c-8 -6 -12 -10 -7 -11 4 -1 12 -3 17 -4 6 -1 14 -3 18 -4 +5 0 14 -13 21 -28 7 -15 15 -23 19 -17 4 5 13 10 20 12 10 2 10 -2 2 -19 -9 +-16 -14 -18 -25 -9 -11 9 -14 7 -12 -9 2 -28 12 -26 43 4 22 22 24 28 13 42 +-8 9 -15 11 -17 4 -2 -7 -12 -5 -28 5 -13 9 -21 21 -17 28 3 6 3 8 -2 4 -4 -4 +-13 -4 -19 2 -7 5 -17 5 -26 0z"/> +<path d="M8071 8318 c-1 -10 2 -18 7 -18 4 0 13 -9 19 -19 10 -16 8 -24 -10 +-47 -19 -24 -19 -27 -3 -21 10 4 20 7 22 7 3 0 2 5 -2 12 -4 7 -3 8 5 4 6 -4 +9 -12 6 -17 -8 -12 -1 -11 29 2 14 7 23 16 19 22 -4 6 -1 7 6 3 8 -5 11 -3 9 +7 -2 9 2 16 7 16 6 0 9 -6 7 -13 -1 -7 5 -13 13 -13 8 0 14 7 13 16 -2 9 4 16 +16 16 11 0 21 6 24 14 3 10 0 11 -9 5 -22 -14 -90 -15 -82 -1 4 7 -1 6 -11 -2 +-24 -20 -43 0 -21 23 9 9 12 16 6 16 -5 0 -13 -5 -16 -10 -4 -6 -11 -8 -16 -5 +-12 8 -11 -1 2 -28 9 -19 8 -20 -3 -5 -7 9 -18 25 -25 35 -11 17 -12 17 -12 1z +m78 -69 c-5 -11 -16 -16 -24 -13 -27 11 -13 31 22 31 8 0 9 -6 2 -18z"/> +<path d="M8221 8316 c-9 -10 -8 -15 3 -19 9 -4 18 -2 20 2 3 5 17 7 30 6 14 +-2 27 3 30 11 6 16 -3 18 -23 5 -9 -6 -22 -6 -32 -1 -11 7 -21 5 -28 -4z"/> +<path d="M7947 8284 c5 -13 3 -15 -7 -9 -9 5 -11 4 -6 -4 4 -6 12 -8 18 -5 6 +4 8 2 5 -3 -4 -6 0 -14 9 -17 12 -5 14 -1 10 17 -3 12 -3 16 0 9 4 -10 9 -10 +20 -2 10 9 12 8 9 -9 -2 -14 1 -18 11 -14 10 4 11 10 4 23 -12 22 -30 35 -30 +21 0 -10 -19 -9 -37 2 -9 6 -11 3 -6 -9z"/> +<path d="M8264 8279 c-10 -11 -23 -18 -30 -15 -6 2 -11 -3 -10 -12 0 -9 -5 +-16 -12 -14 -18 3 -10 -20 8 -26 7 -3 10 0 7 5 -3 5 3 17 14 26 10 9 19 12 19 +7 0 -5 7 -7 15 -4 13 5 13 9 3 22 -12 14 -11 14 9 1 l23 -14 -21 -11 c-20 -10 +-20 -12 -4 -18 10 -3 20 -4 23 -1 3 3 2 5 -3 5 -4 0 -2 6 4 14 8 10 9 16 1 21 +-6 3 -8 10 -5 15 11 18 -24 17 -41 -1z"/> +<path d="M8335 8261 c-3 -12 -11 -21 -16 -21 -6 0 -8 -4 -4 -9 10 -18 -16 -23 +-39 -8 -22 15 -49 9 -46 -9 3 -19 -19 -14 -34 8 -9 12 -16 17 -16 11 0 -6 -12 +-14 -27 -19 -41 -12 -146 -13 -160 -1 -17 12 -17 -5 -1 -21 7 -7 10 -12 7 -12 +-3 0 -15 11 -27 25 -19 21 -19 24 -4 22 9 -1 22 -6 27 -9 6 -4 17 -3 25 3 17 +10 16 10 -25 14 -16 2 -38 6 -49 10 -16 7 -17 5 -8 -11 6 -11 22 -32 37 -47 +22 -22 31 -25 47 -16 11 6 26 8 34 5 8 -3 12 -2 9 4 -3 5 4 7 15 5 11 -2 18 0 +15 6 -4 5 -1 9 4 9 6 0 11 -4 11 -8 0 -5 7 -9 15 -9 8 0 12 4 9 9 -3 4 0 8 5 +8 6 0 11 -5 11 -11 0 -5 5 -7 11 -3 8 4 7 9 -2 15 -11 7 -11 9 -1 9 7 0 15 -7 +18 -15 5 -12 10 -13 20 -4 10 8 14 8 14 0 0 -6 -5 -11 -12 -11 -22 0 3 -14 30 +-17 23 -3 24 -2 9 8 -9 5 -15 15 -12 20 4 5 11 7 16 4 5 -4 12 1 15 10 6 14 8 +14 19 -2 8 -10 17 -15 21 -11 4 4 13 3 21 -3 9 -9 13 -8 13 0 0 6 -5 11 -11 +11 -5 0 -7 5 -3 11 4 8 9 7 16 -2 7 -10 8 -9 4 6 -7 27 8 54 17 30 5 -11 3 +-14 -5 -9 -8 5 -9 2 -5 -10 4 -10 2 -26 -3 -37 -7 -13 -7 -19 0 -19 5 0 13 0 +17 0 13 0 10 90 -3 101 -9 7 -14 5 -19 -10z m-311 -70 c3 -5 -1 -11 -9 -14 -9 +-4 -12 -1 -8 9 6 16 10 17 17 5z"/> +<path d="M2880 8245 c-8 -9 -8 -15 -2 -15 12 0 26 19 19 26 -2 2 -10 -2 -17 +-11z"/> +<path d="M2557 8235 c-3 -6 8 -11 24 -11 18 -1 26 2 22 9 -4 6 -1 7 8 1 21 +-13 39 -14 39 -2 0 6 7 5 16 -3 14 -12 14 -14 0 -25 -21 -15 -20 -25 2 -18 14 +5 14 4 2 -4 -8 -6 -18 -8 -22 -6 -11 7 -10 -8 2 -26 7 -11 10 -11 10 -2 0 7 5 +10 12 6 6 -4 8 -3 5 3 -4 6 0 16 8 23 7 6 11 19 8 28 -3 11 3 8 17 -8 15 -17 +20 -19 16 -8 -5 18 29 46 42 34 3 -3 0 -6 -7 -6 -7 0 -9 -5 -5 -11 5 -8 9 -8 +14 1 5 8 9 7 13 -4 4 -10 -2 -22 -18 -32 -14 -9 -25 -21 -25 -28 0 -6 4 -5 9 +3 5 8 14 10 21 6 9 -5 11 -4 6 3 -6 11 6 17 27 13 19 -3 0 36 -27 57 -30 22 +-52 29 -42 13 3 -5 -1 -14 -9 -21 -12 -10 -16 -9 -20 2 -7 17 -8 17 -87 21 +-34 2 -59 -1 -61 -8z"/> +<path d="M2491 8214 c-15 -17 -28 -23 -41 -19 -14 4 -20 2 -20 -9 0 -9 5 -16 +11 -16 5 0 8 4 5 8 -2 4 3 8 12 9 9 0 28 4 42 8 38 10 44 10 73 -10 21 -13 25 +-21 16 -31 -8 -10 -6 -13 10 -11 24 1 24 2 11 27 -7 13 -7 21 0 25 5 3 10 12 +10 18 0 7 -4 6 -10 -3 -9 -13 -11 -13 -21 0 -9 12 -10 11 -5 -5 6 -19 5 -19 +-7 -3 -8 10 -16 15 -19 13 -3 -3 -11 1 -18 10 -17 20 -23 19 -49 -11z m39 12 +c0 -2 -7 -7 -16 -10 -8 -3 -12 -2 -9 4 6 10 25 14 25 6z"/> +<path d="M2622 8200 c-6 -10 -6 -22 0 -33 6 -11 5 -23 -1 -34 -6 -11 -11 -13 +-11 -5 0 7 -5 10 -10 7 -8 -5 -7 -12 2 -23 8 -9 8 -13 2 -9 -7 4 -15 0 -18 -8 +-4 -13 -2 -14 14 -5 11 6 20 16 20 22 0 6 9 3 19 -6 20 -18 41 -15 41 6 0 7 +-5 6 -14 -1 -11 -9 -16 -9 -22 0 -4 7 -3 10 2 6 5 -3 18 2 29 10 20 15 20 15 +-3 10 -42 -10 -52 60 -10 76 7 3 3 5 -8 4 -12 -1 -26 -8 -32 -17z"/> +<path d="M2736 8195 c4 -8 -1 -17 -9 -21 -9 -3 -13 -12 -10 -21 4 -11 10 -9 +23 11 9 15 19 24 22 20 3 -3 9 0 14 7 4 7 3 10 -4 5 -6 -3 -13 -2 -17 4 -10 +16 -25 12 -19 -5z"/> +<path d="M2534 8175 c2 -16 5 -32 5 -34 1 -3 7 3 14 14 13 17 14 16 11 -6 -1 +-13 -3 -28 -3 -34 -1 -5 -8 1 -17 13 -8 12 -20 22 -26 22 -6 0 -1 -11 11 -24 +22 -23 43 -28 57 -13 4 4 3 7 -2 7 -14 0 -15 40 -1 40 7 0 3 6 -8 12 -11 7 +-22 11 -24 9 -2 -1 -8 3 -13 11 -5 8 -7 3 -4 -17z"/> +<path d="M8259 8199 c-1 -2 -3 -13 -4 -24 -2 -11 -4 -26 -6 -34 -2 -7 1 -15 7 +-18 6 -2 11 3 12 12 1 8 3 22 4 32 1 13 4 13 19 -6 11 -13 19 -17 21 -9 3 8 6 +6 10 -4 5 -13 1 -15 -23 -11 -30 4 -30 4 -12 -14 10 -11 21 -15 24 -10 4 5 9 +3 11 -4 3 -8 7 -5 10 8 7 26 -14 69 -31 65 -7 -1 -19 3 -27 9 -8 6 -15 10 -15 +8z"/> +<path d="M2459 8168 c-19 -11 -26 -17 -16 -14 12 4 16 2 11 -5 -4 -7 -1 -10 7 +-7 8 3 13 10 12 16 -1 6 11 9 30 6 18 -2 26 -1 19 2 -6 3 -10 9 -8 13 9 14 +-22 8 -55 -11z"/> +<path d="M8068 8166 c-16 -12 -15 -15 10 -39 27 -26 28 -26 40 -6 13 21 37 22 +37 2 0 -20 15 -27 57 -28 36 0 42 -3 43 -23 2 -29 -11 -37 -33 -21 -16 12 -16 +12 -1 -5 23 -25 57 -7 54 29 -2 14 0 25 5 25 12 0 18 -22 15 -53 -2 -15 2 -30 +7 -34 7 -4 9 2 6 15 -4 12 -3 20 1 17 4 -2 8 9 8 25 0 16 -4 27 -8 24 -4 -2 +-12 4 -18 13 -9 16 -12 16 -20 3 -9 -13 -12 -12 -25 5 -8 11 -12 24 -9 29 4 5 +1 6 -5 2 -5 -3 -13 0 -15 6 -4 8 -6 7 -6 -4 -1 -9 4 -20 9 -23 6 -4 8 -11 4 +-16 -3 -5 -10 -7 -15 -3 -5 3 -7 9 -5 13 3 4 -4 12 -15 19 -20 13 -26 3 -8 +-15 8 -8 7 -13 -2 -18 -8 -6 -10 -4 -4 5 6 9 4 11 -6 5 -8 -5 -11 -5 -7 0 4 4 +3 14 -3 22 -9 10 -8 13 0 13 7 0 9 5 5 13 -4 6 2 3 14 -7 12 -11 22 -14 22 -9 +0 15 -22 30 -43 30 -11 0 -16 -6 -13 -14 3 -8 2 -12 -3 -8 -5 3 -12 -1 -15 -7 +-3 -7 -4 -4 -1 8 4 14 0 21 -10 21 -11 0 -14 -7 -9 -21 4 -17 3 -18 -5 -6 -10 +14 -15 7 -12 -13 1 -5 -3 -6 -9 -2 -8 5 -7 11 1 21 16 19 8 25 -13 10z m47 +-36 c-3 -5 -12 -10 -18 -10 -7 0 -6 4 3 10 19 12 23 12 15 0z"/> +<path d="M2480 8145 c-8 -9 -21 -13 -32 -9 -15 4 -19 1 -16 -13 3 -19 17 -33 +32 -33 5 0 1 10 -10 23 l-19 22 24 -20 c20 -17 23 -18 20 -3 -2 9 1 17 6 16 6 +0 9 -5 7 -11 -2 -5 3 -14 10 -18 11 -7 11 -9 0 -9 -8 0 -10 -5 -6 -12 11 -17 +13 -48 3 -42 -4 2 -10 -2 -13 -8 -3 -7 -4 -4 -1 8 4 14 0 21 -10 21 -10 0 -13 +-6 -9 -19 3 -10 0 -18 -6 -18 -6 0 -8 5 -4 12 4 6 3 8 -3 5 -6 -4 -9 6 -8 23 +1 17 -2 30 -6 30 -13 0 -7 -70 5 -72 6 0 16 -2 22 -2 6 -1 19 -8 29 -16 16 +-13 18 -13 13 0 -3 8 1 23 10 33 10 11 11 17 3 17 -8 0 -9 5 -2 19 8 14 7 22 +-5 32 -8 7 -11 15 -5 18 6 4 4 13 -4 24 -11 15 -14 16 -25 2z"/> +<path d="M8335 8103 c-4 -10 -9 -34 -10 -53 -3 -27 -1 -31 6 -17 6 9 8 21 5 +26 -4 5 -3 17 0 26 5 12 9 13 14 5 5 -8 10 -8 14 -2 3 5 0 15 -8 21 -11 9 -15 +8 -21 -6z"/> +<path d="M2468 8086 c-24 -18 -23 -22 7 -22 17 0 21 3 15 11 -6 7 -7 15 -3 18 +11 12 -1 7 -19 -7z"/> +<path d="M8390 7889 c0 -5 5 -7 10 -4 6 3 10 8 10 11 0 2 -4 4 -10 4 -5 0 -10 +-5 -10 -11z"/> +<path d="M8390 7650 c0 -5 5 -10 11 -10 5 0 7 5 4 10 -3 6 -8 10 -11 10 -2 0 +-4 -4 -4 -10z"/> +<path d="M2419 4681 c8 -5 9 -11 3 -15 -13 -8 -12 -46 1 -46 4 0 5 -6 0 -12 +-10 -17 -11 -78 -1 -72 4 3 8 0 8 -6 0 -6 5 -8 11 -4 8 4 7 9 -2 16 -10 7 -8 +8 7 4 14 -5 21 -2 21 9 0 10 -7 14 -21 10 -12 -3 -15 -2 -8 1 6 3 10 10 6 15 +-5 9 -14 44 -17 69 -1 8 4 14 11 13 18 -4 15 14 -4 21 -23 9 -31 7 -15 -3z"/> +<path d="M2460 4665 c-7 -8 -17 -12 -23 -8 -7 4 -8 0 -3 -13 8 -19 14 -41 15 +-57 1 -5 6 -5 11 -2 6 3 10 3 11 -2 0 -4 2 -16 4 -26 2 -9 -5 -22 -16 -28 -11 +-5 -17 -15 -13 -21 4 -7 10 -6 16 3 6 10 7 7 3 -8 -5 -18 -3 -22 9 -17 12 5 +13 10 5 26 -9 16 -8 19 2 13 8 -5 10 -4 5 3 -5 8 -2 10 9 6 11 -5 14 -2 9 10 +-3 9 -9 14 -13 11 -4 -2 -8 3 -8 11 0 10 4 11 11 4 5 -5 17 -10 25 -10 11 0 +10 4 -5 14 -10 8 -16 18 -11 22 4 4 7 1 7 -7 0 -11 2 -11 10 1 8 13 10 13 10 +-1 0 -18 24 -42 33 -33 6 6 -32 48 -45 50 -5 1 -13 2 -19 3 -5 0 -7 6 -3 13 4 +6 3 8 -3 5 -14 -9 -37 19 -28 33 3 6 11 7 17 4 7 -4 8 -2 4 4 -9 15 -11 15 +-26 -3z m25 -65 c-3 -5 -13 -6 -21 -3 -12 4 -13 8 -3 14 15 9 32 2 24 -11z"/> +<path d="M8273 4647 c0 -6 -4 -20 -8 -30 -5 -13 -3 -16 8 -11 9 3 15 11 13 17 +-1 7 -1 8 2 4 2 -4 10 -2 18 4 11 9 18 9 25 2 8 -8 6 -11 -6 -10 -10 1 -20 -3 +-22 -9 -2 -7 4 -11 14 -10 10 0 18 -6 18 -14 0 -8 -8 -14 -18 -14 -10 1 -16 +-3 -14 -10 2 -6 11 -10 20 -10 9 1 14 -2 11 -7 -3 -5 1 -9 8 -9 9 0 9 -3 -2 +-10 -8 -5 -23 -7 -32 -4 -13 4 -16 1 -12 -10 3 -8 13 -12 22 -9 15 4 15 3 2 +-6 -13 -9 -12 -12 5 -25 19 -14 19 -14 1 -13 -10 1 -21 -3 -23 -9 -5 -14 29 +-13 39 1 5 6 8 6 8 -2 0 -6 -5 -15 -11 -19 -8 -4 -7 -9 2 -15 12 -7 12 -9 0 +-9 -11 0 -9 -5 5 -22 10 -12 13 -18 6 -14 -9 6 -12 2 -10 -10 2 -12 -2 -18 +-11 -16 -18 4 -41 -17 -41 -36 0 -13 3 -12 15 4 15 19 15 19 31 -1 16 -20 16 +-20 11 2 -3 12 1 27 8 33 14 12 14 47 1 68 -4 6 -2 21 5 33 6 12 7 19 1 15 +-15 -9 -33 19 -26 39 5 13 9 14 16 3 5 -8 6 -2 3 17 -11 52 -10 60 3 58 6 -2 +12 2 12 7 0 6 -7 10 -16 10 -10 0 -13 6 -9 19 6 19 -18 36 -36 25 -6 -3 -16 +-1 -23 5 -9 8 -13 7 -13 -2z"/> +<path d="M8215 4594 c-21 -18 -24 -23 -10 -18 11 3 28 6 38 6 9 0 17 3 17 9 0 +5 -5 9 -11 9 -5 0 -7 5 -4 10 10 16 2 12 -30 -16z"/> +<path d="M2554 4589 c-4 -7 -3 -9 3 -6 14 9 23 -16 13 -33 -6 -10 -12 -11 -22 +-2 -9 7 -19 8 -28 2 -8 -6 -10 -10 -5 -10 6 0 1 -7 -9 -15 -11 -8 -16 -18 -12 +-22 4 -4 12 0 17 10 6 9 14 15 20 12 5 -4 9 0 9 7 0 8 3 9 8 3 12 -16 39 -16 +40 0 1 8 3 22 4 32 1 13 4 13 19 -6 12 -14 19 -17 22 -9 4 10 8 9 16 -2 8 -11 +11 -12 11 -2 0 7 6 10 13 7 6 -4 3 1 -8 9 -11 9 -25 14 -33 11 -7 -2 -10 -1 +-7 4 3 5 0 13 -6 17 -8 4 -9 3 -5 -4 8 -13 -20 -12 -41 1 -6 4 -15 2 -19 -4z"/> +<path d="M8120 4563 c-18 -23 -28 -30 -25 -18 4 12 3 15 -2 9 -10 -14 -56 -39 +-65 -36 -9 2 -69 -70 -63 -76 8 -8 35 20 29 29 -5 10 8 13 41 9 l20 -2 -20 16 +c-14 11 -15 15 -5 14 22 -4 30 -20 20 -39 -7 -12 -5 -21 7 -30 14 -12 15 -12 +11 1 -3 8 -1 23 3 32 6 10 5 19 -1 23 -5 3 -10 12 -10 18 0 7 4 6 11 -3 9 -13 +10 -12 5 3 -3 9 -1 17 4 17 6 0 10 -5 10 -12 0 -6 8 -3 20 7 11 10 18 21 15 +24 -2 4 5 12 15 19 16 9 22 8 32 -6 7 -9 24 -18 38 -19 14 0 33 -4 43 -8 13 +-6 16 -3 11 9 -3 9 -11 13 -17 9 -5 -3 -7 -1 -3 5 3 6 1 14 -5 18 -7 4 -9 3 +-5 -4 6 -10 -9 -10 -56 -3 -5 0 -8 8 -8 16 0 25 -17 17 -50 -22z"/> +<path d="M8266 4584 c-3 -8 -2 -23 2 -32 5 -9 7 -27 6 -39 0 -13 4 -23 10 -23 +6 0 4 -5 -4 -10 -13 -9 -13 -10 0 -10 10 0 11 -3 3 -8 -8 -5 -8 -12 2 -25 11 +-15 17 -17 32 -7 15 10 16 11 1 6 -21 -6 -34 12 -20 26 8 8 7 19 -3 39 -16 30 +-8 43 22 33 13 -5 12 -2 -5 11 -16 11 -21 23 -17 36 8 24 -20 27 -29 3z"/> +<path d="M8310 4590 c0 -5 5 -10 10 -10 6 0 10 5 10 10 0 6 -4 10 -10 10 -5 0 +-10 -4 -10 -10z"/> +<path d="M8120 4529 c-19 -21 -36 -43 -37 -49 -8 -30 -7 -35 5 -32 8 1 11 -2 +8 -7 -10 -16 8 -20 21 -6 10 11 9 15 -7 20 -11 4 -20 11 -20 17 0 6 3 8 6 5 4 +-3 15 -2 25 3 13 8 20 6 28 -7 14 -24 14 -7 1 18 -9 16 -15 17 -33 9 -16 -8 +-14 -4 8 14 29 25 30 25 50 6 26 -25 34 -25 30 -2 -1 9 -9 16 -19 14 -9 -2 +-16 4 -16 12 0 28 -15 23 -50 -15z"/> +<path d="M2606 4527 c26 -15 49 -16 68 -2 13 10 7 12 -35 12 -42 0 -48 -2 -33 +-10z"/> +<path d="M8219 4533 c0 -4 -2 -18 -5 -30 -3 -16 1 -20 14 -18 9 2 19 4 21 4 3 +1 -3 7 -13 14 -16 12 -16 14 -2 14 9 0 16 -4 16 -9 0 -4 5 -8 11 -8 5 0 7 4 4 +10 -9 14 -45 32 -46 23z"/> +<path d="M8146 4521 c-4 -6 -1 -14 7 -17 13 -5 17 -17 18 -57 0 -15 3 -16 14 +-7 11 9 12 17 4 34 -10 20 -10 20 5 2 9 -11 16 -23 16 -27 0 -8 26 -6 34 2 2 +2 -2 10 -10 17 -8 7 -14 8 -14 2 0 -5 -15 6 -34 26 -21 22 -36 32 -40 25z"/> +<path d="M2415 4411 c0 -60 4 -113 9 -118 5 -5 6 -2 1 6 -6 10 -4 12 4 7 9 -6 +9 -11 1 -21 -6 -7 -7 -16 -2 -19 5 -3 14 6 21 20 13 29 14 37 3 30 -4 -2 -14 +-1 -21 3 -11 7 -11 13 -1 27 9 16 11 16 6 2 -3 -10 -1 -20 4 -23 6 -4 10 -3 +11 2 0 4 2 18 5 31 4 20 2 22 -19 12 -22 -11 -22 -11 -2 6 16 14 17 16 3 11 +-10 -4 -18 -2 -18 3 0 6 7 10 15 10 8 0 15 5 15 11 0 5 -4 8 -8 5 -5 -3 -9 1 +-9 9 0 8 5 13 10 12 5 -1 12 4 14 11 4 11 1 12 -15 3 -18 -10 -20 -8 -17 14 1 +14 6 29 10 33 4 4 5 -3 1 -14 -6 -19 -3 -21 29 -20 19 0 35 6 35 11 0 6 5 3 +10 -5 9 -13 10 -13 11 0 1 8 1 17 1 20 -1 11 47 7 51 -4 3 -7 16 -12 29 -11 +12 1 27 -3 31 -9 5 -6 5 -1 2 12 -3 12 -2 22 3 22 8 0 12 -14 13 -53 0 -15 3 +-16 14 -7 10 9 12 17 5 30 -5 9 -6 20 -3 24 3 3 0 7 -8 8 -8 0 -18 2 -24 2 -5 +1 -16 5 -23 10 -8 5 -19 3 -25 -3 -9 -9 -8 -11 4 -6 10 4 19 2 23 -3 7 -11 +-34 -8 -42 4 -9 12 -52 14 -52 3 0 -5 -13 -15 -29 -23 -28 -15 -30 -14 -45 9 +-9 14 -20 25 -24 25 -4 0 -7 -49 -7 -109z"/> +<path d="M2670 4510 c0 -5 5 -10 10 -10 6 0 10 5 10 10 0 6 -4 10 -10 10 -5 0 +-10 -4 -10 -10z"/> +<path d="M2692 4500 l-23 -19 31 1 c26 1 28 3 17 16 -9 13 -9 14 1 8 6 -4 12 +-2 12 3 0 16 -12 13 -38 -9z"/> +<path d="M2737 4505 c-6 -13 -3 -16 8 -11 9 3 14 2 10 -3 -3 -5 1 -12 7 -15 7 +-3 3 -3 -9 -1 -12 3 -25 0 -29 -6 -5 -8 -3 -9 6 -4 9 6 11 4 5 -5 -6 -10 -4 +-11 11 -5 10 4 29 7 42 6 12 0 22 4 22 10 0 5 5 7 11 3 8 -4 4 -11 -11 -19 +l-23 -13 23 -7 c16 -5 19 -10 10 -15 -7 -4 15 -6 48 -5 33 1 66 -2 74 -7 9 -7 +7 -7 -9 -3 -15 4 -21 2 -19 -9 3 -19 16 -34 16 -18 0 6 11 9 27 6 23 -4 25 -3 +13 11 -22 27 -109 68 -95 45 10 -15 -14 -21 -37 -9 -20 11 -20 13 -5 24 18 13 +24 31 8 20 -5 -3 -12 -1 -16 5 -4 7 -12 7 -23 1 -13 -8 -22 -4 -38 16 -18 23 +-21 24 -27 8z m168 -75 c3 -5 1 -10 -4 -10 -6 0 -11 5 -11 10 0 6 2 10 4 10 3 +0 8 -4 11 -10z"/> +<path d="M2535 4472 c-10 -11 -22 -19 -26 -16 -4 2 -7 -5 -6 -16 1 -11 8 -20 +16 -20 8 0 11 3 8 6 -3 4 -2 15 4 25 13 25 52 8 42 -19 -6 -15 -5 -15 11 -3 +15 13 19 13 27 0 8 -13 13 -6 10 14 -1 5 3 6 8 3 5 -4 12 -3 15 2 5 9 -2 11 +-46 14 -13 1 -28 9 -34 17 -10 12 -14 11 -29 -7z"/> +<path d="M8247 4484 c-8 -8 1 -24 12 -24 4 0 8 7 8 15 0 16 -9 20 -20 9z"/> +<path d="M2700 4471 c0 -7 -5 -9 -12 -5 -7 4 -10 3 -5 -1 10 -12 -22 -45 -38 +-39 -18 7 -30 -15 -15 -29 10 -9 11 -9 6 0 -3 6 -2 15 4 18 6 4 10 3 9 -2 -3 +-19 2 -36 9 -29 7 7 8 11 11 37 0 5 6 7 13 3 6 -4 8 -3 5 3 -4 6 0 13 8 17 8 +3 19 -3 24 -12 8 -14 10 -14 10 -2 0 8 -6 24 -14 34 -8 11 -15 14 -15 7z"/> +<path d="M8000 4458 c-33 -50 -34 -52 -15 -44 10 3 24 1 31 -5 8 -6 20 -9 29 +-6 8 4 17 2 20 -3 4 -6 11 -10 17 -10 6 0 5 7 -3 18 -13 16 -13 16 5 2 17 -13 +19 -13 14 0 -2 8 -12 15 -20 15 -22 0 -49 25 -41 38 3 5 1 7 -5 3 -5 -3 -12 +-2 -14 4 -2 6 -10 0 -18 -12z m50 -38 c0 -15 -20 -12 -26 4 -3 8 -13 12 -22 9 +-14 -4 -14 -3 -3 5 16 12 51 -1 51 -18z"/> +<path d="M8122 4473 c-10 -4 -10 -7 2 -17 13 -9 11 -16 -13 -46 -23 -27 -32 +-32 -43 -23 -7 7 -19 8 -26 4 -10 -6 -10 -11 3 -21 12 -10 15 -10 15 1 0 11 2 +11 8 1 6 -9 14 -6 32 10 14 13 29 22 34 20 4 -2 6 4 2 13 -3 9 -2 14 2 11 4 +-3 13 4 20 15 7 10 9 19 5 18 -20 -3 -34 2 -28 11 7 11 6 11 -13 3z"/> +<path d="M7949 4468 c-6 -13 -4 -46 2 -42 5 3 6 -1 3 -9 -3 -8 2 -17 11 -21 9 +-3 13 -11 9 -18 -5 -8 -2 -9 10 -5 9 4 25 1 36 -5 17 -11 17 -13 2 -25 -15 +-12 -14 -13 11 -9 15 3 27 1 27 -4 0 -5 7 -7 15 -4 8 4 12 11 8 17 -4 6 -1 7 +7 2 9 -6 11 -4 6 6 -4 8 -1 6 7 -3 8 -10 17 -15 20 -11 4 3 1 13 -6 21 -10 13 +-9 14 2 7 10 -6 12 -4 6 5 -5 8 -4 11 3 7 5 -4 18 -4 27 -1 13 5 14 8 3 15 +-10 7 -9 9 5 10 9 1 22 3 27 4 6 1 13 3 18 4 4 1 0 6 -8 11 -8 5 -10 10 -4 10 +18 0 24 -13 12 -27 -18 -22 -3 -25 17 -3 11 12 13 20 6 20 -7 0 -10 4 -7 9 5 +7 -34 8 -41 1 -2 -1 -8 -3 -14 -4 -6 0 -17 -12 -24 -26 -8 -14 -14 -20 -15 +-13 0 7 -11 1 -25 -12 -31 -28 -52 -26 -78 6 -11 13 -29 24 -41 24 -11 0 -21 +5 -21 12 0 6 -3 15 -7 19 -4 4 -3 13 3 21 9 9 8 13 0 13 -6 0 -12 -1 -12 -2z"/> +<path d="M2465 4443 c-10 -24 -12 -46 -4 -58 8 -12 4 -81 -6 -115 -5 -14 -4 +-21 0 -17 5 4 10 15 11 25 2 9 8 18 13 20 15 5 14 32 0 32 -6 0 -1 9 12 20 13 +10 19 19 14 20 -6 0 -17 -6 -25 -12 -12 -11 -12 -10 -1 5 11 14 11 17 0 17 +-11 0 -11 2 1 9 8 6 18 7 23 4 5 -3 3 5 -4 18 -7 13 -12 25 -11 27 1 1 2 7 2 +12 0 16 -17 11 -25 -7z m25 -7 c0 -2 -7 -7 -16 -10 -8 -3 -12 -2 -9 4 6 10 25 +14 25 6z m0 -20 c0 -2 -8 -10 -17 -17 -16 -13 -17 -12 -4 4 13 16 21 21 21 13z"/> +<path d="M2539 4450 c-1 -6 -2 -15 -3 -20 0 -6 -6 -14 -11 -18 -6 -4 -10 -16 +-10 -27 0 -11 -6 -29 -15 -39 -9 -11 -10 -16 -2 -12 7 4 12 2 12 -5 0 -22 15 +2 16 24 1 32 14 67 25 67 6 0 7 -4 4 -10 -3 -5 -2 -10 3 -10 14 0 9 49 -5 55 +-7 2 -14 0 -14 -5z"/> +<path d="M2762 4453 c-22 -8 -34 -40 -16 -47 10 -4 13 -2 8 6 -5 7 -3 8 7 3 +12 -7 12 -6 1 7 -11 14 -10 16 5 14 11 -2 17 -10 15 -22 -3 -16 -2 -16 13 -4 +11 9 13 15 4 20 -6 4 -14 12 -18 17 -3 6 -12 8 -19 6z"/> +<path d="M7878 4441 c-7 -10 -17 -19 -23 -19 -5 0 -11 -6 -13 -14 -3 -10 -1 +-10 6 1 8 11 11 9 17 -9 6 -18 9 -20 16 -9 12 19 11 32 -1 24 -6 -3 -7 1 -3 +10 5 13 7 14 14 3 8 -12 13 -4 10 14 0 4 6 5 15 1 11 -4 12 -8 4 -13 -7 -4 -8 +-10 -4 -12 5 -3 3 -3 -4 -1 -8 1 -12 -3 -9 -9 2 -7 12 -13 23 -13 13 0 18 -6 +16 -19 -2 -10 1 -15 7 -12 5 4 12 2 15 -3 4 -5 2 -12 -4 -16 -6 -4 -8 -11 -4 +-16 3 -6 12 -3 21 8 8 10 11 12 8 5 -6 -11 -3 -12 15 -2 24 13 19 25 -11 25 +-10 0 -19 5 -20 10 -1 6 -8 15 -16 20 -12 9 -18 23 -22 55 -2 14 -42 7 -53 -9z"/> +<path d="M8245 4439 c-4 -6 -4 -13 -1 -16 7 -7 -33 -53 -46 -53 -4 0 -8 7 -8 +15 0 12 -4 11 -20 -5 -11 -11 -25 -20 -31 -20 -5 0 -8 -4 -5 -9 7 -10 -18 -34 +-27 -25 -3 3 -14 1 -24 -4 -12 -7 -25 -7 -35 -1 -13 7 -20 4 -29 -12 -10 -20 +-9 -21 7 -14 11 4 30 8 44 8 14 1 29 6 33 12 5 5 6 1 3 -11 -5 -14 -2 -21 9 +-21 11 0 14 7 9 21 -4 15 -3 17 4 7 7 -9 12 -10 16 -2 4 6 1 11 -6 11 -8 0 -6 +5 5 11 9 6 15 14 12 20 -4 5 -1 9 4 9 6 0 11 -5 11 -11 0 -5 5 -7 10 -4 6 4 8 +11 5 16 -3 5 1 6 9 3 9 -3 16 -11 16 -17 0 -6 3 -7 8 -3 7 7 8 11 11 37 0 5 6 +7 13 3 7 -4 8 -3 4 4 -4 7 -2 12 3 12 16 0 13 -20 -4 -26 -8 -4 -12 -10 -9 +-16 9 -14 35 13 32 33 -2 10 2 18 7 18 6 0 8 -8 7 -17 -3 -12 -1 -13 10 -5 8 +7 19 8 27 4 9 -6 10 -11 2 -15 -6 -4 -11 -2 -11 3 0 8 -7 7 -19 -1 -21 -13 +-18 -33 2 -22 7 4 8 3 4 -2 -5 -5 -12 -9 -15 -9 -13 0 -32 -16 -32 -27 0 -6 +16 2 35 16 19 15 39 25 43 22 5 -3 8 4 7 15 -1 11 -7 24 -14 29 -11 6 -11 9 0 +14 8 3 4 3 -8 0 -15 -3 -25 1 -33 16 -12 22 -25 26 -35 9z"/> +<path d="M2686 4416 c-19 -19 -19 -19 2 -14 12 4 25 1 29 -4 3 -6 2 -8 -3 -5 +-6 3 -15 -3 -22 -14 -14 -22 -5 -24 21 -5 20 15 21 25 4 46 -11 14 -14 14 -31 +-4z"/> +<path d="M2581 4411 c-7 -12 -19 -20 -26 -17 -7 2 -16 -1 -19 -9 -2 -7 2 -16 +10 -19 24 -9 31 -7 14 4 -12 8 -10 10 9 8 13 -2 26 3 29 11 3 9 0 11 -8 6 -9 +-6 -11 -4 -5 5 6 10 11 9 21 -5 10 -13 11 -22 3 -31 -6 -7 -8 -18 -4 -24 10 +-16 23 -12 21 6 0 9 5 19 12 21 6 3 12 -3 12 -12 0 -11 5 -15 14 -12 20 8 28 +-4 15 -20 -8 -9 -8 -13 -1 -13 18 0 24 20 12 35 -7 8 -17 12 -24 8 -6 -3 -2 3 +8 15 11 12 14 22 8 22 -6 0 -13 -4 -16 -9 -7 -10 -46 -3 -46 8 0 4 -6 16 -14 +26 -13 18 -14 18 -25 -4z"/> +<path d="M7800 4400 c-13 -10 -28 -16 -32 -14 -4 3 -12 -4 -17 -15 -16 -29 +-13 -38 4 -15 8 10 15 15 15 10 0 -6 7 -1 15 10 10 13 13 14 10 3 -4 -10 0 +-16 10 -16 11 0 14 6 9 21 -4 15 -3 17 4 7 11 -15 24 0 14 16 -5 8 -15 6 -32 +-7z"/> +<path d="M2795 4399 c-2 -3 -14 -5 -26 -4 -27 2 -71 -38 -64 -57 7 -18 -20 +-42 -35 -33 -8 5 -7 12 2 23 11 13 11 14 -1 7 -9 -5 -19 -2 -29 11 -12 16 -14 +16 -9 2 8 -24 -12 -34 -31 -15 -13 14 -13 18 -1 33 13 16 12 16 -13 0 -15 -10 +-32 -15 -37 -12 -5 4 -12 2 -15 -3 -8 -12 19 -22 31 -10 5 5 16 1 26 -11 11 +-14 13 -20 4 -20 -8 0 -7 -4 3 -10 18 -12 30 -13 29 -2 -4 21 4 21 31 2 21 +-15 30 -17 30 -8 0 9 2 10 8 1 5 -8 12 -8 26 3 18 13 15 19 -7 15 -5 -1 -6 3 +-2 9 3 6 11 8 16 4 6 -3 7 4 4 19 -9 34 9 42 23 12 7 -14 16 -25 22 -25 14 0 +8 22 -10 37 -17 14 -16 15 20 17 14 0 31 5 37 9 9 6 11 3 6 -10 -5 -15 -4 -16 +8 -7 11 9 21 4 46 -21 22 -23 28 -36 21 -43 -8 -8 -5 -11 11 -9 24 1 24 2 11 +27 -7 13 -7 21 0 25 6 3 12 0 15 -7 3 -8 14 -14 25 -15 12 -1 17 3 13 13 -3 7 +-10 11 -16 7 -5 -3 -7 -1 -3 5 3 6 2 13 -4 17 -5 3 -10 2 -10 -2 0 -5 -9 -9 +-20 -10 -18 -2 -25 8 -21 30 1 9 -2 9 -62 11 -27 1 -50 -1 -52 -5z m105 -30 +c15 -28 5 -23 -15 7 -9 15 -12 23 -6 20 6 -4 16 -16 21 -27z"/> +<path d="M2986 4384 c-3 -8 -1 -24 4 -34 11 -21 2 -31 -26 -26 -16 3 -19 -1 +-18 -23 1 -14 -4 -32 -10 -40 -9 -11 -8 -13 4 -9 8 2 15 13 15 24 0 13 6 18 +19 16 11 -2 15 1 11 7 -3 6 1 14 10 17 10 4 14 14 10 28 -4 15 -1 13 10 -7 9 +-15 20 -25 24 -22 5 2 14 -9 21 -25 14 -33 38 -56 26 -25 -5 15 -4 16 9 5 10 +-8 15 -9 15 -1 0 6 5 11 10 11 6 0 9 -5 8 -11 -2 -6 3 -14 11 -17 9 -3 11 0 6 +8 -5 8 -1 18 10 27 14 10 15 13 4 14 -8 0 -22 2 -31 4 -10 2 -16 -2 -15 -7 6 +-28 -27 -14 -72 31 -27 27 -45 51 -38 54 8 2 8 5 0 10 -6 4 -14 0 -17 -9z"/> +<path d="M7834 4376 c-19 -30 -18 -31 13 -40 18 -6 22 -4 17 8 -3 8 -13 12 +-22 9 -15 -4 -15 -3 -2 6 21 15 30 14 30 -3 0 -8 5 -18 12 -22 8 -5 9 0 6 14 +-7 27 8 38 27 22 13 -11 13 -15 0 -33 -19 -27 -19 -34 0 -34 8 0 14 6 13 13 +-2 7 6 20 17 29 13 10 15 14 5 13 -9 -2 -14 4 -14 14 1 10 -2 15 -8 12 -5 -3 +-15 -1 -22 5 -10 9 -15 7 -21 -6 -6 -17 -7 -17 -20 0 -13 18 -14 17 -31 -7z"/> +<path d="M2799 4380 c0 -3 -2 -13 -4 -22 -2 -10 1 -18 5 -18 15 0 19 15 9 30 +-5 8 -9 13 -10 10z"/> +<path d="M2850 4368 c0 -5 -7 -7 -16 -4 -8 3 -13 2 -10 -2 6 -11 -16 -37 -36 +-40 -9 -1 -23 7 -31 18 -13 19 -14 18 -12 -25 1 -25 7 -51 14 -58 10 -9 12 -8 +9 8 -1 11 -7 24 -13 28 -5 5 1 5 14 2 15 -5 21 -3 17 3 -3 6 -1 14 5 18 8 4 9 +3 5 -4 -4 -7 -3 -12 2 -12 5 0 14 10 21 23 10 20 11 20 6 1 -4 -14 0 -21 10 +-21 10 0 13 8 11 24 -3 12 1 26 7 29 7 4 8 3 4 -1 -4 -5 3 -15 15 -22 l23 -14 +-25 7 -25 6 24 -21 c27 -23 36 -27 25 -10 -3 6 -3 14 2 18 5 3 -3 18 -18 33 +-16 15 -28 22 -28 16z"/> +<path d="M7896 4355 c4 -8 10 -12 15 -9 11 6 2 24 -11 24 -5 0 -7 -7 -4 -15z"/> +<path d="M7712 4335 c-10 -23 -15 -24 -34 -14 -18 10 -24 8 -35 -7 -7 -10 -11 +-24 -8 -32 2 -7 0 -10 -5 -7 -6 3 -10 1 -10 -4 0 -17 27 -13 34 5 9 23 8 26 +-6 18 -9 -6 -9 -3 1 9 10 13 17 14 34 6 16 -9 22 -8 29 5 5 9 13 14 19 11 11 +-7 12 5 1 23 -6 9 -12 5 -20 -13z"/> +<path d="M7749 4328 c-7 -17 -15 -26 -17 -19 -3 8 -8 7 -16 -5 -10 -13 -17 +-14 -34 -5 -18 9 -21 9 -16 -3 3 -8 -3 -23 -13 -33 -10 -10 -20 -27 -21 -38 +-3 -16 -2 -17 12 -6 13 11 17 11 22 -3 3 -9 10 -14 14 -11 5 3 13 -3 19 -12 +10 -17 10 -17 11 0 0 9 -13 25 -30 36 -16 10 -27 21 -23 24 10 11 25 8 18 -3 +-3 -5 -2 -10 4 -10 5 0 9 9 8 19 0 11 -5 17 -11 14 -5 -4 -6 -1 -2 6 6 9 13 8 +29 -6 20 -17 20 -17 14 0 -5 12 -3 16 5 11 6 -4 8 -3 5 3 -4 6 1 10 11 9 9 0 +16 5 15 12 -2 6 2 11 8 10 6 -2 14 3 17 11 3 8 0 11 -7 7 -7 -5 -9 -1 -5 8 12 +30 -4 16 -17 -16z"/> +<path d="M7784 4345 c7 -26 -65 -100 -81 -84 -6 6 -9 2 -8 -12 1 -12 9 -27 18 +-34 9 -7 13 -16 9 -20 -4 -5 -2 -5 5 -1 6 3 14 2 18 -4 4 -6 11 -8 16 -5 11 7 +12 26 2 23 -5 0 -19 4 -33 10 -14 6 -19 11 -12 11 7 1 11 5 8 9 -3 5 4 16 15 +25 10 10 19 12 19 6 0 -8 5 -7 15 1 9 7 12 16 7 19 -6 3 -4 12 4 19 11 10 14 +10 14 0 0 -8 5 -6 11 5 7 12 7 22 -1 35 -10 15 -11 15 -6 -3 l6 -20 -16 20 +c-16 20 -16 20 -10 0z"/> +<path d="M8255 4350 c-4 -6 -10 -8 -15 -5 -10 6 -35 -34 -26 -43 3 -3 6 0 6 7 +0 7 5 9 10 6 6 -4 1 -15 -12 -26 -21 -18 -22 -21 -6 -32 16 -11 15 -13 -15 +-30 -17 -10 -24 -16 -14 -13 10 3 28 1 40 -6 19 -10 21 -9 9 4 -9 12 -10 18 +-2 23 8 5 8 11 0 20 -13 16 -4 39 11 29 11 -7 39 13 39 28 0 7 -5 6 -13 -1 +-10 -8 -17 -7 -25 1 -8 8 -5 16 11 29 12 10 19 18 15 19 -4 0 -10 -5 -13 -10z"/> +<path d="M8186 4343 c-11 -11 -6 -24 7 -17 6 4 4 -2 -6 -13 -14 -16 -15 -22 +-5 -26 10 -4 10 -6 -1 -6 -11 -1 -11 -4 -1 -16 7 -9 10 -18 6 -22 -3 -3 -6 -1 +-6 6 0 8 -5 9 -19 1 -11 -5 -26 -8 -34 -5 -8 4 -14 0 -14 -8 0 -10 10 -14 29 +-13 15 0 28 4 28 8 0 5 3 7 8 7 26 -4 34 1 22 16 -6 8 -8 20 -4 27 18 29 10 +81 -10 61z"/> +<path d="M2567 4333 c-4 -4 -13 -8 -20 -9 -33 -5 -43 -11 -57 -29 -8 -11 -15 +-26 -16 -33 -2 -12 29 -34 56 -38 8 -2 16 -8 18 -14 2 -5 8 -8 13 -4 5 3 9 1 +9 -4 0 -6 7 -13 16 -16 8 -3 12 -2 9 4 -3 6 -2 10 3 10 5 0 12 -9 15 -21 3 +-12 10 -18 15 -15 5 3 15 -1 22 -9 10 -12 16 -13 26 -4 8 6 14 15 14 20 0 11 +-23 7 -32 -6 -5 -6 -8 -5 -8 4 0 7 -6 11 -14 8 -10 -4 -12 3 -10 24 4 29 3 29 +-20 13 -23 -15 -24 -14 -19 5 3 13 1 21 -6 21 -7 0 -9 -5 -5 -11 5 -8 1 -8 +-13 0 -11 6 -23 7 -27 3 -4 -3 -4 2 -1 13 4 11 3 16 -2 10 -4 -5 -15 -11 -23 +-13 -8 -2 -12 0 -8 4 4 4 3 13 -4 21 -8 10 -8 17 0 25 12 12 17 0 13 -26 -1 +-5 5 -6 14 -2 9 3 18 -1 21 -9 4 -8 10 -15 16 -15 5 0 6 4 3 10 -3 6 1 7 10 4 +11 -5 14 -2 9 10 -3 9 -10 13 -15 10 -13 -7 -51 15 -44 27 4 5 11 7 16 3 5 -3 +17 0 25 7 8 7 14 8 13 3 -2 -5 1 -20 5 -33 6 -18 10 -21 17 -10 7 12 9 12 9 0 +0 -11 3 -11 15 -1 12 10 15 10 15 0 0 -9 3 -10 13 -1 8 6 17 8 20 4 4 -3 7 -4 +7 -1 0 3 -12 13 -26 23 -15 9 -24 12 -20 7 3 -6 2 -13 -4 -17 -12 -7 -52 13 +-46 23 7 11 -9 34 -17 25z"/> +<path d="M8156 4331 c-4 -6 -2 -11 3 -11 6 0 1 -10 -11 -22 -13 -13 -26 -22 +-30 -20 -5 1 -8 -2 -8 -8 0 -5 -4 -10 -10 -10 -5 0 -9 3 -9 8 3 20 -2 32 -12 +26 -8 -4 -7 -9 2 -16 11 -7 9 -8 -4 -4 -10 3 -21 6 -23 6 -3 0 -2 5 2 11 4 7 +-1 7 -16 -1 -13 -7 -19 -17 -16 -27 3 -8 6 -17 6 -19 0 -3 5 -2 10 1 8 5 7 12 +-2 23 -12 14 -11 14 12 0 21 -13 54 -16 107 -9 6 0 10 9 8 19 -1 9 1 22 6 27 +4 6 4 17 0 24 -6 9 -11 10 -15 2z m-2 -56 c-4 -8 -11 -15 -16 -15 -6 0 -5 6 2 +15 7 8 14 15 16 15 2 0 1 -7 -2 -15z"/> +<path d="M7820 4310 c-6 -11 -16 -17 -22 -14 -6 4 -8 3 -5 -3 6 -10 -30 -51 +-39 -45 -16 9 -24 0 -14 -17 6 -12 18 -18 30 -16 18 3 24 -5 21 -27 0 -4 8 -6 +19 -5 24 2 26 13 4 21 -14 5 -14 9 -3 22 11 14 10 15 -7 12 -10 -1 -22 -7 -26 +-13 -4 -6 -8 -2 -8 9 0 12 5 16 16 12 10 -4 13 -2 8 6 -5 7 -3 8 6 3 9 -6 11 +-4 5 5 -6 9 -4 11 5 5 9 -6 11 -4 5 5 -10 17 16 32 32 18 10 -8 12 -6 10 13 +-5 31 -23 35 -37 9z"/> +<path d="M7866 4313 c-3 -7 3 -17 13 -23 16 -8 19 -6 17 14 -1 24 -22 31 -30 +9z"/> +<path d="M7943 4312 c18 -20 18 -21 0 -30 -10 -5 -25 -7 -33 -4 -13 4 -13 3 +-1 -11 10 -13 18 -14 32 -7 21 12 44 49 35 58 -3 3 -6 2 -6 -2 0 -4 -10 -1 +-22 5 -23 12 -23 12 -5 -9z"/> +<path d="M7989 4313 c-2 -30 2 -48 12 -51 6 -2 5 -10 -2 -19 -10 -12 -10 -16 +1 -23 8 -5 11 -12 7 -17 -5 -4 -12 -1 -17 7 -6 8 -10 10 -10 4 0 -19 27 -37 +32 -22 9 23 -1 91 -14 100 -10 6 -10 8 0 8 6 0 12 7 12 15 0 21 -20 19 -21 -2z"/> +<path d="M3001 4310 c-7 -4 -13 -11 -14 -16 -1 -5 -8 -8 -14 -8 -7 1 -10 -2 +-7 -8 3 -5 0 -16 -7 -24 -19 -23 -21 -51 -4 -51 18 0 19 9 3 27 -11 12 -10 12 +3 2 14 -10 18 -10 23 3 3 8 1 15 -5 15 -5 0 -4 6 3 14 10 10 15 11 21 2 6 -7 +7 -4 3 7 -3 10 -2 16 3 12 5 -3 11 -1 13 4 1 5 10 2 18 -7 13 -14 12 -15 -2 +-10 -10 4 -19 1 -22 -8 -4 -11 -1 -14 12 -10 9 3 24 1 32 -4 11 -7 11 -10 2 +-10 -7 0 -10 -5 -6 -11 4 -8 9 -7 16 2 8 11 9 10 5 -3 -3 -9 1 -19 9 -22 12 +-5 14 -1 9 17 -5 17 -4 19 4 7 10 -14 15 -7 12 13 -1 5 3 6 9 2 8 -5 7 -12 -2 +-23 -11 -14 -10 -15 5 -9 10 4 21 7 24 7 4 0 -2 9 -12 20 -14 15 -22 17 -36 9 +-16 -8 -22 -5 -36 19 -21 36 -45 53 -62 42z"/> +<path d="M2555 4290 c-3 -5 -1 -10 4 -10 6 0 11 5 11 10 0 6 -2 10 -4 10 -3 0 +-8 -4 -11 -10z"/> +<path d="M2810 4290 c0 -5 -3 -9 -7 -9 -21 3 -33 -2 -27 -12 4 -8 9 -7 16 2 8 +11 9 10 4 -3 -3 -10 -1 -20 4 -23 6 -4 10 -3 11 2 0 4 2 18 5 31 2 12 2 22 -1 +22 -3 0 -5 -4 -5 -10z"/> +<path d="M2829 4287 c-2 -11 -1 -32 3 -65 1 -8 8 -10 17 -6 9 4 24 7 33 8 10 +0 20 7 23 14 4 10 0 12 -10 8 -9 -3 -13 -2 -10 4 3 6 2 10 -3 10 -6 0 -13 -7 +-16 -16 -5 -13 -9 -14 -22 -4 -10 9 -12 15 -4 20 7 4 11 11 10 16 -1 5 4 10 +12 12 9 2 8 0 -2 -7 -8 -6 -13 -11 -10 -12 47 -9 76 2 42 16 -30 13 -62 14 +-63 2z"/> +<path d="M2919 4300 c-1 -3 -2 -18 -4 -35 -2 -16 -6 -38 -10 -49 -7 -16 -6 +-17 14 -7 17 9 19 16 12 30 -6 11 -6 22 -1 27 6 6 5 15 0 24 -5 8 -10 13 -11 +10z"/> +<path d="M7598 4278 c-7 -13 -13 -31 -14 -40 -1 -16 5 -17 46 -8 3 0 -6 8 -20 +16 -14 8 -18 13 -10 11 10 -3 15 3 16 19 2 30 -2 30 -18 2z"/> +<path d="M7916 4288 c3 -4 11 -5 19 -1 21 7 19 12 -4 10 -11 0 -18 -5 -15 -9z"/> +<path d="M2716 4282 c-3 -6 -2 -13 4 -17 6 -4 8 -11 5 -16 -3 -5 1 -6 9 -3 14 +5 21 -5 18 -28 -1 -3 6 -9 14 -12 12 -5 14 -1 9 17 -4 15 -3 18 3 8 6 -8 12 +-9 16 -3 8 13 -10 26 -23 18 -5 -4 -18 6 -29 20 -11 17 -22 23 -26 16z"/> +<path d="M7829 4290 c-1 -3 -2 -16 -3 -30 -1 -14 -5 -31 -10 -38 -7 -12 -4 +-12 15 -1 13 7 25 10 26 8 1 -2 5 -1 9 4 7 7 -11 11 -30 8 -5 -1 -3 5 4 14 10 +12 10 19 2 27 -7 7 -13 10 -13 8z"/> +<path d="M2690 4269 c0 -6 -7 -9 -15 -6 -8 4 -17 2 -19 -2 -3 -5 -17 -7 -31 +-6 -14 2 -27 -1 -31 -6 -3 -5 0 -9 6 -9 6 0 8 -6 4 -12 -5 -10 -4 -10 6 -1 11 +10 17 10 29 0 12 -9 13 -9 7 1 -6 10 7 17 17 10 2 -2 12 4 23 12 15 11 16 11 +7 0 -17 -19 -16 -35 1 -21 11 9 17 6 30 -14 9 -14 15 -25 14 -26 -34 -9 -61 2 +-38 16 5 3 10 10 10 16 0 5 -9 4 -19 -3 -11 -7 -18 -15 -16 -18 2 -4 -3 -7 +-11 -7 -10 0 -11 4 -4 11 19 19 11 37 -8 19 -22 -21 -11 -44 18 -38 25 5 34 +-10 20 -34 -7 -15 -7 -22 2 -27 7 -4 9 -3 5 1 -4 5 3 15 15 23 19 11 19 12 3 +7 -17 -5 -18 -4 -7 7 11 11 16 9 28 -7 15 -20 16 -19 12 4 -2 15 3 26 12 28 +11 3 12 2 3 -4 -9 -6 -7 -12 9 -22 18 -11 20 -11 15 3 -3 8 -1 18 5 22 6 4 9 +3 6 -2 -3 -5 3 -17 14 -26 14 -14 18 -15 18 -4 0 8 -4 18 -10 21 -5 3 -10 12 +-9 18 0 9 2 8 6 -1 2 -6 10 -9 15 -6 6 4 8 2 5 -3 -4 -6 0 -14 9 -17 12 -5 14 +-1 10 17 -3 12 -3 16 0 9 3 -6 10 -10 15 -7 5 4 6 -2 2 -11 -4 -11 -3 -15 5 +-10 6 3 15 -2 21 -11 8 -15 10 -15 11 -2 0 8 -5 20 -10 25 -7 7 -6 11 4 11 8 +0 13 -3 11 -7 -2 -3 5 -11 16 -18 20 -13 26 -3 9 14 -7 7 -6 11 4 11 8 0 13 +-4 11 -8 -3 -4 2 -10 11 -13 12 -5 15 -2 10 9 -3 10 -2 13 4 10 6 -4 9 -1 8 7 +-2 7 3 12 10 10 10 -2 12 4 7 20 -4 13 -3 18 2 11 6 -8 13 -7 28 4 18 14 18 +15 1 9 -10 -3 -26 -1 -35 6 -9 7 -13 9 -9 4 4 -5 1 -21 -7 -36 -12 -23 -19 +-26 -57 -23 -58 4 -131 6 -143 3 -27 -6 -46 1 -43 17 2 10 -3 18 -12 18 -8 1 +-14 5 -13 10 0 6 -5 16 -13 23 -10 9 -14 9 -14 1z"/> +<path d="M3153 4245 c1 -39 1 -39 29 -24 16 9 19 8 13 -2 -6 -8 -4 -10 5 -4 9 +5 11 4 6 -3 -9 -16 7 -15 22 0 12 12 13 10 16 -14 0 -6 7 -13 15 -16 8 -3 11 +0 7 6 -3 6 -1 14 5 18 8 5 9 3 4 -6 -6 -9 -4 -11 6 -5 12 7 12 6 1 -7 -10 -13 +-10 -17 4 -22 11 -4 15 -2 11 8 -6 16 9 16 37 -1 18 -10 18 -11 -4 -18 -20 -6 +-21 -9 -7 -17 10 -5 22 -6 29 -2 7 5 8 3 3 -6 -5 -9 -4 -11 4 -6 6 4 11 4 10 +-1 -4 -21 3 -20 26 1 30 27 31 36 8 36 -14 0 -15 -2 -5 -9 11 -6 9 -9 -7 -14 +-25 -6 -46 14 -30 30 16 16 -30 46 -48 32 -9 -8 -14 -7 -19 5 -4 11 -13 15 +-25 11 -12 -4 -21 -1 -25 10 -5 11 -10 13 -19 5 -15 -13 -30 3 -20 20 10 17 +-7 11 -20 -7 -9 -13 -14 -13 -20 -3 -6 9 -4 11 4 5 10 -6 11 -3 2 14 -16 29 +-19 27 -18 -14z"/> +<path d="M7857 4266 c-4 -9 0 -12 11 -9 9 2 26 -3 37 -12 19 -16 19 -16 -3 -5 +-13 7 -26 9 -30 6 -3 -3 -2 -6 2 -6 4 0 2 -10 -5 -21 -8 -16 -13 -18 -19 -9 +-5 7 -10 8 -14 2 -3 -5 1 -15 9 -22 12 -10 15 -10 15 0 0 10 3 10 15 0 9 -8 +15 -8 15 -2 0 6 -5 12 -11 14 -7 2 -5 9 5 17 13 11 17 9 27 -13 7 -14 17 -23 +23 -20 6 3 2 -2 -8 -10 -15 -12 -16 -16 -5 -16 8 0 21 6 27 12 10 10 8 16 -7 +28 -15 11 -18 19 -11 30 10 16 20 10 24 -13 1 -8 8 -22 14 -30 9 -10 10 -17 2 +-22 -5 -3 -10 -11 -10 -17 0 -6 10 -3 22 8 12 10 18 13 14 7 -4 -7 -3 -13 3 +-13 6 0 17 12 25 28 8 15 15 21 16 14 0 -7 5 -10 12 -6 7 4 8 3 4 -4 -8 -13 6 +-16 18 -5 4 4 -3 14 -14 23 -19 15 -20 18 -6 29 12 10 16 10 16 2 0 -7 4 -9 +10 -6 5 3 15 -5 22 -19 13 -30 23 -33 32 -10 9 24 7 31 -4 14 -9 -13 -11 -13 +-19 0 -5 8 -7 18 -5 22 7 11 -13 13 -74 6 -7 -1 -10 -8 -7 -15 7 -21 -13 -53 +-29 -47 -20 8 -28 32 -16 54 5 10 7 26 4 34 -5 14 -9 13 -31 -4 -20 -16 -28 +-17 -44 -7 -10 6 -19 15 -19 19 0 14 -28 9 -33 -6z m116 -27 c-8 -8 -13 -7 +-18 2 -5 8 -4 10 3 5 7 -4 12 -2 12 5 0 7 3 9 7 6 4 -4 2 -12 -4 -18z"/> +<path d="M8230 4276 c0 -4 7 -14 15 -22 8 -9 15 -11 15 -6 0 5 -7 15 -15 22 +-8 7 -15 9 -15 6z"/> +<path d="M7553 4248 c-26 -33 -26 -40 -2 -34 13 3 18 3 12 0 -15 -7 1 -44 18 +-44 6 0 7 5 3 12 -4 7 -8 25 -9 40 -2 34 -9 43 -22 26z"/> +<path d="M7519 4245 c-1 -3 -2 -11 -3 -17 -1 -7 -11 -12 -22 -11 -14 2 -25 -6 +-33 -23 -9 -20 -9 -25 1 -22 7 3 13 10 13 16 0 7 5 11 10 10 6 -2 9 -7 7 -12 +-2 -5 4 -6 13 -2 9 3 14 2 11 -3 -3 -5 1 -11 9 -15 8 -3 15 -1 15 5 0 6 5 7 +11 3 8 -5 8 -9 -1 -14 -9 -6 -6 -11 10 -20 31 -17 33 -8 6 29 -16 21 -26 28 +-29 19 -6 -14 -11 15 -8 45 2 15 -7 25 -10 12z"/> +<path d="M2800 4225 c-14 -16 -3 -20 19 -6 8 5 9 11 3 15 -5 3 -15 -1 -22 -9z"/> +<path d="M3020 4210 c-6 -12 -16 -18 -23 -14 -7 4 -9 4 -5 -1 10 -10 -10 -47 +-22 -40 -5 3 -12 1 -15 -5 -5 -8 -11 -8 -20 0 -9 8 -14 7 -18 -5 -4 -8 -13 +-12 -22 -9 -8 3 -13 9 -11 13 3 4 -6 7 -19 7 -14 0 -26 -5 -29 -12 -3 -8 4 +-11 19 -9 15 1 22 -2 18 -8 -3 -6 -1 -7 5 -3 6 3 13 2 17 -3 3 -6 12 -8 20 -5 +8 4 12 11 8 17 -3 6 -1 7 6 3 6 -4 9 -12 6 -17 -3 -5 1 -6 9 -3 9 3 13 11 9 +17 -4 6 -1 7 7 2 9 -5 11 -4 6 3 -4 8 -2 10 7 6 8 -3 17 2 21 11 3 9 11 13 18 +9 7 -5 9 -2 5 9 -7 19 17 42 34 31 7 -4 10 -2 7 6 -7 23 -26 22 -38 0z"/> +<path d="M7591 4206 c-16 -19 5 -32 25 -15 8 7 14 8 13 3 -4 -21 2 -35 12 -29 +6 4 8 9 5 12 -3 3 0 15 6 27 8 17 8 19 -2 9 -9 -8 -19 -9 -30 -3 -13 7 -21 5 +-29 -4z"/> +<path d="M7893 4201 c2 -23 -2 -25 -38 -25 -38 0 -55 -9 -55 -31 0 -5 5 -3 10 +5 9 13 10 13 10 0 0 -13 1 -13 10 0 8 12 12 13 19 2 6 -11 10 -10 15 5 7 17 8 +17 21 0 8 -11 11 -26 7 -35 -5 -15 -3 -15 11 -3 11 9 14 18 8 30 -5 9 -6 21 +-4 28 2 7 0 20 -6 30 -9 16 -10 15 -8 -6z"/> +<path d="M8073 4197 c13 -12 21 -21 18 -20 -2 2 -10 -2 -18 -8 -9 -8 -17 -8 +-25 -1 -10 7 -18 4 -31 -13 -16 -22 -16 -25 -1 -33 11 -6 13 -11 5 -16 -6 -4 +-11 -2 -11 3 0 8 -7 7 -20 -1 -14 -9 -16 -15 -7 -21 7 -5 2 -5 -13 -1 -14 3 +-22 3 -18 -1 12 -13 -12 -34 -29 -28 -12 5 -14 3 -8 -7 5 -8 4 -11 -2 -7 -6 4 +-9 17 -8 30 2 14 -5 28 -16 35 -12 8 -19 8 -19 2 0 -5 4 -10 9 -10 13 0 8 -53 +-8 -72 -8 -9 -23 -15 -33 -13 -14 3 -18 0 -14 -11 3 -9 1 -12 -4 -9 -6 3 -10 +1 -10 -6 0 -10 -3 -10 -12 -1 -16 16 -27 15 -24 -3 3 -18 16 -32 16 -17 0 7 3 +11 8 10 14 -5 102 44 96 54 -3 5 0 8 7 6 23 -4 99 36 94 50 -2 6 0 12 5 12 6 +0 10 -6 10 -12 0 -9 4 -8 10 2 5 8 10 11 10 5 0 -5 7 -2 14 8 8 10 17 18 20 +18 20 -3 26 1 26 13 0 8 -3 16 -7 19 -5 2 -3 2 4 1 19 -5 24 12 12 38 -5 13 +-19 24 -29 25 -18 2 -18 0 3 -20z m-19 -45 c2 -4 1 -14 -4 -21 -10 -17 -31 -5 +-23 14 6 16 19 20 27 7z"/> +<path d="M8146 4205 c-7 -18 2 -45 16 -45 5 0 6 10 3 23 -3 12 -3 18 2 12 11 +-14 33 -17 33 -4 0 5 5 7 12 3 7 -5 8 -3 4 5 -5 7 -15 10 -23 7 -9 -4 -21 -2 +-28 4 -9 8 -14 6 -19 -5z"/> +<path d="M2706 4202 c-3 -5 1 -9 9 -9 8 0 12 4 9 9 -3 4 -7 8 -9 8 -2 0 -6 -4 +-9 -8z"/> +<path d="M3118 4202 c-22 -4 -24 -22 -3 -22 8 0 15 5 15 11 0 8 5 7 16 -2 13 +-10 17 -10 24 0 5 9 10 10 14 2 4 -6 2 -11 -5 -11 -7 0 -10 -3 -6 -6 3 -3 13 +-2 23 4 12 7 13 11 5 17 -14 8 -58 12 -83 7z"/> +<path d="M3212 4184 c-16 -18 -27 -24 -40 -19 -22 10 -42 10 -65 0 -10 -4 -17 +-4 -16 1 4 22 -2 34 -16 34 -8 0 -15 -4 -15 -10 0 -5 8 -10 18 -10 9 0 13 -4 +7 -8 -5 -4 -12 -16 -13 -26 -3 -17 -1 -18 11 -7 13 10 17 9 25 -6 5 -10 7 -25 +4 -33 -5 -13 -3 -13 12 -1 15 13 15 15 -1 40 -14 22 -14 24 -1 13 10 -8 19 -9 +22 -3 3 5 1 12 -4 14 -6 3 -5 4 2 3 7 -2 12 -9 10 -16 -2 -7 3 -10 12 -7 19 7 +32 -11 18 -25 -6 -6 -15 -4 -26 7 -9 9 -16 12 -16 6 0 -5 5 -13 10 -16 7 -4 7 +-12 0 -25 -13 -25 -13 -26 11 -27 16 -2 18 1 9 12 -9 11 -7 16 7 23 10 5 23 8 +28 6 6 -3 11 5 12 16 1 13 -2 18 -9 14 -7 -4 -8 -2 -4 4 4 7 1 12 -6 12 -7 1 +-2 7 12 14 29 17 42 12 33 -12 -6 -14 -4 -15 9 -5 17 15 29 7 21 -13 -3 -8 0 +-14 7 -14 6 0 8 5 5 10 -3 6 -1 10 5 10 7 0 10 -6 7 -14 -4 -10 0 -14 13 -11 +11 2 19 -1 17 -7 -1 -6 4 -13 12 -16 9 -3 11 0 6 8 -5 8 -4 11 3 7 5 -4 8 -17 +5 -30 -4 -18 -3 -19 6 -7 8 12 11 12 11 1 0 -8 7 -4 18 9 20 25 22 21 22 -37 +0 -13 5 -23 11 -23 5 0 8 4 4 9 -3 5 -1 12 5 16 7 4 7 12 0 24 -6 13 -5 24 4 +36 12 17 13 17 19 1 5 -12 3 -15 -6 -10 -9 5 -9 4 -1 -5 6 -6 18 -9 27 -5 15 +5 14 8 -6 24 -19 16 -24 16 -38 4 -12 -11 -18 -11 -29 -1 -8 8 -11 8 -6 0 12 +-22 -18 -19 -57 6 -33 22 -36 27 -23 37 9 6 13 14 9 17 -3 4 -11 0 -17 -8 -10 +-13 -15 -12 -44 5 -18 11 -30 25 -27 30 11 18 1 10 -23 -16z"/> +<path d="M3029 4193 c-1 -5 -2 -12 -3 -18 0 -5 -5 -12 -11 -14 -5 -3 -25 -21 +-44 -40 -19 -20 -32 -31 -28 -25 4 6 -3 10 -16 9 -12 -1 -26 0 -32 4 -5 3 -16 +7 -22 8 -52 12 -74 24 -66 37 4 6 0 6 -9 -2 -12 -10 -18 -10 -23 -1 -6 8 -10 +7 -16 -4 -6 -9 -17 -13 -29 -10 -21 6 -28 -11 -8 -23 7 -5 8 -3 3 7 -5 8 4 2 +20 -13 26 -26 38 -32 58 -29 4 0 7 -4 7 -10 0 -5 4 -8 9 -5 5 4 11 2 13 -2 5 +-14 179 -103 188 -97 17 10 -1 33 -24 31 -16 -2 -23 2 -22 13 0 9 -5 15 -11 +14 -7 -2 -13 2 -13 7 0 6 5 10 12 10 22 0 -3 14 -30 17 -15 1 -21 0 -14 -3 17 +-8 36 -44 22 -44 -5 0 -10 7 -10 15 0 8 -5 15 -11 15 -5 0 -7 -5 -3 -11 3 -6 +-8 -3 -25 6 -18 9 -29 20 -26 25 3 5 1 11 -5 15 -5 3 -10 1 -10 -5 0 -6 -9 -4 +-23 5 -13 8 -27 12 -32 8 -4 -5 -5 -2 -1 4 5 9 2 11 -11 7 -14 -4 -15 -3 -4 4 +8 6 9 12 3 16 -6 3 -12 1 -14 -6 -3 -9 -6 -9 -12 0 -4 7 -2 12 4 12 6 0 8 5 4 +13 -6 8 -3 8 9 -1 9 -8 20 -11 25 -8 6 3 15 -1 22 -10 11 -12 15 -12 21 -2 6 +9 9 9 9 1 0 -6 9 -10 19 -8 25 5 35 -20 16 -39 -13 -12 -12 -15 1 -20 9 -3 17 +-6 18 -6 3 0 4 7 8 47 1 14 4 13 18 -4 14 -18 17 -18 30 -4 8 8 14 17 12 19 +-2 1 -2 6 1 10 2 4 2 1 0 -6 -1 -8 3 -12 9 -9 7 2 13 12 13 23 0 12 6 18 18 +16 9 -2 17 1 16 5 -3 20 2 25 15 14 10 -8 16 -9 21 -1 3 5 1 10 -4 10 -6 0 +-10 3 -10 8 3 18 -2 32 -11 32 -5 0 -11 -3 -11 -7z"/> +<path d="M7426 4193 c-4 -5 -13 -8 -19 -8 -7 0 -13 -10 -13 -22 -1 -13 3 -23 +7 -23 5 0 9 4 9 8 0 5 7 17 16 28 8 10 12 13 9 6 -9 -18 27 -45 38 -29 5 7 6 +3 3 -9 -5 -14 -2 -21 9 -21 11 0 14 7 9 21 -4 15 -3 17 4 8 5 -8 12 -13 16 +-13 18 3 24 -1 35 -26 7 -15 15 -23 19 -17 4 5 13 10 20 12 10 2 10 -2 2 -19 +-9 -16 -14 -18 -25 -9 -11 9 -14 7 -12 -9 2 -28 12 -26 43 4 22 22 24 28 13 +42 -8 9 -15 11 -17 4 -2 -6 -26 5 -54 24 -38 27 -54 33 -64 24 -17 -14 -35 -3 +-27 16 5 16 -8 20 -21 8z"/> +<path d="M7656 4191 c-2 -3 12 -16 31 -29 20 -13 33 -17 30 -10 -3 10 5 13 28 +13 18 0 31 -3 28 -8 -10 -16 -13 -56 -4 -61 4 -3 7 -17 5 -31 -1 -16 2 -25 9 +-22 17 5 15 47 -2 57 -9 5 -12 12 -8 16 5 5 12 2 17 -6 5 -8 12 -11 17 -7 4 5 +3 11 -3 15 -6 4 -10 17 -9 30 1 13 -2 25 -7 28 -4 3 -6 11 -2 17 3 7 -1 3 -10 +-7 -11 -14 -19 -16 -29 -8 -7 6 -18 7 -26 2 -16 -9 -43 -2 -36 9 2 4 -3 8 -11 +8 -8 0 -16 -3 -18 -6z"/> +<path d="M7610 4177 c0 -4 7 -21 15 -37 9 -17 13 -30 11 -30 -3 0 -13 15 -22 +33 -11 20 -19 27 -22 18 -2 -7 -1 -16 4 -20 31 -22 34 -38 12 -67 -19 -24 -20 +-27 -4 -21 10 4 20 7 22 7 3 0 2 5 -2 12 -4 7 -3 8 5 4 6 -4 9 -12 6 -17 -12 +-18 15 -9 37 13 l21 21 -26 21 c-19 15 -24 25 -17 36 5 8 12 11 17 7 4 -5 2 +-12 -6 -16 -10 -6 -9 -10 5 -15 9 -3 19 -4 22 -1 3 3 0 5 -7 5 -7 0 -9 5 -5 +11 11 18 22 -8 18 -42 -3 -27 -2 -28 16 -16 11 6 16 13 10 15 -14 5 -12 19 4 +25 10 4 12 -4 9 -31 -2 -24 0 -32 5 -24 5 8 12 13 16 13 16 -2 18 0 7 12 -6 8 +-9 23 -6 36 2 12 0 19 -5 16 -4 -3 -11 1 -13 7 -3 8 -6 6 -6 -4 -1 -23 -6 -23 +-41 4 -23 17 -32 19 -44 9 -12 -10 -16 -9 -25 6 -6 10 -11 14 -11 10z m54 -97 +c-6 -6 -15 -6 -24 0 -13 9 -13 11 0 20 18 11 39 -5 24 -20z"/> +<path d="M7947 4160 c-8 -11 -17 -18 -20 -15 -4 3 -5 2 -2 -2 3 -3 0 -12 -7 +-20 -6 -7 -8 -17 -4 -21 4 -4 12 1 17 11 6 9 15 14 21 11 7 -5 5 -12 -7 -21 +-11 -7 -14 -13 -8 -13 7 0 18 7 27 15 8 9 18 16 21 15 3 0 5 2 5 5 0 3 0 10 0 +16 0 8 -5 7 -15 -1 -21 -17 -32 -4 -17 20 16 26 7 26 -11 0z"/> +<path d="M8115 4160 c-17 -18 -17 -20 -1 -20 9 0 19 7 23 15 9 25 -2 27 -22 5z"/> +<path d="M3222 4163 c-6 -2 -9 -10 -5 -16 13 -20 10 -66 -4 -72 -8 -2 -11 -1 +-8 4 8 14 -9 21 -25 10 -12 -7 -12 -9 -1 -9 8 0 11 -6 7 -16 -4 -10 -2 -13 7 +-9 6 4 4 0 -6 -8 -11 -9 -14 -18 -8 -21 6 -4 18 5 27 19 13 21 19 23 31 13 12 +-10 14 -9 11 8 -1 10 -7 22 -11 25 -5 3 1 9 12 12 14 3 19 1 14 -6 -3 -7 -3 +-9 2 -5 4 4 14 3 22 -3 10 -9 13 -8 13 0 0 7 5 9 11 5 8 -4 7 -9 -2 -15 -9 -5 +-5 -11 15 -20 21 -10 26 -18 22 -34 -4 -15 -1 -22 9 -22 11 0 13 7 9 21 -3 12 +-2 16 3 10 5 -7 14 -4 26 9 18 18 18 18 -11 14 -24 -4 -34 1 -52 25 -12 16 +-24 27 -27 24 -11 -11 -45 16 -39 31 5 13 4 14 -8 4 -16 -13 -32 1 -21 19 7 +11 6 11 -13 3z"/> +<path d="M7350 4155 c-7 -8 -17 -12 -22 -9 -6 4 -6 -2 1 -13 6 -11 7 -23 4 +-27 -3 -3 -3 -6 1 -6 4 0 14 7 22 15 14 14 11 19 -9 16 -5 -1 -6 3 -2 9 4 7 +17 3 35 -10 27 -19 29 -20 39 -3 6 11 11 13 11 5 0 -7 4 -11 9 -7 6 3 14 -2 +19 -11 6 -11 21 -17 43 -16 24 1 29 -2 19 -8 -8 -6 -10 -10 -5 -10 27 0 35 16 +18 39 l-16 24 -13 -24 c-7 -13 -13 -18 -14 -11 0 7 -4 11 -9 7 -6 -3 -15 4 +-21 15 -6 11 -15 18 -21 15 -5 -4 -9 -1 -9 6 0 7 -6 5 -13 -6 -13 -17 -43 -13 +-32 5 9 15 -23 19 -35 5z"/> +<path d="M3032 4140 c2 -9 -4 -14 -14 -14 -10 1 -14 -4 -11 -11 2 -8 -7 -21 +-22 -31 -30 -20 -19 -43 12 -25 10 6 12 11 6 11 -8 0 -4 10 9 25 15 18 25 22 +34 14 8 -7 14 -6 18 3 3 7 3 3 0 -9 -4 -18 -2 -22 10 -17 9 3 13 11 9 17 -3 5 +-1 7 5 3 6 -3 14 -1 18 5 5 8 3 9 -6 4 -10 -6 -12 -4 -7 9 5 12 3 15 -6 9 -18 +-12 -31 -10 -45 7 -11 13 -12 13 -10 0z"/> +<path d="M7811 4113 c0 -13 -1 -34 -2 -48 -1 -14 -6 -25 -11 -25 -6 0 -7 -8 +-4 -17 6 -15 5 -15 -13 1 -19 18 -21 18 -47 -3 -18 -14 -22 -21 -11 -21 9 0 +19 5 22 10 3 6 12 10 18 10 9 0 8 -3 -1 -8 -8 -6 -2 -9 17 -9 17 0 33 7 35 14 +3 8 11 11 17 7 8 -4 9 -3 5 5 -4 6 -12 8 -18 5 -7 -4 -8 -2 -4 4 8 13 36 5 36 +-12 1 -6 8 1 16 17 12 21 12 32 3 49 -9 18 -8 24 6 34 15 11 12 12 -23 11 -34 +-1 -40 -5 -41 -24z m42 -7 c4 -10 1 -13 -9 -9 -15 6 -19 23 -5 23 5 0 11 -7 +14 -14z m-3 -40 c0 -6 5 -4 10 4 6 9 10 10 10 3 0 -20 -18 -24 -34 -7 -11 10 +-16 11 -16 3 0 -7 -3 -10 -6 -6 -3 3 -3 10 0 16 8 13 36 3 36 -13z"/> +<path d="M2800 4112 c0 -6 9 -16 19 -22 25 -13 31 -13 31 2 0 6 -3 8 -7 5 -3 +-4 -15 0 -25 10 -10 9 -18 11 -18 5z"/> +<path d="M7269 4113 c-1 -5 -2 -12 -3 -18 0 -5 -5 -10 -9 -10 -5 0 -13 -8 -18 +-17 -5 -10 -16 -15 -24 -12 -8 4 -12 11 -8 17 3 6 1 7 -5 3 -9 -5 -7 -14 5 +-31 16 -21 20 -22 35 -8 16 15 43 9 33 -7 -3 -4 1 -10 8 -13 14 -5 16 -34 4 +-53 -3 -6 -4 -22 -1 -35 3 -13 5 -35 5 -48 -1 -24 -1 -24 13 -6 10 14 11 25 5 +37 -5 10 -6 18 -2 18 4 0 1 5 -7 10 -13 9 -13 11 1 20 18 10 19 48 2 58 -7 4 +-11 16 -10 27 1 14 -4 20 -18 18 -20 -2 -20 -2 0 13 17 13 18 16 5 25 -12 9 +-12 10 3 5 11 -3 16 -2 12 4 -7 12 -24 13 -26 3z"/> +<path d="M7302 4095 c-8 -16 -8 -26 -1 -31 6 -3 8 -12 5 -20 -3 -8 1 -17 10 +-21 8 -3 13 -12 10 -20 -3 -8 -1 -23 4 -33 11 -21 3 -53 -12 -44 -6 4 -5 -2 1 +-14 7 -14 8 -23 1 -27 -5 -3 -9 -16 -8 -28 0 -12 -3 -30 -7 -40 -5 -13 -3 -16 +8 -11 10 3 14 17 12 40 -1 19 2 35 7 35 4 1 14 2 20 3 7 0 14 10 16 21 3 16 1 +17 -7 5 -10 -13 -11 -13 -11 0 0 13 -1 13 -11 0 -9 -13 -10 -13 -6 0 2 8 10 +15 18 15 7 0 15 9 17 20 3 17 1 18 -8 5 -9 -12 -10 -11 -5 8 4 15 2 22 -5 20 +-7 -2 -15 4 -17 12 -4 12 -3 12 5 2 7 -11 10 -10 16 3 8 23 8 27 -3 20 -6 -3 +-15 4 -21 15 -6 11 -7 20 -3 20 4 0 1 5 -7 11 -12 8 -10 9 8 4 16 -5 22 -3 20 +7 -2 7 3 12 10 10 8 -1 11 1 8 6 -2 4 4 8 14 8 10 0 16 -4 14 -8 -3 -4 -1 -8 +5 -8 5 0 12 6 14 13 4 9 6 8 6 -2 1 -11 4 -11 19 0 14 11 13 10 -2 -9 -11 -12 +-14 -22 -8 -22 6 0 14 5 17 10 4 6 11 8 16 5 5 -4 4 5 -2 18 -11 24 -30 29 +-45 14 -4 -4 -13 -2 -21 4 -10 9 -18 8 -33 -6 -18 -17 -46 -13 -35 6 4 5 2 9 +-3 9 -5 0 -14 -11 -20 -25z m28 -9 c0 -2 -7 -7 -16 -10 -8 -3 -12 -2 -9 4 6 +10 25 14 25 6z"/> +<path d="M3021 4092 c-6 -11 -8 -22 -4 -25 3 -4 -6 -12 -21 -18 -24 -11 -25 +-14 -10 -30 18 -20 51 -15 35 5 -6 7 -6 18 -1 26 5 8 6 18 3 24 -4 5 -1 6 8 0 +20 -12 63 -12 71 0 5 7 8 4 8 -7 0 -10 4 -16 9 -13 5 4 11 3 14 -1 2 -5 2 -2 +0 5 -1 7 2 23 8 35 9 21 9 21 -5 3 -8 -10 -19 -15 -25 -12 -6 4 -19 3 -28 -2 +-20 -10 -46 -5 -38 8 3 5 1 11 -4 15 -6 3 -15 -3 -20 -13z m-17 -68 c3 -8 2 +-12 -4 -9 -6 3 -10 10 -10 16 0 14 7 11 14 -7z"/> +<path d="M2860 4090 c0 -13 18 -22 24 -11 3 5 -1 11 -9 15 -8 3 -15 1 -15 -4z"/> +<path d="M3259 4079 c-8 -5 -12 -9 -9 -10 3 0 14 -2 24 -4 25 -5 37 -26 24 +-42 -7 -9 -7 -13 0 -13 6 0 16 8 21 18 6 9 11 12 11 5 0 -6 -5 -15 -11 -19 -8 +-4 -7 -9 2 -16 10 -7 8 -8 -7 -4 -14 5 -21 2 -21 -9 0 -17 6 -18 27 -5 10 6 +23 4 39 -7 22 -14 24 -14 18 1 -3 9 -3 15 1 15 4 -1 14 -1 22 0 13 1 13 2 0 +12 -13 9 -13 10 0 6 8 -2 14 -10 12 -17 -1 -6 3 -10 10 -7 7 2 12 9 11 15 -2 +6 6 9 17 7 11 -2 20 0 20 4 0 16 -13 20 -33 9 -16 -8 -23 -7 -32 6 -11 14 -13 +13 -23 -8 -13 -29 -47 -28 -47 1 0 28 -57 74 -76 62z"/> +<path d="M3440 4071 c10 -19 9 -25 -1 -33 -11 -7 -11 -8 1 -6 8 1 25 -3 38 +-10 18 -10 20 -17 12 -31 -7 -14 -5 -22 7 -32 14 -12 15 -12 11 1 -3 8 -1 23 +4 32 6 14 2 21 -22 33 -37 19 -38 23 -5 20 14 -2 25 1 25 6 0 6 5 7 12 3 7 -5 +8 -3 3 6 -5 8 -4 11 3 6 5 -3 13 0 16 6 3 7 3 2 0 -10 -5 -21 -4 -23 15 -13 +15 9 21 9 21 1 0 -6 4 -8 10 -5 5 3 18 1 29 -5 15 -7 22 -7 27 2 4 7 3 10 -1 +5 -5 -4 -19 0 -32 8 -13 9 -23 12 -23 8 0 -5 -5 -1 -10 7 -8 13 -10 13 -10 1 +0 -11 -3 -11 -13 3 -13 18 -47 13 -47 -6 0 -6 -7 -5 -15 2 -12 10 -19 10 -27 +2 -8 -8 -15 -7 -25 6 -12 15 -13 14 -3 -7z"/> +<path d="M7473 4069 c-2 -16 1 -18 12 -9 10 8 15 8 22 -4 7 -12 11 -13 27 0 +11 8 18 14 15 15 -2 0 -13 2 -24 4 -11 1 -27 5 -35 9 -11 5 -16 0 -17 -15z"/> +<path d="M7920 4075 c7 -8 17 -12 22 -9 6 4 5 10 -3 15 -22 14 -33 10 -19 -6z"/> +<path d="M7356 4068 c3 -4 -1 -11 -10 -14 -17 -6 -10 -35 7 -31 7 1 11 -7 10 +-18 -1 -10 5 -31 13 -47 16 -32 18 -41 4 -33 -5 3 -7 0 -5 -7 3 -8 15 -14 26 +-15 16 -2 18 1 9 12 -9 11 -7 16 7 23 10 5 25 7 33 4 13 -5 13 -3 1 12 -13 15 +-15 15 -40 -1 -22 -14 -24 -14 -13 -1 9 11 10 18 2 23 -5 3 -10 0 -10 -7 0 -8 +-5 -6 -11 5 -5 9 -8 21 -4 26 3 5 1 21 -5 35 -6 17 -6 27 2 32 7 5 8 3 3 -6 +-6 -9 -1 -10 16 -5 17 4 20 3 10 -3 -9 -7 -10 -12 -2 -16 13 -8 13 -8 16 19 2 +17 -4 20 -31 21 -18 0 -31 -3 -28 -8z"/> +<path d="M7702 4068 c-7 -7 -12 -8 -12 -4 0 5 -7 2 -16 -5 -10 -8 -45 -14 -83 +-16 -36 -1 -68 -2 -71 -3 -3 -1 -8 -2 -12 -1 -10 1 -10 -3 -2 -23 3 -9 11 -16 +16 -16 6 0 7 7 4 16 -4 10 -2 13 6 8 7 -5 8 -3 3 6 -5 8 -4 11 3 6 6 -4 9 -12 +6 -20 -3 -7 2 -13 11 -13 8 0 14 5 13 11 -2 6 2 11 7 11 5 0 9 -6 7 -12 -2 -8 +3 -10 12 -7 9 3 14 11 13 16 -1 6 4 13 11 15 14 6 16 -13 2 -22 -5 -3 -10 -10 +-10 -16 0 -5 9 -4 19 3 11 7 19 16 18 21 -1 5 4 12 11 14 14 6 16 -13 2 -22 +-5 -3 -10 -13 -10 -22 0 -11 5 -9 19 8 12 15 16 28 10 35 -6 7 -1 10 14 8 12 +-1 26 -3 30 -3 5 -1 5 -7 1 -13 -4 -7 3 -4 17 7 13 11 26 21 29 23 3 2 -4 3 +-15 2 -34 -4 -46 0 -40 10 8 14 2 13 -13 -2z"/> +<path d="M7433 4048 c-19 -18 -20 -23 -8 -32 10 -8 12 -15 5 -26 -9 -13 -11 +-13 -19 0 -5 8 -8 17 -5 21 2 4 -2 12 -9 18 -11 8 -14 4 -14 -19 0 -17 3 -28 +5 -25 3 3 11 0 18 -5 6 -6 16 -10 20 -9 20 5 44 -14 39 -30 -3 -9 2 -26 10 +-37 15 -19 16 -19 13 1 -2 11 -7 23 -13 27 -6 4 -2 8 8 8 9 0 17 5 17 10 0 6 +-6 10 -13 10 -7 0 -22 7 -33 16 -18 15 -18 15 3 5 27 -14 29 -14 31 2 1 6 3 +27 5 45 3 29 2 31 -12 17 -13 -13 -13 -17 -3 -24 10 -6 10 -10 -1 -20 -12 -9 +-18 -6 -31 13 -11 18 -13 27 -4 32 6 4 8 3 4 -4 -3 -6 -2 -13 3 -16 5 -3 11 1 +15 9 3 8 1 15 -5 15 -6 0 -7 5 -4 10 10 16 1 11 -22 -12z"/> +<path d="M3026 4044 c-3 -8 -2 -15 3 -18 4 -3 6 -20 5 -38 -2 -34 12 -62 26 +-53 5 3 14 -1 22 -8 17 -17 58 -40 78 -43 8 -2 16 -7 18 -13 2 -5 10 -7 19 -4 +12 5 14 3 8 -7 -5 -9 -4 -11 3 -6 7 4 12 3 12 -3 0 -6 7 -7 17 -4 11 4 14 3 9 +-5 -4 -8 -2 -10 7 -6 21 8 14 38 -9 42 -16 3 -17 1 -4 -7 20 -14 7 -14 -25 1 +-19 9 -22 14 -13 21 9 6 6 7 -9 4 -12 -3 -30 1 -40 8 -16 12 -16 14 -2 20 19 +7 21 35 2 35 -7 0 -12 -3 -11 -7 2 -14 -14 -43 -24 -43 -6 0 -5 6 2 15 8 9 8 +15 2 15 -6 0 -12 -6 -14 -12 -3 -8 -12 -1 -22 15 -20 30 -38 36 -30 10 4 -12 +3 -14 -3 -6 -5 7 -8 25 -7 40 1 15 3 35 3 43 1 12 3 13 10 1 5 -7 11 -9 13 -5 +3 5 3 4 2 -3 -2 -6 4 -14 13 -17 10 -4 13 -2 10 8 -9 22 5 28 25 9 10 -9 21 +-13 24 -10 4 3 -9 15 -27 26 -24 15 -36 17 -46 9 -7 -6 -13 -6 -13 -1 0 14 +-28 12 -34 -3z"/> +<path d="M3147 4046 c-4 -9 -2 -18 2 -20 5 -3 7 -17 6 -30 -2 -14 3 -27 10 +-30 9 -3 12 -16 8 -38 -4 -32 -4 -32 12 -13 9 11 14 15 11 8 -4 -6 3 -15 15 +-18 17 -6 19 -9 8 -16 -8 -5 -9 -9 -4 -9 17 0 30 14 33 34 3 17 1 18 -11 7 +-13 -10 -18 -9 -27 10 -7 12 -8 19 -2 15 6 -3 13 -2 17 4 6 10 -7 14 -32 11 +-18 -2 -25 16 -8 23 8 3 17 1 20 -4 4 -6 11 -10 16 -10 6 0 3 8 -6 17 -16 15 +-16 18 -1 28 9 7 12 16 8 20 -4 5 -1 5 6 1 7 -4 10 -11 7 -16 -3 -5 -1 -11 5 +-15 5 -3 10 -3 11 2 0 4 2 16 4 25 2 11 -2 15 -11 11 -8 -3 -14 0 -14 7 0 7 +-10 0 -22 -16 -34 -45 -35 -46 -43 -33 -6 8 -4 10 4 4 10 -6 10 -3 0 16 -7 13 +-11 26 -10 27 2 2 1 6 -2 8 -2 3 -7 -2 -10 -10z"/> +<path d="M3270 4051 c0 -6 1 -12 2 -13 1 -2 -4 -14 -11 -27 -9 -17 -16 -20 +-24 -12 -6 6 -16 11 -21 11 -6 0 -5 -4 2 -8 16 -11 24 -50 11 -57 -5 -4 -9 +-12 -9 -18 0 -8 3 -7 9 2 5 7 14 11 19 7 7 -4 9 2 7 15 -3 12 0 29 6 38 8 12 +8 11 3 -8 -5 -21 -4 -22 8 -10 15 14 21 42 6 33 -15 -9 -8 9 8 20 14 11 14 13 +0 25 -11 9 -16 10 -16 2z"/> +<path d="M7151 4032 c-13 -25 -3 -62 10 -40 7 11 9 11 9 0 0 -9 7 -11 20 -7 +21 7 23 2 22 -47 0 -24 2 -26 18 -15 14 8 16 13 7 19 -9 6 -8 10 3 18 11 7 11 +10 2 10 -8 0 -10 5 -6 13 4 6 4 9 -1 5 -4 -4 -14 -3 -21 2 -6 6 -18 9 -25 8 +-9 -2 -14 6 -14 19 0 31 -12 38 -24 15z m10 -15 c-10 -9 -11 -8 -5 6 3 10 9 +15 12 12 3 -3 0 -11 -7 -18z"/> +<path d="M3510 4032 c0 -4 5 -13 12 -20 8 -8 8 -15 -1 -26 -10 -11 -9 -16 5 +-24 18 -10 11 -32 -9 -32 -7 0 -6 4 3 11 13 10 13 10 0 6 -9 -3 -24 1 -34 8 +-14 11 -16 17 -6 37 11 22 10 22 -4 4 -9 -12 -16 -14 -16 -7 0 9 -5 7 -16 -4 +-9 -8 -24 -13 -34 -10 -11 3 -20 -1 -24 -11 -5 -13 -9 -14 -20 -4 -12 9 -17 7 +-26 -9 -11 -21 3 -31 15 -11 3 5 12 7 19 4 7 -3 16 2 20 12 6 15 8 15 28 -2 +17 -15 20 -16 16 -3 -4 9 -1 16 8 16 7 0 10 -5 7 -10 -4 -6 -1 -7 7 -2 9 5 11 +4 6 -3 -5 -8 -1 -10 11 -6 14 4 15 3 4 -4 -9 -7 -10 -12 -2 -16 6 -4 11 -5 11 +-1 0 3 9 1 19 -4 22 -12 47 10 38 34 -4 8 -2 17 3 20 6 4 10 11 10 17 0 6 -5 +7 -13 2 -7 -5 -5 -2 5 7 9 9 14 20 10 24 -4 5 -1 5 6 1 6 -4 12 -2 12 3 0 17 +-21 13 -35 -6 -9 -13 -14 -13 -20 -3 -5 9 -4 11 3 6 7 -4 12 -2 12 3 0 6 -7 +11 -15 11 -8 0 -15 -4 -15 -8z"/> +<path d="M3573 4001 c-17 -31 -18 -41 -8 -45 8 -3 19 3 27 11 11 15 11 16 -5 +10 -15 -6 -16 -4 -7 13 6 11 15 20 21 20 6 0 7 5 3 12 -4 7 -3 8 4 4 6 -4 9 +-12 6 -20 -3 -7 2 -13 10 -13 8 0 13 4 10 9 -3 4 1 8 8 8 12 1 -29 29 -43 30 +-3 0 -15 -18 -26 -39z"/> +<path d="M7102 4015 c-15 -32 -15 -35 -1 -35 5 0 8 4 5 8 -3 5 1 9 9 9 8 0 12 +-4 9 -8 -6 -10 31 -30 40 -21 4 3 4 -2 0 -12 -6 -15 -4 -17 7 -10 8 5 17 9 22 +9 20 0 4 19 -17 20 -30 0 -39 8 -41 37 -2 31 -20 33 -33 3z"/> +<path d="M7687 4014 c-18 -25 -18 -25 0 -22 13 2 17 -2 15 -16 -3 -18 -2 -18 +13 -6 14 12 14 15 2 22 -9 5 -13 16 -10 28 7 26 2 25 -20 -6z"/> +<path d="M3108 4018 c16 -20 -3 -30 -31 -16 -28 14 -29 5 -5 -29 22 -31 65 +-41 65 -15 0 6 -3 10 -5 7 -3 -3 -12 1 -20 8 -13 10 -15 9 -9 -5 8 -23 5 -23 +-16 2 -16 19 -16 20 1 17 9 -1 22 -6 27 -9 6 -4 16 -3 23 1 9 5 4 14 -15 32 +-15 13 -22 17 -15 7z"/> +<path d="M7046 3995 c-11 -8 -15 -15 -10 -15 6 0 16 6 24 13 12 10 12 9 1 -5 +-7 -10 -21 -20 -32 -23 -10 -4 -19 -10 -19 -16 0 -5 16 0 36 11 19 11 33 16 +29 10 -4 -6 -1 -9 7 -8 7 2 12 -5 12 -15 -1 -10 3 -16 10 -14 6 2 10 12 9 21 +-1 15 3 14 20 -5 12 -13 21 -27 20 -31 -5 -16 16 -8 26 10 6 10 11 12 11 4 0 +-7 5 -10 11 -6 8 4 7 9 -2 15 -8 4 -18 4 -23 -1 -5 -5 -18 0 -32 13 -12 12 +-31 22 -41 22 -11 0 -17 7 -17 18 2 21 -14 22 -40 2z"/> +<path d="M3597 3989 c11 -13 10 -19 -5 -33 -10 -9 -22 -14 -25 -11 -4 3 -5 2 +-2 -2 6 -8 -37 -39 -48 -35 -5 1 -6 -3 -2 -10 4 -7 -1 -4 -10 7 -16 19 -16 19 +-11 -10 2 -16 5 -32 5 -34 1 -2 10 6 21 19 11 13 20 17 20 10 0 -10 3 -10 15 +0 13 11 13 15 3 21 -9 6 -10 9 -1 9 7 0 24 11 39 25 21 19 30 22 45 14 11 -5 +19 -6 19 -2 0 4 5 1 11 -7 8 -12 9 -10 4 8 -4 13 -2 22 5 22 6 0 8 5 4 11 -5 +8 -10 6 -16 -5 -7 -12 -13 -14 -29 -6 -10 6 -19 8 -19 4 0 -3 -8 0 -17 7 -16 +12 -17 12 -6 -2z"/> +<path d="M3695 3983 c-11 -26 -11 -56 1 -60 5 -2 10 15 11 37 2 44 -1 49 -12 +23z"/> +<path d="M3729 3995 c-1 -6 -1 -13 0 -17 0 -5 -4 -8 -10 -8 -5 0 -7 -5 -4 -10 +4 -6 12 -7 19 -3 7 4 4 1 -5 -8 -16 -14 -16 -16 4 -28 17 -11 19 -11 14 4 -4 +9 -3 14 2 11 12 -8 5 44 -8 57 -6 6 -12 7 -12 2z"/> +<path d="M7253 3948 c0 -29 2 -47 4 -40 3 6 9 10 13 7 5 -3 7 4 5 16 -3 13 0 +28 6 35 7 8 7 14 -1 19 -5 3 -10 3 -10 -2 0 -4 -4 -2 -9 5 -5 9 -8 -6 -8 -40z"/> +<path d="M7493 3988 c-2 -5 0 -8 6 -8 9 0 9 -26 0 -59 -2 -8 6 -15 20 -17 24 +-4 24 -4 5 18 -15 18 -15 20 -1 9 21 -16 23 2 2 19 -17 14 -12 25 12 25 9 0 +18 5 20 10 4 12 -56 14 -64 3z"/> +<path d="M7561 3978 c-8 -12 -18 -17 -29 -13 -15 5 -15 4 1 -12 9 -10 14 -27 +12 -38 -2 -11 -4 -24 -4 -29 -1 -5 -7 -4 -14 2 -14 12 -31 4 -34 -15 -4 -16 9 +-17 25 -1 9 9 12 9 12 -2 0 -13 2 -13 10 0 6 10 10 11 10 3 0 -7 5 -13 10 -13 +12 0 9 22 -5 33 -5 5 -1 6 11 3 14 -5 21 -2 21 9 0 10 -7 14 -21 10 -12 -3 +-15 -2 -8 1 10 5 10 9 1 20 -9 11 -9 18 -2 25 8 8 11 6 10 -6 -1 -10 3 -20 9 +-22 13 -4 14 29 1 38 -5 3 -1 9 8 12 9 4 14 3 11 -2 -3 -4 7 -8 22 -7 22 1 26 +-3 23 -19 -3 -20 -3 -20 18 -1 12 11 21 17 22 15 0 -2 2 -12 4 -21 2 -10 -2 +-18 -8 -18 -8 0 -7 -3 1 -9 11 -7 11 -9 -1 -14 -12 -4 -14 0 -11 20 4 22 3 24 +-10 14 -8 -7 -12 -19 -9 -27 3 -8 -1 -15 -11 -15 -29 -3 -34 -4 -42 -11 -4 -5 +-2 -8 5 -8 7 0 9 -5 5 -12 -4 -7 7 -2 24 11 18 12 32 20 32 16 0 -3 9 -1 20 5 +11 6 17 16 14 22 -5 8 -1 9 10 5 11 -5 15 -3 10 5 -5 8 -2 9 9 5 10 -3 17 -2 +17 3 0 6 5 9 11 8 6 -2 14 3 16 10 3 6 0 12 -7 12 -6 0 -9 -4 -6 -8 2 -4 -5 +-9 -17 -9 -19 -2 -18 0 7 16 18 12 23 20 15 23 -8 3 -22 -6 -32 -19 -19 -24 +-43 -22 -33 3 4 10 0 11 -20 4 -19 -8 -26 -6 -31 5 -4 11 -9 13 -18 5 -6 -5 +-15 -7 -19 -3 -14 14 -33 10 -45 -9z"/> +<path d="M3313 3965 c-14 -10 -23 -11 -25 -4 -2 7 -9 5 -17 -4 -11 -14 -9 -20 +13 -42 31 -31 44 -32 42 -2 -1 12 2 30 7 40 12 25 5 29 -20 12z m2 -25 c-2 +-30 -12 -34 -25 -10 -7 13 -8 20 -2 16 6 -3 13 -2 17 4 9 15 12 12 10 -10z"/> +<path d="M7599 3965 c-9 -2 -3 -44 7 -53 9 -8 14 -9 14 -2 0 6 4 9 8 6 5 -3 9 +1 9 9 0 9 -7 14 -15 13 -8 -2 -17 4 -19 12 -4 12 -2 12 5 2 7 -11 11 -11 20 0 +8 11 7 14 -9 14 -10 0 -20 0 -20 -1z"/> +<path d="M3396 3944 c-3 -9 -12 -14 -20 -11 -17 7 -48 -25 -38 -38 9 -13 32 +-18 32 -7 0 4 -5 13 -11 19 -14 14 7 13 29 -1 9 -5 12 -3 10 5 -1 8 2 15 7 16 +6 1 9 -5 7 -13 -4 -19 17 -46 30 -38 5 3 1 12 -9 20 -16 12 -16 15 -3 23 10 7 +20 5 32 -6 10 -9 18 -11 18 -6 0 14 -29 37 -37 29 -3 -3 -14 1 -23 9 -16 14 +-18 14 -24 -1z"/> +<path d="M3597 3934 c-16 -13 -25 -24 -21 -24 4 0 -1 -9 -11 -20 -10 -11 -21 +-17 -25 -15 -11 7 -33 -23 -25 -35 9 -14 28 -1 21 15 -5 13 18 15 30 2 12 -11 +21 -8 21 8 0 8 -5 15 -11 15 -6 0 -3 5 7 11 9 6 15 14 12 20 -4 5 -1 9 4 9 14 +0 14 -13 0 -27 -9 -9 -7 -12 10 -10 13 1 20 6 17 14 -6 15 3 43 14 43 4 0 7 +-12 6 -27 0 -14 4 -28 11 -30 7 -3 10 5 9 21 -4 34 0 33 19 -4 12 -24 19 -28 +33 -22 9 5 22 8 28 5 6 -2 11 3 11 12 0 8 -3 13 -5 10 -3 -3 -11 0 -19 7 -10 +8 -17 8 -26 -1 -9 -10 -8 -11 8 -6 16 6 17 5 5 -4 -11 -8 -20 -5 -35 13 -36 +42 -57 47 -88 20z"/> +<path d="M3790 3949 c0 -5 5 -7 10 -4 6 3 10 8 10 11 0 2 -4 4 -10 4 -5 0 -10 +-5 -10 -11z"/> +<path d="M6980 3952 c0 -6 -8 -9 -19 -7 -18 3 -44 -20 -49 -46 -1 -9 3 -7 13 +5 8 11 15 14 15 8 0 -10 3 -10 14 0 8 7 12 15 11 18 -2 3 5 6 15 6 10 0 16 -4 +14 -8 -3 -4 0 -8 5 -8 16 0 13 16 -4 30 -9 8 -15 9 -15 2z"/> +<path d="M7045 3935 c-11 -11 -14 -13 -6 -3 9 12 10 18 3 18 -6 0 -16 -9 -22 +-20 -7 -14 -17 -19 -29 -15 -10 3 -24 -1 -31 -10 -7 -8 -16 -12 -21 -10 -4 3 +-7 -4 -6 -15 1 -10 7 -22 14 -24 7 -3 10 -11 7 -19 -2 -7 1 -14 8 -14 7 0 20 +-4 28 -7 11 -5 16 0 17 15 2 16 -1 18 -11 10 -10 -9 -18 -5 -31 15 -10 15 -12 +23 -4 19 9 -6 11 -3 6 8 -3 9 -1 19 5 23 7 5 8 2 3 -6 -6 -9 -1 -10 16 -5 13 +3 20 3 14 -2 -5 -4 -11 -17 -13 -28 -3 -20 -2 -20 13 0 8 11 13 25 11 32 -3 7 +1 10 8 7 7 -3 18 2 25 10 10 12 18 13 32 5 11 -5 17 -15 13 -21 -4 -6 -1 -9 7 +-6 8 3 14 10 14 16 0 5 4 14 9 19 5 4 6 3 2 -4 -3 -6 -2 -14 4 -18 6 -4 4 -15 +-5 -29 -14 -21 -14 -24 1 -30 11 -4 15 -2 11 8 -6 14 10 36 25 36 5 0 8 -7 6 +-16 -2 -10 3 -19 10 -21 7 -3 10 1 7 10 -3 7 2 20 11 28 12 9 15 10 10 2 -4 +-7 -3 -13 1 -13 5 0 15 6 23 13 8 6 11 8 8 3 -8 -10 28 -46 45 -46 6 0 2 -7 +-9 -15 -10 -8 -14 -15 -8 -15 6 0 11 -7 11 -14 0 -12 -5 -13 -19 -5 -15 8 -17 +13 -8 24 9 11 7 14 -9 12 -28 -2 -26 -12 4 -43 22 -22 28 -24 42 -13 9 8 11 +15 4 17 -7 2 -6 11 3 25 12 19 11 24 -4 39 -10 9 -20 16 -22 15 -2 -1 4 4 12 +12 13 12 12 13 -8 8 -14 -3 -25 1 -31 10 -6 11 -10 12 -15 4 -5 -8 -13 -8 -26 +-1 -13 7 -21 7 -25 0 -10 -16 -38 -12 -32 4 7 17 -17 28 -30 15 -12 -12 -41 +-2 -45 15 -2 8 -10 5 -23 -9z"/> +<path d="M7310 3950 c0 -5 5 -10 10 -10 6 0 10 5 10 10 0 6 -4 10 -10 10 -5 0 +-10 -4 -10 -10z"/> +<path d="M3769 3944 c0 -5 -2 -19 -3 -32 -2 -13 1 -25 6 -28 4 -3 6 -9 3 -14 +-3 -4 2 -11 11 -14 13 -5 14 -9 4 -21 -9 -11 -8 -14 9 -12 26 2 26 2 0 43 -11 +19 -17 34 -14 34 4 0 1 8 -6 18 -11 14 -11 15 1 5 8 -7 18 -13 23 -13 4 0 5 6 +2 13 -4 6 1 3 9 -7 15 -18 21 -15 16 9 -1 6 2 6 7 2 4 -5 8 -12 8 -15 0 -13 +16 -32 26 -32 6 0 1 13 -10 29 -13 18 -28 28 -43 27 -13 -1 -29 2 -35 7 -7 5 +-13 6 -14 1z"/> +<path d="M7420 3930 c-12 -7 -12 -10 -1 -10 8 0 11 -6 7 -16 -4 -10 -2 -13 7 +-9 6 4 2 -2 -11 -12 -13 -10 -20 -22 -16 -26 12 -12 26 -8 18 6 -4 6 -3 8 1 4 +5 -4 14 3 21 15 l12 23 11 -27 c5 -14 15 -29 21 -33 5 -3 8 -10 5 -15 -9 -14 +23 -19 35 -5 6 7 22 16 35 19 24 6 36 36 15 36 -5 0 -9 -6 -7 -12 1 -9 -13 +-13 -43 -12 -25 0 -44 4 -43 10 1 5 -11 24 -25 41 -21 25 -31 30 -42 23z m105 +-89 c3 -5 2 -12 -3 -15 -5 -3 -9 1 -9 9 0 17 3 19 12 6z"/> +<path d="M3255 3910 c-3 -5 -1 -10 5 -10 6 0 9 -4 5 -9 -3 -6 3 -14 12 -20 14 +-8 15 -10 3 -11 -13 0 -13 -1 0 -10 23 -15 29 -12 25 9 -3 14 1 18 12 14 10 +-4 11 -8 3 -13 -8 -5 -7 -9 5 -14 23 -8 27 -8 20 3 -3 5 0 13 6 17 7 4 9 3 6 +-3 -4 -6 0 -14 8 -17 11 -4 15 0 13 11 -3 17 28 27 38 12 3 -5 0 -8 -7 -7 -6 +2 -13 -2 -16 -8 -2 -6 3 -11 12 -11 8 0 15 5 15 11 0 7 3 7 8 1 12 -17 35 -17 +28 0 -3 9 -2 14 2 12 4 -3 12 0 18 7 8 9 5 16 -12 29 -16 12 -25 14 -30 5 -4 +-6 -3 -8 3 -5 15 9 24 -18 11 -31 -8 -8 -20 -4 -43 14 -29 22 -33 22 -31 7 1 +-14 -5 -17 -24 -15 -14 1 -38 3 -55 3 -18 0 -24 3 -17 8 10 6 10 10 -2 20 -10 +8 -16 9 -21 1z"/> +<path d="M3876 3912 c-3 -6 -2 -13 4 -17 6 -4 5 -16 -5 -35 -19 -36 -19 -37 0 +-37 9 0 14 6 11 13 -7 17 13 29 26 16 6 -6 4 -15 -7 -26 -9 -9 -12 -16 -6 -16 +5 0 13 5 16 10 4 7 13 6 26 -1 12 -6 23 -8 27 -5 3 3 2 6 -2 6 -4 0 -2 9 4 19 +8 16 5 23 -16 40 -30 24 -44 27 -44 9 0 -6 3 -8 7 -5 11 11 32 -14 26 -31 -4 +-14 -3 -15 6 -2 5 8 13 12 16 9 3 -4 -1 -11 -8 -18 -12 -9 -18 -6 -31 14 -9 +14 -22 23 -28 19 -7 -4 -8 -3 -4 4 4 7 3 19 -2 28 -6 11 -12 13 -16 6z"/> +<path d="M7035 3888 c-18 -22 -23 -33 -15 -38 8 -5 9 -10 2 -14 -6 -4 -9 -13 +-5 -22 4 -11 8 -12 20 -3 11 10 11 14 1 20 -10 7 -10 9 2 9 13 0 13 1 0 10 +-13 9 -13 10 0 10 10 0 11 3 4 8 -9 5 -8 11 2 20 9 8 14 9 14 2 0 -6 5 -8 10 +-5 6 3 13 -1 16 -9 8 -22 17 -20 33 7 13 20 13 21 -2 9 -16 -14 -42 -8 -32 8 +3 4 -2 10 -10 13 -8 4 -25 -7 -40 -25z"/> +<path d="M3798 3892 c8 -5 13 -12 13 -16 -2 -17 0 -19 11 -8 7 7 16 12 21 12 +5 0 2 -6 -5 -14 -8 -7 -13 -26 -12 -42 1 -16 3 -35 3 -41 1 -18 21 -16 21 2 0 +8 -5 15 -11 15 -5 0 -7 5 -3 11 4 8 9 7 16 -2 7 -11 8 -9 4 4 -3 10 -2 27 4 +37 12 22 -9 43 -49 47 -18 2 -22 1 -13 -5z m56 -37 c-4 -8 -11 -15 -16 -15 -6 +0 -5 6 2 15 7 8 14 15 16 15 2 0 1 -7 -2 -15z"/> +<path d="M7390 3890 c0 -6 -4 -9 -9 -5 -5 3 -12 1 -16 -5 -4 -6 -10 -8 -15 -5 +-4 3 -10 -2 -14 -10 -3 -8 0 -15 6 -15 9 0 9 -3 1 -11 -6 -6 -9 -18 -6 -25 3 +-8 -1 -14 -11 -14 -9 0 -16 -3 -16 -8 0 -4 -9 -13 -19 -19 -16 -10 -24 -8 -47 +10 -24 19 -27 19 -21 3 4 -10 7 -20 7 -22 0 -3 5 -2 12 2 7 4 8 3 4 -5 -4 -6 +-12 -9 -17 -6 -18 12 -9 -15 13 -37 l21 -21 22 27 c19 24 23 25 35 12 7 -10 8 +-16 2 -16 -6 0 -12 3 -15 8 -2 4 -2 1 0 -6 1 -8 -2 -10 -9 -6 -7 4 -8 3 -4 -4 +5 -9 16 -8 39 4 46 24 56 34 51 49 -5 11 -11 11 -30 3 -13 -6 -21 -15 -18 -19 +3 -5 15 -4 27 2 21 10 21 10 3 -5 -30 -24 -43 -18 -37 17 1 10 -7 9 -30 -3 +-10 -6 -19 -9 -19 -6 0 7 74 50 83 48 10 -3 9 16 -2 22 -10 7 -8 37 2 36 4 0 +13 0 20 0 6 0 4 -5 -6 -11 -9 -6 -15 -15 -11 -21 4 -7 10 -5 16 3 7 10 8 8 4 +-7 -5 -14 -2 -21 9 -21 11 0 14 7 9 21 -3 14 -2 17 3 8 7 -9 14 -7 31 8 20 19 +28 15 23 -12 0 -5 4 -8 10 -8 5 0 7 -5 3 -11 -5 -8 -9 -8 -14 1 -5 8 -12 5 +-24 -11 -9 -13 -16 -18 -16 -11 0 10 -5 9 -16 -3 -13 -12 -14 -19 -5 -28 8 -8 +11 -7 11 6 0 10 5 14 15 11 8 -4 15 -1 15 6 0 6 4 9 9 5 5 -3 16 1 24 9 8 8 +18 12 23 8 5 -4 3 0 -3 8 -6 8 -12 20 -14 25 -1 6 -7 17 -12 26 -10 15 -12 15 +-28 -4 -14 -18 -19 -19 -33 -8 -12 10 -13 17 -6 26 8 9 8 15 0 20 -5 3 -10 1 +-10 -5z m-117 -145 c7 -16 -8 -29 -23 -20 -10 6 -2 35 10 35 4 0 10 -7 13 -15z"/> +<path d="M6850 3869 c-6 -11 -16 -17 -22 -13 -6 4 -9 1 -6 -6 2 -8 10 -16 18 +-18 7 -3 10 0 6 6 -4 6 3 16 15 22 12 7 19 8 16 3 -4 -5 0 -10 7 -10 17 0 10 +23 -10 31 -7 3 -18 -4 -24 -15z"/> +<path d="M3598 3868 c-10 -6 -10 -8 0 -8 6 0 12 -4 12 -8 0 -12 -39 -12 -46 +-1 -3 6 -13 1 -22 -12 l-15 -22 -23 28 c-21 27 -22 27 -33 8 -7 -15 -19 -20 +-41 -18 -19 2 -29 -2 -27 -9 2 -6 13 -12 25 -12 12 -1 19 3 15 9 -4 6 -1 7 7 +2 7 -4 16 -2 21 6 7 12 9 11 9 -1 0 -13 2 -13 11 0 9 12 10 12 5 -4 -5 -14 -2 +-17 9 -12 9 3 13 2 10 -4 -3 -6 -1 -10 4 -10 6 0 11 6 11 13 1 6 8 0 16 -15 8 +-16 17 -28 20 -28 8 0 0 34 -11 43 -5 5 1 5 14 2 15 -5 21 -3 17 3 -3 6 -1 14 +5 18 8 4 9 3 5 -4 -4 -7 -2 -12 3 -12 6 0 11 4 11 8 0 5 7 17 16 28 15 18 15 +18 5 -3 -14 -28 -14 -30 4 -30 9 0 14 6 11 13 -7 17 13 29 26 16 6 -6 4 -15 +-7 -26 -9 -9 -12 -16 -6 -16 5 0 13 5 16 10 4 7 12 7 25 0 25 -13 26 -13 27 +11 2 16 -1 18 -12 9 -11 -9 -16 -6 -25 12 -11 22 -10 22 4 4 9 -11 16 -15 16 +-9 0 7 9 11 20 10 11 -1 20 -6 20 -11 0 -13 13 2 16 18 2 12 -15 14 -51 6 -5 +-1 -12 -1 -15 0 -14 7 -91 5 -102 -2z m-28 -32 c0 -2 -7 -7 -16 -10 -8 -3 -12 +-2 -9 4 6 10 25 14 25 6z"/> +<path d="M6909 3878 c-20 -60 29 -129 65 -92 9 8 16 11 16 5 0 -6 7 -11 15 +-11 8 0 15 4 15 9 0 13 -35 20 -51 10 -7 -4 -21 -3 -32 2 -18 10 -18 11 0 31 +18 21 18 21 -6 8 -19 -10 -22 -10 -15 2 12 19 14 38 3 38 -5 0 -9 -1 -10 -2z"/> +<path d="M7053 3863 c0 -8 7 -11 14 -9 9 4 11 1 7 -6 -5 -7 -3 -8 5 -3 10 6 +11 3 2 -13 -14 -27 -14 -29 4 -29 11 0 14 7 9 21 -3 12 -2 16 3 11 4 -6 19 +-11 33 -12 14 0 33 -4 44 -8 16 -7 17 -6 7 13 -6 11 -16 24 -21 27 -6 4 -7 11 +-4 17 4 7 2 8 -5 4 -6 -4 -9 -12 -6 -17 4 -5 3 -13 0 -19 -7 -11 -65 15 -65 +29 0 4 -6 8 -13 8 -8 0 -14 -7 -14 -14z"/> +<path d="M7190 3872 c0 -6 6 -13 13 -15 10 -4 10 -6 0 -6 -7 -1 -13 -7 -13 +-15 0 -8 6 -17 13 -19 10 -4 10 -6 0 -6 -15 -1 -18 -31 -3 -31 6 0 10 -5 10 +-11 0 -5 -4 -7 -10 -4 -5 3 -10 -1 -10 -9 0 -9 5 -16 10 -16 6 0 10 -5 10 -11 +0 -5 -4 -7 -10 -4 -5 3 -10 -1 -10 -11 0 -14 2 -15 17 -3 12 10 15 11 9 1 -4 +-7 -2 -19 4 -27 12 -15 11 -16 -10 -19 -6 0 -14 -7 -19 -14 -7 -11 -9 -11 -14 +2 -4 9 -12 16 -18 16 -8 0 -7 -5 2 -17 12 -14 12 -16 0 -8 -10 5 -12 4 -7 -3 +5 -8 2 -10 -8 -6 -9 3 -16 2 -16 -3 0 -20 14 -22 32 -6 10 9 18 13 18 9 0 -4 +12 1 28 11 15 10 39 25 55 33 15 7 27 18 27 23 0 5 -6 4 -14 -2 -10 -9 -19 -7 +-36 7 -19 15 -24 30 -26 78 -3 61 3 85 16 64 5 -8 10 -8 14 -2 3 5 -1 15 -9 +22 -12 10 -15 10 -15 0 0 -10 -3 -10 -15 0 -9 8 -15 8 -15 2z m51 -179 c13 +-16 12 -17 -3 -4 -10 7 -18 15 -18 17 0 8 8 3 21 -13z"/> +<path d="M6796 3844 c-9 -22 24 -60 36 -42 7 10 11 10 21 -2 16 -19 37 -24 37 +-7 0 8 4 7 10 -3 5 -8 7 -23 4 -33 -6 -19 15 -20 29 -2 4 6 11 4 17 -5 7 -11 +4 -19 -11 -30 -11 -9 -17 -19 -13 -23 12 -12 26 -8 18 6 -5 7 0 6 11 -3 16 +-13 18 -13 13 0 -3 8 -1 23 4 33 7 14 12 16 23 7 11 -9 14 -7 12 9 -1 11 -7 +23 -15 26 -7 2 -10 0 -7 -5 4 -7 -4 -9 -22 -6 -29 5 -73 47 -73 69 0 7 -9 13 +-19 14 -14 1 -18 -3 -14 -13 8 -22 -24 -17 -40 6 -13 19 -15 19 -21 4z m25 +-21 c13 -16 12 -17 -3 -4 -10 7 -18 15 -18 17 0 8 8 3 21 -13z m66 -19 c-9 -9 +-28 6 -21 18 4 6 10 6 17 -1 6 -6 8 -13 4 -17z"/> +<path d="M3770 3841 c-8 -6 -17 -8 -21 -5 -4 2 -10 0 -14 -6 -6 -10 9 -15 30 +-10 6 1 7 -2 2 -6 -11 -11 -49 -13 -67 -4 -9 5 -23 2 -35 -6 -17 -13 -14 -19 +8 -15 4 1 3 -8 -3 -20 -9 -16 -14 -18 -25 -9 -11 9 -14 7 -12 -9 2 -25 -1 -24 +31 -10 14 7 23 16 19 22 -4 6 -1 7 7 2 9 -5 10 -2 5 14 -4 13 -2 21 5 21 6 0 +9 -4 6 -8 -3 -5 1 -9 9 -9 8 0 15 4 15 9 0 4 10 7 23 5 14 -1 22 3 22 13 0 8 +4 21 8 28 10 14 7 15 -13 3z"/> +<path d="M3265 3830 c-3 -5 1 -10 9 -10 9 0 16 -4 16 -10 0 -5 16 -9 36 -8 +l35 1 -20 21 c-17 16 -23 18 -33 8 -11 -11 -9 -12 7 -7 16 6 17 5 5 -4 -11 -8 +-18 -7 -26 4 -13 18 -20 19 -29 5z"/> +<path d="M3350 3831 c0 -5 7 -14 15 -21 8 -7 12 -16 9 -22 -10 -16 4 -38 21 +-32 8 3 12 11 9 16 -4 6 -10 5 -15 -3 -6 -10 -9 -10 -9 -2 0 6 5 15 10 18 6 4 +7 12 3 18 -4 7 0 6 10 -2 9 -7 14 -17 11 -22 -9 -16 14 -10 32 9 17 16 18 16 +11 -1 -5 -13 -3 -17 5 -14 7 2 12 13 11 23 -1 18 -1 18 11 2 7 -10 16 -15 20 +-11 4 4 4 -1 0 -12 -7 -17 -6 -18 8 -7 13 10 19 10 32 -3 9 -9 14 -20 11 -25 +-3 -4 2 -11 11 -14 12 -5 14 -1 9 17 -4 15 -3 18 3 8 6 -8 12 -9 16 -3 8 13 +-10 26 -23 17 -5 -3 -16 4 -24 15 -7 11 -16 17 -20 14 -3 -3 -16 0 -29 7 -12 +7 -27 12 -33 10 -39 -12 -55 -9 -69 11 -9 12 -16 17 -16 10 0 -6 -5 -12 -11 +-12 -5 0 -7 5 -4 10 3 6 1 10 -4 10 -6 0 -11 -4 -11 -9z"/> +<path d="M3975 3830 c-3 -5 -1 -10 4 -10 6 0 21 -10 33 -22 21 -21 21 -21 16 +0 -4 15 -2 19 8 15 8 -3 11 -10 7 -16 -3 -5 -1 -7 5 -3 6 3 13 3 16 -2 5 -8 +-8 -12 -47 -13 -15 0 -16 -3 -7 -14 9 -11 17 -12 31 -4 10 5 19 7 19 4 0 -4 7 +1 16 9 8 9 21 13 27 9 7 -3 8 -2 4 3 -5 5 -12 9 -15 10 -18 2 -62 28 -62 38 0 +6 -4 6 -12 -2 -8 -8 -15 -8 -24 -1 -8 7 -14 7 -19 -1z"/> +<path d="M6745 3823 c-16 -9 -38 -17 -48 -18 -16 -2 -46 -31 -47 -48 0 -4 9 +-2 19 5 11 7 19 16 18 21 -1 5 4 12 11 14 14 6 16 -13 2 -22 -5 -3 -10 -14 +-10 -23 1 -15 2 -15 11 1 7 12 17 16 31 11 13 -4 18 -2 14 4 -3 6 1 17 9 25 +11 12 12 17 2 20 -9 4 -9 6 0 6 19 1 24 -16 9 -31 -12 -13 -11 -16 6 -27 15 +-9 19 -9 17 1 -3 26 1 39 12 33 6 -4 8 -14 5 -22 -3 -8 -2 -11 3 -8 5 3 12 1 +16 -5 3 -5 11 -10 17 -10 6 0 7 5 2 13 -5 7 -2 5 7 -5 15 -16 18 -16 23 -2 8 +20 8 24 -1 23 -22 -4 -33 2 -27 14 6 9 5 9 -7 0 -11 -9 -20 -6 -41 12 -15 13 +-24 26 -21 29 10 10 0 6 -32 -11z m-12 -28 c-3 -9 -8 -14 -10 -11 -3 3 -2 9 2 +15 9 16 15 13 8 -4z"/> +<path d="M7053 3833 c4 -3 1 -13 -7 -22 -8 -9 -16 -23 -18 -31 -2 -8 -7 -18 +-12 -21 -4 -4 -4 -9 2 -13 5 -3 15 1 22 9 9 11 9 15 1 15 -8 0 -8 4 1 14 7 8 +17 12 22 9 4 -3 3 -9 -4 -13 -7 -4 2 -7 21 -6 19 2 40 -2 47 -7 8 -6 12 -6 12 +1 0 6 -8 16 -17 21 -11 6 -13 11 -5 11 7 0 10 5 6 11 -4 8 -9 7 -15 -2 -4 -7 +-5 -17 -3 -21 3 -4 0 -8 -5 -8 -6 0 -11 5 -11 10 0 6 -6 9 -12 8 -8 -2 -12 6 +-11 20 2 12 -2 22 -9 22 -6 0 -8 -3 -5 -7z"/> +<path d="M7434 3826 c-10 -8 -16 -17 -13 -20 3 -3 14 3 24 14 21 23 17 26 -11 +6z"/> +<path d="M3610 3810 c0 -5 -3 -9 -7 -9 -31 5 -35 -2 -15 -24 17 -18 19 -26 10 +-35 -14 -14 0 -16 21 -3 10 6 10 10 1 16 -9 6 -9 9 1 16 8 4 19 3 28 -4 12 +-10 13 -9 4 8 -6 11 -11 24 -11 28 0 5 -3 11 -6 15 -6 5 -10 -14 -7 -31 1 -5 +-3 -6 -8 -2 -6 3 -8 12 -4 20 3 8 2 15 -1 15 -3 0 -6 -4 -6 -10z m-6 -26 c3 +-8 2 -12 -4 -9 -6 3 -10 10 -10 16 0 14 7 11 14 -7z"/> +<path d="M3785 3800 c-10 -11 -25 -18 -32 -16 -7 3 -15 1 -18 -5 -4 -5 -9 -8 +-13 -6 -4 2 -17 -7 -29 -20 -25 -25 -14 -32 11 -7 12 12 16 12 16 2 1 -7 7 -2 +15 12 8 14 14 19 15 11 0 -10 3 -11 14 -2 10 8 15 9 18 1 2 -7 10 -6 22 3 14 +10 16 18 9 31 -8 15 -11 15 -28 -4z m19 -8 c3 -5 -1 -9 -9 -9 -8 0 -12 4 -9 9 +3 4 7 8 9 8 2 0 6 -4 9 -8z"/> +<path d="M3866 3805 c-3 -8 -3 -21 0 -28 3 -9 -5 -14 -28 -15 -65 -2 -93 -7 +-100 -16 -8 -12 -30 -17 -93 -21 -27 -2 -54 -4 -60 -5 -27 -6 -47 1 -42 14 8 +20 -16 39 -31 24 -8 -8 -13 -7 -18 7 -7 16 -10 15 -30 -11 -20 -25 -23 -26 +-17 -6 6 24 -3 28 -27 12 -13 -9 -12 -12 5 -22 29 -18 58 -21 49 -6 -5 9 -2 9 +9 -1 18 -15 23 -26 7 -16 -5 3 -10 1 -10 -4 0 -10 15 -15 23 -8 2 1 11 -4 19 +-11 9 -7 23 -9 33 -6 13 5 14 9 3 16 -10 8 -10 9 2 5 8 -2 14 -9 13 -14 -1 -5 +11 -10 27 -10 16 0 27 4 24 8 -2 4 6 13 18 19 20 10 21 9 6 -3 -15 -12 -15 +-14 4 -26 18 -11 20 -11 15 3 -4 10 1 20 15 27 16 8 19 8 13 -1 -5 -8 -3 -11 +6 -8 8 3 13 12 11 19 -2 8 0 11 3 7 4 -4 19 -1 34 6 14 7 35 12 46 12 11 -1 +23 4 27 9 4 6 8 2 8 -7 0 -10 5 -18 10 -18 6 0 10 8 10 18 0 9 4 13 8 7 4 -5 +16 -12 26 -13 17 -3 18 -1 7 11 -10 13 -9 17 6 25 10 5 24 7 32 4 8 -3 11 0 7 +7 -4 6 -2 11 3 11 6 0 11 -4 11 -10 0 -5 7 -10 16 -10 8 0 12 5 9 10 -3 6 -1 +10 4 10 14 0 14 -6 0 -32 -9 -16 -8 -19 2 -13 8 5 10 4 5 -3 -4 -8 -2 -10 7 +-6 20 7 29 -23 12 -40 -13 -12 -12 -15 1 -20 22 -8 26 -8 19 3 -3 5 2 17 11 +25 9 9 11 16 4 16 -6 0 -8 5 -4 12 4 6 3 8 -3 5 -6 -4 -18 2 -27 12 -13 14 +-14 21 -6 26 16 10 -9 26 -30 20 -8 -2 -22 0 -29 5 -10 6 -25 2 -45 -13 -20 +-13 -26 -15 -18 -5 8 10 9 19 4 22 -6 3 -12 -1 -16 -9z m-371 -55 c5 -8 11 -8 +20 0 9 8 15 8 20 0 4 -6 3 -10 -2 -9 -20 3 -27 -2 -14 -10 8 -5 16 -17 17 -26 +2 -12 -1 -13 -10 -6 -7 6 -16 8 -20 4 -4 -4 -4 0 -1 9 4 10 -2 22 -17 32 -12 +9 -17 16 -11 16 7 0 15 -5 18 -10z m120 -40 c-3 -5 -12 -10 -18 -10 -7 0 -6 4 +3 10 19 12 23 12 15 0z"/> +<path d="M6930 3815 c0 -7 30 -13 34 -7 3 4 -4 9 -15 9 -10 1 -19 0 -19 -2z"/> +<path d="M7137 3805 c-3 -7 3 -21 14 -31 12 -11 19 -13 19 -5 0 7 5 9 11 5 8 +-5 8 -1 0 14 -13 25 -38 35 -44 17z m33 -11 c0 -8 -19 -13 -24 -6 -3 5 1 9 9 +9 8 0 15 -2 15 -3z"/> +<path d="M3355 3789 c-4 -6 -5 -12 -2 -15 2 -3 7 2 10 11 7 17 1 20 -8 4z"/> +<path d="M7340 3781 c-13 -13 -12 -14 5 -7 11 4 25 9 32 10 23 4 22 12 -1 12 +-12 0 -29 -7 -36 -15z"/> +<path d="M3915 3770 c6 -10 4 -12 -9 -7 -12 5 -15 3 -9 -6 11 -18 12 -37 2 +-37 -6 0 -7 -5 -4 -10 5 -8 11 -7 21 1 12 10 12 14 2 21 -9 6 -5 7 9 3 18 -5 +22 -3 17 9 -3 9 -11 13 -17 9 -5 -3 -7 -1 -3 5 3 6 1 14 -5 18 -8 5 -9 3 -4 +-6z"/> +<path d="M3940 3774 c0 -3 4 -13 9 -23 6 -10 6 -23 0 -32 -5 -7 -9 -10 -9 -5 +0 11 -30 -14 -30 -25 0 -5 5 -9 11 -9 5 0 7 4 4 10 -3 5 0 7 8 4 8 -3 19 1 23 +8 14 21 12 67 -2 72 -8 3 -14 3 -14 0z"/> +<path d="M6882 3755 c-11 -24 -29 -25 -58 -3 -7 5 -14 3 -17 -6 -4 -9 -2 -18 +4 -21 5 -4 7 -11 4 -16 -4 -5 -1 -9 6 -9 6 0 9 8 6 20 -4 17 -2 18 14 9 10 -5 +19 -15 19 -22 1 -7 7 -1 14 12 9 17 15 20 18 10 3 -8 5 1 5 19 0 17 -1 32 -2 +32 -1 0 -7 -11 -13 -25z"/> +<path d="M7037 3737 c-17 -18 -27 -26 -23 -20 5 9 2 11 -8 7 -10 -4 -16 -1 +-16 7 0 11 -2 11 -9 -1 -12 -17 -4 -33 11 -24 7 4 8 2 4 -4 -14 -23 15 -12 42 +15 15 15 33 26 41 25 8 -2 10 1 5 10 -6 10 -5 10 7 2 8 -6 24 -10 37 -9 31 2 +37 -11 11 -25 -13 -7 -19 -8 -15 -2 3 6 2 13 -3 16 -5 3 -11 -1 -15 -9 -3 -8 +3 -19 14 -25 25 -13 33 -13 24 2 -4 6 -3 8 4 4 5 -3 13 0 15 6 4 8 6 7 6 -4 1 +-15 -33 -35 -51 -30 -5 1 -8 -2 -8 -8 0 -5 5 -10 11 -10 5 0 7 -5 3 -11 -4 -8 +-9 -7 -16 2 -8 11 -9 10 -5 -2 3 -9 0 -22 -6 -28 -8 -8 -8 -11 2 -11 7 0 9 -4 +6 -10 -3 -6 1 -7 10 -4 10 4 13 13 10 25 -4 12 -1 21 9 25 9 3 14 10 11 14 -9 +14 15 22 30 10 9 -8 15 -8 20 0 3 6 12 7 18 4 7 -4 0 4 -15 19 -27 25 -39 55 +-18 42 5 -3 7 0 4 8 -3 8 -15 13 -27 12 -12 0 -26 1 -32 4 -30 15 -60 8 -88 +-22z"/> +<path d="M4053 3741 c3 -12 -1 -27 -8 -34 -11 -11 -9 -16 7 -26 18 -11 20 -11 +15 3 -3 8 -1 21 6 28 10 10 9 17 -7 32 -19 19 -19 19 -13 -3z"/> +<path d="M4070 3754 c0 -4 7 -12 16 -19 14 -10 14 -13 2 -26 -12 -12 -11 -17 +6 -33 19 -19 19 -19 14 1 -9 32 7 50 27 33 15 -12 16 -12 13 2 -1 9 2 16 7 15 +6 -1 9 -6 7 -12 -2 -5 2 -4 9 3 11 10 10 15 -4 29 -9 10 -17 13 -17 7 0 -6 +-13 -11 -30 -11 -16 0 -30 4 -30 9 0 4 -4 8 -10 8 -5 0 -10 -3 -10 -6z"/> +<path d="M6615 3749 c-4 -6 -14 -8 -22 -5 -8 3 -11 2 -8 -3 3 -5 -4 -12 -15 +-16 -11 -3 -20 -11 -20 -16 0 -6 4 -8 9 -5 17 11 19 -22 4 -45 -9 -12 -11 -19 +-5 -15 6 3 16 -2 22 -11 9 -15 10 -12 6 14 -3 26 -1 31 12 26 14 -5 14 -3 -2 +16 -16 17 -17 24 -7 34 10 9 11 8 6 -8 -4 -11 1 -8 10 8 17 29 28 37 19 13 -3 +-8 0 -17 7 -22 7 -4 10 -3 5 4 -3 6 -2 13 4 17 11 7 4 25 -10 25 -5 0 -12 -5 +-15 -11z"/> +<path d="M6655 3740 c-13 -14 -14 -20 -5 -20 11 0 11 -3 2 -12 -8 -8 -15 -8 +-28 3 -12 9 -15 10 -10 2 4 -7 2 -13 -3 -13 -8 0 -7 -7 1 -19 7 -11 16 -17 20 +-14 5 2 5 10 1 17 -4 7 -1 4 8 -5 15 -16 16 -16 27 2 7 10 8 19 3 19 -11 0 -8 +26 4 37 4 4 5 3 2 -3 -10 -18 20 -25 34 -8 11 14 13 14 21 0 7 -12 14 -14 26 +-7 11 6 25 5 37 -2 17 -9 18 -8 8 5 -7 8 -11 18 -8 21 3 4 2 5 -2 2 -3 -3 -12 +0 -20 7 -10 8 -17 8 -26 -1 -9 -10 -8 -11 8 -6 16 6 17 5 5 -4 -11 -8 -18 -7 +-26 4 -12 16 -29 21 -20 6 3 -5 -1 -11 -9 -15 -8 -3 -18 2 -23 10 -7 13 -11 +12 -27 -6z"/> +<path d="M3737 3715 c-21 -14 -44 -22 -54 -19 -14 5 -15 4 -4 -4 9 -7 10 -12 +2 -16 -6 -4 -8 -13 -4 -19 3 -7 -3 -3 -16 7 -17 16 -24 17 -34 7 -9 -10 -8 +-11 8 -6 16 5 17 5 5 -3 -8 -6 -18 -8 -22 -6 -15 10 -8 -14 9 -27 11 -10 14 +-10 9 -1 -7 12 3 16 38 12 13 -1 17 3 13 13 -8 21 3 29 21 14 13 -10 15 -9 9 +5 -7 19 8 34 18 18 3 -5 14 -10 23 -10 15 1 15 2 -1 11 -9 6 -15 15 -12 20 4 +5 10 7 15 4 5 -3 12 0 15 6 14 21 -3 19 -38 -6z"/> +<path d="M3782 3719 c-7 -11 -11 -23 -8 -26 3 -3 1 -14 -4 -23 -7 -13 -5 -22 +6 -31 13 -11 14 -9 10 14 -4 21 -1 25 12 20 14 -5 13 -2 -3 17 -11 13 -14 20 +-6 15 9 -5 12 -4 8 2 -6 10 33 7 92 -6 2 -1 -2 -8 -10 -17 -11 -14 -10 -15 7 +-12 13 2 18 -2 17 -12 -2 -10 5 -16 17 -16 13 0 19 5 15 14 -2 7 -1 11 4 7 5 +-3 12 1 15 7 3 7 4 4 1 -8 -4 -14 0 -21 10 -21 11 0 14 7 9 21 -3 12 -2 17 3 +11 11 -13 33 -17 33 -6 0 5 -9 13 -21 16 l-21 7 21 15 c12 8 19 18 16 23 -7 +12 -35 1 -32 -12 1 -5 -11 -19 -26 -31 l-28 -22 -19 25 c-10 13 -16 28 -14 32 +2 3 0 9 -6 13 -5 3 -10 2 -10 -4 0 -10 -34 -8 -60 3 -9 4 -20 -2 -28 -15z"/> +<path d="M4172 3712 c-18 -18 -26 -21 -37 -12 -7 6 -16 7 -18 2 -3 -4 3 -13 +14 -20 11 -7 19 -8 19 -2 0 5 5 10 11 10 5 0 7 -6 3 -12 -4 -7 -4 -10 1 -6 4 +4 14 3 22 -3 9 -9 13 -8 13 0 0 6 -7 14 -15 17 -11 5 -11 9 -2 19 9 10 14 9 +23 -3 6 -9 9 -23 7 -32 -5 -19 21 -45 37 -35 16 10 12 23 -6 21 -9 0 -19 5 +-21 12 -3 6 2 12 11 12 27 0 31 -2 29 -10 -4 -14 36 -7 41 7 6 14 -10 27 -23 +18 -5 -3 -13 0 -17 6 -4 8 -9 7 -15 -2 -8 -11 -14 -9 -32 11 l-22 25 -23 -23z"/> +<path d="M6905 3722 c-7 -19 -7 -19 11 -36 12 -12 12 -16 2 -16 -10 0 -9 -3 2 +-10 19 -12 33 -13 25 -1 -3 5 0 13 6 17 7 4 9 3 5 -4 -3 -6 -2 -13 4 -17 5 -3 +10 2 10 12 0 10 4 14 8 8 9 -13 72 -17 72 -4 0 9 -7 11 -77 13 -55 1 -73 18 +-42 39 22 16 22 16 1 14 -12 0 -24 -7 -27 -15z"/> +<path d="M7047 3714 c-10 -13 -16 -24 -13 -24 2 0 13 -3 23 -6 15 -5 16 -4 3 +6 -13 10 -13 11 0 7 8 -2 14 -12 12 -22 -2 -11 1 -14 9 -9 9 5 9 3 3 -7 -5 -8 +-9 -26 -10 -42 -2 -36 -10 -44 -19 -18 -3 12 -11 21 -16 21 -6 0 -7 -4 -4 -10 +4 -6 -1 -7 -11 -3 -13 5 -15 3 -9 -8 7 -12 6 -12 -8 -1 -14 12 -16 11 -14 -7 +2 -24 2 -24 29 -10 15 8 23 8 32 -1 8 -8 7 -10 -6 -5 -11 4 -18 2 -18 -4 0 -6 +-3 -10 -7 -10 -22 4 -43 -2 -38 -10 3 -5 0 -13 -6 -17 -8 -4 -9 -3 -5 4 5 8 1 +10 -11 6 -15 -6 -15 -4 2 10 20 16 20 16 -2 9 -12 -5 -21 -10 -21 -13 1 -3 -4 +-15 -10 -27 -12 -21 -26 -24 -48 -10 -7 4 -15 0 -18 -8 -4 -12 -10 -13 -25 -6 +-14 8 -22 7 -32 -6 -12 -15 -12 -16 3 -10 10 3 24 0 33 -9 14 -14 19 -13 53 7 +20 13 39 27 40 31 2 5 9 5 14 2 7 -5 8 -2 3 6 -6 10 -4 12 8 7 9 -3 23 1 32 9 +8 9 15 12 15 8 0 -4 9 1 21 12 12 10 22 17 23 15 0 -3 10 0 20 6 12 6 17 17 +13 26 -3 9 -2 19 4 22 5 4 7 10 4 15 -3 5 -1 19 5 31 8 14 9 24 2 31 -6 6 -8 +18 -5 27 4 14 3 14 -6 1 -8 -11 -13 -12 -18 -4 -6 8 -14 4 -26 -12z m51 -29 +c-3 -3 -9 2 -12 12 -6 14 -5 15 5 6 7 -7 10 -15 7 -18z m-208 -194 c0 -5 -7 +-11 -14 -14 -10 -4 -13 -1 -9 9 6 15 23 19 23 5z"/> +<path d="M6705 3710 c-4 -6 -12 -7 -18 -4 -7 4 -9 4 -5 -1 4 -4 2 -15 -5 -23 +-9 -13 -9 -14 1 -8 11 7 17 -5 13 -28 -1 -5 5 -6 14 -2 9 3 19 6 22 6 2 0 -2 +7 -11 15 -16 16 -11 49 6 39 6 -4 5 -10 -3 -16 -11 -8 -11 -9 2 -5 12 4 15 -1 +13 -18 -2 -22 21 -43 34 -30 3 3 1 5 -5 5 -5 0 -9 14 -9 30 0 17 3 30 8 30 4 +0 8 -4 8 -9 0 -6 9 -8 20 -6 11 2 19 -1 17 -7 -1 -6 4 -13 12 -16 8 -2 11 0 7 +6 -3 6 -1 14 5 18 8 4 9 3 5 -4 -4 -7 -3 -12 3 -12 15 0 22 16 15 34 -6 15 -8 +15 -19 -1 -12 -16 -14 -16 -37 -1 -18 12 -29 13 -43 5 -14 -7 -20 -7 -23 1 -5 +15 -19 15 -27 2z"/> +<path d="M6880 3712 c0 -15 -45 -62 -59 -62 -5 0 -17 7 -25 16 -12 12 -16 12 +-16 2 0 -10 -3 -9 -11 2 -9 12 -10 11 -4 -5 16 -47 15 -56 -5 -45 -13 7 -21 5 +-31 -7 -12 -14 -12 -15 1 -11 8 3 22 2 31 -3 11 -6 21 -4 29 6 7 8 8 15 3 15 +-5 0 -10 6 -10 13 0 8 6 14 13 14 7 0 10 -7 6 -16 -5 -14 -3 -14 11 -2 9 7 17 +10 17 5 0 -5 7 0 15 10 9 12 15 15 15 7 0 -11 3 -11 17 0 11 10 17 10 20 3 2 +-6 11 -20 19 -30 15 -19 16 -19 10 0 -5 15 -4 17 8 7 8 -7 16 -8 18 -4 3 4 3 +3 2 -4 -2 -7 1 -15 6 -18 9 -6 14 8 11 28 -1 5 3 6 9 2 6 -3 8 -10 6 -14 -3 +-4 1 -8 9 -8 8 0 15 4 15 8 0 4 11 6 25 4 14 -1 28 2 31 6 3 5 -1 9 -8 9 -9 0 +-9 3 2 10 12 8 9 10 -10 8 -14 -2 -31 -10 -38 -18 -11 -13 -12 -13 -10 0 2 9 +-3 14 -12 12 -43 -10 -54 -10 -72 -1 -10 5 -17 13 -14 17 2 4 -2 18 -10 32 -7 +14 -13 19 -14 12z m16 -34 c4 -7 4 -10 -1 -6 -4 4 -15 2 -24 -5 -14 -11 -14 +-10 -2 6 16 20 18 21 27 5z"/> +<path d="M3813 3702 c-8 -5 -8 -12 1 -24 7 -10 16 -15 19 -12 9 10 48 -16 41 +-28 -5 -7 -2 -8 6 -3 9 6 11 4 5 -5 -6 -9 -4 -11 6 -5 8 5 5 -1 -5 -13 -11 +-12 -14 -22 -8 -22 6 0 14 5 17 10 4 6 11 8 16 5 5 -3 6 2 2 11 -4 12 -2 15 8 +12 8 -3 13 -13 11 -22 -3 -14 0 -15 16 -5 25 16 8 36 -28 35 -18 -1 -25 4 -24 +16 1 10 -2 15 -7 12 -18 -11 -30 7 -17 24 9 11 10 14 1 8 -7 -4 -21 -3 -31 3 +-10 5 -23 7 -29 3z m32 -20 c-3 -3 -11 0 -18 7 -9 10 -8 11 6 5 10 -3 15 -9 +12 -12z"/> +<path d="M3725 3683 c10 -21 -5 -36 -21 -22 -12 10 -13 9 -8 -4 7 -19 -32 -44 +-39 -24 -3 6 -6 8 -6 2 -1 -16 15 -36 30 -39 8 -1 30 -11 49 -21 19 -11 41 +-18 49 -16 7 1 10 -2 6 -8 -3 -6 -2 -11 4 -11 17 0 22 18 6 24 -13 4 -14 10 +-5 26 6 11 8 20 4 20 -3 0 0 8 7 18 12 15 12 16 -2 5 -13 -11 -19 -10 -33 5 +-9 10 -14 22 -11 25 3 4 2 5 -2 2 -3 -3 -12 3 -20 13 -8 9 -12 11 -8 5z m45 +-93 c-5 -9 -6 -21 -2 -26 4 -5 -5 1 -19 14 -14 12 -28 20 -31 16 -4 -3 -11 4 +-18 15 -10 19 -7 25 13 22 4 -1 10 5 13 13 5 12 11 10 30 -11 17 -19 21 -30 +14 -43z"/> +<path d="M3725 3630 c-3 -5 -11 -8 -16 -5 -5 3 -6 -1 -3 -10 4 -9 9 -13 12 +-10 3 3 14 -3 25 -12 11 -10 17 -13 14 -6 -4 6 -2 13 4 15 6 2 2 11 -9 21 -13 +12 -22 15 -27 7z m23 -25 c-3 -3 -9 2 -12 12 -6 14 -5 15 5 6 7 -7 10 -15 7 +-18z"/> +<path d="M3550 3673 c0 -5 11 -13 25 -20 14 -6 23 -7 20 -3 -3 5 1 10 7 13 7 +2 9 8 5 13 -4 5 -12 2 -16 -5 -6 -9 -11 -10 -15 -2 -8 12 -26 15 -26 4z"/> +<path d="M4016 3658 c-11 -15 -16 -18 -16 -8 -1 11 -3 11 -11 -3 -6 -9 -15 +-14 -21 -11 -7 5 -8 2 -2 -7 5 -8 7 -23 5 -34 -3 -20 -2 -20 12 0 8 10 13 26 +10 35 -4 13 -4 13 6 0 6 -8 11 -10 11 -4 0 6 6 11 13 12 6 0 24 3 40 5 15 2 +30 1 33 -4 2 -4 11 -6 19 -3 8 4 12 10 9 16 -3 5 4 4 15 -4 18 -11 23 -11 30 +0 7 11 9 10 15 -3 3 -9 11 -13 17 -9 8 5 9 3 4 -6 -6 -9 -4 -11 5 -5 9 5 11 4 +6 -4 -4 -6 -12 -8 -18 -5 -8 5 -9 1 -5 -10 4 -10 7 -21 7 -24 1 -4 7 4 15 18 +8 14 14 19 15 11 0 -11 3 -11 15 -1 10 8 15 9 15 2 0 -6 7 -9 15 -6 13 5 13 9 +3 23 -12 14 -11 15 5 2 14 -11 17 -11 17 0 0 8 8 -1 17 -20 16 -32 17 -33 26 +-12 6 11 15 21 20 21 6 0 7 -3 4 -6 -3 -4 -2 -15 3 -25 8 -13 6 -20 -7 -28 +-24 -14 -7 -14 18 -1 14 8 17 15 10 28 -9 19 -4 42 10 42 6 0 7 -5 4 -10 -3 +-6 1 -13 9 -16 9 -3 14 -9 11 -13 -2 -4 2 -8 10 -8 20 0 19 13 -1 21 -8 3 -13 +10 -10 15 9 14 -25 23 -39 11 -10 -8 -15 -8 -20 1 -6 8 -10 7 -17 -5 -9 -15 +-12 -14 -34 10 l-25 26 -24 -22 -24 -22 -33 24 c-18 13 -40 24 -48 23 -8 -1 +-20 3 -26 7 -7 5 -14 3 -17 -7 -4 -8 -13 -12 -22 -9 -8 3 -12 11 -8 18 4 6 0 +6 -9 -2 -11 -9 -18 -10 -23 -2 -10 16 -22 12 -39 -12z m34 8 c0 -2 -7 -7 -16 +-10 -8 -3 -12 -2 -9 4 6 10 25 14 25 6z"/> +<path d="M4240 3670 c-9 -6 -10 -10 -3 -10 6 0 15 5 18 10 8 12 4 12 -15 0z"/> +<path d="M6495 3662 c-3 -10 1 -12 18 -8 12 3 16 3 9 0 -6 -3 -9 -11 -6 -16 4 +-6 2 -8 -4 -4 -15 9 -23 -7 -10 -24 8 -13 9 -13 5 1 -6 20 31 19 44 -2 5 -8 9 +-10 9 -4 0 5 5 4 12 -3 7 -7 17 -8 30 -1 10 5 18 6 18 2 0 -4 5 -1 10 7 9 13 +12 13 20 -1 6 -10 20 -15 35 -14 14 2 25 -1 25 -6 0 -5 5 -9 11 -9 8 0 7 5 -2 +16 -10 13 -10 17 1 24 8 5 11 12 7 17 -5 4 -12 1 -17 -7 -10 -16 -38 -20 -56 +-8 -9 7 -19 6 -59 -2 -21 -5 -36 0 -30 10 4 6 3 10 -2 9 -22 -4 -32 3 -28 19 +4 21 -32 25 -40 4z"/> +<path d="M3806 3645 c16 -13 17 -16 4 -25 -8 -5 -11 -10 -7 -10 4 0 3 -10 -4 +-21 -8 -15 -8 -19 0 -15 11 7 15 -6 12 -32 -1 -8 7 -16 18 -19 12 -3 21 -9 21 +-14 0 -14 28 -11 33 4 3 6 6 2 6 -11 1 -13 5 -20 11 -17 6 3 10 1 10 -6 0 -7 +3 -9 6 -6 4 4 1 13 -6 22 -10 12 -10 18 0 30 11 13 9 15 -9 12 -13 -2 -26 -9 +-30 -16 -6 -9 -11 -8 -21 3 -7 9 -17 13 -24 9 -6 -4 -3 5 7 20 17 26 17 28 1 +25 -9 -2 -19 4 -21 12 -3 11 -2 11 4 3 6 -9 12 -7 22 9 11 18 11 20 -3 15 -14 +-6 -15 -3 -6 13 6 11 13 20 16 20 3 0 3 -4 -1 -9 -3 -5 -1 -13 5 -16 8 -5 8 +-11 0 -20 -8 -10 -8 -15 0 -20 8 -5 8 -11 0 -20 -12 -15 -6 -35 10 -35 5 0 7 +6 4 14 -3 8 3 19 14 25 18 9 19 8 15 -12 -5 -21 -5 -22 10 -2 20 26 12 48 -13 +32 -24 -14 -37 -3 -20 18 10 12 10 15 0 15 -7 0 -10 7 -6 15 3 8 2 16 -2 16 +-4 1 -23 3 -41 5 -33 4 -34 3 -15 -11z"/> +<path d="M6598 3653 c6 -3 10 -9 7 -13 -3 -5 4 -7 16 -5 12 3 27 1 33 -2 16 +-11 46 -11 40 -1 -4 5 -13 7 -23 4 -14 -5 -13 -4 2 8 15 12 11 13 -35 13 -29 +0 -47 -2 -40 -4z"/> +<path d="M6876 3642 c-3 -6 -2 -13 4 -17 6 -4 8 -11 5 -16 -3 -5 1 -6 9 -3 14 +6 21 -5 17 -28 0 -5 5 -8 12 -9 6 0 2 -4 -11 -10 -13 -5 -21 -13 -17 -19 3 -6 +-1 -7 -9 -4 -9 3 -16 11 -16 17 0 6 -3 7 -7 3 -5 -4 -8 -13 -8 -18 0 -6 -7 +-13 -15 -15 -10 -3 -11 -2 -4 4 9 6 8 11 -2 21 -13 12 -18 8 -15 -11 1 -4 -6 +-10 -14 -13 -8 -3 -12 -10 -9 -15 3 -5 0 -10 -5 -10 -26 -3 -30 -4 -36 -10 -3 +-4 1 -9 9 -12 9 -4 23 4 35 19 17 22 23 24 42 14 12 -7 19 -8 15 -2 -7 12 25 +26 33 15 9 -12 33 -15 26 -3 -3 5 0 10 7 10 11 0 10 2 0 9 -11 7 -10 9 3 15 +12 4 14 12 10 28 -7 21 -6 22 7 5 14 -18 54 -14 42 5 -3 5 -12 4 -20 -3 -12 +-10 -15 -10 -12 2 2 8 -5 14 -15 14 -10 0 -26 11 -36 24 -11 15 -21 20 -25 13z"/> +<path d="M4028 3624 c-15 -8 -32 -23 -38 -34 -6 -11 -16 -17 -25 -14 -8 4 -12 +11 -8 18 4 7 1 7 -9 -1 -8 -7 -19 -9 -24 -5 -5 4 -6 3 -2 -2 4 -5 3 -15 -3 +-22 -7 -8 -7 -14 1 -19 8 -5 8 -10 0 -20 -16 -20 21 -82 41 -69 4 2 10 -3 13 +-12 3 -8 10 -13 15 -10 5 4 12 0 14 -6 3 -8 6 -5 6 6 1 13 -4 16 -16 12 -17 +-6 -17 -5 0 8 20 16 21 25 4 48 -12 15 -14 15 -26 -4 -11 -18 -11 -20 3 -15 8 +3 18 1 22 -5 4 -7 3 -8 -4 -4 -7 4 -12 3 -12 -3 0 -8 -8 -8 -39 -2 -2 1 1 7 7 +14 6 7 7 18 3 26 -5 7 -6 23 -4 35 4 15 2 17 -5 7 -6 -8 -12 -9 -16 -3 -9 14 +15 21 37 10 12 -6 19 -5 23 7 3 8 10 12 15 9 5 -3 6 1 3 9 -3 8 -1 18 4 21 5 +3 8 -6 6 -20 -1 -16 2 -24 9 -21 7 2 11 16 11 30 -1 15 3 27 7 27 5 0 9 -4 9 +-8 0 -4 9 -8 21 -9 20 -2 20 -1 4 18 -10 10 -19 19 -19 19 -1 -1 -13 -7 -28 +-16z m-94 -120 c3 -8 2 -12 -4 -9 -6 3 -10 10 -10 16 0 14 7 11 14 -7z"/> +<path d="M4080 3632 c0 -6 5 -14 10 -17 8 -5 8 -11 1 -19 -11 -13 -5 -26 10 +-26 5 0 6 6 3 14 -6 17 30 28 45 13 19 -19 20 -2 0 22 -14 17 -19 19 -19 7 0 +-9 -5 -16 -11 -16 -5 0 -7 6 -3 13 4 6 4 9 -1 5 -4 -4 -14 -3 -22 3 -9 8 -13 +8 -13 1z"/> +<path d="M4162 3633 c-10 -4 -10 -9 3 -23 12 -13 13 -20 5 -25 -7 -4 -16 -3 +-22 3 -12 12 -41 4 -33 -8 13 -21 -20 -21 -37 0 -11 13 -18 17 -18 9 0 -11 -3 +-11 -11 1 -9 12 -10 12 -5 -3 4 -12 -2 -25 -16 -37 l-23 -19 22 2 c12 0 19 5 +16 11 -4 5 -1 6 7 1 8 -5 11 -4 6 3 -10 17 11 24 27 8 8 -8 17 -12 21 -9 3 4 +6 1 6 -6 0 -7 5 -9 11 -6 6 4 8 14 5 22 -3 8 -1 11 4 8 6 -3 10 0 10 7 0 10 2 +10 9 -1 6 -9 11 -10 15 -2 4 6 13 11 19 11 8 0 8 -3 -2 -9 -9 -6 -10 -11 -3 +-15 6 -4 9 -13 5 -21 -4 -11 -1 -13 11 -9 9 3 13 10 10 15 -6 10 -15 44 -18 +71 -3 22 -8 26 -24 21z"/> +<path d="M6343 3614 c-24 -16 -29 -23 -19 -27 8 -3 17 -1 20 6 3 7 4 3 1 -9 +-4 -14 0 -21 10 -21 18 0 18 2 4 29 -9 16 -8 19 2 13 8 -5 10 -4 5 3 -5 8 -1 +10 10 5 13 -5 15 -3 9 7 -5 9 -4 11 4 6 6 -4 9 -12 6 -17 -4 -5 -2 -9 3 -9 8 +0 22 22 22 33 0 1 -10 2 -23 3 -12 0 -37 -9 -54 -22z"/> +<path d="M6421 3614 c-8 -19 -16 -24 -31 -19 -16 5 -20 2 -18 -16 3 -26 -28 +-35 -41 -12 -6 11 -10 12 -15 4 -4 -6 -2 -11 5 -11 8 0 8 -4 -1 -15 -9 -11 +-16 -12 -25 -5 -7 6 -16 7 -18 2 -3 -4 3 -13 14 -20 13 -9 19 -9 19 -1 0 6 7 +8 16 5 11 -4 15 -2 11 7 -3 8 1 14 8 14 7 0 11 -6 9 -12 -3 -6 2 -12 11 -12 9 +0 14 6 11 13 -7 18 5 26 21 13 19 -16 16 1 -4 25 -10 12 -11 16 -4 9 16 -13 +44 -6 34 10 -3 6 -1 7 6 3 6 -4 9 -11 7 -15 -3 -4 8 -8 24 -8 24 0 27 3 19 14 +-6 7 -14 11 -18 9 -11 -7 -36 12 -28 21 5 4 12 1 17 -7 6 -10 10 -11 10 -3 0 +7 11 1 25 -12 13 -14 30 -25 36 -25 7 0 9 3 6 6 -3 4 -1 16 5 28 11 20 10 20 +-9 3 -20 -17 -21 -17 -38 10 -12 17 -20 23 -23 15 -3 -9 -8 -10 -16 -2 -10 7 +-16 3 -25 -16z"/> +<path d="M6850 3629 c0 -6 -6 -9 -14 -6 -8 3 -24 -5 -36 -18 -13 -14 -27 -22 +-33 -18 -6 3 -7 1 -3 -5 4 -7 2 -12 -4 -12 -7 0 -6 -6 3 -15 9 -8 13 -24 10 +-36 -6 -22 -6 -22 13 -3 16 15 17 22 7 32 -14 15 -6 45 10 35 6 -3 7 -1 3 5 +-6 10 7 17 17 10 2 -2 12 4 23 12 15 11 16 11 7 0 -17 -19 -17 -35 0 -21 14 +11 27 5 27 -13 0 -6 -4 -5 -9 3 -6 9 -11 10 -15 2 -10 -16 -26 -14 -26 4 0 12 +-3 12 -18 -2 -20 -19 -18 -41 2 -24 9 7 16 7 23 0 8 -8 13 -7 18 1 5 8 10 8 +20 0 10 -9 16 -6 25 9 6 12 8 22 5 22 -3 1 -11 2 -17 3 -7 1 -12 6 -11 11 0 6 +-5 16 -13 23 -10 9 -14 9 -14 1z"/> +<path d="M4282 3601 c-8 -4 -24 -7 -36 -6 -26 3 -48 -25 -36 -46 5 -7 12 -10 +17 -6 4 5 2 12 -5 16 -15 9 21 27 53 27 11 -1 23 4 27 9 5 6 8 3 8 -6 0 -9 7 +-22 15 -29 12 -10 16 -9 21 4 3 9 10 13 15 10 5 -3 6 2 3 11 -6 14 -8 14 -19 +-2 -11 -15 -13 -15 -24 5 -13 24 -19 26 -39 13z"/> +<path d="M4405 3582 c11 -23 13 -37 6 -46 -6 -7 -6 -18 -1 -25 4 -8 5 -21 2 +-30 -5 -14 -3 -14 11 -2 11 9 14 18 8 30 -5 9 -5 25 0 36 5 14 8 15 9 5 1 -8 +6 -4 11 10 l10 25 13 -23 c6 -12 15 -20 19 -16 3 4 9 -1 13 -10 3 -9 11 -13 +17 -9 6 4 -1 16 -19 31 -16 13 -22 21 -14 17 8 -5 23 -15 33 -23 11 -10 17 +-11 17 -3 0 6 -11 17 -25 23 -14 6 -25 14 -25 18 0 12 -29 7 -34 -6 -7 -17 +-33 -12 -51 12 -14 16 -14 14 0 -14z"/> +<path d="M6535 3590 c-3 -4 2 -10 10 -14 8 -3 15 0 15 7 0 8 4 7 9 -3 12 -17 +4 -33 -12 -23 -6 3 -43 7 -81 8 -39 1 -65 0 -58 -3 10 -3 10 -7 1 -18 -8 -10 +-15 -11 -24 -4 -10 8 -13 6 -11 -7 0 -10 -5 -17 -12 -15 -8 1 -12 -3 -10 -10 +6 -17 29 -23 26 -6 -2 7 2 12 9 11 7 -2 17 6 23 17 6 11 15 18 21 15 5 -4 9 +-1 9 4 0 6 5 11 11 11 5 0 7 -4 4 -10 -3 -5 1 -10 9 -10 9 0 16 5 16 10 0 6 5 +10 11 10 5 0 8 -4 5 -9 -9 -15 67 -10 88 5 13 9 16 14 7 14 -8 0 -12 3 -8 6 3 +3 11 3 18 -2 9 -5 7 -11 -6 -21 -14 -9 -15 -13 -4 -13 8 0 22 7 32 14 18 14 +17 15 -2 21 -12 3 -18 11 -15 17 4 6 0 6 -13 -1 -11 -6 -23 -7 -27 -4 -10 10 +-35 12 -41 3z"/> +<path d="M6630 3591 c0 -5 8 -12 17 -16 16 -6 15 -8 -7 -25 -14 -11 -20 -20 +-15 -20 6 0 4 -4 -4 -9 -8 -5 -9 -11 -3 -15 5 -3 15 1 22 9 10 12 10 15 -1 15 +-8 0 -1 7 15 15 32 17 48 20 26 4 -12 -8 -11 -9 5 -6 11 2 19 8 18 15 -2 6 4 +9 12 6 15 -6 19 -17 16 -42 -2 -10 2 -10 17 -1 16 10 18 15 7 26 -7 7 -11 23 +-8 35 5 22 5 22 -9 4 -12 -15 -18 -16 -36 -7 -11 6 -28 8 -36 5 -9 -3 -16 -1 +-16 5 0 6 -4 11 -10 11 -5 0 -10 -4 -10 -9z"/> +<path d="M4241 3571 c-8 -6 -9 -11 -3 -15 6 -3 14 -1 17 5 9 14 2 20 -14 10z"/> +<path d="M4267 3565 c-7 -16 -86 -59 -89 -48 0 5 -1 15 -2 23 -1 21 -28 19 +-46 -3 -15 -18 -16 -18 -41 1 -24 19 -25 19 -26 2 -1 -14 3 -17 15 -13 13 4 +12 2 -3 -11 l-20 -17 20 3 c11 2 24 8 28 13 5 6 6 1 3 -11 -5 -14 -2 -21 9 +-21 11 0 14 7 9 21 -4 15 -3 17 4 7 6 -8 12 -9 16 -3 3 6 2 12 -4 14 -6 2 0 9 +12 17 17 10 20 10 11 1 -18 -20 15 -42 41 -28 14 8 17 7 11 -2 -5 -8 -3 -11 6 +-8 8 3 13 10 12 16 -2 6 7 9 18 7 15 -3 19 0 15 11 -3 9 -2 12 5 9 5 -4 16 -1 +24 5 11 9 15 9 15 1 0 -6 -5 -11 -12 -11 -6 0 -8 -3 -5 -6 3 -4 2 -15 -3 -24 +-7 -13 -5 -21 5 -30 11 -9 14 -8 14 7 1 39 5 53 13 53 5 0 6 -10 3 -22 -3 -13 +-3 -18 2 -13 10 12 63 16 63 4 0 -4 -9 -10 -20 -14 -16 -5 -17 -9 -7 -20 13 +-14 31 -10 21 6 -3 5 -2 9 3 8 20 -3 23 2 12 22 -9 17 -8 23 2 30 7 4 10 11 6 +16 -5 4 -11 3 -15 -3 -11 -16 -54 -11 -82 9 -30 21 -36 21 -43 2z"/> +<path d="M3985 3550 c-4 -6 -11 -7 -17 -4 -6 4 -8 2 -4 -4 3 -5 0 -13 -6 -16 +-7 -4 -3 -4 10 -2 15 3 26 -2 33 -15 5 -11 14 -17 20 -14 12 8 12 -2 -2 -27 +-8 -16 -8 -19 1 -13 9 5 10 2 6 -12 -5 -15 0 -25 19 -37 24 -16 25 -16 22 6 +-2 12 -10 24 -17 26 -8 3 -10 0 -5 -8 5 -9 4 -11 -4 -6 -8 6 -9 12 -2 20 7 9 +7 16 -2 26 -6 7 2 4 18 -6 17 -9 36 -25 44 -33 12 -14 13 -13 8 6 -3 13 0 26 +5 30 6 3 8 2 5 -3 -3 -6 3 -15 14 -22 21 -14 26 -3 7 17 -11 11 -10 12 1 6 9 +-5 12 -4 7 3 -5 8 -1 10 11 6 15 -5 16 -4 3 6 -13 10 -13 11 3 6 19 -6 24 9 6 +20 -7 4 -19 -2 -28 -13 -9 -10 -22 -18 -28 -17 -7 1 -18 2 -24 3 -5 0 -7 6 -3 +13 4 7 3 8 -5 4 -9 -6 -9 -11 1 -24 10 -12 7 -12 -14 2 -24 16 -42 36 -20 22 +5 -3 9 1 9 9 0 22 -25 26 -36 7 -9 -15 -11 -15 -12 3 -1 11 -1 26 0 33 2 14 +-15 16 -24 2z"/> +<path d="M4446 3536 c-19 -19 -19 -19 2 -14 14 4 25 1 31 -9 7 -13 9 -12 14 6 +3 12 1 19 -3 16 -5 -3 -12 1 -17 8 -6 10 -12 9 -27 -7z"/> +<path d="M4546 3543 c-9 -22 -8 -23 12 -16 14 5 13 3 -3 -10 -20 -16 -20 -16 +3 -14 12 1 22 6 22 12 0 5 5 3 10 -5 5 -8 10 -11 10 -6 0 5 -11 19 -24 31 -20 +19 -26 20 -30 8z"/> +<path d="M6700 3529 c-9 -15 -9 -19 -1 -14 7 4 10 1 9 -7 -2 -7 3 -12 10 -10 +8 1 11 -2 8 -7 -4 -5 0 -12 6 -15 9 -3 6 -11 -10 -25 -15 -13 -19 -22 -11 -27 +6 -4 16 0 20 9 9 16 49 12 49 -5 0 -5 -4 -7 -9 -4 -14 9 -42 -5 -35 -16 4 -6 +-3 -5 -15 1 -22 13 -27 5 -11 -19 6 -10 10 -11 10 -2 0 6 3 11 8 11 21 -4 32 +2 26 13 -5 8 -2 9 10 5 10 -4 19 -1 22 8 4 8 9 13 14 10 13 -8 43 21 35 35 -6 +10 -10 8 -19 -6 -6 -11 -18 -20 -26 -22 -11 -2 -10 1 3 12 11 8 14 17 8 20 -5 +4 -12 2 -16 -4 -4 -6 -11 -7 -17 -4 -7 4 -8 2 -4 -4 4 -7 3 -12 -2 -12 -13 0 +-22 39 -11 46 5 3 9 10 9 16 0 7 -5 6 -14 -1 -15 -13 -32 1 -21 18 3 5 1 12 +-4 16 -6 3 -15 -4 -21 -16z"/> +<path d="M6421 3518 c-6 -10 -17 -16 -23 -12 -6 4 -8 3 -4 -4 13 -22 -18 -25 +-36 -2 -10 12 -18 17 -18 11 0 -6 -5 -11 -11 -11 -5 0 -7 6 -3 13 6 9 4 9 -8 +-1 -12 -10 -18 -10 -23 -1 -6 8 -10 7 -17 -4 -5 -9 -15 -14 -23 -11 -8 4 -12 +10 -9 15 3 5 1 9 -4 9 -6 0 -13 -8 -17 -17 -6 -17 -7 -17 -21 1 -14 19 -50 33 +-39 16 3 -5 -7 -17 -22 -27 -41 -26 -61 -59 -28 -47 8 4 13 10 10 14 -3 5 -1 +11 4 14 5 3 16 -5 25 -19 17 -26 22 -50 5 -25 -8 13 -10 12 -7 -4 5 -32 35 +-28 35 5 0 15 -4 26 -8 23 -4 -2 -13 4 -19 15 -7 14 -7 22 2 27 7 4 8 3 4 -4 +-4 -8 -2 -10 8 -6 8 3 12 13 9 22 -4 13 -3 14 5 3 5 -7 7 -22 5 -32 -3 -11 0 +-19 6 -19 7 0 9 5 5 12 -4 6 -3 8 4 4 6 -3 15 1 20 9 8 14 10 15 21 1 14 -16 +45 -10 34 7 -3 6 -1 7 6 3 6 -4 9 -12 6 -17 -3 -5 1 -6 9 -3 9 3 13 11 9 18 +-3 6 6 0 20 -13 19 -17 27 -20 27 -10 0 8 3 10 8 4 11 -15 35 -18 26 -3 -6 11 +-5 11 8 0 13 -10 17 -10 22 4 5 12 2 15 -11 10 -15 -6 -15 -4 2 12 11 10 23 +15 26 10 5 -8 19 12 19 26 0 11 -30 -1 -39 -16z"/> +<path d="M6468 3518 c-13 -13 -26 -22 -29 -21 -3 1 -6 -3 -6 -10 0 -7 -4 -20 +-8 -30 -5 -13 -3 -16 9 -11 8 3 15 9 14 12 -2 22 4 33 16 29 10 -4 13 0 11 14 +-4 18 -2 19 12 7 14 -11 16 -11 8 1 -5 10 -4 12 3 7 8 -5 10 -2 6 8 -8 21 -10 +20 -36 -6z"/> +<path d="M6525 3532 c-5 -4 -12 -16 -13 -26 -3 -17 -1 -18 11 -7 13 10 17 9 +26 -6 9 -17 10 -17 23 0 13 17 15 17 27 3 8 -9 9 -16 3 -16 -6 0 -9 -8 -7 -17 +2 -10 4 -20 4 -23 1 -3 5 1 10 9 5 8 7 24 4 35 -2 12 -5 26 -5 33 -1 7 -8 15 +-15 17 -8 3 -12 2 -9 -2 3 -5 -8 -9 -24 -9 -16 0 -27 4 -24 9 6 10 2 10 -11 0z"/> +<path d="M6647 3514 c-10 -14 -20 -34 -22 -46 -6 -28 -21 -43 -29 -29 -4 6 +-12 11 -17 11 -6 0 -3 -7 5 -16 9 -8 14 -19 11 -24 -3 -4 3 -14 12 -21 14 -12 +15 -11 10 6 -4 11 -2 27 3 35 7 11 10 11 10 2 0 -7 5 -10 11 -6 8 5 8 9 -1 14 +-9 5 -9 13 -1 27 5 11 7 23 3 27 -3 4 1 4 11 0 14 -5 16 -2 11 12 -6 17 -5 17 +9 -1 16 -20 16 -20 14 2 -2 32 -19 34 -40 7z"/> +<path d="M4271 3513 c-7 -12 -11 -13 -11 -5 0 10 -4 9 -16 -3 -9 -9 -23 -14 +-30 -11 -8 3 -25 -6 -38 -19 -14 -14 -20 -25 -14 -25 7 0 7 -4 -1 -13 -6 -8 +-7 -18 -3 -23 4 -5 -3 -1 -14 9 -18 15 -22 16 -27 3 -4 -9 -14 -13 -29 -9 -23 +5 -23 5 -3 -11 11 -10 14 -15 8 -11 -8 4 -11 1 -7 -9 3 -9 9 -15 12 -14 26 3 +42 -3 36 -14 -4 -7 -3 -10 1 -5 5 4 16 0 25 -8 20 -18 47 -11 47 11 0 9 -6 13 +-14 9 -8 -3 -17 -5 -19 -5 -3 0 -2 -5 2 -12 4 -7 3 -8 -5 -4 -6 4 -9 11 -6 16 +5 8 -33 26 -47 22 -5 -1 -8 3 -8 8 0 6 5 10 11 10 5 0 7 6 3 13 -6 10 -4 10 7 +0 18 -17 42 -16 36 1 -8 20 4 28 20 15 9 -9 13 -8 13 0 0 6 -6 14 -14 17 -12 +5 -12 9 2 25 15 18 17 18 36 1 16 -14 19 -15 14 -1 -4 9 -1 16 8 16 7 0 10 -5 +7 -10 -4 -6 -1 -7 7 -2 9 5 11 4 6 -3 -5 -8 -1 -10 11 -6 15 5 16 4 3 -5 -8 +-6 -13 -11 -10 -12 49 -9 62 -9 58 3 -3 7 -9 13 -14 13 -5 0 -17 5 -28 11 -15 +9 -16 15 -7 33 14 25 6 29 -8 4z"/> +<path d="M4460 3511 c0 -7 -5 -9 -12 -5 -6 4 -8 3 -5 -3 8 -13 -19 -38 -41 +-38 -8 0 -18 -7 -20 -15 -5 -13 -3 -13 14 0 18 14 18 14 5 -2 -8 -11 -9 -18 +-3 -18 6 0 14 5 17 10 4 6 11 7 17 4 15 -10 56 16 62 39 5 20 5 20 23 -2 10 +-12 32 -24 48 -26 29 -5 29 -4 -7 15 -21 11 -38 23 -38 26 0 3 4 3 8 0 5 -3 9 +1 9 9 0 18 -35 15 -42 -5 -6 -13 -9 -12 -21 4 -8 11 -14 14 -14 7z m16 -33 c4 +-7 4 -10 -1 -6 -4 4 -14 0 -21 -10 -7 -9 -16 -13 -21 -9 -4 5 1 15 11 23 24 +17 23 17 32 2z"/> +<path d="M4606 3504 c-3 -8 -10 -12 -16 -9 -5 3 -10 0 -10 -7 0 -10 -2 -10 -9 +1 -6 9 -11 10 -15 2 -6 -10 6 -15 27 -12 4 0 7 -3 7 -9 0 -5 5 -10 10 -10 6 0 +9 3 9 8 -4 27 3 35 14 15 12 -21 14 -23 40 -23 9 0 9 -2 -1 -9 -10 -6 -10 -10 +3 -21 12 -10 15 -10 15 1 0 8 6 3 13 -10 6 -14 18 -26 26 -29 7 -2 -2 16 -20 +41 -19 24 -37 43 -41 41 -3 -2 -15 7 -26 21 -16 21 -21 22 -26 9z"/> +<path d="M4340 3501 c-8 -6 -18 -7 -23 -4 -5 3 -1 -7 9 -22 17 -26 17 -28 1 +-40 -16 -11 -16 -13 -1 -19 18 -7 34 0 34 15 0 6 -5 7 -12 3 -7 -5 -8 -3 -4 5 +6 9 12 8 25 -6 17 -17 17 -19 -1 -31 -10 -7 -16 -18 -12 -23 3 -5 14 1 25 13 +14 18 21 20 27 10 7 -10 12 -8 26 7 14 15 14 19 3 24 -8 3 -20 0 -26 -6 -9 -9 +-19 -4 -41 23 -27 32 -28 36 -13 48 19 14 5 16 -17 3z"/> +<path d="M6485 3475 c1 -14 6 -29 10 -33 5 -4 5 1 2 10 -3 10 -2 20 4 23 5 4 +9 3 8 -2 -4 -20 2 -34 12 -28 6 4 8 9 5 12 -3 3 0 15 6 27 8 17 8 19 -2 9 -9 +-8 -19 -9 -31 -3 -14 8 -17 6 -14 -15z"/> +<path d="M6576 3484 c-3 -9 -13 -14 -21 -10 -8 3 -17 1 -20 -3 -6 -11 21 -22 +38 -15 7 2 13 13 14 24 2 24 -3 26 -11 4z"/> +<path d="M6672 3471 c2 -9 8 -19 13 -23 15 -12 -7 -10 -25 2 -11 7 -11 10 -2 +10 7 0 10 5 6 11 -4 8 -9 7 -15 -2 -4 -7 -3 -19 2 -25 7 -8 6 -14 -1 -19 -8 +-5 -8 -11 1 -21 6 -8 8 -14 3 -14 -5 0 -3 -4 4 -9 10 -6 10 -10 -3 -21 -13 +-11 -14 -10 -9 5 6 14 4 16 -7 10 -11 -7 -12 -6 -3 6 9 11 9 17 -1 26 -11 10 +-13 5 -10 -30 2 -23 1 -37 -3 -32 -11 15 -49 16 -49 1 0 -8 10 -13 26 -11 38 +3 71 15 71 26 0 5 6 9 14 9 12 0 14 12 11 56 -2 46 -1 52 9 38 8 -11 15 -13 +19 -7 8 13 -12 30 -36 30 -10 0 -16 -7 -15 -16z m9 -50 c-9 -6 -10 -11 -2 -15 +14 -9 14 -26 0 -26 -5 0 -7 5 -4 10 3 6 -1 13 -10 16 -13 6 -14 8 -3 15 7 5 +18 9 23 9 6 0 4 -4 -4 -9z"/> +<path d="M4198 3468 c-3 -7 0 -21 6 -30 14 -23 1 -34 -21 -17 -14 12 -16 12 +-8 0 5 -9 2 -19 -10 -28 -11 -7 -15 -13 -9 -14 63 -8 74 -6 58 6 -12 8 -14 14 +-5 19 6 4 14 0 17 -8 3 -9 10 -16 15 -16 13 0 6 23 -11 37 -13 11 -13 14 0 22 +10 7 20 5 32 -6 10 -9 18 -11 18 -6 0 14 -29 37 -37 29 -3 -3 -14 1 -24 10 +-13 12 -18 12 -21 2z m-8 -78 c0 -5 -5 -10 -11 -10 -5 0 -7 5 -4 10 3 6 8 10 +11 10 2 0 4 -4 4 -10z"/> +<path d="M4495 3460 c-3 -11 -10 -19 -14 -17 -4 1 -20 -13 -36 -31 -20 -25 +-30 -30 -40 -22 -9 7 -15 8 -19 1 -4 -6 3 -15 14 -21 12 -6 20 -7 20 -1 0 5 +12 8 28 5 24 -4 25 -3 10 9 -16 13 -16 15 6 27 13 7 29 22 34 34 6 11 11 15 +11 8 1 -7 6 -10 13 -6 7 4 8 3 4 -5 -4 -6 -12 -8 -18 -5 -8 5 -9 1 -3 -12 4 +-10 8 -27 9 -36 0 -10 7 -20 14 -23 10 -4 12 0 8 10 -3 9 -2 13 4 10 5 -3 17 +6 26 20 13 21 19 23 31 13 12 -10 14 -9 11 7 -1 10 4 20 12 22 13 4 13 3 0 -6 +-14 -10 -7 -16 14 -12 5 1 15 -7 23 -19 8 -11 19 -18 24 -15 8 6 13 -8 10 -27 +-1 -11 7 -10 31 3 11 6 18 7 15 2 -4 -5 7 -10 23 -10 16 0 27 4 25 8 -3 3 1 +12 8 18 10 8 19 5 35 -14 13 -15 17 -25 9 -25 -8 0 -7 -4 3 -10 19 -12 33 -13 +25 -1 -3 5 0 13 6 17 7 4 10 3 7 -2 -3 -5 0 -15 8 -22 17 -15 18 -8 3 19 -5 +11 -15 17 -20 13 -6 -3 -28 13 -51 35 -32 33 -43 39 -54 30 -18 -15 -18 -26 1 +-26 8 0 15 4 15 9 0 5 5 6 11 3 6 -5 2 -13 -12 -23 -17 -12 -24 -13 -27 -3 -3 +9 -7 9 -18 0 -11 -9 -22 -4 -54 21 -22 17 -38 35 -35 40 3 5 -6 6 -20 4 -14 +-2 -36 -6 -50 -8 -14 -3 -35 4 -49 15 -24 19 -25 19 -31 -1z m58 -35 c7 -16 +-8 -29 -23 -20 -10 6 -2 35 10 35 4 0 10 -7 13 -15z"/> +<path d="M6211 3455 c-21 -20 -22 -26 -11 -39 18 -23 29 -20 26 8 -2 18 1 23 +13 19 13 -4 13 -3 2 5 -8 6 -9 12 -3 16 17 10 22 -23 6 -39 -9 -8 -13 -15 -11 +-15 3 0 12 -2 20 -5 8 -4 14 1 15 10 1 8 3 22 4 32 1 14 4 13 18 -4 13 -17 18 +-18 28 -6 12 12 8 17 -11 14 -5 -1 -6 2 -3 7 3 5 -6 8 -19 6 -14 -1 -27 2 -31 +7 -8 13 -16 10 -43 -16z"/> +<path d="M6320 3472 c0 -6 9 -16 19 -22 25 -13 31 -13 31 2 0 6 -3 8 -7 5 -3 +-4 -15 0 -25 10 -10 9 -18 11 -18 5z"/> +<path d="M6456 3471 c-4 -6 -1 -11 6 -11 7 -1 2 -7 -12 -15 -22 -12 -26 -12 +-37 1 -16 22 -20 22 -36 0 -8 -11 -19 -16 -26 -12 -7 5 -20 1 -31 -9 -17 -15 +-19 -15 -28 0 -8 16 -9 16 -15 1 -4 -10 -3 -15 2 -12 5 3 11 -1 15 -9 3 -8 12 +-12 21 -9 8 3 13 10 10 14 -3 5 0 12 6 16 8 5 9 3 4 -6 -6 -10 -4 -11 11 -6 +10 5 24 9 31 9 7 0 10 4 8 8 -3 4 3 6 12 4 10 -2 18 -4 18 -5 0 -1 13 -3 29 +-5 15 -2 25 -1 22 2 -3 3 -2 11 4 17 5 7 5 18 1 25 -6 9 -11 10 -15 2z"/> +<path d="M4067 3439 c7 -7 15 -10 18 -7 3 3 -2 9 -12 12 -14 6 -15 5 -6 -5z"/> +<path d="M6121 3441 c-7 -5 -21 -6 -31 -4 -10 3 -29 -3 -44 -12 -14 -9 -30 +-14 -35 -10 -13 8 -51 -12 -51 -27 0 -6 9 -3 20 7 16 15 23 16 33 6 9 -10 8 +-15 -7 -27 -16 -11 -17 -14 -4 -14 21 0 41 26 32 42 -4 7 -4 10 1 6 4 -4 14 0 +22 10 12 16 13 15 6 -3 -6 -19 -5 -19 13 -4 10 8 29 14 41 13 12 0 24 5 27 12 +6 16 -3 18 -23 5z"/> +<path d="M6530 3441 c-8 -6 -18 -7 -22 -5 -4 3 -8 0 -8 -5 0 -16 40 -54 48 +-46 4 4 -1 11 -11 17 -14 7 -16 13 -7 24 10 11 14 11 27 -1 8 -8 19 -15 25 +-15 6 0 1 9 -12 20 -13 11 -23 20 -24 20 -1 0 -8 -4 -16 -9z"/> +<path d="M4234 3429 c-4 -8 -3 -10 4 -5 7 4 12 4 13 -1 0 -4 2 -16 4 -26 2 +-11 -7 -23 -23 -32 -15 -8 -23 -14 -19 -15 4 0 2 -10 -4 -22 -6 -13 -8 -20 -4 +-16 4 4 25 -4 47 -18 22 -14 42 -23 46 -20 3 3 11 -3 19 -14 15 -22 33 -27 33 +-9 0 5 -4 8 -9 4 -5 -3 -12 -1 -16 4 -3 6 5 8 18 5 16 -2 24 1 24 10 0 10 -12 +13 -43 11 -41 -3 -42 -3 -38 23 l5 26 -23 -19 c-17 -16 -20 -16 -9 -2 15 18 2 +24 -16 6 -8 -8 -13 -8 -18 1 -7 12 38 60 58 60 8 0 8 3 -1 9 -11 7 -10 9 3 14 +9 4 13 3 10 -3 -3 -5 9 -16 27 -24 18 -8 27 -15 20 -15 -7 -1 -10 -6 -6 -12 4 +-8 9 -7 16 2 7 10 8 8 4 -7 -5 -14 -2 -21 9 -21 11 0 14 7 9 21 -3 12 -2 16 3 +11 4 -6 19 -11 33 -12 14 0 33 -4 44 -8 16 -7 17 -6 7 14 -9 16 -16 19 -29 12 +-10 -6 -23 -6 -35 1 -10 5 -21 7 -24 4 -4 -3 -12 -1 -20 6 -11 9 -11 14 4 32 +15 18 15 19 1 8 -18 -15 -52 -3 -61 20 -3 8 -6 6 -6 -4 -1 -22 -9 -23 -32 -2 +-13 12 -19 12 -25 3z"/> +<path d="M4722 3431 c-10 -6 -10 -10 3 -21 8 -7 15 -10 15 -7 0 3 3 12 6 21 7 +17 -3 20 -24 7z"/> +<path d="M6473 3428 c1 -8 -7 -12 -20 -11 -13 2 -23 -2 -23 -8 0 -5 4 -8 9 -5 +5 3 14 -1 21 -9 10 -12 16 -13 28 -3 13 11 14 11 8 0 -4 -7 -2 -19 4 -27 16 +-19 36 -20 24 -2 -5 7 -2 6 6 -3 13 -14 18 -15 29 -3 7 8 21 11 32 8 11 -4 19 +-2 19 4 0 12 -59 51 -75 50 -5 0 -4 -3 3 -6 7 -2 17 -13 22 -23 9 -16 7 -18 +-11 -15 -27 5 -47 22 -54 46 -7 21 -27 27 -22 7z m17 -18 c0 -5 -5 -10 -11 +-10 -5 0 -7 5 -4 10 3 6 8 10 11 10 2 0 4 -4 4 -10z"/> +<path d="M6397 3424 c-10 -11 -9 -26 2 -19 5 3 13 0 17 -6 5 -8 3 -9 -6 -4 -9 +5 -11 4 -6 -3 8 -14 26 -16 26 -4 0 15 -26 43 -33 36z"/> +<path d="M4490 3412 c0 -7 -4 -11 -9 -7 -5 3 -12 1 -15 -4 -4 -5 -3 -12 2 -15 +5 -3 7 -24 5 -47 -2 -24 0 -39 4 -35 5 4 9 22 10 39 3 65 2 64 13 47 5 -8 10 +-10 10 -5 0 6 -5 17 -10 25 -7 11 -10 11 -10 2z"/> +<path d="M4568 3395 c-18 -24 -15 -37 7 -28 8 2 11 12 8 21 -4 13 -2 12 10 -3 +l16 -20 1 20 c1 18 1 19 11 2 13 -23 2 -42 -16 -27 -11 9 -14 7 -12 -9 2 -27 +12 -26 38 0 16 16 18 23 9 29 -9 5 -9 9 -1 14 11 7 15 -5 12 -32 -2 -10 2 -10 +17 -1 19 12 18 13 -7 35 -14 12 -28 19 -31 16 -8 -12 -33 -14 -39 -4 -3 6 -14 +0 -23 -13z"/> +<path d="M6080 3405 c-7 -8 -15 -13 -18 -10 -3 2 -15 -9 -27 -25 -12 -16 -25 +-28 -28 -25 -4 3 -5 2 -2 -2 3 -3 0 -12 -6 -20 -8 -9 -8 -13 -1 -13 6 0 18 12 +26 28 8 15 15 21 16 13 0 -11 3 -11 15 -1 11 9 12 15 5 20 -6 4 0 11 15 18 15 +7 24 8 20 2 -3 -5 -1 -10 4 -10 13 0 14 10 2 28 -6 10 -10 10 -21 -3z"/> +<path d="M6119 3412 c-1 -4 -2 -14 -3 -22 -1 -10 -10 -14 -26 -13 -14 1 -19 +-1 -12 -4 10 -4 9 -8 -5 -18 -10 -7 -21 -12 -25 -11 -7 1 -42 -43 -43 -54 0 +-2 14 -5 30 -6 24 -1 31 3 32 19 2 15 -1 17 -10 8 -14 -14 -27 -14 -27 0 0 5 +4 8 9 4 6 -3 15 4 21 15 6 12 18 19 25 16 7 -2 16 2 19 10 3 9 11 12 17 8 8 +-4 9 -3 5 4 -5 8 -2 10 9 6 11 -5 14 -2 9 12 -5 15 -4 16 4 4 6 -8 8 -18 6 +-22 -3 -4 0 -8 5 -8 14 0 14 6 1 29 -10 20 -39 36 -41 23z"/> +<path d="M6352 3407 c-12 -6 -22 -13 -22 -18 0 -9 -20 -7 -37 4 -18 11 -33 0 +-27 -18 4 -8 10 -12 15 -9 5 3 7 11 3 17 -3 7 1 4 9 -6 13 -16 16 -16 41 4 23 +18 25 19 20 2 -5 -16 -4 -16 12 2 15 18 16 18 10 1 -5 -14 -2 -17 9 -12 11 4 +14 2 9 -7 -4 -6 -3 -9 1 -4 5 4 17 -1 28 -10 15 -15 18 -15 16 -3 -2 9 1 16 6 +17 6 1 9 -5 7 -13 -4 -17 15 -44 31 -44 5 0 3 8 -6 18 -21 23 -21 32 -1 32 10 +0 14 -6 11 -14 -3 -8 2 -20 10 -28 15 -11 16 -11 10 5 -6 15 -4 16 13 7 11 -6 +20 -15 20 -19 0 -14 -27 -20 -37 -10 -7 7 -12 5 -17 -6 -3 -9 -2 -13 4 -10 6 +4 7 -1 3 -12 -6 -17 -5 -17 14 0 11 9 23 14 27 10 4 -4 9 3 13 15 3 12 10 22 +15 22 5 0 6 -5 2 -11 -4 -7 2 -7 17 1 34 18 36 21 8 18 -17 -2 -23 1 -21 12 3 +12 1 12 -9 3 -14 -14 -34 -7 -80 28 -32 25 -36 26 -47 11 -10 -15 -13 -15 -35 +9 -19 21 -27 24 -45 16z"/> +<path d="M5932 3383 c2 -13 -4 -18 -22 -18 -14 0 -24 -5 -23 -12 1 -6 -4 -17 +-12 -23 -12 -10 -15 -10 -15 0 0 9 -3 10 -13 1 -8 -6 -16 -8 -19 -6 -3 3 -5 +-7 -4 -22 1 -19 -4 -27 -12 -25 -18 3 -10 -20 8 -26 7 -3 10 0 6 7 -5 7 -1 9 +11 5 14 -4 15 -4 4 4 -11 8 -11 10 0 15 12 4 11 7 -1 16 -8 6 -10 11 -5 12 6 +0 18 2 27 4 10 2 20 -1 24 -6 8 -14 21 -11 21 6 0 8 -4 15 -8 15 -5 0 -6 7 -2 +16 4 12 9 8 21 -16 10 -20 18 -27 22 -19 4 6 14 16 21 21 10 7 8 8 -8 5 -13 +-3 -26 0 -30 5 -3 6 -2 8 3 5 6 -3 15 3 22 14 8 12 9 19 1 19 -5 0 -7 5 -4 10 +3 6 1 10 -5 10 -6 0 -10 -8 -8 -17z"/> +<path d="M5971 3376 c-17 -18 -19 -25 -8 -29 14 -5 17 -41 4 -53 -3 -4 -2 -14 +3 -24 5 -10 6 -20 3 -24 -3 -3 -2 -6 4 -6 18 0 22 12 12 34 -10 20 -10 20 5 2 +9 -11 16 -23 16 -27 0 -3 12 -6 28 -5 29 1 59 23 47 34 -4 4 -10 1 -12 -6 -4 +-10 -8 -10 -19 -1 -10 8 -18 8 -27 1 -10 -9 -17 -4 -30 18 -11 18 -14 31 -7 +35 6 4 7 13 1 23 -10 20 -3 45 10 36 5 -3 9 0 9 5 0 18 -15 13 -39 -13z"/> +<path d="M6172 3379 c3 -20 -1 -24 -19 -22 -13 2 -23 -2 -23 -8 0 -5 4 -7 10 +-4 6 4 7 -1 3 -11 -4 -12 -3 -15 6 -10 6 4 18 2 26 -4 10 -8 15 -9 15 -2 0 6 +-5 14 -10 17 -16 10 -1 25 18 18 15 -6 14 -3 -3 18 -11 13 -21 26 -23 28 -1 3 +-1 -6 0 -20z"/> +<path d="M6190 3390 c0 -4 7 -13 15 -20 18 -15 9 -33 -14 -26 -14 5 -13 4 2 +-8 15 -11 15 -15 3 -25 -10 -9 -16 -9 -21 -1 -4 6 -13 9 -21 6 -9 -3 -19 4 +-26 19 -8 19 -14 22 -20 13 -11 -18 -10 -30 1 -23 5 3 13 0 17 -6 3 -6 2 -14 +-4 -18 -7 -4 -4 -11 9 -19 17 -11 20 -10 17 4 -2 9 3 19 11 22 10 3 12 0 8 +-12 -4 -9 -3 -14 2 -11 5 3 12 1 16 -5 3 -5 11 -10 17 -10 7 0 7 4 -1 14 -9 +10 -8 16 4 26 8 7 15 8 15 3 0 -5 7 -10 15 -10 8 0 15 7 15 14 0 8 -4 12 -8 9 +-4 -2 -14 -1 -22 5 -14 8 -8 11 17 8 10 -1 21 33 16 47 -4 12 -63 15 -63 4z +m47 -15 c1 -11 -17 -8 -30 4 -4 4 0 7 10 6 10 0 19 -5 20 -10z"/> +<path d="M4797 3384 c-4 -4 1 -13 11 -21 16 -12 16 -13 0 -7 -10 3 -18 1 -18 +-5 0 -6 6 -11 13 -11 8 0 19 -12 26 -27 7 -15 15 -23 19 -17 4 5 13 10 20 12 +10 2 10 -2 2 -19 -9 -16 -14 -18 -25 -9 -11 9 -14 7 -12 -9 2 -28 12 -26 43 4 +22 22 24 28 13 42 -8 9 -15 11 -17 4 -2 -7 -12 -5 -28 5 -13 9 -22 20 -19 24 +6 10 -19 42 -28 34z"/> +<path d="M4263 3358 c-18 -13 -33 -27 -33 -32 0 -5 9 -1 20 9 11 10 20 14 20 +8 0 -6 11 -10 24 -9 23 1 38 -18 16 -20 -23 -3 -24 -5 -12 -12 7 -5 36 -7 65 +-6 68 2 69 2 62 14 -3 5 -13 7 -23 4 -13 -5 -14 -4 -3 4 9 7 10 12 2 16 -10 6 +-15 -6 -12 -26 0 -5 -3 -8 -9 -8 -5 0 -10 5 -10 10 0 6 -3 9 -7 8 -5 -2 -18 7 +-30 20 -13 12 -18 22 -11 22 6 0 8 3 4 7 -4 5 -14 -1 -23 -12 -15 -20 -15 -20 +-8 3 3 12 5 22 3 22 -2 0 -18 -10 -35 -22z m82 -48 c3 -5 1 -10 -4 -10 -6 0 +-11 5 -11 10 0 6 2 10 4 10 3 0 8 -4 11 -10z"/> +<path d="M4495 3358 c3 -8 16 -14 28 -13 12 1 27 -1 32 -6 6 -4 17 -4 25 1 17 +11 16 11 -25 15 -16 2 -38 6 -48 10 -13 5 -16 3 -12 -7z"/> +<path d="M6322 3361 c-8 -4 -24 -7 -37 -6 -13 2 -26 -3 -29 -11 -4 -10 -2 -12 +6 -8 8 5 9 1 4 -12 -4 -10 -10 -26 -13 -34 -4 -13 -4 -13 6 0 8 11 11 12 11 2 +0 -7 5 -10 10 -7 8 5 7 12 -2 23 -11 13 -9 13 13 -1 25 -16 27 -16 40 -1 12 +15 12 17 -1 12 -19 -7 -52 10 -45 23 4 5 14 5 27 -2 16 -9 19 -8 13 2 -5 7 -4 +10 3 5 5 -3 13 0 16 6 3 7 3 3 0 -9 -4 -18 -2 -22 10 -17 8 3 14 11 12 17 -1 +7 -1 9 1 4 3 -4 9 -5 14 -2 5 4 6 0 3 -8 -3 -8 2 -14 11 -14 8 0 15 5 15 11 0 +6 5 3 11 -7 6 -9 14 -15 20 -12 5 4 9 1 9 -4 0 -6 -5 -11 -11 -11 -6 0 -1 -8 +11 -18 19 -15 20 -19 7 -20 -10 -1 -24 -3 -32 -4 -9 -1 -14 -6 -12 -12 3 -6 +11 -9 18 -7 8 2 20 4 27 4 6 0 12 3 13 6 6 46 4 54 -29 79 -19 14 -39 27 -46 +29 -6 1 -22 4 -36 7 -14 3 -31 2 -38 -3z"/> +<path d="M4666 3353 c-4 -5 -12 -8 -17 -8 -17 0 -9 -20 8 -22 10 -1 29 -4 42 +-7 14 -3 29 -2 35 2 18 12 42 8 61 -12 19 -18 18 -18 -5 -11 -14 4 -22 4 -18 +0 4 -4 3 -16 -2 -25 -7 -13 -5 -22 6 -31 13 -11 15 -10 14 2 -4 26 0 39 11 39 +8 0 8 -4 0 -14 -9 -10 -8 -15 3 -19 10 -4 13 -15 10 -32 -4 -23 -3 -24 15 -13 +12 7 16 15 10 19 -7 4 -5 8 4 12 12 4 14 -1 10 -24 -4 -30 -4 -30 14 -12 11 +10 15 21 10 24 -5 4 -3 9 4 12 16 6 -13 11 -45 7 -13 -1 -17 3 -13 13 3 8 0 +20 -6 26 -8 8 -8 11 1 11 10 0 10 5 2 21 -7 11 -14 18 -17 15 -3 -3 -13 5 -23 +17 -15 18 -20 19 -33 9 -12 -10 -16 -10 -20 0 -3 10 -8 9 -18 -4 -11 -13 -18 +-15 -29 -7 -13 9 -12 10 3 5 11 -3 16 -2 12 4 -7 12 -19 13 -29 3z m64 -23 c0 +-5 -4 -10 -10 -10 -5 0 -10 5 -10 10 0 6 5 10 10 10 6 0 10 -4 10 -10z"/> +<path d="M4906 3316 c3 -22 5 -47 6 -54 1 -8 8 -10 17 -6 9 3 23 7 31 8 8 0 +19 6 23 11 5 6 6 1 3 -11 -5 -14 -2 -21 9 -21 10 0 14 7 10 21 -3 12 -2 15 1 +8 5 -10 9 -10 20 -1 11 9 18 9 25 2 8 -8 6 -11 -6 -10 -10 1 -20 -4 -22 -11 +-3 -7 1 -10 11 -6 10 4 18 0 22 -10 3 -9 10 -14 14 -11 5 3 12 0 16 -6 4 -8 3 +-9 -4 -5 -14 9 -15 -4 -2 -24 10 -16 11 -13 14 31 2 21 -2 25 -18 21 -15 -4 +-18 -1 -13 11 9 23 -12 34 -60 32 -27 0 -39 3 -35 9 14 23 8 32 -28 47 l-38 +17 4 -42z m36 6 c-7 -2 -10 -8 -7 -12 3 -5 13 -6 22 -3 13 5 12 2 -3 -15 -14 +-16 -21 -19 -31 -10 -8 6 -10 14 -5 17 5 3 8 14 7 23 -2 12 2 15 13 10 10 -4 +12 -7 4 -10z"/> +<path d="M4423 3328 c2 -7 10 -12 17 -10 11 2 11 0 1 -12 -7 -9 -8 -17 -2 -20 +5 -3 12 0 14 6 4 8 8 4 12 -9 4 -13 11 -20 16 -17 5 3 7 9 4 14 -3 5 4 14 15 +20 11 6 17 16 14 22 -4 7 -3 8 4 4 7 -4 12 -2 12 4 0 7 -7 9 -16 6 -9 -3 -18 +-6 -20 -6 -3 0 -3 -4 0 -9 3 -5 -1 -14 -8 -21 -12 -9 -17 -7 -25 8 -12 22 -45 +39 -38 20z"/> +<path d="M4518 3308 c-15 -15 -24 -28 -21 -28 3 0 0 -7 -8 -16 -11 -13 -15 +-13 -24 -2 -16 20 -65 30 -86 17 -8 -5 -10 -9 -6 -9 4 0 2 -10 -4 -22 -6 -13 +-8 -20 -4 -16 4 4 13 0 20 -9 9 -13 14 -13 20 -3 6 9 4 11 -6 5 -12 -7 -12 -6 +-1 7 8 10 9 19 3 22 -5 3 -12 1 -14 -4 -3 -6 -4 -5 -2 2 1 7 8 12 14 11 6 -2 +11 2 11 8 0 8 5 7 16 -2 14 -12 14 -14 -1 -25 -9 -7 -12 -15 -6 -18 5 -4 16 3 +24 15 10 13 17 17 22 9 4 -6 1 -17 -5 -25 -8 -10 -9 -15 -2 -15 6 0 14 5 17 +10 4 6 10 8 15 5 4 -3 11 2 14 11 5 12 2 15 -11 10 -15 -5 -15 -4 1 9 11 8 25 +15 30 15 6 0 4 5 -4 11 -13 9 -12 10 3 5 13 -4 17 -1 15 11 -2 12 4 17 22 17 +17 0 24 -5 22 -15 -1 -9 5 -16 13 -16 8 0 14 6 13 13 -2 7 2 13 7 13 6 0 9 -6 +7 -14 -1 -7 3 -17 10 -21 7 -4 10 -4 6 1 -4 4 -3 14 3 21 13 16 -3 26 -45 28 +-17 1 -35 4 -41 7 -5 3 -22 -8 -37 -23z"/> +<path d="M6070 3331 c0 -5 6 -12 13 -15 9 -5 9 -7 -2 -12 -11 -5 -11 -8 0 -15 +13 -8 18 -29 20 -85 1 -11 7 -21 15 -21 14 0 14 23 1 45 -8 11 2 16 29 13 6 +-1 11 6 11 14 0 8 -3 13 -5 10 -3 -3 -12 1 -20 8 -10 8 -13 8 -9 1 4 -7 1 -14 +-6 -17 -14 -5 -16 31 -2 53 5 9 4 11 -4 6 -6 -4 -14 0 -17 8 -7 17 -24 22 -24 +7z"/> +<path d="M4654 3303 c-4 -10 -6 -24 -5 -30 2 -14 -24 -18 -32 -5 -2 4 -2 2 -1 +-5 2 -7 -1 -15 -7 -18 -5 -4 -7 -11 -3 -16 3 -6 12 -3 20 8 10 14 16 15 22 5 +7 -10 13 -8 27 8 20 22 8 28 -14 8 -11 -11 -12 -10 -5 2 9 17 17 60 10 60 -2 +0 -7 -8 -12 -17z"/> +<path d="M4734 3308 c-3 -5 -16 -6 -30 -4 -13 3 -22 1 -19 -4 3 -4 -1 -10 -7 +-13 -7 -2 11 -4 40 -4 46 0 50 1 35 13 -15 12 -16 13 -2 8 10 -3 19 -2 22 3 3 +5 -3 9 -14 9 -11 0 -23 -4 -25 -8z"/> +<path d="M5954 3312 c4 -7 4 -12 -1 -13 -4 0 -19 -2 -33 -4 -14 -1 -29 0 -35 +3 -22 14 -32 9 -29 -14 3 -35 -34 -54 -55 -28 -16 20 -71 29 -71 12 0 -5 -10 +-7 -22 -3 -20 5 -21 4 -6 -5 13 -8 24 -8 37 0 22 11 61 2 41 -10 -8 -5 -6 -11 +5 -20 12 -10 15 -10 15 0 0 10 3 10 15 0 9 -8 15 -9 15 -2 0 6 8 9 19 7 12 -2 +18 2 17 13 -1 12 6 16 22 15 13 -2 21 1 17 6 -3 5 -1 12 4 16 5 3 14 -3 20 +-12 6 -11 11 -13 11 -5 0 8 5 10 13 6 6 -4 9 -4 5 1 -4 4 -3 14 3 21 7 8 6 14 +-2 20 -8 4 -9 3 -5 -4z m-64 -26 c0 -2 -7 -7 -16 -10 -8 -3 -12 -2 -9 4 6 10 +25 14 25 6z"/> +<path d="M6338 3301 c-10 -10 -25 -18 -33 -19 -8 -1 -22 -3 -30 -4 -19 -2 -19 +-8 1 -36 8 -12 20 -20 25 -16 6 3 3 11 -6 18 -15 11 -15 13 -1 25 11 9 16 10 +17 2 3 -20 4 -26 12 -38 5 -7 13 -13 19 -13 7 0 6 5 -2 15 -14 17 -5 36 14 29 +7 -3 13 2 13 11 0 18 -2 18 -30 4 -19 -9 -20 -8 -5 3 9 7 25 18 35 25 14 9 14 +12 3 12 -8 0 -23 -8 -32 -18z"/> +<path d="M6382 3304 c-7 -8 -8 -14 -3 -14 10 0 25 19 20 25 -2 1 -10 -3 -17 +-11z"/> +<path d="M6390 3291 c-13 -14 -23 -27 -21 -29 1 -1 0 -8 -2 -15 -4 -9 -8 -8 +-16 3 -6 8 -11 10 -11 5 0 -6 5 -16 11 -22 16 -16 -8 -28 -26 -13 -16 13 -19 +6 -15 -33 1 -14 -4 -17 -24 -13 -24 4 -36 -7 -18 -18 10 -6 94 31 103 45 3 6 +9 10 13 10 22 -3 25 3 22 38 -2 30 0 38 10 34 8 -3 11 -9 8 -14 -3 -5 2 -6 12 +-2 15 5 15 7 0 15 -9 5 -14 13 -11 18 13 21 -12 14 -35 -9z m0 -40 c-13 -26 +-13 -34 3 -25 7 4 9 3 4 -2 -5 -5 -12 -8 -15 -7 -4 1 -15 -6 -26 -15 -11 -10 +-7 0 10 26 28 43 43 57 24 23z"/> +<path d="M4547 3294 c2 -7 -4 -18 -14 -25 -20 -15 -23 -32 -9 -46 5 -4 7 -3 3 +2 -3 6 -2 17 4 25 7 12 9 12 9 1 0 -11 3 -11 15 -1 13 11 13 15 3 22 -11 8 +-11 9 0 6 8 -2 13 -7 12 -12 -1 -5 4 -13 12 -17 10 -7 10 -9 0 -9 -7 0 -11 -4 +-7 -9 3 -6 -3 -15 -12 -21 -15 -9 -12 -10 14 -6 26 3 31 1 26 -12 -4 -12 3 -9 +23 8 15 14 22 17 15 8 -8 -11 -9 -18 -3 -18 6 0 16 8 21 18 6 9 11 11 11 5 0 +-7 4 -13 9 -13 5 0 8 8 7 18 -2 9 5 23 16 30 10 7 16 18 13 23 -4 5 -18 -5 +-32 -21 -21 -26 -28 -29 -41 -18 -9 8 -13 8 -9 2 9 -15 -16 -25 -33 -14 -10 6 +-11 12 -2 22 11 14 3 38 -14 41 -5 1 -9 7 -8 12 1 6 -7 11 -16 11 -10 0 -16 +-6 -13 -12z"/> +<path d="M6212 3280 c7 -10 15 -17 19 -14 5 2 13 -5 19 -16 6 -11 7 -20 3 -20 +-4 0 0 -5 9 -11 9 -5 15 -15 12 -23 -3 -7 2 -13 11 -13 8 0 15 3 15 6 0 8 -54 +86 -63 89 -4 2 -5 7 -3 11 3 4 -4 7 -14 8 -17 1 -18 -1 -8 -17z"/> +<path d="M4720 3258 c-33 -50 -33 -50 -12 -44 11 4 23 2 27 -4 3 -5 13 -10 21 +-10 11 0 10 4 -3 18 -10 10 -25 17 -33 14 -13 -3 -13 -2 -1 6 17 12 43 4 34 +-11 -3 -6 -1 -7 5 -3 7 4 13 2 13 -3 1 -6 3 -15 4 -21 1 -5 3 -13 4 -17 2 -10 +25 28 27 45 2 10 -1 10 -10 3 -9 -8 -17 -6 -30 7 -9 10 -13 22 -9 27 5 4 3 5 +-4 2 -6 -4 -13 -3 -15 3 -2 6 -10 0 -18 -12z"/> +<path d="M4881 3266 c-9 -10 -8 -15 3 -19 18 -7 15 -26 -8 -54 -19 -21 -52 +-21 -39 1 4 6 -1 5 -10 -3 -9 -7 -17 -10 -17 -6 0 4 -6 2 -14 -4 -10 -8 -16 +-9 -21 -1 -3 5 -11 10 -17 10 -6 0 -3 -9 7 -20 10 -11 21 -17 24 -12 7 9 43 8 +59 -2 6 -3 15 2 21 11 7 11 13 14 18 8 11 -14 65 -15 60 -1 -2 6 -16 10 -30 +10 -15 -1 -27 2 -27 6 0 11 28 20 43 14 8 -3 14 2 14 11 0 11 -7 14 -21 10 +-12 -3 -5 3 14 14 36 21 35 30 -1 10 -24 -13 -62 -3 -40 10 8 5 9 11 3 15 -5 +3 -15 0 -21 -8z"/> +<path d="M6169 3269 c-1 -5 -2 -15 -3 -21 -1 -7 -9 -12 -19 -12 -22 2 -22 -5 +1 -22 16 -13 16 -14 -3 -8 -16 5 -17 4 -5 -5 13 -10 13 -12 0 -20 -8 -5 -17 +-8 -21 -5 -6 3 -19 -19 -19 -32 0 -3 15 6 33 20 23 18 37 22 47 16 22 -14 26 +-12 27 11 2 16 -1 18 -12 9 -11 -9 -16 -7 -25 9 -10 20 -7 25 14 22 5 -1 6 5 +2 14 -4 13 -2 14 14 5 10 -5 22 -19 25 -30 8 -24 25 -18 20 8 -2 9 -4 21 -4 +25 -1 5 -5 6 -9 3 -5 -3 -20 1 -35 9 -15 8 -28 10 -28 4z"/> +<path d="M5740 3250 c-8 -5 -22 -7 -32 -4 -20 6 -33 -12 -17 -22 8 -5 9 -3 4 +5 -6 10 -3 11 12 2 14 -7 24 -7 33 2 10 9 11 9 6 0 -5 -9 -2 -11 8 -7 9 3 16 +1 16 -6 0 -6 -4 -8 -10 -5 -5 3 -10 1 -10 -5 0 -7 7 -10 15 -7 8 4 17 2 20 -3 +9 -15 27 -12 20 3 -4 6 1 3 9 -7 15 -18 20 -15 17 9 -1 6 5 2 12 -7 12 -15 14 +-15 25 3 12 19 5 25 -23 19 -35 -8 -54 -5 -73 11 -15 12 -18 19 -10 22 7 3 9 +6 3 6 -5 0 -17 -4 -25 -9z"/> +<path d="M5870 3250 c0 -3 4 -11 9 -19 16 -26 -15 -59 -51 -55 -17 2 -37 9 +-44 15 -11 9 -14 8 -14 -2 -1 -9 -6 -7 -18 7 -12 14 -28 20 -53 19 -24 0 -35 +3 -32 11 2 7 0 15 -6 18 -5 4 -9 -2 -9 -11 0 -10 -3 -27 -7 -38 -5 -16 -5 -17 +4 -5 9 13 11 13 11 1 0 -11 4 -9 15 5 8 10 15 15 14 9 -3 -24 2 -27 17 -9 8 +10 12 13 8 5 -5 -11 -3 -13 9 -8 18 7 33 -8 17 -18 -5 -3 -10 -14 -10 -23 0 +-13 2 -13 15 4 15 19 15 19 31 -1 16 -20 16 -20 11 2 -4 19 -2 21 13 13 11 -6 +22 -15 25 -20 3 -6 11 -10 17 -10 6 0 5 7 -3 18 -13 15 -12 16 3 3 15 -11 19 +-11 24 3 3 9 10 13 15 10 5 -3 6 3 3 13 -5 15 -4 16 5 3 8 -11 7 -18 -6 -27 +-20 -16 -9 -17 18 -3 14 8 17 15 10 28 -4 9 -6 23 -3 31 3 10 0 11 -9 5 -12 +-7 -12 -5 0 9 9 11 18 14 25 8 7 -6 18 -5 29 4 15 11 11 13 -33 12 -27 -1 -50 +-4 -50 -7z"/> +<path d="M4555 3240 c-4 -6 -11 -8 -16 -4 -5 3 -8 0 -7 -7 2 -7 -8 -13 -22 +-13 -14 -1 -31 -5 -37 -9 -21 -13 -36 2 -21 21 11 14 9 14 -8 -1 -11 -9 -24 +-14 -27 -10 -4 3 -7 1 -7 -5 0 -7 7 -12 15 -12 9 0 26 -9 38 -20 12 -11 27 +-18 34 -16 7 3 13 1 13 -5 0 -6 5 -7 10 -4 15 9 1 27 -16 21 -12 -4 -12 -2 -4 +14 10 19 13 19 33 5 12 -8 26 -15 32 -15 5 0 2 5 -7 11 -9 5 -15 16 -12 24 4 +8 9 13 13 10 4 -2 8 2 8 10 0 18 -3 19 -12 5z m-65 -50 c0 -5 -4 -10 -10 -10 +-5 0 -10 5 -10 10 0 6 5 10 10 10 6 0 10 -4 10 -10z"/> +<path d="M4953 3224 c0 -7 7 -16 15 -19 9 -3 12 0 9 8 -3 8 1 14 8 14 7 0 11 +-6 9 -12 -3 -6 2 -12 11 -12 9 0 14 6 11 13 -5 13 19 13 31 -1 4 -4 2 -5 -6 0 +-9 5 -12 3 -9 -6 3 -8 11 -13 17 -11 7 1 10 -2 6 -8 -3 -5 0 -10 7 -10 8 0 9 +-3 3 -8 -14 -10 -15 -44 -1 -39 15 5 15 36 -2 72 -12 28 -18 31 -61 31 -33 1 +-48 -3 -48 -12z"/> +<path d="M5146 3224 c-8 -20 -4 -25 11 -16 7 4 9 13 4 21 -6 10 -10 9 -15 -5z"/> +<path d="M5918 3228 c10 -13 10 -17 0 -22 -10 -4 25 -2 52 3 3 1 -2 6 -10 11 +-9 6 -10 10 -3 10 16 0 26 -17 13 -25 -5 -3 -10 -11 -10 -17 0 -6 9 -3 20 7 +20 18 20 18 0 32 -15 11 -24 12 -34 4 -9 -7 -16 -7 -26 2 -12 10 -12 9 -2 -5z"/> +<path d="M5995 3230 c3 -5 8 -10 11 -10 2 0 4 5 4 10 0 6 -5 10 -11 10 -5 0 +-7 -4 -4 -10z"/> +<path d="M5997 3203 c-32 -37 -47 -42 -48 -15 0 10 -3 12 -6 4 -2 -6 -9 -10 +-14 -6 -5 3 -9 2 -8 -3 5 -21 -14 -41 -36 -38 -17 1 -30 -6 -40 -21 -9 -13 +-11 -24 -5 -24 5 0 10 4 10 9 0 5 12 8 26 6 14 -1 28 3 30 10 3 7 15 15 26 18 +11 3 17 10 13 16 -3 7 0 8 9 5 9 -3 16 -11 16 -17 0 -6 3 -7 8 -3 7 7 8 11 11 +37 0 6 8 9 16 5 8 -3 14 0 12 7 -1 7 6 11 16 9 10 -2 25 2 33 9 8 6 17 9 20 6 +9 -8 -6 -28 -16 -22 -4 3 -11 -2 -14 -11 -5 -12 -1 -14 15 -9 16 5 20 3 17 -6 +-3 -8 -12 -13 -20 -11 -8 1 -15 -5 -15 -13 0 -9 6 -14 12 -11 7 2 16 1 21 -4 +5 -5 8 11 8 38 -2 72 -2 72 -26 68 -13 -2 -22 -9 -20 -15 3 -16 -16 -14 -20 2 +-2 8 -14 0 -31 -20z"/> +<path d="M6195 3230 c-4 -6 -11 -8 -16 -5 -5 3 -6 -1 -2 -10 4 -12 8 -13 13 +-5 4 7 13 10 19 6 7 -5 9 -1 5 8 -7 19 -11 20 -19 6z"/> +<path d="M5100 3193 c-7 -16 -13 -32 -12 -36 2 -5 -7 -20 -18 -34 -23 -30 -20 +-40 7 -24 10 6 12 11 5 11 -8 0 -6 8 8 22 13 14 16 24 9 29 -7 4 -4 9 7 13 9 +3 14 9 11 13 -4 3 -2 12 4 20 7 7 7 13 2 13 -5 0 -16 -12 -23 -27z"/> +<path d="M5584 3192 c-25 -23 -28 -31 -17 -41 7 -6 13 -10 14 -9 0 2 2 12 4 +22 2 10 11 26 20 35 16 15 17 14 6 -6 -10 -19 -8 -24 10 -33 11 -7 23 -9 27 +-6 3 3 1 6 -5 6 -6 0 -10 12 -9 27 1 36 -13 38 -50 5z"/> +<path d="M4697 3199 c-10 -6 -21 -8 -24 -5 -4 3 -15 -1 -25 -11 -14 -12 -18 +-13 -18 -3 0 11 -3 11 -12 2 -17 -17 -28 -15 -28 5 0 15 -2 15 -14 -2 -13 -18 +-15 -18 -42 -1 l-29 17 24 -20 c13 -12 18 -21 12 -21 -24 0 -9 -16 36 -40 26 +-14 51 -26 55 -26 4 -1 13 -2 19 -3 5 0 7 -7 3 -13 -5 -8 -2 -8 10 1 14 12 17 +12 14 1 -2 -8 19 -26 46 -41 l50 -27 33 25 c43 33 43 48 -1 20 -18 -12 -31 +-26 -28 -31 3 -5 0 -6 -7 -2 -6 4 -8 12 -5 18 4 6 -2 8 -17 3 -19 -5 -21 -4 +-9 5 12 9 10 10 -10 5 -17 -4 -21 -3 -11 3 9 7 10 12 2 16 -6 4 -11 2 -11 -3 +0 -6 -5 -11 -12 -11 -6 0 -8 3 -5 6 11 11 -13 44 -27 38 -8 -3 -17 0 -21 6 -5 +8 -10 9 -14 2 -4 -7 -13 -5 -25 4 -11 8 -14 14 -8 14 10 0 10 3 0 14 -14 15 +-32 11 -23 -5 3 -5 -1 -6 -10 -3 -14 6 -14 8 2 19 12 9 22 10 30 4 7 -7 14 -6 +18 1 3 6 11 7 17 4 6 -4 14 0 19 7 7 12 9 12 9 0 0 -11 5 -9 22 5 12 10 18 13 +14 7 -5 -9 0 -12 16 -10 17 1 22 -3 20 -15 -2 -10 2 -18 8 -18 6 0 8 5 5 10 +-3 6 -1 10 5 10 7 0 10 -7 6 -15 -3 -8 -2 -14 2 -14 16 2 52 -14 52 -24 0 -21 +14 5 17 31 3 23 1 24 -7 10 -6 -10 -16 -18 -23 -18 -8 0 -6 4 3 11 13 9 12 10 +-2 5 -12 -3 -27 6 -45 29 -31 39 -31 39 -56 24z"/> +<path d="M6258 3204 c-4 -3 -14 -7 -25 -9 -10 -2 -20 -4 -22 -4 -2 -1 7 -10 +20 -22 13 -11 20 -18 14 -16 -10 5 -37 -18 -30 -25 2 -2 -5 -5 -15 -6 -48 -4 +-51 -6 -45 -21 3 -8 3 -12 -1 -8 -4 4 -13 -1 -21 -11 -7 -9 -13 -12 -12 -7 3 +26 -3 28 -16 5 -8 -14 -14 -19 -15 -12 0 7 -5 10 -11 6 -8 -4 -7 -9 2 -16 11 +-7 10 -8 -4 -4 -11 3 -16 2 -12 -4 3 -6 1 -10 -4 -10 -14 0 -14 13 1 28 8 8 8 +12 1 12 -13 0 -39 -30 -27 -30 5 0 3 -4 -5 -9 -7 -5 -11 -14 -7 -20 5 -7 19 +-3 44 12 20 12 51 29 67 37 17 8 34 21 38 28 5 7 12 10 18 7 5 -4 9 -1 9 4 0 +6 3 10 8 10 21 -4 32 2 26 13 -5 8 -2 9 11 5 14 -6 16 -3 12 14 -3 12 -2 31 4 +41 10 18 8 24 -3 12z"/> +<path d="M4950 3192 c0 -5 11 -19 25 -32 14 -13 25 -18 25 -12 0 6 -4 13 -10 +17 -5 3 -8 11 -6 18 1 7 1 9 -1 5 -3 -5 -9 -8 -14 -8 -6 0 -7 5 -4 10 3 6 1 +10 -4 10 -6 0 -11 -4 -11 -8z"/> +<path d="M4996 3185 c-2 -7 4 -21 15 -31 10 -9 19 -12 19 -6 0 6 -5 12 -12 14 +-8 3 -7 6 3 10 12 5 15 -1 15 -23 0 -20 -3 -26 -10 -19 -17 17 -27 11 -15 -8 +20 -32 38 -22 36 19 -2 21 -6 41 -10 45 -13 13 -35 13 -41 -1z"/> +<path d="M5122 3191 c0 -3 -1 -9 -2 -13 -1 -5 -3 -11 -4 -15 -1 -5 -7 -18 -14 +-29 -6 -12 -9 -24 -6 -26 2 -3 -6 -12 -20 -21 -18 -12 -25 -13 -29 -4 -2 7 +-17 13 -33 15 -27 2 -27 1 -8 -13 10 -8 15 -15 10 -15 -6 0 -2 -6 8 -13 17 +-13 17 -14 1 -30 -9 -9 -12 -17 -6 -17 5 0 13 5 16 10 4 7 12 7 25 0 25 -13 +26 -13 27 11 2 16 -1 18 -11 10 -10 -9 -18 -5 -31 16 -16 24 -16 26 -2 14 9 +-7 17 -10 17 -5 0 5 4 2 9 -5 8 -12 12 -10 22 12 7 15 18 27 26 27 7 0 13 5 +13 11 0 6 -7 8 -17 5 -15 -6 -15 -5 1 13 10 11 15 26 11 33 -3 7 1 4 11 -7 16 +-20 16 -20 11 3 -3 14 1 25 10 31 12 6 10 9 -10 9 -14 0 -26 -3 -25 -7z"/> +<path d="M5201 3186 c-6 -7 -22 -12 -34 -10 -12 2 -16 2 -9 -2 6 -3 10 -9 7 +-14 -3 -5 2 -7 11 -6 8 1 20 9 25 17 7 12 9 12 9 -1 0 -13 2 -13 11 0 12 16 +11 11 -7 -35 -4 -11 -4 -17 1 -13 4 4 16 3 25 -2 13 -7 22 -5 31 6 11 13 10 +15 -2 14 -27 -4 -40 0 -33 11 4 8 9 7 15 -2 5 -8 9 -9 9 -3 0 6 -11 20 -23 33 +-21 18 -26 20 -36 7z"/> +<path d="M6024 3170 c0 -16 4 -26 9 -23 6 4 7 1 2 -7 -4 -7 -2 -16 6 -21 12 +-7 11 -9 -1 -9 -13 0 -13 -2 0 -11 12 -9 12 -10 -4 -5 -14 5 -17 2 -12 -9 3 +-9 2 -14 -3 -11 -5 3 -14 0 -20 -8 -9 -11 -9 -15 1 -20 7 -3 2 -3 -11 0 -18 5 +-22 3 -15 -7 6 -12 5 -12 -9 -1 -14 12 -16 11 -14 -7 2 -24 2 -24 29 -10 12 6 +18 7 14 1 -3 -5 1 -12 8 -15 11 -4 14 1 12 21 -4 32 31 63 62 57 18 -3 20 0 +13 18 -5 12 -17 22 -27 22 -15 0 -19 7 -18 32 0 18 -5 34 -11 37 -7 2 -11 -7 +-11 -24z m53 -65 c0 -8 -4 -12 -9 -9 -5 3 -6 10 -3 15 9 13 12 11 12 -6z"/> +<path d="M5715 3181 c-11 -4 -30 -6 -42 -5 -23 1 -29 -6 -16 -19 3 -4 13 -1 +22 6 14 11 14 10 2 -5 -8 -11 -9 -18 -3 -18 6 0 14 5 17 10 4 6 12 7 18 4 7 +-4 9 -4 5 1 -4 4 0 14 10 21 19 15 16 16 -13 5z"/> +<path d="M5995 3171 c-3 -6 -1 -11 6 -11 7 0 5 -6 -6 -13 -21 -16 -11 -41 14 +-33 14 5 14 4 -1 -7 -10 -8 -15 -17 -11 -21 4 -4 0 -4 -10 0 -13 5 -16 2 -10 +-11 6 -16 9 -15 29 10 13 16 21 32 18 37 -3 4 -7 18 -9 29 -5 27 -11 33 -20 +20z"/> +<path d="M6131 3151 c-36 -34 -39 -46 -10 -48 16 -2 18 1 9 12 -9 11 -7 16 9 +24 14 8 22 8 27 -1 4 -6 3 -8 -2 -5 -6 3 -16 1 -24 -4 -11 -7 -7 -8 14 -5 15 +3 39 12 52 21 27 17 32 27 10 19 -8 -3 -23 -1 -34 5 -17 9 -26 6 -51 -18z m59 +-2 c0 -14 -17 -10 -23 5 -4 10 -1 13 9 9 7 -3 14 -9 14 -14z"/> +<path d="M4673 3156 c-7 -11 19 -27 35 -21 8 3 10 0 6 -7 -5 -7 -3 -8 6 -3 9 +6 11 4 5 -6 -5 -8 -5 -11 0 -7 4 4 14 3 22 -3 10 -9 13 -8 13 2 1 8 8 1 16 +-14 16 -29 14 -44 -5 -33 -6 4 -8 12 -5 20 3 7 -2 13 -11 13 -8 0 -15 -5 -15 +-11 0 -6 -5 -3 -11 7 -6 9 -15 14 -21 11 -6 -4 -8 -3 -5 3 9 14 -17 24 -40 17 +-12 -4 -14 -3 -6 3 7 5 9 14 4 22 -9 14 -18 5 -16 -19 0 -9 9 -14 22 -13 14 2 +24 -4 28 -17 4 -11 10 -18 15 -15 5 3 11 1 15 -5 4 -6 11 -8 16 -5 5 4 9 2 9 +-3 0 -21 35 -22 60 -4 20 15 31 17 45 10 12 -7 16 -7 11 0 -3 6 -2 13 4 17 6 +4 8 11 4 16 -3 6 -12 3 -21 -8 -8 -10 -12 -12 -8 -5 7 15 -11 16 -20 2 -5 -8 +-11 -7 -21 1 -8 6 -14 8 -14 3 0 -4 -7 1 -15 12 -8 10 -15 15 -15 11 0 -4 -10 +-2 -22 5 -13 7 -27 11 -33 10 -5 -1 -2 4 8 12 17 13 16 14 -8 12 -15 0 -29 -5 +-32 -10z m135 -81 c-3 -3 -9 2 -12 12 -6 14 -5 15 5 6 7 -7 10 -15 7 -18z"/> +<path d="M5597 3161 c2 -2 -2 -10 -8 -18 -8 -9 -15 -10 -24 -3 -9 8 -15 8 -20 +0 -5 -8 -13 -6 -25 5 -12 11 -20 13 -25 6 -3 -6 0 -11 7 -11 8 0 6 -5 -5 -11 +-9 -5 -22 -7 -27 -4 -5 3 -20 0 -32 -7 -13 -7 -27 -11 -33 -9 -5 1 -7 -1 -3 +-5 4 -4 3 -13 -3 -21 -9 -10 -8 -18 5 -31 35 -39 6 -44 -39 -6 -28 23 -29 26 +-12 38 17 13 17 14 -2 19 -10 2 -25 0 -32 -5 -11 -8 -10 -8 4 -4 11 3 16 2 12 +-5 -4 -5 -15 -7 -24 -4 -12 3 -18 0 -18 -10 0 -9 6 -14 13 -11 7 3 18 -2 24 +-10 7 -8 19 -14 27 -14 9 0 13 -6 10 -14 -3 -8 2 -20 10 -28 15 -11 16 -11 10 +5 -6 15 -4 16 13 7 11 -6 20 -15 20 -21 0 -6 5 -7 10 -4 8 5 8 11 0 20 -8 9 +-8 15 0 20 6 3 7 12 3 18 -9 15 -12 46 -4 45 19 -2 24 4 11 13 -12 8 -10 9 9 +4 17 -5 21 -4 16 5 -6 9 -2 9 15 0 15 -8 20 -8 16 -1 -4 6 -2 11 4 11 7 0 9 +-8 4 -22 -6 -20 -5 -21 10 -9 12 10 14 17 5 27 -8 10 -8 14 0 14 6 0 11 -5 11 +-12 0 -9 3 -9 12 0 17 17 28 15 28 -4 0 -12 5 -11 20 7 10 13 19 19 20 13 0 +-6 7 -11 15 -12 8 -1 22 -3 30 -4 8 -1 15 -5 15 -10 0 -4 5 -8 10 -8 6 0 4 10 +-5 23 -9 15 -24 23 -38 22 -12 -1 -26 3 -32 9 -5 6 -9 9 -8 7z m-177 -91 c0 +-5 -4 -10 -10 -10 -5 0 -10 5 -10 10 0 6 5 10 10 10 6 0 10 -4 10 -10z"/> +<path d="M4619 3160 c0 -3 -2 -13 -4 -22 -2 -10 1 -18 5 -18 15 0 19 15 9 30 +-5 8 -9 13 -10 10z"/> +<path d="M4864 3149 c-3 -5 -10 -6 -16 -3 -6 4 -8 2 -4 -4 3 -5 0 -13 -6 -16 +-7 -4 -3 -4 8 -2 32 5 51 -9 36 -27 -10 -12 -8 -14 12 -14 24 0 25 0 8 25 -9 +15 -12 23 -5 19 6 -4 13 -2 15 5 2 6 10 8 16 4 8 -5 9 -13 2 -25 -6 -12 -5 +-22 3 -30 9 -10 8 -15 -7 -27 -14 -10 -16 -14 -5 -14 16 1 49 23 49 34 0 4 -4 +5 -9 2 -16 -10 -20 23 -5 39 14 13 34 13 34 -1 0 -3 -3 -3 -7 -1 -5 3 -14 -1 +-21 -9 -8 -8 -9 -14 -2 -14 6 0 15 -11 22 -25 6 -13 15 -22 21 -18 6 3 7 1 3 +-6 -4 -6 -12 -8 -18 -5 -8 5 -9 1 -3 -12 10 -23 10 -44 1 -65 -5 -10 -2 -16 9 +-16 8 0 14 7 13 16 -2 10 5 16 21 17 13 1 27 8 32 15 6 10 9 11 9 2 0 -7 6 +-13 14 -13 8 0 17 6 19 13 4 10 6 10 6 0 1 -7 6 -13 12 -13 8 0 8 4 1 13 -11 +13 -61 15 -80 3 -5 -3 -17 0 -27 7 -16 12 -16 15 -1 29 14 14 14 17 0 22 -8 3 +-12 11 -8 17 4 7 3 9 -3 6 -6 -4 -14 0 -17 8 -3 9 1 18 10 22 13 5 12 9 -7 29 +-24 26 -39 31 -39 13 0 -5 5 -7 10 -4 6 3 10 1 10 -5 0 -7 -7 -9 -16 -6 -9 3 +-18 6 -20 6 -3 0 -3 3 -1 8 3 4 -10 8 -29 8 -19 1 -37 -3 -40 -7z"/> +<path d="M5196 3153 c-6 -7 -29 -13 -54 -15 -23 -2 -6 -22 19 -22 13 0 27 -5 +31 -10 4 -6 10 -7 15 -3 4 5 1 12 -7 18 -13 8 -13 10 0 18 8 6 12 12 9 15 -3 +4 -9 3 -13 -1z"/> +<path d="M5278 3148 c19 -19 -15 -51 -40 -37 -13 7 -18 7 -14 1 9 -15 -23 -23 +-45 -12 -14 8 -27 7 -48 -4 -34 -18 -46 -42 -25 -50 21 -8 24 -8 24 5 0 5 -4 +8 -8 5 -5 -3 -9 1 -9 9 0 8 6 16 13 19 8 3 11 0 7 -10 -5 -14 -3 -14 15 -3 16 +10 18 16 9 22 -8 6 -8 7 3 4 8 -2 13 -12 12 -22 -3 -17 -2 -17 13 -5 14 12 18 +12 26 -1 8 -14 10 -12 13 13 0 6 7 12 14 14 7 1 8 0 2 -3 -6 -3 -4 -10 4 -19 +8 -8 12 -24 9 -36 -5 -23 -5 -23 10 -3 15 19 16 19 36 1 16 -14 21 -16 21 -5 +0 9 5 6 12 -6 6 -11 19 -28 30 -38 14 -13 16 -23 8 -36 -5 -10 -6 -21 -3 -25 +11 -10 20 -7 21 9 1 8 3 22 4 32 1 14 4 13 18 -4 13 -17 18 -18 28 -6 7 7 17 +11 21 9 4 -3 8 8 8 24 0 16 -5 27 -10 23 -5 -3 -4 4 2 15 14 27 14 27 -10 29 +-18 2 -19 0 -7 -14 11 -13 11 -17 0 -21 -10 -3 -10 -7 -1 -19 10 -12 10 -16 +-1 -23 -17 -11 -42 -1 -33 14 4 7 1 6 -9 -1 -12 -11 -18 -10 -32 5 -9 10 -14 +22 -11 25 3 4 2 5 -2 2 -3 -3 -12 4 -20 15 -7 10 -20 17 -27 14 -18 -7 -47 23 +-40 41 4 8 11 15 16 15 6 0 6 -6 -1 -14 -9 -11 -9 -16 0 -22 8 -4 9 -3 5 5 -4 +6 0 14 8 17 9 3 16 10 16 16 0 5 -4 6 -10 3 -6 -4 -7 1 -3 11 5 14 7 15 15 1 +5 -9 15 -14 23 -11 8 4 12 10 9 15 -3 5 -9 7 -14 4 -5 -3 -11 -1 -15 5 -4 6 +-11 8 -16 5 -5 -4 -9 -1 -9 4 0 6 -5 11 -12 11 -9 0 -9 -3 0 -12z"/> +<path d="M5804 3153 c4 -7 2 -13 -3 -14 -38 -3 -69 -2 -83 4 -9 3 -22 0 -28 +-8 -8 -10 -8 -14 2 -18 10 -3 10 -8 2 -17 -9 -9 -19 -8 -45 5 -19 10 -31 14 +-27 10 4 -5 1 -13 -8 -20 -14 -10 -14 -12 1 -25 15 -12 16 -12 13 5 -1 10 4 +20 12 22 11 3 11 2 3 -4 -9 -6 -7 -12 9 -22 18 -11 20 -11 14 4 -6 16 -5 16 +18 1 l25 -16 -3 34 c-2 30 0 33 14 26 11 -6 21 -5 28 2 9 9 15 9 24 0 7 -7 17 +-8 28 -2 13 7 16 4 14 -21 -2 -33 -1 -33 29 -18 21 10 21 10 3 -5 -14 -12 -16 +-16 -5 -16 19 1 58 30 39 30 -7 0 -11 3 -7 6 3 3 11 3 18 -2 9 -5 7 -11 -6 +-21 -14 -9 -15 -13 -4 -13 8 0 22 7 32 14 14 11 15 15 5 20 -7 3 -2 3 10 0 22 +-5 23 -4 12 17 -12 21 -13 22 -26 5 -7 -10 -17 -15 -23 -12 -6 4 -20 2 -32 -4 +-25 -14 -55 4 -31 19 9 6 7 12 -9 27 -13 10 -19 13 -15 7z"/> +<path d="M5946 3141 c-4 -6 -3 -18 2 -27 5 -9 7 -25 5 -34 -3 -10 1 -21 8 -25 +9 -6 11 -2 7 13 -4 13 -1 25 7 30 11 6 10 12 -4 31 -12 16 -21 20 -25 12z"/> +<path d="M4915 3119 c-4 -6 -5 -12 -2 -15 2 -3 7 2 10 11 7 17 1 20 -8 4z"/> +<path d="M5532 3097 c-24 -26 -28 -37 -11 -37 5 0 8 4 4 9 -3 6 4 15 15 21 11 +6 21 8 21 5 1 -3 3 -9 4 -15 1 -5 3 -13 4 -17 1 -5 5 -2 10 6 5 8 11 9 15 3 +10 -17 -22 -22 -38 -7 -16 17 -30 20 -21 6 3 -6 -3 -15 -12 -21 -16 -10 -16 +-11 3 -7 12 3 28 1 35 -4 7 -4 19 -3 26 2 7 6 17 8 23 4 16 -10 12 11 -5 25 +-11 9 -13 16 -5 24 13 13 13 26 -1 26 -5 0 -8 -4 -5 -9 3 -5 -1 -11 -9 -15 -8 +-3 -18 2 -23 10 -7 12 -12 11 -30 -9z"/> +<path d="M5745 3110 c-4 -6 -11 -7 -17 -4 -7 4 -8 2 -4 -4 4 -7 2 -12 -5 -12 +-18 0 23 -29 40 -30 12 0 11 3 -2 13 -12 8 -14 16 -7 27 9 13 11 13 19 0 5 -8 +7 -18 5 -22 -7 -11 8 -10 26 2 11 7 11 10 2 10 -7 0 -10 5 -6 12 4 6 3 8 -4 4 +-6 -3 -13 -2 -17 4 -3 5 -10 10 -15 10 -5 0 -12 -5 -15 -10z"/> +<path d="M5457 3089 c-9 -6 -15 -15 -11 -20 3 -6 12 -3 20 8 13 16 14 16 8 1 +-4 -11 -1 -18 6 -18 10 0 10 -3 0 -15 -10 -13 -11 -18 -1 -28 10 -9 11 -8 6 8 +-6 16 -5 17 4 5 8 -11 6 -18 -7 -28 -16 -12 -16 -14 1 -23 13 -8 15 -14 7 -29 +-7 -13 -7 -21 0 -25 6 -4 8 -15 5 -25 -4 -14 -1 -18 12 -16 10 2 19 11 21 22 +2 14 1 16 -6 6 -7 -11 -10 -9 -14 6 -3 11 -2 25 2 32 7 11 6 32 -2 98 -1 6 -5 +12 -10 12 -4 0 -7 3 -7 8 5 32 -5 38 -34 21z m53 -99 c0 -5 -4 -10 -10 -10 -5 +0 -10 5 -10 10 0 6 5 10 10 10 6 0 10 -4 10 -10z"/> +<path d="M4885 3069 c-4 -5 -13 -8 -21 -5 -7 3 -25 -9 -40 -27 -14 -18 -23 +-26 -18 -18 5 9 3 12 -4 7 -7 -4 -12 -11 -12 -15 0 -8 37 -28 54 -29 5 0 12 +-5 16 -12 5 -7 11 -6 21 6 12 16 12 17 -3 11 -13 -5 -16 -1 -12 19 4 24 4 24 +-20 9 -23 -16 -24 -15 -19 5 3 11 11 19 17 17 6 -3 20 3 31 12 19 15 19 15 5 +-2 -12 -17 -12 -18 6 -15 14 2 18 -2 16 -16 -3 -18 -2 -18 13 -6 14 12 15 14 +1 22 -8 5 -13 15 -10 22 7 17 -12 30 -21 15z m-35 -79 c0 -5 -2 -10 -4 -10 -3 +0 -8 5 -11 10 -3 6 -1 10 4 10 6 0 11 -4 11 -10z"/> +<path d="M5917 3069 c-9 -6 -15 -14 -12 -20 4 -5 1 -9 -5 -9 -6 0 -8 -5 -5 +-10 5 -8 11 -8 20 0 10 8 15 8 21 -1 4 -7 3 -9 -4 -5 -6 3 -16 -2 -22 -13 -6 +-11 -16 -18 -23 -15 -8 3 -14 -2 -14 -11 0 -18 0 -18 31 -4 14 7 23 16 19 22 +-3 6 -1 7 4 4 22 -14 22 23 0 39 l-22 16 22 -7 c18 -5 22 -3 17 9 -3 9 -7 16 +-8 16 0 0 -9 -5 -19 -11z"/> +<path d="M5140 3050 c-6 -12 -17 -19 -25 -16 -25 9 -24 -7 0 -26 26 -20 24 +-44 -2 -34 -8 3 -11 1 -8 -4 3 -6 1 -10 -5 -10 -6 0 -9 -4 -5 -10 8 -13 34 -1 +46 22 8 15 7 22 -8 33 -17 13 -17 13 1 12 10 -1 21 4 24 12 3 9 0 11 -8 6 -9 +-5 -11 -4 -6 4 4 6 12 9 17 6 5 -4 9 -2 9 4 0 20 -19 21 -30 1z"/> +<path d="M5174 3039 c-10 -19 -17 -38 -16 -43 4 -14 -26 -54 -47 -61 -12 -4 +-18 -12 -14 -20 3 -8 9 -12 14 -9 5 3 6 10 3 16 -4 7 -2 8 4 4 7 -4 12 -1 12 +6 1 7 8 1 16 -14 8 -16 17 -28 20 -28 8 0 0 34 -11 43 -5 5 -1 6 11 3 14 -5 +21 -2 21 9 0 11 -7 14 -21 9 -17 -4 -18 -3 -6 5 8 6 11 11 6 11 -5 0 1 11 14 +25 13 14 18 25 12 25 -7 0 -12 5 -12 11 0 5 5 7 12 3 7 -4 8 -3 4 4 -4 7 -2 +12 3 12 6 0 11 -5 11 -10 0 -6 8 -5 19 2 11 7 17 16 14 20 -2 5 -10 4 -17 -1 +-9 -7 -16 -7 -23 0 -8 8 -16 2 -29 -22z"/> +<path d="M5630 3051 c-6 -11 -17 -18 -24 -15 -8 3 -17 0 -21 -5 -3 -6 -11 -8 +-17 -5 -7 4 -8 2 -4 -4 4 -7 1 -12 -6 -12 -9 0 -9 -3 2 -10 11 -8 12 -12 3 +-18 -9 -6 -7 -11 7 -19 16 -11 18 -9 18 15 -1 49 1 54 21 47 12 -3 21 0 25 10 +3 9 10 13 16 10 5 -3 10 -2 10 4 0 20 -19 21 -30 2z"/> +<path d="M5666 3044 c-8 -16 -15 -22 -16 -14 0 13 -1 13 -10 0 -5 -8 -16 -15 +-25 -15 -15 0 -22 -20 -7 -20 4 0 13 -4 20 -8 11 -7 16 3 14 24 -1 4 6 6 16 5 +9 0 16 5 14 12 -1 8 2 11 7 8 14 -9 25 14 13 26 -7 7 -15 1 -26 -18z"/> +<path d="M5689 3028 c-20 -21 -32 -41 -28 -44 5 -3 9 1 9 8 0 11 2 11 9 0 6 +-10 10 -10 21 3 9 11 9 15 1 15 -8 0 -8 4 1 14 8 8 15 10 19 4 3 -5 9 -2 13 8 +13 34 -10 31 -45 -8z"/> +<path d="M5769 3055 c-15 -8 -29 -22 -33 -30 -3 -9 -11 -13 -17 -9 -7 4 -9 3 +-6 -3 16 -25 -57 -50 -88 -31 -6 4 -17 3 -24 -1 -9 -6 -10 -11 -2 -15 6 -4 11 +-1 11 6 0 8 5 6 11 -4 11 -20 34 -25 24 -5 -4 6 -1 5 7 -3 18 -21 38 -23 38 +-4 0 10 5 14 16 10 10 -4 13 -2 8 6 -5 7 -3 8 6 3 9 -6 11 -4 5 5 -5 9 -4 11 +3 6 8 -4 10 -2 6 7 -3 8 2 17 11 21 9 3 13 11 9 17 -5 8 -3 9 7 3 24 -15 46 +-14 46 1 0 11 -7 14 -21 10 -19 -5 -19 -5 -3 5 12 8 22 8 35 1 10 -6 12 -11 4 +-11 -7 0 -10 -5 -7 -10 5 -8 12 -7 23 2 13 11 13 9 -1 -13 -16 -25 -16 -27 -1 +-40 15 -12 17 -12 12 1 -3 8 -1 23 4 33 9 18 10 18 30 0 20 -18 21 -18 10 3 +-6 12 -9 24 -6 26 3 3 -2 8 -11 12 -9 3 -13 2 -10 -4 9 -14 -6 -12 -35 5 -31 +17 -29 17 -61 0z"/> +<path d="M4970 3049 c0 -5 -4 -8 -8 -5 -5 3 -19 -8 -31 -25 -22 -29 -48 -31 +-36 -2 4 13 3 14 -10 3 -14 -11 -13 -14 1 -25 12 -8 14 -14 6 -19 -7 -4 -12 +-13 -12 -19 0 -7 9 -1 20 13 12 15 18 18 14 8 -3 -10 -2 -18 4 -18 6 0 9 8 8 +18 -3 17 30 49 41 39 8 -8 -7 -28 -17 -22 -4 3 -11 -2 -14 -11 -5 -12 -1 -14 +15 -9 16 5 20 3 17 -6 -3 -8 -13 -13 -23 -11 -11 2 -14 -1 -10 -8 6 -9 2 -9 +-14 -1 -14 8 -21 8 -21 1 0 -5 7 -10 15 -10 8 0 15 -5 15 -11 0 -5 4 -8 9 -5 +5 3 14 -1 21 -9 7 -8 16 -12 21 -9 5 3 9 1 9 -5 0 -5 10 -13 22 -16 11 -4 43 +-20 70 -36 26 -16 48 -24 48 -20 0 5 -3 11 -7 14 -5 2 -2 2 5 1 15 -4 16 8 0 +24 -14 14 -32 16 -23 3 8 -14 -9 -21 -25 -10 -13 7 -13 9 0 9 13 0 13 1 0 10 +-20 13 -33 12 -24 -2 4 -7 3 -8 -4 -4 -6 4 -8 14 -5 24 5 13 3 14 -7 5 -13 +-12 -40 -7 -40 8 0 4 10 13 23 19 20 10 21 10 4 -3 -11 -9 -14 -18 -8 -21 6 +-4 18 5 27 19 19 29 39 24 23 -7 -9 -16 -8 -19 2 -13 7 5 10 4 6 -2 -4 -6 0 +-14 9 -17 13 -5 15 -2 9 11 -4 10 -8 30 -8 45 0 15 -7 30 -14 33 -8 2 -11 0 +-8 -5 4 -7 -6 -9 -27 -5 -25 4 -30 3 -18 -6 11 -8 12 -12 3 -16 -7 -2 -15 -4 +-19 -3 -3 1 -11 -6 -18 -16 -11 -15 -12 -12 -9 17 4 33 4 46 2 97 -1 22 -9 32 +-9 11z m0 -119 c0 -5 -2 -10 -4 -10 -3 0 -8 5 -11 10 -3 6 -1 10 4 10 6 0 11 +-4 11 -10z"/> +<path d="M5225 3030 c-3 -5 -12 -7 -18 -4 -7 4 -9 3 -4 -1 4 -5 -3 -19 -15 +-32 -12 -13 -17 -23 -10 -23 6 0 17 -6 25 -14 11 -12 15 -11 25 5 11 18 10 19 +-12 15 -19 -3 -23 -1 -19 10 3 8 12 13 20 10 8 -3 11 -2 8 3 -3 5 0 13 6 17 7 +4 9 3 6 -3 -4 -6 0 -13 8 -17 8 -3 17 -1 20 5 4 5 11 7 16 4 5 -4 9 0 9 7 0 8 +5 6 11 -5 6 -9 14 -15 20 -12 5 4 9 1 9 -4 0 -14 -13 -14 -27 0 -9 9 -12 7 +-10 -10 1 -13 6 -20 14 -17 15 6 43 -3 43 -13 0 -4 -13 -7 -30 -7 -16 0 -30 4 +-30 9 0 6 -2 8 -5 5 -13 -13 8 -36 32 -33 14 1 27 -4 30 -11 3 -8 10 -11 15 +-8 6 4 6 9 -2 14 -9 5 -9 13 -2 26 8 15 5 25 -14 47 -13 16 -24 25 -24 21 0 +-4 -9 1 -20 11 -11 10 -23 15 -27 12 -3 -4 0 -7 8 -8 8 0 6 -4 -6 -9 -14 -5 +-24 -3 -32 7 -7 9 -13 11 -18 3z"/> +<path d="M5540 3029 c0 -5 -3 -8 -8 -5 -4 2 -7 -13 -7 -34 0 -21 3 -36 6 -34 +4 2 9 -2 12 -8 2 -7 4 11 4 40 0 28 -1 52 -3 52 -2 0 -4 -5 -4 -11z"/> +<path d="M5754 3008 c-16 -25 -15 -48 1 -41 13 4 13 8 3 21 -10 12 -6 11 15 +-3 21 -13 25 -21 16 -31 -8 -10 -6 -13 10 -11 24 2 24 1 10 30 -10 21 -10 21 +5 3 9 -11 16 -26 16 -33 0 -7 5 -13 10 -13 6 0 10 8 10 18 0 14 2 15 10 2 11 +-17 -13 -35 -32 -24 -7 5 -9 2 -4 -7 4 -8 1 -6 -7 3 -8 10 -17 15 -20 11 -4 +-3 -1 -13 6 -21 10 -13 9 -14 -2 -7 -10 5 -12 4 -7 -3 8 -14 124 41 132 63 3 +7 12 11 19 8 8 -2 23 2 35 10 16 11 18 16 7 20 -17 6 -79 -22 -72 -33 3 -4 +-14 -7 -38 -6 -44 1 -68 19 -60 46 4 13 4 13 -6 0 -10 -13 -12 -13 -22 0 -9 +12 -10 11 -5 -5 6 -19 5 -19 -8 -2 -11 14 -16 15 -22 5z m141 -58 c-3 -5 -12 +-10 -18 -10 -7 0 -6 4 3 10 19 12 23 12 15 0z"/> +<path d="M5857 3005 c-4 -8 -3 -16 1 -19 4 -3 9 4 9 15 2 23 -3 25 -10 4z"/> +<path d="M5265 2990 c-4 -6 -11 -8 -16 -4 -5 3 -8 2 -7 -3 1 -4 -4 -18 -11 +-31 -11 -20 -15 -21 -29 -10 -10 8 -13 9 -9 1 4 -7 0 -16 -9 -21 -15 -8 -14 +-11 7 -25 24 -17 36 -16 24 2 -3 6 -11 9 -16 6 -5 -4 -9 -1 -9 5 0 7 7 9 15 6 +9 -3 18 1 21 9 4 8 10 12 15 9 5 -3 7 1 6 8 -2 7 -2 10 0 6 3 -4 5 -11 6 -15 +2 -15 22 -31 32 -25 6 2 4 -1 -2 -9 -7 -7 -13 -20 -13 -28 1 -14 2 -14 10 1 6 +10 18 14 32 11 17 -3 19 -2 10 5 -8 5 -13 13 -13 18 1 5 -3 10 -9 10 -5 1 -15 +2 -22 3 -6 0 -8 4 -5 7 3 4 2 16 -4 27 -7 13 -7 17 -1 13 6 -3 14 -1 18 5 5 8 +3 9 -6 4 -10 -6 -12 -4 -7 8 7 19 2 23 -8 7z"/> +<path d="M5471 2953 c-7 -12 -11 -13 -11 -5 0 10 -3 10 -15 -1 -8 -9 -24 -13 +-37 -10 -23 5 -23 5 -3 -10 13 -10 25 -12 37 -6 12 7 20 4 27 -8 5 -10 13 -14 +17 -10 5 5 2 12 -5 16 -10 7 -11 13 -2 30 14 25 6 29 -8 4z"/> +<path d="M5762 2961 c-8 -4 -24 -7 -37 -6 -13 2 -26 -3 -29 -10 -5 -15 -52 +-11 -71 5 -6 5 -17 5 -25 0 -9 -5 -19 -5 -26 1 -8 6 -13 5 -17 -5 -4 -9 -14 +-12 -28 -9 -21 6 -19 3 9 -25 37 -37 38 -37 45 -18 4 10 0 14 -14 11 -10 -2 +-19 0 -19 6 0 5 5 9 11 9 5 0 7 6 3 13 -6 10 -4 10 7 0 7 -7 17 -13 22 -13 4 +0 5 6 1 13 -4 6 2 4 13 -6 16 -14 22 -15 26 -5 4 10 9 9 20 -4 8 -10 18 -14 +22 -10 4 4 2 -3 -4 -16 -10 -18 -15 -21 -26 -12 -11 9 -14 7 -12 -9 1 -15 6 +-20 17 -15 8 3 21 7 28 7 7 0 10 7 8 14 -3 8 1 16 9 19 8 4 15 10 15 16 0 5 +-4 6 -10 3 -5 -3 -10 -2 -10 3 0 13 29 24 42 15 6 -3 8 -1 5 5 -5 6 1 8 14 5 +13 -4 17 -8 9 -13 -15 -9 -12 -21 9 -38 13 -10 14 -12 1 -10 -8 2 -18 8 -22 +13 -12 15 -10 -7 2 -25 6 -10 10 -11 10 -2 0 6 5 11 12 10 7 -2 13 7 14 20 1 +12 -2 22 -6 22 -11 0 -8 34 4 42 15 11 -6 10 -22 -1z"/> +<path d="M5716 2918 c4 -6 -2 -18 -12 -26 -16 -12 -16 -14 -2 -9 10 3 20 1 24 +-5 4 -6 3 -8 -3 -5 -6 4 -16 0 -23 -8 -7 -8 -17 -12 -23 -8 -5 3 -7 1 -3 -5 8 +-13 -62 -11 -83 2 -9 6 -12 5 -9 -5 3 -8 11 -14 19 -14 17 0 22 -11 16 -28 -4 +-9 -6 -9 -6 1 -1 6 -6 12 -12 12 -8 0 -7 -6 2 -17 11 -15 11 -16 -1 -5 -19 17 +-28 15 -26 -5 0 -12 -6 -18 -19 -19 -37 -2 -41 -4 -41 -25 0 -18 2 -19 12 -4 +7 9 16 16 21 16 17 -1 43 11 43 20 0 6 4 8 9 4 5 -3 12 -1 16 5 4 6 11 7 17 4 +7 -4 8 -2 4 4 -6 10 6 17 18 10 2 -2 13 6 25 16 12 11 21 15 21 11 0 -4 9 0 +20 10 12 11 18 25 15 36 -3 9 -1 21 6 24 8 6 7 10 -2 16 -20 12 -31 11 -23 -3z +m4 -62 c0 -3 -4 -8 -10 -11 -5 -3 -10 -1 -10 4 0 6 5 11 10 11 6 0 10 -2 10 +-4z m-56 -24 c3 -5 -1 -9 -9 -9 -8 0 -12 4 -9 9 3 4 7 8 9 8 2 0 6 -4 9 -8z"/> +<path d="M5121 2907 c-8 -11 -6 -18 12 -34 39 -35 50 -38 43 -12 -3 13 -3 18 +0 11 3 -6 11 -9 16 -6 7 5 8 2 3 -5 -6 -10 -3 -11 13 -2 13 7 23 7 27 2 7 -13 +-26 -30 -45 -23 -13 4 -13 3 -1 -11 15 -19 43 -9 60 21 9 16 10 16 17 -3 9 +-23 33 -44 52 -45 8 0 6 6 -5 18 -10 11 -22 17 -27 14 -5 -3 -6 0 -2 6 4 6 12 +9 20 6 7 -3 13 2 13 10 0 8 -4 13 -9 10 -4 -3 -8 0 -8 7 0 7 -6 4 -14 -7 -13 +-16 -15 -17 -21 -3 -3 8 -18 16 -33 17 -56 3 -75 9 -87 25 -10 14 -14 15 -24 +4z m39 -37 c0 -6 -9 -2 -20 7 -11 10 -20 19 -20 21 0 1 9 -2 20 -8 11 -6 20 +-15 20 -20z"/> +<path d="M5226 2911 c-3 -5 1 -14 9 -21 11 -9 15 -9 15 -1 0 7 5 9 13 5 8 -5 +8 -2 -2 9 -15 19 -27 22 -35 8z"/> +<path d="M5331 2900 c1 -30 -4 -50 -15 -70 -5 -8 -6 -12 -1 -8 5 5 14 -1 22 +-12 8 -11 19 -20 25 -20 6 0 5 7 -3 16 -16 20 -18 42 -6 68 6 13 12 15 19 8 7 +-7 17 -8 29 -1 13 7 21 5 29 -8 9 -16 10 -15 5 5 -4 12 -2 22 3 22 8 0 12 -14 +13 -53 0 -15 3 -16 14 -7 11 9 12 17 4 34 -10 20 -10 20 5 2 9 -11 16 -23 16 +-27 0 -15 34 -1 41 17 4 10 8 14 8 8 1 -6 11 -10 24 -10 12 1 27 -1 32 -5 6 +-4 17 -4 25 1 17 11 16 11 -25 15 -16 2 -38 6 -47 10 -12 5 -20 2 -24 -10 -5 +-13 -9 -14 -15 -3 -6 9 -9 9 -9 1 0 -7 -10 -2 -23 10 -13 12 -21 26 -19 30 2 +5 -4 4 -15 -2 -14 -7 -23 -7 -30 0 -8 8 -19 6 -36 -6 -24 -15 -26 -15 -36 2 +-9 16 -10 15 -10 -7z m79 6 c0 -2 -7 -7 -16 -10 -8 -3 -12 -2 -9 4 6 10 25 14 +25 6z"/> +<path d="M5597 2906 c-4 -9 -2 -18 3 -21 6 -4 10 -2 10 3 0 12 34 11 42 -2 11 +-16 10 6 -1 23 -6 9 -10 10 -16 2 -5 -9 -10 -9 -20 -1 -9 8 -14 7 -18 -4z"/> +<path d="M5360 2873 c0 -23 2 -28 11 -25 5 1 8 -1 8 -5 -3 -19 2 -23 15 -11 +10 10 11 15 2 21 -7 6 -6 7 4 4 8 -2 15 -9 15 -14 0 -21 11 -22 23 -3 7 11 9 +20 5 19 -21 -3 -33 2 -27 12 4 7 -1 7 -16 -1 -18 -10 -24 -9 -31 1 -6 10 -9 +11 -9 2z"/> +<path d="M5537 2849 c-9 -6 -17 -15 -17 -22 0 -7 4 -6 10 3 6 9 10 10 10 3 0 +-6 -5 -15 -11 -18 -6 -5 -4 -12 8 -21 24 -18 37 -18 29 1 -3 8 2 18 10 23 13 +7 12 10 -3 24 -13 12 -23 14 -36 7z m25 -32 c-7 -8 -8 -18 -4 -22 4 -5 1 -5 +-6 -1 -10 6 -10 11 -2 21 7 8 8 20 4 27 -5 10 -4 10 6 1 10 -9 10 -15 2 -26z"/> +<path d="M5140 2827 c0 -13 95 -68 114 -66 5 0 12 -5 16 -11 5 -8 9 -7 13 5 4 +9 3 13 -3 10 -6 -3 -10 0 -10 7 0 10 -3 9 -11 -2 -8 -12 -9 -11 -5 6 4 13 2 +21 -6 22 -31 2 -50 9 -69 25 -23 20 -39 22 -39 4z m44 -26 c-2 -3 -12 3 -22 +13 -16 17 -16 18 5 5 12 -7 20 -15 17 -18z m47 -18 c13 -16 12 -17 -3 -4 -10 +7 -18 15 -18 17 0 8 8 3 21 -13z"/> +<path d="M5241 2827 c-8 -10 -9 -17 -1 -22 5 -3 10 0 10 7 0 7 6 4 12 -7 6 +-11 17 -23 24 -27 7 -5 10 -17 6 -30 -3 -14 -2 -19 7 -14 6 4 9 12 6 17 -4 5 +-1 9 5 9 6 0 3 11 -6 25 -9 14 -19 23 -22 20 -3 -3 -11 4 -17 15 -10 19 -13 +19 -24 7z"/> +<path d="M5465 2832 c-4 -4 -12 -7 -17 -7 -6 0 -13 -6 -15 -12 -3 -8 4 -13 19 +-13 59 0 63 -2 38 -22 -12 -10 -17 -18 -11 -18 6 0 11 -5 11 -11 0 -5 -4 -8 +-9 -4 -5 3 -17 -5 -25 -17 -9 -12 -16 -18 -16 -13 0 6 -5 3 -10 -5 -8 -13 -10 +-13 -10 -1 0 11 -4 9 -15 -5 -9 -10 -14 -13 -13 -5 2 7 -3 16 -11 19 -9 3 -11 +0 -6 -8 5 -9 4 -11 -4 -6 -6 4 -9 12 -6 17 4 5 1 9 -4 9 -6 0 -11 -5 -11 -11 +0 -5 -5 -7 -11 -3 -8 5 -8 9 1 14 8 5 9 10 2 14 -6 4 -8 14 -5 22 3 9 8 11 12 +6 4 -7 13 -5 24 3 15 11 16 17 7 34 -6 12 -16 21 -22 21 -6 0 -3 -9 6 -19 19 +-21 4 -40 -17 -22 -7 5 -19 6 -26 2 -9 -6 -10 -11 -2 -15 8 -5 8 -13 0 -28 -9 +-17 -8 -23 5 -30 8 -5 17 -7 18 -6 2 2 18 -7 36 -20 25 -19 32 -20 32 -8 0 9 +6 13 14 10 7 -3 20 2 29 10 8 8 18 12 22 8 5 -4 4 -1 0 7 -6 11 -4 13 8 8 10 +-4 18 -1 19 6 0 7 2 17 3 22 2 6 3 16 4 23 1 8 6 10 14 6 9 -6 9 -5 0 8 -7 8 +-9 19 -5 23 4 5 0 6 -9 3 -9 -4 -22 -2 -30 4 -11 8 -11 9 3 4 10 -3 19 -2 22 +2 6 10 -30 13 -39 4z"/> +<path d="M5396 2821 c-3 -5 -3 -16 0 -24 5 -15 -31 -44 -48 -39 -19 5 -5 -9 +22 -23 34 -18 40 -18 40 -4 0 5 -4 8 -8 5 -4 -2 -8 4 -8 14 0 10 5 16 10 13 5 +-4 6 -1 1 7 -5 9 -4 11 3 6 7 -4 18 -3 25 1 9 6 7 13 -9 31 -12 13 -25 19 -28 +13z m22 -36 c-3 -3 -9 2 -12 12 -6 14 -5 15 5 6 7 -7 10 -15 7 -18z"/> +<path d="M5449 2780 c-9 -9 -22 -19 -29 -22 -9 -3 -10 -9 -4 -21 9 -15 12 -15 +29 -3 10 7 20 25 22 40 4 30 3 30 -18 6z m1 -28 c0 -5 -7 -9 -15 -9 -8 0 -12 +4 -9 9 3 4 9 8 15 8 5 0 9 -4 9 -8z"/> +</g> +</svg> diff --git a/site.webmanifest b/site.webmanifest new file mode 100644 index 0000000..b20abb7 --- /dev/null +++ b/site.webmanifest @@ -0,0 +1,19 @@ +{ + "name": "", + "short_name": "", + "icons": [ + { + "src": "/android-chrome-192x192.png", + "sizes": "192x192", + "type": "image/png" + }, + { + "src": "/android-chrome-512x512.png", + "sizes": "512x512", + "type": "image/png" + } + ], + "theme_color": "#ffffff", + "background_color": "#ffffff", + "display": "standalone" +} @@ -1,330 +1,162 @@ -/* -The MIT License (MIT) +@import url("https://fonts.googleapis.com/css2?family=Lora:wght@500&display=swap"); +@import url("https://fonts.googleapis.com/css2?family=Inconsolata&display=swap"); -Copyright (c) 2015 Thomas Frössman - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. -*/ -@import url(http://fonts.googleapis.com/css?family=Inconsolata); -@import url(http://fonts.googleapis.com/css?family=PT+Sans); -@import url(http://fonts.googleapis.com/css?family=PT+Sans+Narrow:400,700); -article, -aside, -details, -figcaption, -figure, -footer, -header, -hgroup, -nav, -section, -summary { - display: block; -} -audio, -canvas, -video { - display: inline-block; -} -audio:not([controls]) { - display: none; - height: 0; -} -[hidden] { - display: none; -} -html { - font-family: sans-serif; - -webkit-text-size-adjust: 100%; - -ms-text-size-adjust: 100%; -} body { - margin: 0; -} -a:focus { - outline: thin dotted; -} -a:active, -a:hover { - outline: 0; -} -h1 { - font-size: 2em; -} -abbr[title] { - border-bottom: 1px dotted; -} -b, -strong { - font-weight: bold; -} -dfn { - font-style: italic; -} -mark { - background: #ff0; - color: #000; -} -code, -kbd, -pre, -samp { - font-family: monospace, serif; - font-size: 1em; -} -pre { - white-space: pre-wrap; - word-wrap: break-word; + margin: 40px auto; + width: 610px; + max-width: 100%; + line-height: 1.6; + font-size: 16px; + background: #fffff4; + color: #3a1616; + padding: 0 10px; + font-size: 18px; + line-height: 28px; + font-family: "Lora"; + font-weight: 500; + /* Smooth the font a little bit, it's a + bit too bold on retina screens */ + -webkit-font-smoothing: antialiased; } -q { - quotes: "\201C" "\201D" "\2018" "\2019"; -} -small { - font-size: 80%; -} -sub, -sup { - font-size: 75%; - line-height: 0; - position: relative; - vertical-align: baseline; -} -sup { - top: -0.5em; -} -sub { - bottom: -0.25em; -} -img { - border: 0; -} -svg:not(:root) { - overflow: hidden; -} -figure { - margin: 0; -} -fieldset { - border: 1px solid #c0c0c0; - margin: 0 2px; - padding: 0.35em 0.625em 0.75em; -} -legend { - border: 0; - padding: 0; -} -button, -input, -select, -textarea { - font-family: inherit; - font-size: 100%; - margin: 0; -} -button, + +/* --------------------------------------------------- */ +/* Make a nice input form with rounded corners and hover + animations*/ +/* --------------------------------------------------- */ input { - line-height: normal; -} -button, -html input[type="button"], -input[type="reset"], -input[type="submit"] { - -webkit-appearance: button; - cursor: pointer; -} -button[disabled], -input[disabled] { - cursor: default; -} -input[type="checkbox"], -input[type="radio"] { + padding: 10px 16px; + margin: 2px 0; box-sizing: border-box; - padding: 0; + border: 2px solid #dabebe; + border-radius: 6px; + background: #fffff4; + color: #3a1616; + font-size: 16px; + -webkit-transition: 0.5s; + transition: 0.5s; + outline: none; } -input[type="search"] { - -webkit-appearance: textfield; - -moz-box-sizing: content-box; - -webkit-box-sizing: content-box; - box-sizing: content-box; +input:focus { + border: 2px solid #3a1616; +} + +/* --------------------------------------- */ +/* The button is very similar to the input */ +/* --------------------------------------- */ +.button { + background-color: #fffff4; + border: none; + color: black; + padding: 6px 14px; + text-align: center; + text-decoration: none; + display: inline-block; + font-size: 16px; + margin: 4px 2px; + transition-duration: 0.4s; + cursor: pointer; + border: 2px solid #3a1616; + border-radius: 6px; } -input[type="search"]::-webkit-search-cancel-button, -input[type="search"]::-webkit-search-decoration { - -webkit-appearance: none; +.button:hover { + background-color: #3a1616; + color: white; } -button::-moz-focus-inner, -input::-moz-focus-inner { - border: 0; - padding: 0; + +/* ----------------------------------------------- */ +/* Various classes for messages of different kinds */ +/* ----------------------------------------------- */ +.isa_info, +.isa_success, +.isa_warning, +.isa_error { + width: 90%; + margin: 10px 0px; + padding: 12px; } -textarea { - overflow: auto; - vertical-align: top; +.isa_info { + color: #00529b; + background-color: #bde5f8; } -table { - border-collapse: collapse; - border-spacing: 0; +.isa_success { + color: #4f8a10; + background-color: #dff2bf; } -html { - font-family: 'PT Sans', sans-serif; +.isa_warning { + color: #9f6000; + background-color: #feefb3; } -pre, -code { - font-family: 'Inconsolata', monospace; +.isa_error { + color: #d8000c; + background-color: #ffd2d2; } h1, h2, -h3, -h4, -h5, -h6 { - font-family: 'PT Sans Narrow', sans-serif; - font-weight: 700; -} -html { - background-color: #e6fafc; - color: #4c4f69; - margin: 1em; -} -body { - /* background-color: #f5e0dc; */ - margin: 0 auto; - max-width: 23cm; - /* border: 1pt solid #586e75; */ - padding: 1em; +h3 { + line-height: 1.2; + font-family: "Lora"; } -code { - color: #cdd6f4; - background-color: #073642; - padding: 2px; + +img { + width: 500px; + max-width: 100%; + border-radius: 10px; + text-align: center; } + +/* --------------------------------------------- */ +/* Bold hover animations on links and clickables */ +/* --------------------------------------------- */ a { - color: #1e66f5; -} -a:visited { - color: #e64553; + cursor: pointer; + color: #217ab7; + line-height: inherit; + transition: 0.14s; } a:hover { - color: #e64553; + color: white; + background-color: #3297d3; } -h1 { - color: #04a5e5; +a:visited { + color: #43458b; + border-color: #43458b; } -h2, -h3, -h4, -h5, -h6 { - color: #04a5e5; +a:visited:hover { + color: white; + background-color: #9251ac; } + pre { - background-color: #002b36; - color: #839496; - border: 1pt solid #586e75; - padding: 1em; - box-shadow: 5pt 5pt 8pt #073642; -} -pre code { - background-color: #002b36; -} -h1 { - font-size: 2.8em; -} -h2 { - font-size: 2.4em; + font-family: "Inconsolata", monospace; } -h3 { - font-size: 1.8em; -} -h4 { - font-size: 1.4em; -} -h5 { - font-size: 1.3em; -} -h6 { - font-size: 1.15em; -} -.tag { - background-color: #073642; - color: #d33682; - padding: 0 0.2em; -} -.todo, -.next, -.done { - color: #002b36; - background-color: #dc322f; - padding: 0 0.2em; -} -.tag { - -webkit-border-radius: 0.35em; - -moz-border-radius: 0.35em; - border-radius: 0.35em; -} -.TODO { - -webkit-border-radius: 0.2em; - -moz-border-radius: 0.2em; - border-radius: 0.2em; - background-color: #2aa198; -} -.NEXT { - -webkit-border-radius: 0.2em; - -moz-border-radius: 0.2em; - border-radius: 0.2em; - background-color: #268bd2; -} -.ACTIVE { - -webkit-border-radius: 0.2em; - -moz-border-radius: 0.2em; - border-radius: 0.2em; - background-color: #268bd2; -} -.DONE { - -webkit-border-radius: 0.2em; - -moz-border-radius: 0.2em; - border-radius: 0.2em; - background-color: #859900; -} -.WAITING { - -webkit-border-radius: 0.2em; - -moz-border-radius: 0.2em; - border-radius: 0.2em; - background-color: #cb4b16; -} -.HOLD { - -webkit-border-radius: 0.2em; - -moz-border-radius: 0.2em; - border-radius: 0.2em; - background-color: #d33682; -} -.NOTE { - -webkit-border-radius: 0.2em; - -moz-border-radius: 0.2em; - border-radius: 0.2em; - background-color: #d33682; -} -.CANCELLED { - -webkit-border-radius: 0.2em; - -moz-border-radius: 0.2em; - border-radius: 0.2em; - background-color: #859900; + +::selection { + color: white; + background: #ff4081; } + #postamble { - padding-top: 12px; - font-size: 12px; } +/* #table-of-contents { */ +/* height: 100%; /\* Full-height: remove this if you want "auto" height *\/ */ +/* width: 160px; /\* Set the width of the sidebar *\/ */ +/* position: fixed; /\* Fixed Sidebar (stay in place on scroll) *\/ */ +/* z-index: 1; /\* Stay on top *\/ */ +/* top: 0; /\* Stay at the top *\/ */ +/* left: 0; */ +/* overflow-x: hidden; /\* Disable horizontal scroll *\/ */ +/* padding-top: 20px; */ +/* } */ +/* #table-of-contents ul a { */ +/* padding: 6px 8px 6px 16px; */ +/* text-decoration: none; */ +/* font-size: 25px; */ +/* display: block; */ +/* } */ + +.src, .example { - color: #fdf6e3; -} -.src { - color: #fdf6e3; + color: #ebdbb2; + background-color: #282828; } |
