summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorkballou <kballou@devnulllabs.io>2016-09-07 23:32:45 -0600
committerkballou <kballou@devnulllabs.io>2016-09-14 21:57:00 -0600
commit7f667c5ccdb50cb6b81f244618f0b815247f391b (patch)
tree24c464681cf654ffeb92ee8504c2092b71a1c39b
parentebf04efe1fb8c1fc4313644ba9d4661f427ad1f8 (diff)
downloadkennyballou.com-7f667c5ccdb50cb6b81f244618f0b815247f391b.tar.gz
kennyballou.com-7f667c5ccdb50cb6b81f244618f0b815247f391b.tar.xz
Add git resurrecting history post
-rw-r--r--blag/content/blog/git-resurrecting-history.markdown525
-rw-r--r--blag/static/media/git-repo-state-1.svg162
-rw-r--r--blag/static/media/git-repo-state-2.svg221
-rw-r--r--blag/static/media/git-repo-state-3.svg220
-rw-r--r--blag/static/media/git-repo-state-4.svg232
-rw-r--r--blag/static/media/git-repo-state-5.svg249
6 files changed, 1609 insertions, 0 deletions
diff --git a/blag/content/blog/git-resurrecting-history.markdown b/blag/content/blog/git-resurrecting-history.markdown
new file mode 100644
index 0000000..9fb0123
--- /dev/null
+++ b/blag/content/blog/git-resurrecting-history.markdown
@@ -0,0 +1,525 @@
+---
+title: "Git: Resurrecting History"
+description: ""
+tags:
+ - "Git"
+ - "Tips and Tricks"
+ - "How-to"
+date: "2016-09-14"
+categories:
+ - "Development"
+slug: "git-resurrecting-history"
+---
+
+We all make mistakes. They are inevitable. We must accept that we make them and
+move on. But making mistakes in Git seems to be overly complex to resolve and
+most will simply result to cloning anew and copying the working tree (or some
+subset) and moving on. This, to me, however, seems like a waste of bandwidth as
+most issues resulting in broken history are in fact quite easy to resolve,
+especially so once the necessary tools are known.
+
+## Git Reflog ##
+
+> Reference logs or "reflogs", record when the tips of branches and other
+> references were updated in the local repository.
+--[`git-reflog(1)`][1]
+
+That is, the reference log is the (meta)log of the actions against branches
+(tips) and other [references][2]. Every time we commit, merge, change branches,
+or perform _any_ action that might alter the commit a reference points to, this
+change is stored in the reflog of the current repository. For a freshly cloned
+repository, the reflog will be quite boring, e.g., a single entry for the
+initial clone.
+
+However, after working on a project for a while, the reflog will have quite the
+history of actions performed.
+
+For example, here is the first 24 lines of the reflog for this blog's
+repository:
+
+ a1bbd00 HEAD@{0}: checkout: moving from master to git_resurrection
+ a1bbd00 HEAD@{1}: commit: Update paths of SSL certificate and key
+ d7fd8f8 HEAD@{2}: commit: Add all targets to phony
+ f639cbe HEAD@{3}: commit: Add phony target list
+ 8f3bba4 HEAD@{4}: commit: Add build to deploy dependency
+ 5331695 HEAD@{5}: merge elixir_releases: Fast-forward
+ 1a27df5 HEAD@{6}: checkout: moving from elixir_functional_fib to master
+ 61f755b HEAD@{7}: checkout: moving from master to elixir_functional_fib
+ 1a27df5 HEAD@{8}: checkout: moving from elixir_releases to master
+ 5331695 HEAD@{9}: rebase -i (finish): returning to refs/heads/elixir_releases
+ 5331695 HEAD@{10}: rebase -i (squash): Add Elixir OTP Releases Post
+ 07f3995 HEAD@{11}: rebase -i (squash): # This is a combination of 4 commits.
+ 9b7bc7b HEAD@{12}: rebase -i (squash): # This is a combination of 3 commits.
+ 06414a7 HEAD@{13}: rebase -i (squash): # This is a combination of 2 commits.
+ cb59962 HEAD@{14}: rebase -i (start): checkout HEAD~5
+ bf8836f HEAD@{15}: commit: WIP: elixir otp releases
+ 34bc98a HEAD@{16}: commit: WIP: update ends
+ 00fc016 HEAD@{17}: commit: WIP: elixir otp releases
+ e859353 HEAD@{18}: commit: WIP: elixir otp release post
+ cb59962 HEAD@{19}: commit: WIP: elixir otp releases post
+ 1a27df5 HEAD@{20}: checkout: moving from master to elixir_releases
+ 1a27df5 HEAD@{21}: checkout: moving from elixir_functional_fib to master
+ 61f755b HEAD@{22}: commit: WIP: some post about fib
+ 4137e6e HEAD@{23}: checkout: moving from master to elixir_functional_fib
+
+The first column is the commit SHA-1 that is the _result_ of the action, the
+second column provides a shortcut reference that can be used anywhere a regular
+reference can be, the 3rd column is the action, e.g., `checkout`, `commit`,
+`merge`, etc., and a short description of the action. In the case of commits,
+the description text will be the summary line of the commit message.
+
+From the reflog, we can see I've recently made a branch for this post, before
+that, I made several commits against the `master` branch, and before that, I
+performed a fast-forward merge of the local `elixir_releases` branch into the
+`master` branch. Etc.
+
+This is some pretty powerful information for digging into the history of the
+repository. The reflog is indispensable for working out how to recover lost
+changes.
+
+## Git Fsck ##
+
+[`git-reflog(1)`][1] is a very useful tool, but, another way history can be
+lost is by becoming "unreachable".
+
+This is where [`git-fsck(1)`][3] can help! [`git-fsck(1)`][3] searches the Git
+object store, and will report objects that are dangling or unreachable from a
+named reference. This way, we can find commits, or even blobs, that have been
+lost to us because they do not exist in the directed acyclic graph (DAG) of
+Git, but _do_ exist in the object store itself.
+
+For example, running `git fsck` on this repository yields the following output:
+
+ ± git fsck
+ Checking object directories: 100% (256/256), done.
+ Checking objects: 100% (150/150), done.
+ dangling commit 16f6063abde9dcd8279fb2a7ddd4998aaf44acc7
+
+Now, if we add another option, namely, `--unreachable`, we get the following:
+
+ ± git fsck --unreachable
+ unreachable blob 20c1e21948ab5d9553c11fa8a7230d73055c207e
+ unreachable commit 16f6063abde9dcd8279fb2a7ddd4998aaf44acc7
+ unreachable commit 41a324739bc3f1d265ecc474c58256e3a4ad4982
+ unreachable blob c4131dc6d091b1c16943554fa2396f5d405e8537
+
+Furthermore, objects listed in the reflog are considered "reachable", but may
+be still eluding our search. Adding `--no-reflogs` to [`git-fsck(1)`][3] can
+help make these objects more visible:
+
+ ± git fsck --unreachable --no-reflogs
+ unreachable commit 00fc0164a78fe6b46e56781d434fdbb893f11534
+ unreachable blob 18a484273f75e4a3dcac75cb5229a614f6090be0
+ unreachable commit 1cdc30ebd6ebbaba4a8c28fb35457a8d5cb4326f
+ unreachable blob 27c4af632030e3d794181024fba120c6db44eef5
+ unreachable commit 31a0e98166bc48bf1f725a657e27632c99568da0
+ unreachable commit 34bc98ae27f3db69df82b186cf2ef8a86b42ea12
+ unreachable commit 8f08be163f185dd130a86d67daf61639632c4e20
+ unreachable commit bf8836f2e435ee241ebe53f0eae4ee98bd887082
+ unreachable commit 06414a75d58cee81fb2035b8af45a543c6bb09ef
+ unreachable blob 1f853af2881919bc62321b536bfc0de6e9602db6
+ unreachable blob 20c1e21948ab5d9553c11fa8a7230d73055c207e
+ unreachable commit 54cd8b9b5c58409ce3f509e74d5a7a7ac4a73309
+ unreachable commit a9693871e765355b6d9a57a612a76f454b177da0
+ unreachable commit ad45856329ff97bd35ac17325952c21e53d51b28
+ unreachable blob b8154e42d08b74ae6b9817e12b7764d55760c86e
+ unreachable commit cb599620e2d364e2ab44ada45f16df05c5fe3f51
+ unreachable commit e859353ddc681177141d84a0053b9b8ecad1151e
+ unreachable blob fed50bb1d7c749767de7589cc8ef0acf8caf8226
+ unreachable blob 056a7e48130d8d22227367ae9753cb5c9afe2d39
+ unreachable commit 16f6063abde9dcd8279fb2a7ddd4998aaf44acc7
+ unreachable commit 54def8ee3ea0c7043767185e5900480d24ddb351
+ unreachable commit 65d2a1553e3c1dd745afa318135a5957e50dd6ef
+ unreachable commit 741afdc2f13e76bd0c48e1df7419b37e57733de3
+ unreachable commit 7bb6b449ced0493f2d3cc975157aefa84b082e04
+ unreachable commit 7e067ad694538a410f98732ce3052546aadc0240
+ unreachable commit 809e9d1f131f54701325357199643505773f5d25
+ unreachable blob 8802d6dcac8b14399ca4082987a76be4b179333c
+ unreachable blob 8b82ffa1eb05ef3306ab62e1120f77a80a887d94
+ unreachable commit 9af67536e6852fe928934ba0950809597d73a173
+ unreachable blob b23eefdac6b2056e25c748679958179bdbd8f81f
+ unreachable blob b66ef50f82242ec929141cf3246278c6160e230a
+ unreachable blob c2fa5a98fe1010a1255f032ba34a612e404c7062
+ unreachable blob dd42939b3f6cf542064eb011b74749195c951957
+ unreachable commit 07f39952cd161438ff4b208b6cb10b287881db85
+ unreachable blob 1c0327c6a73923e932eb4f4bf877f660bd13a7b0
+ unreachable commit 41a324739bc3f1d265ecc474c58256e3a4ad4982
+ unreachable commit 74671b411e2cf1209bc681f0349e24ef7fe00f19
+ unreachable commit 9437cbb0500b22a57a62e2cf0a512b1b56ce6a96
+ unreachable commit 9a0f5f8c63c184cd5082f27dbe513b3e683bc1ad
+ unreachable commit 9b7bc7bf0f01a84621e23bfa02e0a09f63da1747
+ unreachable commit bce7c8dbcc56e6935015a5fb2c74224bb8d9f768
+ unreachable blob c4131dc6d091b1c16943554fa2396f5d405e8537
+ unreachable blob c69782e19aee6d89de4f6bcf9ed14813f72c8c10
+ unreachable blob d79fb0b95796290c33d6f3dee004235dad7d8893
+ unreachable commit dabb01b3df1371602f3f0689d25359597db54423
+ unreachable blob ec2ba85be58685070a44727bc2591b9a32eb6457
+
+Using these hashes, one could inspect them using other [familiar tools][4],
+namely, [`git-show(1)`][5] and [`git-cat-file(1)`][6] to figure out if these
+are worth resurrecting or even are in fact the objects we want to resurrect.
+
+## Resurrection Example ##
+
+Now that we have some tools, let's examine a situation where a change to the
+history was made that needs to be corrected: deleting branch references.
+
+Let's assume we are working on a topic branch for some new awesome feature.
+However, after some developing, we discover this solution might not be worth
+pursuing anymore. In a fit of rage of our wasted effort, we dump the branch.
+
+Perhaps several days go by, and we discover we want to look back at something
+we did in that previous branch for some reason or another, but we certainly
+don't remember the commit hash of that branch.
+
+For concreteness, let's create a repository that will demonstrate this problem:
+
+ $ cd $(mktemp -d)
+ $ git init foobar
+ $ cd foobar
+ ± touch foo
+ ± git add foo
+ ± git commit -m 'initial commit'
+ ± touch bar
+ ± git add bar
+ ± git commit -m 'add bar'
+ ± git log --oneline
+ 1cf706a add bar
+ 11d3501 initial commit
+
+> I created this example repository in a temporary directory because it's not
+> likely to be useful after the demonstration of this problem. Feel free to
+> create the repository wherever you please, provided you are following along.
+
+From here, we may decide to branch and start working on our epic topic branch:
+
+ ± git checkout -b topic/epic_feature
+ ± echo 1 >> foo
+ ± git commit -am 'update foo: add 1'
+ ± echo 2 >> bar
+ ± git commit -am 'update bar: add 2'
+ ± touch foobar
+ ± git add foobar
+ ± git commit -m 'add foobar'
+ ± git log --oneline
+ 2e0bcc6 add foobar
+ f2239ca update bar: add 2
+ 32d8e6d update foo: add 1
+ 1cf706a add bar
+ 11d3501 initial commit
+
+From here, we decide that the `topic/epic_feature` branch is going anywhere but
+the `master` branch. Therefore, we, swiftly, dump it into the ether:
+
+ ± git checkout master
+ Switch to branch 'master'
+ ± git branch -D topic/epic_foobar
+ Deleted branch topic/epic_feature (was 2e0bcc6).
+
+Several days pass, we perform other commits on other branches, merge them into
+`master`, decide on some other things to work on. But eventually, we are
+reminded that our old `topic/epic_feature` branch had something similar to what
+we are doing now. It would be nice to recover it and its changes for
+examination. However, we likely lost the commit hash of the branch.
+
+### Solution ###
+
+If we take a quick look at our `git-fsck` output, we might see something that
+may lead us to our commit hash:
+
+ ± git fsck
+ Checking object directories: 100% (256/256), done.
+
+Well, that was less than helpful. What happened? Turns out, as mentioned
+above, `git-fsck` considers objects "reachable" if they are pointed to by a
+reference _or_ are in the reflog. Let's add the `--no-reflogs` flag:
+
+ ± git fsck --no-reflogs
+ Checking object directories: 100% (256/256), done.
+ dangling commit 2e0bcc62122f2d7bf895958ac8fed1ec05d4d904
+
+This looks more promising! Let's checkout this hash and inspect it:
+
+ ± git checkout 2e0bcc62122f2d7bf895958ac8fed1ec05d4d904
+
+ Note: checking out '2e0bcc62122f2d7bf895958ac8fed1ec05d4d904'.
+
+ You are in 'detached HEAD' state. You can look around, make experimental
+ changes and commit them, and you can discard any commits you make in this
+ state without impacting any branches by performing another checkout.
+
+ If you want to create a new branch to retain commits you create, you may
+ do so (now or later) by using -b with the checkout command again. Example:
+
+ git checkout -b <new-branch-name>
+
+ HEAD is now at 2e0bcc6... add foobar
+ ± git log --oneline
+ 2e0bcc6 add foobar
+ f2239ca update bar: add 2
+ 32d8e6d update foo: add 1
+ 1cf706a add bar
+ 11d3501 initial commit
+
+This indeed looks like the branch we created (several days) before. Git's
+interface, as a helpful reminder, explains to us how to (re)create this point
+as a reference (branch). It is, thus, our choice to examine the branch as-is,
+or recreate the reference for later inspection.
+
+## Another Resurrection Example ##
+
+For another example, let's examine when we create a branch and change the
+parent commit of the branch point.
+
+We will start with some commands that create and initialize the repository into
+an initial state, that is, before any mistakes are made:
+
+ $ cd $(mktemp -d)
+ $ git init foobar
+ $ cd foobar
+ ± touch foo
+ ± git add foo
+ ± git commit -m 'initial commit'
+ ± touch bar
+ ± git add bar
+ ± git commit -m 'add bar'
+ ± echo 1 >> foo
+ ± git commit -am 'update foo: add 1'
+ ± git checkout -b topic/foobar
+ ± echo 1 >> bar
+ ± git commit -am 'update bar: add 1'
+
+> Notice, again, I've created this repository in a temporary directory for my
+> own system's tidyness. Futhermore, note `mktemp -d` will create a _different_
+> temporary directory. As such, the `foobar` project from this example and the
+> previous example _will_ be different.
+
+From here, our one line log should look similar to the following:
+
+ ± git log --oneline
+ 3de2659 update bar: add 1
+ 5e6dd5f update foo: add 1
+ 9640abb add bar
+ 31d2347 initial commit
+
+Furthermore, here is an image that describes the state of the repository.
+
+{{< figure src="/media/git-repo-state-1.svg"
+ alt="Example Repository State 1" >}}
+
+Next, we will create a few more commits, but instead of doing things properly,
+we are going to (intentionally) make a mistake. We will merge our
+`topic/foobar` branch into `master`, create a new file, `foobar`, and create a
+branch, `topic/bad`, from `topic/foobar`. In the `topic/bad` branch, we will
+create some new commits, but then we will squash the _two previous_ commits.
+
+Let's begin issuing commands against our repository:
+
+ ± git checkout master
+ ± git merge --ff-only topic/foobar
+ ± touch foobar
+ ± git add foobar
+ ± git commit -m 'add foobar'
+ ± git checkout -b topic/bad topic/foobar
+ ± echo 2 >> foo
+ ± git commit -am 'update foo: add 2'
+ ± echo 2 >> bar
+ ± git commit -am 'update bar: add 2'
+
+Thusly, our repository should look similar to the following image:
+
+{{< figure src="/media/git-repo-state-2.svg"
+ alt="Example Repository State 2" >}}
+
+Now, for the mistake:
+
+ ± git rebase -i HEAD~3
+ (squash the previous commits)
+ pick 3de26
+ squash 4babf
+ squash 7647f
+
+This should result in a repository that looks like the following:
+
+{{< figure src="/media/git-repo-state-3.svg"
+ alt="Example Repository State 3" >}}
+
+Assuming we didn't recognize the mistake, we might attempt to merge the branch:
+
+ ± git checkout master
+ ± git merge --ff-only topic/bad
+ fatal: Not possible to fast-forward, aborting.
+
+Well, of course, the `master` branch is ahead by one commit, and the
+`topic/bad` branch is "behind" by two.
+
+We can see this be viewing the logs when going from `master` to `topic/bad` and
+then vice-versa:
+
+ ± git log --oneline master..topic/bad
+ 3b71666 update bar: add 1
+ ± git log --oneline topic/bad..master
+ 7387d60 add foobar
+ 3de2659 update bar: add 1
+
+But another issue emerges from viewing these log outputs from our mistake
+ignorant brains: two of the commits look the same, e.g., have the same commit
+message.
+
+Not only have we combined two of our changes from `topic/bad` but we combined
+them with a commit that was _already_ merged into the `master` branch. Assuming
+`master` is a stable and "branchable" branch, we will not be able to simply
+rebase one way and return, the commits are too intermingled.
+
+> Branchable, in this context, means the branch is safe to base work, no one on
+> our team (or ourselves, if we practice proper discipline) will come behind us
+> and change the history of this branch. This is an important assumption in
+> _any_ distributed workflow. Every project should have (at least) one
+> "branchable" reference, many choose this to be the `master` branch.
+
+### Solutions ###
+
+One way we can fix this is to simply not care. But that's not what we are
+about: we like clean history, this situation and such a solution is clearly not
+clean!
+
+Therefore, we will have to return the `topic/bad` branch to a clean state
+before continuing with merging the work done in the branch.
+
+Let's start with examining the reflog:
+
+ ± git reflog
+ 7387d60 HEAD@{0}: checkout: moving from topic/bad to master
+ 3b71666 HEAD@{1}: rebase -i (finish): returning to refs/heads/topic/bad
+ 3b71666 HEAD@{2}: rebase -i (fixup): update bar: add 1
+ 4cc10e9 HEAD@{3}: rebase -i (fixup): # This is a combination of 2 commits.
+ 3de2659 HEAD@{4}: rebase -i (start): checkout HEAD~3
+ 7647f9c HEAD@{5}: commit: update bar: add 2
+ 4babfe7 HEAD@{5}: commit: update foo: add 2
+ 3de2659 HEAD@{6}: checkout: moving from master to topic/bad
+ 7387d60 HEAD@{7}: commit: add foobar
+ 3de2659 HEAD@{8}: checkout: moving from topic/bad to master
+ 3de2659 HEAD@{9}: checkout: moving from master to topic/bad
+ 3de2659 HEAD@{10}: merge topic/foobar: Fast-forward
+ 5e6dd5f HEAD@{11}: checkout: moving from topic/foobar to master
+ 3de2659 HEAD@{12}: commit: update bar: add 1
+ 5e6dd5f HEAD@{13}: checkout: moving from master to topic/foobar
+ 5e6dd5f HEAD@{14}: commit: update foo: add 1
+ 9640abb HEAD@{15}: commit: add bar
+ 31d2347 HEAD@{16}: commit (initial): initial commit
+
+Examining `HEAD@{5}` we will see the commit of `topic/bad` _before_ we
+attempted to rebase the three commits. If we start there, we may be able to
+salvage the history.
+
+ ± git checkout topic/bad
+ ± git reset --hard 7647f9c
+ ± git log --oneline
+ 7647f9c update bar: add 2
+ 4babfe7 update foo: add 2
+ 3de2659 update bar: add 1
+ 5e6dd5f update foo: add 1
+ 9640abb add bar
+ 31d2347 initial commit
+
+> Obligatory notice, blindly using `git reset --hard` can lead to dark, scary
+> places. As with the first example in this post, `git reset --hard` is an even
+> more subtle way to lose commits. Pause before pressing enter _everytime_ you
+> type `git reset --hard`.
+
+Perfect, we are back to the state of the branch as seen in the following image:
+
+{{< figure src="/media/git-repo-state-2.svg"
+ alt="Example Repository State Before Mistake" >}}
+
+From here, we can merge the two branches however we please: rebase and
+fast-forward or regular old merge commits.
+
+The first way of merging the two branches may proceed as follows:
+
+ ± git branch
+ topic/bad
+ ± git rebase master
+ First, rewinding head to replay your work on top of it...
+ Applying: update foo: add 2
+ Applying: update bar: add 2
+ ± git checkout master
+ Switched to branch 'master'
+ ± git merge --ff-only topic/bad
+ Updating 7387d60..577aa0b
+ Fast-forward
+ bar | 1 +
+ foo | 1 +
+ 2 files changed, 2 insertions(+)
+
+Afterwards, our repository will look like the following figure:
+
+{{< figure src="/media/git-repo-state-4.svg"
+ alt="Example Repository State After Rebase Fast-Forward Merge" >}}
+
+> If we wanted to rebase the two commits from `topic/bad` together, we could
+> have easily done so _right_ before switching to the `master` branch.
+
+Proceeding with a regular merge commit would proceed similar to the following:
+
+ ± git checkout master
+ Switched to branch 'master'
+ ± git merge --no-ff topic/bad -m 'merge branch "topic/bad"'
+ Merge made by the 'recursive' strategy.
+ bar | 1 +
+ foo | 1 +
+ 2 files changed, 2 insertions(+)
+
+Afterwards, our repository will look like the following figure:
+
+{{< figure src="/media/git-repo-state-5.svg"
+ alt="Example Repository State After Merge Commit" >}}
+
+## Summary ##
+
+The best way to fix Git repository history is not to make mistakes in the first
+place. However, since mistakes are inevitable, we must learn the tools to
+discover, recover, and return to the appropriate state to correct our mistakes.
+More importantly, we must learn the courage to make mistakes, knowing we have
+an escape route.
+
+This way, we can avoid keeping around a `git.txt` file ([xkcd][9]) when our
+repository eventually melts down.
+
+## References ##
+
+* [`git-reflog(1)`][1]
+
+* [Git SCM book, Internals Chapter][2]
+
+* [`git-fsck(1)`][3]
+
+* [Git in Reverse][4]
+
+* [`git-show(1)`][5]
+
+* [`git-cat-file(1)`][6]
+
+* [`git-reset(1)`][7]
+
+* [`git-rebase(1)`][8]
+
+* [XKCD: Git][9]
+
+[1]: https://www.kernel.org/pub/software/scm/git/docs/git-reflog.html
+
+[2]: https://git-scm.com/book/en/v2/Git-Internals-Git-References
+
+[3]: https://www.kernel.org/pub/software/scm/git/docs/git-fsck.html
+
+[4]: https://kennyballou.com/blog/2016/01/git-in-reverse/
+
+[5]: https://www.kernel.org/pub/software/scm/git/docs/git-show.html
+
+[6]: https://www.kernel.org/pub/software/scm/git/docs/git-cat-file.html
+
+[7]: https://www.kernel.org/pub/software/scm/git/docs/git-reset.html
+
+[8]: https://www.kernel.org/pub/software/scm/git/docs/git-rebase.html
+
+[9]: https://xkcd.com/1597
diff --git a/blag/static/media/git-repo-state-1.svg b/blag/static/media/git-repo-state-1.svg
new file mode 100644
index 0000000..3a64404
--- /dev/null
+++ b/blag/static/media/git-repo-state-1.svg
@@ -0,0 +1,162 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="217.381pt" height="102.44pt" viewBox="0 0 217.381 102.44" version="1.1">
+<defs>
+<g>
+<symbol overflow="visible" id="glyph0-0">
+<path style="stroke:none;" d=""/>
+</symbol>
+<symbol overflow="visible" id="glyph0-1">
+<path style="stroke:none;" d="M 1.09375 -3.421875 L 1.09375 -0.75 C 1.09375 -0.3125 0.984375 -0.3125 0.3125 -0.3125 L 0.3125 0 C 0.671875 -0.015625 1.171875 -0.03125 1.453125 -0.03125 C 1.703125 -0.03125 2.21875 -0.015625 2.5625 0 L 2.5625 -0.3125 C 1.890625 -0.3125 1.78125 -0.3125 1.78125 -0.75 L 1.78125 -2.59375 C 1.78125 -3.625 2.5 -4.1875 3.125 -4.1875 C 3.765625 -4.1875 3.875 -3.65625 3.875 -3.078125 L 3.875 -0.75 C 3.875 -0.3125 3.765625 -0.3125 3.09375 -0.3125 L 3.09375 0 C 3.4375 -0.015625 3.953125 -0.03125 4.21875 -0.03125 C 4.46875 -0.03125 5 -0.015625 5.328125 0 L 5.328125 -0.3125 C 4.671875 -0.3125 4.5625 -0.3125 4.5625 -0.75 L 4.5625 -2.59375 C 4.5625 -3.625 5.265625 -4.1875 5.90625 -4.1875 C 6.53125 -4.1875 6.640625 -3.65625 6.640625 -3.078125 L 6.640625 -0.75 C 6.640625 -0.3125 6.53125 -0.3125 5.859375 -0.3125 L 5.859375 0 C 6.203125 -0.015625 6.71875 -0.03125 6.984375 -0.03125 C 7.25 -0.03125 7.765625 -0.015625 8.109375 0 L 8.109375 -0.3125 C 7.59375 -0.3125 7.34375 -0.3125 7.328125 -0.609375 L 7.328125 -2.515625 C 7.328125 -3.375 7.328125 -3.671875 7.015625 -4.03125 C 6.875 -4.203125 6.546875 -4.40625 5.96875 -4.40625 C 5.140625 -4.40625 4.6875 -3.8125 4.53125 -3.421875 C 4.390625 -4.296875 3.65625 -4.40625 3.203125 -4.40625 C 2.46875 -4.40625 2 -3.984375 1.71875 -3.359375 L 1.71875 -4.40625 L 0.3125 -4.296875 L 0.3125 -3.984375 C 1.015625 -3.984375 1.09375 -3.921875 1.09375 -3.421875 Z M 1.09375 -3.421875 "/>
+</symbol>
+<symbol overflow="visible" id="glyph0-2">
+<path style="stroke:none;" d="M 3.3125 -0.75 C 3.359375 -0.359375 3.625 0.0625 4.09375 0.0625 C 4.3125 0.0625 4.921875 -0.078125 4.921875 -0.890625 L 4.921875 -1.453125 L 4.671875 -1.453125 L 4.671875 -0.890625 C 4.671875 -0.3125 4.421875 -0.25 4.3125 -0.25 C 3.984375 -0.25 3.9375 -0.703125 3.9375 -0.75 L 3.9375 -2.734375 C 3.9375 -3.15625 3.9375 -3.546875 3.578125 -3.921875 C 3.1875 -4.3125 2.6875 -4.46875 2.21875 -4.46875 C 1.390625 -4.46875 0.703125 -4 0.703125 -3.34375 C 0.703125 -3.046875 0.90625 -2.875 1.171875 -2.875 C 1.453125 -2.875 1.625 -3.078125 1.625 -3.328125 C 1.625 -3.453125 1.578125 -3.78125 1.109375 -3.78125 C 1.390625 -4.140625 1.875 -4.25 2.1875 -4.25 C 2.6875 -4.25 3.25 -3.859375 3.25 -2.96875 L 3.25 -2.609375 C 2.734375 -2.578125 2.046875 -2.546875 1.421875 -2.25 C 0.671875 -1.90625 0.421875 -1.390625 0.421875 -0.953125 C 0.421875 -0.140625 1.390625 0.109375 2.015625 0.109375 C 2.671875 0.109375 3.125 -0.296875 3.3125 -0.75 Z M 3.25 -2.390625 L 3.25 -1.390625 C 3.25 -0.453125 2.53125 -0.109375 2.078125 -0.109375 C 1.59375 -0.109375 1.1875 -0.453125 1.1875 -0.953125 C 1.1875 -1.5 1.609375 -2.328125 3.25 -2.390625 Z M 3.25 -2.390625 "/>
+</symbol>
+<symbol overflow="visible" id="glyph0-3">
+<path style="stroke:none;" d="M 2.078125 -1.9375 C 2.296875 -1.890625 3.109375 -1.734375 3.109375 -1.015625 C 3.109375 -0.515625 2.765625 -0.109375 1.984375 -0.109375 C 1.140625 -0.109375 0.78125 -0.671875 0.59375 -1.53125 C 0.5625 -1.65625 0.5625 -1.6875 0.453125 -1.6875 C 0.328125 -1.6875 0.328125 -1.625 0.328125 -1.453125 L 0.328125 -0.125 C 0.328125 0.046875 0.328125 0.109375 0.4375 0.109375 C 0.484375 0.109375 0.5 0.09375 0.6875 -0.09375 C 0.703125 -0.109375 0.703125 -0.125 0.890625 -0.3125 C 1.328125 0.09375 1.78125 0.109375 1.984375 0.109375 C 3.125 0.109375 3.59375 -0.5625 3.59375 -1.28125 C 3.59375 -1.796875 3.296875 -2.109375 3.171875 -2.21875 C 2.84375 -2.546875 2.453125 -2.625 2.03125 -2.703125 C 1.46875 -2.8125 0.8125 -2.9375 0.8125 -3.515625 C 0.8125 -3.875 1.0625 -4.28125 1.921875 -4.28125 C 3.015625 -4.28125 3.078125 -3.375 3.09375 -3.078125 C 3.09375 -2.984375 3.1875 -2.984375 3.203125 -2.984375 C 3.34375 -2.984375 3.34375 -3.03125 3.34375 -3.21875 L 3.34375 -4.234375 C 3.34375 -4.390625 3.34375 -4.46875 3.234375 -4.46875 C 3.1875 -4.46875 3.15625 -4.46875 3.03125 -4.34375 C 3 -4.3125 2.90625 -4.21875 2.859375 -4.1875 C 2.484375 -4.46875 2.078125 -4.46875 1.921875 -4.46875 C 0.703125 -4.46875 0.328125 -3.796875 0.328125 -3.234375 C 0.328125 -2.890625 0.484375 -2.609375 0.75 -2.390625 C 1.078125 -2.140625 1.359375 -2.078125 2.078125 -1.9375 Z M 2.078125 -1.9375 "/>
+</symbol>
+<symbol overflow="visible" id="glyph0-4">
+<path style="stroke:none;" d="M 1.71875 -3.984375 L 3.15625 -3.984375 L 3.15625 -4.296875 L 1.71875 -4.296875 L 1.71875 -6.125 L 1.46875 -6.125 C 1.46875 -5.3125 1.171875 -4.25 0.1875 -4.203125 L 0.1875 -3.984375 L 1.03125 -3.984375 L 1.03125 -1.234375 C 1.03125 -0.015625 1.96875 0.109375 2.328125 0.109375 C 3.03125 0.109375 3.3125 -0.59375 3.3125 -1.234375 L 3.3125 -1.796875 L 3.0625 -1.796875 L 3.0625 -1.25 C 3.0625 -0.515625 2.765625 -0.140625 2.390625 -0.140625 C 1.71875 -0.140625 1.71875 -1.046875 1.71875 -1.21875 Z M 1.71875 -3.984375 "/>
+</symbol>
+<symbol overflow="visible" id="glyph0-5">
+<path style="stroke:none;" d="M 1.109375 -2.515625 C 1.171875 -4 2.015625 -4.25 2.359375 -4.25 C 3.375 -4.25 3.484375 -2.90625 3.484375 -2.515625 Z M 1.109375 -2.296875 L 3.890625 -2.296875 C 4.109375 -2.296875 4.140625 -2.296875 4.140625 -2.515625 C 4.140625 -3.5 3.59375 -4.46875 2.359375 -4.46875 C 1.203125 -4.46875 0.28125 -3.4375 0.28125 -2.1875 C 0.28125 -0.859375 1.328125 0.109375 2.46875 0.109375 C 3.6875 0.109375 4.140625 -1 4.140625 -1.1875 C 4.140625 -1.28125 4.0625 -1.3125 4 -1.3125 C 3.921875 -1.3125 3.890625 -1.25 3.875 -1.171875 C 3.53125 -0.140625 2.625 -0.140625 2.53125 -0.140625 C 2.03125 -0.140625 1.640625 -0.4375 1.40625 -0.8125 C 1.109375 -1.28125 1.109375 -1.9375 1.109375 -2.296875 Z M 1.109375 -2.296875 "/>
+</symbol>
+<symbol overflow="visible" id="glyph0-6">
+<path style="stroke:none;" d="M 1.671875 -3.3125 L 1.671875 -4.40625 L 0.28125 -4.296875 L 0.28125 -3.984375 C 0.984375 -3.984375 1.0625 -3.921875 1.0625 -3.421875 L 1.0625 -0.75 C 1.0625 -0.3125 0.953125 -0.3125 0.28125 -0.3125 L 0.28125 0 C 0.671875 -0.015625 1.140625 -0.03125 1.421875 -0.03125 C 1.8125 -0.03125 2.28125 -0.03125 2.6875 0 L 2.6875 -0.3125 L 2.46875 -0.3125 C 1.734375 -0.3125 1.71875 -0.421875 1.71875 -0.78125 L 1.71875 -2.3125 C 1.71875 -3.296875 2.140625 -4.1875 2.890625 -4.1875 C 2.953125 -4.1875 2.984375 -4.1875 3 -4.171875 C 2.96875 -4.171875 2.765625 -4.046875 2.765625 -3.78125 C 2.765625 -3.515625 2.984375 -3.359375 3.203125 -3.359375 C 3.375 -3.359375 3.625 -3.484375 3.625 -3.796875 C 3.625 -4.109375 3.3125 -4.40625 2.890625 -4.40625 C 2.15625 -4.40625 1.796875 -3.734375 1.671875 -3.3125 Z M 1.671875 -3.3125 "/>
+</symbol>
+<symbol overflow="visible" id="glyph0-7">
+<path style="stroke:none;" d="M 2.890625 -3.515625 C 3.703125 -3.78125 4.28125 -4.46875 4.28125 -5.265625 C 4.28125 -6.078125 3.40625 -6.640625 2.453125 -6.640625 C 1.453125 -6.640625 0.6875 -6.046875 0.6875 -5.28125 C 0.6875 -4.953125 0.90625 -4.765625 1.203125 -4.765625 C 1.5 -4.765625 1.703125 -4.984375 1.703125 -5.28125 C 1.703125 -5.765625 1.234375 -5.765625 1.09375 -5.765625 C 1.390625 -6.265625 2.046875 -6.390625 2.40625 -6.390625 C 2.828125 -6.390625 3.375 -6.171875 3.375 -5.28125 C 3.375 -5.15625 3.34375 -4.578125 3.09375 -4.140625 C 2.796875 -3.65625 2.453125 -3.625 2.203125 -3.625 C 2.125 -3.609375 1.890625 -3.59375 1.8125 -3.59375 C 1.734375 -3.578125 1.671875 -3.5625 1.671875 -3.46875 C 1.671875 -3.359375 1.734375 -3.359375 1.90625 -3.359375 L 2.34375 -3.359375 C 3.15625 -3.359375 3.53125 -2.6875 3.53125 -1.703125 C 3.53125 -0.34375 2.84375 -0.0625 2.40625 -0.0625 C 1.96875 -0.0625 1.21875 -0.234375 0.875 -0.8125 C 1.21875 -0.765625 1.53125 -0.984375 1.53125 -1.359375 C 1.53125 -1.71875 1.265625 -1.921875 0.984375 -1.921875 C 0.734375 -1.921875 0.421875 -1.78125 0.421875 -1.34375 C 0.421875 -0.4375 1.34375 0.21875 2.4375 0.21875 C 3.65625 0.21875 4.5625 -0.6875 4.5625 -1.703125 C 4.5625 -2.515625 3.921875 -3.296875 2.890625 -3.515625 Z M 2.890625 -3.515625 "/>
+</symbol>
+<symbol overflow="visible" id="glyph0-8">
+<path style="stroke:none;" d="M 2.9375 -6.375 C 2.9375 -6.625 2.9375 -6.640625 2.703125 -6.640625 C 2.078125 -6 1.203125 -6 0.890625 -6 L 0.890625 -5.6875 C 1.09375 -5.6875 1.671875 -5.6875 2.1875 -5.953125 L 2.1875 -0.78125 C 2.1875 -0.421875 2.15625 -0.3125 1.265625 -0.3125 L 0.953125 -0.3125 L 0.953125 0 C 1.296875 -0.03125 2.15625 -0.03125 2.5625 -0.03125 C 2.953125 -0.03125 3.828125 -0.03125 4.171875 0 L 4.171875 -0.3125 L 3.859375 -0.3125 C 2.953125 -0.3125 2.9375 -0.421875 2.9375 -0.78125 Z M 2.9375 -6.375 "/>
+</symbol>
+<symbol overflow="visible" id="glyph0-9">
+<path style="stroke:none;" d="M 3.78125 -0.546875 L 3.78125 0.109375 L 5.25 0 L 5.25 -0.3125 C 4.5625 -0.3125 4.46875 -0.375 4.46875 -0.875 L 4.46875 -6.921875 L 3.046875 -6.8125 L 3.046875 -6.5 C 3.734375 -6.5 3.8125 -6.4375 3.8125 -5.9375 L 3.8125 -3.78125 C 3.53125 -4.140625 3.09375 -4.40625 2.5625 -4.40625 C 1.390625 -4.40625 0.34375 -3.421875 0.34375 -2.140625 C 0.34375 -0.875 1.3125 0.109375 2.453125 0.109375 C 3.09375 0.109375 3.53125 -0.234375 3.78125 -0.546875 Z M 3.78125 -3.21875 L 3.78125 -1.171875 C 3.78125 -1 3.78125 -0.984375 3.671875 -0.8125 C 3.375 -0.328125 2.9375 -0.109375 2.5 -0.109375 C 2.046875 -0.109375 1.6875 -0.375 1.453125 -0.75 C 1.203125 -1.15625 1.171875 -1.71875 1.171875 -2.140625 C 1.171875 -2.5 1.1875 -3.09375 1.46875 -3.546875 C 1.6875 -3.859375 2.0625 -4.1875 2.609375 -4.1875 C 2.953125 -4.1875 3.375 -4.03125 3.671875 -3.59375 C 3.78125 -3.421875 3.78125 -3.40625 3.78125 -3.21875 Z M 3.78125 -3.21875 "/>
+</symbol>
+<symbol overflow="visible" id="glyph0-10">
+<path style="stroke:none;" d="M 1.265625 -0.765625 L 2.328125 -1.796875 C 3.875 -3.171875 4.46875 -3.703125 4.46875 -4.703125 C 4.46875 -5.84375 3.578125 -6.640625 2.359375 -6.640625 C 1.234375 -6.640625 0.5 -5.71875 0.5 -4.828125 C 0.5 -4.28125 1 -4.28125 1.03125 -4.28125 C 1.203125 -4.28125 1.546875 -4.390625 1.546875 -4.8125 C 1.546875 -5.0625 1.359375 -5.328125 1.015625 -5.328125 C 0.9375 -5.328125 0.921875 -5.328125 0.890625 -5.3125 C 1.109375 -5.96875 1.65625 -6.328125 2.234375 -6.328125 C 3.140625 -6.328125 3.5625 -5.515625 3.5625 -4.703125 C 3.5625 -3.90625 3.078125 -3.125 2.515625 -2.5 L 0.609375 -0.375 C 0.5 -0.265625 0.5 -0.234375 0.5 0 L 4.203125 0 L 4.46875 -1.734375 L 4.234375 -1.734375 C 4.171875 -1.4375 4.109375 -1 4 -0.84375 C 3.9375 -0.765625 3.28125 -0.765625 3.0625 -0.765625 Z M 1.265625 -0.765625 "/>
+</symbol>
+<symbol overflow="visible" id="glyph0-11">
+<path style="stroke:none;" d="M 3.65625 -3.171875 L 3.65625 -2.84375 C 3.65625 -0.515625 2.625 -0.0625 2.046875 -0.0625 C 1.875 -0.0625 1.328125 -0.078125 1.0625 -0.421875 C 1.5 -0.421875 1.578125 -0.703125 1.578125 -0.875 C 1.578125 -1.1875 1.34375 -1.328125 1.125 -1.328125 C 0.96875 -1.328125 0.671875 -1.25 0.671875 -0.859375 C 0.671875 -0.1875 1.203125 0.21875 2.046875 0.21875 C 3.34375 0.21875 4.5625 -1.140625 4.5625 -3.28125 C 4.5625 -5.96875 3.40625 -6.640625 2.515625 -6.640625 C 1.96875 -6.640625 1.484375 -6.453125 1.0625 -6.015625 C 0.640625 -5.5625 0.421875 -5.140625 0.421875 -4.390625 C 0.421875 -3.15625 1.296875 -2.171875 2.40625 -2.171875 C 3.015625 -2.171875 3.421875 -2.59375 3.65625 -3.171875 Z M 2.421875 -2.40625 C 2.265625 -2.40625 1.796875 -2.40625 1.5 -3.03125 C 1.3125 -3.40625 1.3125 -3.890625 1.3125 -4.390625 C 1.3125 -4.921875 1.3125 -5.390625 1.53125 -5.765625 C 1.796875 -6.265625 2.171875 -6.390625 2.515625 -6.390625 C 2.984375 -6.390625 3.3125 -6.046875 3.484375 -5.609375 C 3.59375 -5.28125 3.640625 -4.65625 3.640625 -4.203125 C 3.640625 -3.375 3.296875 -2.40625 2.421875 -2.40625 Z M 2.421875 -2.40625 "/>
+</symbol>
+<symbol overflow="visible" id="glyph0-12">
+<path style="stroke:none;" d="M 1.3125 -3.265625 L 1.3125 -3.515625 C 1.3125 -6.03125 2.546875 -6.390625 3.0625 -6.390625 C 3.296875 -6.390625 3.71875 -6.328125 3.9375 -5.984375 C 3.78125 -5.984375 3.390625 -5.984375 3.390625 -5.546875 C 3.390625 -5.234375 3.625 -5.078125 3.84375 -5.078125 C 4 -5.078125 4.3125 -5.171875 4.3125 -5.5625 C 4.3125 -6.15625 3.875 -6.640625 3.046875 -6.640625 C 1.765625 -6.640625 0.421875 -5.359375 0.421875 -3.15625 C 0.421875 -0.484375 1.578125 0.21875 2.5 0.21875 C 3.609375 0.21875 4.5625 -0.71875 4.5625 -2.03125 C 4.5625 -3.296875 3.671875 -4.25 2.5625 -4.25 C 1.890625 -4.25 1.515625 -3.75 1.3125 -3.265625 Z M 2.5 -0.0625 C 1.875 -0.0625 1.578125 -0.65625 1.515625 -0.8125 C 1.328125 -1.28125 1.328125 -2.078125 1.328125 -2.25 C 1.328125 -3.03125 1.65625 -4.03125 2.546875 -4.03125 C 2.71875 -4.03125 3.171875 -4.03125 3.484375 -3.40625 C 3.65625 -3.046875 3.65625 -2.53125 3.65625 -2.046875 C 3.65625 -1.5625 3.65625 -1.0625 3.484375 -0.703125 C 3.1875 -0.109375 2.734375 -0.0625 2.5 -0.0625 Z M 2.5 -0.0625 "/>
+</symbol>
+<symbol overflow="visible" id="glyph0-13">
+<path style="stroke:none;" d="M 2.9375 -1.640625 L 2.9375 -0.78125 C 2.9375 -0.421875 2.90625 -0.3125 2.171875 -0.3125 L 1.96875 -0.3125 L 1.96875 0 C 2.375 -0.03125 2.890625 -0.03125 3.3125 -0.03125 C 3.734375 -0.03125 4.25 -0.03125 4.671875 0 L 4.671875 -0.3125 L 4.453125 -0.3125 C 3.71875 -0.3125 3.703125 -0.421875 3.703125 -0.78125 L 3.703125 -1.640625 L 4.6875 -1.640625 L 4.6875 -1.953125 L 3.703125 -1.953125 L 3.703125 -6.484375 C 3.703125 -6.6875 3.703125 -6.75 3.53125 -6.75 C 3.453125 -6.75 3.421875 -6.75 3.34375 -6.625 L 0.28125 -1.953125 L 0.28125 -1.640625 Z M 2.984375 -1.953125 L 0.5625 -1.953125 L 2.984375 -5.671875 Z M 2.984375 -1.953125 "/>
+</symbol>
+<symbol overflow="visible" id="glyph0-14">
+<path style="stroke:none;" d="M 4.578125 -3.1875 C 4.578125 -3.984375 4.53125 -4.78125 4.1875 -5.515625 C 3.734375 -6.484375 2.90625 -6.640625 2.5 -6.640625 C 1.890625 -6.640625 1.171875 -6.375 0.75 -5.453125 C 0.4375 -4.765625 0.390625 -3.984375 0.390625 -3.1875 C 0.390625 -2.4375 0.421875 -1.546875 0.84375 -0.78125 C 1.265625 0.015625 2 0.21875 2.484375 0.21875 C 3.015625 0.21875 3.78125 0.015625 4.21875 -0.9375 C 4.53125 -1.625 4.578125 -2.40625 4.578125 -3.1875 Z M 2.484375 0 C 2.09375 0 1.5 -0.25 1.328125 -1.203125 C 1.21875 -1.796875 1.21875 -2.71875 1.21875 -3.3125 C 1.21875 -3.953125 1.21875 -4.609375 1.296875 -5.140625 C 1.484375 -6.328125 2.234375 -6.421875 2.484375 -6.421875 C 2.8125 -6.421875 3.46875 -6.234375 3.65625 -5.25 C 3.765625 -4.6875 3.765625 -3.9375 3.765625 -3.3125 C 3.765625 -2.5625 3.765625 -1.890625 3.65625 -1.25 C 3.5 -0.296875 2.9375 0 2.484375 0 Z M 2.484375 0 "/>
+</symbol>
+<symbol overflow="visible" id="glyph0-15">
+<path style="stroke:none;" d="M 4.46875 -2 C 4.46875 -3.1875 3.65625 -4.1875 2.578125 -4.1875 C 2.109375 -4.1875 1.671875 -4.03125 1.3125 -3.671875 L 1.3125 -5.625 C 1.515625 -5.5625 1.84375 -5.5 2.15625 -5.5 C 3.390625 -5.5 4.09375 -6.40625 4.09375 -6.53125 C 4.09375 -6.59375 4.0625 -6.640625 3.984375 -6.640625 C 3.984375 -6.640625 3.953125 -6.640625 3.90625 -6.609375 C 3.703125 -6.515625 3.21875 -6.3125 2.546875 -6.3125 C 2.15625 -6.3125 1.6875 -6.390625 1.21875 -6.59375 C 1.140625 -6.625 1.125 -6.625 1.109375 -6.625 C 1 -6.625 1 -6.546875 1 -6.390625 L 1 -3.4375 C 1 -3.265625 1 -3.1875 1.140625 -3.1875 C 1.21875 -3.1875 1.234375 -3.203125 1.28125 -3.265625 C 1.390625 -3.421875 1.75 -3.96875 2.5625 -3.96875 C 3.078125 -3.96875 3.328125 -3.515625 3.40625 -3.328125 C 3.5625 -2.953125 3.59375 -2.578125 3.59375 -2.078125 C 3.59375 -1.71875 3.59375 -1.125 3.34375 -0.703125 C 3.109375 -0.3125 2.734375 -0.0625 2.28125 -0.0625 C 1.5625 -0.0625 0.984375 -0.59375 0.8125 -1.171875 C 0.84375 -1.171875 0.875 -1.15625 0.984375 -1.15625 C 1.3125 -1.15625 1.484375 -1.40625 1.484375 -1.640625 C 1.484375 -1.890625 1.3125 -2.140625 0.984375 -2.140625 C 0.84375 -2.140625 0.5 -2.0625 0.5 -1.609375 C 0.5 -0.75 1.1875 0.21875 2.296875 0.21875 C 3.453125 0.21875 4.46875 -0.734375 4.46875 -2 Z M 4.46875 -2 "/>
+</symbol>
+<symbol overflow="visible" id="glyph0-16">
+<path style="stroke:none;" d="M 4.6875 -2.140625 C 4.6875 -3.40625 3.703125 -4.46875 2.5 -4.46875 C 1.25 -4.46875 0.28125 -3.375 0.28125 -2.140625 C 0.28125 -0.84375 1.3125 0.109375 2.484375 0.109375 C 3.6875 0.109375 4.6875 -0.875 4.6875 -2.140625 Z M 2.5 -0.140625 C 2.0625 -0.140625 1.625 -0.34375 1.359375 -0.8125 C 1.109375 -1.25 1.109375 -1.859375 1.109375 -2.21875 C 1.109375 -2.609375 1.109375 -3.140625 1.34375 -3.578125 C 1.609375 -4.03125 2.078125 -4.25 2.484375 -4.25 C 2.921875 -4.25 3.34375 -4.03125 3.609375 -3.59375 C 3.875 -3.171875 3.875 -2.59375 3.875 -2.21875 C 3.875 -1.859375 3.875 -1.3125 3.65625 -0.875 C 3.421875 -0.421875 2.984375 -0.140625 2.5 -0.140625 Z M 2.5 -0.140625 "/>
+</symbol>
+<symbol overflow="visible" id="glyph0-17">
+<path style="stroke:none;" d="M 1.71875 -3.75 L 1.71875 -4.40625 L 0.28125 -4.296875 L 0.28125 -3.984375 C 0.984375 -3.984375 1.0625 -3.921875 1.0625 -3.484375 L 1.0625 1.171875 C 1.0625 1.625 0.953125 1.625 0.28125 1.625 L 0.28125 1.9375 C 0.625 1.921875 1.140625 1.90625 1.390625 1.90625 C 1.671875 1.90625 2.171875 1.921875 2.515625 1.9375 L 2.515625 1.625 C 1.859375 1.625 1.75 1.625 1.75 1.171875 L 1.75 -0.59375 C 1.796875 -0.421875 2.21875 0.109375 2.96875 0.109375 C 4.15625 0.109375 5.1875 -0.875 5.1875 -2.15625 C 5.1875 -3.421875 4.234375 -4.40625 3.109375 -4.40625 C 2.328125 -4.40625 1.90625 -3.96875 1.71875 -3.75 Z M 1.75 -1.140625 L 1.75 -3.359375 C 2.03125 -3.875 2.515625 -4.15625 3.03125 -4.15625 C 3.765625 -4.15625 4.359375 -3.28125 4.359375 -2.15625 C 4.359375 -0.953125 3.671875 -0.109375 2.9375 -0.109375 C 2.53125 -0.109375 2.15625 -0.3125 1.890625 -0.71875 C 1.75 -0.921875 1.75 -0.9375 1.75 -1.140625 Z M 1.75 -1.140625 "/>
+</symbol>
+<symbol overflow="visible" id="glyph0-18">
+<path style="stroke:none;" d="M 1.765625 -4.40625 L 0.375 -4.296875 L 0.375 -3.984375 C 1.015625 -3.984375 1.109375 -3.921875 1.109375 -3.4375 L 1.109375 -0.75 C 1.109375 -0.3125 1 -0.3125 0.328125 -0.3125 L 0.328125 0 C 0.640625 -0.015625 1.1875 -0.03125 1.421875 -0.03125 C 1.78125 -0.03125 2.125 -0.015625 2.46875 0 L 2.46875 -0.3125 C 1.796875 -0.3125 1.765625 -0.359375 1.765625 -0.75 Z M 1.796875 -6.140625 C 1.796875 -6.453125 1.5625 -6.671875 1.28125 -6.671875 C 0.96875 -6.671875 0.75 -6.40625 0.75 -6.140625 C 0.75 -5.875 0.96875 -5.609375 1.28125 -5.609375 C 1.5625 -5.609375 1.796875 -5.828125 1.796875 -6.140625 Z M 1.796875 -6.140625 "/>
+</symbol>
+<symbol overflow="visible" id="glyph0-19">
+<path style="stroke:none;" d="M 1.171875 -2.171875 C 1.171875 -3.796875 1.984375 -4.21875 2.515625 -4.21875 C 2.609375 -4.21875 3.234375 -4.203125 3.578125 -3.84375 C 3.171875 -3.8125 3.109375 -3.515625 3.109375 -3.390625 C 3.109375 -3.125 3.296875 -2.9375 3.5625 -2.9375 C 3.828125 -2.9375 4.03125 -3.09375 4.03125 -3.40625 C 4.03125 -4.078125 3.265625 -4.46875 2.5 -4.46875 C 1.25 -4.46875 0.34375 -3.390625 0.34375 -2.15625 C 0.34375 -0.875 1.328125 0.109375 2.484375 0.109375 C 3.8125 0.109375 4.140625 -1.09375 4.140625 -1.1875 C 4.140625 -1.28125 4.03125 -1.28125 4 -1.28125 C 3.921875 -1.28125 3.890625 -1.25 3.875 -1.1875 C 3.59375 -0.265625 2.9375 -0.140625 2.578125 -0.140625 C 2.046875 -0.140625 1.171875 -0.5625 1.171875 -2.171875 Z M 1.171875 -2.171875 "/>
+</symbol>
+<symbol overflow="visible" id="glyph0-20">
+<path style="stroke:none;" d="M 4.359375 -7.09375 C 4.421875 -7.234375 4.421875 -7.25 4.421875 -7.28125 C 4.421875 -7.390625 4.328125 -7.484375 4.21875 -7.484375 C 4.078125 -7.484375 4.03125 -7.375 4 -7.28125 L 0.609375 2.109375 C 0.5625 2.25 0.5625 2.265625 0.5625 2.296875 C 0.5625 2.40625 0.640625 2.5 0.75 2.5 C 0.890625 2.5 0.9375 2.390625 0.96875 2.296875 Z M 4.359375 -7.09375 "/>
+</symbol>
+<symbol overflow="visible" id="glyph0-21">
+<path style="stroke:none;" d="M 1.75 -4.296875 L 1.75 -5.453125 C 1.75 -6.328125 2.21875 -6.8125 2.65625 -6.8125 C 2.6875 -6.8125 2.84375 -6.8125 2.984375 -6.734375 C 2.875 -6.703125 2.6875 -6.5625 2.6875 -6.3125 C 2.6875 -6.09375 2.84375 -5.890625 3.125 -5.890625 C 3.40625 -5.890625 3.5625 -6.09375 3.5625 -6.328125 C 3.5625 -6.703125 3.1875 -7.03125 2.65625 -7.03125 C 1.96875 -7.03125 1.109375 -6.5 1.109375 -5.4375 L 1.109375 -4.296875 L 0.328125 -4.296875 L 0.328125 -3.984375 L 1.109375 -3.984375 L 1.109375 -0.75 C 1.109375 -0.3125 1 -0.3125 0.34375 -0.3125 L 0.34375 0 C 0.734375 -0.015625 1.203125 -0.03125 1.46875 -0.03125 C 1.875 -0.03125 2.34375 -0.03125 2.734375 0 L 2.734375 -0.3125 L 2.53125 -0.3125 C 1.796875 -0.3125 1.78125 -0.421875 1.78125 -0.78125 L 1.78125 -3.984375 L 2.90625 -3.984375 L 2.90625 -4.296875 Z M 1.75 -4.296875 "/>
+</symbol>
+<symbol overflow="visible" id="glyph0-22">
+<path style="stroke:none;" d="M 1.71875 -3.765625 L 1.71875 -6.921875 L 0.28125 -6.8125 L 0.28125 -6.5 C 0.984375 -6.5 1.0625 -6.4375 1.0625 -5.9375 L 1.0625 0 L 1.3125 0 C 1.3125 -0.015625 1.390625 -0.15625 1.671875 -0.625 C 1.8125 -0.390625 2.234375 0.109375 2.96875 0.109375 C 4.15625 0.109375 5.1875 -0.875 5.1875 -2.15625 C 5.1875 -3.421875 4.21875 -4.40625 3.078125 -4.40625 C 2.296875 -4.40625 1.875 -3.9375 1.71875 -3.765625 Z M 1.75 -1.140625 L 1.75 -3.1875 C 1.75 -3.375 1.75 -3.390625 1.859375 -3.546875 C 2.25 -4.109375 2.796875 -4.1875 3.03125 -4.1875 C 3.484375 -4.1875 3.84375 -3.921875 4.078125 -3.546875 C 4.34375 -3.140625 4.359375 -2.578125 4.359375 -2.15625 C 4.359375 -1.796875 4.34375 -1.203125 4.0625 -0.75 C 3.84375 -0.4375 3.46875 -0.109375 2.9375 -0.109375 C 2.484375 -0.109375 2.125 -0.34375 1.890625 -0.71875 C 1.75 -0.921875 1.75 -0.953125 1.75 -1.140625 Z M 1.75 -1.140625 "/>
+</symbol>
+</g>
+<clipPath id="clip1">
+ <path d="M 156 85 L 217 85 L 217 102.441406 L 156 102.441406 Z M 156 85 "/>
+</clipPath>
+<clipPath id="clip2">
+ <path d="M 142 71 L 217.382812 71 L 217.382812 102.441406 L 142 102.441406 Z M 142 71 "/>
+</clipPath>
+</defs>
+<g id="surface1">
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(2.74353%,21.174622%,25.881958%);fill-opacity:1;" d="M 143.878906 0.398438 L 115.792969 0.398438 C 113.589844 0.398438 111.808594 2.183594 111.808594 4.382812 L 111.808594 9.179688 C 111.808594 11.382812 113.589844 13.167969 115.792969 13.167969 L 143.878906 13.167969 C 146.082031 13.167969 147.867188 11.382812 147.867188 9.179688 L 147.867188 4.382812 C 147.867188 2.183594 146.082031 0.398438 143.878906 0.398438 Z M 143.878906 0.398438 "/>
+<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(34.510803%,43.136597%,45.881653%);stroke-opacity:1;stroke-miterlimit:10;" d="M 127.051 27.846 L 99.051 27.846 C 97.140844 27.947563 95.359594 26.162406 95.051 23.846 L 95.051 18.846 C 95.359594 16.963188 97.140844 15.178031 99.051 14.846 L 127.051 14.846 C 129.633031 15.178031 131.418187 16.963188 131.051 18.846 L 131.051 23.846 C 131.418187 26.162406 129.633031 27.947563 127.429906 27.947563 Z M 127.051 27.846 " transform="matrix(1,0,0,-1,16.449,28.346)"/>
+<g style="fill:rgb(82.743835%,21.174622%,50.979614%);fill-opacity:1;">
+ <use xlink:href="#glyph0-1" x="115.126" y="9.847"/>
+ <use xlink:href="#glyph0-2" x="123.427835" y="9.847"/>
+ <use xlink:href="#glyph0-3" x="128.409135" y="9.847"/>
+ <use xlink:href="#glyph0-4" x="132.338384" y="9.847"/>
+ <use xlink:href="#glyph0-5" x="136.212839" y="9.847"/>
+ <use xlink:href="#glyph0-6" x="140.640219" y="9.847"/>
+</g>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(2.74353%,21.174622%,25.881958%);fill-opacity:1;" d="M 28.515625 28.746094 L 4.382812 28.746094 C 2.183594 28.746094 0.398438 30.527344 0.398438 32.730469 L 0.398438 38.320312 C 0.398438 40.519531 2.183594 42.304688 4.382812 42.304688 L 28.515625 42.304688 C 30.714844 42.304688 32.5 40.519531 32.5 38.320312 L 32.5 32.730469 C 32.5 30.527344 30.714844 28.746094 28.515625 28.746094 Z M 28.515625 28.746094 "/>
+<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(34.510803%,43.136597%,45.881653%);stroke-opacity:1;stroke-miterlimit:10;" d="M 12.051 -0.154 L -11.949 -0.154 C -14.265406 -0.400094 -16.050562 -2.181344 -15.949 -4.154 L -15.949 -10.154 C -16.050562 -12.173531 -14.265406 -13.958687 -11.949 -14.154 L 12.051 -14.154 C 14.265844 -13.958687 16.051 -12.173531 16.051 -10.154 L 16.051 -4.154 C 16.051 -2.181344 14.265844 -0.400094 12.066625 -0.400094 Z M 12.051 -0.154 " transform="matrix(1,0,0,-1,16.449,28.346)"/>
+<g style="fill:rgb(57.647705%,63.134766%,63.134766%);fill-opacity:1;">
+ <use xlink:href="#glyph0-7" x="3.719" y="38.984"/>
+ <use xlink:href="#glyph0-8" x="8.7003" y="38.984"/>
+ <use xlink:href="#glyph0-9" x="13.6816" y="38.984"/>
+ <use xlink:href="#glyph0-10" x="19.216821" y="38.984"/>
+ <use xlink:href="#glyph0-7" x="24.198121" y="38.984"/>
+</g>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(2.74353%,21.174622%,25.881958%);fill-opacity:1;" d="M 84.929688 28.746094 L 61.355469 28.746094 C 59.152344 28.746094 57.367188 30.527344 57.367188 32.730469 L 57.367188 37.820312 C 57.367188 40.023438 59.152344 41.804688 61.355469 41.804688 L 84.929688 41.804688 C 87.132812 41.804688 88.917969 40.023438 88.917969 37.820312 L 88.917969 32.730469 C 88.917969 30.527344 87.132812 28.746094 84.929688 28.746094 Z M 84.929688 28.746094 "/>
+<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(34.510803%,43.136597%,45.881653%);stroke-opacity:1;stroke-miterlimit:10;" d="M 68.051 -0.154 L 45.051 -0.154 C 42.703344 -0.400094 40.918188 -2.181344 41.051 -4.154 L 41.051 -9.154 C 40.918188 -11.677437 42.703344 -13.458687 45.051 -13.154 L 68.051 -13.154 C 70.683813 -13.458687 72.468969 -11.677437 72.051 -9.154 L 72.051 -4.154 C 72.468969 -2.181344 70.683813 -0.400094 68.480688 -0.400094 Z M 68.051 -0.154 " transform="matrix(1,0,0,-1,16.449,28.346)"/>
+<g style="fill:rgb(57.647705%,63.134766%,63.134766%);fill-opacity:1;">
+ <use xlink:href="#glyph0-11" x="60.689" y="38.486"/>
+ <use xlink:href="#glyph0-12" x="65.6703" y="38.486"/>
+ <use xlink:href="#glyph0-13" x="70.6516" y="38.486"/>
+ <use xlink:href="#glyph0-14" x="75.6329" y="38.486"/>
+ <use xlink:href="#glyph0-2" x="80.6142" y="38.486"/>
+</g>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(2.74353%,21.174622%,25.881958%);fill-opacity:1;" d="M 141.902344 28.746094 L 117.769531 28.746094 C 115.570312 28.746094 113.785156 30.527344 113.785156 32.730469 L 113.785156 38.320312 C 113.785156 40.519531 115.570312 42.304688 117.769531 42.304688 L 141.902344 42.304688 C 144.101562 42.304688 145.886719 40.519531 145.886719 38.320312 L 145.886719 32.730469 C 145.886719 30.527344 144.101562 28.746094 141.902344 28.746094 Z M 141.902344 28.746094 "/>
+<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(34.510803%,43.136597%,45.881653%);stroke-opacity:1;stroke-miterlimit:10;" d="M 125.051 -0.154 L 101.051 -0.154 C 99.121313 -0.400094 97.336156 -2.181344 97.051 -4.154 L 97.051 -10.154 C 97.336156 -12.173531 99.121313 -13.958687 101.051 -14.154 L 125.051 -14.154 C 127.652563 -13.958687 129.437719 -12.173531 129.051 -10.154 L 129.051 -4.154 C 129.437719 -2.181344 127.652563 -0.400094 125.453344 -0.400094 Z M 125.051 -0.154 " transform="matrix(1,0,0,-1,16.449,28.346)"/>
+<g style="fill:rgb(57.647705%,63.134766%,63.134766%);fill-opacity:1;">
+ <use xlink:href="#glyph0-15" x="117.105" y="38.984"/>
+ <use xlink:href="#glyph0-5" x="122.0863" y="38.984"/>
+ <use xlink:href="#glyph0-12" x="126.513679" y="38.984"/>
+ <use xlink:href="#glyph0-9" x="131.494979" y="38.984"/>
+ <use xlink:href="#glyph0-9" x="137.0302" y="38.984"/>
+</g>
+<g clip-path="url(#clip1)" clip-rule="nonzero">
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(2.74353%,21.174622%,25.881958%);fill-opacity:1;" d="M 213 85.4375 L 160.058594 85.4375 C 157.859375 85.4375 156.074219 87.222656 156.074219 89.421875 L 156.074219 98.058594 C 156.074219 100.257812 157.859375 102.042969 160.058594 102.042969 L 213 102.042969 C 215.199219 102.042969 216.984375 100.257812 216.984375 98.058594 L 216.984375 89.421875 C 216.984375 87.222656 215.199219 85.4375 213 85.4375 Z M 213 85.4375 "/>
+</g>
+<g clip-path="url(#clip2)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(34.510803%,43.136597%,45.881653%);stroke-opacity:1;stroke-miterlimit:10;" d="M 197.051 -57.154 L 144.051 -57.154 C 141.410375 -57.0915 139.625219 -58.876656 140.051 -61.154 L 140.051 -70.154 C 139.625219 -71.911812 141.410375 -73.696969 144.051 -74.154 L 197.051 -74.154 C 198.750219 -73.696969 200.535375 -71.911812 200.051 -70.154 L 200.051 -61.154 C 200.535375 -58.876656 198.750219 -57.0915 196.551 -57.0915 Z M 197.051 -57.154 " transform="matrix(1,0,0,-1,16.449,28.346)"/>
+</g>
+<g style="fill:rgb(82.743835%,21.174622%,50.979614%);fill-opacity:1;">
+ <use xlink:href="#glyph0-4" x="159.393" y="96.23"/>
+ <use xlink:href="#glyph0-16" x="163.267455" y="96.23"/>
+ <use xlink:href="#glyph0-17" x="168.248755" y="96.23"/>
+ <use xlink:href="#glyph0-18" x="173.783976" y="96.23"/>
+ <use xlink:href="#glyph0-19" x="176.551586" y="96.23"/>
+ <use xlink:href="#glyph0-20" x="180.978965" y="96.23"/>
+ <use xlink:href="#glyph0-21" x="185.960265" y="96.23"/>
+ <use xlink:href="#glyph0-16" x="189.004836" y="96.23"/>
+</g>
+<g style="fill:rgb(82.743835%,21.174622%,50.979614%);fill-opacity:1;">
+ <use xlink:href="#glyph0-16" x="194.265089" y="96.23"/>
+ <use xlink:href="#glyph0-22" x="199.246389" y="96.23"/>
+ <use xlink:href="#glyph0-2" x="204.781609" y="96.23"/>
+ <use xlink:href="#glyph0-6" x="209.762909" y="96.23"/>
+</g>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(2.74353%,21.174622%,25.881958%);fill-opacity:1;" d="M 198.320312 57.089844 L 174.742188 57.089844 C 172.539062 57.089844 170.753906 58.875 170.753906 61.078125 L 170.753906 66.664062 C 170.753906 68.867188 172.539062 70.652344 174.742188 70.652344 L 198.320312 70.652344 C 200.519531 70.652344 202.304688 68.867188 202.304688 66.664062 L 202.304688 61.078125 C 202.304688 58.875 200.519531 57.089844 198.320312 57.089844 Z M 198.320312 57.089844 "/>
+<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(34.510803%,43.136597%,45.881653%);stroke-opacity:1;stroke-miterlimit:10;" d="M 182.051 -29.154 L 158.051 -29.154 C 156.090062 -28.743844 154.304906 -30.529 154.051 -33.154 L 154.051 -38.154 C 154.304906 -40.521187 156.090062 -42.306344 158.051 -42.154 L 182.051 -42.154 C 184.070531 -42.306344 185.855687 -40.521187 186.051 -38.154 L 186.051 -33.154 C 185.855687 -30.529 184.070531 -28.743844 181.871312 -28.743844 Z M 182.051 -29.154 " transform="matrix(1,0,0,-1,16.449,28.346)"/>
+<g style="fill:rgb(57.647705%,63.134766%,63.134766%);fill-opacity:1;">
+ <use xlink:href="#glyph0-7" x="174.074" y="67.33"/>
+ <use xlink:href="#glyph0-9" x="179.0553" y="67.33"/>
+ <use xlink:href="#glyph0-5" x="184.590521" y="67.33"/>
+ <use xlink:href="#glyph0-10" x="189.0179" y="67.33"/>
+ <use xlink:href="#glyph0-12" x="193.9992" y="67.33"/>
+</g>
+<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(34.510803%,43.136597%,45.881653%);stroke-opacity:1;stroke-miterlimit:10;" d="M 113.051 14.846 L 113.051 0.846 " transform="matrix(1,0,0,-1,16.449,28.346)"/>
+<path style="fill:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(34.510803%,43.136597%,45.881653%);stroke-opacity:1;stroke-miterlimit:10;" d="M -1.552713 2.073916 C -1.423806 1.296572 -0.00193125 0.128604 0.388694 -0.0003025 C -0.00193125 -0.129209 -1.423806 -1.293271 -1.552713 -2.070615 " transform="matrix(0,1,1,0,129.83624,27.63865)"/>
+<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(34.510803%,43.136597%,45.881653%);stroke-opacity:1;stroke-miterlimit:10;" d="M 170.051 -57.154 L 170.051 -43.154 " transform="matrix(1,0,0,-1,16.449,28.346)"/>
+<path style="fill:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(34.510803%,43.136597%,45.881653%);stroke-opacity:1;stroke-miterlimit:10;" d="M -1.55561 2.072829 C -1.422798 1.295485 -0.0009225 0.131422 0.389702 -0.00139 C -0.0009225 -0.130296 -1.422798 -1.294359 -1.55561 -2.071703 " transform="matrix(0,-1,-1,0,186.52986,71.75689)"/>
+<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(34.510803%,43.136597%,45.881653%);stroke-opacity:1;stroke-miterlimit:10;" d="M 16.051 -7.154 L 35.051 -7.154 " transform="matrix(1,0,0,-1,16.449,28.346)"/>
+<path style="fill:none;stroke-width:0.995581;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(34.510803%,43.136597%,45.881653%);stroke-opacity:1;stroke-miterlimit:10;" d="M 5.019843 0.00015644 C 5.022038 1.386866 3.89807 2.508998 2.511361 2.511194 C 1.124634 2.509483 -0.00140491 1.385531 0.000305992 -0.0011951 C -0.00188928 -1.387904 1.12208 -2.510037 2.508789 -2.512232 C 3.895515 -2.510522 5.021554 -1.38657 5.019843 0.00015644 Z M 5.019843 0.00015644 " transform="matrix(1,-0.0044,-0.0044,-1,51.55047,35.3699)"/>
+<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(34.510803%,43.136597%,45.881653%);stroke-opacity:1;stroke-miterlimit:10;" d="M 73.051 -7.154 L 91.051 -7.154 " transform="matrix(1,0,0,-1,16.449,28.346)"/>
+<path style="fill:none;stroke-width:0.995581;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(34.510803%,43.136597%,45.881653%);stroke-opacity:1;stroke-miterlimit:10;" d="M 5.020915 0.00139328 C 5.022626 1.38812 3.896587 2.512071 2.509878 2.509876 C 1.123152 2.511587 -0.00080016 1.385548 0.00139511 -0.00116136 C -0.000315794 -1.387888 1.125723 -2.511839 2.512432 -2.509644 C 3.895253 -2.511372 5.019204 -1.385333 5.020915 0.00139328 Z M 5.020915 0.00139328 " transform="matrix(1,0.0044,0.0044,-1,107.96736,35.42852)"/>
+<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(34.510803%,43.136597%,45.881653%);stroke-opacity:1;stroke-miterlimit:10;" d="M 129.836156 -7.177437 C 144.33225 -7.177437 139.414281 -35.525094 148.4885 -35.525094 " transform="matrix(1,0,0,-1,16.449,28.346)"/>
+<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(34.510803%,43.136597%,45.881653%);stroke-opacity:1;stroke-miterlimit:10;" d="M 5.019321 0.00006625 C 5.019321 1.386785 3.898227 2.511785 2.511509 2.511785 C 1.12479 2.511785 -0.00021 1.386785 -0.00021 0.00006625 C -0.00021 -1.386652 1.12479 -2.511652 2.511509 -2.511652 C 3.898227 -2.511652 5.019321 -1.386652 5.019321 0.00006625 Z M 5.019321 0.00006625 " transform="matrix(1,0,0,-1,164.93771,63.87116)"/>
+</g>
+</svg>
diff --git a/blag/static/media/git-repo-state-2.svg b/blag/static/media/git-repo-state-2.svg
new file mode 100644
index 0000000..6eba189
--- /dev/null
+++ b/blag/static/media/git-repo-state-2.svg
@@ -0,0 +1,221 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="324.942pt" height="130.786pt" viewBox="0 0 324.942 130.786" version="1.1">
+<defs>
+<g>
+<symbol overflow="visible" id="glyph0-0">
+<path style="stroke:none;" d=""/>
+</symbol>
+<symbol overflow="visible" id="glyph0-1">
+<path style="stroke:none;" d="M 1.09375 -3.421875 L 1.09375 -0.75 C 1.09375 -0.3125 0.984375 -0.3125 0.3125 -0.3125 L 0.3125 0 C 0.671875 -0.015625 1.171875 -0.03125 1.453125 -0.03125 C 1.703125 -0.03125 2.21875 -0.015625 2.5625 0 L 2.5625 -0.3125 C 1.890625 -0.3125 1.78125 -0.3125 1.78125 -0.75 L 1.78125 -2.59375 C 1.78125 -3.625 2.5 -4.1875 3.125 -4.1875 C 3.765625 -4.1875 3.875 -3.65625 3.875 -3.078125 L 3.875 -0.75 C 3.875 -0.3125 3.765625 -0.3125 3.09375 -0.3125 L 3.09375 0 C 3.4375 -0.015625 3.953125 -0.03125 4.21875 -0.03125 C 4.46875 -0.03125 5 -0.015625 5.328125 0 L 5.328125 -0.3125 C 4.671875 -0.3125 4.5625 -0.3125 4.5625 -0.75 L 4.5625 -2.59375 C 4.5625 -3.625 5.265625 -4.1875 5.90625 -4.1875 C 6.53125 -4.1875 6.640625 -3.65625 6.640625 -3.078125 L 6.640625 -0.75 C 6.640625 -0.3125 6.53125 -0.3125 5.859375 -0.3125 L 5.859375 0 C 6.203125 -0.015625 6.71875 -0.03125 6.984375 -0.03125 C 7.25 -0.03125 7.765625 -0.015625 8.109375 0 L 8.109375 -0.3125 C 7.59375 -0.3125 7.34375 -0.3125 7.328125 -0.609375 L 7.328125 -2.515625 C 7.328125 -3.375 7.328125 -3.671875 7.015625 -4.03125 C 6.875 -4.203125 6.546875 -4.40625 5.96875 -4.40625 C 5.140625 -4.40625 4.6875 -3.8125 4.53125 -3.421875 C 4.390625 -4.296875 3.65625 -4.40625 3.203125 -4.40625 C 2.46875 -4.40625 2 -3.984375 1.71875 -3.359375 L 1.71875 -4.40625 L 0.3125 -4.296875 L 0.3125 -3.984375 C 1.015625 -3.984375 1.09375 -3.921875 1.09375 -3.421875 Z M 1.09375 -3.421875 "/>
+</symbol>
+<symbol overflow="visible" id="glyph0-2">
+<path style="stroke:none;" d="M 3.3125 -0.75 C 3.359375 -0.359375 3.625 0.0625 4.09375 0.0625 C 4.3125 0.0625 4.921875 -0.078125 4.921875 -0.890625 L 4.921875 -1.453125 L 4.671875 -1.453125 L 4.671875 -0.890625 C 4.671875 -0.3125 4.421875 -0.25 4.3125 -0.25 C 3.984375 -0.25 3.9375 -0.703125 3.9375 -0.75 L 3.9375 -2.734375 C 3.9375 -3.15625 3.9375 -3.546875 3.578125 -3.921875 C 3.1875 -4.3125 2.6875 -4.46875 2.21875 -4.46875 C 1.390625 -4.46875 0.703125 -4 0.703125 -3.34375 C 0.703125 -3.046875 0.90625 -2.875 1.171875 -2.875 C 1.453125 -2.875 1.625 -3.078125 1.625 -3.328125 C 1.625 -3.453125 1.578125 -3.78125 1.109375 -3.78125 C 1.390625 -4.140625 1.875 -4.25 2.1875 -4.25 C 2.6875 -4.25 3.25 -3.859375 3.25 -2.96875 L 3.25 -2.609375 C 2.734375 -2.578125 2.046875 -2.546875 1.421875 -2.25 C 0.671875 -1.90625 0.421875 -1.390625 0.421875 -0.953125 C 0.421875 -0.140625 1.390625 0.109375 2.015625 0.109375 C 2.671875 0.109375 3.125 -0.296875 3.3125 -0.75 Z M 3.25 -2.390625 L 3.25 -1.390625 C 3.25 -0.453125 2.53125 -0.109375 2.078125 -0.109375 C 1.59375 -0.109375 1.1875 -0.453125 1.1875 -0.953125 C 1.1875 -1.5 1.609375 -2.328125 3.25 -2.390625 Z M 3.25 -2.390625 "/>
+</symbol>
+<symbol overflow="visible" id="glyph0-3">
+<path style="stroke:none;" d="M 2.078125 -1.9375 C 2.296875 -1.890625 3.109375 -1.734375 3.109375 -1.015625 C 3.109375 -0.515625 2.765625 -0.109375 1.984375 -0.109375 C 1.140625 -0.109375 0.78125 -0.671875 0.59375 -1.53125 C 0.5625 -1.65625 0.5625 -1.6875 0.453125 -1.6875 C 0.328125 -1.6875 0.328125 -1.625 0.328125 -1.453125 L 0.328125 -0.125 C 0.328125 0.046875 0.328125 0.109375 0.4375 0.109375 C 0.484375 0.109375 0.5 0.09375 0.6875 -0.09375 C 0.703125 -0.109375 0.703125 -0.125 0.890625 -0.3125 C 1.328125 0.09375 1.78125 0.109375 1.984375 0.109375 C 3.125 0.109375 3.59375 -0.5625 3.59375 -1.28125 C 3.59375 -1.796875 3.296875 -2.109375 3.171875 -2.21875 C 2.84375 -2.546875 2.453125 -2.625 2.03125 -2.703125 C 1.46875 -2.8125 0.8125 -2.9375 0.8125 -3.515625 C 0.8125 -3.875 1.0625 -4.28125 1.921875 -4.28125 C 3.015625 -4.28125 3.078125 -3.375 3.09375 -3.078125 C 3.09375 -2.984375 3.1875 -2.984375 3.203125 -2.984375 C 3.34375 -2.984375 3.34375 -3.03125 3.34375 -3.21875 L 3.34375 -4.234375 C 3.34375 -4.390625 3.34375 -4.46875 3.234375 -4.46875 C 3.1875 -4.46875 3.15625 -4.46875 3.03125 -4.34375 C 3 -4.3125 2.90625 -4.21875 2.859375 -4.1875 C 2.484375 -4.46875 2.078125 -4.46875 1.921875 -4.46875 C 0.703125 -4.46875 0.328125 -3.796875 0.328125 -3.234375 C 0.328125 -2.890625 0.484375 -2.609375 0.75 -2.390625 C 1.078125 -2.140625 1.359375 -2.078125 2.078125 -1.9375 Z M 2.078125 -1.9375 "/>
+</symbol>
+<symbol overflow="visible" id="glyph0-4">
+<path style="stroke:none;" d="M 1.71875 -3.984375 L 3.15625 -3.984375 L 3.15625 -4.296875 L 1.71875 -4.296875 L 1.71875 -6.125 L 1.46875 -6.125 C 1.46875 -5.3125 1.171875 -4.25 0.1875 -4.203125 L 0.1875 -3.984375 L 1.03125 -3.984375 L 1.03125 -1.234375 C 1.03125 -0.015625 1.96875 0.109375 2.328125 0.109375 C 3.03125 0.109375 3.3125 -0.59375 3.3125 -1.234375 L 3.3125 -1.796875 L 3.0625 -1.796875 L 3.0625 -1.25 C 3.0625 -0.515625 2.765625 -0.140625 2.390625 -0.140625 C 1.71875 -0.140625 1.71875 -1.046875 1.71875 -1.21875 Z M 1.71875 -3.984375 "/>
+</symbol>
+<symbol overflow="visible" id="glyph0-5">
+<path style="stroke:none;" d="M 1.109375 -2.515625 C 1.171875 -4 2.015625 -4.25 2.359375 -4.25 C 3.375 -4.25 3.484375 -2.90625 3.484375 -2.515625 Z M 1.109375 -2.296875 L 3.890625 -2.296875 C 4.109375 -2.296875 4.140625 -2.296875 4.140625 -2.515625 C 4.140625 -3.5 3.59375 -4.46875 2.359375 -4.46875 C 1.203125 -4.46875 0.28125 -3.4375 0.28125 -2.1875 C 0.28125 -0.859375 1.328125 0.109375 2.46875 0.109375 C 3.6875 0.109375 4.140625 -1 4.140625 -1.1875 C 4.140625 -1.28125 4.0625 -1.3125 4 -1.3125 C 3.921875 -1.3125 3.890625 -1.25 3.875 -1.171875 C 3.53125 -0.140625 2.625 -0.140625 2.53125 -0.140625 C 2.03125 -0.140625 1.640625 -0.4375 1.40625 -0.8125 C 1.109375 -1.28125 1.109375 -1.9375 1.109375 -2.296875 Z M 1.109375 -2.296875 "/>
+</symbol>
+<symbol overflow="visible" id="glyph0-6">
+<path style="stroke:none;" d="M 1.671875 -3.3125 L 1.671875 -4.40625 L 0.28125 -4.296875 L 0.28125 -3.984375 C 0.984375 -3.984375 1.0625 -3.921875 1.0625 -3.421875 L 1.0625 -0.75 C 1.0625 -0.3125 0.953125 -0.3125 0.28125 -0.3125 L 0.28125 0 C 0.671875 -0.015625 1.140625 -0.03125 1.421875 -0.03125 C 1.8125 -0.03125 2.28125 -0.03125 2.6875 0 L 2.6875 -0.3125 L 2.46875 -0.3125 C 1.734375 -0.3125 1.71875 -0.421875 1.71875 -0.78125 L 1.71875 -2.3125 C 1.71875 -3.296875 2.140625 -4.1875 2.890625 -4.1875 C 2.953125 -4.1875 2.984375 -4.1875 3 -4.171875 C 2.96875 -4.171875 2.765625 -4.046875 2.765625 -3.78125 C 2.765625 -3.515625 2.984375 -3.359375 3.203125 -3.359375 C 3.375 -3.359375 3.625 -3.484375 3.625 -3.796875 C 3.625 -4.109375 3.3125 -4.40625 2.890625 -4.40625 C 2.15625 -4.40625 1.796875 -3.734375 1.671875 -3.3125 Z M 1.671875 -3.3125 "/>
+</symbol>
+<symbol overflow="visible" id="glyph0-7">
+<path style="stroke:none;" d="M 4.6875 -2.140625 C 4.6875 -3.40625 3.703125 -4.46875 2.5 -4.46875 C 1.25 -4.46875 0.28125 -3.375 0.28125 -2.140625 C 0.28125 -0.84375 1.3125 0.109375 2.484375 0.109375 C 3.6875 0.109375 4.6875 -0.875 4.6875 -2.140625 Z M 2.5 -0.140625 C 2.0625 -0.140625 1.625 -0.34375 1.359375 -0.8125 C 1.109375 -1.25 1.109375 -1.859375 1.109375 -2.21875 C 1.109375 -2.609375 1.109375 -3.140625 1.34375 -3.578125 C 1.609375 -4.03125 2.078125 -4.25 2.484375 -4.25 C 2.921875 -4.25 3.34375 -4.03125 3.609375 -3.59375 C 3.875 -3.171875 3.875 -2.59375 3.875 -2.21875 C 3.875 -1.859375 3.875 -1.3125 3.65625 -0.875 C 3.421875 -0.421875 2.984375 -0.140625 2.5 -0.140625 Z M 2.5 -0.140625 "/>
+</symbol>
+<symbol overflow="visible" id="glyph0-8">
+<path style="stroke:none;" d="M 1.71875 -3.75 L 1.71875 -4.40625 L 0.28125 -4.296875 L 0.28125 -3.984375 C 0.984375 -3.984375 1.0625 -3.921875 1.0625 -3.484375 L 1.0625 1.171875 C 1.0625 1.625 0.953125 1.625 0.28125 1.625 L 0.28125 1.9375 C 0.625 1.921875 1.140625 1.90625 1.390625 1.90625 C 1.671875 1.90625 2.171875 1.921875 2.515625 1.9375 L 2.515625 1.625 C 1.859375 1.625 1.75 1.625 1.75 1.171875 L 1.75 -0.59375 C 1.796875 -0.421875 2.21875 0.109375 2.96875 0.109375 C 4.15625 0.109375 5.1875 -0.875 5.1875 -2.15625 C 5.1875 -3.421875 4.234375 -4.40625 3.109375 -4.40625 C 2.328125 -4.40625 1.90625 -3.96875 1.71875 -3.75 Z M 1.75 -1.140625 L 1.75 -3.359375 C 2.03125 -3.875 2.515625 -4.15625 3.03125 -4.15625 C 3.765625 -4.15625 4.359375 -3.28125 4.359375 -2.15625 C 4.359375 -0.953125 3.671875 -0.109375 2.9375 -0.109375 C 2.53125 -0.109375 2.15625 -0.3125 1.890625 -0.71875 C 1.75 -0.921875 1.75 -0.9375 1.75 -1.140625 Z M 1.75 -1.140625 "/>
+</symbol>
+<symbol overflow="visible" id="glyph0-9">
+<path style="stroke:none;" d="M 1.765625 -4.40625 L 0.375 -4.296875 L 0.375 -3.984375 C 1.015625 -3.984375 1.109375 -3.921875 1.109375 -3.4375 L 1.109375 -0.75 C 1.109375 -0.3125 1 -0.3125 0.328125 -0.3125 L 0.328125 0 C 0.640625 -0.015625 1.1875 -0.03125 1.421875 -0.03125 C 1.78125 -0.03125 2.125 -0.015625 2.46875 0 L 2.46875 -0.3125 C 1.796875 -0.3125 1.765625 -0.359375 1.765625 -0.75 Z M 1.796875 -6.140625 C 1.796875 -6.453125 1.5625 -6.671875 1.28125 -6.671875 C 0.96875 -6.671875 0.75 -6.40625 0.75 -6.140625 C 0.75 -5.875 0.96875 -5.609375 1.28125 -5.609375 C 1.5625 -5.609375 1.796875 -5.828125 1.796875 -6.140625 Z M 1.796875 -6.140625 "/>
+</symbol>
+<symbol overflow="visible" id="glyph0-10">
+<path style="stroke:none;" d="M 1.171875 -2.171875 C 1.171875 -3.796875 1.984375 -4.21875 2.515625 -4.21875 C 2.609375 -4.21875 3.234375 -4.203125 3.578125 -3.84375 C 3.171875 -3.8125 3.109375 -3.515625 3.109375 -3.390625 C 3.109375 -3.125 3.296875 -2.9375 3.5625 -2.9375 C 3.828125 -2.9375 4.03125 -3.09375 4.03125 -3.40625 C 4.03125 -4.078125 3.265625 -4.46875 2.5 -4.46875 C 1.25 -4.46875 0.34375 -3.390625 0.34375 -2.15625 C 0.34375 -0.875 1.328125 0.109375 2.484375 0.109375 C 3.8125 0.109375 4.140625 -1.09375 4.140625 -1.1875 C 4.140625 -1.28125 4.03125 -1.28125 4 -1.28125 C 3.921875 -1.28125 3.890625 -1.25 3.875 -1.1875 C 3.59375 -0.265625 2.9375 -0.140625 2.578125 -0.140625 C 2.046875 -0.140625 1.171875 -0.5625 1.171875 -2.171875 Z M 1.171875 -2.171875 "/>
+</symbol>
+<symbol overflow="visible" id="glyph0-11">
+<path style="stroke:none;" d="M 4.359375 -7.09375 C 4.421875 -7.234375 4.421875 -7.25 4.421875 -7.28125 C 4.421875 -7.390625 4.328125 -7.484375 4.21875 -7.484375 C 4.078125 -7.484375 4.03125 -7.375 4 -7.28125 L 0.609375 2.109375 C 0.5625 2.25 0.5625 2.265625 0.5625 2.296875 C 0.5625 2.40625 0.640625 2.5 0.75 2.5 C 0.890625 2.5 0.9375 2.390625 0.96875 2.296875 Z M 4.359375 -7.09375 "/>
+</symbol>
+<symbol overflow="visible" id="glyph0-12">
+<path style="stroke:none;" d="M 1.75 -4.296875 L 1.75 -5.453125 C 1.75 -6.328125 2.21875 -6.8125 2.65625 -6.8125 C 2.6875 -6.8125 2.84375 -6.8125 2.984375 -6.734375 C 2.875 -6.703125 2.6875 -6.5625 2.6875 -6.3125 C 2.6875 -6.09375 2.84375 -5.890625 3.125 -5.890625 C 3.40625 -5.890625 3.5625 -6.09375 3.5625 -6.328125 C 3.5625 -6.703125 3.1875 -7.03125 2.65625 -7.03125 C 1.96875 -7.03125 1.109375 -6.5 1.109375 -5.4375 L 1.109375 -4.296875 L 0.328125 -4.296875 L 0.328125 -3.984375 L 1.109375 -3.984375 L 1.109375 -0.75 C 1.109375 -0.3125 1 -0.3125 0.34375 -0.3125 L 0.34375 0 C 0.734375 -0.015625 1.203125 -0.03125 1.46875 -0.03125 C 1.875 -0.03125 2.34375 -0.03125 2.734375 0 L 2.734375 -0.3125 L 2.53125 -0.3125 C 1.796875 -0.3125 1.78125 -0.421875 1.78125 -0.78125 L 1.78125 -3.984375 L 2.90625 -3.984375 L 2.90625 -4.296875 Z M 1.75 -4.296875 "/>
+</symbol>
+<symbol overflow="visible" id="glyph0-13">
+<path style="stroke:none;" d="M 1.71875 -3.765625 L 1.71875 -6.921875 L 0.28125 -6.8125 L 0.28125 -6.5 C 0.984375 -6.5 1.0625 -6.4375 1.0625 -5.9375 L 1.0625 0 L 1.3125 0 C 1.3125 -0.015625 1.390625 -0.15625 1.671875 -0.625 C 1.8125 -0.390625 2.234375 0.109375 2.96875 0.109375 C 4.15625 0.109375 5.1875 -0.875 5.1875 -2.15625 C 5.1875 -3.421875 4.21875 -4.40625 3.078125 -4.40625 C 2.296875 -4.40625 1.875 -3.9375 1.71875 -3.765625 Z M 1.75 -1.140625 L 1.75 -3.1875 C 1.75 -3.375 1.75 -3.390625 1.859375 -3.546875 C 2.25 -4.109375 2.796875 -4.1875 3.03125 -4.1875 C 3.484375 -4.1875 3.84375 -3.921875 4.078125 -3.546875 C 4.34375 -3.140625 4.359375 -2.578125 4.359375 -2.15625 C 4.359375 -1.796875 4.34375 -1.203125 4.0625 -0.75 C 3.84375 -0.4375 3.46875 -0.109375 2.9375 -0.109375 C 2.484375 -0.109375 2.125 -0.34375 1.890625 -0.71875 C 1.75 -0.921875 1.75 -0.953125 1.75 -1.140625 Z M 1.75 -1.140625 "/>
+</symbol>
+<symbol overflow="visible" id="glyph0-14">
+<path style="stroke:none;" d="M 3.78125 -0.546875 L 3.78125 0.109375 L 5.25 0 L 5.25 -0.3125 C 4.5625 -0.3125 4.46875 -0.375 4.46875 -0.875 L 4.46875 -6.921875 L 3.046875 -6.8125 L 3.046875 -6.5 C 3.734375 -6.5 3.8125 -6.4375 3.8125 -5.9375 L 3.8125 -3.78125 C 3.53125 -4.140625 3.09375 -4.40625 2.5625 -4.40625 C 1.390625 -4.40625 0.34375 -3.421875 0.34375 -2.140625 C 0.34375 -0.875 1.3125 0.109375 2.453125 0.109375 C 3.09375 0.109375 3.53125 -0.234375 3.78125 -0.546875 Z M 3.78125 -3.21875 L 3.78125 -1.171875 C 3.78125 -1 3.78125 -0.984375 3.671875 -0.8125 C 3.375 -0.328125 2.9375 -0.109375 2.5 -0.109375 C 2.046875 -0.109375 1.6875 -0.375 1.453125 -0.75 C 1.203125 -1.15625 1.171875 -1.71875 1.171875 -2.140625 C 1.171875 -2.5 1.1875 -3.09375 1.46875 -3.546875 C 1.6875 -3.859375 2.0625 -4.1875 2.609375 -4.1875 C 2.953125 -4.1875 3.375 -4.03125 3.671875 -3.59375 C 3.78125 -3.421875 3.78125 -3.40625 3.78125 -3.21875 Z M 3.78125 -3.21875 "/>
+</symbol>
+<symbol overflow="visible" id="glyph0-15">
+<path style="stroke:none;" d="M 2.890625 -3.515625 C 3.703125 -3.78125 4.28125 -4.46875 4.28125 -5.265625 C 4.28125 -6.078125 3.40625 -6.640625 2.453125 -6.640625 C 1.453125 -6.640625 0.6875 -6.046875 0.6875 -5.28125 C 0.6875 -4.953125 0.90625 -4.765625 1.203125 -4.765625 C 1.5 -4.765625 1.703125 -4.984375 1.703125 -5.28125 C 1.703125 -5.765625 1.234375 -5.765625 1.09375 -5.765625 C 1.390625 -6.265625 2.046875 -6.390625 2.40625 -6.390625 C 2.828125 -6.390625 3.375 -6.171875 3.375 -5.28125 C 3.375 -5.15625 3.34375 -4.578125 3.09375 -4.140625 C 2.796875 -3.65625 2.453125 -3.625 2.203125 -3.625 C 2.125 -3.609375 1.890625 -3.59375 1.8125 -3.59375 C 1.734375 -3.578125 1.671875 -3.5625 1.671875 -3.46875 C 1.671875 -3.359375 1.734375 -3.359375 1.90625 -3.359375 L 2.34375 -3.359375 C 3.15625 -3.359375 3.53125 -2.6875 3.53125 -1.703125 C 3.53125 -0.34375 2.84375 -0.0625 2.40625 -0.0625 C 1.96875 -0.0625 1.21875 -0.234375 0.875 -0.8125 C 1.21875 -0.765625 1.53125 -0.984375 1.53125 -1.359375 C 1.53125 -1.71875 1.265625 -1.921875 0.984375 -1.921875 C 0.734375 -1.921875 0.421875 -1.78125 0.421875 -1.34375 C 0.421875 -0.4375 1.34375 0.21875 2.4375 0.21875 C 3.65625 0.21875 4.5625 -0.6875 4.5625 -1.703125 C 4.5625 -2.515625 3.921875 -3.296875 2.890625 -3.515625 Z M 2.890625 -3.515625 "/>
+</symbol>
+<symbol overflow="visible" id="glyph0-16">
+<path style="stroke:none;" d="M 2.9375 -6.375 C 2.9375 -6.625 2.9375 -6.640625 2.703125 -6.640625 C 2.078125 -6 1.203125 -6 0.890625 -6 L 0.890625 -5.6875 C 1.09375 -5.6875 1.671875 -5.6875 2.1875 -5.953125 L 2.1875 -0.78125 C 2.1875 -0.421875 2.15625 -0.3125 1.265625 -0.3125 L 0.953125 -0.3125 L 0.953125 0 C 1.296875 -0.03125 2.15625 -0.03125 2.5625 -0.03125 C 2.953125 -0.03125 3.828125 -0.03125 4.171875 0 L 4.171875 -0.3125 L 3.859375 -0.3125 C 2.953125 -0.3125 2.9375 -0.421875 2.9375 -0.78125 Z M 2.9375 -6.375 "/>
+</symbol>
+<symbol overflow="visible" id="glyph0-17">
+<path style="stroke:none;" d="M 1.265625 -0.765625 L 2.328125 -1.796875 C 3.875 -3.171875 4.46875 -3.703125 4.46875 -4.703125 C 4.46875 -5.84375 3.578125 -6.640625 2.359375 -6.640625 C 1.234375 -6.640625 0.5 -5.71875 0.5 -4.828125 C 0.5 -4.28125 1 -4.28125 1.03125 -4.28125 C 1.203125 -4.28125 1.546875 -4.390625 1.546875 -4.8125 C 1.546875 -5.0625 1.359375 -5.328125 1.015625 -5.328125 C 0.9375 -5.328125 0.921875 -5.328125 0.890625 -5.3125 C 1.109375 -5.96875 1.65625 -6.328125 2.234375 -6.328125 C 3.140625 -6.328125 3.5625 -5.515625 3.5625 -4.703125 C 3.5625 -3.90625 3.078125 -3.125 2.515625 -2.5 L 0.609375 -0.375 C 0.5 -0.265625 0.5 -0.234375 0.5 0 L 4.203125 0 L 4.46875 -1.734375 L 4.234375 -1.734375 C 4.171875 -1.4375 4.109375 -1 4 -0.84375 C 3.9375 -0.765625 3.28125 -0.765625 3.0625 -0.765625 Z M 1.265625 -0.765625 "/>
+</symbol>
+<symbol overflow="visible" id="glyph0-18">
+<path style="stroke:none;" d="M 3.65625 -3.171875 L 3.65625 -2.84375 C 3.65625 -0.515625 2.625 -0.0625 2.046875 -0.0625 C 1.875 -0.0625 1.328125 -0.078125 1.0625 -0.421875 C 1.5 -0.421875 1.578125 -0.703125 1.578125 -0.875 C 1.578125 -1.1875 1.34375 -1.328125 1.125 -1.328125 C 0.96875 -1.328125 0.671875 -1.25 0.671875 -0.859375 C 0.671875 -0.1875 1.203125 0.21875 2.046875 0.21875 C 3.34375 0.21875 4.5625 -1.140625 4.5625 -3.28125 C 4.5625 -5.96875 3.40625 -6.640625 2.515625 -6.640625 C 1.96875 -6.640625 1.484375 -6.453125 1.0625 -6.015625 C 0.640625 -5.5625 0.421875 -5.140625 0.421875 -4.390625 C 0.421875 -3.15625 1.296875 -2.171875 2.40625 -2.171875 C 3.015625 -2.171875 3.421875 -2.59375 3.65625 -3.171875 Z M 2.421875 -2.40625 C 2.265625 -2.40625 1.796875 -2.40625 1.5 -3.03125 C 1.3125 -3.40625 1.3125 -3.890625 1.3125 -4.390625 C 1.3125 -4.921875 1.3125 -5.390625 1.53125 -5.765625 C 1.796875 -6.265625 2.171875 -6.390625 2.515625 -6.390625 C 2.984375 -6.390625 3.3125 -6.046875 3.484375 -5.609375 C 3.59375 -5.28125 3.640625 -4.65625 3.640625 -4.203125 C 3.640625 -3.375 3.296875 -2.40625 2.421875 -2.40625 Z M 2.421875 -2.40625 "/>
+</symbol>
+<symbol overflow="visible" id="glyph0-19">
+<path style="stroke:none;" d="M 1.3125 -3.265625 L 1.3125 -3.515625 C 1.3125 -6.03125 2.546875 -6.390625 3.0625 -6.390625 C 3.296875 -6.390625 3.71875 -6.328125 3.9375 -5.984375 C 3.78125 -5.984375 3.390625 -5.984375 3.390625 -5.546875 C 3.390625 -5.234375 3.625 -5.078125 3.84375 -5.078125 C 4 -5.078125 4.3125 -5.171875 4.3125 -5.5625 C 4.3125 -6.15625 3.875 -6.640625 3.046875 -6.640625 C 1.765625 -6.640625 0.421875 -5.359375 0.421875 -3.15625 C 0.421875 -0.484375 1.578125 0.21875 2.5 0.21875 C 3.609375 0.21875 4.5625 -0.71875 4.5625 -2.03125 C 4.5625 -3.296875 3.671875 -4.25 2.5625 -4.25 C 1.890625 -4.25 1.515625 -3.75 1.3125 -3.265625 Z M 2.5 -0.0625 C 1.875 -0.0625 1.578125 -0.65625 1.515625 -0.8125 C 1.328125 -1.28125 1.328125 -2.078125 1.328125 -2.25 C 1.328125 -3.03125 1.65625 -4.03125 2.546875 -4.03125 C 2.71875 -4.03125 3.171875 -4.03125 3.484375 -3.40625 C 3.65625 -3.046875 3.65625 -2.53125 3.65625 -2.046875 C 3.65625 -1.5625 3.65625 -1.0625 3.484375 -0.703125 C 3.1875 -0.109375 2.734375 -0.0625 2.5 -0.0625 Z M 2.5 -0.0625 "/>
+</symbol>
+<symbol overflow="visible" id="glyph0-20">
+<path style="stroke:none;" d="M 2.9375 -1.640625 L 2.9375 -0.78125 C 2.9375 -0.421875 2.90625 -0.3125 2.171875 -0.3125 L 1.96875 -0.3125 L 1.96875 0 C 2.375 -0.03125 2.890625 -0.03125 3.3125 -0.03125 C 3.734375 -0.03125 4.25 -0.03125 4.671875 0 L 4.671875 -0.3125 L 4.453125 -0.3125 C 3.71875 -0.3125 3.703125 -0.421875 3.703125 -0.78125 L 3.703125 -1.640625 L 4.6875 -1.640625 L 4.6875 -1.953125 L 3.703125 -1.953125 L 3.703125 -6.484375 C 3.703125 -6.6875 3.703125 -6.75 3.53125 -6.75 C 3.453125 -6.75 3.421875 -6.75 3.34375 -6.625 L 0.28125 -1.953125 L 0.28125 -1.640625 Z M 2.984375 -1.953125 L 0.5625 -1.953125 L 2.984375 -5.671875 Z M 2.984375 -1.953125 "/>
+</symbol>
+<symbol overflow="visible" id="glyph0-21">
+<path style="stroke:none;" d="M 4.578125 -3.1875 C 4.578125 -3.984375 4.53125 -4.78125 4.1875 -5.515625 C 3.734375 -6.484375 2.90625 -6.640625 2.5 -6.640625 C 1.890625 -6.640625 1.171875 -6.375 0.75 -5.453125 C 0.4375 -4.765625 0.390625 -3.984375 0.390625 -3.1875 C 0.390625 -2.4375 0.421875 -1.546875 0.84375 -0.78125 C 1.265625 0.015625 2 0.21875 2.484375 0.21875 C 3.015625 0.21875 3.78125 0.015625 4.21875 -0.9375 C 4.53125 -1.625 4.578125 -2.40625 4.578125 -3.1875 Z M 2.484375 0 C 2.09375 0 1.5 -0.25 1.328125 -1.203125 C 1.21875 -1.796875 1.21875 -2.71875 1.21875 -3.3125 C 1.21875 -3.953125 1.21875 -4.609375 1.296875 -5.140625 C 1.484375 -6.328125 2.234375 -6.421875 2.484375 -6.421875 C 2.8125 -6.421875 3.46875 -6.234375 3.65625 -5.25 C 3.765625 -4.6875 3.765625 -3.9375 3.765625 -3.3125 C 3.765625 -2.5625 3.765625 -1.890625 3.65625 -1.25 C 3.5 -0.296875 2.9375 0 2.484375 0 Z M 2.484375 0 "/>
+</symbol>
+<symbol overflow="visible" id="glyph0-22">
+<path style="stroke:none;" d="M 4.46875 -2 C 4.46875 -3.1875 3.65625 -4.1875 2.578125 -4.1875 C 2.109375 -4.1875 1.671875 -4.03125 1.3125 -3.671875 L 1.3125 -5.625 C 1.515625 -5.5625 1.84375 -5.5 2.15625 -5.5 C 3.390625 -5.5 4.09375 -6.40625 4.09375 -6.53125 C 4.09375 -6.59375 4.0625 -6.640625 3.984375 -6.640625 C 3.984375 -6.640625 3.953125 -6.640625 3.90625 -6.609375 C 3.703125 -6.515625 3.21875 -6.3125 2.546875 -6.3125 C 2.15625 -6.3125 1.6875 -6.390625 1.21875 -6.59375 C 1.140625 -6.625 1.125 -6.625 1.109375 -6.625 C 1 -6.625 1 -6.546875 1 -6.390625 L 1 -3.4375 C 1 -3.265625 1 -3.1875 1.140625 -3.1875 C 1.21875 -3.1875 1.234375 -3.203125 1.28125 -3.265625 C 1.390625 -3.421875 1.75 -3.96875 2.5625 -3.96875 C 3.078125 -3.96875 3.328125 -3.515625 3.40625 -3.328125 C 3.5625 -2.953125 3.59375 -2.578125 3.59375 -2.078125 C 3.59375 -1.71875 3.59375 -1.125 3.34375 -0.703125 C 3.109375 -0.3125 2.734375 -0.0625 2.28125 -0.0625 C 1.5625 -0.0625 0.984375 -0.59375 0.8125 -1.171875 C 0.84375 -1.171875 0.875 -1.15625 0.984375 -1.15625 C 1.3125 -1.15625 1.484375 -1.40625 1.484375 -1.640625 C 1.484375 -1.890625 1.3125 -2.140625 0.984375 -2.140625 C 0.84375 -2.140625 0.5 -2.0625 0.5 -1.609375 C 0.5 -0.75 1.1875 0.21875 2.296875 0.21875 C 3.453125 0.21875 4.46875 -0.734375 4.46875 -2 Z M 4.46875 -2 "/>
+</symbol>
+<symbol overflow="visible" id="glyph0-23">
+<path style="stroke:none;" d="M 4.75 -6.078125 C 4.828125 -6.1875 4.828125 -6.203125 4.828125 -6.421875 L 2.40625 -6.421875 C 1.203125 -6.421875 1.171875 -6.546875 1.140625 -6.734375 L 0.890625 -6.734375 L 0.5625 -4.6875 L 0.8125 -4.6875 C 0.84375 -4.84375 0.921875 -5.46875 1.0625 -5.59375 C 1.125 -5.65625 1.90625 -5.65625 2.03125 -5.65625 L 4.09375 -5.65625 C 3.984375 -5.5 3.203125 -4.40625 2.984375 -4.078125 C 2.078125 -2.734375 1.75 -1.34375 1.75 -0.328125 C 1.75 -0.234375 1.75 0.21875 2.21875 0.21875 C 2.671875 0.21875 2.671875 -0.234375 2.671875 -0.328125 L 2.671875 -0.84375 C 2.671875 -1.390625 2.703125 -1.9375 2.78125 -2.46875 C 2.828125 -2.703125 2.953125 -3.5625 3.40625 -4.171875 Z M 4.75 -6.078125 "/>
+</symbol>
+<symbol overflow="visible" id="glyph0-24">
+<path style="stroke:none;" d="M 1.625 -4.5625 C 1.171875 -4.859375 1.125 -5.1875 1.125 -5.359375 C 1.125 -5.96875 1.78125 -6.390625 2.484375 -6.390625 C 3.203125 -6.390625 3.84375 -5.875 3.84375 -5.15625 C 3.84375 -4.578125 3.453125 -4.109375 2.859375 -3.765625 Z M 3.078125 -3.609375 C 3.796875 -3.984375 4.28125 -4.5 4.28125 -5.15625 C 4.28125 -6.078125 3.40625 -6.640625 2.5 -6.640625 C 1.5 -6.640625 0.6875 -5.90625 0.6875 -4.96875 C 0.6875 -4.796875 0.703125 -4.34375 1.125 -3.875 C 1.234375 -3.765625 1.609375 -3.515625 1.859375 -3.34375 C 1.28125 -3.046875 0.421875 -2.5 0.421875 -1.5 C 0.421875 -0.453125 1.4375 0.21875 2.484375 0.21875 C 3.609375 0.21875 4.5625 -0.609375 4.5625 -1.671875 C 4.5625 -2.03125 4.453125 -2.484375 4.0625 -2.90625 C 3.875 -3.109375 3.71875 -3.203125 3.078125 -3.609375 Z M 2.078125 -3.1875 L 3.3125 -2.40625 C 3.59375 -2.21875 4.0625 -1.921875 4.0625 -1.3125 C 4.0625 -0.578125 3.3125 -0.0625 2.5 -0.0625 C 1.640625 -0.0625 0.921875 -0.671875 0.921875 -1.5 C 0.921875 -2.078125 1.234375 -2.71875 2.078125 -3.1875 Z M 2.078125 -3.1875 "/>
+</symbol>
+</g>
+<clipPath id="clip1">
+ <path d="M 275 113 L 324.941406 113 L 324.941406 130.785156 L 275 130.785156 Z M 275 113 "/>
+</clipPath>
+<clipPath id="clip2">
+ <path d="M 261 99 L 324.941406 99 L 324.941406 130.785156 L 261 130.785156 Z M 261 99 "/>
+</clipPath>
+<clipPath id="clip3">
+ <path d="M 271 42 L 324.941406 42 L 324.941406 85 L 271 85 Z M 271 42 "/>
+</clipPath>
+</defs>
+<g id="surface1">
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(2.74353%,21.174622%,25.881958%);fill-opacity:1;" d="M 257.269531 0.398438 L 229.179688 0.398438 C 226.976562 0.398438 225.195312 2.183594 225.195312 4.382812 L 225.195312 9.179688 C 225.195312 11.382812 226.976562 13.167969 229.179688 13.167969 L 257.269531 13.167969 C 259.46875 13.167969 261.253906 11.382812 261.253906 9.179688 L 261.253906 4.382812 C 261.253906 2.183594 259.46875 0.398438 257.269531 0.398438 Z M 257.269531 0.398438 "/>
+<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(34.510803%,43.136597%,45.881653%);stroke-opacity:1;stroke-miterlimit:10;" d="M 241.051 27.846 L 213.051 27.846 C 210.527562 27.947562 208.746312 26.162406 209.051 23.846 L 209.051 18.846 C 208.746312 16.963187 210.527562 15.178031 213.051 14.846 L 241.051 14.846 C 243.01975 15.178031 244.804906 16.963187 245.051 18.846 L 245.051 23.846 C 244.804906 26.162406 243.01975 27.947562 240.820531 27.947562 Z M 241.051 27.846 " transform="matrix(1,0,0,-1,16.449,28.346)"/>
+<g style="fill:rgb(82.743835%,21.174622%,50.979614%);fill-opacity:1;">
+ <use xlink:href="#glyph0-1" x="228.512" y="9.846"/>
+ <use xlink:href="#glyph0-2" x="236.813835" y="9.846"/>
+ <use xlink:href="#glyph0-3" x="241.795135" y="9.846"/>
+ <use xlink:href="#glyph0-4" x="245.724384" y="9.846"/>
+ <use xlink:href="#glyph0-5" x="249.598839" y="9.846"/>
+ <use xlink:href="#glyph0-6" x="254.026219" y="9.846"/>
+</g>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(2.74353%,21.174622%,25.881958%);fill-opacity:1;" d="M 213 85.4375 L 160.058594 85.4375 C 157.859375 85.4375 156.074219 87.222656 156.074219 89.421875 L 156.074219 98.058594 C 156.074219 100.257812 157.859375 102.042969 160.058594 102.042969 L 213 102.042969 C 215.199219 102.042969 216.984375 100.257812 216.984375 98.058594 L 216.984375 89.421875 C 216.984375 87.222656 215.199219 85.4375 213 85.4375 Z M 213 85.4375 "/>
+<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(34.510803%,43.136597%,45.881653%);stroke-opacity:1;stroke-miterlimit:10;" d="M 197.051 -57.154 L 144.051 -57.154 C 141.410375 -57.0915 139.625219 -58.876656 140.051 -61.154 L 140.051 -70.154 C 139.625219 -71.911813 141.410375 -73.696969 144.051 -74.154 L 197.051 -74.154 C 198.750219 -73.696969 200.535375 -71.911813 200.051 -70.154 L 200.051 -61.154 C 200.535375 -58.876656 198.750219 -57.0915 196.551 -57.0915 Z M 197.051 -57.154 " transform="matrix(1,0,0,-1,16.449,28.346)"/>
+<g style="fill:rgb(82.743835%,21.174622%,50.979614%);fill-opacity:1;">
+ <use xlink:href="#glyph0-4" x="159.393" y="96.23"/>
+ <use xlink:href="#glyph0-7" x="163.267455" y="96.23"/>
+ <use xlink:href="#glyph0-8" x="168.248755" y="96.23"/>
+ <use xlink:href="#glyph0-9" x="173.783976" y="96.23"/>
+ <use xlink:href="#glyph0-10" x="176.551586" y="96.23"/>
+ <use xlink:href="#glyph0-11" x="180.978965" y="96.23"/>
+ <use xlink:href="#glyph0-12" x="185.960265" y="96.23"/>
+ <use xlink:href="#glyph0-7" x="189.004836" y="96.23"/>
+</g>
+<g style="fill:rgb(82.743835%,21.174622%,50.979614%);fill-opacity:1;">
+ <use xlink:href="#glyph0-7" x="194.265089" y="96.23"/>
+ <use xlink:href="#glyph0-13" x="199.246389" y="96.23"/>
+ <use xlink:href="#glyph0-2" x="204.781609" y="96.23"/>
+ <use xlink:href="#glyph0-6" x="209.762909" y="96.23"/>
+</g>
+<g clip-path="url(#clip1)" clip-rule="nonzero">
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(2.74353%,21.174622%,25.881958%);fill-opacity:1;" d="M 320.5625 113.785156 L 279.273438 113.785156 C 277.070312 113.785156 275.289062 115.570312 275.289062 117.769531 L 275.289062 126.402344 C 275.289062 128.605469 277.070312 130.390625 279.273438 130.390625 L 320.5625 130.390625 C 322.761719 130.390625 324.546875 128.605469 324.546875 126.402344 L 324.546875 117.769531 C 324.546875 115.570312 322.761719 113.785156 320.5625 113.785156 Z M 320.5625 113.785156 "/>
+</g>
+<g clip-path="url(#clip2)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(34.510803%,43.136597%,45.881653%);stroke-opacity:1;stroke-miterlimit:10;" d="M 304.051 -85.154 L 263.051 -85.154 C 260.621312 -85.439156 258.840062 -87.224313 259.051 -89.154 L 259.051 -98.154 C 258.840062 -100.259469 260.621312 -102.044625 263.051 -102.154 L 304.051 -102.154 C 306.312719 -102.044625 308.097875 -100.259469 308.051 -98.154 L 308.051 -89.154 C 308.097875 -87.224313 306.312719 -85.439156 304.1135 -85.439156 Z M 304.051 -85.154 " transform="matrix(1,0,0,-1,16.449,28.346)"/>
+</g>
+<g style="fill:rgb(82.743835%,21.174622%,50.979614%);fill-opacity:1;">
+ <use xlink:href="#glyph0-4" x="278.604" y="124.576"/>
+ <use xlink:href="#glyph0-7" x="282.478455" y="124.576"/>
+ <use xlink:href="#glyph0-8" x="287.459755" y="124.576"/>
+ <use xlink:href="#glyph0-9" x="292.994976" y="124.576"/>
+ <use xlink:href="#glyph0-10" x="295.762586" y="124.576"/>
+ <use xlink:href="#glyph0-11" x="300.189965" y="124.576"/>
+ <use xlink:href="#glyph0-13" x="305.171265" y="124.576"/>
+ <use xlink:href="#glyph0-2" x="310.706486" y="124.576"/>
+ <use xlink:href="#glyph0-14" x="315.687786" y="124.576"/>
+</g>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(2.74353%,21.174622%,25.881958%);fill-opacity:1;" d="M 28.515625 28.746094 L 4.382812 28.746094 C 2.183594 28.746094 0.398438 30.527344 0.398438 32.730469 L 0.398438 38.320312 C 0.398438 40.519531 2.183594 42.304688 4.382812 42.304688 L 28.515625 42.304688 C 30.714844 42.304688 32.5 40.519531 32.5 38.320312 L 32.5 32.730469 C 32.5 30.527344 30.714844 28.746094 28.515625 28.746094 Z M 28.515625 28.746094 "/>
+<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(34.510803%,43.136597%,45.881653%);stroke-opacity:1;stroke-miterlimit:10;" d="M 12.051 -0.154 L -11.949 -0.154 C -14.265406 -0.400094 -16.050562 -2.181344 -15.949 -4.154 L -15.949 -10.154 C -16.050562 -12.173531 -14.265406 -13.958688 -11.949 -14.154 L 12.051 -14.154 C 14.265844 -13.958688 16.051 -12.173531 16.051 -10.154 L 16.051 -4.154 C 16.051 -2.181344 14.265844 -0.400094 12.066625 -0.400094 Z M 12.051 -0.154 " transform="matrix(1,0,0,-1,16.449,28.346)"/>
+<g style="fill:rgb(57.647705%,63.134766%,63.134766%);fill-opacity:1;">
+ <use xlink:href="#glyph0-15" x="3.719" y="38.983"/>
+ <use xlink:href="#glyph0-16" x="8.7003" y="38.983"/>
+ <use xlink:href="#glyph0-14" x="13.6816" y="38.983"/>
+ <use xlink:href="#glyph0-17" x="19.216821" y="38.983"/>
+ <use xlink:href="#glyph0-15" x="24.198121" y="38.983"/>
+</g>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(2.74353%,21.174622%,25.881958%);fill-opacity:1;" d="M 84.929688 28.746094 L 61.355469 28.746094 C 59.152344 28.746094 57.367188 30.527344 57.367188 32.730469 L 57.367188 37.820312 C 57.367188 40.023438 59.152344 41.804688 61.355469 41.804688 L 84.929688 41.804688 C 87.132812 41.804688 88.917969 40.023438 88.917969 37.820312 L 88.917969 32.730469 C 88.917969 30.527344 87.132812 28.746094 84.929688 28.746094 Z M 84.929688 28.746094 "/>
+<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(34.510803%,43.136597%,45.881653%);stroke-opacity:1;stroke-miterlimit:10;" d="M 68.051 -0.154 L 45.051 -0.154 C 42.703344 -0.400094 40.918188 -2.181344 41.051 -4.154 L 41.051 -9.154 C 40.918188 -11.677438 42.703344 -13.458688 45.051 -13.154 L 68.051 -13.154 C 70.683813 -13.458688 72.468969 -11.677438 72.051 -9.154 L 72.051 -4.154 C 72.468969 -2.181344 70.683813 -0.400094 68.480688 -0.400094 Z M 68.051 -0.154 " transform="matrix(1,0,0,-1,16.449,28.346)"/>
+<g style="fill:rgb(57.647705%,63.134766%,63.134766%);fill-opacity:1;">
+ <use xlink:href="#glyph0-18" x="60.689" y="38.485"/>
+ <use xlink:href="#glyph0-19" x="65.6703" y="38.485"/>
+ <use xlink:href="#glyph0-20" x="70.6516" y="38.485"/>
+ <use xlink:href="#glyph0-21" x="75.6329" y="38.485"/>
+ <use xlink:href="#glyph0-2" x="80.6142" y="38.485"/>
+</g>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(2.74353%,21.174622%,25.881958%);fill-opacity:1;" d="M 141.902344 28.746094 L 117.769531 28.746094 C 115.570312 28.746094 113.785156 30.527344 113.785156 32.730469 L 113.785156 38.320312 C 113.785156 40.519531 115.570312 42.304688 117.769531 42.304688 L 141.902344 42.304688 C 144.101562 42.304688 145.886719 40.519531 145.886719 38.320312 L 145.886719 32.730469 C 145.886719 30.527344 144.101562 28.746094 141.902344 28.746094 Z M 141.902344 28.746094 "/>
+<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(34.510803%,43.136597%,45.881653%);stroke-opacity:1;stroke-miterlimit:10;" d="M 125.051 -0.154 L 101.051 -0.154 C 99.121313 -0.400094 97.336156 -2.181344 97.051 -4.154 L 97.051 -10.154 C 97.336156 -12.173531 99.121313 -13.958688 101.051 -14.154 L 125.051 -14.154 C 127.652563 -13.958688 129.437719 -12.173531 129.051 -10.154 L 129.051 -4.154 C 129.437719 -2.181344 127.652563 -0.400094 125.453344 -0.400094 Z M 125.051 -0.154 " transform="matrix(1,0,0,-1,16.449,28.346)"/>
+<g style="fill:rgb(57.647705%,63.134766%,63.134766%);fill-opacity:1;">
+ <use xlink:href="#glyph0-22" x="117.105" y="38.983"/>
+ <use xlink:href="#glyph0-5" x="122.0863" y="38.983"/>
+ <use xlink:href="#glyph0-19" x="126.513679" y="38.983"/>
+ <use xlink:href="#glyph0-14" x="131.494979" y="38.983"/>
+ <use xlink:href="#glyph0-14" x="137.0302" y="38.983"/>
+</g>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(2.74353%,21.174622%,25.881958%);fill-opacity:1;" d="M 198.320312 28.746094 L 174.742188 28.746094 C 172.539062 28.746094 170.753906 30.527344 170.753906 32.730469 L 170.753906 38.320312 C 170.753906 40.519531 172.539062 42.304688 174.742188 42.304688 L 198.320312 42.304688 C 200.519531 42.304688 202.304688 40.519531 202.304688 38.320312 L 202.304688 32.730469 C 202.304688 30.527344 200.519531 28.746094 198.320312 28.746094 Z M 198.320312 28.746094 "/>
+<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(34.510803%,43.136597%,45.881653%);stroke-opacity:1;stroke-miterlimit:10;" d="M 182.051 -0.154 L 158.051 -0.154 C 156.090062 -0.400094 154.304906 -2.181344 154.051 -4.154 L 154.051 -10.154 C 154.304906 -12.173531 156.090062 -13.958688 158.051 -14.154 L 182.051 -14.154 C 184.070531 -13.958688 185.855687 -12.173531 186.051 -10.154 L 186.051 -4.154 C 185.855687 -2.181344 184.070531 -0.400094 181.871312 -0.400094 Z M 182.051 -0.154 " transform="matrix(1,0,0,-1,16.449,28.346)"/>
+<g style="fill:rgb(57.647705%,63.134766%,63.134766%);fill-opacity:1;">
+ <use xlink:href="#glyph0-15" x="174.074" y="38.983"/>
+ <use xlink:href="#glyph0-14" x="179.0553" y="38.983"/>
+ <use xlink:href="#glyph0-5" x="184.590521" y="38.983"/>
+ <use xlink:href="#glyph0-17" x="189.0179" y="38.983"/>
+ <use xlink:href="#glyph0-19" x="193.9992" y="38.983"/>
+</g>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(2.74353%,21.174622%,25.881958%);fill-opacity:1;" d="M 255.289062 28.746094 L 231.15625 28.746094 C 228.957031 28.746094 227.171875 30.527344 227.171875 32.730469 L 227.171875 38.320312 C 227.171875 40.519531 228.957031 42.304688 231.15625 42.304688 L 255.289062 42.304688 C 257.488281 42.304688 259.273438 40.519531 259.273438 38.320312 L 259.273438 32.730469 C 259.273438 30.527344 257.488281 28.746094 255.289062 28.746094 Z M 255.289062 28.746094 "/>
+<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(34.510803%,43.136597%,45.881653%);stroke-opacity:1;stroke-miterlimit:10;" d="M 239.051 -0.154 L 215.051 -0.154 C 212.508031 -0.400094 210.722875 -2.181344 211.051 -4.154 L 211.051 -10.154 C 210.722875 -12.173531 212.508031 -13.958688 215.051 -14.154 L 239.051 -14.154 C 241.039281 -13.958688 242.824437 -12.173531 243.051 -10.154 L 243.051 -4.154 C 242.824437 -2.181344 241.039281 -0.400094 238.840062 -0.400094 Z M 239.051 -0.154 " transform="matrix(1,0,0,-1,16.449,28.346)"/>
+<g style="fill:rgb(57.647705%,63.134766%,63.134766%);fill-opacity:1;">
+ <use xlink:href="#glyph0-23" x="230.491" y="38.983"/>
+ <use xlink:href="#glyph0-15" x="235.4723" y="38.983"/>
+ <use xlink:href="#glyph0-24" x="240.4536" y="38.983"/>
+ <use xlink:href="#glyph0-23" x="245.4349" y="38.983"/>
+ <use xlink:href="#glyph0-14" x="250.4162" y="38.983"/>
+</g>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(2.74353%,21.174622%,25.881958%);fill-opacity:1;" d="M 254.597656 57.089844 L 231.851562 57.089844 C 229.648438 57.089844 227.863281 58.875 227.863281 61.078125 L 227.863281 66.664062 C 227.863281 68.867188 229.648438 70.652344 231.851562 70.652344 L 254.597656 70.652344 C 256.796875 70.652344 258.582031 68.867188 258.582031 66.664062 L 258.582031 61.078125 C 258.582031 58.875 256.796875 57.089844 254.597656 57.089844 Z M 254.597656 57.089844 "/>
+<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(34.510803%,43.136597%,45.881653%);stroke-opacity:1;stroke-miterlimit:10;" d="M 238.051 -29.154 L 215.051 -29.154 C 213.199437 -28.743844 211.414281 -30.529 211.051 -33.154 L 211.051 -38.154 C 211.414281 -40.521188 213.199437 -42.306344 215.051 -42.154 L 238.051 -42.154 C 240.347875 -42.306344 242.133031 -40.521188 242.051 -38.154 L 242.051 -33.154 C 242.133031 -30.529 240.347875 -28.743844 238.148656 -28.743844 Z M 238.051 -29.154 " transform="matrix(1,0,0,-1,16.449,28.346)"/>
+<g style="fill:rgb(57.647705%,63.134766%,63.134766%);fill-opacity:1;">
+ <use xlink:href="#glyph0-20" x="231.182" y="67.33"/>
+ <use xlink:href="#glyph0-13" x="236.1633" y="67.33"/>
+ <use xlink:href="#glyph0-2" x="241.698521" y="67.33"/>
+ <use xlink:href="#glyph0-13" x="246.679821" y="67.33"/>
+ <use xlink:href="#glyph0-12" x="252.215041" y="67.33"/>
+</g>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(2.74353%,21.174622%,25.881958%);fill-opacity:1;" d="M 310.738281 57.089844 L 289.097656 57.089844 C 286.894531 57.089844 285.113281 58.875 285.113281 61.078125 L 285.113281 66.664062 C 285.113281 68.867188 286.894531 70.652344 289.097656 70.652344 L 310.738281 70.652344 C 312.9375 70.652344 314.722656 68.867188 314.722656 66.664062 L 314.722656 61.078125 C 314.722656 58.875 312.9375 57.089844 310.738281 57.089844 Z M 310.738281 57.089844 "/>
+<g clip-path="url(#clip3)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(34.510803%,43.136597%,45.881653%);stroke-opacity:1;stroke-miterlimit:10;" d="M 294.051 -29.154 L 273.051 -29.154 C 270.445531 -28.743844 268.664281 -30.529 269.051 -33.154 L 269.051 -38.154 C 268.664281 -40.521188 270.445531 -42.306344 273.051 -42.154 L 294.051 -42.154 C 296.4885 -42.306344 298.273656 -40.521188 298.051 -38.154 L 298.051 -33.154 C 298.273656 -30.529 296.4885 -28.743844 294.289281 -28.743844 Z M 294.051 -29.154 " transform="matrix(1,0,0,-1,16.449,28.346)"/>
+</g>
+<g style="fill:rgb(57.647705%,63.134766%,63.134766%);fill-opacity:1;">
+ <use xlink:href="#glyph0-23" x="288.429" y="67.33"/>
+ <use xlink:href="#glyph0-19" x="293.4103" y="67.33"/>
+ <use xlink:href="#glyph0-20" x="298.3916" y="67.33"/>
+ <use xlink:href="#glyph0-23" x="303.3729" y="67.33"/>
+ <use xlink:href="#glyph0-12" x="308.3542" y="67.33"/>
+</g>
+<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(34.510803%,43.136597%,45.881653%);stroke-opacity:1;stroke-miterlimit:10;" d="M 227.051 14.846 L 227.051 0.846 " transform="matrix(1,0,0,-1,16.449,28.346)"/>
+<path style="fill:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(34.510803%,43.136597%,45.881653%);stroke-opacity:1;stroke-miterlimit:10;" d="M -1.552712 2.073395 C -1.423806 1.296051 -0.00193125 0.128083 0.388694 -0.00082375 C -0.00193125 -0.12973 -1.423806 -1.293792 -1.552712 -2.071136 " transform="matrix(0,1,1,0,243.22348,27.63865)"/>
+<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(34.510803%,43.136597%,45.881653%);stroke-opacity:1;stroke-miterlimit:10;" d="M 170.051 -57.154 L 170.051 -15.154 " transform="matrix(1,0,0,-1,16.449,28.346)"/>
+<path style="fill:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(34.510803%,43.136597%,45.881653%);stroke-opacity:1;stroke-miterlimit:10;" d="M -1.554774 2.072829 C -1.425868 1.295485 -0.00008625 0.131422 0.386632 -0.00139 C -0.00008625 -0.130296 -1.425868 -1.294359 -1.554774 -2.071703 " transform="matrix(0,-1,-1,0,186.52986,43.41007)"/>
+<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(34.510803%,43.136597%,45.881653%);stroke-opacity:1;stroke-miterlimit:10;" d="M 283.051 -85.154 L 283.051 -43.154 " transform="matrix(1,0,0,-1,16.449,28.346)"/>
+<path style="fill:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(34.510803%,43.136597%,45.881653%);stroke-opacity:1;stroke-miterlimit:10;" d="M -1.55561 2.07335 C -1.422798 1.296006 -0.0009225 0.128037 0.389702 -0.00086875 C -0.0009225 -0.129775 -1.422798 -1.293838 -1.55561 -2.071181 " transform="matrix(0,-1,-1,0,299.9171,71.75689)"/>
+<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(34.510803%,43.136597%,45.881653%);stroke-opacity:1;stroke-miterlimit:10;" d="M 16.051 -7.154 L 35.051 -7.154 " transform="matrix(1,0,0,-1,16.449,28.346)"/>
+<path style="fill:none;stroke-width:0.995581;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(34.510803%,43.136597%,45.881653%);stroke-opacity:1;stroke-miterlimit:10;" d="M 5.019843 0.00015644 C 5.022038 1.386866 3.89807 2.508998 2.511361 2.511194 C 1.124634 2.509483 -0.00140491 1.385531 0.000305992 -0.0011951 C -0.00188928 -1.387904 1.12208 -2.510037 2.508789 -2.512232 C 3.895515 -2.510522 5.021554 -1.38657 5.019843 0.00015644 Z M 5.019843 0.00015644 " transform="matrix(1,-0.0044,-0.0044,-1,51.55047,35.3699)"/>
+<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(34.510803%,43.136597%,45.881653%);stroke-opacity:1;stroke-miterlimit:10;" d="M 73.051 -7.154 L 91.051 -7.154 " transform="matrix(1,0,0,-1,16.449,28.346)"/>
+<path style="fill:none;stroke-width:0.995581;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(34.510803%,43.136597%,45.881653%);stroke-opacity:1;stroke-miterlimit:10;" d="M 5.020915 0.00139328 C 5.022626 1.38812 3.896587 2.512071 2.509878 2.509876 C 1.123152 2.511587 -0.00080016 1.385548 0.00139511 -0.00116136 C -0.000315794 -1.387888 1.125723 -2.511839 2.512432 -2.509644 C 3.895253 -2.511372 5.019204 -1.385333 5.020915 0.00139328 Z M 5.020915 0.00139328 " transform="matrix(1,0.0044,0.0044,-1,107.96736,35.42852)"/>
+<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(34.510803%,43.136597%,45.881653%);stroke-opacity:1;stroke-miterlimit:10;" d="M 130.051 -7.154 L 148.051 -7.154 " transform="matrix(1,0,0,-1,16.449,28.346)"/>
+<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(34.510803%,43.136597%,45.881653%);stroke-opacity:1;stroke-miterlimit:10;" d="M 5.019321 0.0009025 C 5.019321 1.387621 3.898227 2.508715 2.511509 2.508715 C 1.12479 2.508715 -0.00021 1.387621 -0.00021 0.0009025 C -0.00021 -1.385816 1.12479 -2.510816 2.511509 -2.510816 C 3.898227 -2.510816 5.019321 -1.385816 5.019321 0.0009025 Z M 5.019321 0.0009025 " transform="matrix(1,0,0,-1,164.93771,35.52434)"/>
+<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(34.510803%,43.136597%,45.881653%);stroke-opacity:1;stroke-miterlimit:10;" d="M 186.051 -7.154 L 205.051 -7.154 " transform="matrix(1,0,0,-1,16.449,28.346)"/>
+<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(34.510803%,43.136597%,45.881653%);stroke-opacity:1;stroke-miterlimit:10;" d="M 5.02042 0.0009025 C 5.02042 1.387621 3.89542 2.508715 2.508701 2.508715 C 1.125889 2.508715 0.00088875 1.387621 0.00088875 0.0009025 C 0.00088875 -1.385816 1.125889 -2.510816 2.508701 -2.510816 C 3.89542 -2.510816 5.02042 -1.385816 5.02042 0.0009025 Z M 5.02042 0.0009025 " transform="matrix(1,0,0,-1,221.35458,35.52434)"/>
+<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(34.510803%,43.136597%,45.881653%);stroke-opacity:1;stroke-miterlimit:10;" d="M 186.254125 -7.177438 C 200.972875 -7.177438 196.297094 -35.525094 205.597875 -35.525094 " transform="matrix(1,0,0,-1,16.449,28.346)"/>
+<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(34.510803%,43.136597%,45.881653%);stroke-opacity:1;stroke-miterlimit:10;" d="M 5.019976 0.00006625 C 5.019976 1.386785 3.898882 2.511785 2.512164 2.511785 C 1.125445 2.511785 0.000445 1.386785 0.000445 0.00006625 C 0.000445 -1.386653 1.125445 -2.511653 2.512164 -2.511653 C 3.898882 -2.511653 5.019976 -1.386653 5.019976 0.00006625 Z M 5.019976 0.00006625 " transform="matrix(1,0,0,-1,222.04643,63.87116)"/>
+<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(34.510803%,43.136597%,45.881653%);stroke-opacity:1;stroke-miterlimit:10;" d="M 242.051 -35.154 L 263.051 -35.154 " transform="matrix(1,0,0,-1,16.449,28.346)"/>
+<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(34.510803%,43.136597%,45.881653%);stroke-opacity:1;stroke-miterlimit:10;" d="M 5.022866 0.00006625 C 5.022866 1.386785 3.897866 2.511785 2.511147 2.511785 C 1.124429 2.511785 -0.00057125 1.386785 -0.00057125 0.00006625 C -0.00057125 -1.386653 1.124429 -2.511653 2.511147 -2.511653 C 3.897866 -2.511653 5.022866 -1.386653 5.022866 0.00006625 Z M 5.022866 0.00006625 " transform="matrix(1,0,0,-1,279.29354,63.87116)"/>
+</g>
+</svg>
diff --git a/blag/static/media/git-repo-state-3.svg b/blag/static/media/git-repo-state-3.svg
new file mode 100644
index 0000000..49c101a
--- /dev/null
+++ b/blag/static/media/git-repo-state-3.svg
@@ -0,0 +1,220 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="261.648pt" height="102.44pt" viewBox="0 0 261.648 102.44" version="1.1">
+<defs>
+<g>
+<symbol overflow="visible" id="glyph0-0">
+<path style="stroke:none;" d=""/>
+</symbol>
+<symbol overflow="visible" id="glyph0-1">
+<path style="stroke:none;" d="M 1.09375 -3.421875 L 1.09375 -0.75 C 1.09375 -0.3125 0.984375 -0.3125 0.3125 -0.3125 L 0.3125 0 C 0.671875 -0.015625 1.171875 -0.03125 1.453125 -0.03125 C 1.703125 -0.03125 2.21875 -0.015625 2.5625 0 L 2.5625 -0.3125 C 1.890625 -0.3125 1.78125 -0.3125 1.78125 -0.75 L 1.78125 -2.59375 C 1.78125 -3.625 2.5 -4.1875 3.125 -4.1875 C 3.765625 -4.1875 3.875 -3.65625 3.875 -3.078125 L 3.875 -0.75 C 3.875 -0.3125 3.765625 -0.3125 3.09375 -0.3125 L 3.09375 0 C 3.4375 -0.015625 3.953125 -0.03125 4.21875 -0.03125 C 4.46875 -0.03125 5 -0.015625 5.328125 0 L 5.328125 -0.3125 C 4.671875 -0.3125 4.5625 -0.3125 4.5625 -0.75 L 4.5625 -2.59375 C 4.5625 -3.625 5.265625 -4.1875 5.90625 -4.1875 C 6.53125 -4.1875 6.640625 -3.65625 6.640625 -3.078125 L 6.640625 -0.75 C 6.640625 -0.3125 6.53125 -0.3125 5.859375 -0.3125 L 5.859375 0 C 6.203125 -0.015625 6.71875 -0.03125 6.984375 -0.03125 C 7.25 -0.03125 7.765625 -0.015625 8.109375 0 L 8.109375 -0.3125 C 7.59375 -0.3125 7.34375 -0.3125 7.328125 -0.609375 L 7.328125 -2.515625 C 7.328125 -3.375 7.328125 -3.671875 7.015625 -4.03125 C 6.875 -4.203125 6.546875 -4.40625 5.96875 -4.40625 C 5.140625 -4.40625 4.6875 -3.8125 4.53125 -3.421875 C 4.390625 -4.296875 3.65625 -4.40625 3.203125 -4.40625 C 2.46875 -4.40625 2 -3.984375 1.71875 -3.359375 L 1.71875 -4.40625 L 0.3125 -4.296875 L 0.3125 -3.984375 C 1.015625 -3.984375 1.09375 -3.921875 1.09375 -3.421875 Z M 1.09375 -3.421875 "/>
+</symbol>
+<symbol overflow="visible" id="glyph0-2">
+<path style="stroke:none;" d="M 3.3125 -0.75 C 3.359375 -0.359375 3.625 0.0625 4.09375 0.0625 C 4.3125 0.0625 4.921875 -0.078125 4.921875 -0.890625 L 4.921875 -1.453125 L 4.671875 -1.453125 L 4.671875 -0.890625 C 4.671875 -0.3125 4.421875 -0.25 4.3125 -0.25 C 3.984375 -0.25 3.9375 -0.703125 3.9375 -0.75 L 3.9375 -2.734375 C 3.9375 -3.15625 3.9375 -3.546875 3.578125 -3.921875 C 3.1875 -4.3125 2.6875 -4.46875 2.21875 -4.46875 C 1.390625 -4.46875 0.703125 -4 0.703125 -3.34375 C 0.703125 -3.046875 0.90625 -2.875 1.171875 -2.875 C 1.453125 -2.875 1.625 -3.078125 1.625 -3.328125 C 1.625 -3.453125 1.578125 -3.78125 1.109375 -3.78125 C 1.390625 -4.140625 1.875 -4.25 2.1875 -4.25 C 2.6875 -4.25 3.25 -3.859375 3.25 -2.96875 L 3.25 -2.609375 C 2.734375 -2.578125 2.046875 -2.546875 1.421875 -2.25 C 0.671875 -1.90625 0.421875 -1.390625 0.421875 -0.953125 C 0.421875 -0.140625 1.390625 0.109375 2.015625 0.109375 C 2.671875 0.109375 3.125 -0.296875 3.3125 -0.75 Z M 3.25 -2.390625 L 3.25 -1.390625 C 3.25 -0.453125 2.53125 -0.109375 2.078125 -0.109375 C 1.59375 -0.109375 1.1875 -0.453125 1.1875 -0.953125 C 1.1875 -1.5 1.609375 -2.328125 3.25 -2.390625 Z M 3.25 -2.390625 "/>
+</symbol>
+<symbol overflow="visible" id="glyph0-3">
+<path style="stroke:none;" d="M 2.078125 -1.9375 C 2.296875 -1.890625 3.109375 -1.734375 3.109375 -1.015625 C 3.109375 -0.515625 2.765625 -0.109375 1.984375 -0.109375 C 1.140625 -0.109375 0.78125 -0.671875 0.59375 -1.53125 C 0.5625 -1.65625 0.5625 -1.6875 0.453125 -1.6875 C 0.328125 -1.6875 0.328125 -1.625 0.328125 -1.453125 L 0.328125 -0.125 C 0.328125 0.046875 0.328125 0.109375 0.4375 0.109375 C 0.484375 0.109375 0.5 0.09375 0.6875 -0.09375 C 0.703125 -0.109375 0.703125 -0.125 0.890625 -0.3125 C 1.328125 0.09375 1.78125 0.109375 1.984375 0.109375 C 3.125 0.109375 3.59375 -0.5625 3.59375 -1.28125 C 3.59375 -1.796875 3.296875 -2.109375 3.171875 -2.21875 C 2.84375 -2.546875 2.453125 -2.625 2.03125 -2.703125 C 1.46875 -2.8125 0.8125 -2.9375 0.8125 -3.515625 C 0.8125 -3.875 1.0625 -4.28125 1.921875 -4.28125 C 3.015625 -4.28125 3.078125 -3.375 3.09375 -3.078125 C 3.09375 -2.984375 3.1875 -2.984375 3.203125 -2.984375 C 3.34375 -2.984375 3.34375 -3.03125 3.34375 -3.21875 L 3.34375 -4.234375 C 3.34375 -4.390625 3.34375 -4.46875 3.234375 -4.46875 C 3.1875 -4.46875 3.15625 -4.46875 3.03125 -4.34375 C 3 -4.3125 2.90625 -4.21875 2.859375 -4.1875 C 2.484375 -4.46875 2.078125 -4.46875 1.921875 -4.46875 C 0.703125 -4.46875 0.328125 -3.796875 0.328125 -3.234375 C 0.328125 -2.890625 0.484375 -2.609375 0.75 -2.390625 C 1.078125 -2.140625 1.359375 -2.078125 2.078125 -1.9375 Z M 2.078125 -1.9375 "/>
+</symbol>
+<symbol overflow="visible" id="glyph0-4">
+<path style="stroke:none;" d="M 1.71875 -3.984375 L 3.15625 -3.984375 L 3.15625 -4.296875 L 1.71875 -4.296875 L 1.71875 -6.125 L 1.46875 -6.125 C 1.46875 -5.3125 1.171875 -4.25 0.1875 -4.203125 L 0.1875 -3.984375 L 1.03125 -3.984375 L 1.03125 -1.234375 C 1.03125 -0.015625 1.96875 0.109375 2.328125 0.109375 C 3.03125 0.109375 3.3125 -0.59375 3.3125 -1.234375 L 3.3125 -1.796875 L 3.0625 -1.796875 L 3.0625 -1.25 C 3.0625 -0.515625 2.765625 -0.140625 2.390625 -0.140625 C 1.71875 -0.140625 1.71875 -1.046875 1.71875 -1.21875 Z M 1.71875 -3.984375 "/>
+</symbol>
+<symbol overflow="visible" id="glyph0-5">
+<path style="stroke:none;" d="M 1.109375 -2.515625 C 1.171875 -4 2.015625 -4.25 2.359375 -4.25 C 3.375 -4.25 3.484375 -2.90625 3.484375 -2.515625 Z M 1.109375 -2.296875 L 3.890625 -2.296875 C 4.109375 -2.296875 4.140625 -2.296875 4.140625 -2.515625 C 4.140625 -3.5 3.59375 -4.46875 2.359375 -4.46875 C 1.203125 -4.46875 0.28125 -3.4375 0.28125 -2.1875 C 0.28125 -0.859375 1.328125 0.109375 2.46875 0.109375 C 3.6875 0.109375 4.140625 -1 4.140625 -1.1875 C 4.140625 -1.28125 4.0625 -1.3125 4 -1.3125 C 3.921875 -1.3125 3.890625 -1.25 3.875 -1.171875 C 3.53125 -0.140625 2.625 -0.140625 2.53125 -0.140625 C 2.03125 -0.140625 1.640625 -0.4375 1.40625 -0.8125 C 1.109375 -1.28125 1.109375 -1.9375 1.109375 -2.296875 Z M 1.109375 -2.296875 "/>
+</symbol>
+<symbol overflow="visible" id="glyph0-6">
+<path style="stroke:none;" d="M 1.671875 -3.3125 L 1.671875 -4.40625 L 0.28125 -4.296875 L 0.28125 -3.984375 C 0.984375 -3.984375 1.0625 -3.921875 1.0625 -3.421875 L 1.0625 -0.75 C 1.0625 -0.3125 0.953125 -0.3125 0.28125 -0.3125 L 0.28125 0 C 0.671875 -0.015625 1.140625 -0.03125 1.421875 -0.03125 C 1.8125 -0.03125 2.28125 -0.03125 2.6875 0 L 2.6875 -0.3125 L 2.46875 -0.3125 C 1.734375 -0.3125 1.71875 -0.421875 1.71875 -0.78125 L 1.71875 -2.3125 C 1.71875 -3.296875 2.140625 -4.1875 2.890625 -4.1875 C 2.953125 -4.1875 2.984375 -4.1875 3 -4.171875 C 2.96875 -4.171875 2.765625 -4.046875 2.765625 -3.78125 C 2.765625 -3.515625 2.984375 -3.359375 3.203125 -3.359375 C 3.375 -3.359375 3.625 -3.484375 3.625 -3.796875 C 3.625 -4.109375 3.3125 -4.40625 2.890625 -4.40625 C 2.15625 -4.40625 1.796875 -3.734375 1.671875 -3.3125 Z M 1.671875 -3.3125 "/>
+</symbol>
+<symbol overflow="visible" id="glyph0-7">
+<path style="stroke:none;" d="M 4.6875 -2.140625 C 4.6875 -3.40625 3.703125 -4.46875 2.5 -4.46875 C 1.25 -4.46875 0.28125 -3.375 0.28125 -2.140625 C 0.28125 -0.84375 1.3125 0.109375 2.484375 0.109375 C 3.6875 0.109375 4.6875 -0.875 4.6875 -2.140625 Z M 2.5 -0.140625 C 2.0625 -0.140625 1.625 -0.34375 1.359375 -0.8125 C 1.109375 -1.25 1.109375 -1.859375 1.109375 -2.21875 C 1.109375 -2.609375 1.109375 -3.140625 1.34375 -3.578125 C 1.609375 -4.03125 2.078125 -4.25 2.484375 -4.25 C 2.921875 -4.25 3.34375 -4.03125 3.609375 -3.59375 C 3.875 -3.171875 3.875 -2.59375 3.875 -2.21875 C 3.875 -1.859375 3.875 -1.3125 3.65625 -0.875 C 3.421875 -0.421875 2.984375 -0.140625 2.5 -0.140625 Z M 2.5 -0.140625 "/>
+</symbol>
+<symbol overflow="visible" id="glyph0-8">
+<path style="stroke:none;" d="M 1.71875 -3.75 L 1.71875 -4.40625 L 0.28125 -4.296875 L 0.28125 -3.984375 C 0.984375 -3.984375 1.0625 -3.921875 1.0625 -3.484375 L 1.0625 1.171875 C 1.0625 1.625 0.953125 1.625 0.28125 1.625 L 0.28125 1.9375 C 0.625 1.921875 1.140625 1.90625 1.390625 1.90625 C 1.671875 1.90625 2.171875 1.921875 2.515625 1.9375 L 2.515625 1.625 C 1.859375 1.625 1.75 1.625 1.75 1.171875 L 1.75 -0.59375 C 1.796875 -0.421875 2.21875 0.109375 2.96875 0.109375 C 4.15625 0.109375 5.1875 -0.875 5.1875 -2.15625 C 5.1875 -3.421875 4.234375 -4.40625 3.109375 -4.40625 C 2.328125 -4.40625 1.90625 -3.96875 1.71875 -3.75 Z M 1.75 -1.140625 L 1.75 -3.359375 C 2.03125 -3.875 2.515625 -4.15625 3.03125 -4.15625 C 3.765625 -4.15625 4.359375 -3.28125 4.359375 -2.15625 C 4.359375 -0.953125 3.671875 -0.109375 2.9375 -0.109375 C 2.53125 -0.109375 2.15625 -0.3125 1.890625 -0.71875 C 1.75 -0.921875 1.75 -0.9375 1.75 -1.140625 Z M 1.75 -1.140625 "/>
+</symbol>
+<symbol overflow="visible" id="glyph0-9">
+<path style="stroke:none;" d="M 1.765625 -4.40625 L 0.375 -4.296875 L 0.375 -3.984375 C 1.015625 -3.984375 1.109375 -3.921875 1.109375 -3.4375 L 1.109375 -0.75 C 1.109375 -0.3125 1 -0.3125 0.328125 -0.3125 L 0.328125 0 C 0.640625 -0.015625 1.1875 -0.03125 1.421875 -0.03125 C 1.78125 -0.03125 2.125 -0.015625 2.46875 0 L 2.46875 -0.3125 C 1.796875 -0.3125 1.765625 -0.359375 1.765625 -0.75 Z M 1.796875 -6.140625 C 1.796875 -6.453125 1.5625 -6.671875 1.28125 -6.671875 C 0.96875 -6.671875 0.75 -6.40625 0.75 -6.140625 C 0.75 -5.875 0.96875 -5.609375 1.28125 -5.609375 C 1.5625 -5.609375 1.796875 -5.828125 1.796875 -6.140625 Z M 1.796875 -6.140625 "/>
+</symbol>
+<symbol overflow="visible" id="glyph0-10">
+<path style="stroke:none;" d="M 1.171875 -2.171875 C 1.171875 -3.796875 1.984375 -4.21875 2.515625 -4.21875 C 2.609375 -4.21875 3.234375 -4.203125 3.578125 -3.84375 C 3.171875 -3.8125 3.109375 -3.515625 3.109375 -3.390625 C 3.109375 -3.125 3.296875 -2.9375 3.5625 -2.9375 C 3.828125 -2.9375 4.03125 -3.09375 4.03125 -3.40625 C 4.03125 -4.078125 3.265625 -4.46875 2.5 -4.46875 C 1.25 -4.46875 0.34375 -3.390625 0.34375 -2.15625 C 0.34375 -0.875 1.328125 0.109375 2.484375 0.109375 C 3.8125 0.109375 4.140625 -1.09375 4.140625 -1.1875 C 4.140625 -1.28125 4.03125 -1.28125 4 -1.28125 C 3.921875 -1.28125 3.890625 -1.25 3.875 -1.1875 C 3.59375 -0.265625 2.9375 -0.140625 2.578125 -0.140625 C 2.046875 -0.140625 1.171875 -0.5625 1.171875 -2.171875 Z M 1.171875 -2.171875 "/>
+</symbol>
+<symbol overflow="visible" id="glyph0-11">
+<path style="stroke:none;" d="M 4.359375 -7.09375 C 4.421875 -7.234375 4.421875 -7.25 4.421875 -7.28125 C 4.421875 -7.390625 4.328125 -7.484375 4.21875 -7.484375 C 4.078125 -7.484375 4.03125 -7.375 4 -7.28125 L 0.609375 2.109375 C 0.5625 2.25 0.5625 2.265625 0.5625 2.296875 C 0.5625 2.40625 0.640625 2.5 0.75 2.5 C 0.890625 2.5 0.9375 2.390625 0.96875 2.296875 Z M 4.359375 -7.09375 "/>
+</symbol>
+<symbol overflow="visible" id="glyph0-12">
+<path style="stroke:none;" d="M 1.75 -4.296875 L 1.75 -5.453125 C 1.75 -6.328125 2.21875 -6.8125 2.65625 -6.8125 C 2.6875 -6.8125 2.84375 -6.8125 2.984375 -6.734375 C 2.875 -6.703125 2.6875 -6.5625 2.6875 -6.3125 C 2.6875 -6.09375 2.84375 -5.890625 3.125 -5.890625 C 3.40625 -5.890625 3.5625 -6.09375 3.5625 -6.328125 C 3.5625 -6.703125 3.1875 -7.03125 2.65625 -7.03125 C 1.96875 -7.03125 1.109375 -6.5 1.109375 -5.4375 L 1.109375 -4.296875 L 0.328125 -4.296875 L 0.328125 -3.984375 L 1.109375 -3.984375 L 1.109375 -0.75 C 1.109375 -0.3125 1 -0.3125 0.34375 -0.3125 L 0.34375 0 C 0.734375 -0.015625 1.203125 -0.03125 1.46875 -0.03125 C 1.875 -0.03125 2.34375 -0.03125 2.734375 0 L 2.734375 -0.3125 L 2.53125 -0.3125 C 1.796875 -0.3125 1.78125 -0.421875 1.78125 -0.78125 L 1.78125 -3.984375 L 2.90625 -3.984375 L 2.90625 -4.296875 Z M 1.75 -4.296875 "/>
+</symbol>
+<symbol overflow="visible" id="glyph0-13">
+<path style="stroke:none;" d="M 1.71875 -3.765625 L 1.71875 -6.921875 L 0.28125 -6.8125 L 0.28125 -6.5 C 0.984375 -6.5 1.0625 -6.4375 1.0625 -5.9375 L 1.0625 0 L 1.3125 0 C 1.3125 -0.015625 1.390625 -0.15625 1.671875 -0.625 C 1.8125 -0.390625 2.234375 0.109375 2.96875 0.109375 C 4.15625 0.109375 5.1875 -0.875 5.1875 -2.15625 C 5.1875 -3.421875 4.21875 -4.40625 3.078125 -4.40625 C 2.296875 -4.40625 1.875 -3.9375 1.71875 -3.765625 Z M 1.75 -1.140625 L 1.75 -3.1875 C 1.75 -3.375 1.75 -3.390625 1.859375 -3.546875 C 2.25 -4.109375 2.796875 -4.1875 3.03125 -4.1875 C 3.484375 -4.1875 3.84375 -3.921875 4.078125 -3.546875 C 4.34375 -3.140625 4.359375 -2.578125 4.359375 -2.15625 C 4.359375 -1.796875 4.34375 -1.203125 4.0625 -0.75 C 3.84375 -0.4375 3.46875 -0.109375 2.9375 -0.109375 C 2.484375 -0.109375 2.125 -0.34375 1.890625 -0.71875 C 1.75 -0.921875 1.75 -0.953125 1.75 -1.140625 Z M 1.75 -1.140625 "/>
+</symbol>
+<symbol overflow="visible" id="glyph0-14">
+<path style="stroke:none;" d="M 3.78125 -0.546875 L 3.78125 0.109375 L 5.25 0 L 5.25 -0.3125 C 4.5625 -0.3125 4.46875 -0.375 4.46875 -0.875 L 4.46875 -6.921875 L 3.046875 -6.8125 L 3.046875 -6.5 C 3.734375 -6.5 3.8125 -6.4375 3.8125 -5.9375 L 3.8125 -3.78125 C 3.53125 -4.140625 3.09375 -4.40625 2.5625 -4.40625 C 1.390625 -4.40625 0.34375 -3.421875 0.34375 -2.140625 C 0.34375 -0.875 1.3125 0.109375 2.453125 0.109375 C 3.09375 0.109375 3.53125 -0.234375 3.78125 -0.546875 Z M 3.78125 -3.21875 L 3.78125 -1.171875 C 3.78125 -1 3.78125 -0.984375 3.671875 -0.8125 C 3.375 -0.328125 2.9375 -0.109375 2.5 -0.109375 C 2.046875 -0.109375 1.6875 -0.375 1.453125 -0.75 C 1.203125 -1.15625 1.171875 -1.71875 1.171875 -2.140625 C 1.171875 -2.5 1.1875 -3.09375 1.46875 -3.546875 C 1.6875 -3.859375 2.0625 -4.1875 2.609375 -4.1875 C 2.953125 -4.1875 3.375 -4.03125 3.671875 -3.59375 C 3.78125 -3.421875 3.78125 -3.40625 3.78125 -3.21875 Z M 3.78125 -3.21875 "/>
+</symbol>
+<symbol overflow="visible" id="glyph0-15">
+<path style="stroke:none;" d="M 2.890625 -3.515625 C 3.703125 -3.78125 4.28125 -4.46875 4.28125 -5.265625 C 4.28125 -6.078125 3.40625 -6.640625 2.453125 -6.640625 C 1.453125 -6.640625 0.6875 -6.046875 0.6875 -5.28125 C 0.6875 -4.953125 0.90625 -4.765625 1.203125 -4.765625 C 1.5 -4.765625 1.703125 -4.984375 1.703125 -5.28125 C 1.703125 -5.765625 1.234375 -5.765625 1.09375 -5.765625 C 1.390625 -6.265625 2.046875 -6.390625 2.40625 -6.390625 C 2.828125 -6.390625 3.375 -6.171875 3.375 -5.28125 C 3.375 -5.15625 3.34375 -4.578125 3.09375 -4.140625 C 2.796875 -3.65625 2.453125 -3.625 2.203125 -3.625 C 2.125 -3.609375 1.890625 -3.59375 1.8125 -3.59375 C 1.734375 -3.578125 1.671875 -3.5625 1.671875 -3.46875 C 1.671875 -3.359375 1.734375 -3.359375 1.90625 -3.359375 L 2.34375 -3.359375 C 3.15625 -3.359375 3.53125 -2.6875 3.53125 -1.703125 C 3.53125 -0.34375 2.84375 -0.0625 2.40625 -0.0625 C 1.96875 -0.0625 1.21875 -0.234375 0.875 -0.8125 C 1.21875 -0.765625 1.53125 -0.984375 1.53125 -1.359375 C 1.53125 -1.71875 1.265625 -1.921875 0.984375 -1.921875 C 0.734375 -1.921875 0.421875 -1.78125 0.421875 -1.34375 C 0.421875 -0.4375 1.34375 0.21875 2.4375 0.21875 C 3.65625 0.21875 4.5625 -0.6875 4.5625 -1.703125 C 4.5625 -2.515625 3.921875 -3.296875 2.890625 -3.515625 Z M 2.890625 -3.515625 "/>
+</symbol>
+<symbol overflow="visible" id="glyph0-16">
+<path style="stroke:none;" d="M 2.9375 -6.375 C 2.9375 -6.625 2.9375 -6.640625 2.703125 -6.640625 C 2.078125 -6 1.203125 -6 0.890625 -6 L 0.890625 -5.6875 C 1.09375 -5.6875 1.671875 -5.6875 2.1875 -5.953125 L 2.1875 -0.78125 C 2.1875 -0.421875 2.15625 -0.3125 1.265625 -0.3125 L 0.953125 -0.3125 L 0.953125 0 C 1.296875 -0.03125 2.15625 -0.03125 2.5625 -0.03125 C 2.953125 -0.03125 3.828125 -0.03125 4.171875 0 L 4.171875 -0.3125 L 3.859375 -0.3125 C 2.953125 -0.3125 2.9375 -0.421875 2.9375 -0.78125 Z M 2.9375 -6.375 "/>
+</symbol>
+<symbol overflow="visible" id="glyph0-17">
+<path style="stroke:none;" d="M 1.265625 -0.765625 L 2.328125 -1.796875 C 3.875 -3.171875 4.46875 -3.703125 4.46875 -4.703125 C 4.46875 -5.84375 3.578125 -6.640625 2.359375 -6.640625 C 1.234375 -6.640625 0.5 -5.71875 0.5 -4.828125 C 0.5 -4.28125 1 -4.28125 1.03125 -4.28125 C 1.203125 -4.28125 1.546875 -4.390625 1.546875 -4.8125 C 1.546875 -5.0625 1.359375 -5.328125 1.015625 -5.328125 C 0.9375 -5.328125 0.921875 -5.328125 0.890625 -5.3125 C 1.109375 -5.96875 1.65625 -6.328125 2.234375 -6.328125 C 3.140625 -6.328125 3.5625 -5.515625 3.5625 -4.703125 C 3.5625 -3.90625 3.078125 -3.125 2.515625 -2.5 L 0.609375 -0.375 C 0.5 -0.265625 0.5 -0.234375 0.5 0 L 4.203125 0 L 4.46875 -1.734375 L 4.234375 -1.734375 C 4.171875 -1.4375 4.109375 -1 4 -0.84375 C 3.9375 -0.765625 3.28125 -0.765625 3.0625 -0.765625 Z M 1.265625 -0.765625 "/>
+</symbol>
+<symbol overflow="visible" id="glyph0-18">
+<path style="stroke:none;" d="M 3.65625 -3.171875 L 3.65625 -2.84375 C 3.65625 -0.515625 2.625 -0.0625 2.046875 -0.0625 C 1.875 -0.0625 1.328125 -0.078125 1.0625 -0.421875 C 1.5 -0.421875 1.578125 -0.703125 1.578125 -0.875 C 1.578125 -1.1875 1.34375 -1.328125 1.125 -1.328125 C 0.96875 -1.328125 0.671875 -1.25 0.671875 -0.859375 C 0.671875 -0.1875 1.203125 0.21875 2.046875 0.21875 C 3.34375 0.21875 4.5625 -1.140625 4.5625 -3.28125 C 4.5625 -5.96875 3.40625 -6.640625 2.515625 -6.640625 C 1.96875 -6.640625 1.484375 -6.453125 1.0625 -6.015625 C 0.640625 -5.5625 0.421875 -5.140625 0.421875 -4.390625 C 0.421875 -3.15625 1.296875 -2.171875 2.40625 -2.171875 C 3.015625 -2.171875 3.421875 -2.59375 3.65625 -3.171875 Z M 2.421875 -2.40625 C 2.265625 -2.40625 1.796875 -2.40625 1.5 -3.03125 C 1.3125 -3.40625 1.3125 -3.890625 1.3125 -4.390625 C 1.3125 -4.921875 1.3125 -5.390625 1.53125 -5.765625 C 1.796875 -6.265625 2.171875 -6.390625 2.515625 -6.390625 C 2.984375 -6.390625 3.3125 -6.046875 3.484375 -5.609375 C 3.59375 -5.28125 3.640625 -4.65625 3.640625 -4.203125 C 3.640625 -3.375 3.296875 -2.40625 2.421875 -2.40625 Z M 2.421875 -2.40625 "/>
+</symbol>
+<symbol overflow="visible" id="glyph0-19">
+<path style="stroke:none;" d="M 1.3125 -3.265625 L 1.3125 -3.515625 C 1.3125 -6.03125 2.546875 -6.390625 3.0625 -6.390625 C 3.296875 -6.390625 3.71875 -6.328125 3.9375 -5.984375 C 3.78125 -5.984375 3.390625 -5.984375 3.390625 -5.546875 C 3.390625 -5.234375 3.625 -5.078125 3.84375 -5.078125 C 4 -5.078125 4.3125 -5.171875 4.3125 -5.5625 C 4.3125 -6.15625 3.875 -6.640625 3.046875 -6.640625 C 1.765625 -6.640625 0.421875 -5.359375 0.421875 -3.15625 C 0.421875 -0.484375 1.578125 0.21875 2.5 0.21875 C 3.609375 0.21875 4.5625 -0.71875 4.5625 -2.03125 C 4.5625 -3.296875 3.671875 -4.25 2.5625 -4.25 C 1.890625 -4.25 1.515625 -3.75 1.3125 -3.265625 Z M 2.5 -0.0625 C 1.875 -0.0625 1.578125 -0.65625 1.515625 -0.8125 C 1.328125 -1.28125 1.328125 -2.078125 1.328125 -2.25 C 1.328125 -3.03125 1.65625 -4.03125 2.546875 -4.03125 C 2.71875 -4.03125 3.171875 -4.03125 3.484375 -3.40625 C 3.65625 -3.046875 3.65625 -2.53125 3.65625 -2.046875 C 3.65625 -1.5625 3.65625 -1.0625 3.484375 -0.703125 C 3.1875 -0.109375 2.734375 -0.0625 2.5 -0.0625 Z M 2.5 -0.0625 "/>
+</symbol>
+<symbol overflow="visible" id="glyph0-20">
+<path style="stroke:none;" d="M 2.9375 -1.640625 L 2.9375 -0.78125 C 2.9375 -0.421875 2.90625 -0.3125 2.171875 -0.3125 L 1.96875 -0.3125 L 1.96875 0 C 2.375 -0.03125 2.890625 -0.03125 3.3125 -0.03125 C 3.734375 -0.03125 4.25 -0.03125 4.671875 0 L 4.671875 -0.3125 L 4.453125 -0.3125 C 3.71875 -0.3125 3.703125 -0.421875 3.703125 -0.78125 L 3.703125 -1.640625 L 4.6875 -1.640625 L 4.6875 -1.953125 L 3.703125 -1.953125 L 3.703125 -6.484375 C 3.703125 -6.6875 3.703125 -6.75 3.53125 -6.75 C 3.453125 -6.75 3.421875 -6.75 3.34375 -6.625 L 0.28125 -1.953125 L 0.28125 -1.640625 Z M 2.984375 -1.953125 L 0.5625 -1.953125 L 2.984375 -5.671875 Z M 2.984375 -1.953125 "/>
+</symbol>
+<symbol overflow="visible" id="glyph0-21">
+<path style="stroke:none;" d="M 4.578125 -3.1875 C 4.578125 -3.984375 4.53125 -4.78125 4.1875 -5.515625 C 3.734375 -6.484375 2.90625 -6.640625 2.5 -6.640625 C 1.890625 -6.640625 1.171875 -6.375 0.75 -5.453125 C 0.4375 -4.765625 0.390625 -3.984375 0.390625 -3.1875 C 0.390625 -2.4375 0.421875 -1.546875 0.84375 -0.78125 C 1.265625 0.015625 2 0.21875 2.484375 0.21875 C 3.015625 0.21875 3.78125 0.015625 4.21875 -0.9375 C 4.53125 -1.625 4.578125 -2.40625 4.578125 -3.1875 Z M 2.484375 0 C 2.09375 0 1.5 -0.25 1.328125 -1.203125 C 1.21875 -1.796875 1.21875 -2.71875 1.21875 -3.3125 C 1.21875 -3.953125 1.21875 -4.609375 1.296875 -5.140625 C 1.484375 -6.328125 2.234375 -6.421875 2.484375 -6.421875 C 2.8125 -6.421875 3.46875 -6.234375 3.65625 -5.25 C 3.765625 -4.6875 3.765625 -3.9375 3.765625 -3.3125 C 3.765625 -2.5625 3.765625 -1.890625 3.65625 -1.25 C 3.5 -0.296875 2.9375 0 2.484375 0 Z M 2.484375 0 "/>
+</symbol>
+<symbol overflow="visible" id="glyph0-22">
+<path style="stroke:none;" d="M 4.46875 -2 C 4.46875 -3.1875 3.65625 -4.1875 2.578125 -4.1875 C 2.109375 -4.1875 1.671875 -4.03125 1.3125 -3.671875 L 1.3125 -5.625 C 1.515625 -5.5625 1.84375 -5.5 2.15625 -5.5 C 3.390625 -5.5 4.09375 -6.40625 4.09375 -6.53125 C 4.09375 -6.59375 4.0625 -6.640625 3.984375 -6.640625 C 3.984375 -6.640625 3.953125 -6.640625 3.90625 -6.609375 C 3.703125 -6.515625 3.21875 -6.3125 2.546875 -6.3125 C 2.15625 -6.3125 1.6875 -6.390625 1.21875 -6.59375 C 1.140625 -6.625 1.125 -6.625 1.109375 -6.625 C 1 -6.625 1 -6.546875 1 -6.390625 L 1 -3.4375 C 1 -3.265625 1 -3.1875 1.140625 -3.1875 C 1.21875 -3.1875 1.234375 -3.203125 1.28125 -3.265625 C 1.390625 -3.421875 1.75 -3.96875 2.5625 -3.96875 C 3.078125 -3.96875 3.328125 -3.515625 3.40625 -3.328125 C 3.5625 -2.953125 3.59375 -2.578125 3.59375 -2.078125 C 3.59375 -1.71875 3.59375 -1.125 3.34375 -0.703125 C 3.109375 -0.3125 2.734375 -0.0625 2.28125 -0.0625 C 1.5625 -0.0625 0.984375 -0.59375 0.8125 -1.171875 C 0.84375 -1.171875 0.875 -1.15625 0.984375 -1.15625 C 1.3125 -1.15625 1.484375 -1.40625 1.484375 -1.640625 C 1.484375 -1.890625 1.3125 -2.140625 0.984375 -2.140625 C 0.84375 -2.140625 0.5 -2.0625 0.5 -1.609375 C 0.5 -0.75 1.1875 0.21875 2.296875 0.21875 C 3.453125 0.21875 4.46875 -0.734375 4.46875 -2 Z M 4.46875 -2 "/>
+</symbol>
+<symbol overflow="visible" id="glyph0-23">
+<path style="stroke:none;" d="M 4.75 -6.078125 C 4.828125 -6.1875 4.828125 -6.203125 4.828125 -6.421875 L 2.40625 -6.421875 C 1.203125 -6.421875 1.171875 -6.546875 1.140625 -6.734375 L 0.890625 -6.734375 L 0.5625 -4.6875 L 0.8125 -4.6875 C 0.84375 -4.84375 0.921875 -5.46875 1.0625 -5.59375 C 1.125 -5.65625 1.90625 -5.65625 2.03125 -5.65625 L 4.09375 -5.65625 C 3.984375 -5.5 3.203125 -4.40625 2.984375 -4.078125 C 2.078125 -2.734375 1.75 -1.34375 1.75 -0.328125 C 1.75 -0.234375 1.75 0.21875 2.21875 0.21875 C 2.671875 0.21875 2.671875 -0.234375 2.671875 -0.328125 L 2.671875 -0.84375 C 2.671875 -1.390625 2.703125 -1.9375 2.78125 -2.46875 C 2.828125 -2.703125 2.953125 -3.5625 3.40625 -4.171875 Z M 4.75 -6.078125 "/>
+</symbol>
+<symbol overflow="visible" id="glyph0-24">
+<path style="stroke:none;" d="M 1.625 -4.5625 C 1.171875 -4.859375 1.125 -5.1875 1.125 -5.359375 C 1.125 -5.96875 1.78125 -6.390625 2.484375 -6.390625 C 3.203125 -6.390625 3.84375 -5.875 3.84375 -5.15625 C 3.84375 -4.578125 3.453125 -4.109375 2.859375 -3.765625 Z M 3.078125 -3.609375 C 3.796875 -3.984375 4.28125 -4.5 4.28125 -5.15625 C 4.28125 -6.078125 3.40625 -6.640625 2.5 -6.640625 C 1.5 -6.640625 0.6875 -5.90625 0.6875 -4.96875 C 0.6875 -4.796875 0.703125 -4.34375 1.125 -3.875 C 1.234375 -3.765625 1.609375 -3.515625 1.859375 -3.34375 C 1.28125 -3.046875 0.421875 -2.5 0.421875 -1.5 C 0.421875 -0.453125 1.4375 0.21875 2.484375 0.21875 C 3.609375 0.21875 4.5625 -0.609375 4.5625 -1.671875 C 4.5625 -2.03125 4.453125 -2.484375 4.0625 -2.90625 C 3.875 -3.109375 3.71875 -3.203125 3.078125 -3.609375 Z M 2.078125 -3.1875 L 3.3125 -2.40625 C 3.59375 -2.21875 4.0625 -1.921875 4.0625 -1.3125 C 4.0625 -0.578125 3.3125 -0.0625 2.5 -0.0625 C 1.640625 -0.0625 0.921875 -0.671875 0.921875 -1.5 C 0.921875 -2.078125 1.234375 -2.71875 2.078125 -3.1875 Z M 2.078125 -3.1875 "/>
+</symbol>
+</g>
+<clipPath id="clip1">
+ <path d="M 225 0 L 261.648438 0 L 261.648438 14 L 225 14 Z M 225 0 "/>
+</clipPath>
+<clipPath id="clip2">
+ <path d="M 211 0 L 261.648438 0 L 261.648438 28 L 211 28 Z M 211 0 "/>
+</clipPath>
+<clipPath id="clip3">
+ <path d="M 161 85 L 212 85 L 212 102.441406 L 161 102.441406 Z M 161 85 "/>
+</clipPath>
+<clipPath id="clip4">
+ <path d="M 147 71 L 226 71 L 226 102.441406 L 147 102.441406 Z M 147 71 "/>
+</clipPath>
+<clipPath id="clip5">
+ <path d="M 213 14 L 261.648438 14 L 261.648438 57 L 213 57 Z M 213 14 "/>
+</clipPath>
+</defs>
+<g id="surface1">
+<g clip-path="url(#clip1)" clip-rule="nonzero">
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(2.74353%,21.174622%,25.881958%);fill-opacity:1;" d="M 257.269531 0.398438 L 229.179688 0.398438 C 226.976562 0.398438 225.195312 2.183594 225.195312 4.382812 L 225.195312 9.179688 C 225.195312 11.382812 226.976562 13.167969 229.179688 13.167969 L 257.269531 13.167969 C 259.46875 13.167969 261.253906 11.382812 261.253906 9.179688 L 261.253906 4.382812 C 261.253906 2.183594 259.46875 0.398438 257.269531 0.398438 Z M 257.269531 0.398438 "/>
+</g>
+<g clip-path="url(#clip2)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(34.510803%,43.136597%,45.881653%);stroke-opacity:1;stroke-miterlimit:10;" d="M 241.051 27.846 L 213.051 27.846 C 210.527562 27.947563 208.746312 26.162406 209.051 23.846 L 209.051 18.846 C 208.746312 16.963188 210.527562 15.178031 213.051 14.846 L 241.051 14.846 C 243.01975 15.178031 244.804906 16.963188 245.051 18.846 L 245.051 23.846 C 244.804906 26.162406 243.01975 27.947563 240.820531 27.947563 Z M 241.051 27.846 " transform="matrix(1,0,0,-1,16.449,28.346)"/>
+</g>
+<g style="fill:rgb(82.743835%,21.174622%,50.979614%);fill-opacity:1;">
+ <use xlink:href="#glyph0-1" x="228.512" y="9.847"/>
+ <use xlink:href="#glyph0-2" x="236.813835" y="9.847"/>
+ <use xlink:href="#glyph0-3" x="241.795135" y="9.847"/>
+ <use xlink:href="#glyph0-4" x="245.724384" y="9.847"/>
+ <use xlink:href="#glyph0-5" x="249.598839" y="9.847"/>
+ <use xlink:href="#glyph0-6" x="254.026219" y="9.847"/>
+</g>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(2.74353%,21.174622%,25.881958%);fill-opacity:1;" d="M 213 0.398438 L 160.058594 0.398438 C 157.859375 0.398438 156.074219 2.183594 156.074219 4.382812 L 156.074219 13.015625 C 156.074219 15.21875 157.859375 17 160.058594 17 L 213 17 C 215.199219 17 216.984375 15.21875 216.984375 13.015625 L 216.984375 4.382812 C 216.984375 2.183594 215.199219 0.398438 213 0.398438 Z M 213 0.398438 "/>
+<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(34.510803%,43.136597%,45.881653%);stroke-opacity:1;stroke-miterlimit:10;" d="M 197.051 27.846 L 144.051 27.846 C 141.410375 27.947563 139.625219 26.162406 140.051 23.846 L 140.051 14.846 C 139.625219 13.12725 141.410375 11.346 144.051 10.846 L 197.051 10.846 C 198.750219 11.346 200.535375 13.12725 200.051 14.846 L 200.051 23.846 C 200.535375 26.162406 198.750219 27.947563 196.551 27.947563 Z M 197.051 27.846 " transform="matrix(1,0,0,-1,16.449,28.346)"/>
+<g style="fill:rgb(82.743835%,21.174622%,50.979614%);fill-opacity:1;">
+ <use xlink:href="#glyph0-4" x="159.393" y="11.191"/>
+ <use xlink:href="#glyph0-7" x="163.267455" y="11.191"/>
+ <use xlink:href="#glyph0-8" x="168.248755" y="11.191"/>
+ <use xlink:href="#glyph0-9" x="173.783976" y="11.191"/>
+ <use xlink:href="#glyph0-10" x="176.551586" y="11.191"/>
+ <use xlink:href="#glyph0-11" x="180.978965" y="11.191"/>
+ <use xlink:href="#glyph0-12" x="185.960265" y="11.191"/>
+ <use xlink:href="#glyph0-7" x="189.004836" y="11.191"/>
+</g>
+<g style="fill:rgb(82.743835%,21.174622%,50.979614%);fill-opacity:1;">
+ <use xlink:href="#glyph0-7" x="194.265089" y="11.191"/>
+ <use xlink:href="#glyph0-13" x="199.246389" y="11.191"/>
+ <use xlink:href="#glyph0-2" x="204.781609" y="11.191"/>
+ <use xlink:href="#glyph0-6" x="209.762909" y="11.191"/>
+</g>
+<g clip-path="url(#clip3)" clip-rule="nonzero">
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(2.74353%,21.174622%,25.881958%);fill-opacity:1;" d="M 207.175781 85.4375 L 165.886719 85.4375 C 163.683594 85.4375 161.898438 87.222656 161.898438 89.421875 L 161.898438 98.058594 C 161.898438 100.257812 163.683594 102.042969 165.886719 102.042969 L 207.175781 102.042969 C 209.375 102.042969 211.160156 100.257812 211.160156 98.058594 L 211.160156 89.421875 C 211.160156 87.222656 209.375 85.4375 207.175781 85.4375 Z M 207.175781 85.4375 "/>
+</g>
+<g clip-path="url(#clip4)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(34.510803%,43.136597%,45.881653%);stroke-opacity:1;stroke-miterlimit:10;" d="M 191.051 -57.154 L 149.051 -57.154 C 147.234594 -57.0915 145.449437 -58.876656 145.051 -61.154 L 145.051 -70.154 C 145.449437 -71.911812 147.234594 -73.696969 149.051 -74.154 L 191.051 -74.154 C 192.926 -73.696969 194.711156 -71.911812 195.051 -70.154 L 195.051 -61.154 C 194.711156 -58.876656 192.926 -57.0915 190.726781 -57.0915 Z M 191.051 -57.154 " transform="matrix(1,0,0,-1,16.449,28.346)"/>
+</g>
+<g style="fill:rgb(82.743835%,21.174622%,50.979614%);fill-opacity:1;">
+ <use xlink:href="#glyph0-4" x="165.219" y="96.23"/>
+ <use xlink:href="#glyph0-7" x="169.093455" y="96.23"/>
+ <use xlink:href="#glyph0-8" x="174.074755" y="96.23"/>
+ <use xlink:href="#glyph0-9" x="179.609976" y="96.23"/>
+ <use xlink:href="#glyph0-10" x="182.377586" y="96.23"/>
+ <use xlink:href="#glyph0-11" x="186.804965" y="96.23"/>
+ <use xlink:href="#glyph0-13" x="191.786265" y="96.23"/>
+ <use xlink:href="#glyph0-2" x="197.321486" y="96.23"/>
+ <use xlink:href="#glyph0-14" x="202.302786" y="96.23"/>
+</g>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(2.74353%,21.174622%,25.881958%);fill-opacity:1;" d="M 28.515625 28.746094 L 4.382812 28.746094 C 2.183594 28.746094 0.398438 30.527344 0.398438 32.730469 L 0.398438 38.320312 C 0.398438 40.519531 2.183594 42.304688 4.382812 42.304688 L 28.515625 42.304688 C 30.714844 42.304688 32.5 40.519531 32.5 38.320312 L 32.5 32.730469 C 32.5 30.527344 30.714844 28.746094 28.515625 28.746094 Z M 28.515625 28.746094 "/>
+<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(34.510803%,43.136597%,45.881653%);stroke-opacity:1;stroke-miterlimit:10;" d="M 12.051 -0.154 L -11.949 -0.154 C -14.265406 -0.400094 -16.050562 -2.181344 -15.949 -4.154 L -15.949 -10.154 C -16.050562 -12.173531 -14.265406 -13.958687 -11.949 -14.154 L 12.051 -14.154 C 14.265844 -13.958687 16.051 -12.173531 16.051 -10.154 L 16.051 -4.154 C 16.051 -2.181344 14.265844 -0.400094 12.066625 -0.400094 Z M 12.051 -0.154 " transform="matrix(1,0,0,-1,16.449,28.346)"/>
+<g style="fill:rgb(57.647705%,63.134766%,63.134766%);fill-opacity:1;">
+ <use xlink:href="#glyph0-15" x="3.719" y="38.984"/>
+ <use xlink:href="#glyph0-16" x="8.7003" y="38.984"/>
+ <use xlink:href="#glyph0-14" x="13.6816" y="38.984"/>
+ <use xlink:href="#glyph0-17" x="19.216821" y="38.984"/>
+ <use xlink:href="#glyph0-15" x="24.198121" y="38.984"/>
+</g>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(2.74353%,21.174622%,25.881958%);fill-opacity:1;" d="M 84.929688 28.746094 L 61.355469 28.746094 C 59.152344 28.746094 57.367188 30.527344 57.367188 32.730469 L 57.367188 37.820312 C 57.367188 40.023438 59.152344 41.804688 61.355469 41.804688 L 84.929688 41.804688 C 87.132812 41.804688 88.917969 40.023438 88.917969 37.820312 L 88.917969 32.730469 C 88.917969 30.527344 87.132812 28.746094 84.929688 28.746094 Z M 84.929688 28.746094 "/>
+<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(34.510803%,43.136597%,45.881653%);stroke-opacity:1;stroke-miterlimit:10;" d="M 68.051 -0.154 L 45.051 -0.154 C 42.703344 -0.400094 40.918188 -2.181344 41.051 -4.154 L 41.051 -9.154 C 40.918188 -11.677437 42.703344 -13.458687 45.051 -13.154 L 68.051 -13.154 C 70.683813 -13.458687 72.468969 -11.677437 72.051 -9.154 L 72.051 -4.154 C 72.468969 -2.181344 70.683813 -0.400094 68.480688 -0.400094 Z M 68.051 -0.154 " transform="matrix(1,0,0,-1,16.449,28.346)"/>
+<g style="fill:rgb(57.647705%,63.134766%,63.134766%);fill-opacity:1;">
+ <use xlink:href="#glyph0-18" x="60.689" y="38.486"/>
+ <use xlink:href="#glyph0-19" x="65.6703" y="38.486"/>
+ <use xlink:href="#glyph0-20" x="70.6516" y="38.486"/>
+ <use xlink:href="#glyph0-21" x="75.6329" y="38.486"/>
+ <use xlink:href="#glyph0-2" x="80.6142" y="38.486"/>
+</g>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(2.74353%,21.174622%,25.881958%);fill-opacity:1;" d="M 141.902344 28.746094 L 117.769531 28.746094 C 115.570312 28.746094 113.785156 30.527344 113.785156 32.730469 L 113.785156 38.320312 C 113.785156 40.519531 115.570312 42.304688 117.769531 42.304688 L 141.902344 42.304688 C 144.101562 42.304688 145.886719 40.519531 145.886719 38.320312 L 145.886719 32.730469 C 145.886719 30.527344 144.101562 28.746094 141.902344 28.746094 Z M 141.902344 28.746094 "/>
+<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(34.510803%,43.136597%,45.881653%);stroke-opacity:1;stroke-miterlimit:10;" d="M 125.051 -0.154 L 101.051 -0.154 C 99.121313 -0.400094 97.336156 -2.181344 97.051 -4.154 L 97.051 -10.154 C 97.336156 -12.173531 99.121313 -13.958687 101.051 -14.154 L 125.051 -14.154 C 127.652563 -13.958687 129.437719 -12.173531 129.051 -10.154 L 129.051 -4.154 C 129.437719 -2.181344 127.652563 -0.400094 125.453344 -0.400094 Z M 125.051 -0.154 " transform="matrix(1,0,0,-1,16.449,28.346)"/>
+<g style="fill:rgb(57.647705%,63.134766%,63.134766%);fill-opacity:1;">
+ <use xlink:href="#glyph0-22" x="117.105" y="38.984"/>
+ <use xlink:href="#glyph0-5" x="122.0863" y="38.984"/>
+ <use xlink:href="#glyph0-19" x="126.513679" y="38.984"/>
+ <use xlink:href="#glyph0-14" x="131.494979" y="38.984"/>
+ <use xlink:href="#glyph0-14" x="137.0302" y="38.984"/>
+</g>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(2.74353%,21.174622%,25.881958%);fill-opacity:1;" d="M 198.320312 28.746094 L 174.742188 28.746094 C 172.539062 28.746094 170.753906 30.527344 170.753906 32.730469 L 170.753906 38.320312 C 170.753906 40.519531 172.539062 42.304688 174.742188 42.304688 L 198.320312 42.304688 C 200.519531 42.304688 202.304688 40.519531 202.304688 38.320312 L 202.304688 32.730469 C 202.304688 30.527344 200.519531 28.746094 198.320312 28.746094 Z M 198.320312 28.746094 "/>
+<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(34.510803%,43.136597%,45.881653%);stroke-opacity:1;stroke-miterlimit:10;" d="M 182.051 -0.154 L 158.051 -0.154 C 156.090062 -0.400094 154.304906 -2.181344 154.051 -4.154 L 154.051 -10.154 C 154.304906 -12.173531 156.090062 -13.958687 158.051 -14.154 L 182.051 -14.154 C 184.070531 -13.958687 185.855687 -12.173531 186.051 -10.154 L 186.051 -4.154 C 185.855687 -2.181344 184.070531 -0.400094 181.871312 -0.400094 Z M 182.051 -0.154 " transform="matrix(1,0,0,-1,16.449,28.346)"/>
+<g style="fill:rgb(57.647705%,63.134766%,63.134766%);fill-opacity:1;">
+ <use xlink:href="#glyph0-15" x="174.074" y="38.984"/>
+ <use xlink:href="#glyph0-14" x="179.0553" y="38.984"/>
+ <use xlink:href="#glyph0-5" x="184.590521" y="38.984"/>
+ <use xlink:href="#glyph0-17" x="189.0179" y="38.984"/>
+ <use xlink:href="#glyph0-19" x="193.9992" y="38.984"/>
+</g>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(2.74353%,21.174622%,25.881958%);fill-opacity:1;" d="M 255.289062 28.746094 L 231.15625 28.746094 C 228.957031 28.746094 227.171875 30.527344 227.171875 32.730469 L 227.171875 38.320312 C 227.171875 40.519531 228.957031 42.304688 231.15625 42.304688 L 255.289062 42.304688 C 257.488281 42.304688 259.273438 40.519531 259.273438 38.320312 L 259.273438 32.730469 C 259.273438 30.527344 257.488281 28.746094 255.289062 28.746094 Z M 255.289062 28.746094 "/>
+<g clip-path="url(#clip5)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(34.510803%,43.136597%,45.881653%);stroke-opacity:1;stroke-miterlimit:10;" d="M 239.051 -0.154 L 215.051 -0.154 C 212.508031 -0.400094 210.722875 -2.181344 211.051 -4.154 L 211.051 -10.154 C 210.722875 -12.173531 212.508031 -13.958687 215.051 -14.154 L 239.051 -14.154 C 241.039281 -13.958687 242.824437 -12.173531 243.051 -10.154 L 243.051 -4.154 C 242.824437 -2.181344 241.039281 -0.400094 238.840062 -0.400094 Z M 239.051 -0.154 " transform="matrix(1,0,0,-1,16.449,28.346)"/>
+</g>
+<g style="fill:rgb(57.647705%,63.134766%,63.134766%);fill-opacity:1;">
+ <use xlink:href="#glyph0-23" x="230.491" y="38.984"/>
+ <use xlink:href="#glyph0-15" x="235.4723" y="38.984"/>
+ <use xlink:href="#glyph0-24" x="240.4536" y="38.984"/>
+ <use xlink:href="#glyph0-23" x="245.4349" y="38.984"/>
+ <use xlink:href="#glyph0-14" x="250.4162" y="38.984"/>
+</g>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(2.74353%,21.174622%,25.881958%);fill-opacity:1;" d="M 198.59375 57.089844 L 174.464844 57.089844 C 172.261719 57.089844 170.480469 58.875 170.480469 61.078125 L 170.480469 66.664062 C 170.480469 68.867188 172.261719 70.652344 174.464844 70.652344 L 198.59375 70.652344 C 200.796875 70.652344 202.582031 68.867188 202.582031 66.664062 L 202.582031 61.078125 C 202.582031 58.875 200.796875 57.089844 198.59375 57.089844 Z M 198.59375 57.089844 "/>
+<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(34.510803%,43.136597%,45.881653%);stroke-opacity:1;stroke-miterlimit:10;" d="M 182.051 -29.154 L 158.051 -29.154 C 155.812719 -28.743844 154.031469 -30.529 154.051 -33.154 L 154.051 -38.154 C 154.031469 -40.521187 155.812719 -42.306344 158.051 -42.154 L 182.051 -42.154 C 184.347875 -42.306344 186.133031 -40.521187 186.051 -38.154 L 186.051 -33.154 C 186.133031 -30.529 184.347875 -28.743844 182.14475 -28.743844 Z M 182.051 -29.154 " transform="matrix(1,0,0,-1,16.449,28.346)"/>
+<g style="fill:rgb(57.647705%,63.134766%,63.134766%);fill-opacity:1;">
+ <use xlink:href="#glyph0-15" x="173.798" y="67.33"/>
+ <use xlink:href="#glyph0-13" x="178.7793" y="67.33"/>
+ <use xlink:href="#glyph0-23" x="184.314521" y="67.33"/>
+ <use xlink:href="#glyph0-16" x="189.295821" y="67.33"/>
+ <use xlink:href="#glyph0-19" x="194.277121" y="67.33"/>
+</g>
+<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(34.510803%,43.136597%,45.881653%);stroke-opacity:1;stroke-miterlimit:10;" d="M 227.051 14.846 L 227.051 0.846 " transform="matrix(1,0,0,-1,16.449,28.346)"/>
+<path style="fill:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(34.510803%,43.136597%,45.881653%);stroke-opacity:1;stroke-miterlimit:10;" d="M -1.552713 2.073395 C -1.423806 1.296051 -0.00193125 0.128083 0.388694 -0.00082375 C -0.00193125 -0.12973 -1.423806 -1.293792 -1.552713 -2.071136 " transform="matrix(0,1,1,0,243.22348,27.63865)"/>
+<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(34.510803%,43.136597%,45.881653%);stroke-opacity:1;stroke-miterlimit:10;" d="M 170.051 10.846 L 170.051 0.846 " transform="matrix(1,0,0,-1,16.449,28.346)"/>
+<path style="fill:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(34.510803%,43.136597%,45.881653%);stroke-opacity:1;stroke-miterlimit:10;" d="M -1.552713 2.071703 C -1.423806 1.294359 -0.00193125 0.130296 0.388694 0.00139 C -0.00193125 -0.131422 -1.423806 -1.295485 -1.552713 -2.072829 " transform="matrix(0,1,1,0,186.52986,27.63865)"/>
+<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(34.510803%,43.136597%,45.881653%);stroke-opacity:1;stroke-miterlimit:10;" d="M 170.051 -57.154 L 170.051 -43.154 " transform="matrix(1,0,0,-1,16.449,28.346)"/>
+<path style="fill:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(34.510803%,43.136597%,45.881653%);stroke-opacity:1;stroke-miterlimit:10;" d="M -1.55561 2.072829 C -1.422798 1.295485 -0.0009225 0.131422 0.389702 -0.00139 C -0.0009225 -0.130296 -1.422798 -1.294359 -1.55561 -2.071703 " transform="matrix(0,-1,-1,0,186.52986,71.75689)"/>
+<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(34.510803%,43.136597%,45.881653%);stroke-opacity:1;stroke-miterlimit:10;" d="M 16.051 -7.154 L 35.051 -7.154 " transform="matrix(1,0,0,-1,16.449,28.346)"/>
+<path style="fill:none;stroke-width:0.995581;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(34.510803%,43.136597%,45.881653%);stroke-opacity:1;stroke-miterlimit:10;" d="M 5.019843 0.00015644 C 5.022038 1.386866 3.89807 2.508998 2.511361 2.511194 C 1.124634 2.509483 -0.00140491 1.385531 0.000305992 -0.0011951 C -0.00188928 -1.387904 1.12208 -2.510037 2.508789 -2.512232 C 3.895515 -2.510522 5.021554 -1.38657 5.019843 0.00015644 Z M 5.019843 0.00015644 " transform="matrix(1,-0.0044,-0.0044,-1,51.55047,35.3699)"/>
+<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(34.510803%,43.136597%,45.881653%);stroke-opacity:1;stroke-miterlimit:10;" d="M 73.051 -7.154 L 91.051 -7.154 " transform="matrix(1,0,0,-1,16.449,28.346)"/>
+<path style="fill:none;stroke-width:0.995581;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(34.510803%,43.136597%,45.881653%);stroke-opacity:1;stroke-miterlimit:10;" d="M 5.020915 0.00139328 C 5.022626 1.38812 3.896587 2.512071 2.509878 2.509876 C 1.123152 2.511587 -0.00080016 1.385548 0.00139511 -0.00116136 C -0.000315794 -1.387888 1.125723 -2.511839 2.512432 -2.509644 C 3.895253 -2.511372 5.019204 -1.385333 5.020915 0.00139328 Z M 5.020915 0.00139328 " transform="matrix(1,0.0044,0.0044,-1,107.96736,35.42852)"/>
+<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(34.510803%,43.136597%,45.881653%);stroke-opacity:1;stroke-miterlimit:10;" d="M 130.051 -7.154 L 148.051 -7.154 " transform="matrix(1,0,0,-1,16.449,28.346)"/>
+<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(34.510803%,43.136597%,45.881653%);stroke-opacity:1;stroke-miterlimit:10;" d="M 5.019321 0.0009025 C 5.019321 1.387621 3.898227 2.508715 2.511509 2.508715 C 1.12479 2.508715 -0.00021 1.387621 -0.00021 0.0009025 C -0.00021 -1.385816 1.12479 -2.510816 2.511509 -2.510816 C 3.898227 -2.510816 5.019321 -1.385816 5.019321 0.0009025 Z M 5.019321 0.0009025 " transform="matrix(1,0,0,-1,164.93771,35.52434)"/>
+<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(34.510803%,43.136597%,45.881653%);stroke-opacity:1;stroke-miterlimit:10;" d="M 186.051 -7.154 L 205.051 -7.154 " transform="matrix(1,0,0,-1,16.449,28.346)"/>
+<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(34.510803%,43.136597%,45.881653%);stroke-opacity:1;stroke-miterlimit:10;" d="M 5.02042 0.0009025 C 5.02042 1.387621 3.89542 2.508715 2.508701 2.508715 C 1.125889 2.508715 0.00088875 1.387621 0.00088875 0.0009025 C 0.00088875 -1.385816 1.125889 -2.510816 2.508701 -2.510816 C 3.89542 -2.510816 5.02042 -1.385816 5.02042 0.0009025 Z M 5.02042 0.0009025 " transform="matrix(1,0,0,-1,221.35458,35.52434)"/>
+<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(34.510803%,43.136597%,45.881653%);stroke-opacity:1;stroke-miterlimit:10;" d="M 129.836156 -7.177437 C 144.258031 -7.177437 139.211156 -35.525094 148.211156 -35.525094 " transform="matrix(1,0,0,-1,16.449,28.346)"/>
+<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(34.510803%,43.136597%,45.881653%);stroke-opacity:1;stroke-miterlimit:10;" d="M 5.022634 0.00006625 C 5.022634 1.386785 3.897634 2.511785 2.510915 2.511785 C 1.124196 2.511785 -0.00080375 1.386785 -0.00080375 0.00006625 C -0.00080375 -1.386652 1.124196 -2.511652 2.510915 -2.511652 C 3.897634 -2.511652 5.022634 -1.386652 5.022634 0.00006625 Z M 5.022634 0.00006625 " transform="matrix(1,0,0,-1,164.66096,63.87116)"/>
+</g>
+</svg>
diff --git a/blag/static/media/git-repo-state-4.svg b/blag/static/media/git-repo-state-4.svg
new file mode 100644
index 0000000..57c6548
--- /dev/null
+++ b/blag/static/media/git-repo-state-4.svg
@@ -0,0 +1,232 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="381.634pt" height="74.094pt" viewBox="0 0 381.634 74.094" version="1.1">
+<defs>
+<g>
+<symbol overflow="visible" id="glyph0-0">
+<path style="stroke:none;" d=""/>
+</symbol>
+<symbol overflow="visible" id="glyph0-1">
+<path style="stroke:none;" d="M 1.09375 -3.421875 L 1.09375 -0.75 C 1.09375 -0.3125 0.984375 -0.3125 0.3125 -0.3125 L 0.3125 0 C 0.671875 -0.015625 1.171875 -0.03125 1.453125 -0.03125 C 1.703125 -0.03125 2.21875 -0.015625 2.5625 0 L 2.5625 -0.3125 C 1.890625 -0.3125 1.78125 -0.3125 1.78125 -0.75 L 1.78125 -2.59375 C 1.78125 -3.625 2.5 -4.1875 3.125 -4.1875 C 3.765625 -4.1875 3.875 -3.65625 3.875 -3.078125 L 3.875 -0.75 C 3.875 -0.3125 3.765625 -0.3125 3.09375 -0.3125 L 3.09375 0 C 3.4375 -0.015625 3.953125 -0.03125 4.21875 -0.03125 C 4.46875 -0.03125 5 -0.015625 5.328125 0 L 5.328125 -0.3125 C 4.671875 -0.3125 4.5625 -0.3125 4.5625 -0.75 L 4.5625 -2.59375 C 4.5625 -3.625 5.265625 -4.1875 5.90625 -4.1875 C 6.53125 -4.1875 6.640625 -3.65625 6.640625 -3.078125 L 6.640625 -0.75 C 6.640625 -0.3125 6.53125 -0.3125 5.859375 -0.3125 L 5.859375 0 C 6.203125 -0.015625 6.71875 -0.03125 6.984375 -0.03125 C 7.25 -0.03125 7.765625 -0.015625 8.109375 0 L 8.109375 -0.3125 C 7.59375 -0.3125 7.34375 -0.3125 7.328125 -0.609375 L 7.328125 -2.515625 C 7.328125 -3.375 7.328125 -3.671875 7.015625 -4.03125 C 6.875 -4.203125 6.546875 -4.40625 5.96875 -4.40625 C 5.140625 -4.40625 4.6875 -3.8125 4.53125 -3.421875 C 4.390625 -4.296875 3.65625 -4.40625 3.203125 -4.40625 C 2.46875 -4.40625 2 -3.984375 1.71875 -3.359375 L 1.71875 -4.40625 L 0.3125 -4.296875 L 0.3125 -3.984375 C 1.015625 -3.984375 1.09375 -3.921875 1.09375 -3.421875 Z M 1.09375 -3.421875 "/>
+</symbol>
+<symbol overflow="visible" id="glyph0-2">
+<path style="stroke:none;" d="M 3.3125 -0.75 C 3.359375 -0.359375 3.625 0.0625 4.09375 0.0625 C 4.3125 0.0625 4.921875 -0.078125 4.921875 -0.890625 L 4.921875 -1.453125 L 4.671875 -1.453125 L 4.671875 -0.890625 C 4.671875 -0.3125 4.421875 -0.25 4.3125 -0.25 C 3.984375 -0.25 3.9375 -0.703125 3.9375 -0.75 L 3.9375 -2.734375 C 3.9375 -3.15625 3.9375 -3.546875 3.578125 -3.921875 C 3.1875 -4.3125 2.6875 -4.46875 2.21875 -4.46875 C 1.390625 -4.46875 0.703125 -4 0.703125 -3.34375 C 0.703125 -3.046875 0.90625 -2.875 1.171875 -2.875 C 1.453125 -2.875 1.625 -3.078125 1.625 -3.328125 C 1.625 -3.453125 1.578125 -3.78125 1.109375 -3.78125 C 1.390625 -4.140625 1.875 -4.25 2.1875 -4.25 C 2.6875 -4.25 3.25 -3.859375 3.25 -2.96875 L 3.25 -2.609375 C 2.734375 -2.578125 2.046875 -2.546875 1.421875 -2.25 C 0.671875 -1.90625 0.421875 -1.390625 0.421875 -0.953125 C 0.421875 -0.140625 1.390625 0.109375 2.015625 0.109375 C 2.671875 0.109375 3.125 -0.296875 3.3125 -0.75 Z M 3.25 -2.390625 L 3.25 -1.390625 C 3.25 -0.453125 2.53125 -0.109375 2.078125 -0.109375 C 1.59375 -0.109375 1.1875 -0.453125 1.1875 -0.953125 C 1.1875 -1.5 1.609375 -2.328125 3.25 -2.390625 Z M 3.25 -2.390625 "/>
+</symbol>
+<symbol overflow="visible" id="glyph0-3">
+<path style="stroke:none;" d="M 2.078125 -1.9375 C 2.296875 -1.890625 3.109375 -1.734375 3.109375 -1.015625 C 3.109375 -0.515625 2.765625 -0.109375 1.984375 -0.109375 C 1.140625 -0.109375 0.78125 -0.671875 0.59375 -1.53125 C 0.5625 -1.65625 0.5625 -1.6875 0.453125 -1.6875 C 0.328125 -1.6875 0.328125 -1.625 0.328125 -1.453125 L 0.328125 -0.125 C 0.328125 0.046875 0.328125 0.109375 0.4375 0.109375 C 0.484375 0.109375 0.5 0.09375 0.6875 -0.09375 C 0.703125 -0.109375 0.703125 -0.125 0.890625 -0.3125 C 1.328125 0.09375 1.78125 0.109375 1.984375 0.109375 C 3.125 0.109375 3.59375 -0.5625 3.59375 -1.28125 C 3.59375 -1.796875 3.296875 -2.109375 3.171875 -2.21875 C 2.84375 -2.546875 2.453125 -2.625 2.03125 -2.703125 C 1.46875 -2.8125 0.8125 -2.9375 0.8125 -3.515625 C 0.8125 -3.875 1.0625 -4.28125 1.921875 -4.28125 C 3.015625 -4.28125 3.078125 -3.375 3.09375 -3.078125 C 3.09375 -2.984375 3.1875 -2.984375 3.203125 -2.984375 C 3.34375 -2.984375 3.34375 -3.03125 3.34375 -3.21875 L 3.34375 -4.234375 C 3.34375 -4.390625 3.34375 -4.46875 3.234375 -4.46875 C 3.1875 -4.46875 3.15625 -4.46875 3.03125 -4.34375 C 3 -4.3125 2.90625 -4.21875 2.859375 -4.1875 C 2.484375 -4.46875 2.078125 -4.46875 1.921875 -4.46875 C 0.703125 -4.46875 0.328125 -3.796875 0.328125 -3.234375 C 0.328125 -2.890625 0.484375 -2.609375 0.75 -2.390625 C 1.078125 -2.140625 1.359375 -2.078125 2.078125 -1.9375 Z M 2.078125 -1.9375 "/>
+</symbol>
+<symbol overflow="visible" id="glyph0-4">
+<path style="stroke:none;" d="M 1.71875 -3.984375 L 3.15625 -3.984375 L 3.15625 -4.296875 L 1.71875 -4.296875 L 1.71875 -6.125 L 1.46875 -6.125 C 1.46875 -5.3125 1.171875 -4.25 0.1875 -4.203125 L 0.1875 -3.984375 L 1.03125 -3.984375 L 1.03125 -1.234375 C 1.03125 -0.015625 1.96875 0.109375 2.328125 0.109375 C 3.03125 0.109375 3.3125 -0.59375 3.3125 -1.234375 L 3.3125 -1.796875 L 3.0625 -1.796875 L 3.0625 -1.25 C 3.0625 -0.515625 2.765625 -0.140625 2.390625 -0.140625 C 1.71875 -0.140625 1.71875 -1.046875 1.71875 -1.21875 Z M 1.71875 -3.984375 "/>
+</symbol>
+<symbol overflow="visible" id="glyph0-5">
+<path style="stroke:none;" d="M 1.109375 -2.515625 C 1.171875 -4 2.015625 -4.25 2.359375 -4.25 C 3.375 -4.25 3.484375 -2.90625 3.484375 -2.515625 Z M 1.109375 -2.296875 L 3.890625 -2.296875 C 4.109375 -2.296875 4.140625 -2.296875 4.140625 -2.515625 C 4.140625 -3.5 3.59375 -4.46875 2.359375 -4.46875 C 1.203125 -4.46875 0.28125 -3.4375 0.28125 -2.1875 C 0.28125 -0.859375 1.328125 0.109375 2.46875 0.109375 C 3.6875 0.109375 4.140625 -1 4.140625 -1.1875 C 4.140625 -1.28125 4.0625 -1.3125 4 -1.3125 C 3.921875 -1.3125 3.890625 -1.25 3.875 -1.171875 C 3.53125 -0.140625 2.625 -0.140625 2.53125 -0.140625 C 2.03125 -0.140625 1.640625 -0.4375 1.40625 -0.8125 C 1.109375 -1.28125 1.109375 -1.9375 1.109375 -2.296875 Z M 1.109375 -2.296875 "/>
+</symbol>
+<symbol overflow="visible" id="glyph0-6">
+<path style="stroke:none;" d="M 1.671875 -3.3125 L 1.671875 -4.40625 L 0.28125 -4.296875 L 0.28125 -3.984375 C 0.984375 -3.984375 1.0625 -3.921875 1.0625 -3.421875 L 1.0625 -0.75 C 1.0625 -0.3125 0.953125 -0.3125 0.28125 -0.3125 L 0.28125 0 C 0.671875 -0.015625 1.140625 -0.03125 1.421875 -0.03125 C 1.8125 -0.03125 2.28125 -0.03125 2.6875 0 L 2.6875 -0.3125 L 2.46875 -0.3125 C 1.734375 -0.3125 1.71875 -0.421875 1.71875 -0.78125 L 1.71875 -2.3125 C 1.71875 -3.296875 2.140625 -4.1875 2.890625 -4.1875 C 2.953125 -4.1875 2.984375 -4.1875 3 -4.171875 C 2.96875 -4.171875 2.765625 -4.046875 2.765625 -3.78125 C 2.765625 -3.515625 2.984375 -3.359375 3.203125 -3.359375 C 3.375 -3.359375 3.625 -3.484375 3.625 -3.796875 C 3.625 -4.109375 3.3125 -4.40625 2.890625 -4.40625 C 2.15625 -4.40625 1.796875 -3.734375 1.671875 -3.3125 Z M 1.671875 -3.3125 "/>
+</symbol>
+<symbol overflow="visible" id="glyph0-7">
+<path style="stroke:none;" d="M 4.6875 -2.140625 C 4.6875 -3.40625 3.703125 -4.46875 2.5 -4.46875 C 1.25 -4.46875 0.28125 -3.375 0.28125 -2.140625 C 0.28125 -0.84375 1.3125 0.109375 2.484375 0.109375 C 3.6875 0.109375 4.6875 -0.875 4.6875 -2.140625 Z M 2.5 -0.140625 C 2.0625 -0.140625 1.625 -0.34375 1.359375 -0.8125 C 1.109375 -1.25 1.109375 -1.859375 1.109375 -2.21875 C 1.109375 -2.609375 1.109375 -3.140625 1.34375 -3.578125 C 1.609375 -4.03125 2.078125 -4.25 2.484375 -4.25 C 2.921875 -4.25 3.34375 -4.03125 3.609375 -3.59375 C 3.875 -3.171875 3.875 -2.59375 3.875 -2.21875 C 3.875 -1.859375 3.875 -1.3125 3.65625 -0.875 C 3.421875 -0.421875 2.984375 -0.140625 2.5 -0.140625 Z M 2.5 -0.140625 "/>
+</symbol>
+<symbol overflow="visible" id="glyph0-8">
+<path style="stroke:none;" d="M 1.71875 -3.75 L 1.71875 -4.40625 L 0.28125 -4.296875 L 0.28125 -3.984375 C 0.984375 -3.984375 1.0625 -3.921875 1.0625 -3.484375 L 1.0625 1.171875 C 1.0625 1.625 0.953125 1.625 0.28125 1.625 L 0.28125 1.9375 C 0.625 1.921875 1.140625 1.90625 1.390625 1.90625 C 1.671875 1.90625 2.171875 1.921875 2.515625 1.9375 L 2.515625 1.625 C 1.859375 1.625 1.75 1.625 1.75 1.171875 L 1.75 -0.59375 C 1.796875 -0.421875 2.21875 0.109375 2.96875 0.109375 C 4.15625 0.109375 5.1875 -0.875 5.1875 -2.15625 C 5.1875 -3.421875 4.234375 -4.40625 3.109375 -4.40625 C 2.328125 -4.40625 1.90625 -3.96875 1.71875 -3.75 Z M 1.75 -1.140625 L 1.75 -3.359375 C 2.03125 -3.875 2.515625 -4.15625 3.03125 -4.15625 C 3.765625 -4.15625 4.359375 -3.28125 4.359375 -2.15625 C 4.359375 -0.953125 3.671875 -0.109375 2.9375 -0.109375 C 2.53125 -0.109375 2.15625 -0.3125 1.890625 -0.71875 C 1.75 -0.921875 1.75 -0.9375 1.75 -1.140625 Z M 1.75 -1.140625 "/>
+</symbol>
+<symbol overflow="visible" id="glyph0-9">
+<path style="stroke:none;" d="M 1.765625 -4.40625 L 0.375 -4.296875 L 0.375 -3.984375 C 1.015625 -3.984375 1.109375 -3.921875 1.109375 -3.4375 L 1.109375 -0.75 C 1.109375 -0.3125 1 -0.3125 0.328125 -0.3125 L 0.328125 0 C 0.640625 -0.015625 1.1875 -0.03125 1.421875 -0.03125 C 1.78125 -0.03125 2.125 -0.015625 2.46875 0 L 2.46875 -0.3125 C 1.796875 -0.3125 1.765625 -0.359375 1.765625 -0.75 Z M 1.796875 -6.140625 C 1.796875 -6.453125 1.5625 -6.671875 1.28125 -6.671875 C 0.96875 -6.671875 0.75 -6.40625 0.75 -6.140625 C 0.75 -5.875 0.96875 -5.609375 1.28125 -5.609375 C 1.5625 -5.609375 1.796875 -5.828125 1.796875 -6.140625 Z M 1.796875 -6.140625 "/>
+</symbol>
+<symbol overflow="visible" id="glyph0-10">
+<path style="stroke:none;" d="M 1.171875 -2.171875 C 1.171875 -3.796875 1.984375 -4.21875 2.515625 -4.21875 C 2.609375 -4.21875 3.234375 -4.203125 3.578125 -3.84375 C 3.171875 -3.8125 3.109375 -3.515625 3.109375 -3.390625 C 3.109375 -3.125 3.296875 -2.9375 3.5625 -2.9375 C 3.828125 -2.9375 4.03125 -3.09375 4.03125 -3.40625 C 4.03125 -4.078125 3.265625 -4.46875 2.5 -4.46875 C 1.25 -4.46875 0.34375 -3.390625 0.34375 -2.15625 C 0.34375 -0.875 1.328125 0.109375 2.484375 0.109375 C 3.8125 0.109375 4.140625 -1.09375 4.140625 -1.1875 C 4.140625 -1.28125 4.03125 -1.28125 4 -1.28125 C 3.921875 -1.28125 3.890625 -1.25 3.875 -1.1875 C 3.59375 -0.265625 2.9375 -0.140625 2.578125 -0.140625 C 2.046875 -0.140625 1.171875 -0.5625 1.171875 -2.171875 Z M 1.171875 -2.171875 "/>
+</symbol>
+<symbol overflow="visible" id="glyph0-11">
+<path style="stroke:none;" d="M 4.359375 -7.09375 C 4.421875 -7.234375 4.421875 -7.25 4.421875 -7.28125 C 4.421875 -7.390625 4.328125 -7.484375 4.21875 -7.484375 C 4.078125 -7.484375 4.03125 -7.375 4 -7.28125 L 0.609375 2.109375 C 0.5625 2.25 0.5625 2.265625 0.5625 2.296875 C 0.5625 2.40625 0.640625 2.5 0.75 2.5 C 0.890625 2.5 0.9375 2.390625 0.96875 2.296875 Z M 4.359375 -7.09375 "/>
+</symbol>
+<symbol overflow="visible" id="glyph0-12">
+<path style="stroke:none;" d="M 1.75 -4.296875 L 1.75 -5.453125 C 1.75 -6.328125 2.21875 -6.8125 2.65625 -6.8125 C 2.6875 -6.8125 2.84375 -6.8125 2.984375 -6.734375 C 2.875 -6.703125 2.6875 -6.5625 2.6875 -6.3125 C 2.6875 -6.09375 2.84375 -5.890625 3.125 -5.890625 C 3.40625 -5.890625 3.5625 -6.09375 3.5625 -6.328125 C 3.5625 -6.703125 3.1875 -7.03125 2.65625 -7.03125 C 1.96875 -7.03125 1.109375 -6.5 1.109375 -5.4375 L 1.109375 -4.296875 L 0.328125 -4.296875 L 0.328125 -3.984375 L 1.109375 -3.984375 L 1.109375 -0.75 C 1.109375 -0.3125 1 -0.3125 0.34375 -0.3125 L 0.34375 0 C 0.734375 -0.015625 1.203125 -0.03125 1.46875 -0.03125 C 1.875 -0.03125 2.34375 -0.03125 2.734375 0 L 2.734375 -0.3125 L 2.53125 -0.3125 C 1.796875 -0.3125 1.78125 -0.421875 1.78125 -0.78125 L 1.78125 -3.984375 L 2.90625 -3.984375 L 2.90625 -4.296875 Z M 1.75 -4.296875 "/>
+</symbol>
+<symbol overflow="visible" id="glyph0-13">
+<path style="stroke:none;" d="M 1.71875 -3.765625 L 1.71875 -6.921875 L 0.28125 -6.8125 L 0.28125 -6.5 C 0.984375 -6.5 1.0625 -6.4375 1.0625 -5.9375 L 1.0625 0 L 1.3125 0 C 1.3125 -0.015625 1.390625 -0.15625 1.671875 -0.625 C 1.8125 -0.390625 2.234375 0.109375 2.96875 0.109375 C 4.15625 0.109375 5.1875 -0.875 5.1875 -2.15625 C 5.1875 -3.421875 4.21875 -4.40625 3.078125 -4.40625 C 2.296875 -4.40625 1.875 -3.9375 1.71875 -3.765625 Z M 1.75 -1.140625 L 1.75 -3.1875 C 1.75 -3.375 1.75 -3.390625 1.859375 -3.546875 C 2.25 -4.109375 2.796875 -4.1875 3.03125 -4.1875 C 3.484375 -4.1875 3.84375 -3.921875 4.078125 -3.546875 C 4.34375 -3.140625 4.359375 -2.578125 4.359375 -2.15625 C 4.359375 -1.796875 4.34375 -1.203125 4.0625 -0.75 C 3.84375 -0.4375 3.46875 -0.109375 2.9375 -0.109375 C 2.484375 -0.109375 2.125 -0.34375 1.890625 -0.71875 C 1.75 -0.921875 1.75 -0.953125 1.75 -1.140625 Z M 1.75 -1.140625 "/>
+</symbol>
+<symbol overflow="visible" id="glyph0-14">
+<path style="stroke:none;" d="M 3.78125 -0.546875 L 3.78125 0.109375 L 5.25 0 L 5.25 -0.3125 C 4.5625 -0.3125 4.46875 -0.375 4.46875 -0.875 L 4.46875 -6.921875 L 3.046875 -6.8125 L 3.046875 -6.5 C 3.734375 -6.5 3.8125 -6.4375 3.8125 -5.9375 L 3.8125 -3.78125 C 3.53125 -4.140625 3.09375 -4.40625 2.5625 -4.40625 C 1.390625 -4.40625 0.34375 -3.421875 0.34375 -2.140625 C 0.34375 -0.875 1.3125 0.109375 2.453125 0.109375 C 3.09375 0.109375 3.53125 -0.234375 3.78125 -0.546875 Z M 3.78125 -3.21875 L 3.78125 -1.171875 C 3.78125 -1 3.78125 -0.984375 3.671875 -0.8125 C 3.375 -0.328125 2.9375 -0.109375 2.5 -0.109375 C 2.046875 -0.109375 1.6875 -0.375 1.453125 -0.75 C 1.203125 -1.15625 1.171875 -1.71875 1.171875 -2.140625 C 1.171875 -2.5 1.1875 -3.09375 1.46875 -3.546875 C 1.6875 -3.859375 2.0625 -4.1875 2.609375 -4.1875 C 2.953125 -4.1875 3.375 -4.03125 3.671875 -3.59375 C 3.78125 -3.421875 3.78125 -3.40625 3.78125 -3.21875 Z M 3.78125 -3.21875 "/>
+</symbol>
+<symbol overflow="visible" id="glyph0-15">
+<path style="stroke:none;" d="M 2.890625 -3.515625 C 3.703125 -3.78125 4.28125 -4.46875 4.28125 -5.265625 C 4.28125 -6.078125 3.40625 -6.640625 2.453125 -6.640625 C 1.453125 -6.640625 0.6875 -6.046875 0.6875 -5.28125 C 0.6875 -4.953125 0.90625 -4.765625 1.203125 -4.765625 C 1.5 -4.765625 1.703125 -4.984375 1.703125 -5.28125 C 1.703125 -5.765625 1.234375 -5.765625 1.09375 -5.765625 C 1.390625 -6.265625 2.046875 -6.390625 2.40625 -6.390625 C 2.828125 -6.390625 3.375 -6.171875 3.375 -5.28125 C 3.375 -5.15625 3.34375 -4.578125 3.09375 -4.140625 C 2.796875 -3.65625 2.453125 -3.625 2.203125 -3.625 C 2.125 -3.609375 1.890625 -3.59375 1.8125 -3.59375 C 1.734375 -3.578125 1.671875 -3.5625 1.671875 -3.46875 C 1.671875 -3.359375 1.734375 -3.359375 1.90625 -3.359375 L 2.34375 -3.359375 C 3.15625 -3.359375 3.53125 -2.6875 3.53125 -1.703125 C 3.53125 -0.34375 2.84375 -0.0625 2.40625 -0.0625 C 1.96875 -0.0625 1.21875 -0.234375 0.875 -0.8125 C 1.21875 -0.765625 1.53125 -0.984375 1.53125 -1.359375 C 1.53125 -1.71875 1.265625 -1.921875 0.984375 -1.921875 C 0.734375 -1.921875 0.421875 -1.78125 0.421875 -1.34375 C 0.421875 -0.4375 1.34375 0.21875 2.4375 0.21875 C 3.65625 0.21875 4.5625 -0.6875 4.5625 -1.703125 C 4.5625 -2.515625 3.921875 -3.296875 2.890625 -3.515625 Z M 2.890625 -3.515625 "/>
+</symbol>
+<symbol overflow="visible" id="glyph0-16">
+<path style="stroke:none;" d="M 2.9375 -6.375 C 2.9375 -6.625 2.9375 -6.640625 2.703125 -6.640625 C 2.078125 -6 1.203125 -6 0.890625 -6 L 0.890625 -5.6875 C 1.09375 -5.6875 1.671875 -5.6875 2.1875 -5.953125 L 2.1875 -0.78125 C 2.1875 -0.421875 2.15625 -0.3125 1.265625 -0.3125 L 0.953125 -0.3125 L 0.953125 0 C 1.296875 -0.03125 2.15625 -0.03125 2.5625 -0.03125 C 2.953125 -0.03125 3.828125 -0.03125 4.171875 0 L 4.171875 -0.3125 L 3.859375 -0.3125 C 2.953125 -0.3125 2.9375 -0.421875 2.9375 -0.78125 Z M 2.9375 -6.375 "/>
+</symbol>
+<symbol overflow="visible" id="glyph0-17">
+<path style="stroke:none;" d="M 1.265625 -0.765625 L 2.328125 -1.796875 C 3.875 -3.171875 4.46875 -3.703125 4.46875 -4.703125 C 4.46875 -5.84375 3.578125 -6.640625 2.359375 -6.640625 C 1.234375 -6.640625 0.5 -5.71875 0.5 -4.828125 C 0.5 -4.28125 1 -4.28125 1.03125 -4.28125 C 1.203125 -4.28125 1.546875 -4.390625 1.546875 -4.8125 C 1.546875 -5.0625 1.359375 -5.328125 1.015625 -5.328125 C 0.9375 -5.328125 0.921875 -5.328125 0.890625 -5.3125 C 1.109375 -5.96875 1.65625 -6.328125 2.234375 -6.328125 C 3.140625 -6.328125 3.5625 -5.515625 3.5625 -4.703125 C 3.5625 -3.90625 3.078125 -3.125 2.515625 -2.5 L 0.609375 -0.375 C 0.5 -0.265625 0.5 -0.234375 0.5 0 L 4.203125 0 L 4.46875 -1.734375 L 4.234375 -1.734375 C 4.171875 -1.4375 4.109375 -1 4 -0.84375 C 3.9375 -0.765625 3.28125 -0.765625 3.0625 -0.765625 Z M 1.265625 -0.765625 "/>
+</symbol>
+<symbol overflow="visible" id="glyph0-18">
+<path style="stroke:none;" d="M 3.65625 -3.171875 L 3.65625 -2.84375 C 3.65625 -0.515625 2.625 -0.0625 2.046875 -0.0625 C 1.875 -0.0625 1.328125 -0.078125 1.0625 -0.421875 C 1.5 -0.421875 1.578125 -0.703125 1.578125 -0.875 C 1.578125 -1.1875 1.34375 -1.328125 1.125 -1.328125 C 0.96875 -1.328125 0.671875 -1.25 0.671875 -0.859375 C 0.671875 -0.1875 1.203125 0.21875 2.046875 0.21875 C 3.34375 0.21875 4.5625 -1.140625 4.5625 -3.28125 C 4.5625 -5.96875 3.40625 -6.640625 2.515625 -6.640625 C 1.96875 -6.640625 1.484375 -6.453125 1.0625 -6.015625 C 0.640625 -5.5625 0.421875 -5.140625 0.421875 -4.390625 C 0.421875 -3.15625 1.296875 -2.171875 2.40625 -2.171875 C 3.015625 -2.171875 3.421875 -2.59375 3.65625 -3.171875 Z M 2.421875 -2.40625 C 2.265625 -2.40625 1.796875 -2.40625 1.5 -3.03125 C 1.3125 -3.40625 1.3125 -3.890625 1.3125 -4.390625 C 1.3125 -4.921875 1.3125 -5.390625 1.53125 -5.765625 C 1.796875 -6.265625 2.171875 -6.390625 2.515625 -6.390625 C 2.984375 -6.390625 3.3125 -6.046875 3.484375 -5.609375 C 3.59375 -5.28125 3.640625 -4.65625 3.640625 -4.203125 C 3.640625 -3.375 3.296875 -2.40625 2.421875 -2.40625 Z M 2.421875 -2.40625 "/>
+</symbol>
+<symbol overflow="visible" id="glyph0-19">
+<path style="stroke:none;" d="M 1.3125 -3.265625 L 1.3125 -3.515625 C 1.3125 -6.03125 2.546875 -6.390625 3.0625 -6.390625 C 3.296875 -6.390625 3.71875 -6.328125 3.9375 -5.984375 C 3.78125 -5.984375 3.390625 -5.984375 3.390625 -5.546875 C 3.390625 -5.234375 3.625 -5.078125 3.84375 -5.078125 C 4 -5.078125 4.3125 -5.171875 4.3125 -5.5625 C 4.3125 -6.15625 3.875 -6.640625 3.046875 -6.640625 C 1.765625 -6.640625 0.421875 -5.359375 0.421875 -3.15625 C 0.421875 -0.484375 1.578125 0.21875 2.5 0.21875 C 3.609375 0.21875 4.5625 -0.71875 4.5625 -2.03125 C 4.5625 -3.296875 3.671875 -4.25 2.5625 -4.25 C 1.890625 -4.25 1.515625 -3.75 1.3125 -3.265625 Z M 2.5 -0.0625 C 1.875 -0.0625 1.578125 -0.65625 1.515625 -0.8125 C 1.328125 -1.28125 1.328125 -2.078125 1.328125 -2.25 C 1.328125 -3.03125 1.65625 -4.03125 2.546875 -4.03125 C 2.71875 -4.03125 3.171875 -4.03125 3.484375 -3.40625 C 3.65625 -3.046875 3.65625 -2.53125 3.65625 -2.046875 C 3.65625 -1.5625 3.65625 -1.0625 3.484375 -0.703125 C 3.1875 -0.109375 2.734375 -0.0625 2.5 -0.0625 Z M 2.5 -0.0625 "/>
+</symbol>
+<symbol overflow="visible" id="glyph0-20">
+<path style="stroke:none;" d="M 2.9375 -1.640625 L 2.9375 -0.78125 C 2.9375 -0.421875 2.90625 -0.3125 2.171875 -0.3125 L 1.96875 -0.3125 L 1.96875 0 C 2.375 -0.03125 2.890625 -0.03125 3.3125 -0.03125 C 3.734375 -0.03125 4.25 -0.03125 4.671875 0 L 4.671875 -0.3125 L 4.453125 -0.3125 C 3.71875 -0.3125 3.703125 -0.421875 3.703125 -0.78125 L 3.703125 -1.640625 L 4.6875 -1.640625 L 4.6875 -1.953125 L 3.703125 -1.953125 L 3.703125 -6.484375 C 3.703125 -6.6875 3.703125 -6.75 3.53125 -6.75 C 3.453125 -6.75 3.421875 -6.75 3.34375 -6.625 L 0.28125 -1.953125 L 0.28125 -1.640625 Z M 2.984375 -1.953125 L 0.5625 -1.953125 L 2.984375 -5.671875 Z M 2.984375 -1.953125 "/>
+</symbol>
+<symbol overflow="visible" id="glyph0-21">
+<path style="stroke:none;" d="M 4.578125 -3.1875 C 4.578125 -3.984375 4.53125 -4.78125 4.1875 -5.515625 C 3.734375 -6.484375 2.90625 -6.640625 2.5 -6.640625 C 1.890625 -6.640625 1.171875 -6.375 0.75 -5.453125 C 0.4375 -4.765625 0.390625 -3.984375 0.390625 -3.1875 C 0.390625 -2.4375 0.421875 -1.546875 0.84375 -0.78125 C 1.265625 0.015625 2 0.21875 2.484375 0.21875 C 3.015625 0.21875 3.78125 0.015625 4.21875 -0.9375 C 4.53125 -1.625 4.578125 -2.40625 4.578125 -3.1875 Z M 2.484375 0 C 2.09375 0 1.5 -0.25 1.328125 -1.203125 C 1.21875 -1.796875 1.21875 -2.71875 1.21875 -3.3125 C 1.21875 -3.953125 1.21875 -4.609375 1.296875 -5.140625 C 1.484375 -6.328125 2.234375 -6.421875 2.484375 -6.421875 C 2.8125 -6.421875 3.46875 -6.234375 3.65625 -5.25 C 3.765625 -4.6875 3.765625 -3.9375 3.765625 -3.3125 C 3.765625 -2.5625 3.765625 -1.890625 3.65625 -1.25 C 3.5 -0.296875 2.9375 0 2.484375 0 Z M 2.484375 0 "/>
+</symbol>
+<symbol overflow="visible" id="glyph0-22">
+<path style="stroke:none;" d="M 4.46875 -2 C 4.46875 -3.1875 3.65625 -4.1875 2.578125 -4.1875 C 2.109375 -4.1875 1.671875 -4.03125 1.3125 -3.671875 L 1.3125 -5.625 C 1.515625 -5.5625 1.84375 -5.5 2.15625 -5.5 C 3.390625 -5.5 4.09375 -6.40625 4.09375 -6.53125 C 4.09375 -6.59375 4.0625 -6.640625 3.984375 -6.640625 C 3.984375 -6.640625 3.953125 -6.640625 3.90625 -6.609375 C 3.703125 -6.515625 3.21875 -6.3125 2.546875 -6.3125 C 2.15625 -6.3125 1.6875 -6.390625 1.21875 -6.59375 C 1.140625 -6.625 1.125 -6.625 1.109375 -6.625 C 1 -6.625 1 -6.546875 1 -6.390625 L 1 -3.4375 C 1 -3.265625 1 -3.1875 1.140625 -3.1875 C 1.21875 -3.1875 1.234375 -3.203125 1.28125 -3.265625 C 1.390625 -3.421875 1.75 -3.96875 2.5625 -3.96875 C 3.078125 -3.96875 3.328125 -3.515625 3.40625 -3.328125 C 3.5625 -2.953125 3.59375 -2.578125 3.59375 -2.078125 C 3.59375 -1.71875 3.59375 -1.125 3.34375 -0.703125 C 3.109375 -0.3125 2.734375 -0.0625 2.28125 -0.0625 C 1.5625 -0.0625 0.984375 -0.59375 0.8125 -1.171875 C 0.84375 -1.171875 0.875 -1.15625 0.984375 -1.15625 C 1.3125 -1.15625 1.484375 -1.40625 1.484375 -1.640625 C 1.484375 -1.890625 1.3125 -2.140625 0.984375 -2.140625 C 0.84375 -2.140625 0.5 -2.0625 0.5 -1.609375 C 0.5 -0.75 1.1875 0.21875 2.296875 0.21875 C 3.453125 0.21875 4.46875 -0.734375 4.46875 -2 Z M 4.46875 -2 "/>
+</symbol>
+<symbol overflow="visible" id="glyph0-23">
+<path style="stroke:none;" d="M 4.75 -6.078125 C 4.828125 -6.1875 4.828125 -6.203125 4.828125 -6.421875 L 2.40625 -6.421875 C 1.203125 -6.421875 1.171875 -6.546875 1.140625 -6.734375 L 0.890625 -6.734375 L 0.5625 -4.6875 L 0.8125 -4.6875 C 0.84375 -4.84375 0.921875 -5.46875 1.0625 -5.59375 C 1.125 -5.65625 1.90625 -5.65625 2.03125 -5.65625 L 4.09375 -5.65625 C 3.984375 -5.5 3.203125 -4.40625 2.984375 -4.078125 C 2.078125 -2.734375 1.75 -1.34375 1.75 -0.328125 C 1.75 -0.234375 1.75 0.21875 2.21875 0.21875 C 2.671875 0.21875 2.671875 -0.234375 2.671875 -0.328125 L 2.671875 -0.84375 C 2.671875 -1.390625 2.703125 -1.9375 2.78125 -2.46875 C 2.828125 -2.703125 2.953125 -3.5625 3.40625 -4.171875 Z M 4.75 -6.078125 "/>
+</symbol>
+<symbol overflow="visible" id="glyph0-24">
+<path style="stroke:none;" d="M 1.625 -4.5625 C 1.171875 -4.859375 1.125 -5.1875 1.125 -5.359375 C 1.125 -5.96875 1.78125 -6.390625 2.484375 -6.390625 C 3.203125 -6.390625 3.84375 -5.875 3.84375 -5.15625 C 3.84375 -4.578125 3.453125 -4.109375 2.859375 -3.765625 Z M 3.078125 -3.609375 C 3.796875 -3.984375 4.28125 -4.5 4.28125 -5.15625 C 4.28125 -6.078125 3.40625 -6.640625 2.5 -6.640625 C 1.5 -6.640625 0.6875 -5.90625 0.6875 -4.96875 C 0.6875 -4.796875 0.703125 -4.34375 1.125 -3.875 C 1.234375 -3.765625 1.609375 -3.515625 1.859375 -3.34375 C 1.28125 -3.046875 0.421875 -2.5 0.421875 -1.5 C 0.421875 -0.453125 1.4375 0.21875 2.484375 0.21875 C 3.609375 0.21875 4.5625 -0.609375 4.5625 -1.671875 C 4.5625 -2.03125 4.453125 -2.484375 4.0625 -2.90625 C 3.875 -3.109375 3.71875 -3.203125 3.078125 -3.609375 Z M 2.078125 -3.1875 L 3.3125 -2.40625 C 3.59375 -2.21875 4.0625 -1.921875 4.0625 -1.3125 C 4.0625 -0.578125 3.3125 -0.0625 2.5 -0.0625 C 1.640625 -0.0625 0.921875 -0.671875 0.921875 -1.5 C 0.921875 -2.078125 1.234375 -2.71875 2.078125 -3.1875 Z M 2.078125 -3.1875 "/>
+</symbol>
+</g>
+<clipPath id="clip1">
+ <path d="M 324 0 L 381.632812 0 L 381.632812 28 L 324 28 Z M 324 0 "/>
+</clipPath>
+<clipPath id="clip2">
+ <path d="M 142 42 L 231 42 L 231 74.09375 L 142 74.09375 Z M 142 42 "/>
+</clipPath>
+<clipPath id="clip3">
+ <path d="M 331 57 L 381.632812 57 L 381.632812 74 L 331 74 Z M 331 57 "/>
+</clipPath>
+<clipPath id="clip4">
+ <path d="M 317 42 L 381.632812 42 L 381.632812 74.09375 L 317 74.09375 Z M 317 42 "/>
+</clipPath>
+<clipPath id="clip5">
+ <path d="M 324 14 L 381.632812 14 L 381.632812 56 L 324 56 Z M 324 14 "/>
+</clipPath>
+</defs>
+<g id="surface1">
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(2.74353%,21.174622%,25.881958%);fill-opacity:1;" d="M 370.65625 0.398438 L 342.566406 0.398438 C 340.367188 0.398438 338.582031 2.183594 338.582031 4.382812 L 338.582031 9.183594 C 338.582031 11.382812 340.367188 13.167969 342.566406 13.167969 L 370.65625 13.167969 C 372.855469 13.167969 374.640625 11.382812 374.640625 9.183594 L 374.640625 4.382812 C 374.640625 2.183594 372.855469 0.398438 370.65625 0.398438 Z M 370.65625 0.398438 "/>
+<g clip-path="url(#clip1)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(34.510803%,43.136597%,45.881653%);stroke-opacity:1;stroke-miterlimit:10;" d="M 354.051 27.847 L 326.051 27.847 C 323.918187 27.948563 322.133031 26.163406 322.051 23.847 L 322.051 18.847 C 322.133031 16.964188 323.918187 15.179031 326.051 14.847 L 354.051 14.847 C 356.406469 15.179031 358.191625 16.964188 358.051 18.847 L 358.051 23.847 C 358.191625 26.163406 356.406469 27.948563 354.20725 27.948563 Z M 354.051 27.847 " transform="matrix(1,0,0,-1,16.449,28.347)"/>
+</g>
+<g style="fill:rgb(82.743835%,21.174622%,50.979614%);fill-opacity:1;">
+ <use xlink:href="#glyph0-1" x="341.898" y="9.847"/>
+ <use xlink:href="#glyph0-2" x="350.199835" y="9.847"/>
+ <use xlink:href="#glyph0-3" x="355.181135" y="9.847"/>
+ <use xlink:href="#glyph0-4" x="359.110384" y="9.847"/>
+ <use xlink:href="#glyph0-5" x="362.984839" y="9.847"/>
+ <use xlink:href="#glyph0-6" x="367.412219" y="9.847"/>
+</g>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(2.74353%,21.174622%,25.881958%);fill-opacity:1;" d="M 213 57.09375 L 160.058594 57.09375 C 157.859375 57.09375 156.074219 58.875 156.074219 61.078125 L 156.074219 69.710938 C 156.074219 71.910156 157.859375 73.695312 160.058594 73.695312 L 213 73.695312 C 215.199219 73.695312 216.984375 71.910156 216.984375 69.710938 L 216.984375 61.078125 C 216.984375 58.875 215.199219 57.09375 213 57.09375 Z M 213 57.09375 "/>
+<g clip-path="url(#clip2)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(34.510803%,43.136597%,45.881653%);stroke-opacity:1;stroke-miterlimit:10;" d="M 197.051 -29.153 L 144.051 -29.153 C 141.410375 -28.74675 139.625219 -30.528 140.051 -33.153 L 140.051 -41.153 C 139.625219 -43.563156 141.410375 -45.348312 144.051 -45.153 L 197.051 -45.153 C 198.750219 -45.348312 200.535375 -43.563156 200.051 -41.153 L 200.051 -33.153 C 200.535375 -30.528 198.750219 -28.74675 196.551 -28.74675 Z M 197.051 -29.153 " transform="matrix(1,0,0,-1,16.449,28.347)"/>
+</g>
+<g style="fill:rgb(82.743835%,21.174622%,50.979614%);fill-opacity:1;">
+ <use xlink:href="#glyph0-4" x="159.393" y="67.884"/>
+ <use xlink:href="#glyph0-7" x="163.267455" y="67.884"/>
+ <use xlink:href="#glyph0-8" x="168.248755" y="67.884"/>
+ <use xlink:href="#glyph0-9" x="173.783976" y="67.884"/>
+ <use xlink:href="#glyph0-10" x="176.551586" y="67.884"/>
+ <use xlink:href="#glyph0-11" x="180.978965" y="67.884"/>
+ <use xlink:href="#glyph0-12" x="185.960265" y="67.884"/>
+ <use xlink:href="#glyph0-7" x="189.004836" y="67.884"/>
+</g>
+<g style="fill:rgb(82.743835%,21.174622%,50.979614%);fill-opacity:1;">
+ <use xlink:href="#glyph0-7" x="194.265089" y="67.884"/>
+ <use xlink:href="#glyph0-13" x="199.246389" y="67.884"/>
+ <use xlink:href="#glyph0-2" x="204.781609" y="67.884"/>
+ <use xlink:href="#glyph0-6" x="209.762909" y="67.884"/>
+</g>
+<g clip-path="url(#clip3)" clip-rule="nonzero">
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(2.74353%,21.174622%,25.881958%);fill-opacity:1;" d="M 377.253906 57.09375 L 335.964844 57.09375 C 333.765625 57.09375 331.980469 58.875 331.980469 61.078125 L 331.980469 69.710938 C 331.980469 71.910156 333.765625 73.695312 335.964844 73.695312 L 377.253906 73.695312 C 379.457031 73.695312 381.242188 71.910156 381.242188 69.710938 L 381.242188 61.078125 C 381.242188 58.875 379.457031 57.09375 377.253906 57.09375 Z M 377.253906 57.09375 "/>
+</g>
+<g clip-path="url(#clip4)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(34.510803%,43.136597%,45.881653%);stroke-opacity:1;stroke-miterlimit:10;" d="M 361.051 -29.153 L 319.051 -29.153 C 317.316625 -28.74675 315.531469 -30.528 315.051 -33.153 L 315.051 -41.153 C 315.531469 -43.563156 317.316625 -45.348312 319.051 -45.153 L 361.051 -45.153 C 363.008031 -45.348312 364.793187 -43.563156 365.051 -41.153 L 365.051 -33.153 C 364.793187 -30.528 363.008031 -28.74675 360.804906 -28.74675 Z M 361.051 -29.153 " transform="matrix(1,0,0,-1,16.449,28.347)"/>
+</g>
+<g style="fill:rgb(82.743835%,21.174622%,50.979614%);fill-opacity:1;">
+ <use xlink:href="#glyph0-4" x="335.297" y="67.884"/>
+ <use xlink:href="#glyph0-7" x="339.171455" y="67.884"/>
+ <use xlink:href="#glyph0-8" x="344.152755" y="67.884"/>
+ <use xlink:href="#glyph0-9" x="349.687976" y="67.884"/>
+ <use xlink:href="#glyph0-10" x="352.455586" y="67.884"/>
+ <use xlink:href="#glyph0-11" x="356.882965" y="67.884"/>
+ <use xlink:href="#glyph0-13" x="361.864265" y="67.884"/>
+ <use xlink:href="#glyph0-2" x="367.399486" y="67.884"/>
+ <use xlink:href="#glyph0-14" x="372.380786" y="67.884"/>
+</g>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(2.74353%,21.174622%,25.881958%);fill-opacity:1;" d="M 28.515625 28.746094 L 4.382812 28.746094 C 2.183594 28.746094 0.398438 30.53125 0.398438 32.730469 L 0.398438 38.320312 C 0.398438 40.519531 2.183594 42.304688 4.382812 42.304688 L 28.515625 42.304688 C 30.714844 42.304688 32.5 40.519531 32.5 38.320312 L 32.5 32.730469 C 32.5 30.53125 30.714844 28.746094 28.515625 28.746094 Z M 28.515625 28.746094 "/>
+<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(34.510803%,43.136597%,45.881653%);stroke-opacity:1;stroke-miterlimit:10;" d="M 12.051 -0.153 L -11.949 -0.153 C -14.265406 -0.399094 -16.050562 -2.18425 -15.949 -4.153 L -15.949 -10.153 C -16.050562 -12.172531 -14.265406 -13.957687 -11.949 -14.153 L 12.051 -14.153 C 14.265844 -13.957687 16.051 -12.172531 16.051 -10.153 L 16.051 -4.153 C 16.051 -2.18425 14.265844 -0.399094 12.066625 -0.399094 Z M 12.051 -0.153 " transform="matrix(1,0,0,-1,16.449,28.347)"/>
+<g style="fill:rgb(57.647705%,63.134766%,63.134766%);fill-opacity:1;">
+ <use xlink:href="#glyph0-15" x="3.719" y="38.984"/>
+ <use xlink:href="#glyph0-16" x="8.7003" y="38.984"/>
+ <use xlink:href="#glyph0-14" x="13.6816" y="38.984"/>
+ <use xlink:href="#glyph0-17" x="19.216821" y="38.984"/>
+ <use xlink:href="#glyph0-15" x="24.198121" y="38.984"/>
+</g>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(2.74353%,21.174622%,25.881958%);fill-opacity:1;" d="M 84.929688 28.746094 L 61.355469 28.746094 C 59.152344 28.746094 57.367188 30.53125 57.367188 32.730469 L 57.367188 37.820312 C 57.367188 40.023438 59.152344 41.808594 61.355469 41.808594 L 84.929688 41.808594 C 87.132812 41.808594 88.917969 40.023438 88.917969 37.820312 L 88.917969 32.730469 C 88.917969 30.53125 87.132812 28.746094 84.929688 28.746094 Z M 84.929688 28.746094 "/>
+<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(34.510803%,43.136597%,45.881653%);stroke-opacity:1;stroke-miterlimit:10;" d="M 68.051 -0.153 L 45.051 -0.153 C 42.703344 -0.399094 40.918188 -2.18425 41.051 -4.153 L 41.051 -9.153 C 40.918188 -11.676437 42.703344 -13.461594 45.051 -13.153 L 68.051 -13.153 C 70.683813 -13.461594 72.468969 -11.676437 72.051 -9.153 L 72.051 -4.153 C 72.468969 -2.18425 70.683813 -0.399094 68.480688 -0.399094 Z M 68.051 -0.153 " transform="matrix(1,0,0,-1,16.449,28.347)"/>
+<g style="fill:rgb(57.647705%,63.134766%,63.134766%);fill-opacity:1;">
+ <use xlink:href="#glyph0-18" x="60.689" y="38.486"/>
+ <use xlink:href="#glyph0-19" x="65.6703" y="38.486"/>
+ <use xlink:href="#glyph0-20" x="70.6516" y="38.486"/>
+ <use xlink:href="#glyph0-21" x="75.6329" y="38.486"/>
+ <use xlink:href="#glyph0-2" x="80.6142" y="38.486"/>
+</g>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(2.74353%,21.174622%,25.881958%);fill-opacity:1;" d="M 141.902344 28.746094 L 117.769531 28.746094 C 115.570312 28.746094 113.785156 30.53125 113.785156 32.730469 L 113.785156 38.320312 C 113.785156 40.519531 115.570312 42.304688 117.769531 42.304688 L 141.902344 42.304688 C 144.101562 42.304688 145.886719 40.519531 145.886719 38.320312 L 145.886719 32.730469 C 145.886719 30.53125 144.101562 28.746094 141.902344 28.746094 Z M 141.902344 28.746094 "/>
+<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(34.510803%,43.136597%,45.881653%);stroke-opacity:1;stroke-miterlimit:10;" d="M 125.051 -0.153 L 101.051 -0.153 C 99.121313 -0.399094 97.336156 -2.18425 97.051 -4.153 L 97.051 -10.153 C 97.336156 -12.172531 99.121313 -13.957687 101.051 -14.153 L 125.051 -14.153 C 127.652563 -13.957687 129.437719 -12.172531 129.051 -10.153 L 129.051 -4.153 C 129.437719 -2.18425 127.652563 -0.399094 125.453344 -0.399094 Z M 125.051 -0.153 " transform="matrix(1,0,0,-1,16.449,28.347)"/>
+<g style="fill:rgb(57.647705%,63.134766%,63.134766%);fill-opacity:1;">
+ <use xlink:href="#glyph0-22" x="117.105" y="38.984"/>
+ <use xlink:href="#glyph0-5" x="122.0863" y="38.984"/>
+ <use xlink:href="#glyph0-19" x="126.513679" y="38.984"/>
+ <use xlink:href="#glyph0-14" x="131.494979" y="38.984"/>
+ <use xlink:href="#glyph0-14" x="137.0302" y="38.984"/>
+</g>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(2.74353%,21.174622%,25.881958%);fill-opacity:1;" d="M 198.320312 28.746094 L 174.742188 28.746094 C 172.539062 28.746094 170.753906 30.53125 170.753906 32.730469 L 170.753906 38.320312 C 170.753906 40.519531 172.539062 42.304688 174.742188 42.304688 L 198.320312 42.304688 C 200.519531 42.304688 202.304688 40.519531 202.304688 38.320312 L 202.304688 32.730469 C 202.304688 30.53125 200.519531 28.746094 198.320312 28.746094 Z M 198.320312 28.746094 "/>
+<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(34.510803%,43.136597%,45.881653%);stroke-opacity:1;stroke-miterlimit:10;" d="M 182.051 -0.153 L 158.051 -0.153 C 156.090062 -0.399094 154.304906 -2.18425 154.051 -4.153 L 154.051 -10.153 C 154.304906 -12.172531 156.090062 -13.957687 158.051 -14.153 L 182.051 -14.153 C 184.070531 -13.957687 185.855687 -12.172531 186.051 -10.153 L 186.051 -4.153 C 185.855687 -2.18425 184.070531 -0.399094 181.871312 -0.399094 Z M 182.051 -0.153 " transform="matrix(1,0,0,-1,16.449,28.347)"/>
+<g style="fill:rgb(57.647705%,63.134766%,63.134766%);fill-opacity:1;">
+ <use xlink:href="#glyph0-15" x="174.074" y="38.984"/>
+ <use xlink:href="#glyph0-14" x="179.0553" y="38.984"/>
+ <use xlink:href="#glyph0-5" x="184.590521" y="38.984"/>
+ <use xlink:href="#glyph0-17" x="189.0179" y="38.984"/>
+ <use xlink:href="#glyph0-19" x="193.9992" y="38.984"/>
+</g>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(2.74353%,21.174622%,25.881958%);fill-opacity:1;" d="M 255.289062 28.746094 L 231.15625 28.746094 C 228.957031 28.746094 227.171875 30.53125 227.171875 32.730469 L 227.171875 38.320312 C 227.171875 40.519531 228.957031 42.304688 231.15625 42.304688 L 255.289062 42.304688 C 257.488281 42.304688 259.273438 40.519531 259.273438 38.320312 L 259.273438 32.730469 C 259.273438 30.53125 257.488281 28.746094 255.289062 28.746094 Z M 255.289062 28.746094 "/>
+<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(34.510803%,43.136597%,45.881653%);stroke-opacity:1;stroke-miterlimit:10;" d="M 239.051 -0.153 L 215.051 -0.153 C 212.508031 -0.399094 210.722875 -2.18425 211.051 -4.153 L 211.051 -10.153 C 210.722875 -12.172531 212.508031 -13.957687 215.051 -14.153 L 239.051 -14.153 C 241.039281 -13.957687 242.824437 -12.172531 243.051 -10.153 L 243.051 -4.153 C 242.824437 -2.18425 241.039281 -0.399094 238.840062 -0.399094 Z M 239.051 -0.153 " transform="matrix(1,0,0,-1,16.449,28.347)"/>
+<g style="fill:rgb(57.647705%,63.134766%,63.134766%);fill-opacity:1;">
+ <use xlink:href="#glyph0-23" x="230.491" y="38.984"/>
+ <use xlink:href="#glyph0-15" x="235.4723" y="38.984"/>
+ <use xlink:href="#glyph0-24" x="240.4536" y="38.984"/>
+ <use xlink:href="#glyph0-23" x="245.4349" y="38.984"/>
+ <use xlink:href="#glyph0-14" x="250.4162" y="38.984"/>
+</g>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(2.74353%,21.174622%,25.881958%);fill-opacity:1;" d="M 311.707031 28.746094 L 288.128906 28.746094 C 285.925781 28.746094 284.144531 30.53125 284.144531 32.730469 L 284.144531 37.820312 C 284.144531 40.023438 285.925781 41.808594 288.128906 41.808594 L 311.707031 41.808594 C 313.90625 41.808594 315.691406 40.023438 315.691406 37.820312 L 315.691406 32.730469 C 315.691406 30.53125 313.90625 28.746094 311.707031 28.746094 Z M 311.707031 28.746094 "/>
+<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(34.510803%,43.136597%,45.881653%);stroke-opacity:1;stroke-miterlimit:10;" d="M 295.051 -0.153 L 272.051 -0.153 C 269.476781 -0.399094 267.695531 -2.18425 268.051 -4.153 L 268.051 -9.153 C 267.695531 -11.676437 269.476781 -13.461594 272.051 -13.153 L 295.051 -13.153 C 297.45725 -13.461594 299.242406 -11.676437 299.051 -9.153 L 299.051 -4.153 C 299.242406 -2.18425 297.45725 -0.399094 295.258031 -0.399094 Z M 295.051 -0.153 " transform="matrix(1,0,0,-1,16.449,28.347)"/>
+<g style="fill:rgb(57.647705%,63.134766%,63.134766%);fill-opacity:1;">
+ <use xlink:href="#glyph0-21" x="287.46" y="38.486"/>
+ <use xlink:href="#glyph0-16" x="292.4413" y="38.486"/>
+ <use xlink:href="#glyph0-19" x="297.4226" y="38.486"/>
+ <use xlink:href="#glyph0-17" x="302.4039" y="38.486"/>
+ <use xlink:href="#glyph0-16" x="307.3852" y="38.486"/>
+</g>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(2.74353%,21.174622%,25.881958%);fill-opacity:1;" d="M 370.890625 28.746094 L 342.332031 28.746094 C 340.128906 28.746094 338.347656 30.53125 338.347656 32.730469 L 338.347656 37.820312 C 338.347656 40.023438 340.128906 41.808594 342.332031 41.808594 L 370.890625 41.808594 C 373.089844 41.808594 374.875 40.023438 374.875 37.820312 L 374.875 32.730469 C 374.875 30.53125 373.089844 28.746094 370.890625 28.746094 Z M 370.890625 28.746094 "/>
+<g clip-path="url(#clip5)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(34.510803%,43.136597%,45.881653%);stroke-opacity:1;stroke-miterlimit:10;" d="M 354.051 -0.153 L 326.051 -0.153 C 323.679906 -0.399094 321.898656 -2.18425 322.051 -4.153 L 322.051 -9.153 C 321.898656 -11.676437 323.679906 -13.461594 326.051 -13.153 L 354.051 -13.153 C 356.640844 -13.461594 358.426 -11.676437 358.051 -9.153 L 358.051 -4.153 C 358.426 -2.18425 356.640844 -0.399094 354.441625 -0.399094 Z M 354.051 -0.153 " transform="matrix(1,0,0,-1,16.449,28.347)"/>
+</g>
+<g style="fill:rgb(57.647705%,63.134766%,63.134766%);fill-opacity:1;">
+ <use xlink:href="#glyph0-22" x="341.662" y="38.486"/>
+ <use xlink:href="#glyph0-23" x="346.6433" y="38.486"/>
+ <use xlink:href="#glyph0-23" x="351.6246" y="38.486"/>
+ <use xlink:href="#glyph0-2" x="356.6059" y="38.486"/>
+ <use xlink:href="#glyph0-2" x="361.5872" y="38.486"/>
+ <use xlink:href="#glyph0-21" x="366.5685" y="38.486"/>
+</g>
+<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(34.510803%,43.136597%,45.881653%);stroke-opacity:1;stroke-miterlimit:10;" d="M 340.051 14.847 L 340.051 0.847 " transform="matrix(1,0,0,-1,16.449,28.347)"/>
+<path style="fill:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(34.510803%,43.136597%,45.881653%);stroke-opacity:1;stroke-miterlimit:10;" d="M -1.553713 2.072884 C -1.424806 1.29554 0.000975 0.127571 0.387694 -0.001335 C 0.000975 -0.130241 -1.424806 -1.294304 -1.553713 -2.071647 " transform="matrix(0,1,1,0,356.61071,27.63965)"/>
+<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(34.510803%,43.136597%,45.881653%);stroke-opacity:1;stroke-miterlimit:10;" d="M 170.051 -28.153 L 170.051 -15.153 " transform="matrix(1,0,0,-1,16.449,28.347)"/>
+<path style="fill:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(34.510803%,43.136597%,45.881653%);stroke-opacity:1;stroke-miterlimit:10;" d="M -1.553774 2.072829 C -1.424867 1.295485 0.00091375 0.131422 0.387633 -0.00139 C 0.00091375 -0.130296 -1.424867 -1.294359 -1.553774 -2.071703 " transform="matrix(0,-1,-1,0,186.52986,43.41107)"/>
+<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(34.510803%,43.136597%,45.881653%);stroke-opacity:1;stroke-miterlimit:10;" d="M 340.051 -28.153 L 340.051 -14.153 " transform="matrix(1,0,0,-1,16.449,28.347)"/>
+<path style="fill:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(34.510803%,43.136597%,45.881653%);stroke-opacity:1;stroke-miterlimit:10;" d="M -1.55582 2.071647 C -1.423007 1.294304 -0.0011325 0.130241 0.389493 0.001335 C -0.0011325 -0.127571 -1.423007 -1.29554 -1.55582 -2.072884 " transform="matrix(0,-1,-1,0,356.61071,42.91293)"/>
+<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(34.510803%,43.136597%,45.881653%);stroke-opacity:1;stroke-miterlimit:10;" d="M 16.051 -7.153 L 35.051 -7.153 " transform="matrix(1,0,0,-1,16.449,28.347)"/>
+<path style="fill:none;stroke-width:0.995581;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(34.510803%,43.136597%,45.881653%);stroke-opacity:1;stroke-miterlimit:10;" d="M 5.019848 0.00115642 C 5.022043 1.387866 3.898074 2.509998 2.511365 2.512194 C 1.124639 2.510483 -0.00140051 1.386531 0.000310391 -0.000195116 C -0.00188488 -1.386904 1.122084 -2.509037 2.508793 -2.511232 C 3.895519 -2.509522 5.021558 -1.38557 5.019848 0.00115642 Z M 5.019848 0.00115642 " transform="matrix(1,-0.0044,-0.0044,-1,51.55047,35.3709)"/>
+<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(34.510803%,43.136597%,45.881653%);stroke-opacity:1;stroke-miterlimit:10;" d="M 73.051 -7.153 L 91.051 -7.153 " transform="matrix(1,0,0,-1,16.449,28.347)"/>
+<path style="fill:none;stroke-width:0.995581;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(34.510803%,43.136597%,45.881653%);stroke-opacity:1;stroke-miterlimit:10;" d="M 5.020928 -0.00151292 C 5.022639 1.385213 3.8966 2.509165 2.509873 2.510876 C 1.123164 2.508681 -0.00080456 1.386548 0.00139071 -0.000161381 C -0.000320194 -1.386888 1.125719 -2.510839 2.512428 -2.508644 C 3.895248 -2.510372 5.019217 -1.388239 5.020928 -0.00151292 Z M 5.020928 -0.00151292 " transform="matrix(1,0.0044,0.0044,-1,107.96736,35.42952)"/>
+<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(34.510803%,43.136597%,45.881653%);stroke-opacity:1;stroke-miterlimit:10;" d="M 130.051 -7.153 L 148.051 -7.153 " transform="matrix(1,0,0,-1,16.449,28.347)"/>
+<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(34.510803%,43.136597%,45.881653%);stroke-opacity:1;stroke-miterlimit:10;" d="M 5.019321 0.0019025 C 5.019321 1.384715 3.898227 2.509715 2.511509 2.509715 C 1.12479 2.509715 -0.00021 1.384715 -0.00021 0.0019025 C -0.00021 -1.384816 1.12479 -2.509816 2.511509 -2.509816 C 3.898227 -2.509816 5.019321 -1.384816 5.019321 0.0019025 Z M 5.019321 0.0019025 " transform="matrix(1,0,0,-1,164.93771,35.52534)"/>
+<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(34.510803%,43.136597%,45.881653%);stroke-opacity:1;stroke-miterlimit:10;" d="M 186.051 -7.153 L 205.051 -7.153 " transform="matrix(1,0,0,-1,16.449,28.347)"/>
+<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(34.510803%,43.136597%,45.881653%);stroke-opacity:1;stroke-miterlimit:10;" d="M 5.02042 0.0019025 C 5.02042 1.384715 3.89542 2.509715 2.508701 2.509715 C 1.125889 2.509715 0.00088875 1.384715 0.00088875 0.0019025 C 0.00088875 -1.384816 1.125889 -2.509816 2.508701 -2.509816 C 3.89542 -2.509816 5.02042 -1.384816 5.02042 0.0019025 Z M 5.02042 0.0019025 " transform="matrix(1,0,0,-1,221.35458,35.52534)"/>
+<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(34.510803%,43.136597%,45.881653%);stroke-opacity:1;stroke-miterlimit:10;" d="M 243.051 -7.153 L 262.051 -7.153 " transform="matrix(1,0,0,-1,16.449,28.347)"/>
+<path style="fill:none;stroke-width:0.995581;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(34.510803%,43.136597%,45.881653%);stroke-opacity:1;stroke-miterlimit:10;" d="M 5.022711 0.00114382 C 5.021 1.38787 3.897032 2.510003 2.510322 2.512198 C 1.123596 2.510487 0.00146318 1.386519 -0.000732088 -0.000190529 C 0.000978816 -1.386917 1.124948 -2.50905 2.511657 -2.511245 C 3.898383 -2.509534 5.020516 -1.385565 5.022711 0.00114382 Z M 5.022711 0.00114382 " transform="matrix(1,-0.0044,-0.0044,-1,278.32495,35.3709)"/>
+<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(34.510803%,43.136597%,45.881653%);stroke-opacity:1;stroke-miterlimit:10;" d="M 300.051 -7.153 L 316.051 -7.153 " transform="matrix(1,0,0,-1,16.449,28.347)"/>
+<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(34.510803%,43.136597%,45.881653%);stroke-opacity:1;stroke-miterlimit:10;" d="M 5.022921 -0.00106375 C 5.022921 1.385655 3.897921 2.510655 2.511202 2.510655 C 1.124484 2.510655 -0.00051625 1.385655 -0.00051625 -0.00106375 C -0.00051625 -1.387782 1.124484 -2.508876 2.511202 -2.508876 C 3.897921 -2.508876 5.022921 -1.387782 5.022921 -0.00106375 Z M 5.022921 -0.00106375 " transform="matrix(1,0,0,-1,332.52786,35.27628)"/>
+</g>
+</svg>
diff --git a/blag/static/media/git-repo-state-5.svg b/blag/static/media/git-repo-state-5.svg
new file mode 100644
index 0000000..613c0ec
--- /dev/null
+++ b/blag/static/media/git-repo-state-5.svg
@@ -0,0 +1,249 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="375.034pt" height="102.44pt" viewBox="0 0 375.034 102.44" version="1.1">
+<defs>
+<g>
+<symbol overflow="visible" id="glyph0-0">
+<path style="stroke:none;" d=""/>
+</symbol>
+<symbol overflow="visible" id="glyph0-1">
+<path style="stroke:none;" d="M 1.09375 -3.421875 L 1.09375 -0.75 C 1.09375 -0.3125 0.984375 -0.3125 0.3125 -0.3125 L 0.3125 0 C 0.671875 -0.015625 1.171875 -0.03125 1.453125 -0.03125 C 1.703125 -0.03125 2.21875 -0.015625 2.5625 0 L 2.5625 -0.3125 C 1.890625 -0.3125 1.78125 -0.3125 1.78125 -0.75 L 1.78125 -2.59375 C 1.78125 -3.625 2.5 -4.1875 3.125 -4.1875 C 3.765625 -4.1875 3.875 -3.65625 3.875 -3.078125 L 3.875 -0.75 C 3.875 -0.3125 3.765625 -0.3125 3.09375 -0.3125 L 3.09375 0 C 3.4375 -0.015625 3.953125 -0.03125 4.21875 -0.03125 C 4.46875 -0.03125 5 -0.015625 5.328125 0 L 5.328125 -0.3125 C 4.671875 -0.3125 4.5625 -0.3125 4.5625 -0.75 L 4.5625 -2.59375 C 4.5625 -3.625 5.265625 -4.1875 5.90625 -4.1875 C 6.53125 -4.1875 6.640625 -3.65625 6.640625 -3.078125 L 6.640625 -0.75 C 6.640625 -0.3125 6.53125 -0.3125 5.859375 -0.3125 L 5.859375 0 C 6.203125 -0.015625 6.71875 -0.03125 6.984375 -0.03125 C 7.25 -0.03125 7.765625 -0.015625 8.109375 0 L 8.109375 -0.3125 C 7.59375 -0.3125 7.34375 -0.3125 7.328125 -0.609375 L 7.328125 -2.515625 C 7.328125 -3.375 7.328125 -3.671875 7.015625 -4.03125 C 6.875 -4.203125 6.546875 -4.40625 5.96875 -4.40625 C 5.140625 -4.40625 4.6875 -3.8125 4.53125 -3.421875 C 4.390625 -4.296875 3.65625 -4.40625 3.203125 -4.40625 C 2.46875 -4.40625 2 -3.984375 1.71875 -3.359375 L 1.71875 -4.40625 L 0.3125 -4.296875 L 0.3125 -3.984375 C 1.015625 -3.984375 1.09375 -3.921875 1.09375 -3.421875 Z M 1.09375 -3.421875 "/>
+</symbol>
+<symbol overflow="visible" id="glyph0-2">
+<path style="stroke:none;" d="M 3.3125 -0.75 C 3.359375 -0.359375 3.625 0.0625 4.09375 0.0625 C 4.3125 0.0625 4.921875 -0.078125 4.921875 -0.890625 L 4.921875 -1.453125 L 4.671875 -1.453125 L 4.671875 -0.890625 C 4.671875 -0.3125 4.421875 -0.25 4.3125 -0.25 C 3.984375 -0.25 3.9375 -0.703125 3.9375 -0.75 L 3.9375 -2.734375 C 3.9375 -3.15625 3.9375 -3.546875 3.578125 -3.921875 C 3.1875 -4.3125 2.6875 -4.46875 2.21875 -4.46875 C 1.390625 -4.46875 0.703125 -4 0.703125 -3.34375 C 0.703125 -3.046875 0.90625 -2.875 1.171875 -2.875 C 1.453125 -2.875 1.625 -3.078125 1.625 -3.328125 C 1.625 -3.453125 1.578125 -3.78125 1.109375 -3.78125 C 1.390625 -4.140625 1.875 -4.25 2.1875 -4.25 C 2.6875 -4.25 3.25 -3.859375 3.25 -2.96875 L 3.25 -2.609375 C 2.734375 -2.578125 2.046875 -2.546875 1.421875 -2.25 C 0.671875 -1.90625 0.421875 -1.390625 0.421875 -0.953125 C 0.421875 -0.140625 1.390625 0.109375 2.015625 0.109375 C 2.671875 0.109375 3.125 -0.296875 3.3125 -0.75 Z M 3.25 -2.390625 L 3.25 -1.390625 C 3.25 -0.453125 2.53125 -0.109375 2.078125 -0.109375 C 1.59375 -0.109375 1.1875 -0.453125 1.1875 -0.953125 C 1.1875 -1.5 1.609375 -2.328125 3.25 -2.390625 Z M 3.25 -2.390625 "/>
+</symbol>
+<symbol overflow="visible" id="glyph0-3">
+<path style="stroke:none;" d="M 2.078125 -1.9375 C 2.296875 -1.890625 3.109375 -1.734375 3.109375 -1.015625 C 3.109375 -0.515625 2.765625 -0.109375 1.984375 -0.109375 C 1.140625 -0.109375 0.78125 -0.671875 0.59375 -1.53125 C 0.5625 -1.65625 0.5625 -1.6875 0.453125 -1.6875 C 0.328125 -1.6875 0.328125 -1.625 0.328125 -1.453125 L 0.328125 -0.125 C 0.328125 0.046875 0.328125 0.109375 0.4375 0.109375 C 0.484375 0.109375 0.5 0.09375 0.6875 -0.09375 C 0.703125 -0.109375 0.703125 -0.125 0.890625 -0.3125 C 1.328125 0.09375 1.78125 0.109375 1.984375 0.109375 C 3.125 0.109375 3.59375 -0.5625 3.59375 -1.28125 C 3.59375 -1.796875 3.296875 -2.109375 3.171875 -2.21875 C 2.84375 -2.546875 2.453125 -2.625 2.03125 -2.703125 C 1.46875 -2.8125 0.8125 -2.9375 0.8125 -3.515625 C 0.8125 -3.875 1.0625 -4.28125 1.921875 -4.28125 C 3.015625 -4.28125 3.078125 -3.375 3.09375 -3.078125 C 3.09375 -2.984375 3.1875 -2.984375 3.203125 -2.984375 C 3.34375 -2.984375 3.34375 -3.03125 3.34375 -3.21875 L 3.34375 -4.234375 C 3.34375 -4.390625 3.34375 -4.46875 3.234375 -4.46875 C 3.1875 -4.46875 3.15625 -4.46875 3.03125 -4.34375 C 3 -4.3125 2.90625 -4.21875 2.859375 -4.1875 C 2.484375 -4.46875 2.078125 -4.46875 1.921875 -4.46875 C 0.703125 -4.46875 0.328125 -3.796875 0.328125 -3.234375 C 0.328125 -2.890625 0.484375 -2.609375 0.75 -2.390625 C 1.078125 -2.140625 1.359375 -2.078125 2.078125 -1.9375 Z M 2.078125 -1.9375 "/>
+</symbol>
+<symbol overflow="visible" id="glyph0-4">
+<path style="stroke:none;" d="M 1.71875 -3.984375 L 3.15625 -3.984375 L 3.15625 -4.296875 L 1.71875 -4.296875 L 1.71875 -6.125 L 1.46875 -6.125 C 1.46875 -5.3125 1.171875 -4.25 0.1875 -4.203125 L 0.1875 -3.984375 L 1.03125 -3.984375 L 1.03125 -1.234375 C 1.03125 -0.015625 1.96875 0.109375 2.328125 0.109375 C 3.03125 0.109375 3.3125 -0.59375 3.3125 -1.234375 L 3.3125 -1.796875 L 3.0625 -1.796875 L 3.0625 -1.25 C 3.0625 -0.515625 2.765625 -0.140625 2.390625 -0.140625 C 1.71875 -0.140625 1.71875 -1.046875 1.71875 -1.21875 Z M 1.71875 -3.984375 "/>
+</symbol>
+<symbol overflow="visible" id="glyph0-5">
+<path style="stroke:none;" d="M 1.109375 -2.515625 C 1.171875 -4 2.015625 -4.25 2.359375 -4.25 C 3.375 -4.25 3.484375 -2.90625 3.484375 -2.515625 Z M 1.109375 -2.296875 L 3.890625 -2.296875 C 4.109375 -2.296875 4.140625 -2.296875 4.140625 -2.515625 C 4.140625 -3.5 3.59375 -4.46875 2.359375 -4.46875 C 1.203125 -4.46875 0.28125 -3.4375 0.28125 -2.1875 C 0.28125 -0.859375 1.328125 0.109375 2.46875 0.109375 C 3.6875 0.109375 4.140625 -1 4.140625 -1.1875 C 4.140625 -1.28125 4.0625 -1.3125 4 -1.3125 C 3.921875 -1.3125 3.890625 -1.25 3.875 -1.171875 C 3.53125 -0.140625 2.625 -0.140625 2.53125 -0.140625 C 2.03125 -0.140625 1.640625 -0.4375 1.40625 -0.8125 C 1.109375 -1.28125 1.109375 -1.9375 1.109375 -2.296875 Z M 1.109375 -2.296875 "/>
+</symbol>
+<symbol overflow="visible" id="glyph0-6">
+<path style="stroke:none;" d="M 1.671875 -3.3125 L 1.671875 -4.40625 L 0.28125 -4.296875 L 0.28125 -3.984375 C 0.984375 -3.984375 1.0625 -3.921875 1.0625 -3.421875 L 1.0625 -0.75 C 1.0625 -0.3125 0.953125 -0.3125 0.28125 -0.3125 L 0.28125 0 C 0.671875 -0.015625 1.140625 -0.03125 1.421875 -0.03125 C 1.8125 -0.03125 2.28125 -0.03125 2.6875 0 L 2.6875 -0.3125 L 2.46875 -0.3125 C 1.734375 -0.3125 1.71875 -0.421875 1.71875 -0.78125 L 1.71875 -2.3125 C 1.71875 -3.296875 2.140625 -4.1875 2.890625 -4.1875 C 2.953125 -4.1875 2.984375 -4.1875 3 -4.171875 C 2.96875 -4.171875 2.765625 -4.046875 2.765625 -3.78125 C 2.765625 -3.515625 2.984375 -3.359375 3.203125 -3.359375 C 3.375 -3.359375 3.625 -3.484375 3.625 -3.796875 C 3.625 -4.109375 3.3125 -4.40625 2.890625 -4.40625 C 2.15625 -4.40625 1.796875 -3.734375 1.671875 -3.3125 Z M 1.671875 -3.3125 "/>
+</symbol>
+<symbol overflow="visible" id="glyph0-7">
+<path style="stroke:none;" d="M 4.6875 -2.140625 C 4.6875 -3.40625 3.703125 -4.46875 2.5 -4.46875 C 1.25 -4.46875 0.28125 -3.375 0.28125 -2.140625 C 0.28125 -0.84375 1.3125 0.109375 2.484375 0.109375 C 3.6875 0.109375 4.6875 -0.875 4.6875 -2.140625 Z M 2.5 -0.140625 C 2.0625 -0.140625 1.625 -0.34375 1.359375 -0.8125 C 1.109375 -1.25 1.109375 -1.859375 1.109375 -2.21875 C 1.109375 -2.609375 1.109375 -3.140625 1.34375 -3.578125 C 1.609375 -4.03125 2.078125 -4.25 2.484375 -4.25 C 2.921875 -4.25 3.34375 -4.03125 3.609375 -3.59375 C 3.875 -3.171875 3.875 -2.59375 3.875 -2.21875 C 3.875 -1.859375 3.875 -1.3125 3.65625 -0.875 C 3.421875 -0.421875 2.984375 -0.140625 2.5 -0.140625 Z M 2.5 -0.140625 "/>
+</symbol>
+<symbol overflow="visible" id="glyph0-8">
+<path style="stroke:none;" d="M 1.71875 -3.75 L 1.71875 -4.40625 L 0.28125 -4.296875 L 0.28125 -3.984375 C 0.984375 -3.984375 1.0625 -3.921875 1.0625 -3.484375 L 1.0625 1.171875 C 1.0625 1.625 0.953125 1.625 0.28125 1.625 L 0.28125 1.9375 C 0.625 1.921875 1.140625 1.90625 1.390625 1.90625 C 1.671875 1.90625 2.171875 1.921875 2.515625 1.9375 L 2.515625 1.625 C 1.859375 1.625 1.75 1.625 1.75 1.171875 L 1.75 -0.59375 C 1.796875 -0.421875 2.21875 0.109375 2.96875 0.109375 C 4.15625 0.109375 5.1875 -0.875 5.1875 -2.15625 C 5.1875 -3.421875 4.234375 -4.40625 3.109375 -4.40625 C 2.328125 -4.40625 1.90625 -3.96875 1.71875 -3.75 Z M 1.75 -1.140625 L 1.75 -3.359375 C 2.03125 -3.875 2.515625 -4.15625 3.03125 -4.15625 C 3.765625 -4.15625 4.359375 -3.28125 4.359375 -2.15625 C 4.359375 -0.953125 3.671875 -0.109375 2.9375 -0.109375 C 2.53125 -0.109375 2.15625 -0.3125 1.890625 -0.71875 C 1.75 -0.921875 1.75 -0.9375 1.75 -1.140625 Z M 1.75 -1.140625 "/>
+</symbol>
+<symbol overflow="visible" id="glyph0-9">
+<path style="stroke:none;" d="M 1.765625 -4.40625 L 0.375 -4.296875 L 0.375 -3.984375 C 1.015625 -3.984375 1.109375 -3.921875 1.109375 -3.4375 L 1.109375 -0.75 C 1.109375 -0.3125 1 -0.3125 0.328125 -0.3125 L 0.328125 0 C 0.640625 -0.015625 1.1875 -0.03125 1.421875 -0.03125 C 1.78125 -0.03125 2.125 -0.015625 2.46875 0 L 2.46875 -0.3125 C 1.796875 -0.3125 1.765625 -0.359375 1.765625 -0.75 Z M 1.796875 -6.140625 C 1.796875 -6.453125 1.5625 -6.671875 1.28125 -6.671875 C 0.96875 -6.671875 0.75 -6.40625 0.75 -6.140625 C 0.75 -5.875 0.96875 -5.609375 1.28125 -5.609375 C 1.5625 -5.609375 1.796875 -5.828125 1.796875 -6.140625 Z M 1.796875 -6.140625 "/>
+</symbol>
+<symbol overflow="visible" id="glyph0-10">
+<path style="stroke:none;" d="M 1.171875 -2.171875 C 1.171875 -3.796875 1.984375 -4.21875 2.515625 -4.21875 C 2.609375 -4.21875 3.234375 -4.203125 3.578125 -3.84375 C 3.171875 -3.8125 3.109375 -3.515625 3.109375 -3.390625 C 3.109375 -3.125 3.296875 -2.9375 3.5625 -2.9375 C 3.828125 -2.9375 4.03125 -3.09375 4.03125 -3.40625 C 4.03125 -4.078125 3.265625 -4.46875 2.5 -4.46875 C 1.25 -4.46875 0.34375 -3.390625 0.34375 -2.15625 C 0.34375 -0.875 1.328125 0.109375 2.484375 0.109375 C 3.8125 0.109375 4.140625 -1.09375 4.140625 -1.1875 C 4.140625 -1.28125 4.03125 -1.28125 4 -1.28125 C 3.921875 -1.28125 3.890625 -1.25 3.875 -1.1875 C 3.59375 -0.265625 2.9375 -0.140625 2.578125 -0.140625 C 2.046875 -0.140625 1.171875 -0.5625 1.171875 -2.171875 Z M 1.171875 -2.171875 "/>
+</symbol>
+<symbol overflow="visible" id="glyph0-11">
+<path style="stroke:none;" d="M 4.359375 -7.09375 C 4.421875 -7.234375 4.421875 -7.25 4.421875 -7.28125 C 4.421875 -7.390625 4.328125 -7.484375 4.21875 -7.484375 C 4.078125 -7.484375 4.03125 -7.375 4 -7.28125 L 0.609375 2.109375 C 0.5625 2.25 0.5625 2.265625 0.5625 2.296875 C 0.5625 2.40625 0.640625 2.5 0.75 2.5 C 0.890625 2.5 0.9375 2.390625 0.96875 2.296875 Z M 4.359375 -7.09375 "/>
+</symbol>
+<symbol overflow="visible" id="glyph0-12">
+<path style="stroke:none;" d="M 1.75 -4.296875 L 1.75 -5.453125 C 1.75 -6.328125 2.21875 -6.8125 2.65625 -6.8125 C 2.6875 -6.8125 2.84375 -6.8125 2.984375 -6.734375 C 2.875 -6.703125 2.6875 -6.5625 2.6875 -6.3125 C 2.6875 -6.09375 2.84375 -5.890625 3.125 -5.890625 C 3.40625 -5.890625 3.5625 -6.09375 3.5625 -6.328125 C 3.5625 -6.703125 3.1875 -7.03125 2.65625 -7.03125 C 1.96875 -7.03125 1.109375 -6.5 1.109375 -5.4375 L 1.109375 -4.296875 L 0.328125 -4.296875 L 0.328125 -3.984375 L 1.109375 -3.984375 L 1.109375 -0.75 C 1.109375 -0.3125 1 -0.3125 0.34375 -0.3125 L 0.34375 0 C 0.734375 -0.015625 1.203125 -0.03125 1.46875 -0.03125 C 1.875 -0.03125 2.34375 -0.03125 2.734375 0 L 2.734375 -0.3125 L 2.53125 -0.3125 C 1.796875 -0.3125 1.78125 -0.421875 1.78125 -0.78125 L 1.78125 -3.984375 L 2.90625 -3.984375 L 2.90625 -4.296875 Z M 1.75 -4.296875 "/>
+</symbol>
+<symbol overflow="visible" id="glyph0-13">
+<path style="stroke:none;" d="M 1.71875 -3.765625 L 1.71875 -6.921875 L 0.28125 -6.8125 L 0.28125 -6.5 C 0.984375 -6.5 1.0625 -6.4375 1.0625 -5.9375 L 1.0625 0 L 1.3125 0 C 1.3125 -0.015625 1.390625 -0.15625 1.671875 -0.625 C 1.8125 -0.390625 2.234375 0.109375 2.96875 0.109375 C 4.15625 0.109375 5.1875 -0.875 5.1875 -2.15625 C 5.1875 -3.421875 4.21875 -4.40625 3.078125 -4.40625 C 2.296875 -4.40625 1.875 -3.9375 1.71875 -3.765625 Z M 1.75 -1.140625 L 1.75 -3.1875 C 1.75 -3.375 1.75 -3.390625 1.859375 -3.546875 C 2.25 -4.109375 2.796875 -4.1875 3.03125 -4.1875 C 3.484375 -4.1875 3.84375 -3.921875 4.078125 -3.546875 C 4.34375 -3.140625 4.359375 -2.578125 4.359375 -2.15625 C 4.359375 -1.796875 4.34375 -1.203125 4.0625 -0.75 C 3.84375 -0.4375 3.46875 -0.109375 2.9375 -0.109375 C 2.484375 -0.109375 2.125 -0.34375 1.890625 -0.71875 C 1.75 -0.921875 1.75 -0.953125 1.75 -1.140625 Z M 1.75 -1.140625 "/>
+</symbol>
+<symbol overflow="visible" id="glyph0-14">
+<path style="stroke:none;" d="M 3.78125 -0.546875 L 3.78125 0.109375 L 5.25 0 L 5.25 -0.3125 C 4.5625 -0.3125 4.46875 -0.375 4.46875 -0.875 L 4.46875 -6.921875 L 3.046875 -6.8125 L 3.046875 -6.5 C 3.734375 -6.5 3.8125 -6.4375 3.8125 -5.9375 L 3.8125 -3.78125 C 3.53125 -4.140625 3.09375 -4.40625 2.5625 -4.40625 C 1.390625 -4.40625 0.34375 -3.421875 0.34375 -2.140625 C 0.34375 -0.875 1.3125 0.109375 2.453125 0.109375 C 3.09375 0.109375 3.53125 -0.234375 3.78125 -0.546875 Z M 3.78125 -3.21875 L 3.78125 -1.171875 C 3.78125 -1 3.78125 -0.984375 3.671875 -0.8125 C 3.375 -0.328125 2.9375 -0.109375 2.5 -0.109375 C 2.046875 -0.109375 1.6875 -0.375 1.453125 -0.75 C 1.203125 -1.15625 1.171875 -1.71875 1.171875 -2.140625 C 1.171875 -2.5 1.1875 -3.09375 1.46875 -3.546875 C 1.6875 -3.859375 2.0625 -4.1875 2.609375 -4.1875 C 2.953125 -4.1875 3.375 -4.03125 3.671875 -3.59375 C 3.78125 -3.421875 3.78125 -3.40625 3.78125 -3.21875 Z M 3.78125 -3.21875 "/>
+</symbol>
+<symbol overflow="visible" id="glyph0-15">
+<path style="stroke:none;" d="M 2.890625 -3.515625 C 3.703125 -3.78125 4.28125 -4.46875 4.28125 -5.265625 C 4.28125 -6.078125 3.40625 -6.640625 2.453125 -6.640625 C 1.453125 -6.640625 0.6875 -6.046875 0.6875 -5.28125 C 0.6875 -4.953125 0.90625 -4.765625 1.203125 -4.765625 C 1.5 -4.765625 1.703125 -4.984375 1.703125 -5.28125 C 1.703125 -5.765625 1.234375 -5.765625 1.09375 -5.765625 C 1.390625 -6.265625 2.046875 -6.390625 2.40625 -6.390625 C 2.828125 -6.390625 3.375 -6.171875 3.375 -5.28125 C 3.375 -5.15625 3.34375 -4.578125 3.09375 -4.140625 C 2.796875 -3.65625 2.453125 -3.625 2.203125 -3.625 C 2.125 -3.609375 1.890625 -3.59375 1.8125 -3.59375 C 1.734375 -3.578125 1.671875 -3.5625 1.671875 -3.46875 C 1.671875 -3.359375 1.734375 -3.359375 1.90625 -3.359375 L 2.34375 -3.359375 C 3.15625 -3.359375 3.53125 -2.6875 3.53125 -1.703125 C 3.53125 -0.34375 2.84375 -0.0625 2.40625 -0.0625 C 1.96875 -0.0625 1.21875 -0.234375 0.875 -0.8125 C 1.21875 -0.765625 1.53125 -0.984375 1.53125 -1.359375 C 1.53125 -1.71875 1.265625 -1.921875 0.984375 -1.921875 C 0.734375 -1.921875 0.421875 -1.78125 0.421875 -1.34375 C 0.421875 -0.4375 1.34375 0.21875 2.4375 0.21875 C 3.65625 0.21875 4.5625 -0.6875 4.5625 -1.703125 C 4.5625 -2.515625 3.921875 -3.296875 2.890625 -3.515625 Z M 2.890625 -3.515625 "/>
+</symbol>
+<symbol overflow="visible" id="glyph0-16">
+<path style="stroke:none;" d="M 2.9375 -6.375 C 2.9375 -6.625 2.9375 -6.640625 2.703125 -6.640625 C 2.078125 -6 1.203125 -6 0.890625 -6 L 0.890625 -5.6875 C 1.09375 -5.6875 1.671875 -5.6875 2.1875 -5.953125 L 2.1875 -0.78125 C 2.1875 -0.421875 2.15625 -0.3125 1.265625 -0.3125 L 0.953125 -0.3125 L 0.953125 0 C 1.296875 -0.03125 2.15625 -0.03125 2.5625 -0.03125 C 2.953125 -0.03125 3.828125 -0.03125 4.171875 0 L 4.171875 -0.3125 L 3.859375 -0.3125 C 2.953125 -0.3125 2.9375 -0.421875 2.9375 -0.78125 Z M 2.9375 -6.375 "/>
+</symbol>
+<symbol overflow="visible" id="glyph0-17">
+<path style="stroke:none;" d="M 1.265625 -0.765625 L 2.328125 -1.796875 C 3.875 -3.171875 4.46875 -3.703125 4.46875 -4.703125 C 4.46875 -5.84375 3.578125 -6.640625 2.359375 -6.640625 C 1.234375 -6.640625 0.5 -5.71875 0.5 -4.828125 C 0.5 -4.28125 1 -4.28125 1.03125 -4.28125 C 1.203125 -4.28125 1.546875 -4.390625 1.546875 -4.8125 C 1.546875 -5.0625 1.359375 -5.328125 1.015625 -5.328125 C 0.9375 -5.328125 0.921875 -5.328125 0.890625 -5.3125 C 1.109375 -5.96875 1.65625 -6.328125 2.234375 -6.328125 C 3.140625 -6.328125 3.5625 -5.515625 3.5625 -4.703125 C 3.5625 -3.90625 3.078125 -3.125 2.515625 -2.5 L 0.609375 -0.375 C 0.5 -0.265625 0.5 -0.234375 0.5 0 L 4.203125 0 L 4.46875 -1.734375 L 4.234375 -1.734375 C 4.171875 -1.4375 4.109375 -1 4 -0.84375 C 3.9375 -0.765625 3.28125 -0.765625 3.0625 -0.765625 Z M 1.265625 -0.765625 "/>
+</symbol>
+<symbol overflow="visible" id="glyph0-18">
+<path style="stroke:none;" d="M 3.65625 -3.171875 L 3.65625 -2.84375 C 3.65625 -0.515625 2.625 -0.0625 2.046875 -0.0625 C 1.875 -0.0625 1.328125 -0.078125 1.0625 -0.421875 C 1.5 -0.421875 1.578125 -0.703125 1.578125 -0.875 C 1.578125 -1.1875 1.34375 -1.328125 1.125 -1.328125 C 0.96875 -1.328125 0.671875 -1.25 0.671875 -0.859375 C 0.671875 -0.1875 1.203125 0.21875 2.046875 0.21875 C 3.34375 0.21875 4.5625 -1.140625 4.5625 -3.28125 C 4.5625 -5.96875 3.40625 -6.640625 2.515625 -6.640625 C 1.96875 -6.640625 1.484375 -6.453125 1.0625 -6.015625 C 0.640625 -5.5625 0.421875 -5.140625 0.421875 -4.390625 C 0.421875 -3.15625 1.296875 -2.171875 2.40625 -2.171875 C 3.015625 -2.171875 3.421875 -2.59375 3.65625 -3.171875 Z M 2.421875 -2.40625 C 2.265625 -2.40625 1.796875 -2.40625 1.5 -3.03125 C 1.3125 -3.40625 1.3125 -3.890625 1.3125 -4.390625 C 1.3125 -4.921875 1.3125 -5.390625 1.53125 -5.765625 C 1.796875 -6.265625 2.171875 -6.390625 2.515625 -6.390625 C 2.984375 -6.390625 3.3125 -6.046875 3.484375 -5.609375 C 3.59375 -5.28125 3.640625 -4.65625 3.640625 -4.203125 C 3.640625 -3.375 3.296875 -2.40625 2.421875 -2.40625 Z M 2.421875 -2.40625 "/>
+</symbol>
+<symbol overflow="visible" id="glyph0-19">
+<path style="stroke:none;" d="M 1.3125 -3.265625 L 1.3125 -3.515625 C 1.3125 -6.03125 2.546875 -6.390625 3.0625 -6.390625 C 3.296875 -6.390625 3.71875 -6.328125 3.9375 -5.984375 C 3.78125 -5.984375 3.390625 -5.984375 3.390625 -5.546875 C 3.390625 -5.234375 3.625 -5.078125 3.84375 -5.078125 C 4 -5.078125 4.3125 -5.171875 4.3125 -5.5625 C 4.3125 -6.15625 3.875 -6.640625 3.046875 -6.640625 C 1.765625 -6.640625 0.421875 -5.359375 0.421875 -3.15625 C 0.421875 -0.484375 1.578125 0.21875 2.5 0.21875 C 3.609375 0.21875 4.5625 -0.71875 4.5625 -2.03125 C 4.5625 -3.296875 3.671875 -4.25 2.5625 -4.25 C 1.890625 -4.25 1.515625 -3.75 1.3125 -3.265625 Z M 2.5 -0.0625 C 1.875 -0.0625 1.578125 -0.65625 1.515625 -0.8125 C 1.328125 -1.28125 1.328125 -2.078125 1.328125 -2.25 C 1.328125 -3.03125 1.65625 -4.03125 2.546875 -4.03125 C 2.71875 -4.03125 3.171875 -4.03125 3.484375 -3.40625 C 3.65625 -3.046875 3.65625 -2.53125 3.65625 -2.046875 C 3.65625 -1.5625 3.65625 -1.0625 3.484375 -0.703125 C 3.1875 -0.109375 2.734375 -0.0625 2.5 -0.0625 Z M 2.5 -0.0625 "/>
+</symbol>
+<symbol overflow="visible" id="glyph0-20">
+<path style="stroke:none;" d="M 2.9375 -1.640625 L 2.9375 -0.78125 C 2.9375 -0.421875 2.90625 -0.3125 2.171875 -0.3125 L 1.96875 -0.3125 L 1.96875 0 C 2.375 -0.03125 2.890625 -0.03125 3.3125 -0.03125 C 3.734375 -0.03125 4.25 -0.03125 4.671875 0 L 4.671875 -0.3125 L 4.453125 -0.3125 C 3.71875 -0.3125 3.703125 -0.421875 3.703125 -0.78125 L 3.703125 -1.640625 L 4.6875 -1.640625 L 4.6875 -1.953125 L 3.703125 -1.953125 L 3.703125 -6.484375 C 3.703125 -6.6875 3.703125 -6.75 3.53125 -6.75 C 3.453125 -6.75 3.421875 -6.75 3.34375 -6.625 L 0.28125 -1.953125 L 0.28125 -1.640625 Z M 2.984375 -1.953125 L 0.5625 -1.953125 L 2.984375 -5.671875 Z M 2.984375 -1.953125 "/>
+</symbol>
+<symbol overflow="visible" id="glyph0-21">
+<path style="stroke:none;" d="M 4.578125 -3.1875 C 4.578125 -3.984375 4.53125 -4.78125 4.1875 -5.515625 C 3.734375 -6.484375 2.90625 -6.640625 2.5 -6.640625 C 1.890625 -6.640625 1.171875 -6.375 0.75 -5.453125 C 0.4375 -4.765625 0.390625 -3.984375 0.390625 -3.1875 C 0.390625 -2.4375 0.421875 -1.546875 0.84375 -0.78125 C 1.265625 0.015625 2 0.21875 2.484375 0.21875 C 3.015625 0.21875 3.78125 0.015625 4.21875 -0.9375 C 4.53125 -1.625 4.578125 -2.40625 4.578125 -3.1875 Z M 2.484375 0 C 2.09375 0 1.5 -0.25 1.328125 -1.203125 C 1.21875 -1.796875 1.21875 -2.71875 1.21875 -3.3125 C 1.21875 -3.953125 1.21875 -4.609375 1.296875 -5.140625 C 1.484375 -6.328125 2.234375 -6.421875 2.484375 -6.421875 C 2.8125 -6.421875 3.46875 -6.234375 3.65625 -5.25 C 3.765625 -4.6875 3.765625 -3.9375 3.765625 -3.3125 C 3.765625 -2.5625 3.765625 -1.890625 3.65625 -1.25 C 3.5 -0.296875 2.9375 0 2.484375 0 Z M 2.484375 0 "/>
+</symbol>
+<symbol overflow="visible" id="glyph0-22">
+<path style="stroke:none;" d="M 4.46875 -2 C 4.46875 -3.1875 3.65625 -4.1875 2.578125 -4.1875 C 2.109375 -4.1875 1.671875 -4.03125 1.3125 -3.671875 L 1.3125 -5.625 C 1.515625 -5.5625 1.84375 -5.5 2.15625 -5.5 C 3.390625 -5.5 4.09375 -6.40625 4.09375 -6.53125 C 4.09375 -6.59375 4.0625 -6.640625 3.984375 -6.640625 C 3.984375 -6.640625 3.953125 -6.640625 3.90625 -6.609375 C 3.703125 -6.515625 3.21875 -6.3125 2.546875 -6.3125 C 2.15625 -6.3125 1.6875 -6.390625 1.21875 -6.59375 C 1.140625 -6.625 1.125 -6.625 1.109375 -6.625 C 1 -6.625 1 -6.546875 1 -6.390625 L 1 -3.4375 C 1 -3.265625 1 -3.1875 1.140625 -3.1875 C 1.21875 -3.1875 1.234375 -3.203125 1.28125 -3.265625 C 1.390625 -3.421875 1.75 -3.96875 2.5625 -3.96875 C 3.078125 -3.96875 3.328125 -3.515625 3.40625 -3.328125 C 3.5625 -2.953125 3.59375 -2.578125 3.59375 -2.078125 C 3.59375 -1.71875 3.59375 -1.125 3.34375 -0.703125 C 3.109375 -0.3125 2.734375 -0.0625 2.28125 -0.0625 C 1.5625 -0.0625 0.984375 -0.59375 0.8125 -1.171875 C 0.84375 -1.171875 0.875 -1.15625 0.984375 -1.15625 C 1.3125 -1.15625 1.484375 -1.40625 1.484375 -1.640625 C 1.484375 -1.890625 1.3125 -2.140625 0.984375 -2.140625 C 0.84375 -2.140625 0.5 -2.0625 0.5 -1.609375 C 0.5 -0.75 1.1875 0.21875 2.296875 0.21875 C 3.453125 0.21875 4.46875 -0.734375 4.46875 -2 Z M 4.46875 -2 "/>
+</symbol>
+<symbol overflow="visible" id="glyph0-23">
+<path style="stroke:none;" d="M 4.75 -6.078125 C 4.828125 -6.1875 4.828125 -6.203125 4.828125 -6.421875 L 2.40625 -6.421875 C 1.203125 -6.421875 1.171875 -6.546875 1.140625 -6.734375 L 0.890625 -6.734375 L 0.5625 -4.6875 L 0.8125 -4.6875 C 0.84375 -4.84375 0.921875 -5.46875 1.0625 -5.59375 C 1.125 -5.65625 1.90625 -5.65625 2.03125 -5.65625 L 4.09375 -5.65625 C 3.984375 -5.5 3.203125 -4.40625 2.984375 -4.078125 C 2.078125 -2.734375 1.75 -1.34375 1.75 -0.328125 C 1.75 -0.234375 1.75 0.21875 2.21875 0.21875 C 2.671875 0.21875 2.671875 -0.234375 2.671875 -0.328125 L 2.671875 -0.84375 C 2.671875 -1.390625 2.703125 -1.9375 2.78125 -2.46875 C 2.828125 -2.703125 2.953125 -3.5625 3.40625 -4.171875 Z M 4.75 -6.078125 "/>
+</symbol>
+<symbol overflow="visible" id="glyph0-24">
+<path style="stroke:none;" d="M 1.625 -4.5625 C 1.171875 -4.859375 1.125 -5.1875 1.125 -5.359375 C 1.125 -5.96875 1.78125 -6.390625 2.484375 -6.390625 C 3.203125 -6.390625 3.84375 -5.875 3.84375 -5.15625 C 3.84375 -4.578125 3.453125 -4.109375 2.859375 -3.765625 Z M 3.078125 -3.609375 C 3.796875 -3.984375 4.28125 -4.5 4.28125 -5.15625 C 4.28125 -6.078125 3.40625 -6.640625 2.5 -6.640625 C 1.5 -6.640625 0.6875 -5.90625 0.6875 -4.96875 C 0.6875 -4.796875 0.703125 -4.34375 1.125 -3.875 C 1.234375 -3.765625 1.609375 -3.515625 1.859375 -3.34375 C 1.28125 -3.046875 0.421875 -2.5 0.421875 -1.5 C 0.421875 -0.453125 1.4375 0.21875 2.484375 0.21875 C 3.609375 0.21875 4.5625 -0.609375 4.5625 -1.671875 C 4.5625 -2.03125 4.453125 -2.484375 4.0625 -2.90625 C 3.875 -3.109375 3.71875 -3.203125 3.078125 -3.609375 Z M 2.078125 -3.1875 L 3.3125 -2.40625 C 3.59375 -2.21875 4.0625 -1.921875 4.0625 -1.3125 C 4.0625 -0.578125 3.3125 -0.0625 2.5 -0.0625 C 1.640625 -0.0625 0.921875 -0.671875 0.921875 -1.5 C 0.921875 -2.078125 1.234375 -2.71875 2.078125 -3.1875 Z M 2.078125 -3.1875 "/>
+</symbol>
+</g>
+<clipPath id="clip1">
+ <path d="M 324 0 L 375.035156 0 L 375.035156 28 L 324 28 Z M 324 0 "/>
+</clipPath>
+<clipPath id="clip2">
+ <path d="M 156 85 L 217 85 L 217 102.441406 L 156 102.441406 Z M 156 85 "/>
+</clipPath>
+<clipPath id="clip3">
+ <path d="M 142 71 L 231 71 L 231 102.441406 L 142 102.441406 Z M 142 71 "/>
+</clipPath>
+<clipPath id="clip4">
+ <path d="M 275 85 L 325 85 L 325 102.441406 L 275 102.441406 Z M 275 85 "/>
+</clipPath>
+<clipPath id="clip5">
+ <path d="M 261 71 L 339 71 L 339 102.441406 L 261 102.441406 Z M 261 71 "/>
+</clipPath>
+<clipPath id="clip6">
+ <path d="M 327 14 L 375.035156 14 L 375.035156 57 L 327 57 Z M 327 14 "/>
+</clipPath>
+</defs>
+<g id="surface1">
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(2.74353%,21.174622%,25.881958%);fill-opacity:1;" d="M 370.65625 0.398438 L 342.566406 0.398438 C 340.367188 0.398438 338.582031 2.183594 338.582031 4.382812 L 338.582031 9.179688 C 338.582031 11.382812 340.367188 13.167969 342.566406 13.167969 L 370.65625 13.167969 C 372.855469 13.167969 374.640625 11.382812 374.640625 9.179688 L 374.640625 4.382812 C 374.640625 2.183594 372.855469 0.398438 370.65625 0.398438 Z M 370.65625 0.398438 "/>
+<g clip-path="url(#clip1)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(34.510803%,43.136597%,45.881653%);stroke-opacity:1;stroke-miterlimit:10;" d="M 354.051 27.846 L 326.051 27.846 C 323.918187 27.947563 322.133031 26.162406 322.051 23.846 L 322.051 18.846 C 322.133031 16.963188 323.918187 15.178031 326.051 14.846 L 354.051 14.846 C 356.406469 15.178031 358.191625 16.963188 358.051 18.846 L 358.051 23.846 C 358.191625 26.162406 356.406469 27.947563 354.20725 27.947563 Z M 354.051 27.846 " transform="matrix(1,0,0,-1,16.449,28.346)"/>
+</g>
+<g style="fill:rgb(82.743835%,21.174622%,50.979614%);fill-opacity:1;">
+ <use xlink:href="#glyph0-1" x="341.898" y="9.847"/>
+ <use xlink:href="#glyph0-2" x="350.199835" y="9.847"/>
+ <use xlink:href="#glyph0-3" x="355.181135" y="9.847"/>
+ <use xlink:href="#glyph0-4" x="359.110384" y="9.847"/>
+ <use xlink:href="#glyph0-5" x="362.984839" y="9.847"/>
+ <use xlink:href="#glyph0-6" x="367.412219" y="9.847"/>
+</g>
+<g clip-path="url(#clip2)" clip-rule="nonzero">
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(2.74353%,21.174622%,25.881958%);fill-opacity:1;" d="M 213 85.4375 L 160.058594 85.4375 C 157.859375 85.4375 156.074219 87.222656 156.074219 89.421875 L 156.074219 98.058594 C 156.074219 100.257812 157.859375 102.042969 160.058594 102.042969 L 213 102.042969 C 215.199219 102.042969 216.984375 100.257812 216.984375 98.058594 L 216.984375 89.421875 C 216.984375 87.222656 215.199219 85.4375 213 85.4375 Z M 213 85.4375 "/>
+</g>
+<g clip-path="url(#clip3)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(34.510803%,43.136597%,45.881653%);stroke-opacity:1;stroke-miterlimit:10;" d="M 197.051 -57.154 L 144.051 -57.154 C 141.410375 -57.0915 139.625219 -58.876656 140.051 -61.154 L 140.051 -70.154 C 139.625219 -71.911812 141.410375 -73.696969 144.051 -74.154 L 197.051 -74.154 C 198.750219 -73.696969 200.535375 -71.911812 200.051 -70.154 L 200.051 -61.154 C 200.535375 -58.876656 198.750219 -57.0915 196.551 -57.0915 Z M 197.051 -57.154 " transform="matrix(1,0,0,-1,16.449,28.346)"/>
+</g>
+<g style="fill:rgb(82.743835%,21.174622%,50.979614%);fill-opacity:1;">
+ <use xlink:href="#glyph0-4" x="159.393" y="96.23"/>
+ <use xlink:href="#glyph0-7" x="163.267455" y="96.23"/>
+ <use xlink:href="#glyph0-8" x="168.248755" y="96.23"/>
+ <use xlink:href="#glyph0-9" x="173.783976" y="96.23"/>
+ <use xlink:href="#glyph0-10" x="176.551586" y="96.23"/>
+ <use xlink:href="#glyph0-11" x="180.978965" y="96.23"/>
+ <use xlink:href="#glyph0-12" x="185.960265" y="96.23"/>
+ <use xlink:href="#glyph0-7" x="189.004836" y="96.23"/>
+</g>
+<g style="fill:rgb(82.743835%,21.174622%,50.979614%);fill-opacity:1;">
+ <use xlink:href="#glyph0-7" x="194.265089" y="96.23"/>
+ <use xlink:href="#glyph0-13" x="199.246389" y="96.23"/>
+ <use xlink:href="#glyph0-2" x="204.781609" y="96.23"/>
+ <use xlink:href="#glyph0-6" x="209.762909" y="96.23"/>
+</g>
+<g clip-path="url(#clip4)" clip-rule="nonzero">
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(2.74353%,21.174622%,25.881958%);fill-opacity:1;" d="M 320.5625 85.4375 L 279.273438 85.4375 C 277.070312 85.4375 275.289062 87.222656 275.289062 89.421875 L 275.289062 98.058594 C 275.289062 100.257812 277.070312 102.042969 279.273438 102.042969 L 320.5625 102.042969 C 322.761719 102.042969 324.546875 100.257812 324.546875 98.058594 L 324.546875 89.421875 C 324.546875 87.222656 322.761719 85.4375 320.5625 85.4375 Z M 320.5625 85.4375 "/>
+</g>
+<g clip-path="url(#clip5)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(34.510803%,43.136597%,45.881653%);stroke-opacity:1;stroke-miterlimit:10;" d="M 304.051 -57.154 L 263.051 -57.154 C 260.621312 -57.0915 258.840062 -58.876656 259.051 -61.154 L 259.051 -70.154 C 258.840062 -71.911812 260.621312 -73.696969 263.051 -74.154 L 304.051 -74.154 C 306.312719 -73.696969 308.097875 -71.911812 308.051 -70.154 L 308.051 -61.154 C 308.097875 -58.876656 306.312719 -57.0915 304.1135 -57.0915 Z M 304.051 -57.154 " transform="matrix(1,0,0,-1,16.449,28.346)"/>
+</g>
+<g style="fill:rgb(82.743835%,21.174622%,50.979614%);fill-opacity:1;">
+ <use xlink:href="#glyph0-4" x="278.604" y="96.23"/>
+ <use xlink:href="#glyph0-7" x="282.478455" y="96.23"/>
+ <use xlink:href="#glyph0-8" x="287.459755" y="96.23"/>
+ <use xlink:href="#glyph0-9" x="292.994976" y="96.23"/>
+ <use xlink:href="#glyph0-10" x="295.762586" y="96.23"/>
+ <use xlink:href="#glyph0-11" x="300.189965" y="96.23"/>
+ <use xlink:href="#glyph0-13" x="305.171265" y="96.23"/>
+ <use xlink:href="#glyph0-2" x="310.706486" y="96.23"/>
+ <use xlink:href="#glyph0-14" x="315.687786" y="96.23"/>
+</g>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(2.74353%,21.174622%,25.881958%);fill-opacity:1;" d="M 28.515625 28.746094 L 4.382812 28.746094 C 2.183594 28.746094 0.398438 30.527344 0.398438 32.730469 L 0.398438 38.320312 C 0.398438 40.519531 2.183594 42.304688 4.382812 42.304688 L 28.515625 42.304688 C 30.714844 42.304688 32.5 40.519531 32.5 38.320312 L 32.5 32.730469 C 32.5 30.527344 30.714844 28.746094 28.515625 28.746094 Z M 28.515625 28.746094 "/>
+<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(34.510803%,43.136597%,45.881653%);stroke-opacity:1;stroke-miterlimit:10;" d="M 12.051 -0.154 L -11.949 -0.154 C -14.265406 -0.400094 -16.050562 -2.181344 -15.949 -4.154 L -15.949 -10.154 C -16.050562 -12.173531 -14.265406 -13.958687 -11.949 -14.154 L 12.051 -14.154 C 14.265844 -13.958687 16.051 -12.173531 16.051 -10.154 L 16.051 -4.154 C 16.051 -2.181344 14.265844 -0.400094 12.066625 -0.400094 Z M 12.051 -0.154 " transform="matrix(1,0,0,-1,16.449,28.346)"/>
+<g style="fill:rgb(57.647705%,63.134766%,63.134766%);fill-opacity:1;">
+ <use xlink:href="#glyph0-15" x="3.719" y="38.984"/>
+ <use xlink:href="#glyph0-16" x="8.7003" y="38.984"/>
+ <use xlink:href="#glyph0-14" x="13.6816" y="38.984"/>
+ <use xlink:href="#glyph0-17" x="19.216821" y="38.984"/>
+ <use xlink:href="#glyph0-15" x="24.198121" y="38.984"/>
+</g>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(2.74353%,21.174622%,25.881958%);fill-opacity:1;" d="M 84.929688 28.746094 L 61.355469 28.746094 C 59.152344 28.746094 57.367188 30.527344 57.367188 32.730469 L 57.367188 37.820312 C 57.367188 40.023438 59.152344 41.804688 61.355469 41.804688 L 84.929688 41.804688 C 87.132812 41.804688 88.917969 40.023438 88.917969 37.820312 L 88.917969 32.730469 C 88.917969 30.527344 87.132812 28.746094 84.929688 28.746094 Z M 84.929688 28.746094 "/>
+<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(34.510803%,43.136597%,45.881653%);stroke-opacity:1;stroke-miterlimit:10;" d="M 68.051 -0.154 L 45.051 -0.154 C 42.703344 -0.400094 40.918188 -2.181344 41.051 -4.154 L 41.051 -9.154 C 40.918188 -11.677437 42.703344 -13.458687 45.051 -13.154 L 68.051 -13.154 C 70.683813 -13.458687 72.468969 -11.677437 72.051 -9.154 L 72.051 -4.154 C 72.468969 -2.181344 70.683813 -0.400094 68.480688 -0.400094 Z M 68.051 -0.154 " transform="matrix(1,0,0,-1,16.449,28.346)"/>
+<g style="fill:rgb(57.647705%,63.134766%,63.134766%);fill-opacity:1;">
+ <use xlink:href="#glyph0-18" x="60.689" y="38.486"/>
+ <use xlink:href="#glyph0-19" x="65.6703" y="38.486"/>
+ <use xlink:href="#glyph0-20" x="70.6516" y="38.486"/>
+ <use xlink:href="#glyph0-21" x="75.6329" y="38.486"/>
+ <use xlink:href="#glyph0-2" x="80.6142" y="38.486"/>
+</g>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(2.74353%,21.174622%,25.881958%);fill-opacity:1;" d="M 141.902344 28.746094 L 117.769531 28.746094 C 115.570312 28.746094 113.785156 30.527344 113.785156 32.730469 L 113.785156 38.320312 C 113.785156 40.519531 115.570312 42.304688 117.769531 42.304688 L 141.902344 42.304688 C 144.101562 42.304688 145.886719 40.519531 145.886719 38.320312 L 145.886719 32.730469 C 145.886719 30.527344 144.101562 28.746094 141.902344 28.746094 Z M 141.902344 28.746094 "/>
+<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(34.510803%,43.136597%,45.881653%);stroke-opacity:1;stroke-miterlimit:10;" d="M 125.051 -0.154 L 101.051 -0.154 C 99.121313 -0.400094 97.336156 -2.181344 97.051 -4.154 L 97.051 -10.154 C 97.336156 -12.173531 99.121313 -13.958687 101.051 -14.154 L 125.051 -14.154 C 127.652563 -13.958687 129.437719 -12.173531 129.051 -10.154 L 129.051 -4.154 C 129.437719 -2.181344 127.652563 -0.400094 125.453344 -0.400094 Z M 125.051 -0.154 " transform="matrix(1,0,0,-1,16.449,28.346)"/>
+<g style="fill:rgb(57.647705%,63.134766%,63.134766%);fill-opacity:1;">
+ <use xlink:href="#glyph0-22" x="117.105" y="38.984"/>
+ <use xlink:href="#glyph0-5" x="122.0863" y="38.984"/>
+ <use xlink:href="#glyph0-19" x="126.513679" y="38.984"/>
+ <use xlink:href="#glyph0-14" x="131.494979" y="38.984"/>
+ <use xlink:href="#glyph0-14" x="137.0302" y="38.984"/>
+</g>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(2.74353%,21.174622%,25.881958%);fill-opacity:1;" d="M 198.320312 28.746094 L 174.742188 28.746094 C 172.539062 28.746094 170.753906 30.527344 170.753906 32.730469 L 170.753906 38.320312 C 170.753906 40.519531 172.539062 42.304688 174.742188 42.304688 L 198.320312 42.304688 C 200.519531 42.304688 202.304688 40.519531 202.304688 38.320312 L 202.304688 32.730469 C 202.304688 30.527344 200.519531 28.746094 198.320312 28.746094 Z M 198.320312 28.746094 "/>
+<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(34.510803%,43.136597%,45.881653%);stroke-opacity:1;stroke-miterlimit:10;" d="M 182.051 -0.154 L 158.051 -0.154 C 156.090062 -0.400094 154.304906 -2.181344 154.051 -4.154 L 154.051 -10.154 C 154.304906 -12.173531 156.090062 -13.958687 158.051 -14.154 L 182.051 -14.154 C 184.070531 -13.958687 185.855687 -12.173531 186.051 -10.154 L 186.051 -4.154 C 185.855687 -2.181344 184.070531 -0.400094 181.871312 -0.400094 Z M 182.051 -0.154 " transform="matrix(1,0,0,-1,16.449,28.346)"/>
+<g style="fill:rgb(57.647705%,63.134766%,63.134766%);fill-opacity:1;">
+ <use xlink:href="#glyph0-15" x="174.074" y="38.984"/>
+ <use xlink:href="#glyph0-14" x="179.0553" y="38.984"/>
+ <use xlink:href="#glyph0-5" x="184.590521" y="38.984"/>
+ <use xlink:href="#glyph0-17" x="189.0179" y="38.984"/>
+ <use xlink:href="#glyph0-19" x="193.9992" y="38.984"/>
+</g>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(2.74353%,21.174622%,25.881958%);fill-opacity:1;" d="M 255.289062 28.746094 L 231.15625 28.746094 C 228.957031 28.746094 227.171875 30.527344 227.171875 32.730469 L 227.171875 38.320312 C 227.171875 40.519531 228.957031 42.304688 231.15625 42.304688 L 255.289062 42.304688 C 257.488281 42.304688 259.273438 40.519531 259.273438 38.320312 L 259.273438 32.730469 C 259.273438 30.527344 257.488281 28.746094 255.289062 28.746094 Z M 255.289062 28.746094 "/>
+<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(34.510803%,43.136597%,45.881653%);stroke-opacity:1;stroke-miterlimit:10;" d="M 239.051 -0.154 L 215.051 -0.154 C 212.508031 -0.400094 210.722875 -2.181344 211.051 -4.154 L 211.051 -10.154 C 210.722875 -12.173531 212.508031 -13.958687 215.051 -14.154 L 239.051 -14.154 C 241.039281 -13.958687 242.824437 -12.173531 243.051 -10.154 L 243.051 -4.154 C 242.824437 -2.181344 241.039281 -0.400094 238.840062 -0.400094 Z M 239.051 -0.154 " transform="matrix(1,0,0,-1,16.449,28.346)"/>
+<g style="fill:rgb(57.647705%,63.134766%,63.134766%);fill-opacity:1;">
+ <use xlink:href="#glyph0-23" x="230.491" y="38.984"/>
+ <use xlink:href="#glyph0-15" x="235.4723" y="38.984"/>
+ <use xlink:href="#glyph0-24" x="240.4536" y="38.984"/>
+ <use xlink:href="#glyph0-23" x="245.4349" y="38.984"/>
+ <use xlink:href="#glyph0-14" x="250.4162" y="38.984"/>
+</g>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(2.74353%,21.174622%,25.881958%);fill-opacity:1;" d="M 254.597656 57.089844 L 231.851562 57.089844 C 229.648438 57.089844 227.863281 58.875 227.863281 61.078125 L 227.863281 66.664062 C 227.863281 68.867188 229.648438 70.652344 231.851562 70.652344 L 254.597656 70.652344 C 256.796875 70.652344 258.582031 68.867188 258.582031 66.664062 L 258.582031 61.078125 C 258.582031 58.875 256.796875 57.089844 254.597656 57.089844 Z M 254.597656 57.089844 "/>
+<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(34.510803%,43.136597%,45.881653%);stroke-opacity:1;stroke-miterlimit:10;" d="M 238.051 -29.154 L 215.051 -29.154 C 213.199437 -28.743844 211.414281 -30.529 211.051 -33.154 L 211.051 -38.154 C 211.414281 -40.521187 213.199437 -42.306344 215.051 -42.154 L 238.051 -42.154 C 240.347875 -42.306344 242.133031 -40.521187 242.051 -38.154 L 242.051 -33.154 C 242.133031 -30.529 240.347875 -28.743844 238.148656 -28.743844 Z M 238.051 -29.154 " transform="matrix(1,0,0,-1,16.449,28.346)"/>
+<g style="fill:rgb(57.647705%,63.134766%,63.134766%);fill-opacity:1;">
+ <use xlink:href="#glyph0-20" x="231.182" y="67.33"/>
+ <use xlink:href="#glyph0-13" x="236.1633" y="67.33"/>
+ <use xlink:href="#glyph0-2" x="241.698521" y="67.33"/>
+ <use xlink:href="#glyph0-13" x="246.679821" y="67.33"/>
+ <use xlink:href="#glyph0-12" x="252.215041" y="67.33"/>
+</g>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(2.74353%,21.174622%,25.881958%);fill-opacity:1;" d="M 310.738281 57.089844 L 289.097656 57.089844 C 286.894531 57.089844 285.113281 58.875 285.113281 61.078125 L 285.113281 66.664062 C 285.113281 68.867188 286.894531 70.652344 289.097656 70.652344 L 310.738281 70.652344 C 312.9375 70.652344 314.722656 68.867188 314.722656 66.664062 L 314.722656 61.078125 C 314.722656 58.875 312.9375 57.089844 310.738281 57.089844 Z M 310.738281 57.089844 "/>
+<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(34.510803%,43.136597%,45.881653%);stroke-opacity:1;stroke-miterlimit:10;" d="M 294.051 -29.154 L 273.051 -29.154 C 270.445531 -28.743844 268.664281 -30.529 269.051 -33.154 L 269.051 -38.154 C 268.664281 -40.521187 270.445531 -42.306344 273.051 -42.154 L 294.051 -42.154 C 296.4885 -42.306344 298.273656 -40.521187 298.051 -38.154 L 298.051 -33.154 C 298.273656 -30.529 296.4885 -28.743844 294.289281 -28.743844 Z M 294.051 -29.154 " transform="matrix(1,0,0,-1,16.449,28.346)"/>
+<g style="fill:rgb(57.647705%,63.134766%,63.134766%);fill-opacity:1;">
+ <use xlink:href="#glyph0-23" x="288.429" y="67.33"/>
+ <use xlink:href="#glyph0-19" x="293.4103" y="67.33"/>
+ <use xlink:href="#glyph0-20" x="298.3916" y="67.33"/>
+ <use xlink:href="#glyph0-23" x="303.3729" y="67.33"/>
+ <use xlink:href="#glyph0-12" x="308.3542" y="67.33"/>
+</g>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(2.74353%,21.174622%,25.881958%);fill-opacity:1;" d="M 367.429688 28.746094 L 345.789062 28.746094 C 343.589844 28.746094 341.804688 30.527344 341.804688 32.730469 L 341.804688 38.320312 C 341.804688 40.519531 343.589844 42.304688 345.789062 42.304688 L 367.429688 42.304688 C 369.632812 42.304688 371.417969 40.519531 371.417969 38.320312 L 371.417969 32.730469 C 371.417969 30.527344 369.632812 28.746094 367.429688 28.746094 Z M 367.429688 28.746094 "/>
+<g clip-path="url(#clip6)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(34.510803%,43.136597%,45.881653%);stroke-opacity:1;stroke-miterlimit:10;" d="M 351.051 -0.154 L 329.051 -0.154 C 327.140844 -0.400094 325.355687 -2.181344 325.051 -4.154 L 325.051 -10.154 C 325.355687 -12.173531 327.140844 -13.958687 329.051 -14.154 L 351.051 -14.154 C 353.183812 -13.958687 354.968969 -12.173531 355.051 -10.154 L 355.051 -4.154 C 354.968969 -2.181344 353.183812 -0.400094 350.980687 -0.400094 Z M 351.051 -0.154 " transform="matrix(1,0,0,-1,16.449,28.346)"/>
+</g>
+<g style="fill:rgb(57.647705%,63.134766%,63.134766%);fill-opacity:1;">
+ <use xlink:href="#glyph0-23" x="345.122" y="38.984"/>
+ <use xlink:href="#glyph0-16" x="350.1033" y="38.984"/>
+ <use xlink:href="#glyph0-12" x="355.0846" y="38.984"/>
+ <use xlink:href="#glyph0-16" x="358.129171" y="38.984"/>
+ <use xlink:href="#glyph0-18" x="363.110471" y="38.984"/>
+</g>
+<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(34.510803%,43.136597%,45.881653%);stroke-opacity:1;stroke-miterlimit:10;" d="M 340.051 14.846 L 340.051 0.846 " transform="matrix(1,0,0,-1,16.449,28.346)"/>
+<path style="fill:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(34.510803%,43.136597%,45.881653%);stroke-opacity:1;stroke-miterlimit:10;" d="M -1.552713 2.072884 C -1.423806 1.29554 -0.00193125 0.127571 0.388694 -0.001335 C -0.00193125 -0.130241 -1.423806 -1.294304 -1.552713 -2.071647 " transform="matrix(0,1,1,0,356.61071,27.63865)"/>
+<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(34.510803%,43.136597%,45.881653%);stroke-opacity:1;stroke-miterlimit:10;" d="M 170.051 -57.154 L 170.051 -15.154 " transform="matrix(1,0,0,-1,16.449,28.346)"/>
+<path style="fill:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(34.510803%,43.136597%,45.881653%);stroke-opacity:1;stroke-miterlimit:10;" d="M -1.554774 2.072829 C -1.425867 1.295485 -0.00008625 0.131422 0.386633 -0.00139 C -0.00008625 -0.130296 -1.425867 -1.294359 -1.554774 -2.071703 " transform="matrix(0,-1,-1,0,186.52986,43.41007)"/>
+<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(34.510803%,43.136597%,45.881653%);stroke-opacity:1;stroke-miterlimit:10;" d="M 283.051 -57.154 L 283.051 -43.154 " transform="matrix(1,0,0,-1,16.449,28.346)"/>
+<path style="fill:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(34.510803%,43.136597%,45.881653%);stroke-opacity:1;stroke-miterlimit:10;" d="M -1.55561 2.07335 C -1.422798 1.296006 -0.0009225 0.128037 0.389702 -0.00086875 C -0.0009225 -0.129775 -1.422798 -1.293838 -1.55561 -2.071181 " transform="matrix(0,-1,-1,0,299.9171,71.75689)"/>
+<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(34.510803%,43.136597%,45.881653%);stroke-opacity:1;stroke-miterlimit:10;" d="M 16.051 -7.154 L 35.051 -7.154 " transform="matrix(1,0,0,-1,16.449,28.346)"/>
+<path style="fill:none;stroke-width:0.995581;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(34.510803%,43.136597%,45.881653%);stroke-opacity:1;stroke-miterlimit:10;" d="M 5.019843 0.00015644 C 5.022038 1.386866 3.89807 2.508998 2.511361 2.511194 C 1.124634 2.509483 -0.00140491 1.385531 0.000305992 -0.0011951 C -0.00188928 -1.387904 1.12208 -2.510037 2.508789 -2.512232 C 3.895515 -2.510522 5.021554 -1.38657 5.019843 0.00015644 Z M 5.019843 0.00015644 " transform="matrix(1,-0.0044,-0.0044,-1,51.55047,35.3699)"/>
+<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(34.510803%,43.136597%,45.881653%);stroke-opacity:1;stroke-miterlimit:10;" d="M 73.051 -7.154 L 91.051 -7.154 " transform="matrix(1,0,0,-1,16.449,28.346)"/>
+<path style="fill:none;stroke-width:0.995581;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(34.510803%,43.136597%,45.881653%);stroke-opacity:1;stroke-miterlimit:10;" d="M 5.020915 0.00139328 C 5.022626 1.38812 3.896587 2.512071 2.509878 2.509876 C 1.123152 2.511587 -0.00080016 1.385548 0.00139511 -0.00116136 C -0.000315794 -1.387888 1.125723 -2.511839 2.512432 -2.509644 C 3.895253 -2.511372 5.019204 -1.385333 5.020915 0.00139328 Z M 5.020915 0.00139328 " transform="matrix(1,0.0044,0.0044,-1,107.96736,35.42852)"/>
+<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(34.510803%,43.136597%,45.881653%);stroke-opacity:1;stroke-miterlimit:10;" d="M 130.051 -7.154 L 148.051 -7.154 " transform="matrix(1,0,0,-1,16.449,28.346)"/>
+<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(34.510803%,43.136597%,45.881653%);stroke-opacity:1;stroke-miterlimit:10;" d="M 5.019321 0.0009025 C 5.019321 1.387621 3.898227 2.508715 2.511509 2.508715 C 1.12479 2.508715 -0.00021 1.387621 -0.00021 0.0009025 C -0.00021 -1.385816 1.12479 -2.510816 2.511509 -2.510816 C 3.898227 -2.510816 5.019321 -1.385816 5.019321 0.0009025 Z M 5.019321 0.0009025 " transform="matrix(1,0,0,-1,164.93771,35.52434)"/>
+<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(34.510803%,43.136597%,45.881653%);stroke-opacity:1;stroke-miterlimit:10;" d="M 186.051 -7.154 L 205.051 -7.154 " transform="matrix(1,0,0,-1,16.449,28.346)"/>
+<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(34.510803%,43.136597%,45.881653%);stroke-opacity:1;stroke-miterlimit:10;" d="M 5.02042 0.0009025 C 5.02042 1.387621 3.89542 2.508715 2.508701 2.508715 C 1.125889 2.508715 0.00088875 1.387621 0.00088875 0.0009025 C 0.00088875 -1.385816 1.125889 -2.510816 2.508701 -2.510816 C 3.89542 -2.510816 5.02042 -1.385816 5.02042 0.0009025 Z M 5.02042 0.0009025 " transform="matrix(1,0,0,-1,221.35458,35.52434)"/>
+<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(34.510803%,43.136597%,45.881653%);stroke-opacity:1;stroke-miterlimit:10;" d="M 186.254125 -7.177437 C 200.972875 -7.177437 196.297094 -35.525094 205.597875 -35.525094 " transform="matrix(1,0,0,-1,16.449,28.346)"/>
+<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(34.510803%,43.136597%,45.881653%);stroke-opacity:1;stroke-miterlimit:10;" d="M 5.019976 0.00006625 C 5.019976 1.386785 3.898882 2.511785 2.512164 2.511785 C 1.125445 2.511785 0.000445 1.386785 0.000445 0.00006625 C 0.000445 -1.386652 1.125445 -2.511652 2.512164 -2.511652 C 3.898882 -2.511652 5.019976 -1.386652 5.019976 0.00006625 Z M 5.019976 0.00006625 " transform="matrix(1,0,0,-1,222.04643,63.87116)"/>
+<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(34.510803%,43.136597%,45.881653%);stroke-opacity:1;stroke-miterlimit:10;" d="M 242.051 -35.154 L 263.051 -35.154 " transform="matrix(1,0,0,-1,16.449,28.346)"/>
+<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(34.510803%,43.136597%,45.881653%);stroke-opacity:1;stroke-miterlimit:10;" d="M 5.022866 0.00006625 C 5.022866 1.386785 3.897866 2.511785 2.511147 2.511785 C 1.124429 2.511785 -0.00057125 1.386785 -0.00057125 0.00006625 C -0.00057125 -1.386652 1.124429 -2.511652 2.511147 -2.511652 C 3.897866 -2.511652 5.022866 -1.386652 5.022866 0.00006625 Z M 5.022866 0.00006625 " transform="matrix(1,0,0,-1,279.29354,63.87116)"/>
+<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(34.510803%,43.136597%,45.881653%);stroke-opacity:1;stroke-miterlimit:10;" d="M 243.051 -7.154 L 319.051 -7.154 " transform="matrix(1,0,0,-1,16.449,28.346)"/>
+<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(34.510803%,43.136597%,45.881653%);stroke-opacity:1;stroke-miterlimit:10;" d="M 5.020653 0.0009025 C 5.020653 1.387621 3.895653 2.508715 2.508934 2.508715 C 1.122215 2.508715 0.00112125 1.387621 0.00112125 0.0009025 C 0.00112125 -1.385816 1.122215 -2.510816 2.508934 -2.510816 C 3.895653 -2.510816 5.020653 -1.385816 5.020653 0.0009025 Z M 5.020653 0.0009025 " transform="matrix(1,0,0,-1,335.98716,35.52434)"/>
+<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(34.510803%,43.136597%,45.881653%);stroke-opacity:1;stroke-miterlimit:10;" d="M 298.672094 -35.525094 C 313.703344 -35.525094 309.926 -7.177437 319.539281 -7.177437 " transform="matrix(1,0,0,-1,16.449,28.346)"/>
+<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(34.510803%,43.136597%,45.881653%);stroke-opacity:1;stroke-miterlimit:10;" d="M 5.020653 0.0009025 C 5.020653 1.387621 3.895653 2.508715 2.508934 2.508715 C 1.122215 2.508715 0.00112125 1.387621 0.00112125 0.0009025 C 0.00112125 -1.385816 1.122215 -2.510816 2.508934 -2.510816 C 3.895653 -2.510816 5.020653 -1.385816 5.020653 0.0009025 Z M 5.020653 0.0009025 " transform="matrix(1,0,0,-1,335.98716,35.52434)"/>
+</g>
+</svg>