You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@crail.apache.org by ps...@apache.org on 2019/03/04 22:25:27 UTC

[incubator-crail-website] branch master updated: Blog post on shuffle disaggregation

This is an automated email from the ASF dual-hosted git repository.

pstuedi pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-crail-website.git


The following commit(s) were added to refs/heads/master by this push:
     new abd3c39  Blog post on shuffle disaggregation
abd3c39 is described below

commit abd3c39cea63993d9af3735a06cbdd5d848b38dc
Author: Patrick Stuedi <ps...@apache.org>
AuthorDate: Mon Mar 4 23:25:01 2019 +0100

    Blog post on shuffle disaggregation
---
 site/_posts/blog/2019-03-04-disaggregation.md      |  195 ++++
 site/img/blog/disaggregation/cdf-plot.svg          |  499 +++++++++
 site/img/blog/disaggregation/loadbalancing.pdf     |  Bin 0 -> 26635 bytes
 site/img/blog/disaggregation/loadbalancing.svg     |  533 ++++++++++
 site/img/blog/disaggregation/machine_skew.pdf      |  Bin 0 -> 19747 bytes
 site/img/blog/disaggregation/machine_skew.svg      |  295 ++++++
 .../img/blog/disaggregation/machine_skew_crail.pdf |  Bin 0 -> 26399 bytes
 .../img/blog/disaggregation/machine_skew_crail.svg |  455 ++++++++
 .../img/blog/disaggregation/optimization_tasks.pdf |  Bin 0 -> 38195 bytes
 .../img/blog/disaggregation/optimization_tasks.svg |  762 ++++++++++++++
 site/img/blog/disaggregation/overview.pdf          |  Bin 0 -> 19109 bytes
 site/img/blog/disaggregation/overview.svg          |  257 +++++
 site/img/blog/disaggregation/spark_disagg.pdf      |  Bin 0 -> 26082 bytes
 site/img/blog/disaggregation/spark_disagg.svg      | 1105 ++++++++++++++++++++
 site/img/blog/disaggregation/sql.svg               |  437 ++++++++
 site/img/blog/disaggregation/terasort.svg          |  422 ++++++++
 16 files changed, 4960 insertions(+)

diff --git a/site/_posts/blog/2019-03-04-disaggregation.md b/site/_posts/blog/2019-03-04-disaggregation.md
new file mode 100644
index 0000000..98eb654
--- /dev/null
+++ b/site/_posts/blog/2019-03-04-disaggregation.md
@@ -0,0 +1,195 @@
+---
+layout: post
+title: "Shuffle Disaggregation using RDMA accessible remote DRAM and NVMe Flash"
+author: Patrick Stuedi
+category: blog
+comments: true
+---
+
+<div style="text-align: justify"> 
+<p>
+One of the goals of Crail has always been to enable efficient storage disaggregation for distributed data processing workloads. Separating storage from compute resources in a cluster is known to have several interesting benefits. For instance, it allows storage resources to scale independently from compute resources, or to run storage systems on specialized hardware (e.g., storage servers with a weak CPU attached to a fast network) for better performance and reduced cost. Storage disaggr [...]
+</p>
+<p>
+Today, data processing applications running in the cloud may implicitly use disaggregated storage through cloud storage services like S3. For instance, it is not uncommon for map-reduce workloads in the cloud to use S3 instead of HDFS for storing input and output data. While Crail can offer high-performance disaggregated storage for input/output data as well, in this blog we specifically look at how to use Crail for efficient disaggregation of shuffle data. 
+</p>
+ 
+<br>
+<div style="text-align:center"><img src ="{{ site.base }}/img/blog/disaggregation/spark_disagg.svg" width="580"></div>
+<br> 
+<br>
+ 
+<p>
+Generally, the arguments for disaggregation hold for any type of data including input, output and shuffle data. One aspect that makes disaggregation of shuffle data particularly interesting is that compute nodes generating shuffle data now have access to ''infinitely'' large pools or storage resources, whereas in traditional ''non-disaggregated'' deployments the amount of shuffle data per compute node is bound by local resources.
+</p>
+
+<p>
+Recently, there has been an increased interest in disaggregating shuffle data. For instance, <a href="https://dl.acm.org/citation.cfm?id=3190534">Riffle</a> -- a research effort driven by Facebook -- is a shuffle implementation for Spark that is capable of operating in a disaggregated environment. Facebook's disaggregated shuffle engine has also been presented at <a href="https://databricks.com/session/sos-optimizing-shuffle-i-o">SparkSummit'18</a>. In this blog, we discuss how Spark shu [...]
+</p>
+</div>
+
+### Overview
+
+<div style="text-align: justify"> 
+<p>
+In a traditional shuffle operation, data is exchanged between map and reduce tasks using direct communication. For instance, in a typical Spark deployment map tasks running on worker machines write data to a series of local files  -- one per task and partition -- and reduce tasks later on connect to all of the worker machines to fetch the data belonging to their associated partition. By contrast, in a disaggregated shuffle operation, map and reduce tasks exchange data with each other via [...]
+</p>
+</div>
+
+<br>
+<div style="text-align:center"><img src ="{{ site.base }}/img/blog/disaggregation/overview.svg" width="350"></div>
+<br>
+
+### Challenge: Large Number of Small Files
+
+
+<div style="text-align: justify"> 
+<p>
+One of the challenges with shuffle implementations in general is the large number of objects they have to deal with. The number and size of shuffle files depend on the workload, but also on the configuration, in particular on the number of map and reduce tasks in a stage of a job. The number of tasks in a job is often indirectly controlled through the partition size specifying the amount of data each task is operating on. Finding the optimal partition size for a job is difficult and ofte [...]
+</p>
+
+<p>
+Unfortunately, a small partition size often leads to a large number of small shuffle files. As an illustration, we
+performed a simple experiment where we measured the size distribution of Spark shuffle (and broadcast) files of individual tasks when executing (a) PageRank on the Twitter graph, and (b) SQL queries on a TPC-DS dataset. As shown in the figure below, the range of shuffle data is large, ranging from a few bytes to a few GBs per compute task.
+</p>
+</div>
+
+<br>
+<div style="text-align:center"><img src ="{{ site.base }}/img/blog/disaggregation/cdf-plot.svg" width="480"></div>
+<br>
+
+<div style="text-align: justify"> 
+<p>
+From an I/O performance perspective, writing and reading large numbers of small files is much more challenging than, let's say, dealing with a small number of large files. This is true in a 'non-disaggregated' shuffle operation, but even more so in a disaggregated shuffle operation where I/O requests include both networking and storage.  
+</p>
+</div> 
+
+### Per-core Aggregation and Parallel Fetching
+
+<div style="text-align: justify"> 
+<p>
+To mitigate the overheads of writing and reading large numbers of small data sets, the disaggregated Crail shuffler implements two simple optimizations. First, subsequent map tasks running on the same core append shuffle data to a per-core set of files. The number of files in a per-core set corresponds to the number of partitions. Logically, the files in a per core-set are actually part of different directories (one directory per partition as discussed before). For instance, the blue map [...]
+</p>
+</div> 
+
+<br>
+<div style="text-align:center"><img src ="{{ site.base }}/img/blog/disaggregation/optimization_tasks.svg" width="380"></div>
+<br>
+
+<div style="text-align: justify"> 
+<p>
+The second optimization we use in our disaggregated Crail shuffler is efficient parallel reading of entire partitions using Crail MultiFiles. One problem with large number of small files is that it makes efficient parallel reading difficult, mainly because the small file size limits the number of in-flight read operations a reducer can issue on a single file. One may argue that we don't necessarily need to parallelize the reading of a single file. As long as we have large numbers of file [...]
+</p>
+<p>
+Crail Multifiles offer zero-copy parallel reading of large numbers of files in a sequential manner. From the prespective of a map task MultiFiles are flat directories consisting of files belonging to different per-core file sets. From a reducer perspective, a MultFile looks like a large file that can be read sequentially using many in-flight operations. For instance, the following code shows how a reduce task during a Crail shuffle operation reads a partition from remote storage. 
+</p>
+</div>  
+```
+CrailStore fs = CrailStore.newInstance();
+CrailMultiFile multiFile = fs.lookup("/shuffle/partition1").get().asMultiFile();
+ByteBuffer buffer = Buffer.allocateDirect(multiFile.size());
+int batchSize = 16;
+CrailBufferedInputStream stream = multiFile.getMultiStream(batchSize);
+while (stream.read(buf) > 0);
+``` 
+<div style="text-align: justify"> 
+<p>
+Internally, a MultiFile manages multiple streams to different files and maintains a fixed number of active in-flight operations at all times (except when the stream reaches its end). The number of in-flight operations is controlled via the batch size parameter which is set to 16 in the above example. 
+</p>
+<p>
+ <strong>Comparison with Riffle</strong>: In contrast to Riffle, the Crail shuffler does not merge files at the map stage. There are two reasons for this. First, even though Riffle shows how to overlap merge operations with map tasks, there is always a certain number of merge operations at the end of a map task that cannot be hidden effectively. Those merge operations delay the map phase. Second, in contrast to Riffle which assumes commodity hardware with low network bandwidth and low me [...]
+</p>
+<p>
+The Crail shuffler also differs from Riffle with regard to how file indexes are managed. Riffle, just like the vanilla Spark shuffler, relies on the Spark driver to map partitions to sets of files and requires reduce tasks to interact with the driver while reading the partitions. In contrast, the Crail shuffler totally eliminates the Spark driver from the loop by encoding the mapping between partitions and files implicitly using the hierarchical namespace of Crail. 
+ </p>
+</div>  
+
+### Robustness Against Machine Skew
+
+<div style="text-align: justify"> 
+<p>
+Shuffle operations, being essentially barriers between compute stages, are highly sensitive to task runtime variations. Runtime variations may be caused by skew in the input data which leads to variations in partition size, meaning, different reduce tasks get assigned different amounts of data. Dealing with data skew is tricky and typically requires re-paritioning of the data. Another cause of task runtime variation is machine skew. For example, in a heterogeneous cluster some machines a [...]
+</p>
+</div>
+ 
+<br>
+<div style="text-align:center"><img src ="{{ site.base }}/img/blog/disaggregation/machine_skew.svg" width="520"></div>
+<br>
+
+<div style="text-align: justify"> 
+<p>
+One way to deal with this problem is through weighted fair scheduling of network transfers, as shown <a href="https://dl.acm.org/citation.cfm?id=2018448">here</a>. But doing so requires global knowledge of the amounts of data to transfer and also demands fine grained scheduling of network transfers. In contrast to a traditional shuffle, the Crail disaggregated shuffler naturally is more robust against machine skew. Even though some machines generate more shuffle data than others during t [...]
+ </p>
+</div>  
+
+<br>
+<div style="text-align:center"><img src ="{{ site.base }}/img/blog/disaggregation/machine_skew_crail.svg" width="520"></div>
+<br>
+
+<div style="text-align: justify"> 
+<p>
+One may argue that chopping shuffle data up into blocks and transferring them over the network does not come for free. However, as it turns out, it does almost come for free. The bandwidth of the Spark I/O pipeline in a map task running on a single core is dominated by the serialization speed. The serialization speed depends on the serializer (e.g., Java serializer, Kryo, etc.), the workload and the object types that need to be serialized. In our measurements we found that even for rathe [...]
+</p>
+</div>
+
+<div style="text-align: justify"> 
+<p>
+<strong>Loadbalancing:</strong> While shuffle disaggregation mitigates machine skew by distributing data evenly across storage servers, the set of storage blocks read by clients (reduce tasks) at a given time may not always be evenly distributed among the servers. For instance, as shown in the figure below (left part), one of the servers concurrently serves two clients, while the other server only serves one client. Consequently, the bandwidth of the first two clients is bottlenecked by  [...]
+</p>
+</div>
+
+<br>
+<div style="text-align:center"><img src ="{{ site.base }}/img/blog/disaggregation/loadbalancing.svg" width="520"></div>
+<br>
+
+<div style="text-align: justify"> 
+<p>
+Note that Crail disaggregated storage may be provided by a few highly dense storage nodes (e.g., a high density flash enclosure) or by a larger group of storage servers exposing their local DRAM or flash. We will discuss different deployment modes of Crail disaggregated storage in the next blog post. 
+</p>
+</div>
+
+### Disaggregated Spark Map-Reduce (Sorting)
+
+<div style="text-align: justify"> 
+<p> Let's look at some performance data. In the first experiment we measure the runtime of a simple Spark job sorting 200G of data on a 8 node cluster. We compare the performance of different configurations. In the disaggregated configuration the Crail disaggregated shuffler is used, storing shuffle data on disaggregated Crail storage. In this configuration, Crail is deployed on a 4 node storage cluster connected to the compute cluster over a 100 Gb/s RoCE network. As a direct comparison [...]
+ 
+</p>
+</div>
+
+<br>
+<div style="text-align:center"><img src ="{{ site.base }}/img/blog/disaggregation/terasort.svg" width="450"></div>
+<br> 
+
+<div style="text-align: justify"> 
+ <p>
+The main observation from the figure is that there is almost no performance difference between the Crail co-located and the Crail disaggregated configurations, which means we can disaggregate shuffle data at literally no performance penalty. In fact, the performance improves slightly in the disaggregated configuration because more CPU cycles are available to execute the Spark workload, cycles that in the co-located setup are used for local storage processing. Generally, storing shuffle d [...]
+ </p>
+</div>
+
+### Disaggregated Spark SQL
+
+<div style="text-align: justify"> 
+ <p>
+Next we look at Spark SQL performance in a disaggregated configuration. Again we are partitioning our cluster into two separate silos of compute (8 nodes) and storage (4 nodes), but this time we also investigate the effect of different network speeds and network software stacks when connecting the compute cluster to the storage cluster. The Spark SQL job (TPC-DS, query #87) further differs from the I/O heavy sorting job in that it contains many shuffle phases but each shuffle phase is li [...]
+</p>
+</div>
+
+<br>
+<div style="text-align:center"><img src ="{{ site.base }}/img/blog/disaggregation/sql.svg" width="420"></div>
+<br> 
+
+<div style="text-align: justify"> 
+<p>
+The first bar from the left in the figure above shows, as a reference, the runtime of the SQL job using vanilla Spark in a non-disaggregated configuration. Note that the vanilla Spark configuration is using the 100 Gb/s Ethernet network available in the compute cluster. In the next experiment we use the Crail disaggregated shuffler, but configure the network connecting the compute to the storage cluster to be 10 Gb/s. We further use standard TCP communication between the compute nodes an [...]
+</p>
+<p>
+Often, high network bandwidth is assumed to be the key enabling factor for storage disaggregation. That this is only partially true is shown in the next experiment where we increase the network bandwidth between the compute and the storage cluster to 100 Gb/s, but still use TCP to communicate between compute and storage nodes. As can be observed, this improves the runtime of the SQL job to a point that is almost matching the performance of the non-disaggregated configuration based on van [...]
+ </p>
+</div>
+
+
+### Summary
+
+Efficient disaggregation of shuffle data is challenging, requiring shuffle managers and storage systems to be co-designed in order to effectively handle large numbers of small files, machine skew and loadbalancing issues. In this blog post we discussed the basic architecture of the Crail disaggregated shuffle engine and showed that by using Crail we can effectively disaggregate shuffle data in both bandwidth intensive map-reduce jobs as well as in more latency sensitive SQL workloads. In [...]
+
+
diff --git a/site/img/blog/disaggregation/cdf-plot.svg b/site/img/blog/disaggregation/cdf-plot.svg
new file mode 100644
index 0000000..9fccf90
--- /dev/null
+++ b/site/img/blog/disaggregation/cdf-plot.svg
@@ -0,0 +1,499 @@
+<?xml version="1.0" encoding="utf-8"  standalone="no"?>
+<svg 
+ width="640" height="300"
+ viewBox="0 0 640 300"
+ xmlns="http://www.w3.org/2000/svg"
+ xmlns:xlink="http://www.w3.org/1999/xlink"
+>
+
+<title>Gnuplot</title>
+<desc>Produced by GNUPLOT 5.2 patchlevel 2 </desc>
+
+<g id="gnuplot_canvas">
+
+<rect x="0" y="0" width="640" height="300" fill="none"/>
+<defs>
+
+	<circle id='gpDot' r='0.5' stroke-width='0.5'/>
+	<path id='gpPt0' stroke-width='0.222' stroke='currentColor' d='M-1,0 h2 M0,-1 v2'/>
+	<path id='gpPt1' stroke-width='0.222' stroke='currentColor' d='M-1,-1 L1,1 M1,-1 L-1,1'/>
+	<path id='gpPt2' stroke-width='0.222' stroke='currentColor' d='M-1,0 L1,0 M0,-1 L0,1 M-1,-1 L1,1 M-1,1 L1,-1'/>
+	<rect id='gpPt3' stroke-width='0.222' stroke='currentColor' x='-1' y='-1' width='2' height='2'/>
+	<rect id='gpPt4' stroke-width='0.222' stroke='currentColor' fill='currentColor' x='-1' y='-1' width='2' height='2'/>
+	<circle id='gpPt5' stroke-width='0.222' stroke='currentColor' cx='0' cy='0' r='1'/>
+	<use xlink:href='#gpPt5' id='gpPt6' fill='currentColor' stroke='none'/>
+	<path id='gpPt7' stroke-width='0.222' stroke='currentColor' d='M0,-1.33 L-1.33,0.67 L1.33,0.67 z'/>
+	<use xlink:href='#gpPt7' id='gpPt8' fill='currentColor' stroke='none'/>
+	<use xlink:href='#gpPt7' id='gpPt9' stroke='currentColor' transform='rotate(180)'/>
+	<use xlink:href='#gpPt9' id='gpPt10' fill='currentColor' stroke='none'/>
+	<use xlink:href='#gpPt3' id='gpPt11' stroke='currentColor' transform='rotate(45)'/>
+	<use xlink:href='#gpPt11' id='gpPt12' fill='currentColor' stroke='none'/>
+	<path id='gpPt13' stroke-width='0.222' stroke='currentColor' d='M0,1.330 L1.265,0.411 L0.782,-1.067 L-0.782,-1.076 L-1.265,0.411 z'/>
+	<use xlink:href='#gpPt13' id='gpPt14' fill='currentColor' stroke='none'/>
+	<filter id='textbox' filterUnits='objectBoundingBox' x='0' y='0' height='1' width='1'>
+	  <feFlood flood-color='white' flood-opacity='1' result='bgnd'/>
+	  <feComposite in='SourceGraphic' in2='bgnd' operator='atop'/>
+	</filter>
+	<filter id='greybox' filterUnits='objectBoundingBox' x='0' y='0' height='1' width='1'>
+	  <feFlood flood-color='lightgrey' flood-opacity='1' result='grey'/>
+	  <feComposite in='SourceGraphic' in2='grey' operator='atop'/>
+	</filter>
+</defs>
+<g fill="none" color="white" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="black" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="gray" stroke="currentColor" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
+	<path stroke='gray' stroke-dasharray='2,4' class="gridline"  d='M71.9,251.4 L615.0,251.4  '/></g>
+<g fill="none" color="gray" stroke="gray" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+	<path stroke='black'  d='M71.9,251.4 L80.9,251.4 M615.0,251.4 L606.0,251.4  '/>	<g transform="translate(63.6,255.3)" stroke="none" fill="black" font-family="Times-Roman" font-size="12.00"  text-anchor="end">
+		<text><tspan font-family="Times-Roman" > 0</tspan></text>
+	</g>
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="black" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="gray" stroke="currentColor" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
+	<path stroke='gray' stroke-dasharray='2,4' class="gridline"  d='M71.9,228.1 L615.0,228.1  '/></g>
+<g fill="none" color="gray" stroke="gray" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+	<path stroke='black'  d='M71.9,228.1 L80.9,228.1 M615.0,228.1 L606.0,228.1  '/>	<g transform="translate(63.6,232.0)" stroke="none" fill="black" font-family="Times-Roman" font-size="12.00"  text-anchor="end">
+		<text><tspan font-family="Times-Roman" > 10</tspan></text>
+	</g>
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="black" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="gray" stroke="currentColor" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
+	<path stroke='gray' stroke-dasharray='2,4' class="gridline"  d='M71.9,204.7 L615.0,204.7  '/></g>
+<g fill="none" color="gray" stroke="gray" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+	<path stroke='black'  d='M71.9,204.7 L80.9,204.7 M615.0,204.7 L606.0,204.7  '/>	<g transform="translate(63.6,208.6)" stroke="none" fill="black" font-family="Times-Roman" font-size="12.00"  text-anchor="end">
+		<text><tspan font-family="Times-Roman" > 20</tspan></text>
+	</g>
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="black" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="gray" stroke="currentColor" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
+	<path stroke='gray' stroke-dasharray='2,4' class="gridline"  d='M71.9,181.4 L615.0,181.4  '/></g>
+<g fill="none" color="gray" stroke="gray" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+	<path stroke='black'  d='M71.9,181.4 L80.9,181.4 M615.0,181.4 L606.0,181.4  '/>	<g transform="translate(63.6,185.3)" stroke="none" fill="black" font-family="Times-Roman" font-size="12.00"  text-anchor="end">
+		<text><tspan font-family="Times-Roman" > 30</tspan></text>
+	</g>
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="black" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="gray" stroke="currentColor" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
+	<path stroke='gray' stroke-dasharray='2,4' class="gridline"  d='M71.9,158.1 L615.0,158.1  '/></g>
+<g fill="none" color="gray" stroke="gray" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+	<path stroke='black'  d='M71.9,158.1 L80.9,158.1 M615.0,158.1 L606.0,158.1  '/>	<g transform="translate(63.6,162.0)" stroke="none" fill="black" font-family="Times-Roman" font-size="12.00"  text-anchor="end">
+		<text><tspan font-family="Times-Roman" > 40</tspan></text>
+	</g>
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="black" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="gray" stroke="currentColor" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
+	<path stroke='gray' stroke-dasharray='2,4' class="gridline"  d='M71.9,134.7 L615.0,134.7  '/></g>
+<g fill="none" color="gray" stroke="gray" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+	<path stroke='black'  d='M71.9,134.7 L80.9,134.7 M615.0,134.7 L606.0,134.7  '/>	<g transform="translate(63.6,138.6)" stroke="none" fill="black" font-family="Times-Roman" font-size="12.00"  text-anchor="end">
+		<text><tspan font-family="Times-Roman" > 50</tspan></text>
+	</g>
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="black" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="gray" stroke="currentColor" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
+	<path stroke='gray' stroke-dasharray='2,4' class="gridline"  d='M71.9,111.4 L615.0,111.4  '/></g>
+<g fill="none" color="gray" stroke="gray" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+	<path stroke='black'  d='M71.9,111.4 L80.9,111.4 M615.0,111.4 L606.0,111.4  '/>	<g transform="translate(63.6,115.3)" stroke="none" fill="black" font-family="Times-Roman" font-size="12.00"  text-anchor="end">
+		<text><tspan font-family="Times-Roman" > 60</tspan></text>
+	</g>
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="black" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="gray" stroke="currentColor" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
+	<path stroke='gray' stroke-dasharray='2,4' class="gridline"  d='M71.9,88.1 L615.0,88.1  '/></g>
+<g fill="none" color="gray" stroke="gray" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+	<path stroke='black'  d='M71.9,88.1 L80.9,88.1 M615.0,88.1 L606.0,88.1  '/>	<g transform="translate(63.6,92.0)" stroke="none" fill="black" font-family="Times-Roman" font-size="12.00"  text-anchor="end">
+		<text><tspan font-family="Times-Roman" > 70</tspan></text>
+	</g>
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="black" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="gray" stroke="currentColor" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
+	<path stroke='gray' stroke-dasharray='2,4' class="gridline"  d='M71.9,64.8 L80.2,64.8 M265.6,64.8 L615.0,64.8  '/></g>
+<g fill="none" color="gray" stroke="gray" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+	<path stroke='black'  d='M71.9,64.8 L80.9,64.8 M615.0,64.8 L606.0,64.8  '/>	<g transform="translate(63.6,68.7)" stroke="none" fill="black" font-family="Times-Roman" font-size="12.00"  text-anchor="end">
+		<text><tspan font-family="Times-Roman" > 80</tspan></text>
+	</g>
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="black" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="gray" stroke="currentColor" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
+	<path stroke='gray' stroke-dasharray='2,4' class="gridline"  d='M71.9,41.4 L80.2,41.4 M265.6,41.4 L615.0,41.4  '/></g>
+<g fill="none" color="gray" stroke="gray" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+	<path stroke='black'  d='M71.9,41.4 L80.9,41.4 M615.0,41.4 L606.0,41.4  '/>	<g transform="translate(63.6,45.3)" stroke="none" fill="black" font-family="Times-Roman" font-size="12.00"  text-anchor="end">
+		<text><tspan font-family="Times-Roman" > 90</tspan></text>
+	</g>
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="black" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="gray" stroke="currentColor" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
+	<path stroke='gray' stroke-dasharray='2,4' class="gridline"  d='M71.9,18.1 L615.0,18.1  '/></g>
+<g fill="none" color="gray" stroke="gray" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+	<path stroke='black'  d='M71.9,18.1 L80.9,18.1 M615.0,18.1 L606.0,18.1  '/>	<g transform="translate(63.6,22.0)" stroke="none" fill="black" font-family="Times-Roman" font-size="12.00"  text-anchor="end">
+		<text><tspan font-family="Times-Roman" > 100</tspan></text>
+	</g>
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="black" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="gray" stroke="currentColor" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
+	<path stroke='gray' stroke-dasharray='2,4' class="gridline"  d='M71.9,251.4 L71.9,18.1  '/></g>
+<g fill="none" color="gray" stroke="gray" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+	<path stroke='black'  d='M71.9,251.4 L71.9,242.4 M71.9,18.1 L71.9,27.1  '/>	<g transform="translate(71.9,273.3)" stroke="none" fill="black" font-family="Times-Roman" font-size="12.00"  text-anchor="middle">
+		<text><tspan font-family="Times-Roman" >1</tspan></text>
+	</g>
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="black" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="gray" stroke="currentColor" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
+	<path stroke='gray' stroke-dasharray='2,4' class="gridline"  d='M252.9,251.4 L252.9,81.1 M252.9,27.1 L252.9,18.1  '/></g>
+<g fill="none" color="gray" stroke="gray" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+	<path stroke='black'  d='M252.9,251.4 L252.9,242.4 M252.9,18.1 L252.9,27.1  '/>	<g transform="translate(252.9,273.3)" stroke="none" fill="black" font-family="Times-Roman" font-size="12.00"  text-anchor="middle">
+		<text><tspan font-family="Times-Roman" >1kB</tspan></text>
+	</g>
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="black" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="gray" stroke="currentColor" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
+	<path stroke='gray' stroke-dasharray='2,4' class="gridline"  d='M434.0,251.4 L434.0,18.1  '/></g>
+<g fill="none" color="gray" stroke="gray" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+	<path stroke='black'  d='M434.0,251.4 L434.0,242.4 M434.0,18.1 L434.0,27.1  '/>	<g transform="translate(434.0,273.3)" stroke="none" fill="black" font-family="Times-Roman" font-size="12.00"  text-anchor="middle">
+		<text><tspan font-family="Times-Roman" >1MB</tspan></text>
+	</g>
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="black" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="gray" stroke="currentColor" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
+	<path stroke='gray' stroke-dasharray='2,4' class="gridline"  d='M615.0,251.4 L615.0,18.1  '/></g>
+<g fill="none" color="gray" stroke="gray" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+	<path stroke='black'  d='M615.0,251.4 L615.0,242.4 M615.0,18.1 L615.0,27.1  '/>	<g transform="translate(615.0,273.3)" stroke="none" fill="black" font-family="Times-Roman" font-size="12.00"  text-anchor="middle">
+		<text><tspan font-family="Times-Roman" >1GB</tspan></text>
+	</g>
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="black" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="gray" stroke="currentColor" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
+	<path stroke='gray' stroke-dasharray='2,4' class="gridline"  d='M71.9,251.4 L71.9,18.1  '/></g>
+<g fill="none" color="gray" stroke="gray" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+	<path stroke='black'  d='M71.9,251.4 L71.9,242.4 M71.9,18.1 L71.9,27.1  '/></g>
+<g fill="none" color="black" stroke="black" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="gray" stroke="currentColor" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
+	<path stroke='gray' stroke-dasharray='2,4' class="gridline"  d='M108.1,251.4 L108.1,81.1 M108.1,27.1 L108.1,18.1  '/></g>
+<g fill="none" color="gray" stroke="gray" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+	<path stroke='black'  d='M108.1,251.4 L108.1,242.4 M108.1,18.1 L108.1,27.1  '/>	<g transform="translate(108.1,273.3)" stroke="none" fill="black" font-family="Times-Roman" font-size="12.00"  text-anchor="middle">
+		<text></text>
+	</g>
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="black" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="gray" stroke="currentColor" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
+	<path stroke='gray' stroke-dasharray='2,4' class="gridline"  d='M144.3,251.4 L144.3,81.1 M144.3,27.1 L144.3,18.1  '/></g>
+<g fill="none" color="gray" stroke="gray" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+	<path stroke='black'  d='M144.3,251.4 L144.3,242.4 M144.3,18.1 L144.3,27.1  '/>	<g transform="translate(144.3,273.3)" stroke="none" fill="black" font-family="Times-Roman" font-size="12.00"  text-anchor="middle">
+		<text></text>
+	</g>
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="black" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="gray" stroke="currentColor" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
+	<path stroke='gray' stroke-dasharray='2,4' class="gridline"  d='M180.5,251.4 L180.5,81.1 M180.5,27.1 L180.5,18.1  '/></g>
+<g fill="none" color="gray" stroke="gray" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+	<path stroke='black'  d='M180.5,251.4 L180.5,242.4 M180.5,18.1 L180.5,27.1  '/>	<g transform="translate(180.5,273.3)" stroke="none" fill="black" font-family="Times-Roman" font-size="12.00"  text-anchor="middle">
+		<text></text>
+	</g>
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="black" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="gray" stroke="currentColor" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
+	<path stroke='gray' stroke-dasharray='2,4' class="gridline"  d='M216.7,251.4 L216.7,81.1 M216.7,27.1 L216.7,18.1  '/></g>
+<g fill="none" color="gray" stroke="gray" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+	<path stroke='black'  d='M216.7,251.4 L216.7,242.4 M216.7,18.1 L216.7,27.1  '/>	<g transform="translate(216.7,273.3)" stroke="none" fill="black" font-family="Times-Roman" font-size="12.00"  text-anchor="middle">
+		<text></text>
+	</g>
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="black" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="gray" stroke="currentColor" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
+	<path stroke='gray' stroke-dasharray='2,4' class="gridline"  d='M252.9,251.4 L252.9,81.1 M252.9,27.1 L252.9,18.1  '/></g>
+<g fill="none" color="gray" stroke="gray" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+	<path stroke='black'  d='M252.9,251.4 L252.9,242.4 M252.9,18.1 L252.9,27.1  '/></g>
+<g fill="none" color="black" stroke="black" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="gray" stroke="currentColor" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
+	<path stroke='gray' stroke-dasharray='2,4' class="gridline"  d='M289.1,251.4 L289.1,18.1  '/></g>
+<g fill="none" color="gray" stroke="gray" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+	<path stroke='black'  d='M289.1,251.4 L289.1,242.4 M289.1,18.1 L289.1,27.1  '/>	<g transform="translate(289.1,273.3)" stroke="none" fill="black" font-family="Times-Roman" font-size="12.00"  text-anchor="middle">
+		<text></text>
+	</g>
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="black" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="gray" stroke="currentColor" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
+	<path stroke='gray' stroke-dasharray='2,4' class="gridline"  d='M325.3,251.4 L325.3,18.1  '/></g>
+<g fill="none" color="gray" stroke="gray" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+	<path stroke='black'  d='M325.3,251.4 L325.3,242.4 M325.3,18.1 L325.3,27.1  '/>	<g transform="translate(325.3,273.3)" stroke="none" fill="black" font-family="Times-Roman" font-size="12.00"  text-anchor="middle">
+		<text></text>
+	</g>
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="black" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="gray" stroke="currentColor" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
+	<path stroke='gray' stroke-dasharray='2,4' class="gridline"  d='M361.6,251.4 L361.6,18.1  '/></g>
+<g fill="none" color="gray" stroke="gray" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+	<path stroke='black'  d='M361.6,251.4 L361.6,242.4 M361.6,18.1 L361.6,27.1  '/>	<g transform="translate(361.6,273.3)" stroke="none" fill="black" font-family="Times-Roman" font-size="12.00"  text-anchor="middle">
+		<text></text>
+	</g>
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="black" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="gray" stroke="currentColor" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
+	<path stroke='gray' stroke-dasharray='2,4' class="gridline"  d='M397.8,251.4 L397.8,18.1  '/></g>
+<g fill="none" color="gray" stroke="gray" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+	<path stroke='black'  d='M397.8,251.4 L397.8,242.4 M397.8,18.1 L397.8,27.1  '/>	<g transform="translate(397.8,273.3)" stroke="none" fill="black" font-family="Times-Roman" font-size="12.00"  text-anchor="middle">
+		<text></text>
+	</g>
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="black" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="gray" stroke="currentColor" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
+	<path stroke='gray' stroke-dasharray='2,4' class="gridline"  d='M434.0,251.4 L434.0,18.1  '/></g>
+<g fill="none" color="gray" stroke="gray" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+	<path stroke='black'  d='M434.0,251.4 L434.0,242.4 M434.0,18.1 L434.0,27.1  '/></g>
+<g fill="none" color="black" stroke="black" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="gray" stroke="currentColor" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
+	<path stroke='gray' stroke-dasharray='2,4' class="gridline"  d='M470.2,251.4 L470.2,18.1  '/></g>
+<g fill="none" color="gray" stroke="gray" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+	<path stroke='black'  d='M470.2,251.4 L470.2,242.4 M470.2,18.1 L470.2,27.1  '/>	<g transform="translate(470.2,273.3)" stroke="none" fill="black" font-family="Times-Roman" font-size="12.00"  text-anchor="middle">
+		<text></text>
+	</g>
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="black" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="gray" stroke="currentColor" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
+	<path stroke='gray' stroke-dasharray='2,4' class="gridline"  d='M506.4,251.4 L506.4,18.1  '/></g>
+<g fill="none" color="gray" stroke="gray" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+	<path stroke='black'  d='M506.4,251.4 L506.4,242.4 M506.4,18.1 L506.4,27.1  '/>	<g transform="translate(506.4,273.3)" stroke="none" fill="black" font-family="Times-Roman" font-size="12.00"  text-anchor="middle">
+		<text></text>
+	</g>
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="black" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="gray" stroke="currentColor" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
+	<path stroke='gray' stroke-dasharray='2,4' class="gridline"  d='M542.6,251.4 L542.6,18.1  '/></g>
+<g fill="none" color="gray" stroke="gray" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+	<path stroke='black'  d='M542.6,251.4 L542.6,242.4 M542.6,18.1 L542.6,27.1  '/>	<g transform="translate(542.6,273.3)" stroke="none" fill="black" font-family="Times-Roman" font-size="12.00"  text-anchor="middle">
+		<text></text>
+	</g>
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="black" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="gray" stroke="currentColor" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
+	<path stroke='gray' stroke-dasharray='2,4' class="gridline"  d='M578.8,251.4 L578.8,18.1  '/></g>
+<g fill="none" color="gray" stroke="gray" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+	<path stroke='black'  d='M578.8,251.4 L578.8,242.4 M578.8,18.1 L578.8,27.1  '/>	<g transform="translate(578.8,273.3)" stroke="none" fill="black" font-family="Times-Roman" font-size="12.00"  text-anchor="middle">
+		<text></text>
+	</g>
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="black" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="gray" stroke="currentColor" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
+	<path stroke='gray' stroke-dasharray='2,4' class="gridline"  d='M615.0,251.4 L615.0,18.1  '/></g>
+<g fill="none" color="gray" stroke="gray" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+	<path stroke='black'  d='M615.0,251.4 L615.0,242.4 M615.0,18.1 L615.0,27.1  '/></g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+	<path stroke='black'  d='M71.9,18.1 L71.9,251.4 L615.0,251.4 L615.0,18.1 L71.9,18.1 Z  '/></g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+	<g transform="translate(24.6,134.8) rotate(270)" stroke="none" fill="black" font-family="Times-Roman" font-size="12.00"  text-anchor="middle">
+		<text><tspan font-family="Times-Roman" >CDF</tspan></text>
+	</g>
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+	<g transform="translate(343.4,293.3)" stroke="none" fill="black" font-family="Times-Roman" font-size="18.00"  text-anchor="middle">
+		<text><tspan font-family="Times-Roman" >data size</tspan></text>
+	</g>
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+	<g id="gnuplot_plot_1" ><title>TPC-DS</title>
+<g fill="none" color="white" stroke="currentColor" stroke-width="4.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="4.00" stroke-linecap="butt" stroke-linejoin="miter">
+	<g transform="translate(206.2,46.5)" stroke="none" fill="black" font-family="Times-Roman" font-size="18.00"  text-anchor="end">
+		<text><tspan font-family="Times-Roman" >TPC-DS</tspan></text>
+	</g>
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="4.00" stroke-linecap="butt" stroke-linejoin="miter">
+	<path stroke='rgb(229,  30,  16)'  d='M218.8,40.6 L253.0,40.6 M192.2,249.1 L204.5,246.7 L221.2,244.4 L240.8,242.1 L252.5,239.7 L258.7,237.4
+		L264.5,235.1 L273.3,232.7 L280.2,230.4 L284.4,228.1 L287.3,225.7 L290.5,223.4 L295.8,221.1 L304.7,218.7
+		L310.2,216.4 L313.8,214.1 L315.6,211.7 L316.8,209.4 L317.9,207.1 L320.5,204.7 L323.2,202.4 L326.0,200.1
+		L327.4,197.7 L330.4,195.4 L333.2,193.1 L337.6,190.7 L343.9,188.4 L346.9,186.1 L349.7,183.7 L352.6,181.4
+		L354.7,179.1 L357.7,176.7 L359.3,174.4 L362.2,172.1 L365.2,169.7 L365.2,167.4 L365.2,165.1 L365.3,162.7
+		L365.3,160.4 L365.4,158.1 L365.9,155.7 L366.7,153.4 L370.1,151.1 L374.1,148.7 L378.8,146.4 L384.1,144.1
+		L388.1,141.7 L390.3,139.4 L396.9,137.1 L398.2,134.7 L402.8,132.4 L404.6,130.1 L407.0,127.8 L409.3,125.4
+		L416.1,123.1 L417.8,120.8 L419.0,118.4 L421.3,116.1 L423.3,113.8 L425.7,111.4 L430.1,109.1 L433.1,106.8
+		L435.7,104.4 L438.8,102.1 L442.4,99.8 L444.3,97.4 L447.0,95.1 L449.1,92.8 L452.0,90.4 L454.7,88.1
+		L458.1,85.8 L461.4,83.4 L464.2,81.1 L464.4,78.8 L469.8,76.4 L474.7,74.1 L475.8,71.8 L478.4,69.4
+		L479.7,67.1 L481.0,64.8 L485.9,62.4 L488.1,60.1 L492.8,57.8 L494.6,55.4 L497.7,53.1 L500.9,50.8
+		L505.7,48.4 L508.3,46.1 L512.0,43.8 L516.0,41.4 L520.3,39.1 L528.9,36.8 L529.5,34.4 L538.5,32.1
+		L540.7,29.8 L542.3,27.4 L548.5,25.1 L553.7,22.8 L566.9,20.4 L581.6,18.1  '/></g>
+	</g>
+	<g id="gnuplot_plot_2" ><title>PR-Twitter</title>
+<g fill="none" color="black" stroke="currentColor" stroke-width="4.00" stroke-linecap="butt" stroke-linejoin="miter">
+	<g transform="translate(206.2,73.5)" stroke="none" fill="black" font-family="Times-Roman" font-size="18.00"  text-anchor="end">
+		<text><tspan font-family="Times-Roman" >PR-Twitter</tspan></text>
+	</g>
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="4.00" stroke-linecap="butt" stroke-linejoin="miter">
+	<path stroke='rgb(  0, 114, 178)'  d='M218.8,67.6 L253.0,67.6 M360.0,249.1 L369.2,246.7 L383.4,244.4 L394.0,242.1 L400.7,239.7 L405.6,237.4
+		L408.8,235.1 L411.3,232.7 L416.6,230.4 L419.7,228.1 L421.0,225.7 L423.0,223.4 L424.8,221.1 L426.1,218.7
+		L428.2,216.4 L430.0,214.1 L432.3,211.7 L435.4,209.4 L440.3,207.1 L441.8,204.7 L441.9,202.4 L442.1,200.1
+		L442.2,197.7 L443.8,195.4 L444.2,193.1 L447.8,190.7 L449.6,188.4 L452.7,186.1 L455.4,183.7 L460.0,181.4
+		L463.1,179.1 L464.1,176.7 L465.1,174.4 L466.4,172.1 L469.2,169.7 L472.8,167.4 L483.3,165.1 L489.0,162.7
+		L523.6,160.4 L523.7,158.1 L523.7,155.7 L523.8,153.4 L523.9,151.1 L524.1,148.7 L524.2,146.4 L525.2,144.1
+		L525.3,141.7 L525.3,139.4 L525.4,137.1 L525.4,134.7 L525.4,132.4 L525.5,130.1 L525.5,127.8 L525.6,125.4
+		L525.6,123.1 L525.7,120.8 L525.8,118.4 L525.9,116.1 L525.9,113.8 L526.1,111.4 L527.3,109.1 L527.4,106.8
+		L527.6,104.4 L528.4,102.1 L530.3,99.8 L530.3,97.4 L530.4,95.1 L530.4,92.8 L530.4,90.4 L530.4,88.1
+		L530.4,85.8 L530.5,83.4 L530.5,81.1 L530.5,78.8 L530.6,76.4 L530.6,74.1 L530.6,71.8 L530.7,69.4
+		L530.9,67.1 L531.0,64.8 L531.0,62.4 L531.1,60.1 L533.0,57.8 L533.2,55.4 L533.2,53.1 L533.3,50.8
+		L533.4,48.4 L568.5,46.1 L569.3,43.8 L573.4,41.4 L573.9,39.1 L574.1,36.8 L574.4,34.4 L576.9,32.1
+		L577.7,29.8 L580.6,27.4 L581.5,25.1 L582.0,22.8 L582.4,20.4 L586.8,18.1  '/></g>
+	</g>
+<g fill="none" color="white" stroke="rgb(  0, 114, 178)" stroke-width="2.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="2.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="black" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+	<path stroke='black'  d='M71.9,18.1 L71.9,251.4 L615.0,251.4 L615.0,18.1 L71.9,18.1 Z  '/></g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+</g>
+</svg>
+
diff --git a/site/img/blog/disaggregation/loadbalancing.pdf b/site/img/blog/disaggregation/loadbalancing.pdf
new file mode 100644
index 0000000..b16420f
Binary files /dev/null and b/site/img/blog/disaggregation/loadbalancing.pdf differ
diff --git a/site/img/blog/disaggregation/loadbalancing.svg b/site/img/blog/disaggregation/loadbalancing.svg
new file mode 100644
index 0000000..e6905b0
--- /dev/null
+++ b/site/img/blog/disaggregation/loadbalancing.svg
@@ -0,0 +1,533 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="402pt" height="110pt" viewBox="0 0 402 110" version="1.1">
+<defs>
+<g>
+<symbol overflow="visible" id="glyph0-0">
+<path style="stroke:none;" d="M 1.09375 -7.5625 L 7.140625 -7.5625 L 7.140625 0 L 1.09375 0 Z M 1.515625 -7.15625 L 1.515625 -0.40625 L 6.734375 -0.40625 L 6.734375 -7.15625 Z M 1.515625 -7.15625 "/>
+</symbol>
+<symbol overflow="visible" id="glyph0-1">
+<path style="stroke:none;" d="M 5.6875 -3.78125 C 5.6875 -2.519531 5.460938 -1.554688 5.015625 -0.890625 C 4.566406 -0.222656 3.910156 0.109375 3.046875 0.109375 C 2.171875 0.109375 1.515625 -0.21875 1.078125 -0.875 C 0.648438 -1.539062 0.4375 -2.507812 0.4375 -3.78125 C 0.4375 -5.082031 0.644531 -6.054688 1.0625 -6.703125 C 1.488281 -7.359375 2.160156 -7.6875 3.078125 -7.6875 C 3.972656 -7.6875 4.628906 -7.359375 5.046875 -6.703125 C 5.472656 -6.046875 5.6875 -5.070312 5.6875 -3.78125 Z [...]
+</symbol>
+<symbol overflow="visible" id="glyph0-2">
+<path style="stroke:none;" d="M 0.84375 0 L 0.84375 -0.828125 L 2.765625 -0.828125 L 2.765625 -6.640625 L 1.0625 -5.421875 L 1.0625 -6.34375 L 2.84375 -7.5625 L 3.734375 -7.5625 L 3.734375 -0.828125 L 5.578125 -0.828125 L 5.578125 0 Z M 0.84375 0 "/>
+</symbol>
+<symbol overflow="visible" id="glyph0-3">
+<path style="stroke:none;" d="M 0.546875 0 L 0.546875 -0.6875 C 0.734375 -1.101562 0.957031 -1.46875 1.21875 -1.78125 C 1.476562 -2.101562 1.753906 -2.394531 2.046875 -2.65625 C 2.335938 -2.914062 2.625 -3.15625 2.90625 -3.375 C 3.195312 -3.601562 3.457031 -3.828125 3.6875 -4.046875 C 3.914062 -4.273438 4.097656 -4.507812 4.234375 -4.75 C 4.378906 -4.988281 4.453125 -5.265625 4.453125 -5.578125 C 4.453125 -5.992188 4.328125 -6.316406 4.078125 -6.546875 C 3.835938 -6.773438 3.503906 -6.89 [...]
+</symbol>
+<symbol overflow="visible" id="glyph1-0">
+<path style="stroke:none;" d="M 1.40625 -9.625 L 9.09375 -9.625 L 9.09375 0 L 1.40625 0 Z M 1.921875 -9.109375 L 1.921875 -0.515625 L 8.578125 -0.515625 L 8.578125 -9.109375 Z M 1.921875 -9.109375 "/>
+</symbol>
+<symbol overflow="visible" id="glyph1-1">
+<path style="stroke:none;" d="M 6.5 -2.046875 C 6.5 -1.347656 6.234375 -0.804688 5.703125 -0.421875 C 5.179688 -0.046875 4.445312 0.140625 3.5 0.140625 C 2.570312 0.140625 1.859375 -0.0078125 1.359375 -0.3125 C 0.859375 -0.613281 0.535156 -1.085938 0.390625 -1.734375 L 1.484375 -1.953125 C 1.585938 -1.554688 1.800781 -1.265625 2.125 -1.078125 C 2.457031 -0.890625 2.914062 -0.796875 3.5 -0.796875 C 4.125 -0.796875 4.578125 -0.890625 4.859375 -1.078125 C 5.148438 -1.273438 5.296875 -1.5664 [...]
+</symbol>
+<symbol overflow="visible" id="glyph1-2">
+<path style="stroke:none;" d="M 3.78125 -0.0625 C 3.375 0.0507812 2.960938 0.109375 2.546875 0.109375 C 1.554688 0.109375 1.0625 -0.445312 1.0625 -1.5625 L 1.0625 -6.5 L 0.21875 -6.5 L 0.21875 -7.390625 L 1.109375 -7.390625 L 1.484375 -9.046875 L 2.296875 -9.046875 L 2.296875 -7.390625 L 3.671875 -7.390625 L 3.671875 -6.5 L 2.296875 -6.5 L 2.296875 -1.828125 C 2.296875 -1.472656 2.351562 -1.222656 2.46875 -1.078125 C 2.582031 -0.941406 2.785156 -0.875 3.078125 -0.875 C 3.242188 -0.875 3. [...]
+</symbol>
+<symbol overflow="visible" id="glyph1-3">
+<path style="stroke:none;" d="M 7.203125 -3.703125 C 7.203125 -2.410156 6.914062 -1.445312 6.34375 -0.8125 C 5.769531 -0.175781 4.941406 0.140625 3.859375 0.140625 C 2.785156 0.140625 1.972656 -0.1875 1.421875 -0.84375 C 0.867188 -1.507812 0.59375 -2.460938 0.59375 -3.703125 C 0.59375 -6.253906 1.695312 -7.53125 3.90625 -7.53125 C 5.03125 -7.53125 5.859375 -7.21875 6.390625 -6.59375 C 6.929688 -5.976562 7.203125 -5.015625 7.203125 -3.703125 Z M 5.90625 -3.703125 C 5.90625 -4.722656 5.753 [...]
+</symbol>
+<symbol overflow="visible" id="glyph1-4">
+<path style="stroke:none;" d="M 0.96875 0 L 0.96875 -5.671875 C 0.96875 -6.191406 0.957031 -6.765625 0.9375 -7.390625 L 2.09375 -7.390625 C 2.125 -6.554688 2.140625 -6.054688 2.140625 -5.890625 L 2.171875 -5.890625 C 2.367188 -6.523438 2.59375 -6.957031 2.84375 -7.1875 C 3.101562 -7.414062 3.46875 -7.53125 3.9375 -7.53125 C 4.09375 -7.53125 4.257812 -7.507812 4.4375 -7.46875 L 4.4375 -6.34375 C 4.269531 -6.382812 4.050781 -6.40625 3.78125 -6.40625 C 3.269531 -6.40625 2.878906 -6.1875 2.6 [...]
+</symbol>
+<symbol overflow="visible" id="glyph1-5">
+<path style="stroke:none;" d="M 2.828125 0.140625 C 2.085938 0.140625 1.53125 -0.0546875 1.15625 -0.453125 C 0.78125 -0.847656 0.59375 -1.382812 0.59375 -2.0625 C 0.59375 -2.832031 0.84375 -3.421875 1.34375 -3.828125 C 1.851562 -4.234375 2.664062 -4.453125 3.78125 -4.484375 L 5.453125 -4.515625 L 5.453125 -4.921875 C 5.453125 -5.515625 5.320312 -5.941406 5.0625 -6.203125 C 4.8125 -6.460938 4.410156 -6.59375 3.859375 -6.59375 C 3.304688 -6.59375 2.90625 -6.5 2.65625 -6.3125 C 2.40625 -6.1 [...]
+</symbol>
+<symbol overflow="visible" id="glyph1-6">
+<path style="stroke:none;" d="M 3.75 2.90625 C 2.9375 2.90625 2.289062 2.742188 1.8125 2.421875 C 1.332031 2.109375 1.023438 1.660156 0.890625 1.078125 L 2.140625 0.90625 C 2.210938 1.25 2.390625 1.507812 2.671875 1.6875 C 2.953125 1.875 3.320312 1.96875 3.78125 1.96875 C 5.007812 1.96875 5.625 1.25 5.625 -0.1875 L 5.625 -1.375 L 5.609375 -1.375 C 5.367188 -0.894531 5.046875 -0.535156 4.640625 -0.296875 C 4.242188 -0.0546875 3.773438 0.0625 3.234375 0.0625 C 2.316406 0.0625 1.644531 -0.2 [...]
+</symbol>
+<symbol overflow="visible" id="glyph1-7">
+<path style="stroke:none;" d="M 1.890625 -3.4375 C 1.890625 -2.59375 2.0625 -1.9375 2.40625 -1.46875 C 2.757812 -1.007812 3.273438 -0.78125 3.953125 -0.78125 C 4.484375 -0.78125 4.910156 -0.882812 5.234375 -1.09375 C 5.554688 -1.3125 5.773438 -1.585938 5.890625 -1.921875 L 6.96875 -1.609375 C 6.519531 -0.441406 5.515625 0.140625 3.953125 0.140625 C 2.859375 0.140625 2.023438 -0.179688 1.453125 -0.828125 C 0.878906 -1.484375 0.59375 -2.457031 0.59375 -3.75 C 0.59375 -4.96875 0.878906 -5.8 [...]
+</symbol>
+<symbol overflow="visible" id="glyph1-8">
+<path style="stroke:none;" d="M 4.1875 0 L 2.734375 0 L 0.046875 -7.390625 L 1.359375 -7.390625 L 2.984375 -2.578125 C 3.046875 -2.398438 3.203125 -1.863281 3.453125 -0.96875 L 3.703125 -1.765625 L 3.96875 -2.578125 L 5.640625 -7.390625 L 6.953125 -7.390625 Z M 4.1875 0 "/>
+</symbol>
+<symbol overflow="visible" id="glyph1-9">
+<path style="stroke:none;" d="M 5.609375 -1.1875 C 5.378906 -0.71875 5.078125 -0.378906 4.703125 -0.171875 C 4.328125 0.0351562 3.863281 0.140625 3.3125 0.140625 C 2.375 0.140625 1.6875 -0.171875 1.25 -0.796875 C 0.8125 -1.429688 0.59375 -2.390625 0.59375 -3.671875 C 0.59375 -6.242188 1.5 -7.53125 3.3125 -7.53125 C 3.875 -7.53125 4.335938 -7.425781 4.703125 -7.21875 C 5.078125 -7.019531 5.378906 -6.695312 5.609375 -6.25 L 5.625 -6.25 L 5.609375 -7.078125 L 5.609375 -10.140625 L 6.84375 - [...]
+</symbol>
+<symbol overflow="visible" id="glyph1-10">
+<path style="stroke:none;" d=""/>
+</symbol>
+<symbol overflow="visible" id="glyph1-11">
+<path style="stroke:none;" d="M 7.203125 -3.734375 C 7.203125 -1.148438 6.296875 0.140625 4.484375 0.140625 C 3.335938 0.140625 2.570312 -0.289062 2.1875 -1.15625 L 2.140625 -1.15625 C 2.160156 -1.113281 2.171875 -0.722656 2.171875 0.015625 L 2.171875 2.90625 L 0.9375 2.90625 L 0.9375 -5.890625 C 0.9375 -6.648438 0.925781 -7.148438 0.90625 -7.390625 L 2.09375 -7.390625 C 2.09375 -7.378906 2.097656 -7.316406 2.109375 -7.203125 C 2.117188 -7.085938 2.128906 -6.914062 2.140625 -6.6875 C 2.1 [...]
+</symbol>
+<symbol overflow="visible" id="glyph1-12">
+<path style="stroke:none;" d="M 0.9375 -8.96875 L 0.9375 -10.140625 L 2.171875 -10.140625 L 2.171875 -8.96875 Z M 0.9375 0 L 0.9375 -7.390625 L 2.171875 -7.390625 L 2.171875 0 Z M 0.9375 0 "/>
+</symbol>
+<symbol overflow="visible" id="glyph1-13">
+<path style="stroke:none;" d="M 5.640625 0 L 5.640625 -4.6875 C 5.640625 -5.175781 5.59375 -5.554688 5.5 -5.828125 C 5.40625 -6.097656 5.25 -6.289062 5.03125 -6.40625 C 4.820312 -6.519531 4.515625 -6.578125 4.109375 -6.578125 C 3.523438 -6.578125 3.0625 -6.375 2.71875 -5.96875 C 2.375 -5.5625 2.203125 -5 2.203125 -4.28125 L 2.203125 0 L 0.96875 0 L 0.96875 -5.8125 C 0.96875 -6.675781 0.957031 -7.203125 0.9375 -7.390625 L 2.09375 -7.390625 C 2.09375 -7.367188 2.09375 -7.304688 2.09375 -7. [...]
+</symbol>
+<symbol overflow="visible" id="glyph1-14">
+<path style="stroke:none;" d="M 2.46875 -6.5 L 2.46875 0 L 1.234375 0 L 1.234375 -6.5 L 0.203125 -6.5 L 0.203125 -7.390625 L 1.234375 -7.390625 L 1.234375 -8.234375 C 1.234375 -8.910156 1.378906 -9.394531 1.671875 -9.6875 C 1.972656 -9.976562 2.429688 -10.125 3.046875 -10.125 C 3.390625 -10.125 3.675781 -10.097656 3.90625 -10.046875 L 3.90625 -9.109375 C 3.707031 -9.148438 3.523438 -9.171875 3.359375 -9.171875 C 3.046875 -9.171875 2.816406 -9.085938 2.671875 -8.921875 C 2.535156 -8.76562 [...]
+</symbol>
+<symbol overflow="visible" id="glyph1-15">
+<path style="stroke:none;" d="M 0.9375 0 L 0.9375 -10.140625 L 2.171875 -10.140625 L 2.171875 0 Z M 0.9375 0 "/>
+</symbol>
+</g>
+<clipPath id="clip1">
+  <rect x="0" y="0" width="402" height="110"/>
+</clipPath>
+<g id="surface5" clip-path="url(#clip1)">
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 147.5 253.800781 L 132.101562 253.800781 L 132.101562 282.5 L 162.800781 282.5 L 162.800781 253.800781 Z M 147.5 253.800781 " transform="matrix(1,0,0,-1,-124,320)"/>
+<path style=" stroke:none;fill-rule:evenodd;fill:rgb(69.802856%,69.802856%,69.802856%);fill-opacity:1;" d="M 11.199219 42 L 11.199219 41.601562 L 11.300781 41.5 L 11.300781 41.398438 L 11.398438 41.300781 L 11.398438 41.101562 L 11.5 41 L 11.601562 41 L 11.601562 40.898438 L 12 40.5 L 12.101562 40.5 L 12.101562 40.398438 L 12.300781 40.398438 L 12.398438 40.300781 L 12.699219 40.300781 L 12.800781 40.199219 L 20 40.199219 L 20.101562 40.300781 L 20.398438 40.300781 L 20.5 40.398438 L 20. [...]
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 135.199219 278 L 135.199219 278.398438 L 135.300781 278.5 L 135.300781 278.601562 L 135.398438 278.699219 L 135.398438 278.898438 L 135.5 279 L 135.601562 279 L 135.601562 279.101562 L 136 279.5 L 136.101562 279.5 L 136.101562 279.601562 L 136.300781 279.601562 L 136.398438 279.699219 L 136.699219 279.699219 L 136.8 [...]
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 135.199219 279.800781 Z M 135.199219 279.800781 " transform="matrix(1,0,0,-1,-124,320)"/>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 145.601562 269.398438 Z M 145.601562 269.398438 " transform="matrix(1,0,0,-1,-124,320)"/>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph0-1" x="13.8" y="49.8"/>
+</g>
+<path style=" stroke:none;fill-rule:evenodd;fill:rgb(69.802856%,69.802856%,69.802856%);fill-opacity:1;" d="M 24 42 L 24 41.800781 L 24.101562 41.699219 L 24.101562 41.398438 L 24.199219 41.300781 L 24.199219 41.199219 L 24.300781 41.101562 L 24.300781 41 L 24.398438 41 L 24.398438 40.898438 L 24.5 40.800781 L 24.800781 40.5 L 24.898438 40.5 L 25 40.398438 L 25.101562 40.398438 L 25.199219 40.300781 L 25.5 40.300781 L 25.601562 40.199219 L 32.800781 40.199219 L 32.898438 40.300781 L 33.19 [...]
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,65.097046%,36.468506%);stroke-opacity:1;stroke-miterlimit:10;" d="M 148 278 L 148 278.199219 L 148.101562 278.300781 L 148.101562 278.601562 L 148.199219 278.699219 L 148.199219 278.800781 L 148.300781 278.898438 L 148.300781 279 L 148.398438 279 L 148.398438 279.101562 L 148.5 279.199219 L 148.800781 279.5 L 148.898438 279.5 L 149 279.601562 L 149.101562 279.601562 L 149.199219 279.699219  [...]
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,65.097046%,36.468506%);stroke-opacity:1;stroke-miterlimit:10;" d="M 148 279.800781 Z M 148 279.800781 " transform="matrix(1,0,0,-1,-124,320)"/>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,65.097046%,36.468506%);stroke-opacity:1;stroke-miterlimit:10;" d="M 158.398438 269.398438 Z M 158.398438 269.398438 " transform="matrix(1,0,0,-1,-124,320)"/>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph0-2" x="26.6" y="49.8"/>
+</g>
+<path style=" stroke:none;fill-rule:evenodd;fill:rgb(69.802856%,69.802856%,69.802856%);fill-opacity:1;" d="M 11.199219 55.101562 L 11.199219 54.699219 L 11.300781 54.601562 L 11.300781 54.5 L 11.398438 54.398438 L 11.398438 54.199219 L 11.5 54.101562 L 11.601562 54.101562 L 11.601562 54 L 11.699219 53.898438 L 11.800781 53.800781 L 11.898438 53.699219 L 12 53.601562 L 12.101562 53.601562 L 12.101562 53.5 L 12.300781 53.5 L 12.398438 53.398438 L 12.699219 53.398438 L 12.800781 53.300781 L [...]
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(92.939758%,10.978699%,14.115906%);stroke-opacity:1;stroke-miterlimit:10;" d="M 135.199219 264.898438 L 135.199219 265.300781 L 135.300781 265.398438 L 135.300781 265.5 L 135.398438 265.601562 L 135.398438 265.800781 L 135.5 265.898438 L 135.601562 265.898438 L 135.601562 266 L 135.699219 266.101562 L 135.800781 266.199219 L 135.898438 266.300781 L 136 266.398438 L 136.101562 266.398438 L 136.1 [...]
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(92.939758%,10.978699%,14.115906%);stroke-opacity:1;stroke-miterlimit:10;" d="M 135.199219 266.699219 Z M 135.199219 266.699219 " transform="matrix(1,0,0,-1,-124,320)"/>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(92.939758%,10.978699%,14.115906%);stroke-opacity:1;stroke-miterlimit:10;" d="M 145.601562 256.300781 Z M 145.601562 256.300781 " transform="matrix(1,0,0,-1,-124,320)"/>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph0-1" x="13.8" y="62.9"/>
+</g>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 147.5 216.699219 L 132.101562 216.699219 L 132.101562 245.300781 L 162.800781 245.300781 L 162.800781 216.699219 Z M 147.5 216.699219 " transform="matrix(1,0,0,-1,-124,320)"/>
+<path style=" stroke:none;fill-rule:evenodd;fill:rgb(69.802856%,69.802856%,69.802856%);fill-opacity:1;" d="M 11.199219 79.101562 L 11.199219 78.800781 L 11.300781 78.699219 L 11.300781 78.5 L 11.398438 78.398438 L 11.398438 78.300781 L 11.5 78.199219 L 11.601562 78.101562 L 11.699219 78 L 11.699219 77.898438 L 11.800781 77.898438 L 12 77.699219 L 12.101562 77.601562 L 12.199219 77.601562 L 12.300781 77.5 L 12.5 77.5 L 12.601562 77.398438 L 20.199219 77.398438 L 20.300781 77.5 L 20.5 77.5 [...]
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,65.097046%,36.468506%);stroke-opacity:1;stroke-miterlimit:10;" d="M 135.199219 240.898438 L 135.199219 241.199219 L 135.300781 241.300781 L 135.300781 241.5 L 135.398438 241.601562 L 135.398438 241.699219 L 135.5 241.800781 L 135.601562 241.898438 L 135.699219 242 L 135.699219 242.101562 L 135.800781 242.101562 L 136 242.300781 L 136.101562 242.398438 L 136.199219 242.398438 L 136.300781 24 [...]
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,65.097046%,36.468506%);stroke-opacity:1;stroke-miterlimit:10;" d="M 135.199219 242.601562 Z M 135.199219 242.601562 " transform="matrix(1,0,0,-1,-124,320)"/>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,65.097046%,36.468506%);stroke-opacity:1;stroke-miterlimit:10;" d="M 145.601562 232.199219 Z M 145.601562 232.199219 " transform="matrix(1,0,0,-1,-124,320)"/>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph0-1" x="13.8" y="87"/>
+</g>
+<path style=" stroke:none;fill-rule:evenodd;fill:rgb(69.802856%,69.802856%,69.802856%);fill-opacity:1;" d="M 24 79.101562 L 24 79 L 24.101562 78.898438 L 24.101562 78.5 L 24.199219 78.398438 L 24.199219 78.300781 L 24.300781 78.300781 L 24.300781 78.199219 L 24.5 78 L 24.5 77.898438 L 24.601562 77.898438 L 24.898438 77.601562 L 25 77.601562 L 25.101562 77.5 L 25.300781 77.5 L 25.398438 77.398438 L 33 77.398438 L 33.101562 77.5 L 33.300781 77.5 L 33.398438 77.601562 L 33.5 77.601562 L 33. [...]
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 148 240.898438 L 148 241 L 148.101562 241.101562 L 148.101562 241.5 L 148.199219 241.601562 L 148.199219 241.699219 L 148.300781 241.699219 L 148.300781 241.800781 L 148.5 242 L 148.5 242.101562 L 148.601562 242.101562 L 148.898438 242.398438 L 149 242.398438 L 149.101562 242.5 L 149.300781 242.5 L 149.398438 242.60 [...]
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 148 242.601562 Z M 148 242.601562 " transform="matrix(1,0,0,-1,-124,320)"/>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 158.398438 232.199219 Z M 158.398438 232.199219 " transform="matrix(1,0,0,-1,-124,320)"/>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph0-2" x="26.6" y="87"/>
+</g>
+<path style=" stroke:none;fill-rule:evenodd;fill:rgb(0%,65.097046%,36.468506%);fill-opacity:1;" d="M 86.199219 91 L 86.199219 90.5 L 86.300781 90.398438 L 86.300781 90.300781 L 86.398438 90.101562 L 86.398438 89.898438 L 86.5 89.800781 L 86.601562 89.699219 L 86.601562 89.601562 L 86.699219 89.5 L 87 89.199219 L 87.101562 89.101562 L 87.199219 89 L 87.300781 89 L 87.398438 88.898438 L 87.5 88.800781 L 87.699219 88.800781 L 87.898438 88.699219 L 88 88.699219 L 88.101562 88.601562 L 123 88 [...]
+<path style="fill:none;stroke-width:0.7358;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 210.199219 229 L 210.199219 229.5 L 210.300781 229.601562 L 210.300781 229.699219 L 210.398438 229.898438 L 210.398438 230.101562 L 210.5 230.199219 L 210.601562 230.300781 L 210.601562 230.398438 L 210.699219 230.5 L 211 230.800781 L 211.101562 230.898438 L 211.199219 231 L 211.300781 231 L 211.398438 231.101562 L 211.5 231.199219 L 211.6 [...]
+<path style="fill:none;stroke-width:0.7358;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 210.199219 231.398438 Z M 210.199219 231.398438 " transform="matrix(1,0,0,-1,-124,320)"/>
+<path style="fill:none;stroke-width:0.7358;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 248.898438 216.699219 Z M 248.898438 216.699219 " transform="matrix(1,0,0,-1,-124,320)"/>
+<path style=" stroke:none;fill-rule:evenodd;fill:rgb(69.802856%,69.802856%,69.802856%);fill-opacity:1;" d="M 88.5 92.398438 L 88.5 91.800781 L 88.601562 91.800781 L 88.601562 91.699219 L 88.699219 91.601562 L 88.699219 91.398438 L 88.800781 91.398438 L 88.898438 91.300781 L 88.898438 91.199219 L 89 91.199219 L 89 91.101562 L 89.101562 91 L 89.199219 91 L 89.398438 90.800781 L 89.601562 90.800781 L 89.601562 90.699219 L 89.898438 90.699219 L 90 90.601562 L 97.199219 90.601562 L 97.398438  [...]
+<path style="fill:none;stroke-width:0.7358;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,65.097046%,36.468506%);stroke-opacity:1;stroke-miterlimit:10;" d="M 212.5 227.601562 L 212.5 228.199219 L 212.601562 228.199219 L 212.601562 228.300781 L 212.699219 228.398438 L 212.699219 228.601562 L 212.800781 228.601562 L 212.898438 228.699219 L 212.898438 228.800781 L 213 228.800781 L 213 228.898438 L 213.101562 229 L 213.199219 229 L 213.398438 229.199219 L 213.601562 229.199219 L 213 [...]
+<path style="fill:none;stroke-width:0.7358;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,65.097046%,36.468506%);stroke-opacity:1;stroke-miterlimit:10;" d="M 212.5 229.398438 Z M 212.5 229.398438 " transform="matrix(1,0,0,-1,-124,320)"/>
+<path style="fill:none;stroke-width:0.7358;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,65.097046%,36.468506%);stroke-opacity:1;stroke-miterlimit:10;" d="M 222.800781 219 Z M 222.800781 219 " transform="matrix(1,0,0,-1,-124,320)"/>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph0-1" x="91.1" y="100.2"/>
+</g>
+<path style=" stroke:none;fill-rule:evenodd;fill:rgb(69.802856%,69.802856%,69.802856%);fill-opacity:1;" d="M 100.101562 92.398438 L 100.101562 91.898438 L 100.199219 91.800781 L 100.199219 91.699219 L 100.300781 91.601562 L 100.300781 91.5 L 100.398438 91.398438 L 100.5 91.300781 L 100.5 91.199219 L 100.601562 91.199219 L 100.601562 91.101562 L 100.699219 91 L 100.800781 91 L 100.898438 90.898438 L 101 90.898438 L 101 90.800781 L 101.199219 90.800781 L 101.300781 90.699219 L 101.5 90.699 [...]
+<path style="fill:none;stroke-width:0.7358;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,65.097046%,36.468506%);stroke-opacity:1;stroke-miterlimit:10;" d="M 224.101562 227.601562 L 224.101562 228.101562 L 224.199219 228.199219 L 224.199219 228.300781 L 224.300781 228.398438 L 224.300781 228.5 L 224.398438 228.601562 L 224.5 228.699219 L 224.5 228.800781 L 224.601562 228.800781 L 224.601562 228.898438 L 224.699219 229 L 224.800781 229 L 224.898438 229.101562 L 225 229.101562 L 2 [...]
+<path style="fill:none;stroke-width:0.7358;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,65.097046%,36.468506%);stroke-opacity:1;stroke-miterlimit:10;" d="M 224.101562 229.398438 Z M 224.101562 229.398438 " transform="matrix(1,0,0,-1,-124,320)"/>
+<path style="fill:none;stroke-width:0.7358;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,65.097046%,36.468506%);stroke-opacity:1;stroke-miterlimit:10;" d="M 234.5 219 Z M 234.5 219 " transform="matrix(1,0,0,-1,-124,320)"/>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph0-2" x="102.7" y="100.2"/>
+</g>
+<path style=" stroke:none;fill-rule:evenodd;fill:rgb(69.802856%,69.802856%,69.802856%);fill-opacity:1;" d="M 111.800781 92.398438 L 111.800781 91.800781 L 111.898438 91.800781 L 111.898438 91.699219 L 112 91.601562 L 112 91.398438 L 112.101562 91.398438 L 112.199219 91.300781 L 112.199219 91.199219 L 112.300781 91.199219 L 112.300781 91.101562 L 112.398438 91 L 112.5 91 L 112.699219 90.800781 L 112.898438 90.800781 L 112.898438 90.699219 L 113.199219 90.699219 L 113.300781 90.601562 L 12 [...]
+<path style="fill:none;stroke-width:0.7358;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,65.097046%,36.468506%);stroke-opacity:1;stroke-miterlimit:10;" d="M 235.800781 227.601562 L 235.800781 228.199219 L 235.898438 228.199219 L 235.898438 228.300781 L 236 228.398438 L 236 228.601562 L 236.101562 228.601562 L 236.199219 228.699219 L 236.199219 228.800781 L 236.300781 228.800781 L 236.300781 228.898438 L 236.398438 229 L 236.5 229 L 236.699219 229.199219 L 236.898438 229.199219  [...]
+<path style="fill:none;stroke-width:0.7358;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,65.097046%,36.468506%);stroke-opacity:1;stroke-miterlimit:10;" d="M 235.800781 229.398438 Z M 235.800781 229.398438 " transform="matrix(1,0,0,-1,-124,320)"/>
+<path style="fill:none;stroke-width:0.7358;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,65.097046%,36.468506%);stroke-opacity:1;stroke-miterlimit:10;" d="M 246.101562 219 Z M 246.101562 219 " transform="matrix(1,0,0,-1,-124,320)"/>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph0-3" x="114.4" y="100.2"/>
+</g>
+<path style=" stroke:none;fill-rule:evenodd;fill:rgb(69.802856%,69.802856%,69.802856%);fill-opacity:1;" d="M 11.199219 92 L 11.199219 91.601562 L 11.300781 91.5 L 11.300781 91.300781 L 11.398438 91.199219 L 11.398438 91.101562 L 11.699219 90.800781 L 11.699219 90.699219 L 11.800781 90.699219 L 12 90.5 L 12.101562 90.5 L 12.101562 90.398438 L 12.199219 90.398438 L 12.300781 90.300781 L 12.699219 90.300781 L 12.800781 90.199219 L 20 90.199219 L 20.101562 90.300781 L 20.5 90.300781 L 20.5 9 [...]
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(92.939758%,10.978699%,14.115906%);stroke-opacity:1;stroke-miterlimit:10;" d="M 135.199219 228 L 135.199219 228.398438 L 135.300781 228.5 L 135.300781 228.699219 L 135.398438 228.800781 L 135.398438 228.898438 L 135.699219 229.199219 L 135.699219 229.300781 L 135.800781 229.300781 L 136 229.5 L 136.101562 229.5 L 136.101562 229.601562 L 136.199219 229.601562 L 136.300781 229.699219 L 136.699219 [...]
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(92.939758%,10.978699%,14.115906%);stroke-opacity:1;stroke-miterlimit:10;" d="M 135.199219 229.800781 Z M 135.199219 229.800781 " transform="matrix(1,0,0,-1,-124,320)"/>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(92.939758%,10.978699%,14.115906%);stroke-opacity:1;stroke-miterlimit:10;" d="M 145.601562 219.398438 Z M 145.601562 219.398438 " transform="matrix(1,0,0,-1,-124,320)"/>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph0-2" x="13.8" y="99.8"/>
+</g>
+<path style=" stroke:none;fill-rule:evenodd;fill:rgb(69.802856%,69.802856%,69.802856%);fill-opacity:1;" d="M 24 55.101562 L 24 54.898438 L 24.101562 54.800781 L 24.101562 54.5 L 24.199219 54.398438 L 24.199219 54.300781 L 24.300781 54.199219 L 24.300781 54.101562 L 24.398438 54.101562 L 24.398438 54 L 24.5 53.898438 L 24.601562 53.800781 L 24.699219 53.699219 L 24.800781 53.601562 L 24.898438 53.601562 L 25 53.5 L 25.101562 53.5 L 25.199219 53.398438 L 25.5 53.398438 L 25.601562 53.30078 [...]
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 148 264.898438 L 148 265.101562 L 148.101562 265.199219 L 148.101562 265.5 L 148.199219 265.601562 L 148.199219 265.699219 L 148.300781 265.800781 L 148.300781 265.898438 L 148.398438 265.898438 L 148.398438 266 L 148.5 266.101562 L 148.601562 266.199219 L 148.699219 266.300781 L 148.800781 266.398438 L 148.898438 2 [...]
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 148 266.699219 Z M 148 266.699219 " transform="matrix(1,0,0,-1,-124,320)"/>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 158.398438 256.300781 Z M 158.398438 256.300781 " transform="matrix(1,0,0,-1,-124,320)"/>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph0-3" x="26.6" y="62.9"/>
+</g>
+<path style=" stroke:none;fill-rule:evenodd;fill:rgb(69.802856%,69.802856%,69.802856%);fill-opacity:1;" d="M 24 92 L 24 91.800781 L 24.101562 91.699219 L 24.101562 91.300781 L 24.199219 91.199219 L 24.300781 91.101562 L 24.300781 91 L 24.398438 90.898438 L 24.5 90.800781 L 24.5 90.699219 L 24.601562 90.699219 L 24.800781 90.5 L 24.898438 90.5 L 25 90.398438 L 25.101562 90.300781 L 25.5 90.300781 L 25.601562 90.199219 L 32.800781 90.199219 L 32.898438 90.300781 L 33.300781 90.300781 L 33. [...]
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,65.097046%,36.468506%);stroke-opacity:1;stroke-miterlimit:10;" d="M 148 228 L 148 228.199219 L 148.101562 228.300781 L 148.101562 228.699219 L 148.199219 228.800781 L 148.300781 228.898438 L 148.300781 229 L 148.398438 229.101562 L 148.5 229.199219 L 148.5 229.300781 L 148.601562 229.300781 L 148.800781 229.5 L 148.898438 229.5 L 149 229.601562 L 149.101562 229.699219 L 149.5 229.699219 L 1 [...]
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,65.097046%,36.468506%);stroke-opacity:1;stroke-miterlimit:10;" d="M 148 229.800781 Z M 148 229.800781 " transform="matrix(1,0,0,-1,-124,320)"/>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,65.097046%,36.468506%);stroke-opacity:1;stroke-miterlimit:10;" d="M 158.398438 219.398438 Z M 158.398438 219.398438 " transform="matrix(1,0,0,-1,-124,320)"/>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph0-3" x="26.6" y="99.8"/>
+</g>
+<path style=" stroke:none;fill-rule:evenodd;fill:rgb(20.391846%,39.605713%,64.312744%);fill-opacity:1;" d="M 86.199219 39.699219 L 86.199219 39.199219 L 86.300781 39.101562 L 86.300781 39 L 86.398438 38.898438 L 86.398438 38.601562 L 86.601562 38.398438 L 86.601562 38.300781 L 86.699219 38.199219 L 86.800781 38.101562 L 86.898438 38 L 87 37.898438 L 87.101562 37.800781 L 87.199219 37.800781 L 87.398438 37.601562 L 87.5 37.601562 L 87.601562 37.5 L 87.699219 37.5 L 87.898438 37.398438 L 8 [...]
+<path style="fill:none;stroke-width:0.7358;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 210.199219 280.300781 L 210.199219 280.800781 L 210.300781 280.898438 L 210.300781 281 L 210.398438 281.101562 L 210.398438 281.398438 L 210.601562 281.601562 L 210.601562 281.699219 L 210.699219 281.800781 L 210.800781 281.898438 L 210.898438 282 L 211 282.101562 L 211.101562 282.199219 L 211.199219 282.199219 L 211.398438 282.398438 L 21 [...]
+<path style="fill:none;stroke-width:0.7358;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 210.199219 282.699219 Z M 210.199219 282.699219 " transform="matrix(1,0,0,-1,-124,320)"/>
+<path style="fill:none;stroke-width:0.7358;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 248.898438 268 Z M 248.898438 268 " transform="matrix(1,0,0,-1,-124,320)"/>
+<path style=" stroke:none;fill-rule:evenodd;fill:rgb(69.802856%,69.802856%,69.802856%);fill-opacity:1;" d="M 88.5 41.101562 L 88.5 40.601562 L 88.601562 40.5 L 88.601562 40.398438 L 88.699219 40.300781 L 88.699219 40.199219 L 88.800781 40.101562 L 88.898438 40 L 88.898438 39.898438 L 89 39.898438 L 89 39.800781 L 89.101562 39.800781 L 89.199219 39.699219 L 89.300781 39.699219 L 89.300781 39.601562 L 89.398438 39.601562 L 89.5 39.5 L 89.601562 39.5 L 89.699219 39.398438 L 97.5 39.398438 L [...]
+<path style="fill:none;stroke-width:0.7358;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 212.5 278.898438 L 212.5 279.398438 L 212.601562 279.5 L 212.601562 279.601562 L 212.699219 279.699219 L 212.699219 279.800781 L 212.800781 279.898438 L 212.898438 280 L 212.898438 280.101562 L 213 280.101562 L 213 280.199219 L 213.101562 280.199219 L 213.199219 280.300781 L 213.300781 280.300781 L 213.300781 280.39 [...]
+<path style="fill:none;stroke-width:0.7358;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 212.5 280.601562 Z M 212.5 280.601562 " transform="matrix(1,0,0,-1,-124,320)"/>
+<path style="fill:none;stroke-width:0.7358;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 222.800781 270.300781 Z M 222.800781 270.300781 " transform="matrix(1,0,0,-1,-124,320)"/>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph0-1" x="91.1" y="49"/>
+</g>
+<path style=" stroke:none;fill-rule:evenodd;fill:rgb(69.802856%,69.802856%,69.802856%);fill-opacity:1;" d="M 100.101562 41.101562 L 100.101562 40.601562 L 100.199219 40.601562 L 100.199219 40.398438 L 100.300781 40.300781 L 100.300781 40.199219 L 100.398438 40.199219 L 100.398438 40.101562 L 100.5 40 L 100.5 39.898438 L 100.601562 39.898438 L 100.601562 39.800781 L 100.699219 39.800781 L 100.800781 39.699219 L 100.898438 39.699219 L 101 39.601562 L 101.101562 39.5 L 101.300781 39.5 L 101 [...]
+<path style="fill:none;stroke-width:0.7358;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 224.101562 278.898438 L 224.101562 279.398438 L 224.199219 279.398438 L 224.199219 279.601562 L 224.300781 279.699219 L 224.300781 279.800781 L 224.398438 279.800781 L 224.398438 279.898438 L 224.5 280 L 224.5 280.101562 L 224.601562 280.101562 L 224.601562 280.199219 L 224.699219 280.199219 L 224.800781 280.300781  [...]
+<path style="fill:none;stroke-width:0.7358;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 224.101562 280.601562 Z M 224.101562 280.601562 " transform="matrix(1,0,0,-1,-124,320)"/>
+<path style="fill:none;stroke-width:0.7358;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 234.5 270.300781 Z M 234.5 270.300781 " transform="matrix(1,0,0,-1,-124,320)"/>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph0-2" x="102.7" y="49"/>
+</g>
+<path style=" stroke:none;fill-rule:evenodd;fill:rgb(69.802856%,69.802856%,69.802856%);fill-opacity:1;" d="M 111.800781 41.101562 L 111.800781 40.601562 L 111.898438 40.5 L 111.898438 40.398438 L 112 40.300781 L 112 40.199219 L 112.101562 40.101562 L 112.199219 40 L 112.199219 39.898438 L 112.300781 39.898438 L 112.300781 39.800781 L 112.398438 39.800781 L 112.5 39.699219 L 112.601562 39.699219 L 112.601562 39.601562 L 112.699219 39.601562 L 112.800781 39.5 L 112.898438 39.5 L 113 39.398 [...]
+<path style="fill:none;stroke-width:0.7358;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 235.800781 278.898438 L 235.800781 279.398438 L 235.898438 279.5 L 235.898438 279.601562 L 236 279.699219 L 236 279.800781 L 236.101562 279.898438 L 236.199219 280 L 236.199219 280.101562 L 236.300781 280.101562 L 236.300781 280.199219 L 236.398438 280.199219 L 236.5 280.300781 L 236.601562 280.300781 L 236.601562 2 [...]
+<path style="fill:none;stroke-width:0.7358;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 235.800781 280.601562 Z M 235.800781 280.601562 " transform="matrix(1,0,0,-1,-124,320)"/>
+<path style="fill:none;stroke-width:0.7358;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 246.101562 270.300781 Z M 246.101562 270.300781 " transform="matrix(1,0,0,-1,-124,320)"/>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph0-3" x="114.4" y="49"/>
+</g>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 217.601562 291.601562 L 217.601562 287.898438 " transform="matrix(1,0,0,-1,-124,320)"/>
+<path style=" stroke:none;fill-rule:evenodd;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 93.601562 37.300781 L 97.199219 31.601562 L 90 31.601562 Z M 93.601562 37.300781 "/>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 217.601562 265.898438 L 217.601562 262.199219 " transform="matrix(1,0,0,-1,-124,320)"/>
+<path style=" stroke:none;fill-rule:evenodd;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 93.601562 63 L 97.199219 57.300781 L 90 57.300781 Z M 93.601562 63 "/>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 210.199219 224.898438 L 170.601562 227.398438 " transform="matrix(1,0,0,-1,-124,320)"/>
+<path style=" stroke:none;fill-rule:evenodd;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 39.398438 92.101562 L 47 97.601562 L 47.601562 87.601562 Z M 39.398438 92.101562 "/>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 209.5 250 L 170 259.300781 " transform="matrix(1,0,0,-1,-124,320)"/>
+<path style=" stroke:none;fill-rule:evenodd;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 38.898438 59.101562 L 45.5 65.800781 L 47.699219 56 Z M 38.898438 59.101562 "/>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 210.199219 275.300781 L 170.199219 269.199219 " transform="matrix(1,0,0,-1,-124,320)"/>
+<path style=" stroke:none;fill-rule:evenodd;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 39 51.898438 L 47.601562 55.601562 L 46.101562 45.800781 Z M 39 51.898438 "/>
+<path style="fill:none;stroke-width:1.4999;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(92.939758%,10.978699%,14.115906%);stroke-opacity:1;stroke-miterlimit:10;" d="M 176.699219 264.300781 C 176.898438 270.898438 178.199219 275.898438 179.699219 275.800781 C 181.199219 275.800781 182.199219 270.699219 182 264.199219 C 181.800781 257.601562 180.5 252.699219 179 252.699219 C 177.398438 252.699219 176.398438 257.800781 176.699219 264.300781 Z M 176.699219 264.300781 " transform="mat [...]
+<path style="fill:none;stroke-width:1.4999;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(92.939758%,10.978699%,14.115906%);stroke-opacity:1;stroke-miterlimit:10;" d="M 176.300781 252.800781 Z M 176.300781 252.800781 " transform="matrix(1,0,0,-1,-124,320)"/>
+<path style="fill:none;stroke-width:1.4999;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(92.939758%,10.978699%,14.115906%);stroke-opacity:1;stroke-miterlimit:10;" d="M 182.398438 275.800781 Z M 182.398438 275.800781 " transform="matrix(1,0,0,-1,-124,320)"/>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 373.800781 253.601562 L 358.398438 253.601562 L 358.398438 282.199219 L 389.101562 282.199219 L 389.101562 253.601562 Z M 373.800781 253.601562 " transform="matrix(1,0,0,-1,-124,320)"/>
+<path style=" stroke:none;fill-rule:evenodd;fill:rgb(69.802856%,69.802856%,69.802856%);fill-opacity:1;" d="M 237.5 42.199219 L 237.5 42.101562 L 237.601562 42 L 237.601562 41.601562 L 237.699219 41.5 L 237.699219 41.398438 L 237.800781 41.398438 L 237.800781 41.300781 L 237.898438 41.199219 L 238 41.101562 L 238 41 L 238.101562 41 L 238.199219 40.898438 L 238.199219 40.800781 L 238.300781 40.800781 L 238.398438 40.699219 L 238.5 40.699219 L 238.601562 40.601562 L 238.800781 40.601562 L 2 [...]
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 361.5 277.800781 L 361.5 277.898438 L 361.601562 278 L 361.601562 278.398438 L 361.699219 278.5 L 361.699219 278.601562 L 361.800781 278.601562 L 361.800781 278.699219 L 361.898438 278.800781 L 362 278.898438 L 362 279 L 362.101562 279 L 362.199219 279.101562 L 362.199219 279.199219 L 362.300781 279.199219 L 362.398 [...]
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 361.5 279.5 Z M 361.5 279.5 " transform="matrix(1,0,0,-1,-124,320)"/>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 371.898438 269.101562 Z M 371.898438 269.101562 " transform="matrix(1,0,0,-1,-124,320)"/>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph0-1" x="240.1" y="50.1"/>
+</g>
+<path style=" stroke:none;fill-rule:evenodd;fill:rgb(69.802856%,69.802856%,69.802856%);fill-opacity:1;" d="M 250.300781 42.199219 L 250.300781 42.101562 L 250.398438 42 L 250.398438 41.699219 L 250.5 41.601562 L 250.5 41.398438 L 250.601562 41.398438 L 250.601562 41.300781 L 250.699219 41.199219 L 250.800781 41.101562 L 250.898438 41 L 251 40.898438 L 251.101562 40.800781 L 251.199219 40.699219 L 251.300781 40.699219 L 251.398438 40.601562 L 251.601562 40.601562 L 251.699219 40.5 L 259.3 [...]
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,65.097046%,36.468506%);stroke-opacity:1;stroke-miterlimit:10;" d="M 374.300781 277.800781 L 374.300781 277.898438 L 374.398438 278 L 374.398438 278.300781 L 374.5 278.398438 L 374.5 278.601562 L 374.601562 278.601562 L 374.601562 278.699219 L 374.699219 278.800781 L 374.800781 278.898438 L 374.898438 279 L 375 279.101562 L 375.101562 279.199219 L 375.199219 279.300781 L 375.300781 279.30078 [...]
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,65.097046%,36.468506%);stroke-opacity:1;stroke-miterlimit:10;" d="M 374.300781 279.5 Z M 374.300781 279.5 " transform="matrix(1,0,0,-1,-124,320)"/>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,65.097046%,36.468506%);stroke-opacity:1;stroke-miterlimit:10;" d="M 384.699219 269.101562 Z M 384.699219 269.101562 " transform="matrix(1,0,0,-1,-124,320)"/>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph0-2" x="252.9" y="50.1"/>
+</g>
+<path style=" stroke:none;fill-rule:evenodd;fill:rgb(69.802856%,69.802856%,69.802856%);fill-opacity:1;" d="M 237.5 55.300781 L 237.5 55.199219 L 237.601562 55 L 237.601562 54.699219 L 237.699219 54.601562 L 237.699219 54.5 L 237.800781 54.5 L 237.800781 54.398438 L 238 54.199219 L 238 54.101562 L 238.101562 54.101562 L 238.199219 54 L 238.199219 53.898438 L 238.300781 53.898438 L 238.398438 53.800781 L 238.5 53.800781 L 238.601562 53.699219 L 238.800781 53.699219 L 238.898438 53.601562 L [...]
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(92.939758%,10.978699%,14.115906%);stroke-opacity:1;stroke-miterlimit:10;" d="M 361.5 264.699219 L 361.5 264.800781 L 361.601562 265 L 361.601562 265.300781 L 361.699219 265.398438 L 361.699219 265.5 L 361.800781 265.5 L 361.800781 265.601562 L 362 265.800781 L 362 265.898438 L 362.101562 265.898438 L 362.199219 266 L 362.199219 266.101562 L 362.300781 266.101562 L 362.398438 266.199219 L 362.5 [...]
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(92.939758%,10.978699%,14.115906%);stroke-opacity:1;stroke-miterlimit:10;" d="M 361.5 266.398438 Z M 361.5 266.398438 " transform="matrix(1,0,0,-1,-124,320)"/>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(92.939758%,10.978699%,14.115906%);stroke-opacity:1;stroke-miterlimit:10;" d="M 371.898438 256 Z M 371.898438 256 " transform="matrix(1,0,0,-1,-124,320)"/>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph0-1" x="240.1" y="63.2"/>
+</g>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 373.800781 216.398438 L 358.398438 216.398438 L 358.398438 245.101562 L 389.101562 245.101562 L 389.101562 216.398438 Z M 373.800781 216.398438 " transform="matrix(1,0,0,-1,-124,320)"/>
+<path style=" stroke:none;fill-rule:evenodd;fill:rgb(69.802856%,69.802856%,69.802856%);fill-opacity:1;" d="M 237.5 79.398438 L 237.5 79.199219 L 237.601562 79.101562 L 237.601562 78.800781 L 237.699219 78.699219 L 237.699219 78.601562 L 237.800781 78.5 L 237.898438 78.398438 L 237.898438 78.300781 L 238 78.199219 L 238.101562 78.101562 L 238.199219 78.101562 L 238.199219 78 L 238.300781 78 L 238.398438 77.898438 L 238.5 77.898438 L 238.601562 77.800781 L 238.699219 77.800781 L 238.800781 [...]
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,65.097046%,36.468506%);stroke-opacity:1;stroke-miterlimit:10;" d="M 361.5 240.601562 L 361.5 240.800781 L 361.601562 240.898438 L 361.601562 241.199219 L 361.699219 241.300781 L 361.699219 241.398438 L 361.800781 241.5 L 361.898438 241.601562 L 361.898438 241.699219 L 362 241.800781 L 362.101562 241.898438 L 362.199219 241.898438 L 362.199219 242 L 362.300781 242 L 362.398438 242.101562 L 3 [...]
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,65.097046%,36.468506%);stroke-opacity:1;stroke-miterlimit:10;" d="M 361.5 242.300781 Z M 361.5 242.300781 " transform="matrix(1,0,0,-1,-124,320)"/>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,65.097046%,36.468506%);stroke-opacity:1;stroke-miterlimit:10;" d="M 371.898438 232 Z M 371.898438 232 " transform="matrix(1,0,0,-1,-124,320)"/>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph0-1" x="240.1" y="87.2"/>
+</g>
+<path style=" stroke:none;fill-rule:evenodd;fill:rgb(69.802856%,69.802856%,69.802856%);fill-opacity:1;" d="M 250.300781 79.398438 L 250.300781 79.199219 L 250.398438 79.101562 L 250.398438 78.898438 L 250.5 78.800781 L 250.5 78.601562 L 250.601562 78.5 L 250.699219 78.398438 L 250.699219 78.300781 L 250.800781 78.199219 L 250.898438 78.199219 L 250.898438 78.101562 L 251 78.101562 L 251.101562 78 L 251.199219 77.898438 L 251.300781 77.898438 L 251.398438 77.800781 L 251.5 77.800781 L 251 [...]
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 374.300781 240.601562 L 374.300781 240.800781 L 374.398438 240.898438 L 374.398438 241.101562 L 374.5 241.199219 L 374.5 241.398438 L 374.601562 241.5 L 374.699219 241.601562 L 374.699219 241.699219 L 374.800781 241.800781 L 374.898438 241.800781 L 374.898438 241.898438 L 375 241.898438 L 375.101562 242 L 375.199219 [...]
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 374.300781 242.300781 Z M 374.300781 242.300781 " transform="matrix(1,0,0,-1,-124,320)"/>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 384.699219 232 Z M 384.699219 232 " transform="matrix(1,0,0,-1,-124,320)"/>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph0-2" x="252.9" y="87.2"/>
+</g>
+<path style=" stroke:none;fill-rule:evenodd;fill:rgb(0%,65.097046%,36.468506%);fill-opacity:1;" d="M 312.5 91.300781 L 312.5 90.898438 L 312.601562 90.800781 L 312.601562 90.5 L 312.699219 90.398438 L 312.699219 90.300781 L 312.800781 90.199219 L 312.800781 90.101562 L 312.898438 89.898438 L 313 89.800781 L 313 89.699219 L 313.101562 89.601562 L 313.199219 89.5 L 313.300781 89.5 L 313.398438 89.398438 L 313.5 89.300781 L 313.601562 89.199219 L 313.699219 89.199219 L 313.800781 89.101562  [...]
+<path style="fill:none;stroke-width:0.7358;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 436.5 228.699219 L 436.5 229.101562 L 436.601562 229.199219 L 436.601562 229.5 L 436.699219 229.601562 L 436.699219 229.699219 L 436.800781 229.800781 L 436.800781 229.898438 L 436.898438 230.101562 L 437 230.199219 L 437 230.300781 L 437.101562 230.398438 L 437.199219 230.5 L 437.300781 230.5 L 437.398438 230.601562 L 437.5 230.699219 L 4 [...]
+<path style="fill:none;stroke-width:0.7358;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 436.5 231.199219 Z M 436.5 231.199219 " transform="matrix(1,0,0,-1,-124,320)"/>
+<path style="fill:none;stroke-width:0.7358;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 475.199219 216.5 Z M 475.199219 216.5 " transform="matrix(1,0,0,-1,-124,320)"/>
+<path style=" stroke:none;fill-rule:evenodd;fill:rgb(69.802856%,69.802856%,69.802856%);fill-opacity:1;" d="M 314.800781 92.601562 L 314.800781 92.199219 L 314.898438 92.101562 L 314.898438 91.898438 L 315 91.800781 L 315.101562 91.699219 L 315.101562 91.601562 L 315.199219 91.601562 L 315.199219 91.5 L 315.5 91.199219 L 315.601562 91.199219 L 315.800781 91 L 316.101562 91 L 316.101562 90.898438 L 323.800781 90.898438 L 323.800781 91 L 324.101562 91 L 324.199219 91.101562 L 324.300781 91. [...]
+<path style="fill:none;stroke-width:0.7358;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,65.097046%,36.468506%);stroke-opacity:1;stroke-miterlimit:10;" d="M 438.800781 227.398438 L 438.800781 227.800781 L 438.898438 227.898438 L 438.898438 228.101562 L 439 228.199219 L 439.101562 228.300781 L 439.101562 228.398438 L 439.199219 228.398438 L 439.199219 228.5 L 439.5 228.800781 L 439.601562 228.800781 L 439.800781 229 L 440.101562 229 L 440.101562 229.101562 L 447.800781 229.10156 [...]
+<path style="fill:none;stroke-width:0.7358;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,65.097046%,36.468506%);stroke-opacity:1;stroke-miterlimit:10;" d="M 438.800781 229.101562 Z M 438.800781 229.101562 " transform="matrix(1,0,0,-1,-124,320)"/>
+<path style="fill:none;stroke-width:0.7358;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,65.097046%,36.468506%);stroke-opacity:1;stroke-miterlimit:10;" d="M 449.101562 218.699219 Z M 449.101562 218.699219 " transform="matrix(1,0,0,-1,-124,320)"/>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph0-1" x="317.4" y="100.5"/>
+</g>
+<path style=" stroke:none;fill-rule:evenodd;fill:rgb(69.802856%,69.802856%,69.802856%);fill-opacity:1;" d="M 326.398438 92.601562 L 326.398438 92.300781 L 326.5 92.199219 L 326.5 91.898438 L 326.601562 91.800781 L 326.699219 91.699219 L 326.699219 91.601562 L 326.800781 91.601562 L 326.898438 91.5 L 326.898438 91.398438 L 327 91.398438 L 327 91.300781 L 327.101562 91.199219 L 327.199219 91.199219 L 327.300781 91.101562 L 327.398438 91 L 327.699219 91 L 327.800781 90.898438 L 335.398438 9 [...]
+<path style="fill:none;stroke-width:0.7358;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,65.097046%,36.468506%);stroke-opacity:1;stroke-miterlimit:10;" d="M 450.398438 227.398438 L 450.398438 227.699219 L 450.5 227.800781 L 450.5 228.101562 L 450.601562 228.199219 L 450.699219 228.300781 L 450.699219 228.398438 L 450.800781 228.398438 L 450.898438 228.5 L 450.898438 228.601562 L 451 228.601562 L 451 228.699219 L 451.101562 228.800781 L 451.199219 228.800781 L 451.300781 228.898 [...]
+<path style="fill:none;stroke-width:0.7358;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,65.097046%,36.468506%);stroke-opacity:1;stroke-miterlimit:10;" d="M 450.398438 229.101562 Z M 450.398438 229.101562 " transform="matrix(1,0,0,-1,-124,320)"/>
+<path style="fill:none;stroke-width:0.7358;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,65.097046%,36.468506%);stroke-opacity:1;stroke-miterlimit:10;" d="M 460.800781 218.699219 Z M 460.800781 218.699219 " transform="matrix(1,0,0,-1,-124,320)"/>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph0-2" x="329.1" y="100.5"/>
+</g>
+<path style=" stroke:none;fill-rule:evenodd;fill:rgb(69.802856%,69.802856%,69.802856%);fill-opacity:1;" d="M 338.101562 92.601562 L 338.101562 92.199219 L 338.199219 92.101562 L 338.199219 91.898438 L 338.300781 91.800781 L 338.398438 91.699219 L 338.398438 91.601562 L 338.5 91.601562 L 338.5 91.5 L 338.800781 91.199219 L 338.898438 91.199219 L 339 91.101562 L 339.101562 91 L 339.398438 91 L 339.398438 90.898438 L 347.101562 90.898438 L 347.101562 91 L 347.398438 91 L 347.5 91.101562 L 3 [...]
+<path style="fill:none;stroke-width:0.7358;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,65.097046%,36.468506%);stroke-opacity:1;stroke-miterlimit:10;" d="M 462.101562 227.398438 L 462.101562 227.800781 L 462.199219 227.898438 L 462.199219 228.101562 L 462.300781 228.199219 L 462.398438 228.300781 L 462.398438 228.398438 L 462.5 228.398438 L 462.5 228.5 L 462.800781 228.800781 L 462.898438 228.800781 L 463 228.898438 L 463.101562 229 L 463.398438 229 L 463.398438 229.101562 L 4 [...]
+<path style="fill:none;stroke-width:0.7358;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,65.097046%,36.468506%);stroke-opacity:1;stroke-miterlimit:10;" d="M 462.101562 229.101562 Z M 462.101562 229.101562 " transform="matrix(1,0,0,-1,-124,320)"/>
+<path style="fill:none;stroke-width:0.7358;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,65.097046%,36.468506%);stroke-opacity:1;stroke-miterlimit:10;" d="M 472.5 218.699219 Z M 472.5 218.699219 " transform="matrix(1,0,0,-1,-124,320)"/>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph0-3" x="340.7" y="100.5"/>
+</g>
+<path style=" stroke:none;fill-rule:evenodd;fill:rgb(69.802856%,69.802856%,69.802856%);fill-opacity:1;" d="M 237.5 92.199219 L 237.5 92 L 237.601562 91.898438 L 237.601562 91.601562 L 237.699219 91.5 L 237.699219 91.398438 L 237.800781 91.300781 L 237.898438 91.199219 L 237.898438 91.101562 L 238.101562 90.898438 L 238.199219 90.898438 L 238.199219 90.800781 L 238.300781 90.800781 L 238.398438 90.699219 L 238.5 90.699219 L 238.601562 90.601562 L 238.699219 90.601562 L 238.800781 90.5 L 2 [...]
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(92.939758%,10.978699%,14.115906%);stroke-opacity:1;stroke-miterlimit:10;" d="M 361.5 227.800781 L 361.5 228 L 361.601562 228.101562 L 361.601562 228.398438 L 361.699219 228.5 L 361.699219 228.601562 L 361.800781 228.699219 L 361.898438 228.800781 L 361.898438 228.898438 L 362.101562 229.101562 L 362.199219 229.101562 L 362.199219 229.199219 L 362.300781 229.199219 L 362.398438 229.300781 L 362 [...]
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(92.939758%,10.978699%,14.115906%);stroke-opacity:1;stroke-miterlimit:10;" d="M 361.5 229.5 Z M 361.5 229.5 " transform="matrix(1,0,0,-1,-124,320)"/>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(92.939758%,10.978699%,14.115906%);stroke-opacity:1;stroke-miterlimit:10;" d="M 371.898438 219.101562 Z M 371.898438 219.101562 " transform="matrix(1,0,0,-1,-124,320)"/>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph0-2" x="240.1" y="100.1"/>
+</g>
+<path style=" stroke:none;fill-rule:evenodd;fill:rgb(69.802856%,69.802856%,69.802856%);fill-opacity:1;" d="M 250.300781 55.300781 L 250.300781 55.199219 L 250.398438 55 L 250.398438 54.800781 L 250.5 54.699219 L 250.5 54.5 L 250.601562 54.5 L 250.601562 54.398438 L 251.199219 53.800781 L 251.300781 53.800781 L 251.398438 53.699219 L 251.601562 53.699219 L 251.699219 53.601562 L 259.300781 53.601562 L 259.398438 53.699219 L 259.699219 53.699219 L 259.898438 53.898438 L 260 53.898438 L 260 [...]
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 374.300781 264.699219 L 374.300781 264.800781 L 374.398438 265 L 374.398438 265.199219 L 374.5 265.300781 L 374.5 265.5 L 374.601562 265.5 L 374.601562 265.601562 L 375.199219 266.199219 L 375.300781 266.199219 L 375.398438 266.300781 L 375.601562 266.300781 L 375.699219 266.398438 L 383.300781 266.398438 L 383.3984 [...]
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 374.300781 266.398438 Z M 374.300781 266.398438 " transform="matrix(1,0,0,-1,-124,320)"/>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 384.699219 256 Z M 384.699219 256 " transform="matrix(1,0,0,-1,-124,320)"/>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph0-3" x="252.9" y="63.2"/>
+</g>
+<path style=" stroke:none;fill-rule:evenodd;fill:rgb(69.802856%,69.802856%,69.802856%);fill-opacity:1;" d="M 250.300781 92.199219 L 250.300781 92 L 250.398438 91.898438 L 250.398438 91.699219 L 250.5 91.601562 L 250.5 91.398438 L 250.601562 91.300781 L 250.699219 91.199219 L 250.699219 91.101562 L 250.800781 91 L 250.898438 91 L 250.898438 90.898438 L 251 90.898438 L 251.101562 90.800781 L 251.199219 90.699219 L 251.300781 90.699219 L 251.398438 90.601562 L 251.5 90.601562 L 251.601562 9 [...]
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,65.097046%,36.468506%);stroke-opacity:1;stroke-miterlimit:10;" d="M 374.300781 227.800781 L 374.300781 228 L 374.398438 228.101562 L 374.398438 228.300781 L 374.5 228.398438 L 374.5 228.601562 L 374.601562 228.699219 L 374.699219 228.800781 L 374.699219 228.898438 L 374.800781 229 L 374.898438 229 L 374.898438 229.101562 L 375 229.101562 L 375.101562 229.199219 L 375.199219 229.300781 L 375 [...]
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,65.097046%,36.468506%);stroke-opacity:1;stroke-miterlimit:10;" d="M 374.300781 229.5 Z M 374.300781 229.5 " transform="matrix(1,0,0,-1,-124,320)"/>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,65.097046%,36.468506%);stroke-opacity:1;stroke-miterlimit:10;" d="M 384.699219 219.101562 Z M 384.699219 219.101562 " transform="matrix(1,0,0,-1,-124,320)"/>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph0-3" x="252.9" y="100.1"/>
+</g>
+<path style=" stroke:none;fill-rule:evenodd;fill:rgb(20.391846%,39.605713%,64.312744%);fill-opacity:1;" d="M 312.5 40 L 312.5 39.601562 L 312.601562 39.5 L 312.601562 39.199219 L 312.699219 39.101562 L 312.699219 39 L 312.800781 38.898438 L 312.800781 38.800781 L 312.898438 38.699219 L 313 38.5 L 313.5 38 L 313.601562 38 L 313.699219 37.898438 L 313.800781 37.800781 L 314 37.800781 L 314.101562 37.699219 L 314.199219 37.699219 L 314.300781 37.601562 L 349.398438 37.601562 L 349.5 37.6992 [...]
+<path style="fill:none;stroke-width:0.7358;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 436.5 280 L 436.5 280.398438 L 436.601562 280.5 L 436.601562 280.800781 L 436.699219 280.898438 L 436.699219 281 L 436.800781 281.101562 L 436.800781 281.199219 L 436.898438 281.300781 L 437 281.5 L 437.5 282 L 437.601562 282 L 437.699219 282.101562 L 437.800781 282.199219 L 438 282.199219 L 438.101562 282.300781 L 438.199219 282.300781 L  [...]
+<path style="fill:none;stroke-width:0.7358;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 436.5 282.398438 Z M 436.5 282.398438 " transform="matrix(1,0,0,-1,-124,320)"/>
+<path style="fill:none;stroke-width:0.7358;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 475.199219 267.699219 Z M 475.199219 267.699219 " transform="matrix(1,0,0,-1,-124,320)"/>
+<path style=" stroke:none;fill-rule:evenodd;fill:rgb(69.802856%,69.802856%,69.802856%);fill-opacity:1;" d="M 314.800781 41.398438 L 314.800781 40.898438 L 314.898438 40.800781 L 314.898438 40.601562 L 315 40.601562 L 315 40.5 L 315.101562 40.398438 L 315.101562 40.300781 L 315.199219 40.300781 L 315.199219 40.199219 L 315.300781 40.101562 L 315.398438 40 L 315.5 40 L 315.601562 39.898438 L 315.699219 39.898438 L 315.699219 39.800781 L 315.800781 39.800781 L 315.898438 39.699219 L 316.199 [...]
+<path style="fill:none;stroke-width:0.7358;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 438.800781 278.601562 L 438.800781 279.101562 L 438.898438 279.199219 L 438.898438 279.398438 L 439 279.398438 L 439 279.5 L 439.101562 279.601562 L 439.101562 279.699219 L 439.199219 279.699219 L 439.199219 279.800781 L 439.300781 279.898438 L 439.398438 280 L 439.5 280 L 439.601562 280.101562 L 439.699219 280.1015 [...]
+<path style="fill:none;stroke-width:0.7358;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 438.800781 280.398438 Z M 438.800781 280.398438 " transform="matrix(1,0,0,-1,-124,320)"/>
+<path style="fill:none;stroke-width:0.7358;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 449.101562 270 Z M 449.101562 270 " transform="matrix(1,0,0,-1,-124,320)"/>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph0-1" x="317.4" y="49.2"/>
+</g>
+<path style=" stroke:none;fill-rule:evenodd;fill:rgb(69.802856%,69.802856%,69.802856%);fill-opacity:1;" d="M 326.398438 41.398438 L 326.398438 41 L 326.5 40.898438 L 326.5 40.601562 L 326.601562 40.601562 L 326.601562 40.5 L 326.699219 40.398438 L 326.699219 40.300781 L 326.800781 40.300781 L 326.898438 40.199219 L 326.898438 40.101562 L 327 40.101562 L 327 40 L 327.101562 40 L 327.199219 39.898438 L 327.300781 39.898438 L 327.300781 39.800781 L 327.398438 39.800781 L 327.5 39.699219 L 3 [...]
+<path style="fill:none;stroke-width:0.7358;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 450.398438 278.601562 L 450.398438 279 L 450.5 279.101562 L 450.5 279.398438 L 450.601562 279.398438 L 450.601562 279.5 L 450.699219 279.601562 L 450.699219 279.699219 L 450.800781 279.699219 L 450.898438 279.800781 L 450.898438 279.898438 L 451 279.898438 L 451 280 L 451.101562 280 L 451.199219 280.101562 L 451.300 [...]
+<path style="fill:none;stroke-width:0.7358;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 450.398438 280.398438 Z M 450.398438 280.398438 " transform="matrix(1,0,0,-1,-124,320)"/>
+<path style="fill:none;stroke-width:0.7358;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 460.800781 270 Z M 460.800781 270 " transform="matrix(1,0,0,-1,-124,320)"/>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph0-2" x="329.1" y="49.2"/>
+</g>
+<path style=" stroke:none;fill-rule:evenodd;fill:rgb(69.802856%,69.802856%,69.802856%);fill-opacity:1;" d="M 338.101562 41.398438 L 338.101562 40.898438 L 338.199219 40.800781 L 338.199219 40.601562 L 338.300781 40.601562 L 338.300781 40.5 L 338.398438 40.398438 L 338.398438 40.300781 L 338.5 40.300781 L 338.5 40.199219 L 338.601562 40.101562 L 338.699219 40 L 338.800781 40 L 338.898438 39.898438 L 339 39.898438 L 339 39.800781 L 339.101562 39.800781 L 339.199219 39.699219 L 339.5 39.699 [...]
+<path style="fill:none;stroke-width:0.7358;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 462.101562 278.601562 L 462.101562 279.101562 L 462.199219 279.199219 L 462.199219 279.398438 L 462.300781 279.398438 L 462.300781 279.5 L 462.398438 279.601562 L 462.398438 279.699219 L 462.5 279.699219 L 462.5 279.800781 L 462.601562 279.898438 L 462.699219 280 L 462.800781 280 L 462.898438 280.101562 L 463 280.10 [...]
+<path style="fill:none;stroke-width:0.7358;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 462.101562 280.398438 Z M 462.101562 280.398438 " transform="matrix(1,0,0,-1,-124,320)"/>
+<path style="fill:none;stroke-width:0.7358;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 472.5 270 Z M 472.5 270 " transform="matrix(1,0,0,-1,-124,320)"/>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph0-3" x="340.7" y="49.2"/>
+</g>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 443.898438 291.398438 L 443.898438 287.699219 " transform="matrix(1,0,0,-1,-124,320)"/>
+<path style=" stroke:none;fill-rule:evenodd;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 319.898438 37.601562 L 323.5 31.898438 L 316.300781 31.898438 Z M 319.898438 37.601562 "/>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 443.898438 265.699219 L 443.898438 261.898438 " transform="matrix(1,0,0,-1,-124,320)"/>
+<path style=" stroke:none;fill-rule:evenodd;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 319.898438 63.300781 L 323.5 57.601562 L 316.300781 57.601562 Z M 319.898438 63.300781 "/>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 456 240.101562 L 456 236.398438 " transform="matrix(1,0,0,-1,-124,320)"/>
+<path style=" stroke:none;fill-rule:evenodd;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 332 88.800781 L 335.601562 83.101562 L 328.398438 83.101562 Z M 332 88.800781 "/>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 436.5 275 L 396.5 275 " transform="matrix(1,0,0,-1,-124,320)"/>
+<path style=" stroke:none;fill-rule:evenodd;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 265.199219 45 L 273.101562 49.898438 L 273.101562 40 Z M 265.199219 45 "/>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 436.601562 275 L 395 243.699219 " transform="matrix(1,0,0,-1,-124,320)"/>
+<path style=" stroke:none;fill-rule:evenodd;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 265.199219 80.699219 L 274.5 79.898438 L 268.5 71.898438 Z M 265.199219 80.699219 "/>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 435.601562 247.898438 L 396.101562 234.5 " transform="matrix(1,0,0,-1,-124,320)"/>
+<path style=" stroke:none;fill-rule:evenodd;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 265.199219 87.898438 L 274.300781 90.101562 L 271.101562 80.601562 Z M 265.199219 87.898438 "/>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 435.601562 247 L 395.800781 265.101562 " transform="matrix(1,0,0,-1,-124,320)"/>
+<path style=" stroke:none;fill-rule:evenodd;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 265.199219 51.898438 L 270.398438 59.699219 L 274.5 50.699219 Z M 265.199219 51.898438 "/>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 437.601562 224.898438 L 395 256.601562 " transform="matrix(1,0,0,-1,-124,320)"/>
+<path style=" stroke:none;fill-rule:evenodd;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 265.199219 59.101562 L 268.601562 67.898438 L 274.5 59.800781 Z M 265.199219 59.101562 "/>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 437.601562 224.898438 L 396.5 224.898438 " transform="matrix(1,0,0,-1,-124,320)"/>
+<path style=" stroke:none;fill-rule:evenodd;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 265.199219 95.101562 L 273.199219 100.101562 L 273.199219 90.101562 Z M 265.199219 95.101562 "/>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 455.199219 291.398438 L 455.199219 287.699219 " transform="matrix(1,0,0,-1,-124,320)"/>
+<path style=" stroke:none;fill-rule:evenodd;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 331.199219 37.601562 L 334.800781 31.898438 L 327.699219 31.898438 Z M 331.199219 37.601562 "/>
+<path style=" stroke:none;fill-rule:evenodd;fill:rgb(92.939758%,10.978699%,14.115906%);fill-opacity:1;" d="M 86.199219 65.398438 L 86.199219 64.898438 L 86.300781 64.800781 L 86.300781 64.699219 L 86.398438 64.601562 L 86.398438 64.300781 L 86.5 64.199219 L 86.601562 64.101562 L 86.601562 64 L 86.699219 63.898438 L 86.800781 63.800781 L 86.898438 63.699219 L 87 63.601562 L 87.101562 63.601562 L 87.199219 63.5 L 87.300781 63.398438 L 87.398438 63.398438 L 87.5 63.300781 L 87.601562 63.199 [...]
+<path style="fill:none;stroke-width:0.7358;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 210.199219 254.601562 L 210.199219 255.101562 L 210.300781 255.199219 L 210.300781 255.300781 L 210.398438 255.398438 L 210.398438 255.699219 L 210.5 255.800781 L 210.601562 255.898438 L 210.601562 256 L 210.699219 256.101562 L 210.800781 256.199219 L 210.898438 256.300781 L 211 256.398438 L 211.101562 256.398438 L 211.199219 256.5 L 211.3 [...]
+<path style="fill:none;stroke-width:0.7358;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 210.199219 257 Z M 210.199219 257 " transform="matrix(1,0,0,-1,-124,320)"/>
+<path style="fill:none;stroke-width:0.7358;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 236.601562 242.300781 Z M 236.601562 242.300781 " transform="matrix(1,0,0,-1,-124,320)"/>
+<path style=" stroke:none;fill-rule:evenodd;fill:rgb(69.802856%,69.802856%,69.802856%);fill-opacity:1;" d="M 88.5 66.800781 L 88.5 66.300781 L 88.601562 66.199219 L 88.601562 66.101562 L 88.699219 66 L 88.699219 65.898438 L 88.800781 65.800781 L 88.898438 65.699219 L 88.898438 65.601562 L 89 65.601562 L 89 65.5 L 89.101562 65.5 L 89.199219 65.398438 L 89.300781 65.398438 L 89.300781 65.300781 L 89.398438 65.300781 L 89.5 65.199219 L 89.601562 65.199219 L 89.699219 65.101562 L 97.5 65.101 [...]
+<path style="fill:none;stroke-width:0.7358;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(92.939758%,10.978699%,14.115906%);stroke-opacity:1;stroke-miterlimit:10;" d="M 212.5 253.199219 L 212.5 253.699219 L 212.601562 253.800781 L 212.601562 253.898438 L 212.699219 254 L 212.699219 254.101562 L 212.800781 254.199219 L 212.898438 254.300781 L 212.898438 254.398438 L 213 254.398438 L 213 254.5 L 213.101562 254.5 L 213.199219 254.601562 L 213.300781 254.601562 L 213.300781 254.699219  [...]
+<path style="fill:none;stroke-width:0.7358;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(92.939758%,10.978699%,14.115906%);stroke-opacity:1;stroke-miterlimit:10;" d="M 212.5 254.898438 Z M 212.5 254.898438 " transform="matrix(1,0,0,-1,-124,320)"/>
+<path style="fill:none;stroke-width:0.7358;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(92.939758%,10.978699%,14.115906%);stroke-opacity:1;stroke-miterlimit:10;" d="M 222.800781 244.5 Z M 222.800781 244.5 " transform="matrix(1,0,0,-1,-124,320)"/>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph0-1" x="91.1" y="74.7"/>
+</g>
+<path style=" stroke:none;fill-rule:evenodd;fill:rgb(69.802856%,69.802856%,69.802856%);fill-opacity:1;" d="M 100.101562 66.800781 L 100.101562 66.398438 L 100.199219 66.300781 L 100.199219 66.101562 L 100.300781 66 L 100.300781 65.898438 L 100.398438 65.898438 L 100.398438 65.800781 L 100.5 65.699219 L 100.5 65.601562 L 100.601562 65.601562 L 100.601562 65.5 L 100.699219 65.5 L 100.800781 65.398438 L 100.898438 65.398438 L 101 65.300781 L 101.101562 65.199219 L 101.300781 65.199219 L 101 [...]
+<path style="fill:none;stroke-width:0.7358;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(92.939758%,10.978699%,14.115906%);stroke-opacity:1;stroke-miterlimit:10;" d="M 224.101562 253.199219 L 224.101562 253.601562 L 224.199219 253.699219 L 224.199219 253.898438 L 224.300781 254 L 224.300781 254.101562 L 224.398438 254.101562 L 224.398438 254.199219 L 224.5 254.300781 L 224.5 254.398438 L 224.601562 254.398438 L 224.601562 254.5 L 224.699219 254.5 L 224.800781 254.601562 L 224.8984 [...]
+<path style="fill:none;stroke-width:0.7358;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(92.939758%,10.978699%,14.115906%);stroke-opacity:1;stroke-miterlimit:10;" d="M 224.101562 254.898438 Z M 224.101562 254.898438 " transform="matrix(1,0,0,-1,-124,320)"/>
+<path style="fill:none;stroke-width:0.7358;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(92.939758%,10.978699%,14.115906%);stroke-opacity:1;stroke-miterlimit:10;" d="M 234.5 244.5 Z M 234.5 244.5 " transform="matrix(1,0,0,-1,-124,320)"/>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph0-2" x="102.7" y="74.7"/>
+</g>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 217.601562 240 L 217.601562 236.300781 " transform="matrix(1,0,0,-1,-124,320)"/>
+<path style=" stroke:none;fill-rule:evenodd;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 93.601562 88.898438 L 97.199219 83.199219 L 90 83.199219 Z M 93.601562 88.898438 "/>
+<path style=" stroke:none;fill-rule:evenodd;fill:rgb(92.939758%,10.978699%,14.115906%);fill-opacity:1;" d="M 312.5 65.699219 L 312.5 65.300781 L 312.601562 65.199219 L 312.601562 64.898438 L 312.699219 64.800781 L 312.699219 64.699219 L 312.800781 64.601562 L 312.800781 64.5 L 312.898438 64.398438 L 313 64.300781 L 313 64.199219 L 313.101562 64.101562 L 313.199219 64 L 313.5 63.699219 L 313.601562 63.699219 L 313.800781 63.5 L 314 63.5 L 314.101562 63.398438 L 314.300781 63.398438 L 314. [...]
+<path style="fill:none;stroke-width:0.7358;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 436.5 254.300781 L 436.5 254.699219 L 436.601562 254.800781 L 436.601562 255.101562 L 436.699219 255.199219 L 436.699219 255.300781 L 436.800781 255.398438 L 436.800781 255.5 L 436.898438 255.601562 L 437 255.699219 L 437 255.800781 L 437.101562 255.898438 L 437.199219 256 L 437.5 256.300781 L 437.601562 256.300781 L 437.800781 256.5 L 438 [...]
+<path style="fill:none;stroke-width:0.7358;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 436.5 256.699219 Z M 436.5 256.699219 " transform="matrix(1,0,0,-1,-124,320)"/>
+<path style="fill:none;stroke-width:0.7358;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 462.898438 242 Z M 462.898438 242 " transform="matrix(1,0,0,-1,-124,320)"/>
+<path style=" stroke:none;fill-rule:evenodd;fill:rgb(69.802856%,69.802856%,69.802856%);fill-opacity:1;" d="M 314.800781 67.101562 L 314.800781 66.601562 L 314.898438 66.5 L 314.898438 66.398438 L 315 66.300781 L 315 66.199219 L 315.101562 66.101562 L 315.101562 66 L 315.199219 66 L 315.199219 65.898438 L 315.300781 65.800781 L 315.398438 65.699219 L 315.5 65.699219 L 315.601562 65.601562 L 315.699219 65.601562 L 315.699219 65.5 L 315.800781 65.5 L 315.898438 65.398438 L 316.199219 65.398 [...]
+<path style="fill:none;stroke-width:0.7358;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(92.939758%,10.978699%,14.115906%);stroke-opacity:1;stroke-miterlimit:10;" d="M 438.800781 252.898438 L 438.800781 253.398438 L 438.898438 253.5 L 438.898438 253.601562 L 439 253.699219 L 439 253.800781 L 439.101562 253.898438 L 439.101562 254 L 439.199219 254 L 439.199219 254.101562 L 439.300781 254.199219 L 439.398438 254.300781 L 439.5 254.300781 L 439.601562 254.398438 L 439.699219 254.3984 [...]
+<path style="fill:none;stroke-width:0.7358;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(92.939758%,10.978699%,14.115906%);stroke-opacity:1;stroke-miterlimit:10;" d="M 438.800781 254.699219 Z M 438.800781 254.699219 " transform="matrix(1,0,0,-1,-124,320)"/>
+<path style="fill:none;stroke-width:0.7358;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(92.939758%,10.978699%,14.115906%);stroke-opacity:1;stroke-miterlimit:10;" d="M 449.101562 244.300781 Z M 449.101562 244.300781 " transform="matrix(1,0,0,-1,-124,320)"/>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph0-1" x="317.4" y="74.9"/>
+</g>
+<path style=" stroke:none;fill-rule:evenodd;fill:rgb(69.802856%,69.802856%,69.802856%);fill-opacity:1;" d="M 326.398438 67.101562 L 326.398438 66.699219 L 326.5 66.601562 L 326.5 66.398438 L 326.601562 66.300781 L 326.601562 66.199219 L 326.699219 66.101562 L 326.699219 66 L 326.800781 66 L 326.898438 65.898438 L 326.898438 65.800781 L 327 65.800781 L 327 65.699219 L 327.101562 65.699219 L 327.199219 65.601562 L 327.300781 65.601562 L 327.300781 65.5 L 327.398438 65.5 L 327.5 65.398438 L [...]
+<path style="fill:none;stroke-width:0.7358;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(92.939758%,10.978699%,14.115906%);stroke-opacity:1;stroke-miterlimit:10;" d="M 450.398438 252.898438 L 450.398438 253.300781 L 450.5 253.398438 L 450.5 253.601562 L 450.601562 253.699219 L 450.601562 253.800781 L 450.699219 253.898438 L 450.699219 254 L 450.800781 254 L 450.898438 254.101562 L 450.898438 254.199219 L 451 254.199219 L 451 254.300781 L 451.101562 254.300781 L 451.199219 254.3984 [...]
+<path style="fill:none;stroke-width:0.7358;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(92.939758%,10.978699%,14.115906%);stroke-opacity:1;stroke-miterlimit:10;" d="M 450.398438 254.699219 Z M 450.398438 254.699219 " transform="matrix(1,0,0,-1,-124,320)"/>
+<path style="fill:none;stroke-width:0.7358;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(92.939758%,10.978699%,14.115906%);stroke-opacity:1;stroke-miterlimit:10;" d="M 460.800781 244.300781 Z M 460.800781 244.300781 " transform="matrix(1,0,0,-1,-124,320)"/>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph0-2" x="329.1" y="74.9"/>
+</g>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 455.199219 265.300781 L 455.199219 261.601562 " transform="matrix(1,0,0,-1,-124,320)"/>
+<path style=" stroke:none;fill-rule:evenodd;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 331.199219 63.601562 L 334.800781 57.898438 L 327.699219 57.898438 Z M 331.199219 63.601562 "/>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 444.199219 239.699219 L 444.199219 236 " transform="matrix(1,0,0,-1,-124,320)"/>
+<path style=" stroke:none;fill-rule:evenodd;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 320.199219 89.199219 L 323.699219 83.5 L 316.601562 83.5 Z M 320.199219 89.199219 "/>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph1-1" x="0.1" y="15.4"/>
+  <use xlink:href="#glyph1-2" x="7.1" y="15.4"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph1-3" x="10.894" y="15.4"/>
+  <use xlink:href="#glyph1-4" x="18.678" y="15.4"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph1-5" x="23.368" y="15.4"/>
+  <use xlink:href="#glyph1-6" x="31.152" y="15.4"/>
+  <use xlink:href="#glyph1-7" x="38.936" y="15.4"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph1-1" x="4" y="31.1"/>
+  <use xlink:href="#glyph1-7" x="11" y="31.1"/>
+  <use xlink:href="#glyph1-4" x="18.784" y="31.1"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph1-8" x="23.474" y="31.1"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph1-7" x="30.376" y="31.1"/>
+  <use xlink:href="#glyph1-4" x="38.16" y="31.1"/>
+</g>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 217.601562 291.601562 L 219.300781 292.398438 " transform="matrix(1,0,0,-1,-124,320)"/>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 221.101562 293.300781 L 222.898438 294.101562 " transform="matrix(1,0,0,-1,-124,320)"/>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 224.699219 294.898438 L 226.398438 295.800781 " transform="matrix(1,0,0,-1,-124,320)"/>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 228.199219 296.601562 L 230 297.398438 " transform="matrix(1,0,0,-1,-124,320)"/>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 231.800781 298.199219 L 233.5 299.101562 " transform="matrix(1,0,0,-1,-124,320)"/>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 235.300781 299.898438 L 237.101562 300.699219 " transform="matrix(1,0,0,-1,-124,320)"/>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph1-4" x="119.8" y="10.5"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph1-7" x="124.49" y="10.5"/>
+  <use xlink:href="#glyph1-5" x="132.274" y="10.5"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph1-9" x="139.974" y="10.5"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph1-10" x="147.856" y="10.5"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph1-11" x="119.8" y="26.1"/>
+  <use xlink:href="#glyph1-3" x="127.584" y="26.1"/>
+  <use xlink:href="#glyph1-1" x="135.368" y="26.1"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph1-12" x="142.27" y="26.1"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph1-2" x="145.462" y="26.1"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph1-12" x="149.256" y="26.1"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph1-3" x="152.35" y="26.1"/>
+  <use xlink:href="#glyph1-13" x="160.134" y="26.1"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph1-4" x="346.9" y="10.5"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph1-7" x="351.59" y="10.5"/>
+  <use xlink:href="#glyph1-5" x="359.374" y="10.5"/>
+  <use xlink:href="#glyph1-9" x="367.158" y="10.5"/>
+  <use xlink:href="#glyph1-10" x="374.942" y="10.5"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph1-11" x="346.9" y="26.1"/>
+  <use xlink:href="#glyph1-3" x="354.684" y="26.1"/>
+  <use xlink:href="#glyph1-1" x="362.468" y="26.1"/>
+  <use xlink:href="#glyph1-12" x="369.468" y="26.1"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph1-2" x="372.562" y="26.1"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph1-12" x="376.356" y="26.1"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph1-3" x="379.45" y="26.1"/>
+  <use xlink:href="#glyph1-13" x="387.234" y="26.1"/>
+  <use xlink:href="#glyph1-1" x="395.018" y="26.1"/>
+</g>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 444.699219 291.398438 L 446.398438 292.398438 " transform="matrix(1,0,0,-1,-124,320)"/>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 448 293.398438 L 449.699219 294.398438 " transform="matrix(1,0,0,-1,-124,320)"/>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 451.398438 295.398438 L 453.101562 296.398438 " transform="matrix(1,0,0,-1,-124,320)"/>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 454.699219 297.398438 L 456.398438 298.5 " transform="matrix(1,0,0,-1,-124,320)"/>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 458.101562 299.5 L 459.800781 300.5 " transform="matrix(1,0,0,-1,-124,320)"/>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 461.398438 301.5 L 463.101562 302.5 " transform="matrix(1,0,0,-1,-124,320)"/>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 464.800781 303.5 L 465.300781 303.800781 " transform="matrix(1,0,0,-1,-124,320)"/>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 455.199219 291.398438 L 456.5 292.898438 " transform="matrix(1,0,0,-1,-124,320)"/>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 457.699219 294.398438 L 458.898438 295.898438 " transform="matrix(1,0,0,-1,-124,320)"/>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 460.101562 297.398438 L 461.398438 299 " transform="matrix(1,0,0,-1,-124,320)"/>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 462.601562 300.5 L 463.898438 302 " transform="matrix(1,0,0,-1,-124,320)"/>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 465.101562 303.5 L 465.300781 303.800781 " transform="matrix(1,0,0,-1,-124,320)"/>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 259.800781 282.5 C 261.601562 282.5 263.398438 279.800781 263.398438 277.101562 L 263.398438 255.5 C 263.398438 252.800781 265.199219 250.101562 267.101562 250.101562 C 265.199219 250.101562 263.398438 247.398438 263.398438 244.699219 L 263.398438 223.101562 C 263.398438 220.398438 261.601562 217.699219 259.800781 2 [...]
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 259.800781 282.5 Z M 259.800781 282.5 " transform="matrix(1,0,0,-1,-124,320)"/>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 267.101562 217.699219 Z M 267.101562 217.699219 " transform="matrix(1,0,0,-1,-124,320)"/>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph1-14" x="147.3" y="74.2"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph1-12" x="151.094" y="74.2"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph1-15" x="154.188" y="74.2"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph1-7" x="157.38" y="74.2"/>
+  <use xlink:href="#glyph1-1" x="165.164" y="74.2"/>
+</g>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 321.300781 318.5 L 321.300781 316.5 " transform="matrix(1,0,0,-1,-124,320)"/>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 321.300781 314.601562 L 321.300781 312.601562 " transform="matrix(1,0,0,-1,-124,320)"/>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 321.300781 310.699219 L 321.300781 308.699219 " transform="matrix(1,0,0,-1,-124,320)"/>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 321.300781 306.800781 L 321.300781 304.800781 " transform="matrix(1,0,0,-1,-124,320)"/>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 321.300781 302.898438 L 321.300781 300.898438 " transform="matrix(1,0,0,-1,-124,320)"/>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 321.300781 298.898438 L 321.300781 297 " transform="matrix(1,0,0,-1,-124,320)"/>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 321.300781 295.101562 L 321.300781 293.101562 " transform="matrix(1,0,0,-1,-124,320)"/>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 321.300781 291.101562 L 321.300781 289.199219 " transform="matrix(1,0,0,-1,-124,320)"/>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 321.300781 287.199219 L 321.300781 285.300781 " transform="matrix(1,0,0,-1,-124,320)"/>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 321.300781 283.300781 L 321.300781 281.398438 " transform="matrix(1,0,0,-1,-124,320)"/>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 321.300781 279.398438 L 321.300781 277.5 " transform="matrix(1,0,0,-1,-124,320)"/>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 321.300781 275.5 L 321.300781 273.5 " transform="matrix(1,0,0,-1,-124,320)"/>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 321.300781 271.601562 L 321.300781 269.601562 " transform="matrix(1,0,0,-1,-124,320)"/>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 321.300781 267.699219 L 321.300781 265.699219 " transform="matrix(1,0,0,-1,-124,320)"/>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 321.300781 263.800781 L 321.300781 261.800781 " transform="matrix(1,0,0,-1,-124,320)"/>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 321.300781 259.898438 L 321.300781 257.898438 " transform="matrix(1,0,0,-1,-124,320)"/>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 321.300781 256 L 321.300781 254 " transform="matrix(1,0,0,-1,-124,320)"/>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 321.300781 252.101562 L 321.300781 250.101562 " transform="matrix(1,0,0,-1,-124,320)"/>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 321.300781 248.101562 L 321.300781 246.199219 " transform="matrix(1,0,0,-1,-124,320)"/>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 321.300781 244.199219 L 321.300781 242.300781 " transform="matrix(1,0,0,-1,-124,320)"/>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 321.300781 240.300781 L 321.300781 238.398438 " transform="matrix(1,0,0,-1,-124,320)"/>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 321.300781 236.398438 L 321.300781 234.5 " transform="matrix(1,0,0,-1,-124,320)"/>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 321.300781 232.5 L 321.300781 230.5 " transform="matrix(1,0,0,-1,-124,320)"/>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 321.300781 228.601562 L 321.300781 226.601562 " transform="matrix(1,0,0,-1,-124,320)"/>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 321.300781 224.699219 L 321.300781 222.699219 " transform="matrix(1,0,0,-1,-124,320)"/>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 321.300781 220.800781 L 321.300781 218.800781 " transform="matrix(1,0,0,-1,-124,320)"/>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 321.300781 216.898438 L 321.300781 214.898438 " transform="matrix(1,0,0,-1,-124,320)"/>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 321.300781 213 L 321.300781 211 " transform="matrix(1,0,0,-1,-124,320)"/>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph1-1" x="228.7" y="15.5"/>
+  <use xlink:href="#glyph1-2" x="235.7" y="15.5"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph1-3" x="239.494" y="15.5"/>
+  <use xlink:href="#glyph1-4" x="247.278" y="15.5"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph1-5" x="251.968" y="15.5"/>
+  <use xlink:href="#glyph1-6" x="259.752" y="15.5"/>
+  <use xlink:href="#glyph1-7" x="267.536" y="15.5"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph1-1" x="232.6" y="31.1"/>
+  <use xlink:href="#glyph1-7" x="239.6" y="31.1"/>
+  <use xlink:href="#glyph1-4" x="247.384" y="31.1"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph1-8" x="251.99" y="31.1"/>
+  <use xlink:href="#glyph1-7" x="258.99" y="31.1"/>
+  <use xlink:href="#glyph1-4" x="266.774" y="31.1"/>
+</g>
+</g>
+</defs>
+<g id="surface1">
+<use xlink:href="#surface5"/>
+</g>
+</svg>
diff --git a/site/img/blog/disaggregation/machine_skew.pdf b/site/img/blog/disaggregation/machine_skew.pdf
new file mode 100644
index 0000000..885dcc8
Binary files /dev/null and b/site/img/blog/disaggregation/machine_skew.pdf differ
diff --git a/site/img/blog/disaggregation/machine_skew.svg b/site/img/blog/disaggregation/machine_skew.svg
new file mode 100644
index 0000000..18ad9f0
--- /dev/null
+++ b/site/img/blog/disaggregation/machine_skew.svg
@@ -0,0 +1,295 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="520pt" height="165pt" viewBox="0 0 520 165" version="1.1">
+<defs>
+<g>
+<symbol overflow="visible" id="glyph0-0">
+<path style="stroke:none;" d="M 2.25 -10.265625 C 2.394531 -10.398438 2.550781 -10.523438 2.71875 -10.640625 C 2.894531 -10.753906 3.082031 -10.851562 3.28125 -10.9375 C 3.488281 -11.019531 3.710938 -11.085938 3.953125 -11.140625 C 4.191406 -11.191406 4.445312 -11.21875 4.71875 -11.21875 C 5.101562 -11.21875 5.445312 -11.164062 5.75 -11.0625 C 6.0625 -10.957031 6.328125 -10.804688 6.546875 -10.609375 C 6.765625 -10.421875 6.9375 -10.191406 7.0625 -9.921875 C 7.1875 -9.648438 7.25 -9.3476 [...]
+</symbol>
+<symbol overflow="visible" id="glyph0-1">
+<path style="stroke:none;" d="M 1.265625 0 L 1.265625 -9.109375 L 2.234375 -9.109375 C 2.460938 -9.109375 2.601562 -9 2.65625 -8.78125 L 2.765625 -7.84375 C 3.109375 -8.257812 3.488281 -8.597656 3.90625 -8.859375 C 4.320312 -9.128906 4.804688 -9.265625 5.359375 -9.265625 C 5.972656 -9.265625 6.46875 -9.09375 6.84375 -8.75 C 7.226562 -8.40625 7.503906 -7.941406 7.671875 -7.359375 C 7.804688 -7.691406 7.976562 -7.976562 8.1875 -8.21875 C 8.394531 -8.457031 8.625 -8.65625 8.875 -8.8125 C 9. [...]
+</symbol>
+<symbol overflow="visible" id="glyph0-2">
+<path style="stroke:none;" d="M 7.0625 0 C 6.90625 0 6.785156 -0.0234375 6.703125 -0.078125 C 6.617188 -0.128906 6.550781 -0.226562 6.5 -0.375 L 6.328125 -1.234375 C 6.085938 -1.015625 5.851562 -0.816406 5.625 -0.640625 C 5.394531 -0.472656 5.15625 -0.332031 4.90625 -0.21875 C 4.65625 -0.101562 4.382812 -0.015625 4.09375 0.046875 C 3.8125 0.109375 3.5 0.140625 3.15625 0.140625 C 2.800781 0.140625 2.46875 0.09375 2.15625 0 C 1.84375 -0.101562 1.566406 -0.253906 1.328125 -0.453125 C 1.0976 [...]
+</symbol>
+<symbol overflow="visible" id="glyph0-3">
+<path style="stroke:none;" d="M 1.265625 3.09375 L 1.265625 -9.109375 L 2.234375 -9.109375 C 2.460938 -9.109375 2.601562 -9 2.65625 -8.78125 L 2.796875 -7.703125 C 3.179688 -8.179688 3.625 -8.5625 4.125 -8.84375 C 4.632812 -9.132812 5.210938 -9.28125 5.859375 -9.28125 C 6.390625 -9.28125 6.863281 -9.175781 7.28125 -8.96875 C 7.707031 -8.769531 8.070312 -8.472656 8.375 -8.078125 C 8.675781 -7.691406 8.90625 -7.207031 9.0625 -6.625 C 9.226562 -6.039062 9.3125 -5.367188 9.3125 -4.609375 C 9 [...]
+</symbol>
+<symbol overflow="visible" id="glyph0-4">
+<path style="stroke:none;" d="M 5 -9.265625 C 5.550781 -9.265625 6.054688 -9.171875 6.515625 -8.984375 C 6.984375 -8.804688 7.382812 -8.539062 7.71875 -8.1875 C 8.0625 -7.84375 8.328125 -7.414062 8.515625 -6.90625 C 8.710938 -6.40625 8.8125 -5.832031 8.8125 -5.1875 C 8.8125 -4.9375 8.785156 -4.765625 8.734375 -4.671875 C 8.679688 -4.585938 8.578125 -4.546875 8.421875 -4.546875 L 2.328125 -4.546875 C 2.335938 -3.972656 2.414062 -3.472656 2.5625 -3.046875 C 2.707031 -2.617188 2.90625 -2.26 [...]
+</symbol>
+<symbol overflow="visible" id="glyph0-5">
+<path style="stroke:none;" d="M 1.265625 0 L 1.265625 -9.109375 L 2.1875 -9.109375 C 2.363281 -9.109375 2.484375 -9.078125 2.546875 -9.015625 C 2.609375 -8.953125 2.65625 -8.835938 2.6875 -8.671875 L 2.78125 -7.296875 C 3.070312 -7.910156 3.425781 -8.394531 3.84375 -8.75 C 4.269531 -9.101562 4.785156 -9.28125 5.390625 -9.28125 C 5.578125 -9.28125 5.757812 -9.257812 5.9375 -9.21875 C 6.113281 -9.175781 6.273438 -9.109375 6.421875 -9.015625 L 6.296875 -7.828125 C 6.265625 -7.671875 6.17578 [...]
+</symbol>
+<symbol overflow="visible" id="glyph0-6">
+<path style="stroke:none;" d="M 7.859375 0 C 7.628906 0 7.484375 -0.109375 7.421875 -0.328125 L 7.28125 -1.4375 C 6.894531 -0.96875 6.445312 -0.585938 5.9375 -0.296875 C 5.4375 -0.015625 4.863281 0.125 4.21875 0.125 C 3.695312 0.125 3.222656 0.0234375 2.796875 -0.171875 C 2.367188 -0.378906 2.003906 -0.675781 1.703125 -1.0625 C 1.410156 -1.445312 1.179688 -1.929688 1.015625 -2.515625 C 0.859375 -3.097656 0.78125 -3.769531 0.78125 -4.53125 C 0.78125 -5.195312 0.867188 -5.816406 1.046875 - [...]
+</symbol>
+<symbol overflow="visible" id="glyph0-7">
+<path style="stroke:none;" d="M 2.78125 -9.109375 L 2.78125 -3.296875 C 2.78125 -2.609375 2.9375 -2.078125 3.25 -1.703125 C 3.5625 -1.328125 4.046875 -1.140625 4.703125 -1.140625 C 5.171875 -1.140625 5.609375 -1.25 6.015625 -1.46875 C 6.429688 -1.6875 6.8125 -1.992188 7.15625 -2.390625 L 7.15625 -9.109375 L 8.765625 -9.109375 L 8.765625 0 L 7.8125 0 C 7.582031 0 7.4375 -0.109375 7.375 -0.328125 L 7.25 -1.3125 C 6.851562 -0.875 6.410156 -0.519531 5.921875 -0.25 C 5.429688 0.0078125 4.8671 [...]
+</symbol>
+<symbol overflow="visible" id="glyph0-8">
+<path style="stroke:none;" d="M 7.609375 -7.5 C 7.566406 -7.425781 7.519531 -7.375 7.46875 -7.34375 C 7.414062 -7.3125 7.347656 -7.296875 7.265625 -7.296875 C 7.179688 -7.296875 7.082031 -7.332031 6.96875 -7.40625 C 6.863281 -7.476562 6.734375 -7.554688 6.578125 -7.640625 C 6.421875 -7.734375 6.222656 -7.816406 5.984375 -7.890625 C 5.753906 -7.972656 5.472656 -8.015625 5.140625 -8.015625 C 4.691406 -8.015625 4.296875 -7.929688 3.953125 -7.765625 C 3.609375 -7.609375 3.320312 -7.378906 3. [...]
+</symbol>
+<symbol overflow="visible" id="glyph1-0">
+<path style="stroke:none;" d="M 1.296875 -5.9375 C 1.390625 -6.007812 1.484375 -6.078125 1.578125 -6.140625 C 1.679688 -6.210938 1.789062 -6.273438 1.90625 -6.328125 C 2.019531 -6.378906 2.144531 -6.414062 2.28125 -6.4375 C 2.425781 -6.46875 2.578125 -6.484375 2.734375 -6.484375 C 2.953125 -6.484375 3.148438 -6.453125 3.328125 -6.390625 C 3.503906 -6.335938 3.65625 -6.253906 3.78125 -6.140625 C 3.90625 -6.023438 4.003906 -5.890625 4.078125 -5.734375 C 4.148438 -5.578125 4.1875 -5.398438  [...]
+</symbol>
+<symbol overflow="visible" id="glyph1-1">
+<path style="stroke:none;" d="M 5.71875 -3.71875 C 5.71875 -3.070312 5.644531 -2.507812 5.5 -2.03125 C 5.363281 -1.550781 5.175781 -1.15625 4.9375 -0.84375 C 4.695312 -0.53125 4.410156 -0.296875 4.078125 -0.140625 C 3.742188 0.00390625 3.390625 0.078125 3.015625 0.078125 C 2.628906 0.078125 2.269531 0.00390625 1.9375 -0.140625 C 1.613281 -0.296875 1.332031 -0.53125 1.09375 -0.84375 C 0.851562 -1.15625 0.660156 -1.550781 0.515625 -2.03125 C 0.378906 -2.507812 0.3125 -3.070312 0.3125 -3.71 [...]
+</symbol>
+<symbol overflow="visible" id="glyph1-2">
+<path style="stroke:none;" d="M 1.296875 -0.703125 L 2.890625 -0.703125 L 2.890625 -5.796875 C 2.890625 -5.941406 2.894531 -6.09375 2.90625 -6.25 L 1.59375 -5.109375 C 1.539062 -5.078125 1.492188 -5.054688 1.453125 -5.046875 C 1.410156 -5.035156 1.367188 -5.03125 1.328125 -5.03125 C 1.285156 -5.039062 1.25 -5.054688 1.21875 -5.078125 C 1.1875 -5.097656 1.160156 -5.125 1.140625 -5.15625 L 0.859375 -5.546875 L 3.078125 -7.46875 L 3.828125 -7.46875 L 3.828125 -0.703125 L 5.296875 -0.703125  [...]
+</symbol>
+<symbol overflow="visible" id="glyph1-3">
+<path style="stroke:none;" d="M 3.078125 -7.546875 C 3.390625 -7.546875 3.679688 -7.5 3.953125 -7.40625 C 4.234375 -7.3125 4.472656 -7.171875 4.671875 -6.984375 C 4.867188 -6.804688 5.023438 -6.585938 5.140625 -6.328125 C 5.253906 -6.078125 5.3125 -5.789062 5.3125 -5.46875 C 5.3125 -5.1875 5.269531 -4.925781 5.1875 -4.6875 C 5.101562 -4.445312 4.988281 -4.21875 4.84375 -4 C 4.707031 -3.789062 4.546875 -3.582031 4.359375 -3.375 C 4.171875 -3.175781 3.972656 -2.972656 3.765625 -2.765625 L  [...]
+</symbol>
+<symbol overflow="visible" id="glyph2-0">
+<path style="stroke:none;" d="M 1.796875 -12.390625 L 11.6875 -12.390625 L 11.6875 0 L 1.796875 0 Z M 2.46875 -11.71875 L 2.46875 -0.671875 L 11.015625 -0.671875 L 11.015625 -11.71875 Z M 2.46875 -11.71875 "/>
+</symbol>
+<symbol overflow="visible" id="glyph2-1">
+<path style="stroke:none;" d="M 3.171875 -8.359375 L 3.171875 0 L 1.59375 0 L 1.59375 -8.359375 L 0.25 -8.359375 L 0.25 -9.515625 L 1.59375 -9.515625 L 1.59375 -10.578125 C 1.59375 -11.453125 1.78125 -12.078125 2.15625 -12.453125 C 2.539062 -12.835938 3.125 -13.03125 3.90625 -13.03125 C 4.351562 -13.03125 4.726562 -12.992188 5.03125 -12.921875 L 5.03125 -11.71875 C 4.757812 -11.757812 4.523438 -11.78125 4.328125 -11.78125 C 3.921875 -11.78125 3.625 -11.675781 3.4375 -11.46875 C 3.257812  [...]
+</symbol>
+<symbol overflow="visible" id="glyph2-2">
+<path style="stroke:none;" d="M 3.640625 0.171875 C 2.679688 0.171875 1.960938 -0.078125 1.484375 -0.578125 C 1.003906 -1.085938 0.765625 -1.78125 0.765625 -2.65625 C 0.765625 -3.632812 1.085938 -4.390625 1.734375 -4.921875 C 2.378906 -5.453125 3.425781 -5.734375 4.875 -5.765625 L 7 -5.796875 L 7 -6.3125 C 7 -7.09375 6.832031 -7.648438 6.5 -7.984375 C 6.175781 -8.316406 5.664062 -8.484375 4.96875 -8.484375 C 4.257812 -8.484375 3.742188 -8.363281 3.421875 -8.125 C 3.097656 -7.882812 2.906 [...]
+</symbol>
+<symbol overflow="visible" id="glyph2-3">
+<path style="stroke:none;" d="M 8.34375 -2.625 C 8.34375 -1.726562 8.003906 -1.035156 7.328125 -0.546875 C 6.648438 -0.0664062 5.703125 0.171875 4.484375 0.171875 C 3.304688 0.171875 2.394531 -0.0195312 1.75 -0.40625 C 1.113281 -0.800781 0.695312 -1.410156 0.5 -2.234375 L 1.90625 -2.5 C 2.03125 -1.988281 2.300781 -1.613281 2.71875 -1.375 C 3.144531 -1.144531 3.734375 -1.03125 4.484375 -1.03125 C 5.296875 -1.03125 5.882812 -1.148438 6.25 -1.390625 C 6.625 -1.640625 6.8125 -2.007812 6.8125 [...]
+</symbol>
+<symbol overflow="visible" id="glyph2-4">
+<path style="stroke:none;" d="M 4.875 -0.078125 C 4.351562 0.0664062 3.816406 0.140625 3.265625 0.140625 C 2.003906 0.140625 1.375 -0.578125 1.375 -2.015625 L 1.375 -8.359375 L 0.265625 -8.359375 L 0.265625 -9.515625 L 1.4375 -9.515625 L 1.90625 -11.640625 L 2.953125 -11.640625 L 2.953125 -9.515625 L 4.71875 -9.515625 L 4.71875 -8.359375 L 2.953125 -8.359375 L 2.953125 -2.359375 C 2.953125 -1.898438 3.023438 -1.578125 3.171875 -1.390625 C 3.328125 -1.203125 3.585938 -1.109375 3.953125 -1 [...]
+</symbol>
+<symbol overflow="visible" id="glyph2-5">
+<path style="stroke:none;" d="M 6.75 0 L 6.75 -6.03125 C 6.75 -6.945312 6.625 -7.582031 6.375 -7.9375 C 6.125 -8.289062 5.671875 -8.46875 5.015625 -8.46875 C 4.335938 -8.46875 3.800781 -8.207031 3.40625 -7.6875 C 3.019531 -7.175781 2.828125 -6.453125 2.828125 -5.515625 L 2.828125 0 L 1.25 0 L 1.25 -7.484375 C 1.25 -8.585938 1.234375 -9.265625 1.203125 -9.515625 L 2.6875 -9.515625 C 2.695312 -9.484375 2.703125 -9.398438 2.703125 -9.265625 C 2.710938 -9.140625 2.722656 -8.992188 2.734375 - [...]
+</symbol>
+<symbol overflow="visible" id="glyph2-6">
+<path style="stroke:none;" d="M 2.421875 -4.796875 C 2.421875 -3.535156 2.617188 -2.597656 3.015625 -1.984375 C 3.410156 -1.378906 4.007812 -1.078125 4.8125 -1.078125 C 5.375 -1.078125 5.84375 -1.226562 6.21875 -1.53125 C 6.601562 -1.832031 6.835938 -2.300781 6.921875 -2.9375 L 8.53125 -2.828125 C 8.40625 -1.910156 8.015625 -1.179688 7.359375 -0.640625 C 6.703125 -0.0976562 5.867188 0.171875 4.859375 0.171875 C 3.523438 0.171875 2.507812 -0.242188 1.8125 -1.078125 C 1.113281 -1.921875 0. [...]
+</symbol>
+<symbol overflow="visible" id="glyph2-7">
+<path style="stroke:none;" d="M 2.78125 -7.890625 C 3.125 -8.503906 3.535156 -8.957031 4.015625 -9.25 C 4.492188 -9.539062 5.097656 -9.6875 5.828125 -9.6875 C 6.859375 -9.6875 7.617188 -9.425781 8.109375 -8.90625 C 8.597656 -8.394531 8.84375 -7.539062 8.84375 -6.34375 L 8.84375 0 L 7.25 0 L 7.25 -6.03125 C 7.25 -6.695312 7.1875 -7.191406 7.0625 -7.515625 C 6.9375 -7.835938 6.734375 -8.078125 6.453125 -8.234375 C 6.171875 -8.390625 5.785156 -8.46875 5.296875 -8.46875 C 4.546875 -8.46875 3 [...]
+</symbol>
+<symbol overflow="visible" id="glyph2-8">
+<path style="stroke:none;" d="M 1.203125 -11.53125 L 1.203125 -13.046875 L 2.78125 -13.046875 L 2.78125 -11.53125 Z M 1.203125 0 L 1.203125 -9.515625 L 2.78125 -9.515625 L 2.78125 0 Z M 1.203125 0 "/>
+</symbol>
+<symbol overflow="visible" id="glyph2-9">
+<path style="stroke:none;" d="M 7.25 0 L 7.25 -6.03125 C 7.25 -6.65625 7.1875 -7.140625 7.0625 -7.484375 C 6.9375 -7.828125 6.738281 -8.078125 6.46875 -8.234375 C 6.207031 -8.390625 5.816406 -8.46875 5.296875 -8.46875 C 4.535156 -8.46875 3.929688 -8.207031 3.484375 -7.6875 C 3.046875 -7.164062 2.828125 -6.441406 2.828125 -5.515625 L 2.828125 0 L 1.25 0 L 1.25 -7.484375 C 1.25 -8.585938 1.234375 -9.265625 1.203125 -9.515625 L 2.6875 -9.515625 C 2.695312 -9.484375 2.703125 -9.398438 2.7031 [...]
+</symbol>
+<symbol overflow="visible" id="glyph2-10">
+<path style="stroke:none;" d="M 2.421875 -4.421875 C 2.421875 -3.328125 2.644531 -2.484375 3.09375 -1.890625 C 3.550781 -1.304688 4.210938 -1.015625 5.078125 -1.015625 C 5.765625 -1.015625 6.3125 -1.148438 6.71875 -1.421875 C 7.132812 -1.703125 7.414062 -2.050781 7.5625 -2.46875 L 8.953125 -2.078125 C 8.390625 -0.578125 7.097656 0.171875 5.078125 0.171875 C 3.671875 0.171875 2.597656 -0.242188 1.859375 -1.078125 C 1.128906 -1.921875 0.765625 -3.164062 0.765625 -4.8125 C 0.765625 -6.38281 [...]
+</symbol>
+<symbol overflow="visible" id="glyph2-11">
+<path style="stroke:none;" d="M 1.21875 0 L 1.21875 -13.046875 L 2.796875 -13.046875 L 2.796875 0 Z M 1.21875 0 "/>
+</symbol>
+<symbol overflow="visible" id="glyph2-12">
+<path style="stroke:none;" d="M 9.25 -4.765625 C 9.25 -3.097656 8.882812 -1.859375 8.15625 -1.046875 C 7.425781 -0.234375 6.363281 0.171875 4.96875 0.171875 C 3.582031 0.171875 2.53125 -0.25 1.8125 -1.09375 C 1.101562 -1.9375 0.75 -3.160156 0.75 -4.765625 C 0.75 -8.046875 2.171875 -9.6875 5.015625 -9.6875 C 6.472656 -9.6875 7.539062 -9.285156 8.21875 -8.484375 C 8.90625 -7.679688 9.25 -6.441406 9.25 -4.765625 Z M 7.59375 -4.765625 C 7.59375 -6.078125 7.394531 -7.03125 7 -7.625 C 6.613281 [...]
+</symbol>
+<symbol overflow="visible" id="glyph2-13">
+<path style="stroke:none;" d="M 10.3125 0 L 8.484375 0 L 6.828125 -6.71875 L 6.5 -8.203125 C 6.445312 -7.941406 6.363281 -7.5625 6.25 -7.0625 C 6.144531 -6.570312 5.550781 -4.21875 4.46875 0 L 2.640625 0 L -0.03125 -9.515625 L 1.53125 -9.515625 L 3.140625 -3.046875 C 3.179688 -2.910156 3.3125 -2.332031 3.53125 -1.3125 L 3.671875 -1.953125 L 5.65625 -9.515625 L 7.359375 -9.515625 L 9.015625 -2.984375 L 9.421875 -1.3125 L 9.6875 -2.53125 L 11.5 -9.515625 L 13.046875 -9.515625 Z M 10.3125 0 "/>
+</symbol>
+<symbol overflow="visible" id="glyph2-14">
+<path style="stroke:none;" d="M 2.765625 -9.515625 L 2.765625 -3.484375 C 2.765625 -2.859375 2.820312 -2.367188 2.9375 -2.015625 C 3.0625 -1.671875 3.257812 -1.421875 3.53125 -1.265625 C 3.800781 -1.117188 4.195312 -1.046875 4.71875 -1.046875 C 5.476562 -1.046875 6.078125 -1.304688 6.515625 -1.828125 C 6.960938 -2.347656 7.1875 -3.070312 7.1875 -4 L 7.1875 -9.515625 L 8.765625 -9.515625 L 8.765625 -2.03125 C 8.765625 -0.925781 8.78125 -0.25 8.8125 0 L 7.328125 0 C 7.316406 -0.03125 7.304 [...]
+</symbol>
+<symbol overflow="visible" id="glyph2-15">
+<path style="stroke:none;" d="M 7.21875 -1.53125 C 6.925781 -0.914062 6.535156 -0.476562 6.046875 -0.21875 C 5.566406 0.0390625 4.96875 0.171875 4.25 0.171875 C 3.050781 0.171875 2.164062 -0.226562 1.59375 -1.03125 C 1.03125 -1.84375 0.75 -3.070312 0.75 -4.71875 C 0.75 -8.03125 1.914062 -9.6875 4.25 -9.6875 C 4.96875 -9.6875 5.566406 -9.550781 6.046875 -9.28125 C 6.535156 -9.019531 6.925781 -8.601562 7.21875 -8.03125 L 7.234375 -8.03125 L 7.21875 -9.09375 L 7.21875 -13.046875 L 8.796875  [...]
+</symbol>
+</g>
+<clipPath id="clip1">
+  <rect x="0" y="0" width="520" height="165"/>
+</clipPath>
+<g id="surface5" clip-path="url(#clip1)">
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph0-1" x="135.1" y="60.4"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph0-2" x="149.806" y="60.4"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph0-3" x="158.788" y="60.4"/>
+  <use xlink:href="#glyph0-3" x="168.868" y="60.4"/>
+  <use xlink:href="#glyph0-4" x="178.948" y="60.4"/>
+  <use xlink:href="#glyph0-5" x="188.452" y="60.4"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph1-1" x="195.1" y="64.9"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph0-1" x="135.1" y="105.3"/>
+  <use xlink:href="#glyph0-2" x="149.896" y="105.3"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph0-3" x="158.788" y="105.3"/>
+  <use xlink:href="#glyph0-3" x="168.868" y="105.3"/>
+  <use xlink:href="#glyph0-4" x="178.948" y="105.3"/>
+  <use xlink:href="#glyph0-5" x="188.452" y="105.3"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph1-2" x="195.1" y="109.8"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph0-1" x="138" y="150.4"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph0-2" x="152.706" y="150.4"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph0-3" x="161.688" y="150.4"/>
+  <use xlink:href="#glyph0-3" x="171.768" y="150.4"/>
+  <use xlink:href="#glyph0-4" x="181.848" y="150.4"/>
+  <use xlink:href="#glyph0-5" x="191.352" y="150.4"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph1-3" x="198" y="154.9"/>
+</g>
+<g style="fill:rgb(0%,65.097046%,36.468506%);fill-opacity:1;">
+  <use xlink:href="#glyph0-5" x="317.9" y="77.2"/>
+</g>
+<g style="fill:rgb(0%,65.097046%,36.468506%);fill-opacity:1;">
+  <use xlink:href="#glyph0-4" x="324.092" y="77.2"/>
+  <use xlink:href="#glyph0-6" x="333.596" y="77.2"/>
+  <use xlink:href="#glyph0-7" x="343.676" y="77.2"/>
+</g>
+<g style="fill:rgb(0%,65.097046%,36.468506%);fill-opacity:1;">
+  <use xlink:href="#glyph0-8" x="353.756" y="77.2"/>
+</g>
+<g style="fill:rgb(0%,65.097046%,36.468506%);fill-opacity:1;">
+  <use xlink:href="#glyph0-4" x="362.162" y="77.2"/>
+  <use xlink:href="#glyph0-5" x="371.666" y="77.2"/>
+</g>
+<g style="fill:rgb(0%,65.097046%,36.468506%);fill-opacity:1;">
+  <use xlink:href="#glyph1-1" x="378.2" y="81.8"/>
+</g>
+<g style="fill:rgb(0%,39.99939%,70.195007%);fill-opacity:1;">
+  <use xlink:href="#glyph0-5" x="317.9" y="143"/>
+</g>
+<g style="fill:rgb(0%,39.99939%,70.195007%);fill-opacity:1;">
+  <use xlink:href="#glyph0-4" x="324.092" y="143"/>
+  <use xlink:href="#glyph0-6" x="333.596" y="143"/>
+  <use xlink:href="#glyph0-7" x="343.676" y="143"/>
+</g>
+<g style="fill:rgb(0%,39.99939%,70.195007%);fill-opacity:1;">
+  <use xlink:href="#glyph0-8" x="353.756" y="143"/>
+</g>
+<g style="fill:rgb(0%,39.99939%,70.195007%);fill-opacity:1;">
+  <use xlink:href="#glyph0-4" x="362.162" y="143"/>
+  <use xlink:href="#glyph0-5" x="371.666" y="143"/>
+</g>
+<g style="fill:rgb(0%,39.99939%,70.195007%);fill-opacity:1;">
+  <use xlink:href="#glyph1-2" x="378.2" y="147.5"/>
+</g>
+<path style=" stroke:none;fill-rule:evenodd;fill:rgb(0%,65.097046%,36.468506%);fill-opacity:1;" d="M 219.5 43.898438 L 219.5 43.300781 L 219.601562 43.199219 L 219.601562 43.101562 L 219.699219 42.898438 L 219.699219 42.800781 L 219.800781 42.699219 L 219.800781 42.601562 L 219.898438 42.5 L 220 42.398438 L 220.101562 42.300781 L 220.199219 42.199219 L 220.199219 42.101562 L 220.398438 42 L 220.601562 41.898438 L 220.699219 41.800781 L 220.800781 41.800781 L 220.898438 41.699219 L 221 41 [...]
+<path style="fill:none;stroke-width:0.7358;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 335.5 280.101562 L 335.5 280.699219 L 335.601562 280.800781 L 335.601562 280.898438 L 335.699219 281.101562 L 335.699219 281.199219 L 335.800781 281.300781 L 335.800781 281.398438 L 335.898438 281.5 L 336 281.601562 L 336.101562 281.699219 L 336.199219 281.800781 L 336.199219 281.898438 L 336.398438 282 L 336.601562 282.101562 L 336.699219 [...]
+<path style="fill:none;stroke-width:0.7358;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 335.5 282.5 Z M 335.5 282.5 " transform="matrix(1,0,0,-1,-116,324)"/>
+<path style="fill:none;stroke-width:0.7358;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 371.699219 267.800781 Z M 371.699219 267.800781 " transform="matrix(1,0,0,-1,-116,324)"/>
+<path style=" stroke:none;fill-rule:evenodd;fill:rgb(0%,39.99939%,70.195007%);fill-opacity:1;" d="M 219.5 57.898438 L 219.5 57.300781 L 219.601562 57.101562 L 219.601562 57 L 219.699219 56.898438 L 219.699219 56.800781 L 219.800781 56.699219 L 219.800781 56.601562 L 219.898438 56.5 L 220 56.398438 L 220.101562 56.300781 L 220.199219 56.199219 L 220.199219 56.101562 L 220.398438 56 L 220.398438 55.898438 L 220.601562 55.898438 L 220.800781 55.699219 L 220.898438 55.699219 L 221 55.601562  [...]
+<path style="fill:none;stroke-width:0.7358;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 335.5 266.101562 L 335.5 266.699219 L 335.601562 266.898438 L 335.601562 267 L 335.699219 267.101562 L 335.699219 267.199219 L 335.800781 267.300781 L 335.800781 267.398438 L 335.898438 267.5 L 336 267.601562 L 336.101562 267.699219 L 336.199219 267.800781 L 336.199219 267.898438 L 336.398438 268 L 336.398438 268.101562 L 336.601562 268.10 [...]
+<path style="fill:none;stroke-width:0.7358;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 335.5 268.5 Z M 335.5 268.5 " transform="matrix(1,0,0,-1,-116,324)"/>
+<path style="fill:none;stroke-width:0.7358;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 371.699219 253.800781 Z M 371.699219 253.800781 " transform="matrix(1,0,0,-1,-116,324)"/>
+<path style=" stroke:none;fill-rule:evenodd;fill:rgb(0%,65.097046%,36.468506%);fill-opacity:1;" d="M 219.5 89.300781 L 219.5 88.800781 L 219.601562 88.699219 L 219.601562 88.601562 L 219.699219 88.398438 L 219.699219 88.199219 L 219.800781 88.101562 L 219.898438 88 L 219.898438 87.898438 L 220 87.800781 L 220.300781 87.5 L 220.398438 87.398438 L 220.5 87.300781 L 220.601562 87.300781 L 220.699219 87.199219 L 220.800781 87.101562 L 221 87.101562 L 221.199219 87 L 221.300781 87 L 221.39843 [...]
+<path style="fill:none;stroke-width:0.7358;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 335.5 234.699219 L 335.5 235.199219 L 335.601562 235.300781 L 335.601562 235.398438 L 335.699219 235.601562 L 335.699219 235.800781 L 335.800781 235.898438 L 335.898438 236 L 335.898438 236.101562 L 336 236.199219 L 336.300781 236.5 L 336.398438 236.601562 L 336.5 236.699219 L 336.601562 236.699219 L 336.699219 236.800781 L 336.800781 236. [...]
+<path style="fill:none;stroke-width:0.7358;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 335.5 237.101562 Z M 335.5 237.101562 " transform="matrix(1,0,0,-1,-116,324)"/>
+<path style="fill:none;stroke-width:0.7358;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 350.199219 222.398438 Z M 350.199219 222.398438 " transform="matrix(1,0,0,-1,-116,324)"/>
+<path style=" stroke:none;fill-rule:evenodd;fill:rgb(0%,39.99939%,70.195007%);fill-opacity:1;" d="M 219.5 103.300781 L 219.5 102.800781 L 219.601562 102.699219 L 219.601562 102.5 L 219.699219 102.398438 L 219.699219 102.199219 L 219.800781 102.101562 L 219.898438 102 L 219.898438 101.800781 L 220 101.800781 L 220.300781 101.5 L 220.398438 101.398438 L 220.5 101.300781 L 220.601562 101.300781 L 220.699219 101.199219 L 220.800781 101.101562 L 220.898438 101.101562 L 221 101 L 221.199219 10 [...]
+<path style="fill:none;stroke-width:0.7358;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 335.5 220.699219 L 335.5 221.199219 L 335.601562 221.300781 L 335.601562 221.5 L 335.699219 221.601562 L 335.699219 221.800781 L 335.800781 221.898438 L 335.898438 222 L 335.898438 222.199219 L 336 222.199219 L 336.300781 222.5 L 336.398438 222.601562 L 336.5 222.699219 L 336.601562 222.699219 L 336.699219 222.800781 L 336.800781 222.89843 [...]
+<path style="fill:none;stroke-width:0.7358;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 335.5 223.101562 Z M 335.5 223.101562 " transform="matrix(1,0,0,-1,-116,324)"/>
+<path style="fill:none;stroke-width:0.7358;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 350.199219 208.398438 Z M 350.199219 208.398438 " transform="matrix(1,0,0,-1,-116,324)"/>
+<path style=" stroke:none;fill-rule:evenodd;fill:rgb(0%,65.097046%,36.468506%);fill-opacity:1;" d="M 219.5 137.5 L 219.5 137 L 219.601562 136.898438 L 219.601562 136.800781 L 219.699219 136.699219 L 219.699219 136.398438 L 219.800781 136.300781 L 219.898438 136.199219 L 219.898438 136.101562 L 220.398438 135.601562 L 220.5 135.601562 L 220.601562 135.5 L 220.699219 135.398438 L 220.800781 135.398438 L 220.898438 135.300781 L 221 135.300781 L 221.199219 135.199219 L 221.398438 135.199219  [...]
+<path style="fill:none;stroke-width:0.7358;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 335.5 186.5 L 335.5 187 L 335.601562 187.101562 L 335.601562 187.199219 L 335.699219 187.300781 L 335.699219 187.601562 L 335.800781 187.699219 L 335.898438 187.800781 L 335.898438 187.898438 L 336.398438 188.398438 L 336.5 188.398438 L 336.601562 188.5 L 336.699219 188.601562 L 336.800781 188.601562 L 336.898438 188.699219 L 337 188.69921 [...]
+<path style="fill:none;stroke-width:0.7358;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 335.5 188.898438 Z M 335.5 188.898438 " transform="matrix(1,0,0,-1,-116,324)"/>
+<path style="fill:none;stroke-width:0.7358;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 350.199219 174.199219 Z M 350.199219 174.199219 " transform="matrix(1,0,0,-1,-116,324)"/>
+<path style=" stroke:none;fill-rule:evenodd;fill:rgb(0%,39.99939%,70.195007%);fill-opacity:1;" d="M 219.5 151.5 L 219.5 151 L 219.601562 150.898438 L 219.601562 150.699219 L 219.699219 150.601562 L 219.699219 150.398438 L 219.800781 150.300781 L 219.898438 150.199219 L 219.898438 150.101562 L 220.5 149.5 L 220.601562 149.5 L 220.699219 149.398438 L 220.800781 149.300781 L 220.898438 149.300781 L 221 149.199219 L 221.300781 149.199219 L 221.398438 149.101562 L 232.199219 149.101562 L 232. [...]
+<path style="fill:none;stroke-width:0.7358;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 335.5 172.5 L 335.5 173 L 335.601562 173.101562 L 335.601562 173.300781 L 335.699219 173.398438 L 335.699219 173.601562 L 335.800781 173.699219 L 335.898438 173.800781 L 335.898438 173.898438 L 336.5 174.5 L 336.601562 174.5 L 336.699219 174.601562 L 336.800781 174.699219 L 336.898438 174.699219 L 337 174.800781 L 337.300781 174.800781 L 3 [...]
+<path style="fill:none;stroke-width:0.7358;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 335.5 174.898438 Z M 335.5 174.898438 " transform="matrix(1,0,0,-1,-116,324)"/>
+<path style="fill:none;stroke-width:0.7358;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 350.199219 160.199219 Z M 350.199219 160.199219 " transform="matrix(1,0,0,-1,-116,324)"/>
+<path style="fill:none;stroke-width:1.4999;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,65.097046%,36.468506%);stroke-opacity:1;stroke-miterlimit:10;" d="M 372.199219 275.300781 L 421.300781 255.800781 " transform="matrix(1,0,0,-1,-116,324)"/>
+<path style=" stroke:none;fill-rule:evenodd;fill:rgb(0%,65.097046%,36.468506%);fill-opacity:1;" d="M 310.699219 70.300781 L 306.300781 64.300781 L 303.398438 71.699219 Z M 310.699219 70.300781 "/>
+<path style="fill:none;stroke-width:1.4999;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,65.097046%,36.468506%);stroke-opacity:1;stroke-miterlimit:10;" d="M 349.898438 228.101562 L 421.101562 248.800781 " transform="matrix(1,0,0,-1,-116,324)"/>
+<path style=" stroke:none;fill-rule:evenodd;fill:rgb(0%,65.097046%,36.468506%);fill-opacity:1;" d="M 310.699219 73.601562 L 303.5 71.601562 L 305.699219 79.199219 Z M 310.699219 73.601562 "/>
+<path style="fill:none;stroke-width:1.4999;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,65.097046%,36.468506%);stroke-opacity:1;stroke-miterlimit:10;" d="M 350.199219 183.898438 L 421.5 241.5 " transform="matrix(1,0,0,-1,-116,324)"/>
+<path style=" stroke:none;fill-rule:evenodd;fill:rgb(0%,65.097046%,36.468506%);fill-opacity:1;" d="M 310 78.898438 L 302.601562 79.699219 L 307.601562 85.898438 Z M 310 78.898438 "/>
+<path style="fill:none;stroke-width:1.4999;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,39.99939%,70.195007%);stroke-opacity:1;stroke-miterlimit:10;" d="M 371.601562 260.898438 L 424.199219 193.5 " transform="matrix(1,0,0,-1,-116,324)"/>
+<path style=" stroke:none;fill-rule:evenodd;fill:rgb(0%,39.99939%,70.195007%);fill-opacity:1;" d="M 311.800781 135.101562 L 311 127.699219 L 304.800781 132.5 Z M 311.800781 135.101562 "/>
+<path style="fill:none;stroke-width:1.4999;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,39.99939%,70.195007%);stroke-opacity:1;stroke-miterlimit:10;" d="M 350.199219 217.699219 L 421.398438 186.199219 " transform="matrix(1,0,0,-1,-116,324)"/>
+<path style=" stroke:none;fill-rule:evenodd;fill:rgb(0%,39.99939%,70.195007%);fill-opacity:1;" d="M 310.699219 140.101562 L 306.5 133.898438 L 303.300781 141.199219 Z M 310.699219 140.101562 "/>
+<path style="fill:none;stroke-width:1.4999;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,39.99939%,70.195007%);stroke-opacity:1;stroke-miterlimit:10;" d="M 350.199219 167.300781 L 421 180.601562 " transform="matrix(1,0,0,-1,-116,324)"/>
+<path style=" stroke:none;fill-rule:evenodd;fill:rgb(0%,39.99939%,70.195007%);fill-opacity:1;" d="M 310.699219 142.300781 L 303.800781 139.601562 L 305.199219 147.300781 Z M 310.699219 142.300781 "/>
+<path style="fill:none;stroke-width:1.4999;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(92.939758%,10.978699%,14.115906%);stroke-opacity:1;stroke-miterlimit:10;" d="M 415.398438 204 C 418.398438 207.898438 421.5 210.199219 422.699219 209.300781 C 423.898438 208.398438 422.601562 204.699219 419.699219 200.800781 C 416.699219 196.898438 413.5 194.601562 412.300781 195.5 C 411.101562 196.398438 412.398438 200.101562 415.398438 204 Z M 415.398438 204 " transform="matrix(1,0,0,-1,-116 [...]
+<path style="fill:none;stroke-width:1.4999;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(92.939758%,10.978699%,14.115906%);stroke-opacity:1;stroke-miterlimit:10;" d="M 410.199219 197.101562 Z M 410.199219 197.101562 " transform="matrix(1,0,0,-1,-116,324)"/>
+<path style="fill:none;stroke-width:1.4999;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(92.939758%,10.978699%,14.115906%);stroke-opacity:1;stroke-miterlimit:10;" d="M 424.898438 207.699219 Z M 424.898438 207.699219 " transform="matrix(1,0,0,-1,-116,324)"/>
+<path style="fill:none;stroke-width:1.4999;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(92.939758%,10.978699%,14.115906%);stroke-opacity:1;stroke-miterlimit:10;" d="M 409.5 262 C 411.800781 266.300781 414.699219 269 416 268.300781 C 417.300781 267.601562 416.601562 263.699219 414.199219 259.398438 C 411.898438 255.101562 409 252.398438 407.699219 253.101562 C 406.398438 253.800781 407.199219 257.699219 409.5 262 Z M 409.5 262 " transform="matrix(1,0,0,-1,-116,324)"/>
+<path style="fill:none;stroke-width:1.4999;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(92.939758%,10.978699%,14.115906%);stroke-opacity:1;stroke-miterlimit:10;" d="M 405.398438 254.398438 Z M 405.398438 254.398438 " transform="matrix(1,0,0,-1,-116,324)"/>
+<path style="fill:none;stroke-width:1.4999;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(92.939758%,10.978699%,14.115906%);stroke-opacity:1;stroke-miterlimit:10;" d="M 418.398438 267.101562 Z M 418.398438 267.101562 " transform="matrix(1,0,0,-1,-116,324)"/>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 243.898438 237.101562 C 240.300781 237.101562 236.699219 233.898438 236.699219 230.699219 L 236.699219 205.101562 C 236.699219 201.898438 233.101562 198.601562 229.5 198.601562 C 233.101562 198.601562 236.699219 195.398438 236.699219 192.199219 L 236.699219 166.5 C 236.699219 163.300781 240.300781 160.101562 243.898 [...]
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 229.5 237.101562 Z M 229.5 237.101562 " transform="matrix(1,0,0,-1,-116,324)"/>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 243.898438 160.101562 Z M 243.898438 160.101562 " transform="matrix(1,0,0,-1,-116,324)"/>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 243.898438 282.5 C 240.300781 282.5 236.699219 281.300781 236.699219 280.101562 L 236.699219 270.5 C 236.699219 269.300781 233.101562 268.101562 229.5 268.101562 C 233.101562 268.101562 236.699219 266.898438 236.699219 265.699219 L 236.699219 256.101562 C 236.699219 254.898438 240.300781 253.699219 243.898438 253.69 [...]
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 229.5 282.5 Z M 229.5 282.5 " transform="matrix(1,0,0,-1,-116,324)"/>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 243.898438 253.699219 Z M 243.898438 253.699219 " transform="matrix(1,0,0,-1,-116,324)"/>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph2-1" x="73.8" y="51.1"/>
+  <use xlink:href="#glyph2-2" x="78.786" y="51.1"/>
+  <use xlink:href="#glyph2-3" x="88.794" y="51.1"/>
+  <use xlink:href="#glyph2-4" x="97.794" y="51.1"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph2-5" x="35" y="71.3"/>
+  <use xlink:href="#glyph2-2" x="49.994" y="71.3"/>
+  <use xlink:href="#glyph2-6" x="60.002" y="71.3"/>
+  <use xlink:href="#glyph2-7" x="69.002" y="71.3"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph2-8" x="78.902" y="71.3"/>
+  <use xlink:href="#glyph2-9" x="82.898" y="71.3"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph2-10" x="92.798" y="71.3"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph2-3" x="67.4" y="119.4"/>
+  <use xlink:href="#glyph2-11" x="76.4" y="119.4"/>
+  <use xlink:href="#glyph2-12" x="80.396" y="119.4"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph2-13" x="90.296" y="119.4"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph2-5" x="26.5" y="139.5"/>
+  <use xlink:href="#glyph2-2" x="41.494" y="139.5"/>
+  <use xlink:href="#glyph2-6" x="51.502" y="139.5"/>
+  <use xlink:href="#glyph2-7" x="60.502" y="139.5"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph2-8" x="70.402" y="139.5"/>
+  <use xlink:href="#glyph2-9" x="74.398" y="139.5"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph2-10" x="84.298" y="139.5"/>
+  <use xlink:href="#glyph2-3" x="94.306" y="139.5"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph2-3" x="209.2" y="13.4"/>
+  <use xlink:href="#glyph2-7" x="218.2" y="13.4"/>
+  <use xlink:href="#glyph2-14" x="228.208" y="13.4"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph2-1" x="238.108" y="13.4"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph2-1" x="242.806" y="13.4"/>
+  <use xlink:href="#glyph2-11" x="247.792" y="13.4"/>
+  <use xlink:href="#glyph2-10" x="251.788" y="13.4"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph2-15" x="218" y="33.6"/>
+  <use xlink:href="#glyph2-2" x="228.008" y="33.6"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph2-4" x="237.908" y="33.6"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph2-2" x="242.984" y="33.6"/>
+</g>
+<path style="fill:none;stroke-width:0.12;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 635.398438 227.300781 Z M 635.398438 227.300781 " transform="matrix(1,0,0,-1,-116,324)"/>
+<path style="fill:none;stroke-width:0.12;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 116.699219 227.300781 Z M 116.699219 227.300781 " transform="matrix(1,0,0,-1,-116,324)"/>
+</g>
+</defs>
+<g id="surface1">
+<use xlink:href="#surface5"/>
+</g>
+</svg>
diff --git a/site/img/blog/disaggregation/machine_skew_crail.pdf b/site/img/blog/disaggregation/machine_skew_crail.pdf
new file mode 100644
index 0000000..d4ef363
Binary files /dev/null and b/site/img/blog/disaggregation/machine_skew_crail.pdf differ
diff --git a/site/img/blog/disaggregation/machine_skew_crail.svg b/site/img/blog/disaggregation/machine_skew_crail.svg
new file mode 100644
index 0000000..715b0fa
--- /dev/null
+++ b/site/img/blog/disaggregation/machine_skew_crail.svg
@@ -0,0 +1,455 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="520pt" height="165pt" viewBox="0 0 520 165" version="1.1">
+<defs>
+<g>
+<symbol overflow="visible" id="glyph0-0">
+<path style="stroke:none;" d="M 2.25 -10.265625 C 2.394531 -10.398438 2.550781 -10.523438 2.71875 -10.640625 C 2.894531 -10.753906 3.082031 -10.851562 3.28125 -10.9375 C 3.488281 -11.019531 3.710938 -11.085938 3.953125 -11.140625 C 4.191406 -11.191406 4.445312 -11.21875 4.71875 -11.21875 C 5.101562 -11.21875 5.445312 -11.164062 5.75 -11.0625 C 6.0625 -10.957031 6.328125 -10.804688 6.546875 -10.609375 C 6.765625 -10.421875 6.9375 -10.191406 7.0625 -9.921875 C 7.1875 -9.648438 7.25 -9.3476 [...]
+</symbol>
+<symbol overflow="visible" id="glyph0-1">
+<path style="stroke:none;" d="M 1.265625 0 L 1.265625 -9.109375 L 2.234375 -9.109375 C 2.460938 -9.109375 2.601562 -9 2.65625 -8.78125 L 2.765625 -7.84375 C 3.109375 -8.257812 3.488281 -8.597656 3.90625 -8.859375 C 4.320312 -9.128906 4.804688 -9.265625 5.359375 -9.265625 C 5.972656 -9.265625 6.46875 -9.09375 6.84375 -8.75 C 7.226562 -8.40625 7.503906 -7.941406 7.671875 -7.359375 C 7.804688 -7.691406 7.976562 -7.976562 8.1875 -8.21875 C 8.394531 -8.457031 8.625 -8.65625 8.875 -8.8125 C 9. [...]
+</symbol>
+<symbol overflow="visible" id="glyph0-2">
+<path style="stroke:none;" d="M 7.0625 0 C 6.90625 0 6.785156 -0.0234375 6.703125 -0.078125 C 6.617188 -0.128906 6.550781 -0.226562 6.5 -0.375 L 6.328125 -1.234375 C 6.085938 -1.015625 5.851562 -0.816406 5.625 -0.640625 C 5.394531 -0.472656 5.15625 -0.332031 4.90625 -0.21875 C 4.65625 -0.101562 4.382812 -0.015625 4.09375 0.046875 C 3.8125 0.109375 3.5 0.140625 3.15625 0.140625 C 2.800781 0.140625 2.46875 0.09375 2.15625 0 C 1.84375 -0.101562 1.566406 -0.253906 1.328125 -0.453125 C 1.0976 [...]
+</symbol>
+<symbol overflow="visible" id="glyph0-3">
+<path style="stroke:none;" d="M 1.265625 3.09375 L 1.265625 -9.109375 L 2.234375 -9.109375 C 2.460938 -9.109375 2.601562 -9 2.65625 -8.78125 L 2.796875 -7.703125 C 3.179688 -8.179688 3.625 -8.5625 4.125 -8.84375 C 4.632812 -9.132812 5.210938 -9.28125 5.859375 -9.28125 C 6.390625 -9.28125 6.863281 -9.175781 7.28125 -8.96875 C 7.707031 -8.769531 8.070312 -8.472656 8.375 -8.078125 C 8.675781 -7.691406 8.90625 -7.207031 9.0625 -6.625 C 9.226562 -6.039062 9.3125 -5.367188 9.3125 -4.609375 C 9 [...]
+</symbol>
+<symbol overflow="visible" id="glyph0-4">
+<path style="stroke:none;" d="M 5 -9.265625 C 5.550781 -9.265625 6.054688 -9.171875 6.515625 -8.984375 C 6.984375 -8.804688 7.382812 -8.539062 7.71875 -8.1875 C 8.0625 -7.84375 8.328125 -7.414062 8.515625 -6.90625 C 8.710938 -6.40625 8.8125 -5.832031 8.8125 -5.1875 C 8.8125 -4.9375 8.785156 -4.765625 8.734375 -4.671875 C 8.679688 -4.585938 8.578125 -4.546875 8.421875 -4.546875 L 2.328125 -4.546875 C 2.335938 -3.972656 2.414062 -3.472656 2.5625 -3.046875 C 2.707031 -2.617188 2.90625 -2.26 [...]
+</symbol>
+<symbol overflow="visible" id="glyph0-5">
+<path style="stroke:none;" d="M 1.265625 0 L 1.265625 -9.109375 L 2.1875 -9.109375 C 2.363281 -9.109375 2.484375 -9.078125 2.546875 -9.015625 C 2.609375 -8.953125 2.65625 -8.835938 2.6875 -8.671875 L 2.78125 -7.296875 C 3.070312 -7.910156 3.425781 -8.394531 3.84375 -8.75 C 4.269531 -9.101562 4.785156 -9.28125 5.390625 -9.28125 C 5.578125 -9.28125 5.757812 -9.257812 5.9375 -9.21875 C 6.113281 -9.175781 6.273438 -9.109375 6.421875 -9.015625 L 6.296875 -7.828125 C 6.265625 -7.671875 6.17578 [...]
+</symbol>
+<symbol overflow="visible" id="glyph0-6">
+<path style="stroke:none;" d="M 7.859375 0 C 7.628906 0 7.484375 -0.109375 7.421875 -0.328125 L 7.28125 -1.4375 C 6.894531 -0.96875 6.445312 -0.585938 5.9375 -0.296875 C 5.4375 -0.015625 4.863281 0.125 4.21875 0.125 C 3.695312 0.125 3.222656 0.0234375 2.796875 -0.171875 C 2.367188 -0.378906 2.003906 -0.675781 1.703125 -1.0625 C 1.410156 -1.445312 1.179688 -1.929688 1.015625 -2.515625 C 0.859375 -3.097656 0.78125 -3.769531 0.78125 -4.53125 C 0.78125 -5.195312 0.867188 -5.816406 1.046875 - [...]
+</symbol>
+<symbol overflow="visible" id="glyph0-7">
+<path style="stroke:none;" d="M 2.78125 -9.109375 L 2.78125 -3.296875 C 2.78125 -2.609375 2.9375 -2.078125 3.25 -1.703125 C 3.5625 -1.328125 4.046875 -1.140625 4.703125 -1.140625 C 5.171875 -1.140625 5.609375 -1.25 6.015625 -1.46875 C 6.429688 -1.6875 6.8125 -1.992188 7.15625 -2.390625 L 7.15625 -9.109375 L 8.765625 -9.109375 L 8.765625 0 L 7.8125 0 C 7.582031 0 7.4375 -0.109375 7.375 -0.328125 L 7.25 -1.3125 C 6.851562 -0.875 6.410156 -0.519531 5.921875 -0.25 C 5.429688 0.0078125 4.8671 [...]
+</symbol>
+<symbol overflow="visible" id="glyph0-8">
+<path style="stroke:none;" d="M 7.609375 -7.5 C 7.566406 -7.425781 7.519531 -7.375 7.46875 -7.34375 C 7.414062 -7.3125 7.347656 -7.296875 7.265625 -7.296875 C 7.179688 -7.296875 7.082031 -7.332031 6.96875 -7.40625 C 6.863281 -7.476562 6.734375 -7.554688 6.578125 -7.640625 C 6.421875 -7.734375 6.222656 -7.816406 5.984375 -7.890625 C 5.753906 -7.972656 5.472656 -8.015625 5.140625 -8.015625 C 4.691406 -8.015625 4.296875 -7.929688 3.953125 -7.765625 C 3.609375 -7.609375 3.320312 -7.378906 3. [...]
+</symbol>
+<symbol overflow="visible" id="glyph1-0">
+<path style="stroke:none;" d="M 1.296875 -5.9375 C 1.390625 -6.007812 1.484375 -6.078125 1.578125 -6.140625 C 1.679688 -6.210938 1.789062 -6.273438 1.90625 -6.328125 C 2.019531 -6.378906 2.144531 -6.414062 2.28125 -6.4375 C 2.425781 -6.46875 2.578125 -6.484375 2.734375 -6.484375 C 2.953125 -6.484375 3.148438 -6.453125 3.328125 -6.390625 C 3.503906 -6.335938 3.65625 -6.253906 3.78125 -6.140625 C 3.90625 -6.023438 4.003906 -5.890625 4.078125 -5.734375 C 4.148438 -5.578125 4.1875 -5.398438  [...]
+</symbol>
+<symbol overflow="visible" id="glyph1-1">
+<path style="stroke:none;" d="M 5.71875 -3.71875 C 5.71875 -3.070312 5.644531 -2.507812 5.5 -2.03125 C 5.363281 -1.550781 5.175781 -1.15625 4.9375 -0.84375 C 4.695312 -0.53125 4.410156 -0.296875 4.078125 -0.140625 C 3.742188 0.00390625 3.390625 0.078125 3.015625 0.078125 C 2.628906 0.078125 2.269531 0.00390625 1.9375 -0.140625 C 1.613281 -0.296875 1.332031 -0.53125 1.09375 -0.84375 C 0.851562 -1.15625 0.660156 -1.550781 0.515625 -2.03125 C 0.378906 -2.507812 0.3125 -3.070312 0.3125 -3.71 [...]
+</symbol>
+<symbol overflow="visible" id="glyph1-2">
+<path style="stroke:none;" d="M 1.296875 -0.703125 L 2.890625 -0.703125 L 2.890625 -5.796875 C 2.890625 -5.941406 2.894531 -6.09375 2.90625 -6.25 L 1.59375 -5.109375 C 1.539062 -5.078125 1.492188 -5.054688 1.453125 -5.046875 C 1.410156 -5.035156 1.367188 -5.03125 1.328125 -5.03125 C 1.285156 -5.039062 1.25 -5.054688 1.21875 -5.078125 C 1.1875 -5.097656 1.160156 -5.125 1.140625 -5.15625 L 0.859375 -5.546875 L 3.078125 -7.46875 L 3.828125 -7.46875 L 3.828125 -0.703125 L 5.296875 -0.703125  [...]
+</symbol>
+<symbol overflow="visible" id="glyph1-3">
+<path style="stroke:none;" d="M 3.078125 -7.546875 C 3.390625 -7.546875 3.679688 -7.5 3.953125 -7.40625 C 4.234375 -7.3125 4.472656 -7.171875 4.671875 -6.984375 C 4.867188 -6.804688 5.023438 -6.585938 5.140625 -6.328125 C 5.253906 -6.078125 5.3125 -5.789062 5.3125 -5.46875 C 5.3125 -5.1875 5.269531 -4.925781 5.1875 -4.6875 C 5.101562 -4.445312 4.988281 -4.21875 4.84375 -4 C 4.707031 -3.789062 4.546875 -3.582031 4.359375 -3.375 C 4.171875 -3.175781 3.972656 -2.972656 3.765625 -2.765625 L  [...]
+</symbol>
+<symbol overflow="visible" id="glyph2-0">
+<path style="stroke:none;" d="M 1.796875 -12.390625 L 11.6875 -12.390625 L 11.6875 0 L 1.796875 0 Z M 2.46875 -11.71875 L 2.46875 -0.671875 L 11.015625 -0.671875 L 11.015625 -11.71875 Z M 2.46875 -11.71875 "/>
+</symbol>
+<symbol overflow="visible" id="glyph2-1">
+<path style="stroke:none;" d="M 3.171875 -8.359375 L 3.171875 0 L 1.59375 0 L 1.59375 -8.359375 L 0.25 -8.359375 L 0.25 -9.515625 L 1.59375 -9.515625 L 1.59375 -10.578125 C 1.59375 -11.453125 1.78125 -12.078125 2.15625 -12.453125 C 2.539062 -12.835938 3.125 -13.03125 3.90625 -13.03125 C 4.351562 -13.03125 4.726562 -12.992188 5.03125 -12.921875 L 5.03125 -11.71875 C 4.757812 -11.757812 4.523438 -11.78125 4.328125 -11.78125 C 3.921875 -11.78125 3.625 -11.675781 3.4375 -11.46875 C 3.257812  [...]
+</symbol>
+<symbol overflow="visible" id="glyph2-2">
+<path style="stroke:none;" d="M 3.640625 0.171875 C 2.679688 0.171875 1.960938 -0.078125 1.484375 -0.578125 C 1.003906 -1.085938 0.765625 -1.78125 0.765625 -2.65625 C 0.765625 -3.632812 1.085938 -4.390625 1.734375 -4.921875 C 2.378906 -5.453125 3.425781 -5.734375 4.875 -5.765625 L 7 -5.796875 L 7 -6.3125 C 7 -7.09375 6.832031 -7.648438 6.5 -7.984375 C 6.175781 -8.316406 5.664062 -8.484375 4.96875 -8.484375 C 4.257812 -8.484375 3.742188 -8.363281 3.421875 -8.125 C 3.097656 -7.882812 2.906 [...]
+</symbol>
+<symbol overflow="visible" id="glyph2-3">
+<path style="stroke:none;" d="M 8.34375 -2.625 C 8.34375 -1.726562 8.003906 -1.035156 7.328125 -0.546875 C 6.648438 -0.0664062 5.703125 0.171875 4.484375 0.171875 C 3.304688 0.171875 2.394531 -0.0195312 1.75 -0.40625 C 1.113281 -0.800781 0.695312 -1.410156 0.5 -2.234375 L 1.90625 -2.5 C 2.03125 -1.988281 2.300781 -1.613281 2.71875 -1.375 C 3.144531 -1.144531 3.734375 -1.03125 4.484375 -1.03125 C 5.296875 -1.03125 5.882812 -1.148438 6.25 -1.390625 C 6.625 -1.640625 6.8125 -2.007812 6.8125 [...]
+</symbol>
+<symbol overflow="visible" id="glyph2-4">
+<path style="stroke:none;" d="M 4.875 -0.078125 C 4.351562 0.0664062 3.816406 0.140625 3.265625 0.140625 C 2.003906 0.140625 1.375 -0.578125 1.375 -2.015625 L 1.375 -8.359375 L 0.265625 -8.359375 L 0.265625 -9.515625 L 1.4375 -9.515625 L 1.90625 -11.640625 L 2.953125 -11.640625 L 2.953125 -9.515625 L 4.71875 -9.515625 L 4.71875 -8.359375 L 2.953125 -8.359375 L 2.953125 -2.359375 C 2.953125 -1.898438 3.023438 -1.578125 3.171875 -1.390625 C 3.328125 -1.203125 3.585938 -1.109375 3.953125 -1 [...]
+</symbol>
+<symbol overflow="visible" id="glyph2-5">
+<path style="stroke:none;" d="M 6.75 0 L 6.75 -6.03125 C 6.75 -6.945312 6.625 -7.582031 6.375 -7.9375 C 6.125 -8.289062 5.671875 -8.46875 5.015625 -8.46875 C 4.335938 -8.46875 3.800781 -8.207031 3.40625 -7.6875 C 3.019531 -7.175781 2.828125 -6.453125 2.828125 -5.515625 L 2.828125 0 L 1.25 0 L 1.25 -7.484375 C 1.25 -8.585938 1.234375 -9.265625 1.203125 -9.515625 L 2.6875 -9.515625 C 2.695312 -9.484375 2.703125 -9.398438 2.703125 -9.265625 C 2.710938 -9.140625 2.722656 -8.992188 2.734375 - [...]
+</symbol>
+<symbol overflow="visible" id="glyph2-6">
+<path style="stroke:none;" d="M 2.421875 -4.796875 C 2.421875 -3.535156 2.617188 -2.597656 3.015625 -1.984375 C 3.410156 -1.378906 4.007812 -1.078125 4.8125 -1.078125 C 5.375 -1.078125 5.84375 -1.226562 6.21875 -1.53125 C 6.601562 -1.832031 6.835938 -2.300781 6.921875 -2.9375 L 8.53125 -2.828125 C 8.40625 -1.910156 8.015625 -1.179688 7.359375 -0.640625 C 6.703125 -0.0976562 5.867188 0.171875 4.859375 0.171875 C 3.523438 0.171875 2.507812 -0.242188 1.8125 -1.078125 C 1.113281 -1.921875 0. [...]
+</symbol>
+<symbol overflow="visible" id="glyph2-7">
+<path style="stroke:none;" d="M 2.78125 -7.890625 C 3.125 -8.503906 3.535156 -8.957031 4.015625 -9.25 C 4.492188 -9.539062 5.097656 -9.6875 5.828125 -9.6875 C 6.859375 -9.6875 7.617188 -9.425781 8.109375 -8.90625 C 8.597656 -8.394531 8.84375 -7.539062 8.84375 -6.34375 L 8.84375 0 L 7.25 0 L 7.25 -6.03125 C 7.25 -6.695312 7.1875 -7.191406 7.0625 -7.515625 C 6.9375 -7.835938 6.734375 -8.078125 6.453125 -8.234375 C 6.171875 -8.390625 5.785156 -8.46875 5.296875 -8.46875 C 4.546875 -8.46875 3 [...]
+</symbol>
+<symbol overflow="visible" id="glyph2-8">
+<path style="stroke:none;" d="M 1.203125 -11.53125 L 1.203125 -13.046875 L 2.78125 -13.046875 L 2.78125 -11.53125 Z M 1.203125 0 L 1.203125 -9.515625 L 2.78125 -9.515625 L 2.78125 0 Z M 1.203125 0 "/>
+</symbol>
+<symbol overflow="visible" id="glyph2-9">
+<path style="stroke:none;" d="M 7.25 0 L 7.25 -6.03125 C 7.25 -6.65625 7.1875 -7.140625 7.0625 -7.484375 C 6.9375 -7.828125 6.738281 -8.078125 6.46875 -8.234375 C 6.207031 -8.390625 5.816406 -8.46875 5.296875 -8.46875 C 4.535156 -8.46875 3.929688 -8.207031 3.484375 -7.6875 C 3.046875 -7.164062 2.828125 -6.441406 2.828125 -5.515625 L 2.828125 0 L 1.25 0 L 1.25 -7.484375 C 1.25 -8.585938 1.234375 -9.265625 1.203125 -9.515625 L 2.6875 -9.515625 C 2.695312 -9.484375 2.703125 -9.398438 2.7031 [...]
+</symbol>
+<symbol overflow="visible" id="glyph2-10">
+<path style="stroke:none;" d="M 2.421875 -4.421875 C 2.421875 -3.328125 2.644531 -2.484375 3.09375 -1.890625 C 3.550781 -1.304688 4.210938 -1.015625 5.078125 -1.015625 C 5.765625 -1.015625 6.3125 -1.148438 6.71875 -1.421875 C 7.132812 -1.703125 7.414062 -2.050781 7.5625 -2.46875 L 8.953125 -2.078125 C 8.390625 -0.578125 7.097656 0.171875 5.078125 0.171875 C 3.671875 0.171875 2.597656 -0.242188 1.859375 -1.078125 C 1.128906 -1.921875 0.765625 -3.164062 0.765625 -4.8125 C 0.765625 -6.38281 [...]
+</symbol>
+<symbol overflow="visible" id="glyph2-11">
+<path style="stroke:none;" d="M 1.21875 0 L 1.21875 -13.046875 L 2.796875 -13.046875 L 2.796875 0 Z M 1.21875 0 "/>
+</symbol>
+<symbol overflow="visible" id="glyph2-12">
+<path style="stroke:none;" d="M 9.25 -4.765625 C 9.25 -3.097656 8.882812 -1.859375 8.15625 -1.046875 C 7.425781 -0.234375 6.363281 0.171875 4.96875 0.171875 C 3.582031 0.171875 2.53125 -0.25 1.8125 -1.09375 C 1.101562 -1.9375 0.75 -3.160156 0.75 -4.765625 C 0.75 -8.046875 2.171875 -9.6875 5.015625 -9.6875 C 6.472656 -9.6875 7.539062 -9.285156 8.21875 -8.484375 C 8.90625 -7.679688 9.25 -6.441406 9.25 -4.765625 Z M 7.59375 -4.765625 C 7.59375 -6.078125 7.394531 -7.03125 7 -7.625 C 6.613281 [...]
+</symbol>
+<symbol overflow="visible" id="glyph2-13">
+<path style="stroke:none;" d="M 10.3125 0 L 8.484375 0 L 6.828125 -6.71875 L 6.5 -8.203125 C 6.445312 -7.941406 6.363281 -7.5625 6.25 -7.0625 C 6.144531 -6.570312 5.550781 -4.21875 4.46875 0 L 2.640625 0 L -0.03125 -9.515625 L 1.53125 -9.515625 L 3.140625 -3.046875 C 3.179688 -2.910156 3.3125 -2.332031 3.53125 -1.3125 L 3.671875 -1.953125 L 5.65625 -9.515625 L 7.359375 -9.515625 L 9.015625 -2.984375 L 9.421875 -1.3125 L 9.6875 -2.53125 L 11.5 -9.515625 L 13.046875 -9.515625 Z M 10.3125 0 "/>
+</symbol>
+<symbol overflow="visible" id="glyph2-14">
+<path style="stroke:none;" d="M 2.765625 -9.515625 L 2.765625 -3.484375 C 2.765625 -2.859375 2.820312 -2.367188 2.9375 -2.015625 C 3.0625 -1.671875 3.257812 -1.421875 3.53125 -1.265625 C 3.800781 -1.117188 4.195312 -1.046875 4.71875 -1.046875 C 5.476562 -1.046875 6.078125 -1.304688 6.515625 -1.828125 C 6.960938 -2.347656 7.1875 -3.070312 7.1875 -4 L 7.1875 -9.515625 L 8.765625 -9.515625 L 8.765625 -2.03125 C 8.765625 -0.925781 8.78125 -0.25 8.8125 0 L 7.328125 0 C 7.316406 -0.03125 7.304 [...]
+</symbol>
+<symbol overflow="visible" id="glyph2-15">
+<path style="stroke:none;" d="M 7.21875 -1.53125 C 6.925781 -0.914062 6.535156 -0.476562 6.046875 -0.21875 C 5.566406 0.0390625 4.96875 0.171875 4.25 0.171875 C 3.050781 0.171875 2.164062 -0.226562 1.59375 -1.03125 C 1.03125 -1.84375 0.75 -3.070312 0.75 -4.71875 C 0.75 -8.03125 1.914062 -9.6875 4.25 -9.6875 C 4.96875 -9.6875 5.566406 -9.550781 6.046875 -9.28125 C 6.535156 -9.019531 6.925781 -8.601562 7.21875 -8.03125 L 7.234375 -8.03125 L 7.21875 -9.09375 L 7.21875 -13.046875 L 8.796875  [...]
+</symbol>
+<symbol overflow="visible" id="glyph2-16">
+<path style="stroke:none;" d="M 6.96875 -11.203125 C 5.59375 -11.203125 4.523438 -10.757812 3.765625 -9.875 C 3.003906 -8.988281 2.625 -7.78125 2.625 -6.25 C 2.625 -4.726562 3.019531 -3.503906 3.8125 -2.578125 C 4.601562 -1.660156 5.675781 -1.203125 7.03125 -1.203125 C 8.769531 -1.203125 10.070312 -2.0625 10.9375 -3.78125 L 12.3125 -3.09375 C 11.800781 -2.03125 11.082031 -1.21875 10.15625 -0.65625 C 9.238281 -0.101562 8.171875 0.171875 6.953125 0.171875 C 5.703125 0.171875 4.617188 -0.08 [...]
+</symbol>
+<symbol overflow="visible" id="glyph2-17">
+<path style="stroke:none;" d="M 1.25 0 L 1.25 -7.296875 C 1.25 -7.960938 1.234375 -8.703125 1.203125 -9.515625 L 2.6875 -9.515625 C 2.738281 -8.429688 2.765625 -7.78125 2.765625 -7.5625 L 2.796875 -7.5625 C 3.046875 -8.382812 3.332031 -8.941406 3.65625 -9.234375 C 3.988281 -9.535156 4.453125 -9.6875 5.046875 -9.6875 C 5.265625 -9.6875 5.484375 -9.65625 5.703125 -9.59375 L 5.703125 -8.140625 C 5.484375 -8.203125 5.203125 -8.234375 4.859375 -8.234375 C 4.203125 -8.234375 3.695312 -7.953125 [...]
+</symbol>
+<symbol overflow="visible" id="glyph2-18">
+<path style="stroke:none;" d="M 5.390625 0 L 3.515625 0 L 0.0625 -9.515625 L 1.75 -9.515625 L 3.84375 -3.328125 C 3.914062 -3.085938 4.117188 -2.390625 4.453125 -1.234375 L 4.75 -2.265625 L 5.09375 -3.3125 L 7.265625 -9.515625 L 8.9375 -9.515625 Z M 5.390625 0 "/>
+</symbol>
+<symbol overflow="visible" id="glyph2-19">
+<path style="stroke:none;" d="M 7.046875 0 L 4.484375 -3.90625 L 1.90625 0 L 0.203125 0 L 3.59375 -4.890625 L 0.359375 -9.515625 L 2.109375 -9.515625 L 4.484375 -5.8125 L 6.84375 -9.515625 L 8.609375 -9.515625 L 5.375 -4.90625 L 8.8125 0 Z M 7.046875 0 "/>
+</symbol>
+<symbol overflow="visible" id="glyph2-20">
+<path style="stroke:none;" d=""/>
+</symbol>
+<symbol overflow="visible" id="glyph2-21">
+<path style="stroke:none;" d="M 0.734375 0 L 0.734375 -1.203125 L 6.046875 -8.28125 L 1.03125 -8.28125 L 1.03125 -9.515625 L 7.921875 -9.515625 L 7.921875 -8.3125 L 2.59375 -1.21875 L 8.109375 -1.21875 L 8.109375 0 Z M 0.734375 0 "/>
+</symbol>
+<symbol overflow="visible" id="glyph2-22">
+<path style="stroke:none;" d="M 4.8125 3.734375 C 3.78125 3.734375 2.957031 3.53125 2.34375 3.125 C 1.726562 2.71875 1.332031 2.140625 1.15625 1.390625 L 2.75 1.15625 C 2.851562 1.59375 3.082031 1.929688 3.4375 2.171875 C 3.800781 2.410156 4.273438 2.53125 4.859375 2.53125 C 6.429688 2.53125 7.21875 1.609375 7.21875 -0.234375 L 7.21875 -1.765625 L 7.203125 -1.765625 C 6.910156 -1.160156 6.5 -0.703125 5.96875 -0.390625 C 5.445312 -0.078125 4.84375 0.078125 4.15625 0.078125 C 2.988281 0.07 [...]
+</symbol>
+<symbol overflow="visible" id="glyph2-23">
+<path style="stroke:none;" d="M 9.25 -4.796875 C 9.25 -1.484375 8.082031 0.171875 5.75 0.171875 C 5.03125 0.171875 4.429688 0.0390625 3.953125 -0.21875 C 3.484375 -0.476562 3.097656 -0.898438 2.796875 -1.484375 L 2.78125 -1.484375 C 2.78125 -1.296875 2.765625 -1.015625 2.734375 -0.640625 C 2.710938 -0.273438 2.695312 -0.0625 2.6875 0 L 1.15625 0 C 1.195312 -0.3125 1.21875 -0.960938 1.21875 -1.953125 L 1.21875 -13.046875 L 2.796875 -13.046875 L 2.796875 -9.328125 C 2.796875 -8.941406 2.78 [...]
+</symbol>
+<symbol overflow="visible" id="glyph2-24">
+<path style="stroke:none;" d="M 7.171875 0 L 3.953125 -4.34375 L 2.796875 -3.390625 L 2.796875 0 L 1.21875 0 L 1.21875 -13.046875 L 2.796875 -13.046875 L 2.796875 -4.890625 L 6.96875 -9.515625 L 8.828125 -9.515625 L 4.96875 -5.421875 L 9.03125 0 Z M 7.171875 0 "/>
+</symbol>
+</g>
+<clipPath id="clip1">
+  <rect x="0" y="0" width="520" height="165"/>
+</clipPath>
+<g id="surface5" clip-path="url(#clip1)">
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph0-1" x="135.1" y="60.4"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph0-2" x="149.806" y="60.4"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph0-3" x="158.788" y="60.4"/>
+  <use xlink:href="#glyph0-3" x="168.868" y="60.4"/>
+  <use xlink:href="#glyph0-4" x="178.948" y="60.4"/>
+  <use xlink:href="#glyph0-5" x="188.452" y="60.4"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph1-1" x="195.1" y="64.9"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph0-1" x="135.1" y="105.3"/>
+  <use xlink:href="#glyph0-2" x="149.896" y="105.3"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph0-3" x="158.788" y="105.3"/>
+  <use xlink:href="#glyph0-3" x="168.868" y="105.3"/>
+  <use xlink:href="#glyph0-4" x="178.948" y="105.3"/>
+  <use xlink:href="#glyph0-5" x="188.452" y="105.3"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph1-2" x="195.1" y="109.8"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph0-1" x="138" y="150.4"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph0-2" x="152.706" y="150.4"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph0-3" x="161.688" y="150.4"/>
+  <use xlink:href="#glyph0-3" x="171.768" y="150.4"/>
+  <use xlink:href="#glyph0-4" x="181.848" y="150.4"/>
+  <use xlink:href="#glyph0-5" x="191.352" y="150.4"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph1-3" x="198" y="154.9"/>
+</g>
+<g style="fill:rgb(0%,65.097046%,36.468506%);fill-opacity:1;">
+  <use xlink:href="#glyph0-5" x="405.8" y="77.2"/>
+</g>
+<g style="fill:rgb(0%,65.097046%,36.468506%);fill-opacity:1;">
+  <use xlink:href="#glyph0-4" x="411.992" y="77.2"/>
+  <use xlink:href="#glyph0-6" x="421.496" y="77.2"/>
+  <use xlink:href="#glyph0-7" x="431.576" y="77.2"/>
+</g>
+<g style="fill:rgb(0%,65.097046%,36.468506%);fill-opacity:1;">
+  <use xlink:href="#glyph0-8" x="441.656" y="77.2"/>
+</g>
+<g style="fill:rgb(0%,65.097046%,36.468506%);fill-opacity:1;">
+  <use xlink:href="#glyph0-4" x="450.062" y="77.2"/>
+</g>
+<g style="fill:rgb(0%,65.097046%,36.468506%);fill-opacity:1;">
+  <use xlink:href="#glyph0-5" x="459.458" y="77.2"/>
+</g>
+<g style="fill:rgb(0%,65.097046%,36.468506%);fill-opacity:1;">
+  <use xlink:href="#glyph1-1" x="466.1" y="81.8"/>
+</g>
+<g style="fill:rgb(0%,39.99939%,70.195007%);fill-opacity:1;">
+  <use xlink:href="#glyph0-5" x="405.8" y="143"/>
+</g>
+<g style="fill:rgb(0%,39.99939%,70.195007%);fill-opacity:1;">
+  <use xlink:href="#glyph0-4" x="411.992" y="143"/>
+  <use xlink:href="#glyph0-6" x="421.496" y="143"/>
+  <use xlink:href="#glyph0-7" x="431.576" y="143"/>
+</g>
+<g style="fill:rgb(0%,39.99939%,70.195007%);fill-opacity:1;">
+  <use xlink:href="#glyph0-8" x="441.656" y="143"/>
+</g>
+<g style="fill:rgb(0%,39.99939%,70.195007%);fill-opacity:1;">
+  <use xlink:href="#glyph0-4" x="450.062" y="143"/>
+</g>
+<g style="fill:rgb(0%,39.99939%,70.195007%);fill-opacity:1;">
+  <use xlink:href="#glyph0-5" x="459.458" y="143"/>
+</g>
+<g style="fill:rgb(0%,39.99939%,70.195007%);fill-opacity:1;">
+  <use xlink:href="#glyph1-2" x="466.1" y="147.5"/>
+</g>
+<path style=" stroke:none;fill-rule:evenodd;fill:rgb(0%,65.097046%,36.468506%);fill-opacity:1;" d="M 219.5 43.898438 L 219.5 43.300781 L 219.601562 43.199219 L 219.601562 43.101562 L 219.699219 42.898438 L 219.699219 42.800781 L 219.800781 42.699219 L 219.800781 42.601562 L 219.898438 42.5 L 220 42.398438 L 220.101562 42.300781 L 220.199219 42.199219 L 220.199219 42.101562 L 220.398438 42 L 220.601562 41.898438 L 220.699219 41.800781 L 220.800781 41.800781 L 220.898438 41.699219 L 221 41 [...]
+<path style="fill:none;stroke-width:0.7358;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 335.5 280.101562 L 335.5 280.699219 L 335.601562 280.800781 L 335.601562 280.898438 L 335.699219 281.101562 L 335.699219 281.199219 L 335.800781 281.300781 L 335.800781 281.398438 L 335.898438 281.5 L 336 281.601562 L 336.101562 281.699219 L 336.199219 281.800781 L 336.199219 281.898438 L 336.398438 282 L 336.601562 282.101562 L 336.699219 [...]
+<path style="fill:none;stroke-width:0.7358;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 335.5 282.5 Z M 335.5 282.5 " transform="matrix(1,0,0,-1,-116,324)"/>
+<path style="fill:none;stroke-width:0.7358;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 371.699219 267.800781 Z M 371.699219 267.800781 " transform="matrix(1,0,0,-1,-116,324)"/>
+<path style=" stroke:none;fill-rule:evenodd;fill:rgb(0%,39.99939%,70.195007%);fill-opacity:1;" d="M 219.5 57.898438 L 219.5 57.300781 L 219.601562 57.101562 L 219.601562 57 L 219.699219 56.898438 L 219.699219 56.800781 L 219.800781 56.699219 L 219.800781 56.601562 L 219.898438 56.5 L 220 56.398438 L 220.101562 56.300781 L 220.199219 56.199219 L 220.199219 56.101562 L 220.398438 56 L 220.398438 55.898438 L 220.601562 55.898438 L 220.800781 55.699219 L 220.898438 55.699219 L 221 55.601562  [...]
+<path style="fill:none;stroke-width:0.7358;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 335.5 266.101562 L 335.5 266.699219 L 335.601562 266.898438 L 335.601562 267 L 335.699219 267.101562 L 335.699219 267.199219 L 335.800781 267.300781 L 335.800781 267.398438 L 335.898438 267.5 L 336 267.601562 L 336.101562 267.699219 L 336.199219 267.800781 L 336.199219 267.898438 L 336.398438 268 L 336.398438 268.101562 L 336.601562 268.10 [...]
+<path style="fill:none;stroke-width:0.7358;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 335.5 268.5 Z M 335.5 268.5 " transform="matrix(1,0,0,-1,-116,324)"/>
+<path style="fill:none;stroke-width:0.7358;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 371.699219 253.800781 Z M 371.699219 253.800781 " transform="matrix(1,0,0,-1,-116,324)"/>
+<path style=" stroke:none;fill-rule:evenodd;fill:rgb(0%,65.097046%,36.468506%);fill-opacity:1;" d="M 219.5 89.300781 L 219.5 88.800781 L 219.601562 88.699219 L 219.601562 88.601562 L 219.699219 88.398438 L 219.699219 88.199219 L 219.800781 88.101562 L 219.898438 88 L 219.898438 87.898438 L 220 87.800781 L 220.300781 87.5 L 220.398438 87.398438 L 220.5 87.300781 L 220.601562 87.300781 L 220.699219 87.199219 L 220.800781 87.101562 L 221 87.101562 L 221.199219 87 L 221.300781 87 L 221.39843 [...]
+<path style="fill:none;stroke-width:0.7358;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 335.5 234.699219 L 335.5 235.199219 L 335.601562 235.300781 L 335.601562 235.398438 L 335.699219 235.601562 L 335.699219 235.800781 L 335.800781 235.898438 L 335.898438 236 L 335.898438 236.101562 L 336 236.199219 L 336.300781 236.5 L 336.398438 236.601562 L 336.5 236.699219 L 336.601562 236.699219 L 336.699219 236.800781 L 336.800781 236. [...]
+<path style="fill:none;stroke-width:0.7358;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 335.5 237.101562 Z M 335.5 237.101562 " transform="matrix(1,0,0,-1,-116,324)"/>
+<path style="fill:none;stroke-width:0.7358;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 350.199219 222.398438 Z M 350.199219 222.398438 " transform="matrix(1,0,0,-1,-116,324)"/>
+<path style=" stroke:none;fill-rule:evenodd;fill:rgb(0%,39.99939%,70.195007%);fill-opacity:1;" d="M 219.5 103.300781 L 219.5 102.800781 L 219.601562 102.699219 L 219.601562 102.5 L 219.699219 102.398438 L 219.699219 102.199219 L 219.800781 102.101562 L 219.898438 102 L 219.898438 101.800781 L 220 101.800781 L 220.300781 101.5 L 220.398438 101.398438 L 220.5 101.300781 L 220.601562 101.300781 L 220.699219 101.199219 L 220.800781 101.101562 L 220.898438 101.101562 L 221 101 L 221.199219 10 [...]
+<path style="fill:none;stroke-width:0.7358;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 335.5 220.699219 L 335.5 221.199219 L 335.601562 221.300781 L 335.601562 221.5 L 335.699219 221.601562 L 335.699219 221.800781 L 335.800781 221.898438 L 335.898438 222 L 335.898438 222.199219 L 336 222.199219 L 336.300781 222.5 L 336.398438 222.601562 L 336.5 222.699219 L 336.601562 222.699219 L 336.699219 222.800781 L 336.800781 222.89843 [...]
+<path style="fill:none;stroke-width:0.7358;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 335.5 223.101562 Z M 335.5 223.101562 " transform="matrix(1,0,0,-1,-116,324)"/>
+<path style="fill:none;stroke-width:0.7358;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 350.199219 208.398438 Z M 350.199219 208.398438 " transform="matrix(1,0,0,-1,-116,324)"/>
+<path style=" stroke:none;fill-rule:evenodd;fill:rgb(0%,65.097046%,36.468506%);fill-opacity:1;" d="M 219.5 137.5 L 219.5 137 L 219.601562 136.898438 L 219.601562 136.800781 L 219.699219 136.699219 L 219.699219 136.398438 L 219.800781 136.300781 L 219.898438 136.199219 L 219.898438 136.101562 L 220.398438 135.601562 L 220.5 135.601562 L 220.601562 135.5 L 220.699219 135.398438 L 220.800781 135.398438 L 220.898438 135.300781 L 221 135.300781 L 221.199219 135.199219 L 221.398438 135.199219  [...]
+<path style="fill:none;stroke-width:0.7358;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 335.5 186.5 L 335.5 187 L 335.601562 187.101562 L 335.601562 187.199219 L 335.699219 187.300781 L 335.699219 187.601562 L 335.800781 187.699219 L 335.898438 187.800781 L 335.898438 187.898438 L 336.398438 188.398438 L 336.5 188.398438 L 336.601562 188.5 L 336.699219 188.601562 L 336.800781 188.601562 L 336.898438 188.699219 L 337 188.69921 [...]
+<path style="fill:none;stroke-width:0.7358;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 335.5 188.898438 Z M 335.5 188.898438 " transform="matrix(1,0,0,-1,-116,324)"/>
+<path style="fill:none;stroke-width:0.7358;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 350.199219 174.199219 Z M 350.199219 174.199219 " transform="matrix(1,0,0,-1,-116,324)"/>
+<path style=" stroke:none;fill-rule:evenodd;fill:rgb(0%,39.99939%,70.195007%);fill-opacity:1;" d="M 219.5 151.5 L 219.5 151 L 219.601562 150.898438 L 219.601562 150.699219 L 219.699219 150.601562 L 219.699219 150.398438 L 219.800781 150.300781 L 219.898438 150.199219 L 219.898438 150.101562 L 220.5 149.5 L 220.601562 149.5 L 220.699219 149.398438 L 220.800781 149.300781 L 220.898438 149.300781 L 221 149.199219 L 221.300781 149.199219 L 221.398438 149.101562 L 232.199219 149.101562 L 232. [...]
+<path style="fill:none;stroke-width:0.7358;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 335.5 172.5 L 335.5 173 L 335.601562 173.101562 L 335.601562 173.300781 L 335.699219 173.398438 L 335.699219 173.601562 L 335.800781 173.699219 L 335.898438 173.800781 L 335.898438 173.898438 L 336.5 174.5 L 336.601562 174.5 L 336.699219 174.601562 L 336.800781 174.699219 L 336.898438 174.699219 L 337 174.800781 L 337.300781 174.800781 L 3 [...]
+<path style="fill:none;stroke-width:0.7358;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 335.5 174.898438 Z M 335.5 174.898438 " transform="matrix(1,0,0,-1,-116,324)"/>
+<path style="fill:none;stroke-width:0.7358;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 350.199219 160.199219 Z M 350.199219 160.199219 " transform="matrix(1,0,0,-1,-116,324)"/>
+<path style="fill:none;stroke-width:1.4999;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,65.097046%,36.468506%);stroke-opacity:1;stroke-miterlimit:10;" d="M 460.5 275.300781 L 510 255.800781 " transform="matrix(1,0,0,-1,-116,324)"/>
+<path style=" stroke:none;fill-rule:evenodd;fill:rgb(0%,65.097046%,36.468506%);fill-opacity:1;" d="M 399.398438 70.300781 L 394.898438 64.300781 L 392.101562 71.699219 Z M 399.398438 70.300781 "/>
+<path style="fill:none;stroke-width:1.4999;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,65.097046%,36.468506%);stroke-opacity:1;stroke-miterlimit:10;" d="M 460.398438 228.101562 L 510 248.199219 " transform="matrix(1,0,0,-1,-116,324)"/>
+<path style=" stroke:none;fill-rule:evenodd;fill:rgb(0%,65.097046%,36.468506%);fill-opacity:1;" d="M 399.398438 73.601562 L 392 72.300781 L 395 79.699219 Z M 399.398438 73.601562 "/>
+<path style="fill:none;stroke-width:1.4999;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,65.097046%,36.468506%);stroke-opacity:1;stroke-miterlimit:10;" d="M 460.601562 183.898438 L 511.101562 240.800781 " transform="matrix(1,0,0,-1,-116,324)"/>
+<path style=" stroke:none;fill-rule:evenodd;fill:rgb(0%,65.097046%,36.468506%);fill-opacity:1;" d="M 398.898438 78.898438 L 391.699219 81 L 397.699219 86.199219 Z M 398.898438 78.898438 "/>
+<path style="fill:none;stroke-width:1.4999;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,39.99939%,70.195007%);stroke-opacity:1;stroke-miterlimit:10;" d="M 460.5 260.898438 L 512.601562 193.5 " transform="matrix(1,0,0,-1,-116,324)"/>
+<path style=" stroke:none;fill-rule:evenodd;fill:rgb(0%,39.99939%,70.195007%);fill-opacity:1;" d="M 400.101562 135.101562 L 399.398438 127.699219 L 393.199219 132.5 Z M 400.101562 135.101562 "/>
+<path style="fill:none;stroke-width:1.4999;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,39.99939%,70.195007%);stroke-opacity:1;stroke-miterlimit:10;" d="M 460.601562 217.699219 L 510.398438 186.898438 " transform="matrix(1,0,0,-1,-116,324)"/>
+<path style=" stroke:none;fill-rule:evenodd;fill:rgb(0%,39.99939%,70.195007%);fill-opacity:1;" d="M 399.398438 140.101562 L 396.101562 133.398438 L 391.898438 140.101562 Z M 399.398438 140.101562 "/>
+<path style="fill:none;stroke-width:1.4999;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,39.99939%,70.195007%);stroke-opacity:1;stroke-miterlimit:10;" d="M 460.601562 167.300781 L 509.800781 180.199219 " transform="matrix(1,0,0,-1,-116,324)"/>
+<path style=" stroke:none;fill-rule:evenodd;fill:rgb(0%,39.99939%,70.195007%);fill-opacity:1;" d="M 399.398438 142.300781 L 392.300781 140.101562 L 394.300781 147.699219 Z M 399.398438 142.300781 "/>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 243.898438 237.101562 C 240.300781 237.101562 236.699219 233.898438 236.699219 230.699219 L 236.699219 205.101562 C 236.699219 201.898438 233.101562 198.601562 229.5 198.601562 C 233.101562 198.601562 236.699219 195.398438 236.699219 192.199219 L 236.699219 166.5 C 236.699219 163.300781 240.300781 160.101562 243.898 [...]
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 229.5 237.101562 Z M 229.5 237.101562 " transform="matrix(1,0,0,-1,-116,324)"/>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 243.898438 160.101562 Z M 243.898438 160.101562 " transform="matrix(1,0,0,-1,-116,324)"/>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 243.898438 282.5 C 240.300781 282.5 236.699219 281.300781 236.699219 280.101562 L 236.699219 270.5 C 236.699219 269.300781 233.101562 268.101562 229.5 268.101562 C 233.101562 268.101562 236.699219 266.898438 236.699219 265.699219 L 236.699219 256.101562 C 236.699219 254.898438 240.300781 253.699219 243.898438 253.69 [...]
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 229.5 282.5 Z M 229.5 282.5 " transform="matrix(1,0,0,-1,-116,324)"/>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 243.898438 253.699219 Z M 243.898438 253.699219 " transform="matrix(1,0,0,-1,-116,324)"/>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph2-1" x="73.8" y="51.1"/>
+  <use xlink:href="#glyph2-2" x="78.786" y="51.1"/>
+  <use xlink:href="#glyph2-3" x="88.794" y="51.1"/>
+  <use xlink:href="#glyph2-4" x="97.794" y="51.1"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph2-5" x="35" y="71.3"/>
+  <use xlink:href="#glyph2-2" x="49.994" y="71.3"/>
+  <use xlink:href="#glyph2-6" x="60.002" y="71.3"/>
+  <use xlink:href="#glyph2-7" x="69.002" y="71.3"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph2-8" x="78.902" y="71.3"/>
+  <use xlink:href="#glyph2-9" x="82.898" y="71.3"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph2-10" x="92.798" y="71.3"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph2-3" x="67.4" y="119.4"/>
+  <use xlink:href="#glyph2-11" x="76.4" y="119.4"/>
+  <use xlink:href="#glyph2-12" x="80.396" y="119.4"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph2-13" x="90.296" y="119.4"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph2-5" x="26.5" y="139.5"/>
+  <use xlink:href="#glyph2-2" x="41.494" y="139.5"/>
+  <use xlink:href="#glyph2-6" x="51.502" y="139.5"/>
+  <use xlink:href="#glyph2-7" x="60.502" y="139.5"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph2-8" x="70.402" y="139.5"/>
+  <use xlink:href="#glyph2-9" x="74.398" y="139.5"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph2-10" x="84.298" y="139.5"/>
+  <use xlink:href="#glyph2-3" x="94.306" y="139.5"/>
+</g>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 445.101562 253.800781 L 429.699219 253.800781 L 429.699219 282.5 L 460.5 282.5 L 460.5 253.800781 Z M 445.101562 253.800781 " transform="matrix(1,0,0,-1,-116,324)"/>
+<path style=" stroke:none;fill-rule:evenodd;fill:rgb(69.802856%,69.802856%,69.802856%);fill-opacity:1;" d="M 316.898438 46 L 316.898438 45.398438 L 317 45.398438 L 317 45.199219 L 317.101562 45.101562 L 317.101562 45 L 317.199219 45 L 317.199219 44.898438 L 317.300781 44.800781 L 317.398438 44.800781 L 317.398438 44.699219 L 317.5 44.601562 L 317.601562 44.601562 L 317.601562 44.5 L 317.699219 44.5 L 317.800781 44.398438 L 318 44.398438 L 318 44.300781 L 318.300781 44.300781 L 318.398438 [...]
+<path style="fill:none;stroke-width:0.7358;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,65.097046%,36.468506%);stroke-opacity:1;stroke-miterlimit:10;" d="M 432.898438 278 L 432.898438 278.601562 L 433 278.601562 L 433 278.800781 L 433.101562 278.898438 L 433.101562 279 L 433.199219 279 L 433.199219 279.101562 L 433.300781 279.199219 L 433.398438 279.199219 L 433.398438 279.300781 L 433.5 279.398438 L 433.601562 279.398438 L 433.601562 279.5 L 433.699219 279.5 L 433.800781 279. [...]
+<path style="fill:none;stroke-width:0.7358;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,65.097046%,36.468506%);stroke-opacity:1;stroke-miterlimit:10;" d="M 432.898438 279.800781 Z M 432.898438 279.800781 " transform="matrix(1,0,0,-1,-116,324)"/>
+<path style="fill:none;stroke-width:0.7358;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,65.097046%,36.468506%);stroke-opacity:1;stroke-miterlimit:10;" d="M 443.199219 269.398438 Z M 443.199219 269.398438 " transform="matrix(1,0,0,-1,-116,324)"/>
+<path style=" stroke:none;fill-rule:evenodd;fill:rgb(69.802856%,69.802856%,69.802856%);fill-opacity:1;" d="M 330.300781 46 L 330.300781 45.5 L 330.398438 45.398438 L 330.398438 45.300781 L 330.5 45.199219 L 330.5 45.101562 L 330.601562 45 L 330.699219 44.898438 L 330.699219 44.800781 L 330.800781 44.800781 L 330.898438 44.699219 L 330.898438 44.601562 L 331 44.601562 L 331.101562 44.5 L 331.199219 44.5 L 331.199219 44.398438 L 331.398438 44.398438 L 331.5 44.300781 L 331.699219 44.300781 [...]
+<path style="fill:none;stroke-width:0.7358;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,65.097046%,36.468506%);stroke-opacity:1;stroke-miterlimit:10;" d="M 446.300781 278 L 446.300781 278.5 L 446.398438 278.601562 L 446.398438 278.699219 L 446.5 278.800781 L 446.5 278.898438 L 446.601562 279 L 446.699219 279.101562 L 446.699219 279.199219 L 446.800781 279.199219 L 446.898438 279.300781 L 446.898438 279.398438 L 447 279.398438 L 447.101562 279.5 L 447.199219 279.5 L 447.199219  [...]
+<path style="fill:none;stroke-width:0.7358;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,65.097046%,36.468506%);stroke-opacity:1;stroke-miterlimit:10;" d="M 446.300781 279.800781 Z M 446.300781 279.800781 " transform="matrix(1,0,0,-1,-116,324)"/>
+<path style="fill:none;stroke-width:0.7358;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,65.097046%,36.468506%);stroke-opacity:1;stroke-miterlimit:10;" d="M 456.699219 269.398438 Z M 456.699219 269.398438 " transform="matrix(1,0,0,-1,-116,324)"/>
+<path style=" stroke:none;fill-rule:evenodd;fill:rgb(69.802856%,69.802856%,69.802856%);fill-opacity:1;" d="M 316.898438 59 L 316.898438 58.5 L 317 58.398438 L 317 58.300781 L 317.101562 58.199219 L 317.101562 58.101562 L 317.199219 58 L 317.5 57.699219 L 317.601562 57.699219 L 317.601562 57.601562 L 317.699219 57.5 L 317.898438 57.5 L 318 57.398438 L 318.101562 57.398438 L 318.199219 57.300781 L 325.800781 57.300781 L 325.898438 57.398438 L 326.101562 57.398438 L 326.199219 57.5 L 326.30 [...]
+<path style="fill:none;stroke-width:0.7358;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,39.99939%,70.195007%);stroke-opacity:1;stroke-miterlimit:10;" d="M 432.898438 265 L 432.898438 265.5 L 433 265.601562 L 433 265.699219 L 433.101562 265.800781 L 433.101562 265.898438 L 433.199219 266 L 433.5 266.300781 L 433.601562 266.300781 L 433.601562 266.398438 L 433.699219 266.5 L 433.898438 266.5 L 434 266.601562 L 434.101562 266.601562 L 434.199219 266.699219 L 441.800781 266.699219 [...]
+<path style="fill:none;stroke-width:0.7358;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,39.99939%,70.195007%);stroke-opacity:1;stroke-miterlimit:10;" d="M 432.898438 266.699219 Z M 432.898438 266.699219 " transform="matrix(1,0,0,-1,-116,324)"/>
+<path style="fill:none;stroke-width:0.7358;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,39.99939%,70.195007%);stroke-opacity:1;stroke-miterlimit:10;" d="M 443.199219 256.300781 Z M 443.199219 256.300781 " transform="matrix(1,0,0,-1,-116,324)"/>
+<path style=" stroke:none;fill-rule:evenodd;fill:rgb(69.802856%,69.802856%,69.802856%);fill-opacity:1;" d="M 330.300781 59 L 330.300781 58.601562 L 330.398438 58.5 L 330.398438 58.300781 L 330.5 58.300781 L 330.5 58.199219 L 330.601562 58.101562 L 330.601562 58 L 330.699219 58 L 330.699219 57.898438 L 330.800781 57.800781 L 330.898438 57.800781 L 330.898438 57.699219 L 331 57.699219 L 331.101562 57.601562 L 331.199219 57.5 L 331.300781 57.5 L 331.398438 57.398438 L 331.601562 57.398438 L [...]
+<path style="fill:none;stroke-width:0.7358;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,39.99939%,70.195007%);stroke-opacity:1;stroke-miterlimit:10;" d="M 446.300781 265 L 446.300781 265.398438 L 446.398438 265.5 L 446.398438 265.699219 L 446.5 265.699219 L 446.5 265.800781 L 446.601562 265.898438 L 446.601562 266 L 446.699219 266 L 446.699219 266.101562 L 446.800781 266.199219 L 446.898438 266.199219 L 446.898438 266.300781 L 447 266.300781 L 447.101562 266.398438 L 447.19921 [...]
+<path style="fill:none;stroke-width:0.7358;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,39.99939%,70.195007%);stroke-opacity:1;stroke-miterlimit:10;" d="M 446.300781 266.699219 Z M 446.300781 266.699219 " transform="matrix(1,0,0,-1,-116,324)"/>
+<path style="fill:none;stroke-width:0.7358;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,39.99939%,70.195007%);stroke-opacity:1;stroke-miterlimit:10;" d="M 456.699219 256.300781 Z M 456.699219 256.300781 " transform="matrix(1,0,0,-1,-116,324)"/>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 445.101562 208.300781 L 429.699219 208.300781 L 429.699219 236.898438 L 460.5 236.898438 L 460.5 208.300781 Z M 445.101562 208.300781 " transform="matrix(1,0,0,-1,-116,324)"/>
+<path style=" stroke:none;fill-rule:evenodd;fill:rgb(69.802856%,69.802856%,69.802856%);fill-opacity:1;" d="M 316.898438 91.5 L 316.898438 91 L 317 90.898438 L 317 90.699219 L 317.101562 90.699219 L 317.101562 90.601562 L 317.199219 90.5 L 317.5 90.199219 L 317.601562 90.101562 L 317.699219 90 L 317.800781 90 L 317.898438 89.898438 L 318.101562 89.898438 L 318.199219 89.800781 L 325.800781 89.800781 L 325.898438 89.898438 L 326.199219 89.898438 L 326.300781 90 L 326.398438 90.101562 L 326 [...]
+<path style="fill:none;stroke-width:0.7358;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,65.097046%,36.468506%);stroke-opacity:1;stroke-miterlimit:10;" d="M 432.898438 232.5 L 432.898438 233 L 433 233.101562 L 433 233.300781 L 433.101562 233.300781 L 433.101562 233.398438 L 433.199219 233.5 L 433.5 233.800781 L 433.601562 233.898438 L 433.699219 234 L 433.800781 234 L 433.898438 234.101562 L 434.101562 234.101562 L 434.199219 234.199219 L 441.800781 234.199219 L 441.898438 234. [...]
+<path style="fill:none;stroke-width:0.7358;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,65.097046%,36.468506%);stroke-opacity:1;stroke-miterlimit:10;" d="M 432.898438 234.199219 Z M 432.898438 234.199219 " transform="matrix(1,0,0,-1,-116,324)"/>
+<path style="fill:none;stroke-width:0.7358;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,65.097046%,36.468506%);stroke-opacity:1;stroke-miterlimit:10;" d="M 443.199219 223.800781 Z M 443.199219 223.800781 " transform="matrix(1,0,0,-1,-116,324)"/>
+<path style=" stroke:none;fill-rule:evenodd;fill:rgb(69.802856%,69.802856%,69.802856%);fill-opacity:1;" d="M 330.300781 91.5 L 330.300781 91.101562 L 330.398438 91 L 330.398438 90.800781 L 330.5 90.699219 L 330.601562 90.601562 L 330.601562 90.5 L 330.699219 90.5 L 330.699219 90.398438 L 330.800781 90.300781 L 330.898438 90.300781 L 330.898438 90.199219 L 331 90.101562 L 331.101562 90.101562 L 331.199219 90 L 331.300781 89.898438 L 331.601562 89.898438 L 331.601562 89.800781 L 339.300781 [...]
+<path style="fill:none;stroke-width:0.7358;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,65.097046%,36.468506%);stroke-opacity:1;stroke-miterlimit:10;" d="M 446.300781 232.5 L 446.300781 232.898438 L 446.398438 233 L 446.398438 233.199219 L 446.5 233.300781 L 446.601562 233.398438 L 446.601562 233.5 L 446.699219 233.5 L 446.699219 233.601562 L 446.800781 233.699219 L 446.898438 233.699219 L 446.898438 233.800781 L 447 233.898438 L 447.101562 233.898438 L 447.199219 234 L 447.30 [...]
+<path style="fill:none;stroke-width:0.7358;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,65.097046%,36.468506%);stroke-opacity:1;stroke-miterlimit:10;" d="M 446.300781 234.199219 Z M 446.300781 234.199219 " transform="matrix(1,0,0,-1,-116,324)"/>
+<path style="fill:none;stroke-width:0.7358;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,65.097046%,36.468506%);stroke-opacity:1;stroke-miterlimit:10;" d="M 456.699219 223.800781 Z M 456.699219 223.800781 " transform="matrix(1,0,0,-1,-116,324)"/>
+<path style=" stroke:none;fill-rule:evenodd;fill:rgb(69.802856%,69.802856%,69.802856%);fill-opacity:1;" d="M 316.898438 104.601562 L 316.898438 104.101562 L 317 104 L 317 103.800781 L 317.199219 103.601562 L 317.199219 103.5 L 317.300781 103.398438 L 317.398438 103.398438 L 317.398438 103.300781 L 317.5 103.300781 L 317.699219 103.101562 L 317.800781 103.101562 L 317.898438 103 L 318 103 L 318.101562 102.898438 L 325.898438 102.898438 L 326 103 L 326.199219 103 L 326.398438 103.199219 L  [...]
+<path style="fill:none;stroke-width:0.7358;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,39.99939%,70.195007%);stroke-opacity:1;stroke-miterlimit:10;" d="M 432.898438 219.398438 L 432.898438 219.898438 L 433 220 L 433 220.199219 L 433.199219 220.398438 L 433.199219 220.5 L 433.300781 220.601562 L 433.398438 220.601562 L 433.398438 220.699219 L 433.5 220.699219 L 433.699219 220.898438 L 433.800781 220.898438 L 433.898438 221 L 434 221 L 434.101562 221.101562 L 441.898438 221.101 [...]
+<path style="fill:none;stroke-width:0.7358;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,39.99939%,70.195007%);stroke-opacity:1;stroke-miterlimit:10;" d="M 432.898438 221.101562 Z M 432.898438 221.101562 " transform="matrix(1,0,0,-1,-116,324)"/>
+<path style="fill:none;stroke-width:0.7358;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,39.99939%,70.195007%);stroke-opacity:1;stroke-miterlimit:10;" d="M 443.199219 210.800781 Z M 443.199219 210.800781 " transform="matrix(1,0,0,-1,-116,324)"/>
+<path style=" stroke:none;fill-rule:evenodd;fill:rgb(69.802856%,69.802856%,69.802856%);fill-opacity:1;" d="M 330.300781 104.601562 L 330.300781 104.101562 L 330.398438 104.101562 L 330.398438 103.898438 L 330.5 103.800781 L 330.5 103.699219 L 330.601562 103.699219 L 330.601562 103.601562 L 330.699219 103.5 L 330.699219 103.398438 L 330.800781 103.398438 L 331 103.199219 L 331.101562 103.199219 L 331.300781 103 L 331.5 103 L 331.601562 102.898438 L 339.398438 102.898438 L 339.398438 103 L [...]
+<path style="fill:none;stroke-width:0.7358;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,39.99939%,70.195007%);stroke-opacity:1;stroke-miterlimit:10;" d="M 446.300781 219.398438 L 446.300781 219.898438 L 446.398438 219.898438 L 446.398438 220.101562 L 446.5 220.199219 L 446.5 220.300781 L 446.601562 220.300781 L 446.601562 220.398438 L 446.699219 220.5 L 446.699219 220.601562 L 446.800781 220.601562 L 447 220.800781 L 447.101562 220.800781 L 447.300781 221 L 447.5 221 L 447.601 [...]
+<path style="fill:none;stroke-width:0.7358;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,39.99939%,70.195007%);stroke-opacity:1;stroke-miterlimit:10;" d="M 446.300781 221.101562 Z M 446.300781 221.101562 " transform="matrix(1,0,0,-1,-116,324)"/>
+<path style="fill:none;stroke-width:0.7358;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,39.99939%,70.195007%);stroke-opacity:1;stroke-miterlimit:10;" d="M 456.699219 210.800781 Z M 456.699219 210.800781 " transform="matrix(1,0,0,-1,-116,324)"/>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 445.101562 159.898438 L 429.699219 159.898438 L 429.699219 188.5 L 460.5 188.5 L 460.5 159.898438 Z M 445.101562 159.898438 " transform="matrix(1,0,0,-1,-116,324)"/>
+<path style=" stroke:none;fill-rule:evenodd;fill:rgb(69.802856%,69.802856%,69.802856%);fill-opacity:1;" d="M 316.898438 139.898438 L 316.898438 139.398438 L 317 139.300781 L 317 139.101562 L 317.101562 139 L 317.199219 138.898438 L 317.199219 138.800781 L 317.300781 138.800781 L 317.398438 138.699219 L 317.398438 138.601562 L 317.5 138.601562 L 317.601562 138.5 L 317.699219 138.398438 L 317.800781 138.398438 L 317.898438 138.300781 L 318 138.300781 L 318.101562 138.199219 L 325.898438 13 [...]
+<path style="fill:none;stroke-width:0.7358;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,65.097046%,36.468506%);stroke-opacity:1;stroke-miterlimit:10;" d="M 432.898438 184.101562 L 432.898438 184.601562 L 433 184.699219 L 433 184.898438 L 433.101562 185 L 433.199219 185.101562 L 433.199219 185.199219 L 433.300781 185.199219 L 433.398438 185.300781 L 433.398438 185.398438 L 433.5 185.398438 L 433.601562 185.5 L 433.699219 185.601562 L 433.800781 185.601562 L 433.898438 185.69921 [...]
+<path style="fill:none;stroke-width:0.7358;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,65.097046%,36.468506%);stroke-opacity:1;stroke-miterlimit:10;" d="M 432.898438 185.800781 Z M 432.898438 185.800781 " transform="matrix(1,0,0,-1,-116,324)"/>
+<path style="fill:none;stroke-width:0.7358;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,65.097046%,36.468506%);stroke-opacity:1;stroke-miterlimit:10;" d="M 443.199219 175.398438 Z M 443.199219 175.398438 " transform="matrix(1,0,0,-1,-116,324)"/>
+<path style=" stroke:none;fill-rule:evenodd;fill:rgb(69.802856%,69.802856%,69.802856%);fill-opacity:1;" d="M 330.300781 139.898438 L 330.300781 139.5 L 330.398438 139.398438 L 330.398438 139.199219 L 330.5 139.101562 L 330.5 139 L 330.601562 139 L 330.601562 138.898438 L 331 138.5 L 331.101562 138.5 L 331.199219 138.398438 L 331.300781 138.300781 L 331.5 138.300781 L 331.601562 138.199219 L 339.398438 138.199219 L 339.398438 138.300781 L 339.601562 138.300781 L 339.699219 138.398438 L 33 [...]
+<path style="fill:none;stroke-width:0.7358;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,65.097046%,36.468506%);stroke-opacity:1;stroke-miterlimit:10;" d="M 446.300781 184.101562 L 446.300781 184.5 L 446.398438 184.601562 L 446.398438 184.800781 L 446.5 184.898438 L 446.5 185 L 446.601562 185 L 446.601562 185.101562 L 447 185.5 L 447.101562 185.5 L 447.199219 185.601562 L 447.300781 185.699219 L 447.5 185.699219 L 447.601562 185.800781 L 455.398438 185.800781 L 455.398438 185.6 [...]
+<path style="fill:none;stroke-width:0.7358;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,65.097046%,36.468506%);stroke-opacity:1;stroke-miterlimit:10;" d="M 446.300781 185.800781 Z M 446.300781 185.800781 " transform="matrix(1,0,0,-1,-116,324)"/>
+<path style="fill:none;stroke-width:0.7358;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,65.097046%,36.468506%);stroke-opacity:1;stroke-miterlimit:10;" d="M 456.699219 175.398438 Z M 456.699219 175.398438 " transform="matrix(1,0,0,-1,-116,324)"/>
+<path style=" stroke:none;fill-rule:evenodd;fill:rgb(69.802856%,69.802856%,69.802856%);fill-opacity:1;" d="M 316.898438 153 L 316.898438 152.398438 L 317 152.398438 L 317 152.199219 L 317.101562 152.101562 L 317.199219 152 L 317.199219 151.898438 L 317.300781 151.800781 L 317.398438 151.800781 L 317.398438 151.699219 L 317.5 151.699219 L 317.601562 151.601562 L 317.601562 151.5 L 317.800781 151.5 L 317.898438 151.398438 L 318 151.398438 L 318 151.300781 L 326 151.300781 L 326.101562 151. [...]
+<path style="fill:none;stroke-width:0.7358;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,39.99939%,70.195007%);stroke-opacity:1;stroke-miterlimit:10;" d="M 432.898438 171 L 432.898438 171.601562 L 433 171.601562 L 433 171.800781 L 433.101562 171.898438 L 433.199219 172 L 433.199219 172.101562 L 433.300781 172.199219 L 433.398438 172.199219 L 433.398438 172.300781 L 433.5 172.300781 L 433.601562 172.398438 L 433.601562 172.5 L 433.800781 172.5 L 433.898438 172.601562 L 434 172.6 [...]
+<path style="fill:none;stroke-width:0.7358;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,39.99939%,70.195007%);stroke-opacity:1;stroke-miterlimit:10;" d="M 432.898438 172.699219 Z M 432.898438 172.699219 " transform="matrix(1,0,0,-1,-116,324)"/>
+<path style="fill:none;stroke-width:0.7358;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,39.99939%,70.195007%);stroke-opacity:1;stroke-miterlimit:10;" d="M 443.199219 162.398438 Z M 443.199219 162.398438 " transform="matrix(1,0,0,-1,-116,324)"/>
+<path style=" stroke:none;fill-rule:evenodd;fill:rgb(69.802856%,69.802856%,69.802856%);fill-opacity:1;" d="M 330.300781 153 L 330.300781 152.5 L 330.398438 152.398438 L 330.398438 152.300781 L 330.5 152.199219 L 330.5 152.101562 L 330.601562 152.101562 L 330.601562 152 L 330.699219 151.898438 L 330.699219 151.800781 L 330.800781 151.800781 L 330.898438 151.699219 L 331 151.601562 L 331.101562 151.5 L 331.199219 151.5 L 331.300781 151.398438 L 331.398438 151.398438 L 331.5 151.300781 L 33 [...]
+<path style="fill:none;stroke-width:0.7358;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,39.99939%,70.195007%);stroke-opacity:1;stroke-miterlimit:10;" d="M 446.300781 171 L 446.300781 171.5 L 446.398438 171.601562 L 446.398438 171.699219 L 446.5 171.800781 L 446.5 171.898438 L 446.601562 171.898438 L 446.601562 172 L 446.699219 172.101562 L 446.699219 172.199219 L 446.800781 172.199219 L 446.898438 172.300781 L 447 172.398438 L 447.101562 172.5 L 447.199219 172.5 L 447.300781 1 [...]
+<path style="fill:none;stroke-width:0.7358;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,39.99939%,70.195007%);stroke-opacity:1;stroke-miterlimit:10;" d="M 446.300781 172.699219 Z M 446.300781 172.699219 " transform="matrix(1,0,0,-1,-116,324)"/>
+<path style="fill:none;stroke-width:0.7358;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,39.99939%,70.195007%);stroke-opacity:1;stroke-miterlimit:10;" d="M 456.699219 162.398438 Z M 456.699219 162.398438 " transform="matrix(1,0,0,-1,-116,324)"/>
+<path style="fill:none;stroke-width:1.4999;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 378.5 268.101562 L 415.898438 268.101562 " transform="matrix(1,0,0,-1,-116,324)"/>
+<path style=" stroke:none;fill-rule:evenodd;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 305.699219 55.898438 L 299.398438 52 L 299.398438 59.898438 Z M 305.699219 55.898438 "/>
+<path style="fill:none;stroke-width:1.4999;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 378.101562 268.101562 L 417.601562 229 " transform="matrix(1,0,0,-1,-116,324)"/>
+<path style=" stroke:none;fill-rule:evenodd;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 305.699219 99.101562 L 304 91.800781 L 298.398438 97.5 Z M 305.699219 99.101562 "/>
+<path style="fill:none;stroke-width:1.4999;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 377.800781 268.5 L 420.601562 184.300781 " transform="matrix(1,0,0,-1,-116,324)"/>
+<path style=" stroke:none;fill-rule:evenodd;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 307.199219 144.898438 L 307.898438 137.398438 L 300.898438 141 Z M 307.199219 144.898438 "/>
+<path style="fill:none;stroke-width:1.4999;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 357.101562 222 L 415.898438 222 " transform="matrix(1,0,0,-1,-116,324)"/>
+<path style=" stroke:none;fill-rule:evenodd;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 305.699219 102 L 299.398438 98.101562 L 299.398438 106 Z M 305.699219 102 "/>
+<path style="fill:none;stroke-width:1.4999;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 356.699219 222.300781 L 416.800781 259.699219 " transform="matrix(1,0,0,-1,-116,324)"/>
+<path style=" stroke:none;fill-rule:evenodd;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 305.699219 61.199219 L 298.300781 61.199219 L 302.5 67.898438 Z M 305.699219 61.199219 "/>
+<path style="fill:none;stroke-width:1.4999;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 356.398438 222 L 418.199219 176.898438 " transform="matrix(1,0,0,-1,-116,324)"/>
+<path style=" stroke:none;fill-rule:evenodd;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 306.898438 150.5 L 304.101562 143.601562 L 299.398438 150 Z M 306.898438 150.5 "/>
+<path style="fill:none;stroke-width:1.4999;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 357.5 168.800781 L 416.300781 168.800781 " transform="matrix(1,0,0,-1,-116,324)"/>
+<path style=" stroke:none;fill-rule:evenodd;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 306.101562 155.199219 L 299.699219 151.199219 L 299.699219 159.101562 Z M 306.101562 155.199219 "/>
+<path style="fill:none;stroke-width:1.4999;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 357.101562 168.800781 L 417.101562 214.199219 " transform="matrix(1,0,0,-1,-116,324)"/>
+<path style=" stroke:none;fill-rule:evenodd;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 305.699219 106.300781 L 298.300781 107 L 303 113.300781 Z M 305.699219 106.300781 "/>
+<path style="fill:none;stroke-width:1.4999;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 356.699219 168.5 L 416.5 251 " transform="matrix(1,0,0,-1,-116,324)"/>
+<path style=" stroke:none;fill-rule:evenodd;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 303.898438 68.398438 L 297 71.199219 L 303.398438 75.800781 Z M 303.898438 68.398438 "/>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph2-3" x="209.2" y="13.5"/>
+  <use xlink:href="#glyph2-7" x="218.2" y="13.5"/>
+  <use xlink:href="#glyph2-14" x="228.208" y="13.5"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph2-1" x="238.108" y="13.5"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph2-1" x="242.806" y="13.5"/>
+  <use xlink:href="#glyph2-11" x="247.792" y="13.5"/>
+  <use xlink:href="#glyph2-10" x="251.788" y="13.5"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph2-15" x="218" y="33.6"/>
+  <use xlink:href="#glyph2-2" x="228.008" y="33.6"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph2-4" x="237.908" y="33.6"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph2-2" x="242.984" y="33.6"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph2-16" x="306.6" y="13.5"/>
+  <use xlink:href="#glyph2-17" x="319.596" y="13.5"/>
+  <use xlink:href="#glyph2-2" x="325.59" y="13.5"/>
+  <use xlink:href="#glyph2-8" x="335.598" y="13.5"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph2-11" x="339.504" y="13.5"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph2-3" x="300.1" y="33.6"/>
+  <use xlink:href="#glyph2-10" x="309.1" y="33.6"/>
+  <use xlink:href="#glyph2-17" x="319.108" y="33.6"/>
+  <use xlink:href="#glyph2-18" x="325.102" y="33.6"/>
+  <use xlink:href="#glyph2-10" x="334.102" y="33.6"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph2-17" x="344.002" y="33.6"/>
+</g>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 456.699219 278.101562 L 458.5 278.898438 " transform="matrix(1,0,0,-1,-116,324)"/>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 460.300781 279.601562 L 462.101562 280.300781 " transform="matrix(1,0,0,-1,-116,324)"/>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 463.898438 281.101562 L 465.699219 281.800781 " transform="matrix(1,0,0,-1,-116,324)"/>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 467.5 282.601562 L 469.300781 283.300781 " transform="matrix(1,0,0,-1,-116,324)"/>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 471.101562 284.101562 L 472.898438 284.800781 " transform="matrix(1,0,0,-1,-116,324)"/>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 474.699219 285.5 L 476.601562 286.300781 " transform="matrix(1,0,0,-1,-116,324)"/>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 478.398438 287 L 480.199219 287.800781 " transform="matrix(1,0,0,-1,-116,324)"/>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 482 288.5 L 483.800781 289.199219 " transform="matrix(1,0,0,-1,-116,324)"/>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 485.601562 290 L 487.398438 290.699219 " transform="matrix(1,0,0,-1,-116,324)"/>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 489.199219 291.5 L 491 292.199219 " transform="matrix(1,0,0,-1,-116,324)"/>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph2-1" x="380.7" y="24.5"/>
+  <use xlink:href="#glyph2-8" x="385.686" y="24.5"/>
+  <use xlink:href="#glyph2-19" x="389.682" y="24.5"/>
+  <use xlink:href="#glyph2-10" x="398.682" y="24.5"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph2-15" x="408.582" y="24.5"/>
+  <use xlink:href="#glyph2-20" x="418.59" y="24.5"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph2-3" x="423.666" y="24.5"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph2-8" x="432.558" y="24.5"/>
+  <use xlink:href="#glyph2-21" x="436.554" y="24.5"/>
+  <use xlink:href="#glyph2-10" x="445.554" y="24.5"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph2-3" x="380.7" y="44.6"/>
+  <use xlink:href="#glyph2-4" x="389.7" y="44.6"/>
+  <use xlink:href="#glyph2-12" x="394.686" y="44.6"/>
+  <use xlink:href="#glyph2-17" x="404.694" y="44.6"/>
+  <use xlink:href="#glyph2-2" x="410.688" y="44.6"/>
+  <use xlink:href="#glyph2-22" x="420.696" y="44.6"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph2-10" x="430.596" y="44.6"/>
+  <use xlink:href="#glyph2-20" x="440.604" y="44.6"/>
+  <use xlink:href="#glyph2-23" x="445.59" y="44.6"/>
+  <use xlink:href="#glyph2-11" x="455.598" y="44.6"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph2-12" x="459.504" y="44.6"/>
+  <use xlink:href="#glyph2-6" x="469.512" y="44.6"/>
+  <use xlink:href="#glyph2-24" x="478.512" y="44.6"/>
+</g>
+<path style="fill:none;stroke-width:0.12;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 116.699219 227.300781 Z M 116.699219 227.300781 " transform="matrix(1,0,0,-1,-116,324)"/>
+<path style="fill:none;stroke-width:0.12;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 635.398438 227.300781 Z M 635.398438 227.300781 " transform="matrix(1,0,0,-1,-116,324)"/>
+</g>
+</defs>
+<g id="surface1">
+<use xlink:href="#surface5"/>
+</g>
+</svg>
diff --git a/site/img/blog/disaggregation/optimization_tasks.pdf b/site/img/blog/disaggregation/optimization_tasks.pdf
new file mode 100644
index 0000000..6381bde
Binary files /dev/null and b/site/img/blog/disaggregation/optimization_tasks.pdf differ
diff --git a/site/img/blog/disaggregation/optimization_tasks.svg b/site/img/blog/disaggregation/optimization_tasks.svg
new file mode 100644
index 0000000..b764c4d
--- /dev/null
+++ b/site/img/blog/disaggregation/optimization_tasks.svg
@@ -0,0 +1,762 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="358pt" height="276pt" viewBox="0 0 358 276" version="1.1">
+<defs>
+<g>
+<symbol overflow="visible" id="glyph0-0">
+<path style="stroke:none;" d="M 1.609375 -11.015625 L 10.390625 -11.015625 L 10.390625 0 L 1.609375 0 Z M 2.203125 -10.421875 L 2.203125 -0.59375 L 9.796875 -0.59375 L 9.796875 -10.421875 Z M 2.203125 -10.421875 "/>
+</symbol>
+<symbol overflow="visible" id="glyph0-1">
+<path style="stroke:none;" d="M 6.1875 -9.953125 C 4.96875 -9.953125 4.019531 -9.5625 3.34375 -8.78125 C 2.664062 -8 2.328125 -6.925781 2.328125 -5.5625 C 2.328125 -4.207031 2.679688 -3.117188 3.390625 -2.296875 C 4.097656 -1.484375 5.050781 -1.078125 6.25 -1.078125 C 7.789062 -1.078125 8.953125 -1.835938 9.734375 -3.359375 L 10.953125 -2.75 C 10.492188 -1.800781 9.851562 -1.078125 9.03125 -0.578125 C 8.21875 -0.0859375 7.269531 0.15625 6.1875 0.15625 C 5.070312 0.15625 4.109375 -0.07031 [...]
+</symbol>
+<symbol overflow="visible" id="glyph0-2">
+<path style="stroke:none;" d="M 1.109375 0 L 1.109375 -6.484375 C 1.109375 -7.078125 1.09375 -7.734375 1.0625 -8.453125 L 2.390625 -8.453125 C 2.429688 -7.492188 2.453125 -6.921875 2.453125 -6.734375 L 2.484375 -6.734375 C 2.710938 -7.453125 2.972656 -7.941406 3.265625 -8.203125 C 3.554688 -8.472656 3.96875 -8.609375 4.5 -8.609375 C 4.6875 -8.609375 4.875 -8.582031 5.0625 -8.53125 L 5.0625 -7.25 C 4.875 -7.300781 4.625 -7.328125 4.3125 -7.328125 C 3.726562 -7.328125 3.28125 -7.070312 2.9 [...]
+</symbol>
+<symbol overflow="visible" id="glyph0-3">
+<path style="stroke:none;" d="M 3.234375 0.15625 C 2.390625 0.15625 1.753906 -0.0664062 1.328125 -0.515625 C 0.898438 -0.960938 0.6875 -1.578125 0.6875 -2.359375 C 0.6875 -3.234375 0.972656 -3.90625 1.546875 -4.375 C 2.117188 -4.84375 3.046875 -5.09375 4.328125 -5.125 L 6.234375 -5.15625 L 6.234375 -5.625 C 6.234375 -6.3125 6.085938 -6.800781 5.796875 -7.09375 C 5.503906 -7.394531 5.046875 -7.546875 4.421875 -7.546875 C 3.785156 -7.546875 3.320312 -7.4375 3.03125 -7.21875 C 2.75 -7.00781 [...]
+</symbol>
+<symbol overflow="visible" id="glyph0-4">
+<path style="stroke:none;" d="M 1.078125 -10.25 L 1.078125 -11.59375 L 2.484375 -11.59375 L 2.484375 -10.25 Z M 1.078125 0 L 1.078125 -8.453125 L 2.484375 -8.453125 L 2.484375 0 Z M 1.078125 0 "/>
+</symbol>
+<symbol overflow="visible" id="glyph0-5">
+<path style="stroke:none;" d="M 1.078125 0 L 1.078125 -11.59375 L 2.484375 -11.59375 L 2.484375 0 Z M 1.078125 0 "/>
+</symbol>
+<symbol overflow="visible" id="glyph0-6">
+<path style="stroke:none;" d="M 2.8125 -9.796875 L 2.8125 -5.703125 L 8.953125 -5.703125 L 8.953125 -4.46875 L 2.8125 -4.46875 L 2.8125 0 L 1.3125 0 L 1.3125 -11.015625 L 9.140625 -11.015625 L 9.140625 -9.796875 Z M 2.8125 -9.796875 "/>
+</symbol>
+<symbol overflow="visible" id="glyph0-7">
+<path style="stroke:none;" d="M 2.15625 -3.9375 C 2.15625 -2.96875 2.351562 -2.21875 2.75 -1.6875 C 3.15625 -1.164062 3.742188 -0.90625 4.515625 -0.90625 C 5.128906 -0.90625 5.617188 -1.023438 5.984375 -1.265625 C 6.347656 -1.515625 6.597656 -1.828125 6.734375 -2.203125 L 7.96875 -1.84375 C 7.457031 -0.507812 6.304688 0.15625 4.515625 0.15625 C 3.265625 0.15625 2.3125 -0.210938 1.65625 -0.953125 C 1.007812 -1.703125 0.6875 -2.8125 0.6875 -4.28125 C 0.6875 -5.675781 1.007812 -6.742188 1.6 [...]
+</symbol>
+<symbol overflow="visible" id="glyph0-8">
+<path style="stroke:none;" d="M 10.671875 0 L 10.671875 -7.34375 C 10.671875 -8.15625 10.695312 -8.9375 10.75 -9.6875 C 10.488281 -8.757812 10.257812 -8.03125 10.0625 -7.5 L 7.21875 0 L 6.171875 0 L 3.28125 -7.5 L 2.84375 -8.828125 L 2.59375 -9.6875 L 2.609375 -8.828125 L 2.640625 -7.34375 L 2.640625 0 L 1.3125 0 L 1.3125 -11.015625 L 3.28125 -11.015625 L 6.203125 -3.375 C 6.304688 -3.070312 6.40625 -2.742188 6.5 -2.390625 C 6.601562 -2.035156 6.671875 -1.78125 6.703125 -1.625 C 6.742188 [...]
+</symbol>
+<symbol overflow="visible" id="glyph0-9">
+<path style="stroke:none;" d="M 2.453125 -8.453125 L 2.453125 -3.09375 C 2.453125 -2.539062 2.503906 -2.109375 2.609375 -1.796875 C 2.722656 -1.492188 2.898438 -1.273438 3.140625 -1.140625 C 3.378906 -1.003906 3.734375 -0.9375 4.203125 -0.9375 C 4.878906 -0.9375 5.410156 -1.164062 5.796875 -1.625 C 6.191406 -2.09375 6.390625 -2.738281 6.390625 -3.5625 L 6.390625 -8.453125 L 7.796875 -8.453125 L 7.796875 -1.8125 C 7.796875 -0.820312 7.8125 -0.21875 7.84375 0 L 6.515625 0 C 6.503906 -0.031 [...]
+</symbol>
+<symbol overflow="visible" id="glyph0-10">
+<path style="stroke:none;" d="M 4.328125 -0.0625 C 3.867188 0.0625 3.394531 0.125 2.90625 0.125 C 1.78125 0.125 1.21875 -0.515625 1.21875 -1.796875 L 1.21875 -7.4375 L 0.25 -7.4375 L 0.25 -8.453125 L 1.28125 -8.453125 L 1.6875 -10.34375 L 2.625 -10.34375 L 2.625 -8.453125 L 4.1875 -8.453125 L 4.1875 -7.4375 L 2.625 -7.4375 L 2.625 -2.09375 C 2.625 -1.6875 2.691406 -1.398438 2.828125 -1.234375 C 2.960938 -1.078125 3.191406 -1 3.515625 -1 C 3.703125 -1 3.972656 -1.035156 4.328125 -1.109375 [...]
+</symbol>
+<symbol overflow="visible" id="glyph0-11">
+<path style="stroke:none;" d="M 6.421875 -1.359375 C 6.160156 -0.816406 5.8125 -0.425781 5.375 -0.1875 C 4.945312 0.0390625 4.414062 0.15625 3.78125 0.15625 C 2.71875 0.15625 1.929688 -0.203125 1.421875 -0.921875 C 0.921875 -1.640625 0.671875 -2.726562 0.671875 -4.1875 C 0.671875 -7.132812 1.707031 -8.609375 3.78125 -8.609375 C 4.425781 -8.609375 4.960938 -8.488281 5.390625 -8.25 C 5.816406 -8.019531 6.160156 -7.648438 6.421875 -7.140625 L 6.4375 -7.140625 L 6.421875 -8.09375 L 6.421875  [...]
+</symbol>
+<symbol overflow="visible" id="glyph0-12">
+<path style="stroke:none;" d="M 2.15625 -4.265625 C 2.15625 -3.140625 2.332031 -2.304688 2.6875 -1.765625 C 3.039062 -1.222656 3.570312 -0.953125 4.28125 -0.953125 C 4.78125 -0.953125 5.195312 -1.085938 5.53125 -1.359375 C 5.875 -1.628906 6.082031 -2.046875 6.15625 -2.609375 L 7.578125 -2.515625 C 7.472656 -1.703125 7.128906 -1.050781 6.546875 -0.5625 C 5.960938 -0.0820312 5.222656 0.15625 4.328125 0.15625 C 3.140625 0.15625 2.234375 -0.21875 1.609375 -0.96875 C 0.992188 -1.71875 0.6875  [...]
+</symbol>
+<symbol overflow="visible" id="glyph0-13">
+<path style="stroke:none;" d=""/>
+</symbol>
+<symbol overflow="visible" id="glyph0-14">
+<path style="stroke:none;" d="M 7.421875 -2.34375 C 7.421875 -1.539062 7.117188 -0.921875 6.515625 -0.484375 C 5.921875 -0.0546875 5.082031 0.15625 4 0.15625 C 2.945312 0.15625 2.132812 -0.015625 1.5625 -0.359375 C 0.988281 -0.710938 0.617188 -1.253906 0.453125 -1.984375 L 1.6875 -2.234375 C 1.8125 -1.773438 2.0625 -1.441406 2.4375 -1.234375 C 2.8125 -1.023438 3.332031 -0.921875 4 -0.921875 C 4.707031 -0.921875 5.226562 -1.03125 5.5625 -1.25 C 5.894531 -1.46875 6.0625 -1.796875 6.0625 -2 [...]
+</symbol>
+<symbol overflow="visible" id="glyph0-15">
+<path style="stroke:none;" d="M 6.375 0 L 3.515625 -3.859375 L 2.484375 -3.015625 L 2.484375 0 L 1.078125 0 L 1.078125 -11.59375 L 2.484375 -11.59375 L 2.484375 -4.359375 L 6.203125 -8.453125 L 7.84375 -8.453125 L 4.421875 -4.828125 L 8.03125 0 Z M 6.375 0 "/>
+</symbol>
+<symbol overflow="visible" id="glyph0-16">
+<path style="stroke:none;" d="M 6 0 L 6 -5.359375 C 6 -6.179688 5.882812 -6.75 5.65625 -7.0625 C 5.4375 -7.375 5.035156 -7.53125 4.453125 -7.53125 C 3.859375 -7.53125 3.382812 -7.300781 3.03125 -6.84375 C 2.6875 -6.382812 2.515625 -5.738281 2.515625 -4.90625 L 2.515625 0 L 1.109375 0 L 1.109375 -6.65625 C 1.109375 -7.632812 1.09375 -8.234375 1.0625 -8.453125 L 2.390625 -8.453125 C 2.398438 -8.429688 2.40625 -8.363281 2.40625 -8.25 C 2.414062 -8.132812 2.421875 -8 2.421875 -7.84375 C 2.42 [...]
+</symbol>
+<symbol overflow="visible" id="glyph0-17">
+<path style="stroke:none;" d="M 8.234375 -4.265625 C 8.234375 -1.316406 7.195312 0.15625 5.125 0.15625 C 3.820312 0.15625 2.945312 -0.332031 2.5 -1.3125 L 2.453125 -1.3125 C 2.472656 -1.269531 2.484375 -0.828125 2.484375 0.015625 L 2.484375 3.328125 L 1.078125 3.328125 L 1.078125 -6.734375 C 1.078125 -7.597656 1.0625 -8.171875 1.03125 -8.453125 L 2.390625 -8.453125 C 2.398438 -8.429688 2.410156 -8.359375 2.421875 -8.234375 C 2.429688 -8.109375 2.441406 -7.910156 2.453125 -7.640625 C 2.46 [...]
+</symbol>
+<symbol overflow="visible" id="glyph0-18">
+<path style="stroke:none;" d="M 6.453125 0 L 6.453125 -5.359375 C 6.453125 -5.921875 6.394531 -6.351562 6.28125 -6.65625 C 6.175781 -6.96875 6.003906 -7.191406 5.765625 -7.328125 C 5.523438 -7.460938 5.171875 -7.53125 4.703125 -7.53125 C 4.023438 -7.53125 3.488281 -7.296875 3.09375 -6.828125 C 2.707031 -6.367188 2.515625 -5.726562 2.515625 -4.90625 L 2.515625 0 L 1.109375 0 L 1.109375 -6.65625 C 1.109375 -7.632812 1.09375 -8.234375 1.0625 -8.453125 L 2.390625 -8.453125 C 2.398438 -8.4296 [...]
+</symbol>
+<symbol overflow="visible" id="glyph1-0">
+<path style="stroke:none;" d="M 1.796875 -12.390625 L 11.6875 -12.390625 L 11.6875 0 L 1.796875 0 Z M 2.46875 -11.71875 L 2.46875 -0.671875 L 11.015625 -0.671875 L 11.015625 -11.71875 Z M 2.46875 -11.71875 "/>
+</symbol>
+<symbol overflow="visible" id="glyph1-1">
+<path style="stroke:none;" d="M 0.90625 0 L 0.90625 -1.109375 C 1.207031 -1.796875 1.570312 -2.398438 2 -2.921875 C 2.425781 -3.453125 2.875 -3.929688 3.34375 -4.359375 C 3.820312 -4.785156 4.296875 -5.175781 4.765625 -5.53125 C 5.234375 -5.894531 5.65625 -6.257812 6.03125 -6.625 C 6.40625 -6.988281 6.707031 -7.367188 6.9375 -7.765625 C 7.164062 -8.171875 7.28125 -8.625 7.28125 -9.125 C 7.28125 -9.800781 7.082031 -10.328125 6.6875 -10.703125 C 6.289062 -11.078125 5.738281 -11.265625 5.03 [...]
+</symbol>
+<symbol overflow="visible" id="glyph1-2">
+<path style="stroke:none;" d="M 1.375 0 L 1.375 -1.34375 L 4.53125 -1.34375 L 4.53125 -10.875 L 1.734375 -8.875 L 1.734375 -10.375 L 4.65625 -12.390625 L 6.125 -12.390625 L 6.125 -1.34375 L 9.125 -1.34375 L 9.125 0 Z M 1.375 0 "/>
+</symbol>
+</g>
+<image id="image8" width="241" height="241" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAPEAAADxCAAAAAA/oA7VAAAAAmJLR0QA/4ePzL8AAB1jSURBVHic7X1ZkB3Xed73n9PLXQYAV3ARRYHUVqJEy4kWy9pshaFLpq3YTtmqyoOXclyJ4ziVl6TyEOdFVaksTymnEleUh1iUbcm7HMeOLUWyo1Q5oqTAEkVxAwkSOzCYwWDmzu3us/1fHk7fGYgCSACcAcC58wOYuejb3ed8/a/nP/85DUAEAEQg+acAkP4gBJgdgoiICPrzAAgwO7c/ZYNmX2383PgkcsFJMmt3ds133mbW7oV3kf6yWbP5Qz41fze7dLPJC7tgMG8kAggBAdh/ooAQMP+FMP9BfwwQQgDko4J8JQhhviWB2eELW+JmSxtn5tNmDfbtAP3vjdb6XoCz1v [...]
+<mask id="mask0">
+<use xlink:href="#image8" transform="matrix(1,0,0,1,0,0.000000000000028422)"/>
+</mask>
+<image id="image7" width="241" height="241" xlink:href="data:image/jpeg;base64,/9j/4AAQSkZJRgABAQEASABIAAD/2wBDAAMCAgMCAgMDAwMEAwMEBQgFBQQEBQoHBwYIDAoMDAsKCwsNDhIQDQ4RDgsLEBYQERMUFRUVDA8XGBYUGBIUFRT/2wBDAQMEBAUEBQkFBQkUDQsNFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBT/wgARCADxAPEDASIAAhEBAxEB/8QAHQABAAEFAQEBAAAAAAAAAAAAAAEDBQYHCAQCCf/EABcBAQEBAQAAAAAAAAAAAAAAAAABAgP/2gAMAwEAAhADEAAAAeqAACCQESTATAAASgAACCQJgQCQAAAAAAAAAAAAAAQCQECUCQESAAAECQCCSCSCQESQCUwAACSCSEiEwEiCS [...]
+<image id="image14" width="241" height="241" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAPEAAADxCAAAAAA/oA7VAAAAAmJLR0QA/4ePzL8AAB1jSURBVHic7X1ZkB3Xed73n9PLXQYAV3ARRYHUVqJEy4kWy9pshaFLpq3YTtmqyoOXclyJ4ziVl6TyEOdFVaksTymnEleUh1iUbcm7HMeOLUWyo1Q5oqTAEkVxAwkSOzCYwWDmzu3us/1fHk7fGYgCSACcAcC58wOYuejb3ed8/a/nP/85DUAEAEQg+acAkP4gBJgdgoiICPrzAAgwO7c/ZYNmX2383PgkcsFJMmt3ds133mbW7oV3kf6yWbP5Qz41fze7dLPJC7tgMG8kAggBAdh/ooAQMP+FMP9BfwwQQgDko4J8JQhhviWB2eELW+JmSxtn5tNmDfbtAP3vjdb6XoCz1 [...]
+<mask id="mask1">
+<use xlink:href="#image14"/>
+</mask>
+<image id="image20" width="241" height="241" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAPEAAADxCAAAAAA/oA7VAAAAAmJLR0QA/4ePzL8AAB1jSURBVHic7X1ZkB3Xed73n9PLXQYAV3ARRYHUVqJEy4kWy9pshaFLpq3YTtmqyoOXclyJ4ziVl6TyEOdFVaksTymnEleUh1iUbcm7HMeOLUWyo1Q5oqTAEkVxAwkSOzCYwWDmzu3us/1fHk7fGYgCSACcAcC58wOYuejb3ed8/a/nP/85DUAEAEQg+acAkP4gBJgdgoiICPrzAAgwO7c/ZYNmX2383PgkcsFJMmt3ds133mbW7oV3kf6yWbP5Qz41fze7dLPJC7tgMG8kAggBAdh/ooAQMP+FMP9BfwwQQgDko4J8JQhhviWB2eELW+JmSxtn5tNmDfbtAP3vjdb6XoCz1 [...]
+<mask id="mask2">
+<use xlink:href="#image20" transform="matrix(1,0,0,1,0,0.000000000000113687)"/>
+</mask>
+<clipPath id="clip1">
+  <rect x="0" y="0" width="358" height="276"/>
+</clipPath>
+<g id="surface23" clip-path="url(#clip1)">
+<path style=" stroke:none;fill-rule:evenodd;fill:rgb(98.822021%,83.135986%,81.959534%);fill-opacity:1;" d="M 229.398438 36.398438 C 247.5 36.398438 261.300781 50.398438 261.300781 68.800781 C 261.300781 87.101562 247.5 101.199219 229.398438 101.199219 C 211.398438 101.199219 197.601562 87.101562 197.601562 68.800781 C 197.601562 50.398438 211.398438 36.398438 229.398438 36.398438 Z M 197.601562 36.398438 Z M 261.398438 101.199219 Z M 261.398438 101.199219 "/>
+<path style="fill:none;stroke-width:1.4433;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 376.398438 302.601562 C 377.398438 302.601562 378.398438 302.601562 379.300781 302.5 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill:none;stroke-width:1.4433;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 382.101562 302.101562 C 383.101562 302 384 301.800781 384.898438 301.5 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill:none;stroke-width:1.4433;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 387.601562 300.699219 C 388.5 300.398438 389.398438 300 390.300781 299.601562 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill:none;stroke-width:1.4433;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 392.800781 298.300781 C 393.601562 297.800781 394.398438 297.300781 395.199219 296.699219 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill:none;stroke-width:1.4433;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 397.398438 295 C 398.101562 294.300781 398.800781 293.699219 399.5 293 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill:none;stroke-width:1.4433;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 401.300781 290.898438 C 401.898438 290.101562 402.5 289.398438 403 288.5 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill:none;stroke-width:1.4433;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 404.5 286.101562 C 404.898438 285.300781 405.300781 284.398438 405.699219 283.5 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill:none;stroke-width:1.4433;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 406.699219 280.898438 C 407 279.898438 407.199219 279 407.5 278.101562 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill:none;stroke-width:1.4433;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 408 275.300781 C 408.101562 274.398438 408.199219 273.5 408.199219 272.5 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill:none;stroke-width:1.4433;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 408.300781 269.601562 C 408.300781 268.601562 408.199219 267.699219 408.199219 266.699219 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill:none;stroke-width:1.4433;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 407.800781 263.898438 C 407.601562 263 407.398438 262.101562 407.101562 261.199219 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill:none;stroke-width:1.4433;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 406.300781 258.398438 C 405.898438 257.601562 405.601562 256.699219 405.199219 255.800781 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill:none;stroke-width:1.4433;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 403.898438 253.300781 C 403.398438 252.5 402.898438 251.699219 402.300781 250.898438 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill:none;stroke-width:1.4433;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 400.601562 248.699219 C 399.898438 247.898438 399.300781 247.199219 398.601562 246.601562 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill:none;stroke-width:1.4433;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 396.5 244.699219 C 395.699219 244.101562 395 243.601562 394.199219 243 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill:none;stroke-width:1.4433;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 391.699219 241.601562 C 390.898438 241.101562 390 240.699219 389.199219 240.300781 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill:none;stroke-width:1.4433;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 386.5 239.398438 C 385.601562 239.101562 384.699219 238.800781 383.699219 238.601562 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill:none;stroke-width:1.4433;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 380.898438 238.101562 C 380 238 379 237.898438 378.101562 237.898438 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill:none;stroke-width:1.4433;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 375.199219 237.898438 C 374.300781 237.898438 373.300781 238 372.398438 238.101562 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill:none;stroke-width:1.4433;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 369.601562 238.5 C 368.601562 238.699219 367.699219 239 366.800781 239.199219 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill:none;stroke-width:1.4433;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 364.101562 240.199219 C 363.199219 240.5 362.398438 240.898438 361.5 241.398438 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill:none;stroke-width:1.4433;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 359.101562 242.800781 C 358.300781 243.300781 357.5 243.898438 356.699219 244.5 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill:none;stroke-width:1.4433;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 354.601562 246.300781 C 353.898438 247 353.199219 247.601562 352.601562 248.300781 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill:none;stroke-width:1.4433;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 350.800781 250.601562 C 350.199219 251.300781 349.699219 252.101562 349.199219 252.898438 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill:none;stroke-width:1.4433;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 347.898438 255.398438 C 347.5 256.300781 347.101562 257.199219 346.699219 258 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill:none;stroke-width:1.4433;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 345.898438 260.800781 C 345.601562 261.699219 345.398438 262.601562 345.199219 263.5 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill:none;stroke-width:1.4433;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 344.699219 266.300781 C 344.699219 267.300781 344.601562 268.199219 344.601562 269.199219 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill:none;stroke-width:1.4433;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 344.601562 272.101562 C 344.601562 273 344.699219 274 344.898438 274.898438 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill:none;stroke-width:1.4433;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 345.300781 277.699219 C 345.5 278.601562 345.800781 279.601562 346.101562 280.5 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill:none;stroke-width:1.4433;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 347 283.199219 C 347.398438 284 347.800781 284.898438 348.199219 285.699219 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill:none;stroke-width:1.4433;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 349.699219 288.199219 C 350.199219 289 350.699219 289.800781 351.300781 290.5 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill:none;stroke-width:1.4433;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 353.101562 292.699219 C 353.800781 293.398438 354.398438 294.101562 355.199219 294.699219 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill:none;stroke-width:1.4433;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 357.398438 296.5 C 358.101562 297 358.898438 297.601562 359.699219 298.101562 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill:none;stroke-width:1.4433;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 362.199219 299.398438 C 363.101562 299.800781 364 300.199219 364.800781 300.601562 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill:none;stroke-width:1.4433;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 367.601562 301.398438 C 368.5 301.699219 369.398438 301.898438 370.300781 302.101562 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill:none;stroke-width:1.4433;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 373.199219 302.5 C 374.101562 302.601562 375.101562 302.601562 376 302.601562 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style=" stroke:none;fill-rule:evenodd;fill:rgb(74.508667%,89.01825%,82.743835%);fill-opacity:1;" d="M 229.398438 90.199219 C 247.5 90.199219 261.300781 104.199219 261.300781 122.601562 C 261.300781 141 247.5 155 229.398438 155 C 211.300781 155 197.5 141 197.5 122.601562 C 197.5 104.199219 211.300781 90.199219 229.398438 90.199219 Z M 197.5 90.199219 Z M 261.300781 155 Z M 261.300781 155 "/>
+<path style="fill:none;stroke-width:1.4433;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 376.398438 248.800781 C 377.398438 248.800781 378.300781 248.800781 379.300781 248.699219 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill:none;stroke-width:1.4433;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 382.101562 248.300781 C 383 248.101562 384 247.898438 384.898438 247.699219 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill:none;stroke-width:1.4433;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 387.601562 246.898438 C 388.5 246.601562 389.398438 246.199219 390.199219 245.800781 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill:none;stroke-width:1.4433;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 392.800781 244.5 C 393.601562 244 394.398438 243.5 395.101562 242.898438 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill:none;stroke-width:1.4433;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 397.398438 241.101562 C 398.101562 240.5 398.800781 239.898438 399.398438 239.199219 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill:none;stroke-width:1.4433;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 401.300781 237 C 401.898438 236.300781 402.5 235.5 403 234.699219 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill:none;stroke-width:1.4433;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 404.398438 232.300781 C 404.898438 231.398438 405.300781 230.601562 405.699219 229.699219 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill:none;stroke-width:1.4433;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 406.699219 227 C 406.898438 226.101562 407.199219 225.199219 407.398438 224.300781 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill:none;stroke-width:1.4433;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 407.898438 221.5 C 408.101562 220.601562 408.199219 219.601562 408.199219 218.699219 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill:none;stroke-width:1.4433;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 408.300781 215.800781 C 408.300781 214.800781 408.199219 213.800781 408.101562 212.898438 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill:none;stroke-width:1.4433;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 407.699219 210.101562 C 407.601562 209.199219 407.398438 208.199219 407.101562 207.300781 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill:none;stroke-width:1.4433;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 406.300781 204.601562 C 405.898438 203.699219 405.601562 202.800781 405.199219 202 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill:none;stroke-width:1.4433;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 403.898438 199.398438 C 403.398438 198.699219 402.800781 197.800781 402.300781 197.101562 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill:none;stroke-width:1.4433;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 400.5 194.800781 C 399.898438 194.101562 399.300781 193.398438 398.601562 192.800781 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill:none;stroke-width:1.4433;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 396.5 190.898438 C 395.699219 190.300781 395 189.699219 394.199219 189.199219 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill:none;stroke-width:1.4433;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 391.699219 187.699219 C 390.898438 187.300781 390 186.898438 389.101562 186.5 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill:none;stroke-width:1.4433;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 386.398438 185.5 C 385.5 185.199219 384.601562 185 383.699219 184.800781 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill:none;stroke-width:1.4433;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 380.898438 184.300781 C 380 184.199219 379 184.101562 378.101562 184 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill:none;stroke-width:1.4433;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 375.199219 184 C 374.199219 184.101562 373.300781 184.101562 372.300781 184.300781 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill:none;stroke-width:1.4433;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 369.5 184.699219 C 368.601562 184.898438 367.699219 185.101562 366.800781 185.398438 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill:none;stroke-width:1.4433;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 364.101562 186.300781 C 363.199219 186.699219 362.398438 187.101562 361.5 187.5 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill:none;stroke-width:1.4433;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 359 189 C 358.199219 189.5 357.398438 190 356.699219 190.601562 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill:none;stroke-width:1.4433;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 354.601562 192.5 C 353.800781 193.101562 353.199219 193.800781 352.601562 194.5 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill:none;stroke-width:1.4433;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 350.800781 196.699219 C 350.199219 197.5 349.699219 198.300781 349.199219 199.101562 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill:none;stroke-width:1.4433;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 347.800781 201.601562 C 347.398438 202.398438 347 203.300781 346.699219 204.199219 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill:none;stroke-width:1.4433;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 345.800781 206.898438 C 345.601562 207.800781 345.300781 208.699219 345.101562 209.699219 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill:none;stroke-width:1.4433;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 344.699219 212.5 C 344.601562 213.398438 344.601562 214.398438 344.601562 215.300781 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill:none;stroke-width:1.4433;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 344.601562 218.199219 C 344.601562 219.199219 344.699219 220.101562 344.800781 221.101562 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill:none;stroke-width:1.4433;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 345.300781 223.898438 C 345.5 224.800781 345.800781 225.699219 346.101562 226.601562 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill:none;stroke-width:1.4433;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 347 229.300781 C 347.398438 230.199219 347.800781 231.101562 348.199219 231.898438 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill:none;stroke-width:1.4433;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 349.601562 234.398438 C 350.101562 235.199219 350.699219 236 351.199219 236.699219 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill:none;stroke-width:1.4433;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 353.101562 238.898438 C 353.699219 239.601562 354.398438 240.199219 355.101562 240.898438 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill:none;stroke-width:1.4433;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 357.300781 242.699219 C 358.101562 243.199219 358.898438 243.800781 359.699219 244.199219 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill:none;stroke-width:1.4433;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 362.199219 245.601562 C 363.101562 246 363.898438 246.398438 364.800781 246.699219 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill:none;stroke-width:1.4433;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 367.5 247.601562 C 368.398438 247.898438 369.398438 248.101562 370.300781 248.300781 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill:none;stroke-width:1.4433;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 373.101562 248.601562 C 374.101562 248.699219 375 248.800781 376 248.800781 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style=" stroke:none;fill-rule:evenodd;fill:rgb(100%,89.802551%,79.214478%);fill-opacity:1;" d="M 229.398438 166.699219 C 247.5 166.699219 261.300781 180.699219 261.300781 199.101562 C 261.300781 217.5 247.5 231.5 229.398438 231.5 C 211.300781 231.5 197.5 217.5 197.5 199.101562 C 197.5 180.699219 211.300781 166.699219 229.398438 166.699219 Z M 197.5 166.699219 Z M 261.300781 231.5 Z M 261.300781 231.5 "/>
+<path style="fill:none;stroke-width:1.4433;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 376.398438 172.300781 C 377.300781 172.300781 378.300781 172.300781 379.199219 172.199219 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill:none;stroke-width:1.4433;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 382.101562 171.800781 C 383 171.601562 384 171.398438 384.898438 171.199219 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill:none;stroke-width:1.4433;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 387.601562 170.398438 C 388.5 170 389.300781 169.699219 390.199219 169.300781 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill:none;stroke-width:1.4433;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 392.699219 168 C 393.601562 167.5 394.398438 167 395.101562 166.398438 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill:none;stroke-width:1.4433;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 397.398438 164.601562 C 398.101562 164 398.699219 163.398438 399.398438 162.699219 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill:none;stroke-width:1.4433;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 401.300781 160.5 C 401.898438 159.800781 402.398438 159 402.898438 158.199219 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill:none;stroke-width:1.4433;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 404.398438 155.800781 C 404.800781 154.898438 405.300781 154.101562 405.601562 153.199219 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill:none;stroke-width:1.4433;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 406.601562 150.5 C 406.898438 149.601562 407.199219 148.699219 407.398438 147.800781 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill:none;stroke-width:1.4433;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 407.898438 145 C 408 144.101562 408.101562 143.101562 408.199219 142.199219 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill:none;stroke-width:1.4433;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 408.300781 139.300781 C 408.199219 138.300781 408.199219 137.300781 408.101562 136.398438 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill:none;stroke-width:1.4433;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 407.699219 133.601562 C 407.5 132.699219 407.300781 131.699219 407.101562 130.800781 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill:none;stroke-width:1.4433;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 406.199219 128.101562 C 405.898438 127.199219 405.5 126.300781 405.101562 125.5 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill:none;stroke-width:1.4433;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 403.800781 122.898438 C 403.300781 122.101562 402.800781 121.300781 402.300781 120.601562 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill:none;stroke-width:1.4433;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 400.5 118.300781 C 399.898438 117.601562 399.199219 116.898438 398.601562 116.199219 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill:none;stroke-width:1.4433;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 396.398438 114.398438 C 395.699219 113.800781 394.898438 113.199219 394.101562 112.699219 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill:none;stroke-width:1.4433;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 391.699219 111.199219 C 390.800781 110.800781 390 110.398438 389.101562 110 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill:none;stroke-width:1.4433;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 386.398438 109 C 385.5 108.699219 384.601562 108.5 383.699219 108.300781 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill:none;stroke-width:1.4433;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 380.898438 107.800781 C 380 107.699219 379 107.601562 378 107.5 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill:none;stroke-width:1.4433;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 375.101562 107.5 C 374.199219 107.5 373.199219 107.601562 372.300781 107.699219 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill:none;stroke-width:1.4433;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 369.5 108.199219 C 368.601562 108.398438 367.699219 108.601562 366.699219 108.898438 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill:none;stroke-width:1.4433;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 364.101562 109.800781 C 363.199219 110.199219 362.300781 110.601562 361.5 111 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill:none;stroke-width:1.4433;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 359 112.5 C 358.199219 113 357.398438 113.5 356.699219 114.101562 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill:none;stroke-width:1.4433;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 354.5 116 C 353.800781 116.601562 353.199219 117.300781 352.5 118 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill:none;stroke-width:1.4433;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 350.800781 120.199219 C 350.199219 121 349.699219 121.800781 349.199219 122.601562 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill:none;stroke-width:1.4433;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 347.800781 125.101562 C 347.398438 125.898438 347 126.800781 346.699219 127.699219 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill:none;stroke-width:1.4433;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 345.800781 130.398438 C 345.5 131.300781 345.300781 132.199219 345.101562 133.199219 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill:none;stroke-width:1.4433;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 344.699219 136 C 344.601562 136.898438 344.601562 137.898438 344.5 138.800781 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill:none;stroke-width:1.4433;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 344.601562 141.699219 C 344.601562 142.699219 344.699219 143.601562 344.800781 144.601562 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill:none;stroke-width:1.4433;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 345.300781 147.398438 C 345.5 148.300781 345.699219 149.199219 346 150.101562 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill:none;stroke-width:1.4433;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 347 152.800781 C 347.300781 153.699219 347.699219 154.5 348.199219 155.398438 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill:none;stroke-width:1.4433;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 349.601562 157.898438 C 350.101562 158.699219 350.601562 159.398438 351.199219 160.199219 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill:none;stroke-width:1.4433;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 353.101562 162.398438 C 353.699219 163 354.398438 163.699219 355.101562 164.398438 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill:none;stroke-width:1.4433;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 357.300781 166.199219 C 358.101562 166.699219 358.898438 167.199219 359.699219 167.699219 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill:none;stroke-width:1.4433;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 362.199219 169.101562 C 363 169.5 363.898438 169.898438 364.800781 170.199219 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill:none;stroke-width:1.4433;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 367.5 171.101562 C 368.398438 171.398438 369.398438 171.601562 370.300781 171.800781 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill:none;stroke-width:1.4433;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 373.101562 172.101562 C 374 172.199219 375 172.300781 376 172.300781 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill-rule:evenodd;fill:rgb(20.391846%,39.605713%,64.312744%);fill-opacity:1;stroke-width:1.4433;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 249.5 248.699219 L 239.398438 248.699219 L 239.398438 288.101562 L 259.601562 288.101562 L 259.601562 248.699219 Z M 249.5 248.699219 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill-rule:evenodd;fill:rgb(20.391846%,39.605713%,64.312744%);fill-opacity:1;stroke-width:1.4433;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 223.300781 288.101562 L 233.398438 288.101562 L 233.398438 248.699219 L 213.300781 248.699219 L 213.300781 288.101562 Z M 223.300781 288.101562 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill:none;stroke-width:1.4433;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 263.5 266.300781 L 266.398438 266.300781 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill:none;stroke-width:1.4433;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 269.199219 266.300781 L 272.101562 266.300781 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill:none;stroke-width:1.4433;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 274.898438 266.300781 L 277.800781 266.300781 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill:none;stroke-width:1.4433;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 280.601562 266.300781 L 281.601562 266.300781 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill-rule:evenodd;fill:rgb(44.703674%,62.35199%,81.175232%);fill-opacity:1;stroke-width:1.4433;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 249.601562 197.898438 L 239.5 197.898438 L 239.5 237.300781 L 259.699219 237.300781 L 259.699219 197.898438 Z M 249.601562 197.898438 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill-rule:evenodd;fill:rgb(44.703674%,62.35199%,81.175232%);fill-opacity:1;stroke-width:1.4433;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 223.398438 237.5 L 233.5 237.5 L 233.5 198.101562 L 213.300781 198.101562 L 213.300781 237.5 Z M 223.398438 237.5 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill-rule:evenodd;fill:rgb(44.703674%,62.35199%,81.175232%);fill-opacity:1;stroke-width:1.4433;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 295.601562 197.898438 L 285.5 197.898438 L 285.5 237.300781 L 305.699219 237.300781 L 305.699219 197.898438 Z M 295.601562 197.898438 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill:none;stroke-width:1.4433;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 263.5 215.398438 L 266.398438 215.398438 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill:none;stroke-width:1.4433;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 269.199219 215.398438 L 272.101562 215.398438 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill:none;stroke-width:1.4433;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 274.898438 215.398438 L 277.800781 215.398438 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill:none;stroke-width:1.4433;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 280.601562 215.398438 L 281.601562 215.398438 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill-rule:evenodd;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:1.4433;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 249.601562 119.699219 L 239.5 119.699219 L 239.5 159.101562 L 259.699219 159.101562 L 259.699219 119.699219 Z M 249.601562 119.699219 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill-rule:evenodd;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:1.4433;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 223.5 159.101562 L 233.5 159.101562 L 233.5 119.699219 L 213.398438 119.699219 L 213.398438 159.101562 Z M 223.5 159.101562 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill-rule:evenodd;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:1.4433;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 295.601562 119.699219 L 285.5 119.699219 L 285.5 159.101562 L 305.601562 159.101562 L 305.601562 119.699219 Z M 295.601562 119.699219 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill:none;stroke-width:1.4433;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 263.5 137.199219 L 266.398438 137.199219 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill:none;stroke-width:1.4433;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 269.199219 137.199219 L 272.101562 137.199219 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill:none;stroke-width:1.4433;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 274.898438 137.199219 L 277.800781 137.199219 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill:none;stroke-width:1.4433;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 280.601562 137.199219 L 281.601562 137.199219 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style=" stroke:none;fill-rule:evenodd;fill:rgb(20.391846%,39.605713%,64.312744%);fill-opacity:1;" d="M 205.101562 50.898438 L 241.300781 50.898438 L 241.300781 65.398438 C 226.898438 65.300781 227.398438 68.199219 214.5 68.898438 C 209.898438 68.5 208.199219 68.199219 205.101562 67.699219 Z M 205.101562 50.898438 Z M 241.300781 68.898438 Z M 241.300781 68.898438 "/>
+<path style="fill:none;stroke-width:1.4433;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 352.101562 288.101562 L 388.300781 288.101562 L 388.300781 273.601562 C 373.898438 273.699219 374.398438 270.800781 361.5 270.101562 C 356.898438 270.5 355.199219 270.800781 352.101562 271.300781 Z M 352.101562 288.101562 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill:none;stroke-width:1.4433;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 352.101562 288.101562 Z M 352.101562 288.101562 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill:none;stroke-width:1.4433;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 388.300781 270.101562 Z M 388.300781 270.101562 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style=" stroke:none;fill-rule:evenodd;fill:rgb(44.703674%,62.35199%,81.175232%);fill-opacity:1;" d="M 211.199219 63.601562 L 247.300781 63.601562 L 247.300781 78.101562 C 233 78 233.398438 81 220.5 81.699219 C 215.898438 81.199219 214.199219 80.898438 211.199219 80.398438 Z M 211.199219 63.601562 Z M 247.300781 81.699219 Z M 247.300781 81.699219 "/>
+<path style="fill:none;stroke-width:1.4433;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 358.199219 275.398438 L 394.300781 275.398438 L 394.300781 260.898438 C 380 261 380.398438 258 367.5 257.300781 C 362.898438 257.800781 361.199219 258.101562 358.199219 258.601562 Z M 358.199219 275.398438 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill:none;stroke-width:1.4433;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 358.199219 275.398438 Z M 358.199219 275.398438 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill:none;stroke-width:1.4433;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 394.300781 257.300781 Z M 394.300781 257.300781 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style=" stroke:none;fill-rule:evenodd;fill:rgb(100%,100%,100%);fill-opacity:1;" d="M 217.199219 75.699219 L 253.300781 75.699219 L 253.300781 90.101562 C 239 90 239.5 93 226.601562 93.699219 C 222 93.300781 220.300781 93 217.199219 92.5 Z M 217.199219 75.699219 Z M 253.300781 93.699219 Z M 253.300781 93.699219 "/>
+<path style="fill:none;stroke-width:1.4433;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 364.199219 263.300781 L 400.300781 263.300781 L 400.300781 248.898438 C 386 249 386.5 246 373.601562 245.300781 C 369 245.699219 367.300781 246 364.199219 246.5 Z M 364.199219 263.300781 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill:none;stroke-width:1.4433;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 364.199219 263.300781 Z M 364.199219 263.300781 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill:none;stroke-width:1.4433;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 400.300781 245.300781 Z M 400.300781 245.300781 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style=" stroke:none;fill-rule:evenodd;fill:rgb(20.391846%,39.605713%,64.312744%);fill-opacity:1;" d="M 205.101562 101.699219 L 241.300781 101.699219 L 241.300781 116.199219 C 226.898438 116.101562 227.398438 119 214.5 119.699219 C 209.898438 119.300781 208.199219 118.898438 205.101562 118.5 Z M 205.101562 101.699219 Z M 241.300781 119.699219 Z M 241.300781 119.699219 "/>
+<path style="fill:none;stroke-width:1.4433;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 352.101562 237.300781 L 388.300781 237.300781 L 388.300781 222.800781 C 373.898438 222.898438 374.398438 220 361.5 219.300781 C 356.898438 219.699219 355.199219 220.101562 352.101562 220.5 Z M 352.101562 237.300781 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill:none;stroke-width:1.4433;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 352.101562 237.300781 Z M 352.101562 237.300781 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill:none;stroke-width:1.4433;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 388.300781 219.300781 Z M 388.300781 219.300781 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style=" stroke:none;fill-rule:evenodd;fill:rgb(44.703674%,62.35199%,81.175232%);fill-opacity:1;" d="M 211.199219 114.5 L 247.300781 114.5 L 247.300781 129 C 233 128.898438 233.398438 131.800781 220.5 132.5 C 215.898438 132.101562 214.199219 131.800781 211.199219 131.300781 Z M 211.199219 114.5 Z M 247.300781 132.5 Z M 247.300781 132.5 "/>
+<path style="fill:none;stroke-width:1.4433;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 358.199219 224.5 L 394.300781 224.5 L 394.300781 210 C 380 210.101562 380.398438 207.199219 367.5 206.5 C 362.898438 206.898438 361.199219 207.199219 358.199219 207.699219 Z M 358.199219 224.5 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill:none;stroke-width:1.4433;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 358.199219 224.5 Z M 358.199219 224.5 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill:none;stroke-width:1.4433;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 394.300781 206.5 Z M 394.300781 206.5 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style=" stroke:none;fill-rule:evenodd;fill:rgb(100%,100%,100%);fill-opacity:1;" d="M 217.199219 126.5 L 253.300781 126.5 L 253.300781 141 C 239 140.898438 239.5 143.898438 226.601562 144.601562 C 222 144.101562 220.300781 143.800781 217.199219 143.300781 Z M 217.199219 126.5 Z M 253.300781 144.601562 Z M 253.300781 144.601562 "/>
+<path style="fill:none;stroke-width:1.4433;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 364.199219 212.5 L 400.300781 212.5 L 400.300781 198 C 386 198.101562 386.5 195.101562 373.601562 194.398438 C 369 194.898438 367.300781 195.199219 364.199219 195.699219 Z M 364.199219 212.5 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill:none;stroke-width:1.4433;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 364.199219 212.5 Z M 364.199219 212.5 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill:none;stroke-width:1.4433;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 400.300781 194.398438 Z M 400.300781 194.398438 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style=" stroke:none;fill-rule:evenodd;fill:rgb(20.391846%,39.605713%,64.312744%);fill-opacity:1;" d="M 205.101562 179.898438 L 241.300781 179.898438 L 241.300781 194.398438 C 226.898438 194.300781 227.398438 197.300781 214.5 198 C 209.898438 197.601562 208.199219 197.199219 205.101562 196.699219 Z M 205.101562 179.898438 Z M 241.300781 198 Z M 241.300781 198 "/>
+<path style="fill:none;stroke-width:1.4433;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 352.101562 159.101562 L 388.300781 159.101562 L 388.300781 144.601562 C 373.898438 144.699219 374.398438 141.699219 361.5 141 C 356.898438 141.398438 355.199219 141.800781 352.101562 142.300781 Z M 352.101562 159.101562 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill:none;stroke-width:1.4433;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 352.101562 159.101562 Z M 352.101562 159.101562 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill:none;stroke-width:1.4433;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 388.300781 141 Z M 388.300781 141 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style=" stroke:none;fill-rule:evenodd;fill:rgb(44.703674%,62.35199%,81.175232%);fill-opacity:1;" d="M 211.199219 192 L 247.300781 192 L 247.300781 206.5 C 233 206.300781 233.5 209.300781 220.601562 210 C 215.898438 209.601562 214.300781 209.300781 211.199219 208.800781 Z M 211.199219 192 Z M 247.300781 210 Z M 247.300781 210 "/>
+<path style="fill:none;stroke-width:1.4433;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 358.199219 147 L 394.300781 147 L 394.300781 132.5 C 380 132.699219 380.5 129.699219 367.601562 129 C 362.898438 129.398438 361.300781 129.699219 358.199219 130.199219 Z M 358.199219 147 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill:none;stroke-width:1.4433;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 358.199219 147 Z M 358.199219 147 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill:none;stroke-width:1.4433;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 394.300781 129 Z M 394.300781 129 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style=" stroke:none;fill-rule:evenodd;fill:rgb(100%,100%,100%);fill-opacity:1;" d="M 217.199219 204 L 253.300781 204 L 253.300781 218.5 C 239 218.398438 239.5 221.300781 226.5 222 C 221.898438 221.601562 220.300781 221.199219 217.199219 220.800781 Z M 217.199219 204 Z M 253.300781 222 Z M 253.300781 222 "/>
+<path style="fill:none;stroke-width:1.4433;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 364.199219 135 L 400.300781 135 L 400.300781 120.5 C 386 120.601562 386.5 117.699219 373.5 117 C 368.898438 117.398438 367.300781 117.800781 364.199219 118.199219 Z M 364.199219 135 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill:none;stroke-width:1.4433;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 364.199219 135 Z M 364.199219 135 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill:none;stroke-width:1.4433;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 400.300781 117 Z M 400.300781 117 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style=" stroke:none;fill-rule:evenodd;fill:rgb(100%,100%,100%);fill-opacity:1;" d="M 300.601562 55.300781 L 315.398438 71.5 L 300.601562 88 L 300.601562 77.800781 L 276.199219 77.800781 L 276.199219 65.199219 L 300.601562 65.199219 Z M 267.300781 65.199219 L 267.300781 77.800781 L 269.5 77.800781 L 269.5 65.199219 Z M 271.800781 65.199219 L 271.800781 77.800781 L 274 77.800781 L 274 65.199219 Z M 267.300781 55.300781 Z M 315.398438 87.699219 Z M 315.398438 87.699219 "/>
+<path style="fill:none;stroke-width:1.4433;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 447.601562 283.699219 L 462.398438 267.5 L 447.601562 251 L 447.601562 261.199219 L 423.199219 261.199219 L 423.199219 273.800781 L 447.601562 273.800781 Z M 447.601562 283.699219 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill:none;stroke-width:1.4433;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 414.300781 273.800781 L 414.300781 261.199219 L 416.5 261.199219 L 416.5 273.800781 Z M 414.300781 273.800781 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill:none;stroke-width:1.4433;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 418.800781 273.800781 L 418.800781 261.199219 L 421 261.199219 L 421 273.800781 Z M 418.800781 273.800781 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill:none;stroke-width:1.4433;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 414.300781 283.699219 Z M 414.300781 283.699219 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill:none;stroke-width:1.4433;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 462.398438 251.300781 Z M 462.398438 251.300781 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style=" stroke:none;fill-rule:evenodd;fill:rgb(100%,100%,100%);fill-opacity:1;" d="M 300.601562 108.5 L 315.5 124.800781 L 300.601562 141.300781 L 300.601562 131.101562 L 276.199219 131.101562 L 276.199219 118.398438 L 300.601562 118.398438 Z M 267.300781 118.398438 L 267.300781 131.101562 L 269.601562 131.101562 L 269.601562 118.398438 Z M 271.800781 118.398438 L 271.800781 131.101562 L 274 131.101562 L 274 118.398438 Z M 267.300781 108.5 Z M 315.5 141 Z M 315.5 141 "/>
+<path style="fill:none;stroke-width:1.4433;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 447.601562 230.5 L 462.5 214.199219 L 447.601562 197.699219 L 447.601562 207.898438 L 423.199219 207.898438 L 423.199219 220.601562 L 447.601562 220.601562 Z M 447.601562 230.5 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill:none;stroke-width:1.4433;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 414.300781 220.601562 L 414.300781 207.898438 L 416.601562 207.898438 L 416.601562 220.601562 Z M 414.300781 220.601562 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill:none;stroke-width:1.4433;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 418.800781 220.601562 L 418.800781 207.898438 L 421 207.898438 L 421 220.601562 Z M 418.800781 220.601562 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill:none;stroke-width:1.4433;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 414.300781 230.5 Z M 414.300781 230.5 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill:none;stroke-width:1.4433;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 462.5 198 Z M 462.5 198 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style=" stroke:none;fill-rule:evenodd;fill:rgb(100%,100%,100%);fill-opacity:1;" d="M 300.601562 180.699219 L 315.5 197 L 300.601562 213.5 L 300.601562 203.300781 L 276.300781 203.300781 L 276.300781 190.601562 L 300.601562 190.601562 Z M 267.398438 190.601562 L 267.398438 203.300781 L 269.601562 203.300781 L 269.601562 190.601562 Z M 271.800781 190.601562 L 271.800781 203.300781 L 274 203.300781 L 274 190.601562 Z M 267.398438 180.699219 Z M 315.5 213.199219 Z M 315.5 213.199219 "/>
+<path style="fill:none;stroke-width:1.4433;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 447.601562 158.300781 L 462.5 142 L 447.601562 125.5 L 447.601562 135.699219 L 423.300781 135.699219 L 423.300781 148.398438 L 447.601562 148.398438 Z M 447.601562 158.300781 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill:none;stroke-width:1.4433;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 414.398438 148.398438 L 414.398438 135.699219 L 416.601562 135.699219 L 416.601562 148.398438 Z M 414.398438 148.398438 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill:none;stroke-width:1.4433;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 418.800781 148.398438 L 418.800781 135.699219 L 421 135.699219 L 421 148.398438 Z M 418.800781 148.398438 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill:none;stroke-width:1.4433;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 414.398438 158.300781 Z M 414.398438 158.300781 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill:none;stroke-width:1.4433;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 462.5 125.800781 Z M 462.5 125.800781 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill:none;stroke-width:1.4433;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 373.699219 121.898438 L 371.199219 120.601562 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill:none;stroke-width:1.4433;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 368.699219 119.300781 L 366.199219 117.898438 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill:none;stroke-width:1.4433;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 363.601562 116.601562 L 361.101562 115.300781 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill:none;stroke-width:1.4433;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 358.601562 114 L 356.101562 112.699219 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill:none;stroke-width:1.4433;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 353.5 111.398438 L 351 110.101562 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill:none;stroke-width:1.4433;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 348.5 108.800781 L 345.898438 107.398438 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill:none;stroke-width:1.4433;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 343.398438 106.101562 L 340.898438 104.800781 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill:none;stroke-width:1.4433;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 338.398438 103.5 L 335.800781 102.199219 " transform="matrix(1,0,0,-1,-147,339)"/>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph0-1" x="162.1" y="257.8"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph0-2" x="173.604" y="257.8"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph0-3" x="178.9" y="257.8"/>
+  <use xlink:href="#glyph0-4" x="187.796" y="257.8"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph0-5" x="191.38" y="257.8"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph0-6" x="165.6" y="275.6"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph0-4" x="175.392" y="275.6"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph0-5" x="178.976" y="275.6"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph0-7" x="182.56" y="275.6"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph0-1" x="237.2" y="258"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph0-2" x="248.704" y="258"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph0-3" x="254" y="258"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph0-4" x="262.8" y="258"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph0-5" x="266.384" y="258"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph0-8" x="223.8" y="275.7"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph0-9" x="237.096" y="275.7"/>
+  <use xlink:href="#glyph0-5" x="245.992" y="275.7"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph0-10" x="249.576" y="275.7"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph0-4" x="253.976" y="275.7"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph0-6" x="257.56" y="275.7"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph0-4" x="267.256" y="275.7"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph0-5" x="270.84" y="275.7"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph0-7" x="274.424" y="275.7"/>
+</g>
+<path style="fill-rule:evenodd;fill:rgb(20.391846%,39.605713%,64.312744%);fill-opacity:1;stroke-width:1.4433;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 295.699219 248.699219 L 285.601562 248.699219 L 285.601562 288.101562 L 305.699219 288.101562 L 305.699219 248.699219 Z M 295.699219 248.699219 " transform="matrix(1,0,0,-1,-147,339)"/>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph0-2" x="309.2" y="257.8"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph0-7" x="314.4" y="257.8"/>
+  <use xlink:href="#glyph0-11" x="323.296" y="257.8"/>
+  <use xlink:href="#glyph0-9" x="332.192" y="257.8"/>
+  <use xlink:href="#glyph0-12" x="341.088" y="257.8"/>
+  <use xlink:href="#glyph0-7" x="349.088" y="257.8"/>
+  <use xlink:href="#glyph0-13" x="357.984" y="257.8"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph0-10" x="314.8" y="275.6"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph0-3" x="319.28" y="275.6"/>
+  <use xlink:href="#glyph0-14" x="328.176" y="275.6"/>
+  <use xlink:href="#glyph0-15" x="336.176" y="275.6"/>
+  <use xlink:href="#glyph0-14" x="344.176" y="275.6"/>
+</g>
+<path style="fill:none;stroke-width:1.4433;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 395.300781 114.699219 L 396.699219 112.199219 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill:none;stroke-width:1.4433;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 398.101562 109.699219 L 399.5 107.199219 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill:none;stroke-width:1.4433;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 400.800781 104.699219 L 402.199219 102.199219 " transform="matrix(1,0,0,-1,-147,339)"/>
+<use xlink:href="#image7" mask="url(#mask0)" transform="matrix(0.239004,0,0,0.239004,0.5,37.1)"/>
+<use xlink:href="#image7" mask="url(#mask1)" transform="matrix(0.239004,0,0,0.239004,0.5,94.7)"/>
+<use xlink:href="#image7" mask="url(#mask2)" transform="matrix(0.239004,0,0,0.239004,0.5,166.7)"/>
+<path style="fill-rule:evenodd;fill:rgb(74.508667%,89.01825%,82.743835%);fill-opacity:1;stroke-width:1.4433;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 479.800781 197.898438 L 469.800781 197.898438 L 469.800781 237.300781 L 489.898438 237.300781 L 489.898438 197.898438 Z M 479.800781 197.898438 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill-rule:evenodd;fill:rgb(100%,89.802551%,79.214478%);fill-opacity:1;stroke-width:1.4433;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 479.800781 119.699219 L 469.699219 119.699219 L 469.699219 159.101562 L 489.898438 159.101562 L 489.898438 119.699219 Z M 479.800781 119.699219 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill-rule:evenodd;fill:rgb(98.822021%,83.135986%,81.959534%);fill-opacity:1;stroke-width:1.4433;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 479.898438 248.699219 L 469.800781 248.699219 L 469.800781 288.101562 L 490 288.101562 L 490 248.699219 Z M 479.898438 248.699219 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 312 115.398438 C 312 111.800781 307.601562 108.199219 303.300781 108.199219 L 260.5 108.199219 C 256.101562 108.199219 251.800781 104.601562 251.800781 100.898438 C 251.800781 104.601562 247.398438 108.199219 243.101562 108.199219 L 216.199219 108.199219 C 211.898438 108.199219 207.5 111.800781 207.5 115.398438 " tr [...]
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 312 115.398438 Z M 312 115.398438 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 207.5 100.898438 Z M 207.5 100.898438 " transform="matrix(1,0,0,-1,-147,339)"/>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph0-16" x="90.5" y="257.8"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph0-3" x="103.796" y="257.8"/>
+  <use xlink:href="#glyph0-17" x="112.692" y="257.8"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph0-10" x="87.3" y="275.6"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph0-3" x="91.7" y="275.6"/>
+  <use xlink:href="#glyph0-14" x="100.596" y="275.6"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph0-15" x="108.676" y="275.6"/>
+  <use xlink:href="#glyph0-14" x="116.676" y="275.6"/>
+</g>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 500.800781 115.300781 C 500.800781 111.699219 499.199219 108.101562 497.5 108.101562 L 484.398438 108.101562 C 482.800781 108.101562 481.101562 104.5 481.101562 100.898438 C 481.101562 104.5 479.5 108.101562 477.800781 108.101562 L 464.5 108.101562 C 462.800781 108.101562 461.101562 111.699219 461.101562 115.300781  [...]
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 500.800781 115.300781 Z M 500.800781 115.300781 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 461.101562 100.898438 Z M 461.101562 100.898438 " transform="matrix(1,0,0,-1,-147,339)"/>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph0-3" x="133.3" y="16.7"/>
+  <use xlink:href="#glyph0-17" x="142.196" y="16.7"/>
+  <use xlink:href="#glyph0-17" x="151.092" y="16.7"/>
+  <use xlink:href="#glyph0-7" x="159.988" y="16.7"/>
+  <use xlink:href="#glyph0-18" x="168.884" y="16.7"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph0-11" x="177.684" y="16.7"/>
+</g>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 395.398438 326.300781 C 401.5 326.300781 406.199219 321.601562 406.199219 315.5 C 406.199219 309.398438 401.5 304.699219 395.398438 304.699219 C 389.300781 304.699219 384.601562 309.398438 384.601562 315.5 C 384.601562 321.601562 389.300781 326.300781 395.398438 326.300781 Z M 395.398438 326.300781 " transform="matr [...]
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 384.601562 326.300781 Z M 384.601562 326.300781 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 406.199219 304.699219 Z M 406.199219 304.699219 " transform="matrix(1,0,0,-1,-147,339)"/>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph1-1" x="243.4" y="29.8"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph0-17" x="263.8" y="26.2"/>
+  <use xlink:href="#glyph0-3" x="272.696" y="26.2"/>
+  <use xlink:href="#glyph0-2" x="281.592" y="26.2"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph0-3" x="286.792" y="26.2"/>
+  <use xlink:href="#glyph0-5" x="295.688" y="26.2"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph0-5" x="299.272" y="26.2"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph0-7" x="302.856" y="26.2"/>
+  <use xlink:href="#glyph0-5" x="311.752" y="26.2"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph0-13" x="315.336" y="26.2"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph0-2" x="273.6" y="43.9"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph0-7" x="278.896" y="43.9"/>
+  <use xlink:href="#glyph0-3" x="287.792" y="43.9"/>
+  <use xlink:href="#glyph0-11" x="296.688" y="43.9"/>
+</g>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 265.800781 338 C 272 338 276.601562 333.300781 276.601562 327.199219 C 276.601562 321.101562 272 316.398438 265.800781 316.398438 C 259.699219 316.398438 255 321.101562 255 327.199219 C 255 333.300781 259.699219 338 265.800781 338 Z M 265.800781 338 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 255 338 Z M 255 338 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 276.699219 316.398438 Z M 276.699219 316.398438 " transform="matrix(1,0,0,-1,-147,339)"/>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph1-2" x="113.8" y="18.1"/>
+</g>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 219.101562 288.101562 C 219.699219 288.5 220.300781 288.800781 220.898438 289.101562 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 222.699219 290.101562 C 223.398438 290.398438 224 290.699219 224.601562 291 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 226.398438 292 C 227 292.300781 227.601562 292.601562 228.199219 292.898438 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 230 293.800781 C 230.601562 294.101562 231.199219 294.300781 231.800781 294.601562 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 233.5 295.5 C 234.101562 295.699219 234.699219 296 235.300781 296.300781 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 237 297.101562 C 237.601562 297.398438 238.199219 297.601562 238.800781 297.898438 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 240.5 298.601562 C 241.101562 298.898438 241.601562 299.101562 242.199219 299.398438 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 243.898438 300.101562 C 244.5 300.300781 245 300.601562 245.601562 300.800781 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 247.398438 301.5 C 248 301.800781 248.699219 302 249.300781 302.300781 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 251.300781 303 C 251.898438 303.300781 252.5 303.5 253.199219 303.699219 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 255.101562 304.398438 C 255.699219 304.601562 256.300781 304.898438 256.898438 305.101562 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 258.800781 305.699219 C 259.398438 305.898438 260.101562 306.101562 260.601562 306.300781 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 262.5 306.898438 C 263.101562 307.101562 263.699219 307.300781 264.300781 307.5 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 266.101562 308 C 266.699219 308.199219 267.300781 308.398438 267.898438 308.5 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 269.699219 309 C 270.300781 309.199219 270.898438 309.300781 271.5 309.5 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 273.5 310 C 274.199219 310.199219 274.800781 310.300781 275.5 310.5 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 277.5 310.898438 C 278.101562 311.101562 278.800781 311.199219 279.398438 311.398438 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 281.398438 311.800781 C 282 311.898438 282.699219 312 283.300781 312.101562 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 285.199219 312.5 C 285.800781 312.601562 286.398438 312.699219 287.101562 312.800781 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 288.898438 313.101562 C 289.5 313.101562 290.199219 313.199219 290.699219 313.300781 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 292.601562 313.5 C 293.300781 313.601562 294 313.699219 294.601562 313.800781 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 296.699219 314 C 297.398438 314 298 314.101562 298.699219 314.101562 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 300.699219 314.199219 C 301.300781 314.300781 302 314.300781 302.699219 314.398438 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 304.601562 314.398438 C 305.199219 314.398438 305.898438 314.5 306.5 314.5 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 308.398438 314.5 C 309 314.5 309.601562 314.5 310.300781 314.5 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 312.101562 314.398438 C 312.800781 314.398438 313.5 314.398438 314.199219 314.300781 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 316.199219 314.199219 C 316.898438 314.199219 317.5 314.101562 318.199219 314.101562 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 320.199219 313.898438 C 320.800781 313.800781 321.5 313.800781 322.101562 313.699219 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 324 313.5 C 324.601562 313.398438 325.199219 313.300781 325.898438 313.199219 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 327.699219 312.898438 C 328.398438 312.800781 329 312.699219 329.601562 312.5 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 331.699219 312.101562 C 332.300781 312 333 311.800781 333.601562 311.699219 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 335.5 311.199219 C 336.199219 311.101562 336.800781 310.898438 337.398438 310.800781 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 339.300781 310.300781 C 339.898438 310.101562 340.5 309.898438 341.101562 309.699219 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 342.898438 309.101562 C 343.5 308.898438 344.199219 308.699219 344.800781 308.5 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 346.699219 307.800781 C 347.300781 307.601562 348 307.398438 348.601562 307.101562 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 350.398438 306.398438 C 351 306.101562 351.601562 305.898438 352.101562 305.601562 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 353.800781 304.898438 C 354.398438 304.601562 355 304.398438 355.601562 304.101562 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 357.398438 303.199219 C 358.101562 302.898438 358.699219 302.601562 359.199219 302.300781 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 361 301.398438 C 361.5 301 362.101562 300.699219 362.601562 300.398438 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 364.199219 299.5 C 364.800781 299.199219 365.398438 298.800781 366 298.5 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 367.699219 297.398438 C 368.300781 297 368.898438 296.699219 369.398438 296.300781 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 371 295.300781 C 371.5 295 372 294.601562 372.5 294.300781 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 374.300781 293.101562 C 374.898438 292.699219 375.398438 292.300781 375.898438 292 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 377.398438 291 C 377.5 290.898438 377.699219 290.800781 377.800781 290.699219 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style=" stroke:none;fill-rule:evenodd;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 234.601562 50.898438 L 231.898438 44.699219 L 227.898438 50.601562 Z M 234.601562 50.898438 "/>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 243.199219 289.199219 C 243.800781 289.5 244.398438 289.800781 245.101562 290.101562 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 246.898438 291 C 247.5 291.300781 248.199219 291.601562 248.800781 291.898438 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 250.601562 292.699219 C 251.199219 293 251.800781 293.300781 252.398438 293.601562 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 254.199219 294.300781 C 254.800781 294.601562 255.398438 294.898438 256 295.101562 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 257.800781 295.898438 C 258.300781 296.101562 258.898438 296.300781 259.5 296.601562 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 261.300781 297.300781 C 261.800781 297.5 262.398438 297.699219 263 297.898438 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 264.699219 298.601562 C 265.300781 298.800781 266 299.101562 266.601562 299.300781 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 268.601562 300 C 269.199219 300.199219 269.898438 300.398438 270.5 300.699219 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 272.398438 301.300781 C 273 301.5 273.699219 301.699219 274.300781 301.898438 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 276.199219 302.5 C 276.699219 302.699219 277.398438 302.898438 278 303 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 279.800781 303.5 C 280.398438 303.699219 281 303.898438 281.601562 304 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 283.398438 304.5 C 284 304.601562 284.699219 304.800781 285.300781 305 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 287.300781 305.398438 C 288 305.601562 288.699219 305.699219 289.300781 305.898438 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 291.300781 306.300781 C 291.898438 306.398438 292.5 306.5 293.199219 306.601562 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 295.101562 306.898438 C 295.699219 307 296.300781 307.101562 297 307.199219 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 298.800781 307.5 C 299.398438 307.601562 300 307.601562 300.601562 307.699219 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 302.699219 308 C 303.300781 308 304 308.101562 304.699219 308.101562 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 306.699219 308.300781 C 307.398438 308.300781 308 308.398438 308.699219 308.398438 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 310.601562 308.5 C 311.199219 308.5 311.898438 308.5 312.5 308.5 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 314.300781 308.5 C 315 308.5 315.601562 308.5 316.300781 308.5 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 318.300781 308.398438 C 319 308.398438 319.699219 308.398438 320.300781 308.300781 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 322.300781 308.199219 C 323 308.101562 323.601562 308 324.199219 308 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 326.101562 307.800781 C 326.699219 307.699219 327.300781 307.601562 327.898438 307.5 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 329.898438 307.199219 C 330.601562 307 331.300781 306.898438 331.898438 306.800781 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 333.898438 306.398438 C 334.5 306.300781 335.101562 306.101562 335.699219 305.898438 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 337.601562 305.5 C 338.199219 305.300781 338.800781 305.101562 339.398438 305 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 341.300781 304.398438 C 342 304.199219 342.601562 304 343.199219 303.800781 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 345.101562 303.101562 C 345.699219 302.898438 346.300781 302.601562 346.800781 302.398438 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 348.601562 301.699219 C 349.199219 301.398438 349.898438 301.199219 350.398438 300.898438 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 352.300781 300 C 352.898438 299.800781 353.5 299.5 354 299.199219 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 355.699219 298.300781 C 356.300781 298 356.898438 297.699219 357.398438 297.398438 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 359.199219 296.398438 C 359.800781 296.101562 360.300781 295.800781 360.898438 295.5 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 362.398438 294.5 C 363.101562 294.199219 363.699219 293.800781 364.300781 293.398438 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 365.898438 292.398438 C 366.398438 292.199219 366.800781 291.898438 367.199219 291.699219 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style=" stroke:none;fill-rule:evenodd;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 224.300781 49.800781 L 221.199219 43.800781 L 217.5 49.898438 Z M 224.300781 49.800781 "/>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 294 288.699219 C 294.601562 289 295.199219 289.398438 295.800781 289.699219 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 297.601562 290.699219 C 298.101562 291.101562 298.699219 291.398438 299.300781 291.699219 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 301 292.601562 C 301.601562 292.898438 302.101562 293.199219 302.699219 293.5 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 304.300781 294.300781 C 304.898438 294.601562 305.5 294.898438 306.101562 295.199219 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 308 296 C 308.601562 296.300781 309.199219 296.5 309.898438 296.800781 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 311.601562 297.5 C 312.199219 297.699219 312.800781 297.898438 313.398438 298.101562 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 315.199219 298.699219 C 315.800781 299 316.5 299.199219 317.101562 299.300781 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 319.101562 299.898438 C 319.699219 300 320.300781 300.199219 320.898438 300.300781 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 322.699219 300.699219 C 323.398438 300.800781 324.101562 300.898438 324.699219 301 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 326.699219 301.199219 C 327.398438 301.300781 328 301.398438 328.601562 301.398438 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 330.5 301.398438 C 331.199219 301.398438 331.898438 301.398438 332.5 301.398438 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 334.5 301.199219 C 335.101562 301.199219 335.699219 301.101562 336.300781 301 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 338.300781 300.601562 C 339 300.398438 339.601562 300.300781 340.199219 300.101562 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 342 299.5 C 342.699219 299.300781 343.300781 299 343.898438 298.699219 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 345.601562 297.898438 C 346.199219 297.699219 346.800781 297.398438 347.398438 297 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 349 296 C 349.601562 295.699219 350.199219 295.300781 350.699219 295 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 352.300781 293.898438 C 352.898438 293.5 353.398438 293.199219 354 292.800781 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 355.5 291.699219 C 355.699219 291.699219 355.800781 291.601562 355.898438 291.5 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style=" stroke:none;fill-rule:evenodd;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 213 50.300781 L 210.398438 44.199219 L 206.300781 50 Z M 213 50.300781 "/>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 233.5 272.5 C 234.199219 272.5 234.898438 272.5 235.601562 272.5 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 237.699219 272.5 C 238.398438 272.5 239.101562 272.398438 239.800781 272.398438 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 241.898438 272.398438 C 242.5 272.398438 243.199219 272.398438 243.898438 272.398438 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 245.898438 272.398438 C 246.601562 272.398438 247.199219 272.398438 247.898438 272.398438 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 249.800781 272.300781 C 250.5 272.300781 251.101562 272.300781 251.699219 272.300781 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 253.699219 272.199219 C 254.300781 272.199219 254.898438 272.199219 255.5 272.199219 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 257.398438 272.101562 C 258 272.101562 258.601562 272 259.199219 272 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 261 272 C 261.601562 271.898438 262.199219 271.898438 262.800781 271.898438 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 264.898438 271.800781 C 265.601562 271.800781 266.300781 271.699219 267 271.699219 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 269.101562 271.601562 C 269.800781 271.5 270.5 271.5 271.101562 271.398438 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 273.101562 271.300781 C 273.800781 271.300781 274.5 271.199219 275.101562 271.199219 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 277.101562 271 C 277.699219 271 278.398438 271 279 270.898438 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 280.898438 270.800781 C 281.5 270.699219 282.101562 270.699219 282.699219 270.601562 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 284.5 270.398438 C 285.101562 270.398438 285.699219 270.300781 286.300781 270.300781 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 288.199219 270.101562 C 288.898438 270 289.601562 269.898438 290.300781 269.898438 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 292.398438 269.601562 C 293.101562 269.5 293.800781 269.5 294.398438 269.398438 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 296.398438 269.101562 C 297.101562 269 297.699219 268.898438 298.398438 268.800781 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 300.300781 268.601562 C 300.898438 268.5 301.5 268.398438 302.101562 268.300781 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 303.898438 268 C 304.5 267.898438 305.101562 267.800781 305.699219 267.699219 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 307.601562 267.398438 C 308.300781 267.199219 309 267.101562 309.699219 267 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 311.699219 266.601562 C 312.398438 266.5 313 266.300781 313.699219 266.199219 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 315.601562 265.699219 C 316.199219 265.601562 316.800781 265.5 317.5 265.300781 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 319.199219 264.898438 C 319.800781 264.699219 320.398438 264.601562 320.898438 264.398438 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 322.800781 263.898438 C 323.5 263.699219 324.199219 263.5 324.898438 263.300781 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 326.800781 262.699219 C 327.5 262.5 328.101562 262.300781 328.699219 262.101562 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 330.398438 261.398438 C 331 261.199219 331.601562 261 332.101562 260.800781 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 333.898438 260.101562 C 334.601562 259.800781 335.199219 259.5 335.800781 259.199219 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 337.601562 258.300781 C 338.199219 258.101562 338.800781 257.800781 339.300781 257.5 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 340.898438 256.601562 C 341.5 256.300781 342.101562 255.898438 342.601562 255.601562 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 344.300781 254.398438 C 344.800781 254.101562 345.300781 253.699219 345.898438 253.300781 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 347.199219 252.199219 C 347.800781 251.699219 348.300781 251.300781 348.800781 250.800781 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 350.199219 249.398438 C 350.601562 249 351.101562 248.5 351.5 248.101562 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 352.800781 246.601562 C 353.199219 246 353.601562 245.5 354 245.101562 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 355.199219 243.5 C 355.601562 243 356 242.5 356.398438 242 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style=" stroke:none;fill-rule:evenodd;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 213 101.699219 L 212.398438 95 L 206.699219 99.300781 Z M 213 101.699219 "/>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 259.601562 278.101562 C 260.300781 278.101562 261 278.101562 261.800781 278.101562 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 263.898438 278.101562 C 264.601562 278.101562 265.300781 278.101562 265.898438 278.101562 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 268 278 C 268.699219 278 269.300781 278 270 278 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 272 278 C 272.601562 278 273.300781 277.898438 273.898438 277.898438 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 275.898438 277.898438 C 276.5 277.800781 277.101562 277.800781 277.800781 277.800781 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 279.601562 277.699219 C 280.300781 277.699219 280.898438 277.699219 281.5 277.601562 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 283.300781 277.5 C 283.898438 277.5 284.5 277.5 285.101562 277.398438 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 287.101562 277.300781 C 287.800781 277.300781 288.5 277.199219 289.199219 277.199219 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 291.300781 277 C 292 277 292.601562 276.898438 293.300781 276.898438 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 295.300781 276.699219 C 296 276.601562 296.601562 276.601562 297.300781 276.5 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 299.199219 276.300781 C 299.800781 276.300781 300.5 276.199219 301.101562 276.101562 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 302.898438 275.898438 C 303.5 275.800781 304.101562 275.800781 304.699219 275.699219 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 306.5 275.5 C 307.199219 275.398438 307.800781 275.300781 308.5 275.199219 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 310.601562 274.898438 C 311.300781 274.800781 312 274.699219 312.601562 274.601562 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 314.601562 274.199219 C 315.300781 274.101562 315.898438 274 316.601562 273.898438 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 318.398438 273.5 C 319.101562 273.398438 319.699219 273.300781 320.300781 273.101562 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 322.101562 272.800781 C 322.601562 272.601562 323.199219 272.5 323.800781 272.398438 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 325.800781 271.898438 C 326.5 271.699219 327.199219 271.601562 327.898438 271.398438 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 329.800781 270.800781 C 330.398438 270.699219 331.101562 270.5 331.699219 270.300781 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 333.5 269.699219 C 334.101562 269.5 334.699219 269.300781 335.300781 269.101562 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 337 268.601562 C 337.601562 268.300781 338.199219 268.101562 338.898438 267.800781 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 340.800781 267.101562 C 341.398438 266.800781 342 266.5 342.601562 266.300781 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 344.398438 265.5 C 344.898438 265.199219 345.5 264.898438 346 264.601562 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 347.601562 263.800781 C 348.300781 263.5 348.898438 263.101562 349.5 262.699219 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 351.199219 261.699219 C 351.699219 261.300781 352.199219 261 352.699219 260.601562 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 354.199219 259.5 C 354.800781 259.101562 355.300781 258.699219 355.800781 258.300781 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 357.300781 256.898438 C 357.800781 256.5 358.199219 256 358.699219 255.601562 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 359.898438 254.300781 C 360.398438 253.699219 360.898438 253.199219 361.300781 252.699219 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 362.5 251.101562 C 362.800781 250.601562 363.199219 250.101562 363.5 249.601562 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 364.601562 247.898438 C 365 247.398438 365.300781 246.800781 365.601562 246.300781 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 366.601562 244.601562 C 367 244 367.300781 243.398438 367.699219 242.898438 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style=" stroke:none;fill-rule:evenodd;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 223.898438 101.699219 L 224.199219 95 L 217.898438 98.5 Z M 223.898438 101.699219 "/>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 305.699219 280 C 306.5 280 307.199219 280 307.898438 280 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 309.898438 280 C 310.601562 279.898438 311.300781 279.898438 312 279.898438 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 314 279.898438 C 314.601562 279.800781 315.300781 279.800781 315.898438 279.800781 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 317.800781 279.699219 C 318.398438 279.601562 319.101562 279.601562 319.699219 279.5 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 321.5 279.398438 C 322.101562 279.300781 322.800781 279.300781 323.398438 279.199219 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 325.5 279 C 326.199219 278.898438 326.800781 278.800781 327.5 278.699219 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 329.5 278.398438 C 330.101562 278.398438 330.800781 278.300781 331.398438 278.199219 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 333.300781 277.898438 C 333.898438 277.699219 334.5 277.601562 335.101562 277.5 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 336.898438 277.101562 C 337.5 277 338.300781 276.800781 338.898438 276.601562 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 340.898438 276.101562 C 341.5 276 342.199219 275.800781 342.800781 275.601562 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 344.601562 275 C 345.199219 274.800781 345.800781 274.601562 346.398438 274.398438 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 348.101562 273.800781 C 348.800781 273.5 349.398438 273.300781 350.101562 273 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 351.898438 272.199219 C 352.5 271.898438 353.101562 271.601562 353.601562 271.300781 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 355.300781 270.5 C 355.800781 270.101562 356.398438 269.800781 356.898438 269.5 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 358.601562 268.398438 C 359.199219 268 359.699219 267.601562 360.199219 267.199219 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 361.699219 266.101562 C 362.199219 265.699219 362.699219 265.199219 363.199219 264.800781 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 364.601562 263.398438 C 365.101562 263 365.601562 262.5 366 262 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 367.199219 260.601562 C 367.601562 260 368 259.5 368.398438 259 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 369.5 257.398438 C 369.898438 256.800781 370.199219 256.300781 370.5 255.699219 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 371.5 254 C 371.800781 253.398438 372.101562 252.800781 372.300781 252.199219 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 373.101562 250.5 C 373.398438 249.898438 373.601562 249.199219 373.898438 248.601562 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 374.5 246.800781 C 374.800781 246.199219 375 245.601562 375.199219 245 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 375.898438 243.101562 C 376 242.800781 376.199219 242.398438 376.300781 242.101562 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style=" stroke:none;fill-rule:evenodd;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 231 101.699219 L 232.5 95.199219 L 225.699219 97.5 Z M 231 101.699219 "/>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 233.5 260.898438 C 234.101562 260.699219 234.898438 260.5 235.5 260.300781 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 237.5 259.699219 C 238.199219 259.5 238.898438 259.300781 239.601562 259 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 241.601562 258.398438 C 242.199219 258.199219 242.898438 258 243.5 257.800781 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 245.5 257.199219 C 246.101562 257 246.800781 256.800781 247.398438 256.601562 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 249.300781 255.898438 C 249.898438 255.699219 250.601562 255.5 251.199219 255.300781 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 253 254.699219 C 253.601562 254.5 254.300781 254.300781 254.898438 254.101562 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 256.699219 253.5 C 257.300781 253.199219 257.898438 253 258.5 252.800781 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 260.199219 252.199219 C 260.800781 252 261.398438 251.800781 262 251.601562 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 263.699219 251 C 264.300781 250.800781 264.898438 250.601562 265.5 250.398438 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 267.199219 249.800781 C 267.699219 249.5 268.300781 249.300781 268.800781 249.101562 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 270.601562 248.5 C 271.300781 248.199219 271.898438 248 272.601562 247.699219 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 274.601562 247 C 275.199219 246.699219 275.898438 246.398438 276.5 246.199219 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 278.398438 245.398438 C 279.101562 245.199219 279.699219 244.898438 280.300781 244.699219 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 282.199219 243.898438 C 282.800781 243.601562 283.398438 243.398438 284.101562 243.101562 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 285.800781 242.398438 C 286.398438 242.101562 287 241.898438 287.601562 241.601562 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 289.398438 240.898438 C 290 240.601562 290.5 240.398438 291.101562 240.101562 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 292.800781 239.398438 C 293.300781 239.101562 293.898438 238.800781 294.398438 238.601562 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 296.101562 237.898438 C 296.601562 237.601562 297.199219 237.300781 297.699219 237.101562 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 299.398438 236.300781 C 300.101562 236 300.699219 235.601562 301.398438 235.300781 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 303.300781 234.398438 C 303.898438 234.101562 304.5 233.800781 305.101562 233.5 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 306.898438 232.5 C 307.5 232.199219 308.101562 231.898438 308.699219 231.601562 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 310.398438 230.699219 C 311 230.300781 311.601562 230 312.101562 229.699219 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 313.800781 228.800781 C 314.300781 228.5 314.898438 228.199219 315.398438 227.898438 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 317 227 C 317.5 226.699219 318 226.300781 318.5 226 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 320 225.101562 C 320.601562 224.800781 321.199219 224.398438 321.800781 224 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 323.601562 222.898438 C 324.199219 222.5 324.699219 222.101562 325.300781 221.800781 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 327 220.601562 C 327.5 220.199219 328.101562 219.898438 328.601562 219.5 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 330.199219 218.300781 C 330.699219 218 331.199219 217.601562 331.699219 217.199219 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 333.199219 216.101562 C 333.699219 215.699219 334.101562 215.300781 334.601562 215 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 336 213.800781 C 336.5 213.398438 337 213 337.5 212.5 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 339.101562 211.101562 C 339.601562 210.699219 340.199219 210.199219 340.699219 209.699219 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 342.101562 208.300781 C 342.601562 207.898438 343 207.398438 343.5 207 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 344.699219 205.601562 C 345.199219 205.199219 345.601562 204.699219 346 204.300781 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 347.101562 202.898438 C 347.601562 202.398438 348 201.898438 348.5 201.300781 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 349.699219 199.699219 C 350.101562 199.101562 350.5 198.601562 350.898438 198.101562 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 352 196.398438 C 352.300781 195.898438 352.699219 195.398438 353 194.898438 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 353.898438 193.300781 C 354.199219 192.699219 354.5 192.101562 354.800781 191.5 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 355.699219 189.699219 C 356 189 356.199219 188.398438 356.5 187.800781 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 357.101562 186.101562 C 357.300781 185.5 357.5 184.898438 357.699219 184.300781 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 358.199219 182.398438 C 358.398438 181.699219 358.601562 181 358.699219 180.398438 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 359.101562 178.5 C 359.199219 177.898438 359.300781 177.199219 359.300781 176.699219 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 359.601562 174.699219 C 359.601562 174 359.699219 173.300781 359.699219 172.699219 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 359.800781 170.800781 C 359.800781 170.101562 359.800781 169.5 359.800781 168.898438 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 359.898438 166.800781 C 359.898438 166.101562 359.898438 165.5 359.898438 164.898438 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style=" stroke:none;fill-rule:evenodd;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 212.898438 179.898438 L 216.5 174.300781 L 209.300781 174.199219 Z M 212.898438 179.898438 "/>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 259.699219 260.898438 C 260.300781 260.699219 261 260.398438 261.699219 260.199219 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 263.699219 259.5 C 264.300781 259.199219 265 259 265.601562 258.699219 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 267.601562 258 C 268.199219 257.800781 268.800781 257.601562 269.5 257.300781 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 271.398438 256.601562 C 272 256.398438 272.601562 256.101562 273.199219 255.898438 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 275.101562 255.199219 C 275.699219 254.898438 276.300781 254.699219 276.898438 254.5 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 278.699219 253.699219 C 279.300781 253.5 279.898438 253.300781 280.5 253 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 282.199219 252.300781 C 282.800781 252.101562 283.398438 251.800781 283.898438 251.601562 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 285.601562 250.898438 C 286.199219 250.601562 286.800781 250.398438 287.300781 250.199219 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 289 249.398438 C 289.5 249.199219 290 249 290.601562 248.699219 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 292.5 247.898438 C 293.199219 247.601562 293.800781 247.300781 294.5 247 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 296.398438 246.101562 C 297 245.800781 297.601562 245.601562 298.199219 245.300781 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 300 244.398438 C 300.699219 244.101562 301.300781 243.800781 301.898438 243.5 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 303.601562 242.699219 C 304.199219 242.398438 304.800781 242.101562 305.300781 241.800781 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 307 240.898438 C 307.601562 240.601562 308.199219 240.300781 308.699219 240.101562 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 310.398438 239.199219 C 310.898438 238.898438 311.398438 238.601562 312 238.300781 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 313.601562 237.5 C 314.101562 237.199219 314.601562 236.898438 315.101562 236.601562 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 317 235.601562 C 317.601562 235.199219 318.199219 234.800781 318.800781 234.5 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 320.601562 233.398438 C 321.199219 233.101562 321.800781 232.699219 322.300781 232.398438 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 324 231.300781 C 324.601562 231 325.101562 230.601562 325.699219 230.300781 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 327.300781 229.199219 C 327.800781 228.898438 328.300781 228.5 328.800781 228.199219 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 330.398438 227.101562 C 330.898438 226.800781 331.398438 226.5 331.898438 226.101562 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 333.300781 225.101562 C 333.898438 224.699219 334.398438 224.300781 335 223.898438 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 336.601562 222.601562 C 337.199219 222.199219 337.699219 221.699219 338.300781 221.300781 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 339.800781 220.101562 C 340.398438 219.601562 340.898438 219.199219 341.300781 218.800781 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 342.800781 217.5 C 343.300781 217.101562 343.699219 216.699219 344.199219 216.300781 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 345.5 215 C 346 214.601562 346.398438 214.199219 346.800781 213.800781 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 348.300781 212.398438 C 348.800781 211.898438 349.300781 211.398438 349.699219 210.898438 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 351.101562 209.398438 C 351.601562 208.898438 352 208.398438 352.398438 207.898438 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 353.601562 206.398438 C 354 205.898438 354.398438 205.398438 354.800781 204.898438 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 355.898438 203.5 C 356.300781 203 356.699219 202.398438 357 201.898438 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 358.199219 200.199219 C 358.5 199.601562 358.898438 199 359.199219 198.5 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 360.199219 196.800781 C 360.5 196.199219 360.800781 195.699219 361.101562 195.101562 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 361.898438 193.5 C 362.199219 192.898438 362.5 192.300781 362.699219 191.699219 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 363.5 189.800781 C 363.699219 189.101562 364 188.5 364.199219 187.898438 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 364.800781 186.101562 C 364.898438 185.5 365.101562 184.898438 365.199219 184.300781 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 365.699219 182.398438 C 365.898438 181.699219 366 181 366.101562 180.398438 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 366.398438 178.5 C 366.5 177.800781 366.601562 177.199219 366.699219 176.601562 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 366.800781 174.601562 C 366.898438 173.898438 366.898438 173.300781 366.898438 172.601562 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 367 170.699219 C 367 170 367.101562 169.398438 367.101562 168.800781 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 367.101562 166.699219 C 367.101562 166.101562 367.101562 165.398438 367.101562 164.800781 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style=" stroke:none;fill-rule:evenodd;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 220.101562 179.898438 L 223.699219 174.300781 L 216.5 174.199219 Z M 220.101562 179.898438 "/>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 305.699219 248.699219 C 306.398438 248.398438 307 248.101562 307.601562 247.699219 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 309.5 246.800781 C 310.101562 246.5 310.699219 246.199219 311.300781 245.898438 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 313.101562 244.898438 C 313.699219 244.699219 314.300781 244.300781 314.898438 244 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 316.601562 243.101562 C 317.199219 242.800781 317.800781 242.5 318.300781 242.199219 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 320 241.199219 C 320.5 240.898438 321.101562 240.601562 321.601562 240.300781 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 323.199219 239.398438 C 323.699219 239.101562 324.300781 238.800781 324.800781 238.5 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 326.398438 237.5 C 327 237.101562 327.601562 236.699219 328.199219 236.398438 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 330 235.199219 C 330.5 234.898438 331.101562 234.5 331.699219 234.101562 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 333.300781 233.101562 C 333.898438 232.699219 334.398438 232.300781 334.898438 232 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 336.5 230.898438 C 337 230.5 337.5 230.101562 338 229.800781 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 339.5 228.699219 C 340 228.300781 340.5 228 340.898438 227.601562 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 342.601562 226.300781 C 343.101562 225.898438 343.699219 225.5 344.199219 225 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 345.800781 223.800781 C 346.300781 223.300781 346.800781 222.898438 347.300781 222.5 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 348.699219 221.199219 C 349.199219 220.800781 349.699219 220.300781 350.101562 219.898438 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 351.5 218.699219 C 351.898438 218.199219 352.300781 217.800781 352.800781 217.398438 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 354.199219 215.898438 C 354.699219 215.398438 355.199219 214.898438 355.699219 214.398438 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 357 213 C 357.398438 212.5 357.898438 212 358.300781 211.5 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 359.5 210 C 359.898438 209.5 360.300781 209.101562 360.699219 208.601562 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 361.800781 207.101562 C 362.199219 206.5 362.601562 206 363 205.398438 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 364.101562 203.699219 C 364.5 203.199219 364.800781 202.601562 365.199219 202.101562 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 366.199219 200.398438 C 366.5 199.898438 366.800781 199.398438 367.101562 198.800781 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 368 197.101562 C 368.300781 196.5 368.601562 195.800781 368.800781 195.199219 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 369.601562 193.398438 C 369.898438 192.800781 370.101562 192.199219 370.300781 191.601562 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 371 189.898438 C 371.199219 189.300781 371.398438 188.601562 371.601562 188 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 372.199219 186.101562 C 372.300781 185.398438 372.5 184.800781 372.601562 184.199219 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 373 182.398438 C 373.101562 181.699219 373.199219 181 373.398438 180.398438 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 373.601562 178.398438 C 373.699219 177.800781 373.800781 177.101562 373.800781 176.5 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 374 174.601562 C 374 173.898438 374.101562 173.199219 374.101562 172.601562 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 374.199219 170.601562 C 374.199219 170 374.199219 169.398438 374.199219 168.800781 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 374.300781 166.699219 C 374.300781 166 374.300781 165.398438 374.300781 164.800781 " transform="matrix(1,0,0,-1,-147,339)"/>
+<path style=" stroke:none;fill-rule:evenodd;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 227.300781 179.898438 L 230.898438 174.199219 L 223.699219 174.300781 Z M 227.300781 179.898438 "/>
+</g>
+</defs>
+<g id="surface1">
+<use xlink:href="#surface23"/>
+</g>
+</svg>
diff --git a/site/img/blog/disaggregation/overview.pdf b/site/img/blog/disaggregation/overview.pdf
new file mode 100644
index 0000000..cbdb091
Binary files /dev/null and b/site/img/blog/disaggregation/overview.pdf differ
diff --git a/site/img/blog/disaggregation/overview.svg b/site/img/blog/disaggregation/overview.svg
new file mode 100644
index 0000000..576ad59
--- /dev/null
+++ b/site/img/blog/disaggregation/overview.svg
@@ -0,0 +1,257 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="303pt" height="113pt" viewBox="0 0 303 113" version="1.1">
+<defs>
+<g>
+<symbol overflow="visible" id="glyph0-0">
+<path style="stroke:none;" d="M 2.25 -10.265625 C 2.394531 -10.398438 2.550781 -10.523438 2.71875 -10.640625 C 2.894531 -10.753906 3.082031 -10.851562 3.28125 -10.9375 C 3.488281 -11.019531 3.710938 -11.085938 3.953125 -11.140625 C 4.191406 -11.191406 4.445312 -11.21875 4.71875 -11.21875 C 5.101562 -11.21875 5.445312 -11.164062 5.75 -11.0625 C 6.0625 -10.957031 6.328125 -10.804688 6.546875 -10.609375 C 6.765625 -10.421875 6.9375 -10.191406 7.0625 -9.921875 C 7.1875 -9.648438 7.25 -9.3476 [...]
+</symbol>
+<symbol overflow="visible" id="glyph0-1">
+<path style="stroke:none;" d="M 1.265625 0 L 1.265625 -9.109375 L 2.234375 -9.109375 C 2.460938 -9.109375 2.601562 -9 2.65625 -8.78125 L 2.765625 -7.84375 C 3.109375 -8.257812 3.488281 -8.597656 3.90625 -8.859375 C 4.320312 -9.128906 4.804688 -9.265625 5.359375 -9.265625 C 5.972656 -9.265625 6.46875 -9.09375 6.84375 -8.75 C 7.226562 -8.40625 7.503906 -7.941406 7.671875 -7.359375 C 7.804688 -7.691406 7.976562 -7.976562 8.1875 -8.21875 C 8.394531 -8.457031 8.625 -8.65625 8.875 -8.8125 C 9. [...]
+</symbol>
+<symbol overflow="visible" id="glyph0-2">
+<path style="stroke:none;" d="M 7.0625 0 C 6.90625 0 6.785156 -0.0234375 6.703125 -0.078125 C 6.617188 -0.128906 6.550781 -0.226562 6.5 -0.375 L 6.328125 -1.234375 C 6.085938 -1.015625 5.851562 -0.816406 5.625 -0.640625 C 5.394531 -0.472656 5.15625 -0.332031 4.90625 -0.21875 C 4.65625 -0.101562 4.382812 -0.015625 4.09375 0.046875 C 3.8125 0.109375 3.5 0.140625 3.15625 0.140625 C 2.800781 0.140625 2.46875 0.09375 2.15625 0 C 1.84375 -0.101562 1.566406 -0.253906 1.328125 -0.453125 C 1.0976 [...]
+</symbol>
+<symbol overflow="visible" id="glyph0-3">
+<path style="stroke:none;" d="M 1.265625 3.09375 L 1.265625 -9.109375 L 2.234375 -9.109375 C 2.460938 -9.109375 2.601562 -9 2.65625 -8.78125 L 2.796875 -7.703125 C 3.179688 -8.179688 3.625 -8.5625 4.125 -8.84375 C 4.632812 -9.132812 5.210938 -9.28125 5.859375 -9.28125 C 6.390625 -9.28125 6.863281 -9.175781 7.28125 -8.96875 C 7.707031 -8.769531 8.070312 -8.472656 8.375 -8.078125 C 8.675781 -7.691406 8.90625 -7.207031 9.0625 -6.625 C 9.226562 -6.039062 9.3125 -5.367188 9.3125 -4.609375 C 9 [...]
+</symbol>
+<symbol overflow="visible" id="glyph0-4">
+<path style="stroke:none;" d="M 5 -9.265625 C 5.550781 -9.265625 6.054688 -9.171875 6.515625 -8.984375 C 6.984375 -8.804688 7.382812 -8.539062 7.71875 -8.1875 C 8.0625 -7.84375 8.328125 -7.414062 8.515625 -6.90625 C 8.710938 -6.40625 8.8125 -5.832031 8.8125 -5.1875 C 8.8125 -4.9375 8.785156 -4.765625 8.734375 -4.671875 C 8.679688 -4.585938 8.578125 -4.546875 8.421875 -4.546875 L 2.328125 -4.546875 C 2.335938 -3.972656 2.414062 -3.472656 2.5625 -3.046875 C 2.707031 -2.617188 2.90625 -2.26 [...]
+</symbol>
+<symbol overflow="visible" id="glyph0-5">
+<path style="stroke:none;" d="M 1.265625 0 L 1.265625 -9.109375 L 2.1875 -9.109375 C 2.363281 -9.109375 2.484375 -9.078125 2.546875 -9.015625 C 2.609375 -8.953125 2.65625 -8.835938 2.6875 -8.671875 L 2.78125 -7.296875 C 3.070312 -7.910156 3.425781 -8.394531 3.84375 -8.75 C 4.269531 -9.101562 4.785156 -9.28125 5.390625 -9.28125 C 5.578125 -9.28125 5.757812 -9.257812 5.9375 -9.21875 C 6.113281 -9.175781 6.273438 -9.109375 6.421875 -9.015625 L 6.296875 -7.828125 C 6.265625 -7.671875 6.17578 [...]
+</symbol>
+<symbol overflow="visible" id="glyph0-6">
+<path style="stroke:none;" d="M 7.859375 0 C 7.628906 0 7.484375 -0.109375 7.421875 -0.328125 L 7.28125 -1.4375 C 6.894531 -0.96875 6.445312 -0.585938 5.9375 -0.296875 C 5.4375 -0.015625 4.863281 0.125 4.21875 0.125 C 3.695312 0.125 3.222656 0.0234375 2.796875 -0.171875 C 2.367188 -0.378906 2.003906 -0.675781 1.703125 -1.0625 C 1.410156 -1.445312 1.179688 -1.929688 1.015625 -2.515625 C 0.859375 -3.097656 0.78125 -3.769531 0.78125 -4.53125 C 0.78125 -5.195312 0.867188 -5.816406 1.046875 - [...]
+</symbol>
+<symbol overflow="visible" id="glyph0-7">
+<path style="stroke:none;" d="M 2.78125 -9.109375 L 2.78125 -3.296875 C 2.78125 -2.609375 2.9375 -2.078125 3.25 -1.703125 C 3.5625 -1.328125 4.046875 -1.140625 4.703125 -1.140625 C 5.171875 -1.140625 5.609375 -1.25 6.015625 -1.46875 C 6.429688 -1.6875 6.8125 -1.992188 7.15625 -2.390625 L 7.15625 -9.109375 L 8.765625 -9.109375 L 8.765625 0 L 7.8125 0 C 7.582031 0 7.4375 -0.109375 7.375 -0.328125 L 7.25 -1.3125 C 6.851562 -0.875 6.410156 -0.519531 5.921875 -0.25 C 5.429688 0.0078125 4.8671 [...]
+</symbol>
+<symbol overflow="visible" id="glyph0-8">
+<path style="stroke:none;" d="M 7.609375 -7.5 C 7.566406 -7.425781 7.519531 -7.375 7.46875 -7.34375 C 7.414062 -7.3125 7.347656 -7.296875 7.265625 -7.296875 C 7.179688 -7.296875 7.082031 -7.332031 6.96875 -7.40625 C 6.863281 -7.476562 6.734375 -7.554688 6.578125 -7.640625 C 6.421875 -7.734375 6.222656 -7.816406 5.984375 -7.890625 C 5.753906 -7.972656 5.472656 -8.015625 5.140625 -8.015625 C 4.691406 -8.015625 4.296875 -7.929688 3.953125 -7.765625 C 3.609375 -7.609375 3.320312 -7.378906 3. [...]
+</symbol>
+<symbol overflow="visible" id="glyph1-0">
+<path style="stroke:none;" d="M 1.296875 -5.9375 C 1.390625 -6.007812 1.484375 -6.078125 1.578125 -6.140625 C 1.679688 -6.210938 1.789062 -6.273438 1.90625 -6.328125 C 2.019531 -6.378906 2.144531 -6.414062 2.28125 -6.4375 C 2.425781 -6.46875 2.578125 -6.484375 2.734375 -6.484375 C 2.953125 -6.484375 3.148438 -6.453125 3.328125 -6.390625 C 3.503906 -6.335938 3.65625 -6.253906 3.78125 -6.140625 C 3.90625 -6.023438 4.003906 -5.890625 4.078125 -5.734375 C 4.148438 -5.578125 4.1875 -5.398438  [...]
+</symbol>
+<symbol overflow="visible" id="glyph1-1">
+<path style="stroke:none;" d="M 5.71875 -3.71875 C 5.71875 -3.070312 5.644531 -2.507812 5.5 -2.03125 C 5.363281 -1.550781 5.175781 -1.15625 4.9375 -0.84375 C 4.695312 -0.53125 4.410156 -0.296875 4.078125 -0.140625 C 3.742188 0.00390625 3.390625 0.078125 3.015625 0.078125 C 2.628906 0.078125 2.269531 0.00390625 1.9375 -0.140625 C 1.613281 -0.296875 1.332031 -0.53125 1.09375 -0.84375 C 0.851562 -1.15625 0.660156 -1.550781 0.515625 -2.03125 C 0.378906 -2.507812 0.3125 -3.070312 0.3125 -3.71 [...]
+</symbol>
+<symbol overflow="visible" id="glyph1-2">
+<path style="stroke:none;" d="M 1.296875 -0.703125 L 2.890625 -0.703125 L 2.890625 -5.796875 C 2.890625 -5.941406 2.894531 -6.09375 2.90625 -6.25 L 1.59375 -5.109375 C 1.539062 -5.078125 1.492188 -5.054688 1.453125 -5.046875 C 1.410156 -5.035156 1.367188 -5.03125 1.328125 -5.03125 C 1.285156 -5.039062 1.25 -5.054688 1.21875 -5.078125 C 1.1875 -5.097656 1.160156 -5.125 1.140625 -5.15625 L 0.859375 -5.546875 L 3.078125 -7.46875 L 3.828125 -7.46875 L 3.828125 -0.703125 L 5.296875 -0.703125  [...]
+</symbol>
+<symbol overflow="visible" id="glyph1-3">
+<path style="stroke:none;" d="M 3.078125 -7.546875 C 3.390625 -7.546875 3.679688 -7.5 3.953125 -7.40625 C 4.234375 -7.3125 4.472656 -7.171875 4.671875 -6.984375 C 4.867188 -6.804688 5.023438 -6.585938 5.140625 -6.328125 C 5.253906 -6.078125 5.3125 -5.789062 5.3125 -5.46875 C 5.3125 -5.1875 5.269531 -4.925781 5.1875 -4.6875 C 5.101562 -4.445312 4.988281 -4.21875 4.84375 -4 C 4.707031 -3.789062 4.546875 -3.582031 4.359375 -3.375 C 4.171875 -3.175781 3.972656 -2.972656 3.765625 -2.765625 L  [...]
+</symbol>
+<symbol overflow="visible" id="glyph2-0">
+<path style="stroke:none;" d="M 1.796875 -12.390625 L 11.6875 -12.390625 L 11.6875 0 L 1.796875 0 Z M 2.46875 -11.71875 L 2.46875 -0.671875 L 11.015625 -0.671875 L 11.015625 -11.71875 Z M 2.46875 -11.71875 "/>
+</symbol>
+<symbol overflow="visible" id="glyph2-1">
+<path style="stroke:none;" d="M 1.109375 -4.671875 C 1.109375 -6.367188 1.375 -7.890625 1.90625 -9.234375 C 2.4375 -10.585938 3.253906 -11.859375 4.359375 -13.046875 L 5.890625 -13.046875 C 4.796875 -11.828125 3.988281 -10.53125 3.46875 -9.15625 C 2.957031 -7.789062 2.703125 -6.289062 2.703125 -4.65625 C 2.703125 -3.03125 2.957031 -1.535156 3.46875 -0.171875 C 3.976562 1.191406 4.785156 2.492188 5.890625 3.734375 L 4.359375 3.734375 C 3.253906 2.535156 2.4375 1.257812 1.90625 -0.09375 C  [...]
+</symbol>
+<symbol overflow="visible" id="glyph2-2">
+<path style="stroke:none;" d="M 1.25 0 L 1.25 -7.296875 C 1.25 -7.960938 1.234375 -8.703125 1.203125 -9.515625 L 2.6875 -9.515625 C 2.738281 -8.429688 2.765625 -7.78125 2.765625 -7.5625 L 2.796875 -7.5625 C 3.046875 -8.382812 3.332031 -8.941406 3.65625 -9.234375 C 3.988281 -9.535156 4.453125 -9.6875 5.046875 -9.6875 C 5.265625 -9.6875 5.484375 -9.65625 5.703125 -9.59375 L 5.703125 -8.140625 C 5.484375 -8.203125 5.203125 -8.234375 4.859375 -8.234375 C 4.203125 -8.234375 3.695312 -7.953125 [...]
+</symbol>
+<symbol overflow="visible" id="glyph2-3">
+<path style="stroke:none;" d="M 2.421875 -4.421875 C 2.421875 -3.328125 2.644531 -2.484375 3.09375 -1.890625 C 3.550781 -1.304688 4.210938 -1.015625 5.078125 -1.015625 C 5.765625 -1.015625 6.3125 -1.148438 6.71875 -1.421875 C 7.132812 -1.703125 7.414062 -2.050781 7.5625 -2.46875 L 8.953125 -2.078125 C 8.390625 -0.578125 7.097656 0.171875 5.078125 0.171875 C 3.671875 0.171875 2.597656 -0.242188 1.859375 -1.078125 C 1.128906 -1.921875 0.765625 -3.164062 0.765625 -4.8125 C 0.765625 -6.38281 [...]
+</symbol>
+<symbol overflow="visible" id="glyph2-4">
+<path style="stroke:none;" d="M 6.75 0 L 6.75 -6.03125 C 6.75 -6.945312 6.625 -7.582031 6.375 -7.9375 C 6.125 -8.289062 5.671875 -8.46875 5.015625 -8.46875 C 4.335938 -8.46875 3.800781 -8.207031 3.40625 -7.6875 C 3.019531 -7.175781 2.828125 -6.453125 2.828125 -5.515625 L 2.828125 0 L 1.25 0 L 1.25 -7.484375 C 1.25 -8.585938 1.234375 -9.265625 1.203125 -9.515625 L 2.6875 -9.515625 C 2.695312 -9.484375 2.703125 -9.398438 2.703125 -9.265625 C 2.710938 -9.140625 2.722656 -8.992188 2.734375 - [...]
+</symbol>
+<symbol overflow="visible" id="glyph2-5">
+<path style="stroke:none;" d="M 9.25 -4.765625 C 9.25 -3.097656 8.882812 -1.859375 8.15625 -1.046875 C 7.425781 -0.234375 6.363281 0.171875 4.96875 0.171875 C 3.582031 0.171875 2.53125 -0.25 1.8125 -1.09375 C 1.101562 -1.9375 0.75 -3.160156 0.75 -4.765625 C 0.75 -8.046875 2.171875 -9.6875 5.015625 -9.6875 C 6.472656 -9.6875 7.539062 -9.285156 8.21875 -8.484375 C 8.90625 -7.679688 9.25 -6.441406 9.25 -4.765625 Z M 7.59375 -4.765625 C 7.59375 -6.078125 7.394531 -7.03125 7 -7.625 C 6.613281 [...]
+</symbol>
+<symbol overflow="visible" id="glyph2-6">
+<path style="stroke:none;" d="M 4.875 -0.078125 C 4.351562 0.0664062 3.816406 0.140625 3.265625 0.140625 C 2.003906 0.140625 1.375 -0.578125 1.375 -2.015625 L 1.375 -8.359375 L 0.265625 -8.359375 L 0.265625 -9.515625 L 1.4375 -9.515625 L 1.90625 -11.640625 L 2.953125 -11.640625 L 2.953125 -9.515625 L 4.71875 -9.515625 L 4.71875 -8.359375 L 2.953125 -8.359375 L 2.953125 -2.359375 C 2.953125 -1.898438 3.023438 -1.578125 3.171875 -1.390625 C 3.328125 -1.203125 3.585938 -1.109375 3.953125 -1 [...]
+</symbol>
+<symbol overflow="visible" id="glyph2-7">
+<path style="stroke:none;" d="M 4.875 -4.640625 C 4.875 -2.941406 4.609375 -1.421875 4.078125 -0.078125 C 3.546875 1.265625 2.734375 2.535156 1.640625 3.734375 L 0.109375 3.734375 C 1.210938 2.492188 2.015625 1.195312 2.515625 -0.15625 C 3.023438 -1.519531 3.28125 -3.019531 3.28125 -4.65625 C 3.28125 -6.289062 3.023438 -7.789062 2.515625 -9.15625 C 2.003906 -10.519531 1.203125 -11.816406 0.109375 -13.046875 L 1.640625 -13.046875 C 2.742188 -11.847656 3.554688 -10.570312 4.078125 -9.21875 [...]
+</symbol>
+<symbol overflow="visible" id="glyph2-8">
+<path style="stroke:none;" d="M 2.421875 -4.796875 C 2.421875 -3.535156 2.617188 -2.597656 3.015625 -1.984375 C 3.410156 -1.378906 4.007812 -1.078125 4.8125 -1.078125 C 5.375 -1.078125 5.84375 -1.226562 6.21875 -1.53125 C 6.601562 -1.832031 6.835938 -2.300781 6.921875 -2.9375 L 8.53125 -2.828125 C 8.40625 -1.910156 8.015625 -1.179688 7.359375 -0.640625 C 6.703125 -0.0976562 5.867188 0.171875 4.859375 0.171875 C 3.523438 0.171875 2.507812 -0.242188 1.8125 -1.078125 C 1.113281 -1.921875 0. [...]
+</symbol>
+<symbol overflow="visible" id="glyph2-9">
+<path style="stroke:none;" d="M 3.640625 0.171875 C 2.679688 0.171875 1.960938 -0.078125 1.484375 -0.578125 C 1.003906 -1.085938 0.765625 -1.78125 0.765625 -2.65625 C 0.765625 -3.632812 1.085938 -4.390625 1.734375 -4.921875 C 2.378906 -5.453125 3.425781 -5.734375 4.875 -5.765625 L 7 -5.796875 L 7 -6.3125 C 7 -7.09375 6.832031 -7.648438 6.5 -7.984375 C 6.175781 -8.316406 5.664062 -8.484375 4.96875 -8.484375 C 4.257812 -8.484375 3.742188 -8.363281 3.421875 -8.125 C 3.097656 -7.882812 2.906 [...]
+</symbol>
+<symbol overflow="visible" id="glyph2-10">
+<path style="stroke:none;" d="M 1.203125 -11.53125 L 1.203125 -13.046875 L 2.78125 -13.046875 L 2.78125 -11.53125 Z M 1.203125 0 L 1.203125 -9.515625 L 2.78125 -9.515625 L 2.78125 0 Z M 1.203125 0 "/>
+</symbol>
+<symbol overflow="visible" id="glyph2-11">
+<path style="stroke:none;" d="M 1.21875 0 L 1.21875 -13.046875 L 2.796875 -13.046875 L 2.796875 0 Z M 1.21875 0 "/>
+</symbol>
+</g>
+<clipPath id="clip1">
+  <rect x="0" y="0" width="303" height="113"/>
+</clipPath>
+<g id="surface5" clip-path="url(#clip1)">
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph0-1" x="-1" y="14.6"/>
+  <use xlink:href="#glyph0-2" x="13.796" y="14.6"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph0-3" x="22.778" y="14.6"/>
+  <use xlink:href="#glyph0-3" x="32.858" y="14.6"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph0-4" x="42.866" y="14.6"/>
+  <use xlink:href="#glyph0-5" x="52.37" y="14.6"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph1-1" x="59" y="19.1"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph0-1" x="-0.9" y="59.6"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph0-2" x="13.806" y="59.6"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph0-3" x="22.788" y="59.6"/>
+  <use xlink:href="#glyph0-3" x="32.868" y="59.6"/>
+  <use xlink:href="#glyph0-4" x="42.948" y="59.6"/>
+  <use xlink:href="#glyph0-5" x="52.452" y="59.6"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph1-2" x="59.1" y="64.1"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph0-1" x="1.9" y="104.7"/>
+  <use xlink:href="#glyph0-2" x="16.696" y="104.7"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph0-3" x="25.678" y="104.7"/>
+  <use xlink:href="#glyph0-3" x="35.758" y="104.7"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph0-4" x="45.766" y="104.7"/>
+  <use xlink:href="#glyph0-5" x="55.27" y="104.7"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph1-3" x="61.9" y="109.2"/>
+</g>
+<g style="fill:rgb(0%,65.097046%,36.468506%);fill-opacity:1;">
+  <use xlink:href="#glyph0-5" x="236.3" y="31.5"/>
+</g>
+<g style="fill:rgb(0%,65.097046%,36.468506%);fill-opacity:1;">
+  <use xlink:href="#glyph0-4" x="242.6" y="31.5"/>
+  <use xlink:href="#glyph0-6" x="252.104" y="31.5"/>
+</g>
+<g style="fill:rgb(0%,65.097046%,36.468506%);fill-opacity:1;">
+  <use xlink:href="#glyph0-7" x="262.112" y="31.5"/>
+</g>
+<g style="fill:rgb(0%,65.097046%,36.468506%);fill-opacity:1;">
+  <use xlink:href="#glyph0-8" x="272.192" y="31.5"/>
+</g>
+<g style="fill:rgb(0%,65.097046%,36.468506%);fill-opacity:1;">
+  <use xlink:href="#glyph0-4" x="280.598" y="31.5"/>
+  <use xlink:href="#glyph0-5" x="290.102" y="31.5"/>
+</g>
+<g style="fill:rgb(0%,65.097046%,36.468506%);fill-opacity:1;">
+  <use xlink:href="#glyph1-1" x="296.7" y="36"/>
+</g>
+<g style="fill:rgb(0%,39.99939%,70.195007%);fill-opacity:1;">
+  <use xlink:href="#glyph0-5" x="236.3" y="97.2"/>
+</g>
+<g style="fill:rgb(0%,39.99939%,70.195007%);fill-opacity:1;">
+  <use xlink:href="#glyph0-4" x="242.6" y="97.2"/>
+  <use xlink:href="#glyph0-6" x="252.104" y="97.2"/>
+</g>
+<g style="fill:rgb(0%,39.99939%,70.195007%);fill-opacity:1;">
+  <use xlink:href="#glyph0-7" x="262.112" y="97.2"/>
+</g>
+<g style="fill:rgb(0%,39.99939%,70.195007%);fill-opacity:1;">
+  <use xlink:href="#glyph0-8" x="272.192" y="97.2"/>
+</g>
+<g style="fill:rgb(0%,39.99939%,70.195007%);fill-opacity:1;">
+  <use xlink:href="#glyph0-4" x="280.598" y="97.2"/>
+  <use xlink:href="#glyph0-5" x="290.102" y="97.2"/>
+</g>
+<g style="fill:rgb(0%,39.99939%,70.195007%);fill-opacity:1;">
+  <use xlink:href="#glyph1-2" x="296.7" y="101.7"/>
+</g>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 472.800781 224.699219 L 456 216.300781 " transform="matrix(1,0,0,-1,-335,278)"/>
+<path style=" stroke:none;fill-rule:evenodd;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 137.199219 52.898438 L 137.101562 52.199219 L 137.101562 51.5 L 137.199219 50.800781 L 137.5 50.101562 L 137.898438 49.5 L 138.398438 49 L 139 48.699219 L 139.601562 48.5 L 140.300781 48.300781 L 141 48.300781 L 141.699219 48.5 L 142.398438 48.800781 L 143 49.199219 L 143.5 49.699219 L 143.800781 50.300781 L 144.101562 50.898438 L 144.101562 52.300781 L 144 53 L 143.699219 53.699219 L 143.300781 54.30078 [...]
+<path style=" stroke:none;fill-rule:evenodd;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 121.601562 62.101562 L 121.699219 62.800781 L 121.699219 63.5 L 121.601562 64.199219 L 121.300781 64.898438 L 120.898438 65.5 L 120.398438 65.898438 L 119.800781 66.300781 L 119.199219 66.5 L 118.5 66.601562 L 117.800781 66.601562 L 117.101562 66.5 L 116.398438 66.199219 L 115.800781 65.699219 L 115.300781 65.300781 L 115 64.699219 L 114.699219 64.101562 L 114.699219 62.699219 L 114.800781 61.898438 L 11 [...]
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 498.199219 216.300781 L 475.398438 227.699219 " transform="matrix(1,0,0,-1,-335,278)"/>
+<path style=" stroke:none;fill-rule:evenodd;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 163.101562 60.898438 L 163.601562 60.398438 L 164.199219 60 L 164.800781 59.699219 L 165.601562 59.5 L 166.300781 59.5 L 166.898438 59.699219 L 167.601562 59.898438 L 168.101562 60.199219 L 168.601562 60.699219 L 169.101562 61.300781 L 169.398438 61.898438 L 169.5 62.699219 L 169.5 63.398438 L 169.398438 64.101562 L 169.199219 64.699219 L 168.800781 65.300781 L 168.300781 65.800781 L 167.800781 66.199219 [...]
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 451.800781 177.898438 L 466.199219 177.898438 " transform="matrix(1,0,0,-1,-335,278)"/>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 451.800781 192 L 466.199219 192 " transform="matrix(1,0,0,-1,-335,278)"/>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 451.800781 205.898438 L 466.199219 205.898438 " transform="matrix(1,0,0,-1,-335,278)"/>
+<path style=" stroke:none;fill-rule:evenodd;fill:rgb(0%,65.097046%,36.468506%);fill-opacity:1;" d="M 125.699219 67.101562 L 125.699219 66.601562 L 125.800781 66.5 L 125.800781 66.398438 L 125.898438 66.300781 L 125.898438 66 L 126 65.898438 L 126.101562 65.800781 L 126.101562 65.699219 L 126.300781 65.5 L 126.398438 65.398438 L 126.5 65.300781 L 126.699219 65.101562 L 126.800781 65.101562 L 126.898438 65 L 127 64.898438 L 127.199219 64.898438 L 127.398438 64.800781 L 127.601562 64.800781 [...]
+<path style="fill:none;stroke-width:0.7358;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 460.699219 210.898438 L 460.699219 211.398438 L 460.800781 211.5 L 460.800781 211.601562 L 460.898438 211.699219 L 460.898438 212 L 461 212.101562 L 461.101562 212.199219 L 461.101562 212.300781 L 461.300781 212.5 L 461.398438 212.601562 L 461.5 212.699219 L 461.699219 212.898438 L 461.800781 212.898438 L 461.898438 213 L 462 213.101562 L  [...]
+<path style="fill:none;stroke-width:0.7358;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 460.699219 213.300781 Z M 460.699219 213.300781 " transform="matrix(1,0,0,-1,-335,278)"/>
+<path style="fill:none;stroke-width:0.7358;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 475.398438 198.601562 Z M 475.398438 198.601562 " transform="matrix(1,0,0,-1,-335,278)"/>
+<path style=" stroke:none;fill-rule:evenodd;fill:rgb(0%,65.097046%,36.468506%);fill-opacity:1;" d="M 125.699219 81.800781 L 125.699219 81.300781 L 125.800781 81.199219 L 125.800781 81 L 125.898438 80.898438 L 125.898438 80.699219 L 126 80.601562 L 126.101562 80.5 L 126.101562 80.398438 L 126.699219 79.800781 L 126.800781 79.800781 L 126.898438 79.699219 L 127 79.601562 L 127.101562 79.601562 L 127.199219 79.5 L 127.5 79.5 L 127.601562 79.398438 L 138.398438 79.398438 L 138.601562 79.5 L  [...]
+<path style="fill:none;stroke-width:0.7358;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 460.699219 196.199219 L 460.699219 196.699219 L 460.800781 196.800781 L 460.800781 197 L 460.898438 197.101562 L 460.898438 197.300781 L 461 197.398438 L 461.101562 197.5 L 461.101562 197.601562 L 461.699219 198.199219 L 461.800781 198.199219 L 461.898438 198.300781 L 462 198.398438 L 462.101562 198.398438 L 462.199219 198.5 L 462.5 198.5  [...]
+<path style="fill:none;stroke-width:0.7358;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 460.699219 198.601562 Z M 460.699219 198.601562 " transform="matrix(1,0,0,-1,-335,278)"/>
+<path style="fill:none;stroke-width:0.7358;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 475.398438 183.898438 Z M 475.398438 183.898438 " transform="matrix(1,0,0,-1,-335,278)"/>
+<path style=" stroke:none;fill-rule:evenodd;fill:rgb(0%,65.097046%,36.468506%);fill-opacity:1;" d="M 125.699219 96.5 L 125.699219 96 L 125.800781 95.898438 L 125.800781 95.699219 L 125.898438 95.601562 L 125.898438 95.398438 L 126 95.300781 L 126.101562 95.199219 L 126.101562 95.101562 L 126.199219 95 L 126.5 94.699219 L 126.601562 94.601562 L 126.699219 94.5 L 126.800781 94.5 L 126.898438 94.398438 L 127 94.300781 L 127.101562 94.300781 L 127.199219 94.199219 L 127.398438 94.199219 L 12 [...]
+<path style="fill:none;stroke-width:0.7358;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 460.699219 181.5 L 460.699219 182 L 460.800781 182.101562 L 460.800781 182.300781 L 460.898438 182.398438 L 460.898438 182.601562 L 461 182.699219 L 461.101562 182.800781 L 461.101562 182.898438 L 461.199219 183 L 461.5 183.300781 L 461.601562 183.398438 L 461.699219 183.5 L 461.800781 183.5 L 461.898438 183.601562 L 462 183.699219 L 462.1 [...]
+<path style="fill:none;stroke-width:0.7358;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 460.699219 183.898438 Z M 460.699219 183.898438 " transform="matrix(1,0,0,-1,-335,278)"/>
+<path style="fill:none;stroke-width:0.7358;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 475.398438 169.199219 Z M 475.398438 169.199219 " transform="matrix(1,0,0,-1,-335,278)"/>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 451.800781 213.300781 L 451.800781 177.898438 " transform="matrix(1,0,0,-1,-335,278)"/>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 500.898438 177.800781 L 515.300781 177.800781 " transform="matrix(1,0,0,-1,-335,278)"/>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 500.898438 192 L 515.300781 192 " transform="matrix(1,0,0,-1,-335,278)"/>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 500.898438 205.898438 L 515.300781 205.898438 " transform="matrix(1,0,0,-1,-335,278)"/>
+<path style=" stroke:none;fill-rule:evenodd;fill:rgb(0%,39.99939%,70.195007%);fill-opacity:1;" d="M 174.800781 67.199219 L 174.800781 66.898438 L 174.898438 66.800781 L 174.898438 66.5 L 175 66.398438 L 175 66.199219 L 175.101562 66.101562 L 175.199219 65.898438 L 175.199219 65.800781 L 175.5 65.5 L 175.5 65.398438 L 175.601562 65.300781 L 175.699219 65.300781 L 175.898438 65.101562 L 176.101562 65.101562 L 176.199219 65 L 176.300781 64.898438 L 176.398438 64.898438 L 176.5 64.800781 L 1 [...]
+<path style="fill:none;stroke-width:0.7358;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 509.800781 210.800781 L 509.800781 211.101562 L 509.898438 211.199219 L 509.898438 211.5 L 510 211.601562 L 510 211.800781 L 510.101562 211.898438 L 510.199219 212.101562 L 510.199219 212.199219 L 510.5 212.5 L 510.5 212.601562 L 510.601562 212.699219 L 510.699219 212.699219 L 510.898438 212.898438 L 511.101562 212.898438 L 511.199219 213  [...]
+<path style="fill:none;stroke-width:0.7358;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 509.800781 213.300781 Z M 509.800781 213.300781 " transform="matrix(1,0,0,-1,-335,278)"/>
+<path style="fill:none;stroke-width:0.7358;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 524.601562 198.601562 Z M 524.601562 198.601562 " transform="matrix(1,0,0,-1,-335,278)"/>
+<path style=" stroke:none;fill-rule:evenodd;fill:rgb(0%,39.99939%,70.195007%);fill-opacity:1;" d="M 174.800781 81.800781 L 174.800781 81.601562 L 174.898438 81.5 L 174.898438 81.199219 L 175 81.101562 L 175 80.898438 L 175.101562 80.699219 L 175.199219 80.601562 L 175.199219 80.5 L 175.5 80.199219 L 175.5 80.101562 L 175.601562 80 L 175.699219 79.898438 L 175.800781 79.898438 L 175.898438 79.800781 L 176.101562 79.699219 L 176.199219 79.699219 L 176.300781 79.601562 L 176.398438 79.60156 [...]
+<path style="fill:none;stroke-width:0.7358;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 509.800781 196.199219 L 509.800781 196.398438 L 509.898438 196.5 L 509.898438 196.800781 L 510 196.898438 L 510 197.101562 L 510.101562 197.300781 L 510.199219 197.398438 L 510.199219 197.5 L 510.5 197.800781 L 510.5 197.898438 L 510.601562 198 L 510.699219 198.101562 L 510.800781 198.101562 L 510.898438 198.199219 L 511.101562 198.300781  [...]
+<path style="fill:none;stroke-width:0.7358;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 509.800781 198.601562 Z M 509.800781 198.601562 " transform="matrix(1,0,0,-1,-335,278)"/>
+<path style="fill:none;stroke-width:0.7358;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 524.601562 183.898438 Z M 524.601562 183.898438 " transform="matrix(1,0,0,-1,-335,278)"/>
+<path style=" stroke:none;fill-rule:evenodd;fill:rgb(0%,39.99939%,70.195007%);fill-opacity:1;" d="M 174.800781 96.5 L 174.800781 96.300781 L 174.898438 96.199219 L 174.898438 95.898438 L 175 95.800781 L 175 95.5 L 175.199219 95.300781 L 175.199219 95.199219 L 175.300781 95.101562 L 175.398438 95 L 175.5 94.898438 L 175.5 94.800781 L 175.800781 94.5 L 175.898438 94.5 L 176.101562 94.398438 L 176.199219 94.300781 L 176.398438 94.300781 L 176.5 94.199219 L 176.699219 94.199219 L 176.800781  [...]
+<path style="fill:none;stroke-width:0.7358;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 509.800781 181.5 L 509.800781 181.699219 L 509.898438 181.800781 L 509.898438 182.101562 L 510 182.199219 L 510 182.5 L 510.199219 182.699219 L 510.199219 182.800781 L 510.300781 182.898438 L 510.398438 183 L 510.5 183.101562 L 510.5 183.199219 L 510.800781 183.5 L 510.898438 183.5 L 511.101562 183.601562 L 511.199219 183.699219 L 511.3984 [...]
+<path style="fill:none;stroke-width:0.7358;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 509.800781 183.898438 Z M 509.800781 183.898438 " transform="matrix(1,0,0,-1,-335,278)"/>
+<path style="fill:none;stroke-width:0.7358;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 524.601562 169.199219 Z M 524.601562 169.199219 " transform="matrix(1,0,0,-1,-335,278)"/>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 500.898438 213.300781 L 500.898438 177.800781 " transform="matrix(1,0,0,-1,-335,278)"/>
+<path style="fill:none;stroke-width:1.4999;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,65.097046%,36.468506%);stroke-opacity:1;stroke-miterlimit:10;" d="M 407.398438 268.101562 L 427.5 273.699219 " transform="matrix(1,0,0,-1,-335,278)"/>
+<path style=" stroke:none;fill-rule:evenodd;fill:rgb(0%,65.097046%,36.468506%);fill-opacity:1;" d="M 98 2.699219 L 90.898438 0.601562 L 93 8.199219 Z M 98 2.699219 "/>
+<path style="fill:none;stroke-width:1.4999;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,39.99939%,70.195007%);stroke-opacity:1;stroke-miterlimit:10;" d="M 407 268.800781 L 428 256.601562 " transform="matrix(1,0,0,-1,-335,278)"/>
+<path style=" stroke:none;fill-rule:evenodd;fill:rgb(0%,39.99939%,70.195007%);fill-opacity:1;" d="M 98 24.300781 L 94.5 17.699219 L 90.601562 24.601562 Z M 98 24.300781 "/>
+<path style="fill:none;stroke-width:1.4999;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,65.097046%,36.468506%);stroke-opacity:1;stroke-miterlimit:10;" d="M 407.398438 224.898438 L 427.5 230.5 " transform="matrix(1,0,0,-1,-335,278)"/>
+<path style=" stroke:none;fill-rule:evenodd;fill:rgb(0%,65.097046%,36.468506%);fill-opacity:1;" d="M 98 45.898438 L 90.898438 43.800781 L 93 51.398438 Z M 98 45.898438 "/>
+<path style="fill:none;stroke-width:1.4999;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,39.99939%,70.195007%);stroke-opacity:1;stroke-miterlimit:10;" d="M 407 225.601562 L 428 213.398438 " transform="matrix(1,0,0,-1,-335,278)"/>
+<path style=" stroke:none;fill-rule:evenodd;fill:rgb(0%,39.99939%,70.195007%);fill-opacity:1;" d="M 98 67.5 L 94.5 60.898438 L 90.601562 67.800781 Z M 98 67.5 "/>
+<path style="fill:none;stroke-width:1.4999;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,65.097046%,36.468506%);stroke-opacity:1;stroke-miterlimit:10;" d="M 407.398438 181.699219 L 427.5 187.300781 " transform="matrix(1,0,0,-1,-335,278)"/>
+<path style=" stroke:none;fill-rule:evenodd;fill:rgb(0%,65.097046%,36.468506%);fill-opacity:1;" d="M 98 89.101562 L 90.898438 87 L 93 94.601562 Z M 98 89.101562 "/>
+<path style="fill:none;stroke-width:1.4999;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,39.99939%,70.195007%);stroke-opacity:1;stroke-miterlimit:10;" d="M 407 182.398438 L 428 170.199219 " transform="matrix(1,0,0,-1,-335,278)"/>
+<path style=" stroke:none;fill-rule:evenodd;fill:rgb(0%,39.99939%,70.195007%);fill-opacity:1;" d="M 98 110.699219 L 94.5 104.101562 L 90.601562 111 Z M 98 110.699219 "/>
+<path style="fill:none;stroke-width:1.4999;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,65.097046%,36.468506%);stroke-opacity:1;stroke-miterlimit:10;" d="M 558.199219 259.199219 L 538.101562 264.898438 " transform="matrix(1,0,0,-1,-335,278)"/>
+<path style=" stroke:none;fill-rule:evenodd;fill:rgb(0%,65.097046%,36.468506%);fill-opacity:1;" d="M 228.800781 20.300781 L 223.699219 14.800781 L 221.601562 22.398438 Z M 228.800781 20.300781 "/>
+<path style="fill:none;stroke-width:1.4999;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,65.097046%,36.468506%);stroke-opacity:1;stroke-miterlimit:10;" d="M 558.601562 251 L 538.101562 245 " transform="matrix(1,0,0,-1,-335,278)"/>
+<path style=" stroke:none;fill-rule:evenodd;fill:rgb(0%,65.097046%,36.468506%);fill-opacity:1;" d="M 229.101562 25.300781 L 222 23.300781 L 224.199219 30.898438 Z M 229.101562 25.300781 "/>
+<path style="fill:none;stroke-width:1.4999;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,65.097046%,36.468506%);stroke-opacity:1;stroke-miterlimit:10;" d="M 559.101562 242.101562 L 538.101562 229.898438 " transform="matrix(1,0,0,-1,-335,278)"/>
+<path style=" stroke:none;fill-rule:evenodd;fill:rgb(0%,65.097046%,36.468506%);fill-opacity:1;" d="M 229.101562 33 L 221.699219 32.800781 L 225.601562 39.601562 Z M 229.101562 33 "/>
+<path style="fill:none;stroke-width:1.4999;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,39.99939%,70.195007%);stroke-opacity:1;stroke-miterlimit:10;" d="M 558.199219 195.101562 L 538.101562 200.699219 " transform="matrix(1,0,0,-1,-335,278)"/>
+<path style=" stroke:none;fill-rule:evenodd;fill:rgb(0%,39.99939%,70.195007%);fill-opacity:1;" d="M 228.800781 84.5 L 223.699219 79 L 221.601562 86.5 Z M 228.800781 84.5 "/>
+<path style="fill:none;stroke-width:1.4999;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,39.99939%,70.195007%);stroke-opacity:1;stroke-miterlimit:10;" d="M 558.601562 186.898438 L 538.101562 180.800781 " transform="matrix(1,0,0,-1,-335,278)"/>
+<path style=" stroke:none;fill-rule:evenodd;fill:rgb(0%,39.99939%,70.195007%);fill-opacity:1;" d="M 229.101562 89.398438 L 222 87.398438 L 224.199219 95 Z M 229.101562 89.398438 "/>
+<path style="fill:none;stroke-width:1.4999;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,39.99939%,70.195007%);stroke-opacity:1;stroke-miterlimit:10;" d="M 559.101562 178 L 538.101562 165.800781 " transform="matrix(1,0,0,-1,-335,278)"/>
+<path style=" stroke:none;fill-rule:evenodd;fill:rgb(0%,39.99939%,70.195007%);fill-opacity:1;" d="M 229.101562 97.199219 L 221.699219 96.898438 L 225.601562 103.699219 Z M 229.101562 97.199219 "/>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph2-1" x="111.4" y="20.2"/>
+  <use xlink:href="#glyph2-2" x="117.394" y="20.2"/>
+  <use xlink:href="#glyph2-3" x="123.388" y="20.2"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph2-4" x="133.288" y="20.2"/>
+  <use xlink:href="#glyph2-5" x="148.282" y="20.2"/>
+  <use xlink:href="#glyph2-6" x="158.29" y="20.2"/>
+  <use xlink:href="#glyph2-3" x="163.276" y="20.2"/>
+  <use xlink:href="#glyph2-7" x="173.284" y="20.2"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph2-8" x="128.9" y="40.4"/>
+  <use xlink:href="#glyph2-2" x="137.9" y="40.4"/>
+  <use xlink:href="#glyph2-9" x="143.894" y="40.4"/>
+  <use xlink:href="#glyph2-10" x="153.902" y="40.4"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph2-11" x="157.808" y="40.4"/>
+</g>
+</g>
+</defs>
+<g id="surface1">
+<use xlink:href="#surface5"/>
+</g>
+</svg>
diff --git a/site/img/blog/disaggregation/spark_disagg.pdf b/site/img/blog/disaggregation/spark_disagg.pdf
new file mode 100644
index 0000000..89c6cbb
Binary files /dev/null and b/site/img/blog/disaggregation/spark_disagg.pdf differ
diff --git a/site/img/blog/disaggregation/spark_disagg.svg b/site/img/blog/disaggregation/spark_disagg.svg
new file mode 100644
index 0000000..ce9ad57
--- /dev/null
+++ b/site/img/blog/disaggregation/spark_disagg.svg
@@ -0,0 +1,1105 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="562pt" height="186pt" viewBox="0 0 562 186" version="1.1">
+<defs>
+<g>
+<symbol overflow="visible" id="glyph0-0">
+<path style="stroke:none;" d="M 1.40625 -9.625 L 9.09375 -9.625 L 9.09375 0 L 1.40625 0 Z M 1.921875 -9.109375 L 1.921875 -0.515625 L 8.578125 -0.515625 L 8.578125 -9.109375 Z M 1.921875 -9.109375 "/>
+</symbol>
+<symbol overflow="visible" id="glyph0-1">
+<path style="stroke:none;" d="M 4.921875 -8.5625 L 4.921875 0 L 3.625 0 L 3.625 -8.5625 L 0.3125 -8.5625 L 0.3125 -9.625 L 8.234375 -9.625 L 8.234375 -8.5625 Z M 4.921875 -8.5625 "/>
+</symbol>
+<symbol overflow="visible" id="glyph0-2">
+<path style="stroke:none;" d="M 2.828125 0.140625 C 2.085938 0.140625 1.53125 -0.0546875 1.15625 -0.453125 C 0.78125 -0.847656 0.59375 -1.382812 0.59375 -2.0625 C 0.59375 -2.832031 0.84375 -3.421875 1.34375 -3.828125 C 1.851562 -4.234375 2.664062 -4.453125 3.78125 -4.484375 L 5.453125 -4.515625 L 5.453125 -4.921875 C 5.453125 -5.515625 5.320312 -5.941406 5.0625 -6.203125 C 4.8125 -6.460938 4.410156 -6.59375 3.859375 -6.59375 C 3.304688 -6.59375 2.90625 -6.5 2.65625 -6.3125 C 2.40625 -6.1 [...]
+</symbol>
+<symbol overflow="visible" id="glyph0-3">
+<path style="stroke:none;" d="M 6.5 -2.046875 C 6.5 -1.347656 6.234375 -0.804688 5.703125 -0.421875 C 5.179688 -0.046875 4.445312 0.140625 3.5 0.140625 C 2.570312 0.140625 1.859375 -0.0078125 1.359375 -0.3125 C 0.859375 -0.613281 0.535156 -1.085938 0.390625 -1.734375 L 1.484375 -1.953125 C 1.585938 -1.554688 1.800781 -1.265625 2.125 -1.078125 C 2.457031 -0.890625 2.914062 -0.796875 3.5 -0.796875 C 4.125 -0.796875 4.578125 -0.890625 4.859375 -1.078125 C 5.148438 -1.273438 5.296875 -1.5664 [...]
+</symbol>
+<symbol overflow="visible" id="glyph0-4">
+<path style="stroke:none;" d="M 5.578125 0 L 3.078125 -3.375 L 2.171875 -2.625 L 2.171875 0 L 0.9375 0 L 0.9375 -10.140625 L 2.171875 -10.140625 L 2.171875 -3.8125 L 5.421875 -7.390625 L 6.859375 -7.390625 L 3.859375 -4.21875 L 7.015625 0 Z M 5.578125 0 "/>
+</symbol>
+<symbol overflow="visible" id="glyph0-5">
+<path style="stroke:none;" d="M 1.15625 0 L 1.15625 -9.625 L 8.453125 -9.625 L 8.453125 -8.5625 L 2.453125 -8.5625 L 2.453125 -5.46875 L 8.046875 -5.46875 L 8.046875 -4.421875 L 2.453125 -4.421875 L 2.453125 -1.0625 L 8.734375 -1.0625 L 8.734375 0 Z M 1.15625 0 "/>
+</symbol>
+<symbol overflow="visible" id="glyph0-6">
+<path style="stroke:none;" d="M 5.46875 0 L 3.484375 -3.03125 L 1.484375 0 L 0.15625 0 L 2.796875 -3.796875 L 0.28125 -7.390625 L 1.640625 -7.390625 L 3.484375 -4.515625 L 5.3125 -7.390625 L 6.6875 -7.390625 L 4.1875 -3.8125 L 6.84375 0 Z M 5.46875 0 "/>
+</symbol>
+<symbol overflow="visible" id="glyph0-7">
+<path style="stroke:none;" d="M 1.890625 -3.4375 C 1.890625 -2.59375 2.0625 -1.9375 2.40625 -1.46875 C 2.757812 -1.007812 3.273438 -0.78125 3.953125 -0.78125 C 4.484375 -0.78125 4.910156 -0.882812 5.234375 -1.09375 C 5.554688 -1.3125 5.773438 -1.585938 5.890625 -1.921875 L 6.96875 -1.609375 C 6.519531 -0.441406 5.515625 0.140625 3.953125 0.140625 C 2.859375 0.140625 2.023438 -0.179688 1.453125 -0.828125 C 0.878906 -1.484375 0.59375 -2.457031 0.59375 -3.75 C 0.59375 -4.96875 0.878906 -5.8 [...]
+</symbol>
+<symbol overflow="visible" id="glyph0-8">
+<path style="stroke:none;" d="M 1.875 -3.734375 C 1.875 -2.742188 2.03125 -2.007812 2.34375 -1.53125 C 2.65625 -1.0625 3.125 -0.828125 3.75 -0.828125 C 4.1875 -0.828125 4.550781 -0.945312 4.84375 -1.1875 C 5.132812 -1.425781 5.316406 -1.789062 5.390625 -2.28125 L 6.625 -2.203125 C 6.53125 -1.492188 6.226562 -0.925781 5.71875 -0.5 C 5.207031 -0.0703125 4.5625 0.140625 3.78125 0.140625 C 2.75 0.140625 1.957031 -0.1875 1.40625 -0.84375 C 0.863281 -1.5 0.59375 -2.453125 0.59375 -3.703125 C 0 [...]
+</symbol>
+<symbol overflow="visible" id="glyph0-9">
+<path style="stroke:none;" d="M 2.140625 -7.390625 L 2.140625 -2.703125 C 2.140625 -2.210938 2.1875 -1.832031 2.28125 -1.5625 C 2.382812 -1.300781 2.539062 -1.109375 2.75 -0.984375 C 2.957031 -0.867188 3.265625 -0.8125 3.671875 -0.8125 C 4.265625 -0.8125 4.726562 -1.015625 5.0625 -1.421875 C 5.40625 -1.828125 5.578125 -2.390625 5.578125 -3.109375 L 5.578125 -7.390625 L 6.8125 -7.390625 L 6.8125 -1.578125 C 6.8125 -0.710938 6.828125 -0.1875 6.859375 0 L 5.6875 0 C 5.6875 -0.0195312 5.6796 [...]
+</symbol>
+<symbol overflow="visible" id="glyph0-10">
+<path style="stroke:none;" d="M 3.78125 -0.0625 C 3.375 0.0507812 2.960938 0.109375 2.546875 0.109375 C 1.554688 0.109375 1.0625 -0.445312 1.0625 -1.5625 L 1.0625 -6.5 L 0.21875 -6.5 L 0.21875 -7.390625 L 1.109375 -7.390625 L 1.484375 -9.046875 L 2.296875 -9.046875 L 2.296875 -7.390625 L 3.671875 -7.390625 L 3.671875 -6.5 L 2.296875 -6.5 L 2.296875 -1.828125 C 2.296875 -1.472656 2.351562 -1.222656 2.46875 -1.078125 C 2.582031 -0.941406 2.785156 -0.875 3.078125 -0.875 C 3.242188 -0.875 3. [...]
+</symbol>
+<symbol overflow="visible" id="glyph0-11">
+<path style="stroke:none;" d="M 7.203125 -3.703125 C 7.203125 -2.410156 6.914062 -1.445312 6.34375 -0.8125 C 5.769531 -0.175781 4.941406 0.140625 3.859375 0.140625 C 2.785156 0.140625 1.972656 -0.1875 1.421875 -0.84375 C 0.867188 -1.507812 0.59375 -2.460938 0.59375 -3.703125 C 0.59375 -6.253906 1.695312 -7.53125 3.90625 -7.53125 C 5.03125 -7.53125 5.859375 -7.21875 6.390625 -6.59375 C 6.929688 -5.976562 7.203125 -5.015625 7.203125 -3.703125 Z M 5.90625 -3.703125 C 5.90625 -4.722656 5.753 [...]
+</symbol>
+<symbol overflow="visible" id="glyph0-12">
+<path style="stroke:none;" d="M 0.96875 0 L 0.96875 -5.671875 C 0.96875 -6.191406 0.957031 -6.765625 0.9375 -7.390625 L 2.09375 -7.390625 C 2.125 -6.554688 2.140625 -6.054688 2.140625 -5.890625 L 2.171875 -5.890625 C 2.367188 -6.523438 2.59375 -6.957031 2.84375 -7.1875 C 3.101562 -7.414062 3.46875 -7.53125 3.9375 -7.53125 C 4.09375 -7.53125 4.257812 -7.507812 4.4375 -7.46875 L 4.4375 -6.34375 C 4.269531 -6.382812 4.050781 -6.40625 3.78125 -6.40625 C 3.269531 -6.40625 2.878906 -6.1875 2.6 [...]
+</symbol>
+<symbol overflow="visible" id="glyph0-13">
+<path style="stroke:none;" d="M 7.953125 0 L 5.453125 -4 L 2.453125 -4 L 2.453125 0 L 1.15625 0 L 1.15625 -9.625 L 5.6875 -9.625 C 6.769531 -9.625 7.601562 -9.378906 8.1875 -8.890625 C 8.78125 -8.410156 9.078125 -7.738281 9.078125 -6.875 C 9.078125 -6.15625 8.867188 -5.550781 8.453125 -5.0625 C 8.035156 -4.582031 7.460938 -4.28125 6.734375 -4.15625 L 9.46875 0 Z M 7.765625 -6.859375 C 7.765625 -7.421875 7.570312 -7.847656 7.1875 -8.140625 C 6.8125 -8.441406 6.265625 -8.59375 5.546875 -8. [...]
+</symbol>
+<symbol overflow="visible" id="glyph0-14">
+<path style="stroke:none;" d="M 9.4375 -4.921875 C 9.4375 -3.921875 9.242188 -3.046875 8.859375 -2.296875 C 8.472656 -1.554688 7.921875 -0.988281 7.203125 -0.59375 C 6.492188 -0.195312 5.675781 0 4.75 0 L 1.15625 0 L 1.15625 -9.625 L 4.328125 -9.625 C 5.960938 -9.625 7.222656 -9.210938 8.109375 -8.390625 C 8.992188 -7.578125 9.4375 -6.421875 9.4375 -4.921875 Z M 8.125 -4.921875 C 8.125 -6.109375 7.796875 -7.015625 7.140625 -7.640625 C 6.492188 -8.273438 5.550781 -8.59375 4.3125 -8.59375  [...]
+</symbol>
+<symbol overflow="visible" id="glyph0-15">
+<path style="stroke:none;" d="M 9.34375 0 L 9.34375 -6.421875 C 9.34375 -7.140625 9.363281 -7.828125 9.40625 -8.484375 C 9.175781 -7.660156 8.972656 -7.019531 8.796875 -6.5625 L 6.3125 0 L 5.390625 0 L 2.875 -6.5625 L 2.484375 -7.71875 L 2.265625 -8.484375 L 2.28125 -7.71875 L 2.3125 -6.421875 L 2.3125 0 L 1.15625 0 L 1.15625 -9.625 L 2.859375 -9.625 L 5.421875 -2.953125 C 5.515625 -2.679688 5.601562 -2.390625 5.6875 -2.078125 C 5.769531 -1.773438 5.828125 -1.554688 5.859375 -1.421875 C  [...]
+</symbol>
+<symbol overflow="visible" id="glyph0-16">
+<path style="stroke:none;" d="M 7.984375 0 L 6.875 -2.8125 L 2.484375 -2.8125 L 1.375 0 L 0.03125 0 L 3.953125 -9.625 L 5.4375 -9.625 L 9.3125 0 Z M 4.6875 -8.640625 L 4.625 -8.453125 C 4.507812 -8.078125 4.335938 -7.59375 4.109375 -7 L 2.890625 -3.828125 L 6.484375 -3.828125 L 5.25 -7.015625 C 5.125 -7.328125 5 -7.679688 4.875 -8.078125 Z M 4.6875 -8.640625 "/>
+</symbol>
+<symbol overflow="visible" id="glyph0-17">
+<path style="stroke:none;" d=""/>
+</symbol>
+<symbol overflow="visible" id="glyph0-18">
+<path style="stroke:none;" d="M 5.640625 0 L 5.640625 -4.6875 C 5.640625 -5.175781 5.59375 -5.554688 5.5 -5.828125 C 5.40625 -6.097656 5.25 -6.289062 5.03125 -6.40625 C 4.820312 -6.519531 4.515625 -6.578125 4.109375 -6.578125 C 3.523438 -6.578125 3.0625 -6.375 2.71875 -5.96875 C 2.375 -5.5625 2.203125 -5 2.203125 -4.28125 L 2.203125 0 L 0.96875 0 L 0.96875 -5.8125 C 0.96875 -6.675781 0.957031 -7.203125 0.9375 -7.390625 L 2.09375 -7.390625 C 2.09375 -7.367188 2.09375 -7.304688 2.09375 -7. [...]
+</symbol>
+<symbol overflow="visible" id="glyph0-19">
+<path style="stroke:none;" d="M 8.03125 0 L 6.59375 0 L 5.3125 -5.234375 L 5.0625 -6.390625 C 5.019531 -6.179688 4.953125 -5.882812 4.859375 -5.5 C 4.773438 -5.113281 4.3125 -3.28125 3.46875 0 L 2.046875 0 L -0.015625 -7.390625 L 1.203125 -7.390625 L 2.453125 -2.375 C 2.484375 -2.257812 2.578125 -1.804688 2.734375 -1.015625 L 2.859375 -1.53125 L 4.40625 -7.390625 L 5.71875 -7.390625 L 7.015625 -2.3125 L 7.328125 -1.015625 L 7.546875 -1.96875 L 8.9375 -7.390625 L 10.140625 -7.390625 Z M 8 [...]
+</symbol>
+<symbol overflow="visible" id="glyph0-20">
+<path style="stroke:none;" d="M 0.9375 -8.96875 L 0.9375 -10.140625 L 2.171875 -10.140625 L 2.171875 -8.96875 Z M 0.9375 0 L 0.9375 -7.390625 L 2.171875 -7.390625 L 2.171875 0 Z M 0.9375 0 "/>
+</symbol>
+<symbol overflow="visible" id="glyph0-21">
+<path style="stroke:none;" d="M 3.75 2.90625 C 2.9375 2.90625 2.289062 2.742188 1.8125 2.421875 C 1.332031 2.109375 1.023438 1.660156 0.890625 1.078125 L 2.140625 0.90625 C 2.210938 1.25 2.390625 1.507812 2.671875 1.6875 C 2.953125 1.875 3.320312 1.96875 3.78125 1.96875 C 5.007812 1.96875 5.625 1.25 5.625 -0.1875 L 5.625 -1.375 L 5.609375 -1.375 C 5.367188 -0.894531 5.046875 -0.535156 4.640625 -0.296875 C 4.242188 -0.0546875 3.773438 0.0625 3.234375 0.0625 C 2.316406 0.0625 1.644531 -0.2 [...]
+</symbol>
+<symbol overflow="visible" id="glyph0-22">
+<path style="stroke:none;" d="M 5.609375 -1.1875 C 5.378906 -0.71875 5.078125 -0.378906 4.703125 -0.171875 C 4.328125 0.0351562 3.863281 0.140625 3.3125 0.140625 C 2.375 0.140625 1.6875 -0.171875 1.25 -0.796875 C 0.8125 -1.429688 0.59375 -2.390625 0.59375 -3.671875 C 0.59375 -6.242188 1.5 -7.53125 3.3125 -7.53125 C 3.875 -7.53125 4.335938 -7.425781 4.703125 -7.21875 C 5.078125 -7.019531 5.378906 -6.695312 5.609375 -6.25 L 5.625 -6.25 L 5.609375 -7.078125 L 5.609375 -10.140625 L 6.84375 - [...]
+</symbol>
+<symbol overflow="visible" id="glyph0-23">
+<path style="stroke:none;" d="M 8.703125 -2.65625 C 8.703125 -1.769531 8.351562 -1.082031 7.65625 -0.59375 C 6.957031 -0.101562 5.976562 0.140625 4.71875 0.140625 C 2.375 0.140625 1.015625 -0.675781 0.640625 -2.3125 L 1.90625 -2.5625 C 2.050781 -1.988281 2.359375 -1.5625 2.828125 -1.28125 C 3.304688 -1.007812 3.953125 -0.875 4.765625 -0.875 C 5.609375 -0.875 6.257812 -1.019531 6.71875 -1.3125 C 7.175781 -1.601562 7.40625 -2.03125 7.40625 -2.59375 C 7.40625 -2.90625 7.332031 -3.160156 7.1 [...]
+</symbol>
+<symbol overflow="visible" id="glyph0-24">
+<path style="stroke:none;" d="M 2.453125 -8.5625 L 2.453125 -4.984375 L 7.828125 -4.984375 L 7.828125 -3.90625 L 2.453125 -3.90625 L 2.453125 0 L 1.15625 0 L 1.15625 -9.625 L 7.984375 -9.625 L 7.984375 -8.5625 Z M 2.453125 -8.5625 "/>
+</symbol>
+<symbol overflow="visible" id="glyph0-25">
+<path style="stroke:none;" d="M 0.9375 0 L 0.9375 -10.140625 L 2.171875 -10.140625 L 2.171875 0 Z M 0.9375 0 "/>
+</symbol>
+<symbol overflow="visible" id="glyph0-26">
+<path style="stroke:none;" d="M 2.171875 -6.125 C 2.429688 -6.613281 2.742188 -6.96875 3.109375 -7.1875 C 3.484375 -7.414062 3.957031 -7.53125 4.53125 -7.53125 C 5.332031 -7.53125 5.921875 -7.332031 6.296875 -6.9375 C 6.679688 -6.539062 6.875 -5.867188 6.875 -4.921875 L 6.875 0 L 5.640625 0 L 5.640625 -4.6875 C 5.640625 -5.207031 5.59375 -5.59375 5.5 -5.84375 C 5.40625 -6.101562 5.25 -6.289062 5.03125 -6.40625 C 4.8125 -6.519531 4.503906 -6.578125 4.109375 -6.578125 C 3.535156 -6.578125  [...]
+</symbol>
+<symbol overflow="visible" id="glyph0-27">
+<path style="stroke:none;" d="M 2.46875 -6.5 L 2.46875 0 L 1.234375 0 L 1.234375 -6.5 L 0.203125 -6.5 L 0.203125 -7.390625 L 1.234375 -7.390625 L 1.234375 -8.234375 C 1.234375 -8.910156 1.378906 -9.394531 1.671875 -9.6875 C 1.972656 -9.976562 2.429688 -10.125 3.046875 -10.125 C 3.390625 -10.125 3.675781 -10.097656 3.90625 -10.046875 L 3.90625 -9.109375 C 3.707031 -9.148438 3.523438 -9.171875 3.359375 -9.171875 C 3.046875 -9.171875 2.816406 -9.085938 2.671875 -8.921875 C 2.535156 -8.76562 [...]
+</symbol>
+<symbol overflow="visible" id="glyph0-28">
+<path style="stroke:none;" d="M 0 0.140625 L 2.8125 -10.140625 L 3.890625 -10.140625 L 1.109375 0.140625 Z M 0 0.140625 "/>
+</symbol>
+<symbol overflow="visible" id="glyph0-29">
+<path style="stroke:none;" d="M 10.328125 0 L 8.765625 0 L 7.109375 -6.125 C 6.992188 -6.5 6.832031 -7.179688 6.625 -8.171875 C 6.507812 -7.648438 6.410156 -7.207031 6.328125 -6.84375 C 6.242188 -6.488281 5.617188 -4.207031 4.453125 0 L 2.90625 0 L 0.0625 -9.625 L 1.421875 -9.625 L 3.15625 -3.515625 C 3.351562 -2.742188 3.539062 -1.957031 3.71875 -1.15625 C 3.832031 -1.65625 3.957031 -2.195312 4.09375 -2.78125 C 4.238281 -3.375 4.875 -5.65625 6 -9.625 L 7.25 -9.625 L 8.921875 -3.640625 C [...]
+</symbol>
+<symbol overflow="visible" id="glyph1-0">
+<path style="stroke:none;" d="M 1.40625 -9.625 L 9.09375 -9.625 L 9.09375 0 L 1.40625 0 Z M 1.921875 -9.109375 L 1.921875 -0.515625 L 8.578125 -0.515625 L 8.578125 -9.109375 Z M 1.921875 -9.109375 "/>
+</symbol>
+<symbol overflow="visible" id="glyph1-1">
+<path style="stroke:none;" d="M 5.4375 -1.453125 C 6.65625 -1.453125 7.5 -2.0625 7.96875 -3.28125 L 9.734375 -2.625 C 9.347656 -1.6875 8.789062 -0.988281 8.0625 -0.53125 C 7.332031 -0.0820312 6.457031 0.140625 5.4375 0.140625 C 3.882812 0.140625 2.6875 -0.296875 1.84375 -1.171875 C 1 -2.054688 0.578125 -3.285156 0.578125 -4.859375 C 0.578125 -6.441406 0.984375 -7.65625 1.796875 -8.5 C 2.609375 -9.351562 3.789062 -9.78125 5.34375 -9.78125 C 6.476562 -9.78125 7.398438 -9.550781 8.109375 -9 [...]
+</symbol>
+<symbol overflow="visible" id="glyph1-2">
+<path style="stroke:none;" d="M 0.984375 0 L 0.984375 -5.65625 C 0.984375 -6.0625 0.972656 -6.398438 0.953125 -6.671875 C 0.941406 -6.941406 0.929688 -7.179688 0.921875 -7.390625 L 2.75 -7.390625 C 2.769531 -7.316406 2.789062 -7.066406 2.8125 -6.640625 C 2.832031 -6.222656 2.84375 -5.945312 2.84375 -5.8125 L 2.875 -5.8125 C 3.0625 -6.332031 3.226562 -6.695312 3.375 -6.90625 C 3.519531 -7.125 3.691406 -7.285156 3.890625 -7.390625 C 4.085938 -7.492188 4.335938 -7.546875 4.640625 -7.546875  [...]
+</symbol>
+<symbol overflow="visible" id="glyph1-3">
+<path style="stroke:none;" d="M 2.6875 0.140625 C 1.96875 0.140625 1.40625 -0.0507812 1 -0.4375 C 0.601562 -0.832031 0.40625 -1.382812 0.40625 -2.09375 C 0.40625 -2.851562 0.65625 -3.429688 1.15625 -3.828125 C 1.65625 -4.234375 2.378906 -4.441406 3.328125 -4.453125 L 4.921875 -4.484375 L 4.921875 -4.859375 C 4.921875 -5.335938 4.835938 -5.695312 4.671875 -5.9375 C 4.503906 -6.175781 4.226562 -6.296875 3.84375 -6.296875 C 3.488281 -6.296875 3.226562 -6.210938 3.0625 -6.046875 C 2.894531 - [...]
+</symbol>
+<symbol overflow="visible" id="glyph1-4">
+<path style="stroke:none;" d="M 0.984375 -8.734375 L 0.984375 -10.140625 L 2.90625 -10.140625 L 2.90625 -8.734375 Z M 0.984375 0 L 0.984375 -7.390625 L 2.90625 -7.390625 L 2.90625 0 Z M 0.984375 0 "/>
+</symbol>
+<symbol overflow="visible" id="glyph1-5">
+<path style="stroke:none;" d="M 0.984375 0 L 0.984375 -10.140625 L 2.90625 -10.140625 L 2.90625 0 Z M 0.984375 0 "/>
+</symbol>
+</g>
+<clipPath id="clip1">
+  <rect x="0" y="0" width="562" height="186"/>
+</clipPath>
+<g id="surface5" clip-path="url(#clip1)">
+<path style=" stroke:none;fill-rule:evenodd;fill:rgb(67.842102%,77.253723%,90.586853%);fill-opacity:1;" d="M 359.5 17.699219 C 355.199219 17.699219 350.898438 22 350.898438 26.300781 L 350.898438 60.800781 C 350.898438 65.101562 355.199219 69.398438 359.5 69.398438 L 437.5 69.398438 C 441.898438 69.398438 446.199219 65.101562 446.199219 60.800781 L 446.199219 26.300781 C 446.199219 22 441.898438 17.699219 437.5 17.699219 Z M 350.898438 17.699219 Z M 446.199219 69.398438 Z M 446.199219 69 [...]
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(19.999695%,19.999695%,19.999695%);stroke-opacity:1;stroke-miterlimit:10;" d="M 425.5 195.300781 C 421.199219 195.300781 416.898438 191 416.898438 186.699219 L 416.898438 152.199219 C 416.898438 147.898438 421.199219 143.601562 425.5 143.601562 L 503.5 143.601562 C 507.898438 143.601562 512.199219 147.898438 512.199219 152.199219 L 512.199219 186.699219 C 512.199219 191 507.898438 195.300781 50 [...]
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(19.999695%,19.999695%,19.999695%);stroke-opacity:1;stroke-miterlimit:10;" d="M 416.898438 195.300781 Z M 416.898438 195.300781 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(19.999695%,19.999695%,19.999695%);stroke-opacity:1;stroke-miterlimit:10;" d="M 512.199219 143.601562 Z M 512.199219 143.601562 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style=" stroke:none;fill-rule:evenodd;fill:rgb(67.842102%,77.253723%,90.586853%);fill-opacity:1;" d="M 198.5 17.699219 C 194.199219 17.699219 189.898438 22 189.898438 26.300781 L 189.898438 60.800781 C 189.898438 65.101562 194.199219 69.398438 198.5 69.398438 L 276.5 69.398438 C 280.800781 69.398438 285.101562 65.101562 285.101562 60.800781 L 285.101562 26.300781 C 285.101562 22 280.800781 17.699219 276.5 17.699219 Z M 189.898438 17.699219 Z M 285.101562 69.398438 Z M 285.101562 69 [...]
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(19.999695%,19.999695%,19.999695%);stroke-opacity:1;stroke-miterlimit:10;" d="M 264.5 195.300781 C 260.199219 195.300781 255.898438 191 255.898438 186.699219 L 255.898438 152.199219 C 255.898438 147.898438 260.199219 143.601562 264.5 143.601562 L 342.5 143.601562 C 346.800781 143.601562 351.101562 147.898438 351.101562 152.199219 L 351.101562 186.699219 C 351.101562 191 346.800781 195.300781 34 [...]
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(19.999695%,19.999695%,19.999695%);stroke-opacity:1;stroke-miterlimit:10;" d="M 255.898438 195.300781 Z M 255.898438 195.300781 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(19.999695%,19.999695%,19.999695%);stroke-opacity:1;stroke-miterlimit:10;" d="M 351.101562 143.601562 Z M 351.101562 143.601562 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style=" stroke:none;fill-rule:evenodd;fill:rgb(67.842102%,77.253723%,90.586853%);fill-opacity:1;" d="M 79.800781 17.699219 C 75.398438 17.699219 71.101562 22 71.101562 26.300781 L 71.101562 60.800781 C 71.101562 65.101562 75.398438 69.398438 79.800781 69.398438 L 157.800781 69.398438 C 162.101562 69.398438 166.398438 65.101562 166.398438 60.800781 L 166.398438 26.300781 C 166.398438 22 162.101562 17.699219 157.800781 17.699219 Z M 71.101562 17.699219 Z M 166.398438 69.398438 Z M 16 [...]
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(19.999695%,19.999695%,19.999695%);stroke-opacity:1;stroke-miterlimit:10;" d="M 145.800781 195.300781 C 141.398438 195.300781 137.101562 191 137.101562 186.699219 L 137.101562 152.199219 C 137.101562 147.898438 141.398438 143.601562 145.800781 143.601562 L 223.800781 143.601562 C 228.101562 143.601562 232.398438 147.898438 232.398438 152.199219 L 232.398438 186.699219 C 232.398438 191 228.10156 [...]
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(19.999695%,19.999695%,19.999695%);stroke-opacity:1;stroke-miterlimit:10;" d="M 137.101562 195.300781 Z M 137.101562 195.300781 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(19.999695%,19.999695%,19.999695%);stroke-opacity:1;stroke-miterlimit:10;" d="M 232.398438 143.601562 Z M 232.398438 143.601562 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style=" stroke:none;fill-rule:evenodd;fill:rgb(100%,85.488892%,63.528442%);fill-opacity:1;" d="M 81 113.699219 C 75.101562 113.699219 69.199219 119.699219 69.199219 125.601562 L 69.199219 173 C 69.199219 179 75.101562 184.898438 81 184.898438 L 444.898438 184.898438 C 450.898438 184.898438 456.800781 179 456.800781 173 L 456.800781 125.601562 C 456.800781 119.699219 450.898438 113.699219 444.898438 113.699219 Z M 69.199219 113.699219 Z M 456.800781 184.898438 Z M 456.800781 184.898438 "/>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 147 99.300781 C 141.101562 99.300781 135.199219 93.300781 135.199219 87.398438 L 135.199219 40 C 135.199219 34 141.101562 28.101562 147 28.101562 L 510.898438 28.101562 C 516.898438 28.101562 522.800781 34 522.800781 40 L 522.800781 87.398438 C 522.800781 93.300781 516.898438 99.300781 510.898438 99.300781 Z M 147 9 [...]
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 135.199219 99.300781 Z M 135.199219 99.300781 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 522.800781 28.101562 Z M 522.800781 28.101562 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill-rule:evenodd;fill:rgb(100%,85.488892%,63.528442%);fill-opacity:1;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(19.999695%,19.999695%,19.999695%);stroke-opacity:1;stroke-miterlimit:10;" d="M 376.898438 156 L 373.300781 156 L 373.300781 163.199219 L 380.5 163.199219 L 380.5 156 Z M 376.898438 156 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill-rule:evenodd;fill:rgb(100%,85.488892%,63.528442%);fill-opacity:1;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(19.999695%,19.999695%,19.999695%);stroke-opacity:1;stroke-miterlimit:10;" d="M 391.101562 156 L 387.5 156 L 387.5 163.199219 L 394.699219 163.199219 L 394.699219 156 Z M 391.101562 156 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill-rule:evenodd;fill:rgb(100%,85.488892%,63.528442%);fill-opacity:1;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(19.999695%,19.999695%,19.999695%);stroke-opacity:1;stroke-miterlimit:10;" d="M 402.398438 156 L 398.800781 156 L 398.800781 163.199219 L 406 163.199219 L 406 156 Z M 402.398438 156 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style=" stroke:none;fill-rule:evenodd;fill:rgb(67.842102%,77.253723%,90.586853%);fill-opacity:1;" d="M 85.398438 23.300781 C 81.101562 23.300781 76.800781 27.601562 76.800781 32 L 76.800781 66.398438 C 76.800781 70.800781 81.101562 75.101562 85.398438 75.101562 L 163.398438 75.101562 C 167.699219 75.101562 172.101562 70.800781 172.101562 66.398438 L 172.101562 32 C 172.101562 27.601562 167.699219 23.300781 163.398438 23.300781 Z M 76.800781 23.300781 Z M 172.101562 75.101562 Z M 17 [...]
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(19.999695%,19.999695%,19.999695%);stroke-opacity:1;stroke-miterlimit:10;" d="M 151.398438 189.699219 C 147.101562 189.699219 142.800781 185.398438 142.800781 181 L 142.800781 146.601562 C 142.800781 142.199219 147.101562 137.898438 151.398438 137.898438 L 229.398438 137.898438 C 233.699219 137.898438 238.101562 142.199219 238.101562 146.601562 L 238.101562 181 C 238.101562 185.398438 233.69921 [...]
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(19.999695%,19.999695%,19.999695%);stroke-opacity:1;stroke-miterlimit:10;" d="M 142.800781 189.699219 Z M 142.800781 189.699219 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(19.999695%,19.999695%,19.999695%);stroke-opacity:1;stroke-miterlimit:10;" d="M 238.101562 137.898438 Z M 238.101562 137.898438 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style=" stroke:none;fill-rule:evenodd;fill:rgb(67.842102%,77.253723%,90.586853%);fill-opacity:1;" d="M 90.800781 28.5 C 86.398438 28.5 82.101562 32.800781 82.101562 37.101562 L 82.101562 71.601562 C 82.101562 75.898438 86.398438 80.199219 90.800781 80.199219 L 168.800781 80.199219 C 173.101562 80.199219 177.398438 75.898438 177.398438 71.601562 L 177.398438 37.101562 C 177.398438 32.800781 173.101562 28.5 168.800781 28.5 Z M 82.101562 28.5 Z M 177.398438 80.199219 Z M 177.398438 80 [...]
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(19.999695%,19.999695%,19.999695%);stroke-opacity:1;stroke-miterlimit:10;" d="M 156.800781 184.5 C 152.398438 184.5 148.101562 180.199219 148.101562 175.898438 L 148.101562 141.398438 C 148.101562 137.101562 152.398438 132.800781 156.800781 132.800781 L 234.800781 132.800781 C 239.101562 132.800781 243.398438 137.101562 243.398438 141.398438 L 243.398438 175.898438 C 243.398438 180.199219 239.1 [...]
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(19.999695%,19.999695%,19.999695%);stroke-opacity:1;stroke-miterlimit:10;" d="M 148.101562 184.5 Z M 148.101562 184.5 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(19.999695%,19.999695%,19.999695%);stroke-opacity:1;stroke-miterlimit:10;" d="M 243.398438 132.800781 Z M 243.398438 132.800781 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style=" stroke:none;fill-rule:evenodd;fill:rgb(100%,100%,100%);fill-opacity:1;" d="M 91.5 46.800781 C 90 46.800781 88.5 48.300781 88.5 49.699219 L 88.5 61.601562 C 88.5 63.101562 90 64.601562 91.5 64.601562 L 125.699219 64.601562 C 127.199219 64.601562 128.699219 63.101562 128.699219 61.601562 L 128.699219 49.699219 C 128.699219 48.300781 127.199219 46.800781 125.699219 46.800781 Z M 88.5 46.800781 Z M 128.699219 64.601562 Z M 128.699219 64.601562 "/>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(19.999695%,19.999695%,19.999695%);stroke-opacity:1;stroke-miterlimit:10;" d="M 157.5 166.199219 C 156 166.199219 154.5 164.699219 154.5 163.300781 L 154.5 151.398438 C 154.5 149.898438 156 148.398438 157.5 148.398438 L 191.699219 148.398438 C 193.199219 148.398438 194.699219 149.898438 194.699219 151.398438 L 194.699219 163.300781 C 194.699219 164.699219 193.199219 166.199219 191.699219 166.19 [...]
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(19.999695%,19.999695%,19.999695%);stroke-opacity:1;stroke-miterlimit:10;" d="M 154.5 166.199219 Z M 154.5 166.199219 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(19.999695%,19.999695%,19.999695%);stroke-opacity:1;stroke-miterlimit:10;" d="M 194.699219 148.398438 Z M 194.699219 148.398438 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style=" stroke:none;fill-rule:evenodd;fill:rgb(100%,100%,100%);fill-opacity:1;" d="M 96.5 51.5 C 95 51.5 93.5 53 93.5 54.398438 L 93.5 66.300781 C 93.5 67.800781 95 69.300781 96.5 69.300781 L 130.699219 69.300781 C 132.199219 69.300781 133.699219 67.800781 133.699219 66.300781 L 133.699219 54.398438 C 133.699219 53 132.199219 51.5 130.699219 51.5 Z M 93.5 51.5 Z M 133.699219 69.300781 Z M 133.699219 69.300781 "/>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(19.999695%,19.999695%,19.999695%);stroke-opacity:1;stroke-miterlimit:10;" d="M 162.5 161.5 C 161 161.5 159.5 160 159.5 158.601562 L 159.5 146.699219 C 159.5 145.199219 161 143.699219 162.5 143.699219 L 196.699219 143.699219 C 198.199219 143.699219 199.699219 145.199219 199.699219 146.699219 L 199.699219 158.601562 C 199.699219 160 198.199219 161.5 196.699219 161.5 Z M 162.5 161.5 " transform=" [...]
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(19.999695%,19.999695%,19.999695%);stroke-opacity:1;stroke-miterlimit:10;" d="M 159.5 161.5 Z M 159.5 161.5 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(19.999695%,19.999695%,19.999695%);stroke-opacity:1;stroke-miterlimit:10;" d="M 199.699219 143.699219 Z M 199.699219 143.699219 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style=" stroke:none;fill-rule:evenodd;fill:rgb(100%,100%,100%);fill-opacity:1;" d="M 101.300781 56.101562 C 99.800781 56.101562 98.398438 57.601562 98.398438 59.101562 L 98.398438 71 C 98.398438 72.5 99.800781 74 101.300781 74 L 135.601562 74 C 137.101562 74 138.601562 72.5 138.601562 71 L 138.601562 59.101562 C 138.601562 57.601562 137.101562 56.101562 135.601562 56.101562 Z M 98.398438 56.101562 Z M 138.601562 74 Z M 138.601562 74 "/>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(19.999695%,19.999695%,19.999695%);stroke-opacity:1;stroke-miterlimit:10;" d="M 167.300781 156.898438 C 165.800781 156.898438 164.398438 155.398438 164.398438 153.898438 L 164.398438 142 C 164.398438 140.5 165.800781 139 167.300781 139 L 201.601562 139 C 203.101562 139 204.601562 140.5 204.601562 142 L 204.601562 153.898438 C 204.601562 155.398438 203.101562 156.898438 201.601562 156.898438 Z M [...]
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(19.999695%,19.999695%,19.999695%);stroke-opacity:1;stroke-miterlimit:10;" d="M 164.398438 156.898438 Z M 164.398438 156.898438 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(19.999695%,19.999695%,19.999695%);stroke-opacity:1;stroke-miterlimit:10;" d="M 204.601562 139 Z M 204.601562 139 " transform="matrix(1,0,0,-1,-66,213)"/>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph0-1" x="103.9" y="69.9"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph0-2" x="110.998" y="69.9"/>
+  <use xlink:href="#glyph0-3" x="118.782" y="69.9"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph0-4" x="125.866" y="69.9"/>
+</g>
+<path style=" stroke:none;fill-rule:evenodd;fill:rgb(99.214172%,72.547913%,30.195618%);fill-opacity:1;" d="M 73.101562 122.800781 C 71.101562 122.800781 69.199219 124.800781 69.199219 126.699219 L 69.199219 142.601562 C 69.199219 144.601562 71.101562 146.601562 73.101562 146.601562 L 452.898438 146.601562 C 454.800781 146.601562 456.800781 144.601562 456.800781 142.601562 L 456.800781 126.699219 C 456.800781 124.800781 454.800781 122.800781 452.898438 122.800781 Z M 69.199219 122.800781  [...]
+<path style="fill:none;stroke-width:1.4999;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 139.101562 90.199219 C 138.199219 90.199219 137.199219 89.699219 136.5 89 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:1.4999;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 135.199219 86.398438 C 135.199219 86.398438 135.199219 86.300781 135.199219 86.300781 L 135.199219 83.5 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:1.4999;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 135.199219 80.5 L 135.199219 77.601562 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:1.4999;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 135.199219 74.601562 L 135.199219 71.601562 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:1.4999;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 135.601562 68.699219 C 136.101562 67.898438 136.800781 67.199219 137.699219 66.699219 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:1.4999;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 140.601562 66.398438 L 143.601562 66.398438 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:1.4999;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 146.601562 66.398438 L 149.5 66.398438 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:1.4999;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 152.5 66.398438 L 155.398438 66.398438 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:1.4999;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 158.398438 66.398438 L 161.300781 66.398438 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:1.4999;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 164.300781 66.398438 L 167.300781 66.398438 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:1.4999;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 170.199219 66.398438 L 173.199219 66.398438 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:1.4999;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 176.101562 66.398438 L 179.101562 66.398438 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:1.4999;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 182.101562 66.398438 L 185 66.398438 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:1.4999;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 188 66.398438 L 190.898438 66.398438 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:1.4999;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 193.898438 66.398438 L 196.898438 66.398438 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:1.4999;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 199.800781 66.398438 L 202.800781 66.398438 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:1.4999;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 205.699219 66.398438 L 208.699219 66.398438 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:1.4999;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 211.699219 66.398438 L 214.601562 66.398438 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:1.4999;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 217.601562 66.398438 L 220.5 66.398438 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:1.4999;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 223.5 66.398438 L 226.5 66.398438 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:1.4999;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 229.398438 66.398438 L 232.398438 66.398438 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:1.4999;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 235.300781 66.398438 L 238.300781 66.398438 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:1.4999;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 241.300781 66.398438 L 244.199219 66.398438 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:1.4999;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 247.199219 66.398438 L 250.101562 66.398438 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:1.4999;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 253.101562 66.398438 L 256.101562 66.398438 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:1.4999;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 259 66.398438 L 262 66.398438 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:1.4999;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 264.898438 66.398438 L 267.898438 66.398438 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:1.4999;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 270.898438 66.398438 L 273.800781 66.398438 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:1.4999;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 276.800781 66.398438 L 279.699219 66.398438 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:1.4999;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 282.699219 66.398438 L 285.601562 66.398438 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:1.4999;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 288.601562 66.398438 L 291.601562 66.398438 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:1.4999;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 294.5 66.398438 L 297.5 66.398438 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:1.4999;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 300.398438 66.398438 L 303.398438 66.398438 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:1.4999;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 306.398438 66.398438 L 309.300781 66.398438 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:1.4999;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 312.300781 66.398438 L 315.199219 66.398438 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:1.4999;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 318.199219 66.398438 L 321.199219 66.398438 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:1.4999;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 324.101562 66.398438 L 327.101562 66.398438 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:1.4999;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 330 66.398438 L 333 66.398438 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:1.4999;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 336 66.398438 L 338.898438 66.398438 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:1.4999;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 341.898438 66.398438 L 344.800781 66.398438 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:1.4999;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 347.800781 66.398438 L 350.800781 66.398438 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:1.4999;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 353.699219 66.398438 L 356.699219 66.398438 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:1.4999;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 359.601562 66.398438 L 362.601562 66.398438 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:1.4999;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 365.601562 66.398438 L 368.5 66.398438 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:1.4999;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 371.5 66.398438 L 374.398438 66.398438 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:1.4999;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 377.398438 66.398438 L 380.398438 66.398438 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:1.4999;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 383.300781 66.398438 L 386.300781 66.398438 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:1.4999;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 389.199219 66.398438 L 392.199219 66.398438 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:1.4999;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 395.101562 66.398438 L 398.101562 66.398438 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:1.4999;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 401.101562 66.398438 L 404 66.398438 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:1.4999;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 407 66.398438 L 409.898438 66.398438 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:1.4999;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 412.898438 66.398438 L 415.898438 66.398438 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:1.4999;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 418.800781 66.398438 L 421.800781 66.398438 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:1.4999;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 424.699219 66.398438 L 427.699219 66.398438 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:1.4999;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 430.699219 66.398438 L 433.601562 66.398438 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:1.4999;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 436.601562 66.398438 L 439.5 66.398438 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:1.4999;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 442.5 66.398438 L 445.5 66.398438 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:1.4999;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 448.398438 66.398438 L 451.398438 66.398438 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:1.4999;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 454.300781 66.398438 L 457.300781 66.398438 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:1.4999;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 460.300781 66.398438 L 463.199219 66.398438 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:1.4999;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 466.199219 66.398438 L 469.101562 66.398438 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:1.4999;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 472.101562 66.398438 L 475.101562 66.398438 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:1.4999;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 478 66.398438 L 481 66.398438 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:1.4999;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 483.898438 66.398438 L 486.898438 66.398438 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:1.4999;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 489.898438 66.398438 L 492.800781 66.398438 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:1.4999;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 495.800781 66.398438 L 498.699219 66.398438 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:1.4999;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 501.699219 66.398438 L 504.699219 66.398438 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:1.4999;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 507.601562 66.398438 L 510.601562 66.398438 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:1.4999;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 513.601562 66.398438 L 516.5 66.398438 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:1.4999;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 519.398438 66.5 C 520.398438 66.699219 521.300781 67.199219 521.898438 68 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:1.4999;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 522.800781 70.800781 L 522.800781 73.699219 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:1.4999;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 522.800781 76.699219 L 522.800781 79.699219 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:1.4999;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 522.800781 82.601562 L 522.800781 85.601562 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:1.4999;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 522.101562 88.398438 C 521.5 89.199219 520.699219 89.800781 519.699219 90.101562 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:1.4999;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 516.800781 90.199219 L 513.800781 90.199219 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:1.4999;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 510.898438 90.199219 L 507.898438 90.199219 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:1.4999;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 504.898438 90.199219 L 502 90.199219 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:1.4999;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 499 90.199219 L 496.101562 90.199219 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:1.4999;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 493.101562 90.199219 L 490.101562 90.199219 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:1.4999;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 487.199219 90.199219 L 484.199219 90.199219 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:1.4999;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 481.300781 90.199219 L 478.300781 90.199219 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:1.4999;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 475.300781 90.199219 L 472.398438 90.199219 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:1.4999;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 469.398438 90.199219 L 466.5 90.199219 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:1.4999;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 463.5 90.199219 L 460.5 90.199219 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:1.4999;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 457.601562 90.199219 L 454.601562 90.199219 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:1.4999;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 451.699219 90.199219 L 448.699219 90.199219 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:1.4999;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 445.699219 90.199219 L 442.800781 90.199219 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:1.4999;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 439.800781 90.199219 L 436.898438 90.199219 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:1.4999;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 433.898438 90.199219 L 431 90.199219 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:1.4999;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 428 90.199219 L 425 90.199219 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:1.4999;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 422.101562 90.199219 L 419.101562 90.199219 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:1.4999;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 416.199219 90.199219 L 413.199219 90.199219 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:1.4999;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 410.199219 90.199219 L 407.300781 90.199219 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:1.4999;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 404.300781 90.199219 L 401.398438 90.199219 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:1.4999;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 398.398438 90.199219 L 395.398438 90.199219 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:1.4999;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 392.5 90.199219 L 389.5 90.199219 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:1.4999;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 386.601562 90.199219 L 383.601562 90.199219 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:1.4999;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 380.601562 90.199219 L 377.699219 90.199219 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:1.4999;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 374.699219 90.199219 L 371.800781 90.199219 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:1.4999;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 368.800781 90.199219 L 365.800781 90.199219 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:1.4999;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 362.898438 90.199219 L 359.898438 90.199219 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:1.4999;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 357 90.199219 L 354 90.199219 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:1.4999;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 351 90.199219 L 348.101562 90.199219 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:1.4999;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 345.101562 90.199219 L 342.199219 90.199219 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:1.4999;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 339.199219 90.199219 L 336.199219 90.199219 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:1.4999;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 333.300781 90.199219 L 330.300781 90.199219 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:1.4999;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 327.398438 90.199219 L 324.398438 90.199219 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:1.4999;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 321.398438 90.199219 L 318.5 90.199219 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:1.4999;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 315.5 90.199219 L 312.601562 90.199219 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:1.4999;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 309.601562 90.199219 L 306.699219 90.199219 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:1.4999;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 303.699219 90.199219 L 300.699219 90.199219 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:1.4999;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 297.800781 90.199219 L 294.800781 90.199219 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:1.4999;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 291.898438 90.199219 L 288.898438 90.199219 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:1.4999;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 285.898438 90.199219 L 283 90.199219 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:1.4999;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 280 90.199219 L 277.101562 90.199219 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:1.4999;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 274.101562 90.199219 L 271.101562 90.199219 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:1.4999;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 268.199219 90.199219 L 265.199219 90.199219 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:1.4999;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 262.300781 90.199219 L 259.300781 90.199219 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:1.4999;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 256.300781 90.199219 L 253.398438 90.199219 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:1.4999;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 250.398438 90.199219 L 247.5 90.199219 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:1.4999;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 244.5 90.199219 L 241.5 90.199219 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:1.4999;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 238.601562 90.199219 L 235.601562 90.199219 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:1.4999;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 232.699219 90.199219 L 229.699219 90.199219 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:1.4999;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 226.699219 90.199219 L 223.800781 90.199219 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:1.4999;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 220.800781 90.199219 L 217.898438 90.199219 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:1.4999;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 214.898438 90.199219 L 211.898438 90.199219 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:1.4999;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 209 90.199219 L 206 90.199219 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:1.4999;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 203.101562 90.199219 L 200.101562 90.199219 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:1.4999;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 197.101562 90.199219 L 194.199219 90.199219 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:1.4999;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 191.199219 90.199219 L 188.300781 90.199219 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:1.4999;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 185.300781 90.199219 L 182.398438 90.199219 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:1.4999;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 179.398438 90.199219 L 176.398438 90.199219 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:1.4999;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 173.5 90.199219 L 170.5 90.199219 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:1.4999;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 167.601562 90.199219 L 164.601562 90.199219 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:1.4999;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 161.601562 90.199219 L 158.699219 90.199219 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:1.4999;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 155.699219 90.199219 L 152.800781 90.199219 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:1.4999;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 149.800781 90.199219 L 146.800781 90.199219 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:1.4999;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 143.898438 90.199219 L 140.898438 90.199219 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style=" stroke:none;fill-rule:evenodd;fill:rgb(79.998779%,79.998779%,79.998779%);fill-opacity:1;" d="M 76.199219 122.699219 L 100 122.699219 L 100 146.5 L 76.199219 146.5 Z M 76.199219 122.699219 Z M 100 146.5 Z M 100 146.5 "/>
+<path style="fill:none;stroke-width:0.12;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 142.199219 90.300781 L 166 90.300781 L 166 66.5 L 142.199219 66.5 Z M 142.199219 90.300781 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:0.12;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 142.199219 90.300781 Z M 142.199219 90.300781 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:0.12;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 166 66.5 Z M 166 66.5 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style=" stroke:none;fill-rule:evenodd;fill:rgb(79.998779%,79.998779%,79.998779%);fill-opacity:1;" d="M 80.898438 122.699219 L 80.898438 146.5 Z M 76.199219 122.699219 Z M 100 146.5 Z M 100 146.5 "/>
+<path style="fill:none;stroke-width:0.12;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 146.898438 90.300781 L 146.898438 66.5 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:0.12;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 142.199219 90.300781 Z M 142.199219 90.300781 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:0.12;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 166 66.5 Z M 166 66.5 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style=" stroke:none;fill-rule:evenodd;fill:rgb(79.998779%,79.998779%,79.998779%);fill-opacity:1;" d="M 76.199219 127.398438 L 100 127.398438 Z M 76.199219 122.699219 Z M 100 146.5 Z M 100 146.5 "/>
+<path style="fill:none;stroke-width:0.12;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 142.199219 85.601562 L 166 85.601562 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:0.12;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 142.199219 90.300781 Z M 142.199219 90.300781 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:0.12;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 166 66.5 Z M 166 66.5 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style=" stroke:none;fill-rule:evenodd;fill:rgb(67.842102%,83.528137%,54.116821%);fill-opacity:1;" d="M 73.101562 153.699219 C 71.101562 153.699219 69.199219 155.699219 69.199219 157.601562 L 69.199219 173.5 C 69.199219 175.5 71.101562 177.5 73.101562 177.5 L 452.898438 177.5 C 454.800781 177.5 456.800781 175.5 456.800781 173.5 L 456.800781 157.601562 C 456.800781 155.699219 454.800781 153.699219 452.898438 153.699219 Z M 69.199219 153.699219 Z M 456.800781 177.5 Z M 456.800781 177.5 "/>
+<path style="fill:none;stroke-width:1.4999;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 139.101562 59.300781 C 138.199219 59.300781 137.199219 58.800781 136.5 58.101562 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:1.4999;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 135.199219 55.5 C 135.199219 55.5 135.199219 55.398438 135.199219 55.398438 L 135.199219 52.601562 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:1.4999;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 135.199219 49.601562 L 135.199219 46.699219 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:1.4999;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 135.199219 43.699219 L 135.199219 40.699219 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:1.4999;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 135.601562 37.800781 C 136.101562 37 136.800781 36.300781 137.699219 35.800781 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:1.4999;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 140.601562 35.5 L 143.601562 35.5 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:1.4999;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 146.601562 35.5 L 149.5 35.5 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:1.4999;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 152.5 35.5 L 155.398438 35.5 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:1.4999;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 158.398438 35.5 L 161.300781 35.5 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:1.4999;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 164.300781 35.5 L 167.300781 35.5 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:1.4999;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 170.199219 35.5 L 173.199219 35.5 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:1.4999;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 176.101562 35.5 L 179.101562 35.5 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:1.4999;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 182.101562 35.5 L 185 35.5 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:1.4999;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 188 35.5 L 190.898438 35.5 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:1.4999;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 193.898438 35.5 L 196.898438 35.5 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:1.4999;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 199.800781 35.5 L 202.800781 35.5 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:1.4999;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 205.699219 35.5 L 208.699219 35.5 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:1.4999;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 211.699219 35.5 L 214.601562 35.5 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:1.4999;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 217.601562 35.5 L 220.5 35.5 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:1.4999;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 223.5 35.5 L 226.5 35.5 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:1.4999;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 229.398438 35.5 L 232.398438 35.5 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:1.4999;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 235.300781 35.5 L 238.300781 35.5 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:1.4999;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 241.300781 35.5 L 244.199219 35.5 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:1.4999;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 247.199219 35.5 L 250.101562 35.5 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:1.4999;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 253.101562 35.5 L 256.101562 35.5 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:1.4999;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 259 35.5 L 262 35.5 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:1.4999;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 264.898438 35.5 L 267.898438 35.5 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:1.4999;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 270.898438 35.5 L 273.800781 35.5 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:1.4999;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 276.800781 35.5 L 279.699219 35.5 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:1.4999;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 282.699219 35.5 L 285.601562 35.5 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:1.4999;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 288.601562 35.5 L 291.601562 35.5 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:1.4999;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 294.5 35.5 L 297.5 35.5 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:1.4999;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 300.398438 35.5 L 303.398438 35.5 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:1.4999;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 306.398438 35.5 L 309.300781 35.5 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:1.4999;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 312.300781 35.5 L 315.199219 35.5 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:1.4999;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 318.199219 35.5 L 321.199219 35.5 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:1.4999;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 324.101562 35.5 L 327.101562 35.5 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:1.4999;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 330 35.5 L 333 35.5 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:1.4999;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 336 35.5 L 338.898438 35.5 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:1.4999;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 341.898438 35.5 L 344.800781 35.5 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:1.4999;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 347.800781 35.5 L 350.800781 35.5 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:1.4999;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 353.699219 35.5 L 356.699219 35.5 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:1.4999;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 359.601562 35.5 L 362.601562 35.5 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:1.4999;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 365.601562 35.5 L 368.5 35.5 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:1.4999;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 371.5 35.5 L 374.398438 35.5 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:1.4999;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 377.398438 35.5 L 380.398438 35.5 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:1.4999;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 383.300781 35.5 L 386.300781 35.5 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:1.4999;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 389.199219 35.5 L 392.199219 35.5 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:1.4999;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 395.101562 35.5 L 398.101562 35.5 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:1.4999;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 401.101562 35.5 L 404 35.5 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:1.4999;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 407 35.5 L 409.898438 35.5 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:1.4999;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 412.898438 35.5 L 415.898438 35.5 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:1.4999;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 418.800781 35.5 L 421.800781 35.5 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:1.4999;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 424.699219 35.5 L 427.699219 35.5 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:1.4999;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 430.699219 35.5 L 433.601562 35.5 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:1.4999;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 436.601562 35.5 L 439.5 35.5 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:1.4999;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 442.5 35.5 L 445.5 35.5 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:1.4999;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 448.398438 35.5 L 451.398438 35.5 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:1.4999;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 454.300781 35.5 L 457.300781 35.5 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:1.4999;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 460.300781 35.5 L 463.199219 35.5 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:1.4999;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 466.199219 35.5 L 469.101562 35.5 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:1.4999;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 472.101562 35.5 L 475.101562 35.5 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:1.4999;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 478 35.5 L 481 35.5 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:1.4999;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 483.898438 35.5 L 486.898438 35.5 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:1.4999;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 489.898438 35.5 L 492.800781 35.5 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:1.4999;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 495.800781 35.5 L 498.699219 35.5 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:1.4999;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 501.699219 35.5 L 504.699219 35.5 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:1.4999;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 507.601562 35.5 L 510.601562 35.5 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:1.4999;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 513.601562 35.5 L 516.5 35.5 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:1.4999;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 519.398438 35.601562 C 520.398438 35.800781 521.300781 36.300781 521.898438 37.101562 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:1.4999;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 522.800781 39.898438 L 522.800781 42.800781 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:1.4999;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 522.800781 45.800781 L 522.800781 48.800781 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:1.4999;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 522.800781 51.699219 L 522.800781 54.699219 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:1.4999;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 522.101562 57.5 C 521.5 58.300781 520.699219 58.898438 519.699219 59.199219 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:1.4999;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 516.800781 59.300781 L 513.800781 59.300781 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:1.4999;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 510.898438 59.300781 L 507.898438 59.300781 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:1.4999;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 504.898438 59.300781 L 502 59.300781 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:1.4999;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 499 59.300781 L 496.101562 59.300781 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:1.4999;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 493.101562 59.300781 L 490.101562 59.300781 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:1.4999;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 487.199219 59.300781 L 484.199219 59.300781 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:1.4999;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 481.300781 59.300781 L 478.300781 59.300781 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:1.4999;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 475.300781 59.300781 L 472.398438 59.300781 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:1.4999;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 469.398438 59.300781 L 466.5 59.300781 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:1.4999;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 463.5 59.300781 L 460.5 59.300781 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:1.4999;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 457.601562 59.300781 L 454.601562 59.300781 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:1.4999;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 451.699219 59.300781 L 448.699219 59.300781 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:1.4999;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 445.699219 59.300781 L 442.800781 59.300781 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:1.4999;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 439.800781 59.300781 L 436.898438 59.300781 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:1.4999;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 433.898438 59.300781 L 431 59.300781 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:1.4999;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 428 59.300781 L 425 59.300781 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:1.4999;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 422.101562 59.300781 L 419.101562 59.300781 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:1.4999;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 416.199219 59.300781 L 413.199219 59.300781 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:1.4999;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 410.199219 59.300781 L 407.300781 59.300781 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:1.4999;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 404.300781 59.300781 L 401.398438 59.300781 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:1.4999;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 398.398438 59.300781 L 395.398438 59.300781 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:1.4999;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 392.5 59.300781 L 389.5 59.300781 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:1.4999;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 386.601562 59.300781 L 383.601562 59.300781 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:1.4999;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 380.601562 59.300781 L 377.699219 59.300781 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:1.4999;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 374.699219 59.300781 L 371.800781 59.300781 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:1.4999;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 368.800781 59.300781 L 365.800781 59.300781 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:1.4999;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 362.898438 59.300781 L 359.898438 59.300781 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:1.4999;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 357 59.300781 L 354 59.300781 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:1.4999;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 351 59.300781 L 348.101562 59.300781 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:1.4999;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 345.101562 59.300781 L 342.199219 59.300781 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:1.4999;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 339.199219 59.300781 L 336.199219 59.300781 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:1.4999;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 333.300781 59.300781 L 330.300781 59.300781 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:1.4999;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 327.398438 59.300781 L 324.398438 59.300781 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:1.4999;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 321.398438 59.300781 L 318.5 59.300781 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:1.4999;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 315.5 59.300781 L 312.601562 59.300781 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:1.4999;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 309.601562 59.300781 L 306.699219 59.300781 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:1.4999;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 303.699219 59.300781 L 300.699219 59.300781 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:1.4999;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 297.800781 59.300781 L 294.800781 59.300781 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:1.4999;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 291.898438 59.300781 L 288.898438 59.300781 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:1.4999;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 285.898438 59.300781 L 283 59.300781 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:1.4999;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 280 59.300781 L 277.101562 59.300781 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:1.4999;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 274.101562 59.300781 L 271.101562 59.300781 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:1.4999;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 268.199219 59.300781 L 265.199219 59.300781 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:1.4999;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 262.300781 59.300781 L 259.300781 59.300781 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:1.4999;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 256.300781 59.300781 L 253.398438 59.300781 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:1.4999;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 250.398438 59.300781 L 247.5 59.300781 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:1.4999;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 244.5 59.300781 L 241.5 59.300781 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:1.4999;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 238.601562 59.300781 L 235.601562 59.300781 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:1.4999;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 232.699219 59.300781 L 229.699219 59.300781 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:1.4999;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 226.699219 59.300781 L 223.800781 59.300781 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:1.4999;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 220.800781 59.300781 L 217.898438 59.300781 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:1.4999;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 214.898438 59.300781 L 211.898438 59.300781 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:1.4999;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 209 59.300781 L 206 59.300781 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:1.4999;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 203.101562 59.300781 L 200.101562 59.300781 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:1.4999;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 197.101562 59.300781 L 194.199219 59.300781 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:1.4999;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 191.199219 59.300781 L 188.300781 59.300781 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:1.4999;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 185.300781 59.300781 L 182.398438 59.300781 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:1.4999;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 179.398438 59.300781 L 176.398438 59.300781 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:1.4999;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 173.5 59.300781 L 170.5 59.300781 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:1.4999;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 167.601562 59.300781 L 164.601562 59.300781 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:1.4999;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 161.601562 59.300781 L 158.699219 59.300781 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:1.4999;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 155.699219 59.300781 L 152.800781 59.300781 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:1.4999;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 149.800781 59.300781 L 146.800781 59.300781 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:1.4999;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20.391846%,39.605713%,64.312744%);stroke-opacity:1;stroke-miterlimit:10;" d="M 143.898438 59.300781 L 140.898438 59.300781 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style=" stroke:none;fill-rule:evenodd;fill:rgb(25.097656%,47.44873%,15.293884%);fill-opacity:1;" d="M 76.199219 157.398438 C 76.199219 155.601562 82.101562 153.699219 88.101562 153.699219 C 94 153.699219 100 155.601562 100 157.398438 L 100 173.699219 C 100 175.601562 94 177.5 88.101562 177.5 C 82.101562 177.5 76.199219 175.601562 76.199219 173.699219 Z M 76.199219 153.699219 Z M 100 177.5 Z M 100 177.5 "/>
+<path style="fill:none;stroke-width:0.12;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 142.199219 55.601562 C 142.199219 57.398438 148.101562 59.300781 154.101562 59.300781 C 160 59.300781 166 57.398438 166 55.601562 L 166 39.300781 C 166 37.398438 160 35.5 154.101562 35.5 C 148.101562 35.5 142.199219 37.398438 142.199219 39.300781 Z M 142.199219 55.601562 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:0.12;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 142.199219 59.300781 Z M 142.199219 59.300781 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:0.12;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 166 35.5 Z M 166 35.5 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style=" stroke:none;fill-rule:evenodd;fill:rgb(25.097656%,47.44873%,15.293884%);fill-opacity:1;" d="M 76.199219 157.398438 C 76.199219 159.300781 82.101562 161.199219 88.101562 161.199219 C 94 161.199219 100 159.300781 100 157.398438 Z M 76.199219 153.699219 Z M 100 177.5 Z M 100 177.5 "/>
+<path style="fill:none;stroke-width:0.12;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 142.199219 55.601562 C 142.199219 53.699219 148.101562 51.800781 154.101562 51.800781 C 160 51.800781 166 53.699219 166 55.601562 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:0.12;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 142.199219 59.300781 Z M 142.199219 59.300781 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:0.12;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 166 35.5 Z M 166 35.5 " transform="matrix(1,0,0,-1,-66,213)"/>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph0-5" x="90.9" y="44.3"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph0-6" x="100.196" y="44.3"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph0-7" x="107.28" y="44.3"/>
+  <use xlink:href="#glyph0-8" x="115.064" y="44.3"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph0-9" x="122.148" y="44.3"/>
+  <use xlink:href="#glyph0-10" x="129.932" y="44.3"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph0-11" x="133.922" y="44.3"/>
+  <use xlink:href="#glyph0-12" x="141.706" y="44.3"/>
+</g>
+<path style=" stroke:none;fill-rule:evenodd;fill:rgb(67.842102%,77.253723%,90.586853%);fill-opacity:1;" d="M 204.101562 23.300781 C 199.800781 23.300781 195.5 27.601562 195.5 32 L 195.5 66.398438 C 195.5 70.800781 199.800781 75.101562 204.101562 75.101562 L 282.101562 75.101562 C 286.398438 75.101562 290.800781 70.800781 290.800781 66.398438 L 290.800781 32 C 290.800781 27.601562 286.398438 23.300781 282.101562 23.300781 Z M 195.5 23.300781 Z M 290.800781 75.101562 Z M 290.800781 75.101562 "/>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(19.999695%,19.999695%,19.999695%);stroke-opacity:1;stroke-miterlimit:10;" d="M 270.101562 189.699219 C 265.800781 189.699219 261.5 185.398438 261.5 181 L 261.5 146.601562 C 261.5 142.199219 265.800781 137.898438 270.101562 137.898438 L 348.101562 137.898438 C 352.398438 137.898438 356.800781 142.199219 356.800781 146.601562 L 356.800781 181 C 356.800781 185.398438 352.398438 189.699219 348.101 [...]
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(19.999695%,19.999695%,19.999695%);stroke-opacity:1;stroke-miterlimit:10;" d="M 261.5 189.699219 Z M 261.5 189.699219 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(19.999695%,19.999695%,19.999695%);stroke-opacity:1;stroke-miterlimit:10;" d="M 356.800781 137.898438 Z M 356.800781 137.898438 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style=" stroke:none;fill-rule:evenodd;fill:rgb(67.842102%,77.253723%,90.586853%);fill-opacity:1;" d="M 209.5 28.5 C 205.199219 28.5 200.898438 32.800781 200.898438 37.101562 L 200.898438 71.601562 C 200.898438 75.898438 205.199219 80.199219 209.5 80.199219 L 287.5 80.199219 C 291.800781 80.199219 296.101562 75.898438 296.101562 71.601562 L 296.101562 37.101562 C 296.101562 32.800781 291.800781 28.5 287.5 28.5 Z M 200.898438 28.5 Z M 296.101562 80.199219 Z M 296.101562 80.199219 "/>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(19.999695%,19.999695%,19.999695%);stroke-opacity:1;stroke-miterlimit:10;" d="M 275.5 184.5 C 271.199219 184.5 266.898438 180.199219 266.898438 175.898438 L 266.898438 141.398438 C 266.898438 137.101562 271.199219 132.800781 275.5 132.800781 L 353.5 132.800781 C 357.800781 132.800781 362.101562 137.101562 362.101562 141.398438 L 362.101562 175.898438 C 362.101562 180.199219 357.800781 184.5 353 [...]
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(19.999695%,19.999695%,19.999695%);stroke-opacity:1;stroke-miterlimit:10;" d="M 266.898438 184.5 Z M 266.898438 184.5 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(19.999695%,19.999695%,19.999695%);stroke-opacity:1;stroke-miterlimit:10;" d="M 362.101562 132.800781 Z M 362.101562 132.800781 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style=" stroke:none;fill-rule:evenodd;fill:rgb(100%,100%,100%);fill-opacity:1;" d="M 210.199219 46.800781 C 208.699219 46.800781 207.199219 48.300781 207.199219 49.699219 L 207.199219 61.601562 C 207.199219 63.101562 208.699219 64.601562 210.199219 64.601562 L 244.5 64.601562 C 245.898438 64.601562 247.398438 63.101562 247.398438 61.601562 L 247.398438 49.699219 C 247.398438 48.300781 245.898438 46.800781 244.5 46.800781 Z M 207.199219 46.800781 Z M 247.398438 64.601562 Z M 247.398 [...]
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(19.999695%,19.999695%,19.999695%);stroke-opacity:1;stroke-miterlimit:10;" d="M 276.199219 166.199219 C 274.699219 166.199219 273.199219 164.699219 273.199219 163.300781 L 273.199219 151.398438 C 273.199219 149.898438 274.699219 148.398438 276.199219 148.398438 L 310.5 148.398438 C 311.898438 148.398438 313.398438 149.898438 313.398438 151.398438 L 313.398438 163.300781 C 313.398438 164.699219  [...]
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(19.999695%,19.999695%,19.999695%);stroke-opacity:1;stroke-miterlimit:10;" d="M 273.199219 166.199219 Z M 273.199219 166.199219 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(19.999695%,19.999695%,19.999695%);stroke-opacity:1;stroke-miterlimit:10;" d="M 313.398438 148.398438 Z M 313.398438 148.398438 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style=" stroke:none;fill-rule:evenodd;fill:rgb(100%,100%,100%);fill-opacity:1;" d="M 215.199219 51.5 C 213.699219 51.5 212.199219 53 212.199219 54.398438 L 212.199219 66.300781 C 212.199219 67.800781 213.699219 69.300781 215.199219 69.300781 L 249.398438 69.300781 C 250.898438 69.300781 252.398438 67.800781 252.398438 66.300781 L 252.398438 54.398438 C 252.398438 53 250.898438 51.5 249.398438 51.5 Z M 212.199219 51.5 Z M 252.398438 69.300781 Z M 252.398438 69.300781 "/>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(19.999695%,19.999695%,19.999695%);stroke-opacity:1;stroke-miterlimit:10;" d="M 281.199219 161.5 C 279.699219 161.5 278.199219 160 278.199219 158.601562 L 278.199219 146.699219 C 278.199219 145.199219 279.699219 143.699219 281.199219 143.699219 L 315.398438 143.699219 C 316.898438 143.699219 318.398438 145.199219 318.398438 146.699219 L 318.398438 158.601562 C 318.398438 160 316.898438 161.5 31 [...]
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(19.999695%,19.999695%,19.999695%);stroke-opacity:1;stroke-miterlimit:10;" d="M 278.199219 161.5 Z M 278.199219 161.5 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(19.999695%,19.999695%,19.999695%);stroke-opacity:1;stroke-miterlimit:10;" d="M 318.398438 143.699219 Z M 318.398438 143.699219 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style=" stroke:none;fill-rule:evenodd;fill:rgb(100%,100%,100%);fill-opacity:1;" d="M 220 56.101562 C 218.5 56.101562 217.101562 57.601562 217.101562 59.101562 L 217.101562 71 C 217.101562 72.5 218.5 74 220 74 L 254.300781 74 C 255.800781 74 257.300781 72.5 257.300781 71 L 257.300781 59.101562 C 257.300781 57.601562 255.800781 56.101562 254.300781 56.101562 Z M 217.101562 56.101562 Z M 257.300781 74 Z M 257.300781 74 "/>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(19.999695%,19.999695%,19.999695%);stroke-opacity:1;stroke-miterlimit:10;" d="M 286 156.898438 C 284.5 156.898438 283.101562 155.398438 283.101562 153.898438 L 283.101562 142 C 283.101562 140.5 284.5 139 286 139 L 320.300781 139 C 321.800781 139 323.300781 140.5 323.300781 142 L 323.300781 153.898438 C 323.300781 155.398438 321.800781 156.898438 320.300781 156.898438 Z M 286 156.898438 " transf [...]
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(19.999695%,19.999695%,19.999695%);stroke-opacity:1;stroke-miterlimit:10;" d="M 283.101562 156.898438 Z M 283.101562 156.898438 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(19.999695%,19.999695%,19.999695%);stroke-opacity:1;stroke-miterlimit:10;" d="M 323.300781 139 Z M 323.300781 139 " transform="matrix(1,0,0,-1,-66,213)"/>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph0-1" x="222.7" y="69.9"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph0-2" x="229.7" y="69.9"/>
+  <use xlink:href="#glyph0-3" x="237.484" y="69.9"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph0-4" x="244.568" y="69.9"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph0-5" x="209.6" y="44.3"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph0-6" x="218.896" y="44.3"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph0-7" x="225.98" y="44.3"/>
+  <use xlink:href="#glyph0-8" x="233.764" y="44.3"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph0-9" x="240.848" y="44.3"/>
+  <use xlink:href="#glyph0-10" x="248.632" y="44.3"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph0-11" x="252.622" y="44.3"/>
+  <use xlink:href="#glyph0-12" x="260.406" y="44.3"/>
+</g>
+<path style=" stroke:none;fill-rule:evenodd;fill:rgb(67.842102%,77.253723%,90.586853%);fill-opacity:1;" d="M 365.199219 23.300781 C 360.898438 23.300781 356.601562 27.601562 356.601562 32 L 356.601562 66.398438 C 356.601562 70.800781 360.898438 75.101562 365.199219 75.101562 L 443.199219 75.101562 C 447.5 75.101562 451.800781 70.800781 451.800781 66.398438 L 451.800781 32 C 451.800781 27.601562 447.5 23.300781 443.199219 23.300781 Z M 356.601562 23.300781 Z M 451.800781 75.101562 Z M 451 [...]
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(19.999695%,19.999695%,19.999695%);stroke-opacity:1;stroke-miterlimit:10;" d="M 431.199219 189.699219 C 426.898438 189.699219 422.601562 185.398438 422.601562 181 L 422.601562 146.601562 C 422.601562 142.199219 426.898438 137.898438 431.199219 137.898438 L 509.199219 137.898438 C 513.5 137.898438 517.800781 142.199219 517.800781 146.601562 L 517.800781 181 C 517.800781 185.398438 513.5 189.6992 [...]
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(19.999695%,19.999695%,19.999695%);stroke-opacity:1;stroke-miterlimit:10;" d="M 422.601562 189.699219 Z M 422.601562 189.699219 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(19.999695%,19.999695%,19.999695%);stroke-opacity:1;stroke-miterlimit:10;" d="M 517.800781 137.898438 Z M 517.800781 137.898438 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style=" stroke:none;fill-rule:evenodd;fill:rgb(67.842102%,77.253723%,90.586853%);fill-opacity:1;" d="M 370.5 28.5 C 366.199219 28.5 361.898438 32.800781 361.898438 37.101562 L 361.898438 71.601562 C 361.898438 75.898438 366.199219 80.199219 370.5 80.199219 L 448.5 80.199219 C 452.898438 80.199219 457.199219 75.898438 457.199219 71.601562 L 457.199219 37.101562 C 457.199219 32.800781 452.898438 28.5 448.5 28.5 Z M 361.898438 28.5 Z M 457.199219 80.199219 Z M 457.199219 80.199219 "/>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(19.999695%,19.999695%,19.999695%);stroke-opacity:1;stroke-miterlimit:10;" d="M 436.5 184.5 C 432.199219 184.5 427.898438 180.199219 427.898438 175.898438 L 427.898438 141.398438 C 427.898438 137.101562 432.199219 132.800781 436.5 132.800781 L 514.5 132.800781 C 518.898438 132.800781 523.199219 137.101562 523.199219 141.398438 L 523.199219 175.898438 C 523.199219 180.199219 518.898438 184.5 514 [...]
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(19.999695%,19.999695%,19.999695%);stroke-opacity:1;stroke-miterlimit:10;" d="M 427.898438 184.5 Z M 427.898438 184.5 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(19.999695%,19.999695%,19.999695%);stroke-opacity:1;stroke-miterlimit:10;" d="M 523.199219 132.800781 Z M 523.199219 132.800781 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style=" stroke:none;fill-rule:evenodd;fill:rgb(100%,100%,100%);fill-opacity:1;" d="M 371.199219 46.800781 C 369.800781 46.800781 368.300781 48.300781 368.300781 49.699219 L 368.300781 61.601562 C 368.300781 63.101562 369.800781 64.601562 371.199219 64.601562 L 405.5 64.601562 C 407 64.601562 408.5 63.101562 408.5 61.601562 L 408.5 49.699219 C 408.5 48.300781 407 46.800781 405.5 46.800781 Z M 368.300781 46.800781 Z M 408.5 64.601562 Z M 408.5 64.601562 "/>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(19.999695%,19.999695%,19.999695%);stroke-opacity:1;stroke-miterlimit:10;" d="M 437.199219 166.199219 C 435.800781 166.199219 434.300781 164.699219 434.300781 163.300781 L 434.300781 151.398438 C 434.300781 149.898438 435.800781 148.398438 437.199219 148.398438 L 471.5 148.398438 C 473 148.398438 474.5 149.898438 474.5 151.398438 L 474.5 163.300781 C 474.5 164.699219 473 166.199219 471.5 166.19 [...]
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(19.999695%,19.999695%,19.999695%);stroke-opacity:1;stroke-miterlimit:10;" d="M 434.300781 166.199219 Z M 434.300781 166.199219 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(19.999695%,19.999695%,19.999695%);stroke-opacity:1;stroke-miterlimit:10;" d="M 474.5 148.398438 Z M 474.5 148.398438 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style=" stroke:none;fill-rule:evenodd;fill:rgb(100%,100%,100%);fill-opacity:1;" d="M 376.199219 51.5 C 374.800781 51.5 373.300781 53 373.300781 54.398438 L 373.300781 66.300781 C 373.300781 67.800781 374.800781 69.300781 376.199219 69.300781 L 410.5 69.300781 C 411.898438 69.300781 413.5 67.800781 413.5 66.300781 L 413.5 54.398438 C 413.5 53 411.898438 51.5 410.5 51.5 Z M 373.300781 51.5 Z M 413.5 69.300781 Z M 413.5 69.300781 "/>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(19.999695%,19.999695%,19.999695%);stroke-opacity:1;stroke-miterlimit:10;" d="M 442.199219 161.5 C 440.800781 161.5 439.300781 160 439.300781 158.601562 L 439.300781 146.699219 C 439.300781 145.199219 440.800781 143.699219 442.199219 143.699219 L 476.5 143.699219 C 477.898438 143.699219 479.5 145.199219 479.5 146.699219 L 479.5 158.601562 C 479.5 160 477.898438 161.5 476.5 161.5 Z M 442.199219  [...]
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(19.999695%,19.999695%,19.999695%);stroke-opacity:1;stroke-miterlimit:10;" d="M 439.300781 161.5 Z M 439.300781 161.5 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(19.999695%,19.999695%,19.999695%);stroke-opacity:1;stroke-miterlimit:10;" d="M 479.5 143.699219 Z M 479.5 143.699219 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style=" stroke:none;fill-rule:evenodd;fill:rgb(100%,100%,100%);fill-opacity:1;" d="M 381.101562 56.101562 C 379.601562 56.101562 378.101562 57.601562 378.101562 59.101562 L 378.101562 71 C 378.101562 72.5 379.601562 74 381.101562 74 L 415.398438 74 C 416.898438 74 418.398438 72.5 418.398438 71 L 418.398438 59.101562 C 418.398438 57.601562 416.898438 56.101562 415.398438 56.101562 Z M 378.101562 56.101562 Z M 418.398438 74 Z M 418.398438 74 "/>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(19.999695%,19.999695%,19.999695%);stroke-opacity:1;stroke-miterlimit:10;" d="M 447.101562 156.898438 C 445.601562 156.898438 444.101562 155.398438 444.101562 153.898438 L 444.101562 142 C 444.101562 140.5 445.601562 139 447.101562 139 L 481.398438 139 C 482.898438 139 484.398438 140.5 484.398438 142 L 484.398438 153.898438 C 484.398438 155.398438 482.898438 156.898438 481.398438 156.898438 Z M [...]
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(19.999695%,19.999695%,19.999695%);stroke-opacity:1;stroke-miterlimit:10;" d="M 444.101562 156.898438 Z M 444.101562 156.898438 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(19.999695%,19.999695%,19.999695%);stroke-opacity:1;stroke-miterlimit:10;" d="M 484.398438 139 Z M 484.398438 139 " transform="matrix(1,0,0,-1,-66,213)"/>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph0-1" x="383.7" y="69.9"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph0-2" x="390.798" y="69.9"/>
+  <use xlink:href="#glyph0-3" x="398.582" y="69.9"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph0-4" x="405.666" y="69.9"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph0-5" x="370.6" y="44.3"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph0-6" x="379.98" y="44.3"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph0-7" x="387.064" y="44.3"/>
+  <use xlink:href="#glyph0-8" x="394.848" y="44.3"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph0-9" x="401.932" y="44.3"/>
+  <use xlink:href="#glyph0-10" x="409.716" y="44.3"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph0-11" x="413.608" y="44.3"/>
+  <use xlink:href="#glyph0-12" x="421.392" y="44.3"/>
+</g>
+<path style=" stroke:none;fill-rule:evenodd;fill:rgb(25.097656%,47.44873%,15.293884%);fill-opacity:1;" d="M 107.398438 157.5 C 107.398438 155.601562 113.300781 153.699219 119.300781 153.699219 C 125.199219 153.699219 131.101562 155.601562 131.101562 157.5 L 131.101562 173.699219 C 131.101562 175.601562 125.199219 177.5 119.300781 177.5 C 113.300781 177.5 107.398438 175.601562 107.398438 173.699219 Z M 107.398438 153.699219 Z M 131.101562 177.5 Z M 131.101562 177.5 "/>
+<path style="fill:none;stroke-width:0.12;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 173.398438 55.5 C 173.398438 57.398438 179.300781 59.300781 185.300781 59.300781 C 191.199219 59.300781 197.101562 57.398438 197.101562 55.5 L 197.101562 39.300781 C 197.101562 37.398438 191.199219 35.5 185.300781 35.5 C 179.300781 35.5 173.398438 37.398438 173.398438 39.300781 Z M 173.398438 55.5 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:0.12;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 173.398438 59.300781 Z M 173.398438 59.300781 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:0.12;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 197.101562 35.5 Z M 197.101562 35.5 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style=" stroke:none;fill-rule:evenodd;fill:rgb(25.097656%,47.44873%,15.293884%);fill-opacity:1;" d="M 107.398438 157.5 C 107.398438 159.300781 113.300781 161.199219 119.300781 161.199219 C 125.199219 161.199219 131.101562 159.300781 131.101562 157.5 Z M 107.398438 153.699219 Z M 131.101562 177.5 Z M 131.101562 177.5 "/>
+<path style="fill:none;stroke-width:0.12;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 173.398438 55.5 C 173.398438 53.699219 179.300781 51.800781 185.300781 51.800781 C 191.199219 51.800781 197.101562 53.699219 197.101562 55.5 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:0.12;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 173.398438 59.300781 Z M 173.398438 59.300781 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:0.12;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 197.101562 35.5 Z M 197.101562 35.5 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style=" stroke:none;fill-rule:evenodd;fill:rgb(25.097656%,47.44873%,15.293884%);fill-opacity:1;" d="M 138.601562 157.5 C 138.601562 155.601562 144.5 153.800781 150.5 153.800781 C 156.398438 153.800781 162.300781 155.601562 162.300781 157.5 L 162.300781 173.800781 C 162.300781 175.601562 156.398438 177.5 150.5 177.5 C 144.5 177.5 138.601562 175.601562 138.601562 173.800781 Z M 138.601562 153.800781 Z M 162.300781 177.5 Z M 162.300781 177.5 "/>
+<path style="fill:none;stroke-width:0.12;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 204.601562 55.5 C 204.601562 57.398438 210.5 59.199219 216.5 59.199219 C 222.398438 59.199219 228.300781 57.398438 228.300781 55.5 L 228.300781 39.199219 C 228.300781 37.398438 222.398438 35.5 216.5 35.5 C 210.5 35.5 204.601562 37.398438 204.601562 39.199219 Z M 204.601562 55.5 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:0.12;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 204.601562 59.199219 Z M 204.601562 59.199219 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:0.12;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 228.300781 35.5 Z M 228.300781 35.5 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style=" stroke:none;fill-rule:evenodd;fill:rgb(25.097656%,47.44873%,15.293884%);fill-opacity:1;" d="M 138.601562 157.5 C 138.601562 159.398438 144.5 161.199219 150.5 161.199219 C 156.398438 161.199219 162.300781 159.398438 162.300781 157.5 Z M 138.601562 153.800781 Z M 162.300781 177.5 Z M 162.300781 177.5 "/>
+<path style="fill:none;stroke-width:0.12;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 204.601562 55.5 C 204.601562 53.601562 210.5 51.800781 216.5 51.800781 C 222.398438 51.800781 228.300781 53.601562 228.300781 55.5 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:0.12;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 204.601562 59.199219 Z M 204.601562 59.199219 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:0.12;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 228.300781 35.5 Z M 228.300781 35.5 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style=" stroke:none;fill-rule:evenodd;fill:rgb(25.097656%,47.44873%,15.293884%);fill-opacity:1;" d="M 169.800781 157.5 C 169.800781 155.699219 175.699219 153.800781 181.601562 153.800781 C 187.601562 153.800781 193.5 155.699219 193.5 157.5 L 193.5 173.800781 C 193.5 175.699219 187.601562 177.601562 181.601562 177.601562 C 175.699219 177.601562 169.800781 175.699219 169.800781 173.800781 Z M 169.800781 153.800781 Z M 193.5 177.601562 Z M 193.5 177.601562 "/>
+<path style="fill:none;stroke-width:0.12;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 235.800781 55.5 C 235.800781 57.300781 241.699219 59.199219 247.601562 59.199219 C 253.601562 59.199219 259.5 57.300781 259.5 55.5 L 259.5 39.199219 C 259.5 37.300781 253.601562 35.398438 247.601562 35.398438 C 241.699219 35.398438 235.800781 37.300781 235.800781 39.199219 Z M 235.800781 55.5 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:0.12;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 235.800781 59.199219 Z M 235.800781 59.199219 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:0.12;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 259.5 35.398438 Z M 259.5 35.398438 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style=" stroke:none;fill-rule:evenodd;fill:rgb(25.097656%,47.44873%,15.293884%);fill-opacity:1;" d="M 169.800781 157.5 C 169.800781 159.398438 175.699219 161.300781 181.601562 161.300781 C 187.601562 161.300781 193.5 159.398438 193.5 157.5 Z M 169.800781 153.800781 Z M 193.5 177.601562 Z M 193.5 177.601562 "/>
+<path style="fill:none;stroke-width:0.12;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 235.800781 55.5 C 235.800781 53.601562 241.699219 51.699219 247.601562 51.699219 C 253.601562 51.699219 259.5 53.601562 259.5 55.5 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:0.12;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 235.800781 59.199219 Z M 235.800781 59.199219 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:0.12;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 259.5 35.398438 Z M 259.5 35.398438 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style=" stroke:none;fill-rule:evenodd;fill:rgb(25.097656%,47.44873%,15.293884%);fill-opacity:1;" d="M 362.5 157.601562 C 362.5 155.699219 368.398438 153.800781 374.398438 153.800781 C 380.300781 153.800781 386.300781 155.699219 386.300781 157.601562 L 386.300781 173.800781 C 386.300781 175.699219 380.300781 177.601562 374.398438 177.601562 C 368.398438 177.601562 362.5 175.699219 362.5 173.800781 Z M 362.5 153.800781 Z M 386.300781 177.601562 Z M 386.300781 177.601562 "/>
+<path style="fill:none;stroke-width:0.12;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 428.5 55.398438 C 428.5 57.300781 434.398438 59.199219 440.398438 59.199219 C 446.300781 59.199219 452.300781 57.300781 452.300781 55.398438 L 452.300781 39.199219 C 452.300781 37.300781 446.300781 35.398438 440.398438 35.398438 C 434.398438 35.398438 428.5 37.300781 428.5 39.199219 Z M 428.5 55.398438 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:0.12;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 428.5 59.199219 Z M 428.5 59.199219 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:0.12;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 452.300781 35.398438 Z M 452.300781 35.398438 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style=" stroke:none;fill-rule:evenodd;fill:rgb(25.097656%,47.44873%,15.293884%);fill-opacity:1;" d="M 362.5 157.601562 C 362.5 159.398438 368.398438 161.300781 374.398438 161.300781 C 380.300781 161.300781 386.300781 159.398438 386.300781 157.601562 Z M 362.5 153.800781 Z M 386.300781 177.601562 Z M 386.300781 177.601562 "/>
+<path style="fill:none;stroke-width:0.12;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 428.5 55.398438 C 428.5 53.601562 434.398438 51.699219 440.398438 51.699219 C 446.300781 51.699219 452.300781 53.601562 452.300781 55.398438 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:0.12;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 428.5 59.199219 Z M 428.5 59.199219 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:0.12;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 452.300781 35.398438 Z M 452.300781 35.398438 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style=" stroke:none;fill-rule:evenodd;fill:rgb(25.097656%,47.44873%,15.293884%);fill-opacity:1;" d="M 393.699219 157.601562 C 393.699219 155.699219 399.601562 153.800781 405.601562 153.800781 C 411.5 153.800781 417.398438 155.699219 417.398438 157.601562 L 417.398438 173.898438 C 417.398438 175.699219 411.5 177.601562 405.601562 177.601562 C 399.601562 177.601562 393.699219 175.699219 393.699219 173.898438 Z M 393.699219 153.800781 Z M 417.398438 177.601562 Z M 417.398438 177.601562 "/>
+<path style="fill:none;stroke-width:0.12;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 459.699219 55.398438 C 459.699219 57.300781 465.601562 59.199219 471.601562 59.199219 C 477.5 59.199219 483.398438 57.300781 483.398438 55.398438 L 483.398438 39.101562 C 483.398438 37.300781 477.5 35.398438 471.601562 35.398438 C 465.601562 35.398438 459.699219 37.300781 459.699219 39.101562 Z M 459.699219 55.398438 " transform="matrix(1,0, [...]
+<path style="fill:none;stroke-width:0.12;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 459.699219 59.199219 Z M 459.699219 59.199219 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:0.12;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 483.398438 35.398438 Z M 483.398438 35.398438 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style=" stroke:none;fill-rule:evenodd;fill:rgb(25.097656%,47.44873%,15.293884%);fill-opacity:1;" d="M 393.699219 157.601562 C 393.699219 159.5 399.601562 161.300781 405.601562 161.300781 C 411.5 161.300781 417.398438 159.5 417.398438 157.601562 Z M 393.699219 153.800781 Z M 417.398438 177.601562 Z M 417.398438 177.601562 "/>
+<path style="fill:none;stroke-width:0.12;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 459.699219 55.398438 C 459.699219 53.5 465.601562 51.699219 471.601562 51.699219 C 477.5 51.699219 483.398438 53.5 483.398438 55.398438 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:0.12;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 459.699219 59.199219 Z M 459.699219 59.199219 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:0.12;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 483.398438 35.398438 Z M 483.398438 35.398438 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style=" stroke:none;fill-rule:evenodd;fill:rgb(79.998779%,79.998779%,79.998779%);fill-opacity:1;" d="M 107.898438 122.699219 L 131.699219 122.699219 L 131.699219 146.5 L 107.898438 146.5 Z M 107.898438 122.699219 Z M 131.699219 146.5 Z M 131.699219 146.5 "/>
+<path style="fill:none;stroke-width:0.12;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 173.898438 90.300781 L 197.699219 90.300781 L 197.699219 66.5 L 173.898438 66.5 Z M 173.898438 90.300781 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:0.12;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 173.898438 90.300781 Z M 173.898438 90.300781 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:0.12;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 197.699219 66.5 Z M 197.699219 66.5 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style=" stroke:none;fill-rule:evenodd;fill:rgb(79.998779%,79.998779%,79.998779%);fill-opacity:1;" d="M 112.5 122.699219 L 112.5 146.5 Z M 107.898438 122.699219 Z M 131.699219 146.5 Z M 131.699219 146.5 "/>
+<path style="fill:none;stroke-width:0.12;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 178.5 90.300781 L 178.5 66.5 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:0.12;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 173.898438 90.300781 Z M 173.898438 90.300781 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:0.12;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 197.699219 66.5 Z M 197.699219 66.5 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style=" stroke:none;fill-rule:evenodd;fill:rgb(79.998779%,79.998779%,79.998779%);fill-opacity:1;" d="M 107.898438 127.398438 L 131.699219 127.398438 Z M 107.898438 122.699219 Z M 131.699219 146.5 Z M 131.699219 146.5 "/>
+<path style="fill:none;stroke-width:0.12;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 173.898438 85.601562 L 197.699219 85.601562 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:0.12;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 173.898438 90.300781 Z M 173.898438 90.300781 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:0.12;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 197.699219 66.5 Z M 197.699219 66.5 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style=" stroke:none;fill-rule:evenodd;fill:rgb(79.998779%,79.998779%,79.998779%);fill-opacity:1;" d="M 139.101562 122.800781 L 162.898438 122.800781 L 162.898438 146.601562 L 139.101562 146.601562 Z M 139.101562 122.800781 Z M 162.898438 146.601562 Z M 162.898438 146.601562 "/>
+<path style="fill:none;stroke-width:0.12;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 205.101562 90.199219 L 228.898438 90.199219 L 228.898438 66.398438 L 205.101562 66.398438 Z M 205.101562 90.199219 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:0.12;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 205.101562 90.199219 Z M 205.101562 90.199219 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:0.12;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 228.898438 66.398438 Z M 228.898438 66.398438 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style=" stroke:none;fill-rule:evenodd;fill:rgb(79.998779%,79.998779%,79.998779%);fill-opacity:1;" d="M 143.699219 122.800781 L 143.699219 146.601562 Z M 139.101562 122.800781 Z M 162.898438 146.601562 Z M 162.898438 146.601562 "/>
+<path style="fill:none;stroke-width:0.12;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 209.699219 90.199219 L 209.699219 66.398438 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:0.12;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 205.101562 90.199219 Z M 205.101562 90.199219 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:0.12;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 228.898438 66.398438 Z M 228.898438 66.398438 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style=" stroke:none;fill-rule:evenodd;fill:rgb(79.998779%,79.998779%,79.998779%);fill-opacity:1;" d="M 139.101562 127.398438 L 162.898438 127.398438 Z M 139.101562 122.800781 Z M 162.898438 146.601562 Z M 162.898438 146.601562 "/>
+<path style="fill:none;stroke-width:0.12;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 205.101562 85.601562 L 228.898438 85.601562 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:0.12;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 205.101562 90.199219 Z M 205.101562 90.199219 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:0.12;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 228.898438 66.398438 Z M 228.898438 66.398438 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style=" stroke:none;fill-rule:evenodd;fill:rgb(79.998779%,79.998779%,79.998779%);fill-opacity:1;" d="M 170.300781 122.800781 L 194.101562 122.800781 L 194.101562 146.601562 L 170.300781 146.601562 Z M 170.300781 122.800781 Z M 194.101562 146.601562 Z M 194.101562 146.601562 "/>
+<path style="fill:none;stroke-width:0.12;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 236.300781 90.199219 L 260.101562 90.199219 L 260.101562 66.398438 L 236.300781 66.398438 Z M 236.300781 90.199219 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:0.12;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 236.300781 90.199219 Z M 236.300781 90.199219 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:0.12;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 260.101562 66.398438 Z M 260.101562 66.398438 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style=" stroke:none;fill-rule:evenodd;fill:rgb(79.998779%,79.998779%,79.998779%);fill-opacity:1;" d="M 174.898438 122.800781 L 174.898438 146.601562 Z M 170.300781 122.800781 Z M 194.101562 146.601562 Z M 194.101562 146.601562 "/>
+<path style="fill:none;stroke-width:0.12;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 240.898438 90.199219 L 240.898438 66.398438 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:0.12;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 236.300781 90.199219 Z M 236.300781 90.199219 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:0.12;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 260.101562 66.398438 Z M 260.101562 66.398438 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style=" stroke:none;fill-rule:evenodd;fill:rgb(79.998779%,79.998779%,79.998779%);fill-opacity:1;" d="M 170.300781 127.5 L 194.101562 127.5 Z M 170.300781 122.800781 Z M 194.101562 146.601562 Z M 194.101562 146.601562 "/>
+<path style="fill:none;stroke-width:0.12;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 236.300781 85.5 L 260.101562 85.5 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:0.12;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 236.300781 90.199219 Z M 236.300781 90.199219 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:0.12;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 260.101562 66.398438 Z M 260.101562 66.398438 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style=" stroke:none;fill-rule:evenodd;fill:rgb(79.998779%,79.998779%,79.998779%);fill-opacity:1;" d="M 363.101562 122.800781 L 386.898438 122.800781 L 386.898438 146.601562 L 363.101562 146.601562 Z M 363.101562 122.800781 Z M 386.898438 146.601562 Z M 386.898438 146.601562 "/>
+<path style="fill:none;stroke-width:0.12;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 429.101562 90.199219 L 452.898438 90.199219 L 452.898438 66.398438 L 429.101562 66.398438 Z M 429.101562 90.199219 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:0.12;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 429.101562 90.199219 Z M 429.101562 90.199219 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:0.12;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 452.898438 66.398438 Z M 452.898438 66.398438 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style=" stroke:none;fill-rule:evenodd;fill:rgb(79.998779%,79.998779%,79.998779%);fill-opacity:1;" d="M 367.699219 122.800781 L 367.699219 146.601562 Z M 363.101562 122.800781 Z M 386.898438 146.601562 Z M 386.898438 146.601562 "/>
+<path style="fill:none;stroke-width:0.12;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 433.699219 90.199219 L 433.699219 66.398438 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:0.12;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 429.101562 90.199219 Z M 429.101562 90.199219 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:0.12;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 452.898438 66.398438 Z M 452.898438 66.398438 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style=" stroke:none;fill-rule:evenodd;fill:rgb(79.998779%,79.998779%,79.998779%);fill-opacity:1;" d="M 363.101562 127.5 L 386.898438 127.5 Z M 363.101562 122.800781 Z M 386.898438 146.601562 Z M 386.898438 146.601562 "/>
+<path style="fill:none;stroke-width:0.12;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 429.101562 85.5 L 452.898438 85.5 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:0.12;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 429.101562 90.199219 Z M 429.101562 90.199219 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:0.12;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 452.898438 66.398438 Z M 452.898438 66.398438 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style=" stroke:none;fill-rule:evenodd;fill:rgb(79.998779%,79.998779%,79.998779%);fill-opacity:1;" d="M 394.300781 122.898438 L 418.101562 122.898438 L 418.101562 146.601562 L 394.300781 146.601562 Z M 394.300781 122.898438 Z M 418.101562 146.601562 Z M 418.101562 146.601562 "/>
+<path style="fill:none;stroke-width:0.12;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 460.300781 90.101562 L 484.101562 90.101562 L 484.101562 66.398438 L 460.300781 66.398438 Z M 460.300781 90.101562 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:0.12;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 460.300781 90.101562 Z M 460.300781 90.101562 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:0.12;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 484.101562 66.398438 Z M 484.101562 66.398438 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style=" stroke:none;fill-rule:evenodd;fill:rgb(79.998779%,79.998779%,79.998779%);fill-opacity:1;" d="M 398.898438 122.898438 L 398.898438 146.601562 Z M 394.300781 122.898438 Z M 418.101562 146.601562 Z M 418.101562 146.601562 "/>
+<path style="fill:none;stroke-width:0.12;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 464.898438 90.101562 L 464.898438 66.398438 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:0.12;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 460.300781 90.101562 Z M 460.300781 90.101562 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:0.12;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 484.101562 66.398438 Z M 484.101562 66.398438 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style=" stroke:none;fill-rule:evenodd;fill:rgb(79.998779%,79.998779%,79.998779%);fill-opacity:1;" d="M 394.300781 127.5 L 418.101562 127.5 Z M 394.300781 122.898438 Z M 418.101562 146.601562 Z M 418.101562 146.601562 "/>
+<path style="fill:none;stroke-width:0.12;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 460.300781 85.5 L 484.101562 85.5 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:0.12;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 460.300781 90.101562 Z M 460.300781 90.101562 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:0.12;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 484.101562 66.398438 Z M 484.101562 66.398438 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style=" stroke:none;fill-rule:evenodd;fill:rgb(25.097656%,47.44873%,15.293884%);fill-opacity:1;" d="M 200.898438 157.5 C 200.898438 155.601562 206.898438 153.800781 212.800781 153.800781 C 218.699219 153.800781 224.699219 155.601562 224.699219 157.5 L 224.699219 173.800781 C 224.699219 175.601562 218.699219 177.5 212.800781 177.5 C 206.898438 177.5 200.898438 175.601562 200.898438 173.800781 Z M 200.898438 153.800781 Z M 224.699219 177.5 Z M 224.699219 177.5 "/>
+<path style="fill:none;stroke-width:0.12;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 266.898438 55.5 C 266.898438 57.398438 272.898438 59.199219 278.800781 59.199219 C 284.699219 59.199219 290.699219 57.398438 290.699219 55.5 L 290.699219 39.199219 C 290.699219 37.398438 284.699219 35.5 278.800781 35.5 C 272.898438 35.5 266.898438 37.398438 266.898438 39.199219 Z M 266.898438 55.5 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:0.12;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 266.898438 59.199219 Z M 266.898438 59.199219 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:0.12;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 290.699219 35.5 Z M 290.699219 35.5 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style=" stroke:none;fill-rule:evenodd;fill:rgb(25.097656%,47.44873%,15.293884%);fill-opacity:1;" d="M 200.898438 157.5 C 200.898438 159.398438 206.898438 161.199219 212.800781 161.199219 C 218.699219 161.199219 224.699219 159.398438 224.699219 157.5 Z M 200.898438 153.800781 Z M 224.699219 177.5 Z M 224.699219 177.5 "/>
+<path style="fill:none;stroke-width:0.12;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 266.898438 55.5 C 266.898438 53.601562 272.898438 51.800781 278.800781 51.800781 C 284.699219 51.800781 290.699219 53.601562 290.699219 55.5 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:0.12;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 266.898438 59.199219 Z M 266.898438 59.199219 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:0.12;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 290.699219 35.5 Z M 290.699219 35.5 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style=" stroke:none;fill-rule:evenodd;fill:rgb(25.097656%,47.44873%,15.293884%);fill-opacity:1;" d="M 232.101562 157.5 C 232.101562 155.699219 238 153.800781 244 153.800781 C 249.898438 153.800781 255.898438 155.699219 255.898438 157.5 L 255.898438 173.800781 C 255.898438 175.699219 249.898438 177.601562 244 177.601562 C 238 177.601562 232.101562 175.699219 232.101562 173.800781 Z M 232.101562 153.800781 Z M 255.898438 177.601562 Z M 255.898438 177.601562 "/>
+<path style="fill:none;stroke-width:0.12;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 298.101562 55.5 C 298.101562 57.300781 304 59.199219 310 59.199219 C 315.898438 59.199219 321.898438 57.300781 321.898438 55.5 L 321.898438 39.199219 C 321.898438 37.300781 315.898438 35.398438 310 35.398438 C 304 35.398438 298.101562 37.300781 298.101562 39.199219 Z M 298.101562 55.5 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:0.12;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 298.101562 59.199219 Z M 298.101562 59.199219 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:0.12;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 321.898438 35.398438 Z M 321.898438 35.398438 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style=" stroke:none;fill-rule:evenodd;fill:rgb(25.097656%,47.44873%,15.293884%);fill-opacity:1;" d="M 232.101562 157.5 C 232.101562 159.398438 238 161.300781 244 161.300781 C 249.898438 161.300781 255.898438 159.398438 255.898438 157.5 Z M 232.101562 153.800781 Z M 255.898438 177.601562 Z M 255.898438 177.601562 "/>
+<path style="fill:none;stroke-width:0.12;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 298.101562 55.5 C 298.101562 53.601562 304 51.699219 310 51.699219 C 315.898438 51.699219 321.898438 53.601562 321.898438 55.5 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:0.12;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 298.101562 59.199219 Z M 298.101562 59.199219 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:0.12;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 321.898438 35.398438 Z M 321.898438 35.398438 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style=" stroke:none;fill-rule:evenodd;fill:rgb(25.097656%,47.44873%,15.293884%);fill-opacity:1;" d="M 263.300781 157.601562 C 263.300781 155.699219 269.199219 153.800781 275.199219 153.800781 C 281.101562 153.800781 287.101562 155.699219 287.101562 157.601562 L 287.101562 173.800781 C 287.101562 175.699219 281.101562 177.601562 275.199219 177.601562 C 269.199219 177.601562 263.300781 175.699219 263.300781 173.800781 Z M 263.300781 153.800781 Z M 287.101562 177.601562 Z M 287.101562 [...]
+<path style="fill:none;stroke-width:0.12;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 329.300781 55.398438 C 329.300781 57.300781 335.199219 59.199219 341.199219 59.199219 C 347.101562 59.199219 353.101562 57.300781 353.101562 55.398438 L 353.101562 39.199219 C 353.101562 37.300781 347.101562 35.398438 341.199219 35.398438 C 335.199219 35.398438 329.300781 37.300781 329.300781 39.199219 Z M 329.300781 55.398438 " transform="m [...]
+<path style="fill:none;stroke-width:0.12;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 329.300781 59.199219 Z M 329.300781 59.199219 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:0.12;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 353.101562 35.398438 Z M 353.101562 35.398438 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style=" stroke:none;fill-rule:evenodd;fill:rgb(25.097656%,47.44873%,15.293884%);fill-opacity:1;" d="M 263.300781 157.601562 C 263.300781 159.398438 269.199219 161.300781 275.199219 161.300781 C 281.101562 161.300781 287.101562 159.398438 287.101562 157.601562 Z M 263.300781 153.800781 Z M 287.101562 177.601562 Z M 287.101562 177.601562 "/>
+<path style="fill:none;stroke-width:0.12;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 329.300781 55.398438 C 329.300781 53.601562 335.199219 51.699219 341.199219 51.699219 C 347.101562 51.699219 353.101562 53.601562 353.101562 55.398438 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:0.12;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 329.300781 59.199219 Z M 329.300781 59.199219 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:0.12;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 353.101562 35.398438 Z M 353.101562 35.398438 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style=" stroke:none;fill-rule:evenodd;fill:rgb(79.998779%,79.998779%,79.998779%);fill-opacity:1;" d="M 201.398438 122.800781 L 225.199219 122.800781 L 225.199219 146.601562 L 201.398438 146.601562 Z M 201.398438 122.800781 Z M 225.199219 146.601562 Z M 225.199219 146.601562 "/>
+<path style="fill:none;stroke-width:0.12;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 267.398438 90.199219 L 291.199219 90.199219 L 291.199219 66.398438 L 267.398438 66.398438 Z M 267.398438 90.199219 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:0.12;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 267.398438 90.199219 Z M 267.398438 90.199219 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:0.12;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 291.199219 66.398438 Z M 291.199219 66.398438 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style=" stroke:none;fill-rule:evenodd;fill:rgb(79.998779%,79.998779%,79.998779%);fill-opacity:1;" d="M 206.101562 122.800781 L 206.101562 146.601562 Z M 201.398438 122.800781 Z M 225.199219 146.601562 Z M 225.199219 146.601562 "/>
+<path style="fill:none;stroke-width:0.12;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 272.101562 90.199219 L 272.101562 66.398438 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:0.12;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 267.398438 90.199219 Z M 267.398438 90.199219 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:0.12;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 291.199219 66.398438 Z M 291.199219 66.398438 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style=" stroke:none;fill-rule:evenodd;fill:rgb(79.998779%,79.998779%,79.998779%);fill-opacity:1;" d="M 201.398438 127.398438 L 225.199219 127.398438 Z M 201.398438 122.800781 Z M 225.199219 146.601562 Z M 225.199219 146.601562 "/>
+<path style="fill:none;stroke-width:0.12;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 267.398438 85.601562 L 291.199219 85.601562 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:0.12;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 267.398438 90.199219 Z M 267.398438 90.199219 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:0.12;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 291.199219 66.398438 Z M 291.199219 66.398438 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style=" stroke:none;fill-rule:evenodd;fill:rgb(79.998779%,79.998779%,79.998779%);fill-opacity:1;" d="M 232.601562 122.800781 L 256.398438 122.800781 L 256.398438 146.601562 L 232.601562 146.601562 Z M 232.601562 122.800781 Z M 256.398438 146.601562 Z M 256.398438 146.601562 "/>
+<path style="fill:none;stroke-width:0.12;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 298.601562 90.199219 L 322.398438 90.199219 L 322.398438 66.398438 L 298.601562 66.398438 Z M 298.601562 90.199219 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:0.12;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 298.601562 90.199219 Z M 298.601562 90.199219 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:0.12;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 322.398438 66.398438 Z M 322.398438 66.398438 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style=" stroke:none;fill-rule:evenodd;fill:rgb(79.998779%,79.998779%,79.998779%);fill-opacity:1;" d="M 237.300781 122.800781 L 237.300781 146.601562 Z M 232.601562 122.800781 Z M 256.398438 146.601562 Z M 256.398438 146.601562 "/>
+<path style="fill:none;stroke-width:0.12;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 303.300781 90.199219 L 303.300781 66.398438 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:0.12;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 298.601562 90.199219 Z M 298.601562 90.199219 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:0.12;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 322.398438 66.398438 Z M 322.398438 66.398438 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style=" stroke:none;fill-rule:evenodd;fill:rgb(79.998779%,79.998779%,79.998779%);fill-opacity:1;" d="M 232.601562 127.5 L 256.398438 127.5 Z M 232.601562 122.800781 Z M 256.398438 146.601562 Z M 256.398438 146.601562 "/>
+<path style="fill:none;stroke-width:0.12;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 298.601562 85.5 L 322.398438 85.5 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:0.12;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 298.601562 90.199219 Z M 298.601562 90.199219 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:0.12;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 322.398438 66.398438 Z M 322.398438 66.398438 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style=" stroke:none;fill-rule:evenodd;fill:rgb(79.998779%,79.998779%,79.998779%);fill-opacity:1;" d="M 263.800781 122.800781 L 287.601562 122.800781 L 287.601562 146.601562 L 263.800781 146.601562 Z M 263.800781 122.800781 Z M 287.601562 146.601562 Z M 287.601562 146.601562 "/>
+<path style="fill:none;stroke-width:0.12;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 329.800781 90.199219 L 353.601562 90.199219 L 353.601562 66.398438 L 329.800781 66.398438 Z M 329.800781 90.199219 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:0.12;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 329.800781 90.199219 Z M 329.800781 90.199219 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:0.12;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 353.601562 66.398438 Z M 353.601562 66.398438 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style=" stroke:none;fill-rule:evenodd;fill:rgb(79.998779%,79.998779%,79.998779%);fill-opacity:1;" d="M 268.5 122.800781 L 268.5 146.601562 Z M 263.800781 122.800781 Z M 287.601562 146.601562 Z M 287.601562 146.601562 "/>
+<path style="fill:none;stroke-width:0.12;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 334.5 90.199219 L 334.5 66.398438 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:0.12;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 329.800781 90.199219 Z M 329.800781 90.199219 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:0.12;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 353.601562 66.398438 Z M 353.601562 66.398438 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style=" stroke:none;fill-rule:evenodd;fill:rgb(79.998779%,79.998779%,79.998779%);fill-opacity:1;" d="M 263.800781 127.5 L 287.601562 127.5 Z M 263.800781 122.800781 Z M 287.601562 146.601562 Z M 287.601562 146.601562 "/>
+<path style="fill:none;stroke-width:0.12;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 329.800781 85.5 L 353.601562 85.5 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:0.12;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 329.800781 90.199219 Z M 329.800781 90.199219 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:0.12;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 353.601562 66.398438 Z M 353.601562 66.398438 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:2.2923;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(50.195312%,50.195312%,50.195312%);stroke-opacity:1;stroke-miterlimit:10;" d="M 363.300781 78.101562 L 367.800781 78.101562 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:2.2923;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(50.195312%,50.195312%,50.195312%);stroke-opacity:1;stroke-miterlimit:10;" d="M 372.300781 78.101562 L 376.898438 78.101562 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:2.2923;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(50.195312%,50.195312%,50.195312%);stroke-opacity:1;stroke-miterlimit:10;" d="M 381.398438 78.101562 L 385.898438 78.101562 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:2.2923;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(50.195312%,50.195312%,50.195312%);stroke-opacity:1;stroke-miterlimit:10;" d="M 390.398438 78.101562 L 395 78.101562 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:2.2923;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(50.195312%,50.195312%,50.195312%);stroke-opacity:1;stroke-miterlimit:10;" d="M 399.5 78.101562 L 404 78.101562 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:2.2923;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(50.195312%,50.195312%,50.195312%);stroke-opacity:1;stroke-miterlimit:10;" d="M 408.5 78.101562 L 413 78.101562 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:2.2923;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(50.195312%,50.195312%,50.195312%);stroke-opacity:1;stroke-miterlimit:10;" d="M 417.601562 78.101562 L 420.898438 78.101562 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:2.2923;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,42.350769%,23.136902%);stroke-opacity:1;stroke-miterlimit:10;" d="M 363.300781 49.300781 L 367.800781 49.300781 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:2.2923;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,42.350769%,23.136902%);stroke-opacity:1;stroke-miterlimit:10;" d="M 372.300781 49.300781 L 376.898438 49.300781 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:2.2923;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,42.350769%,23.136902%);stroke-opacity:1;stroke-miterlimit:10;" d="M 381.398438 49.300781 L 385.898438 49.300781 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:2.2923;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,42.350769%,23.136902%);stroke-opacity:1;stroke-miterlimit:10;" d="M 390.398438 49.300781 L 395 49.300781 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:2.2923;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,42.350769%,23.136902%);stroke-opacity:1;stroke-miterlimit:10;" d="M 399.5 49.300781 L 404 49.300781 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:2.2923;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,42.350769%,23.136902%);stroke-opacity:1;stroke-miterlimit:10;" d="M 408.5 49.300781 L 413 49.300781 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:2.2923;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,42.350769%,23.136902%);stroke-opacity:1;stroke-miterlimit:10;" d="M 417.601562 49.300781 L 420.898438 49.300781 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:2.2923;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 79.199219 111.199219 L 83.699219 111.199219 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:2.2923;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 88.199219 111.199219 L 92.800781 111.199219 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:2.2923;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 97.300781 111.199219 L 101.800781 111.199219 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:2.2923;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 106.300781 111.199219 L 110.898438 111.199219 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:2.2923;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 115.398438 111.199219 L 119.898438 111.199219 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:2.2923;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 124.398438 111.199219 L 128.898438 111.199219 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:2.2923;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 133.5 111.199219 L 138 111.199219 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:2.2923;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 142.5 111.199219 L 147.101562 111.199219 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:2.2923;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 151.601562 111.199219 L 156.101562 111.199219 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:2.2923;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 160.601562 111.199219 L 165.101562 111.199219 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:2.2923;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 169.699219 111.199219 L 174.199219 111.199219 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:2.2923;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 178.699219 111.199219 L 183.199219 111.199219 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:2.2923;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 187.800781 111.199219 L 192.300781 111.199219 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:2.2923;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 196.800781 111.199219 L 201.300781 111.199219 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:2.2923;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 205.898438 111.199219 L 210.398438 111.199219 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:2.2923;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 214.898438 111.199219 L 219.398438 111.199219 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:2.2923;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 223.898438 111.199219 L 228.5 111.199219 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:2.2923;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 233 111.199219 L 237.5 111.199219 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:2.2923;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 242.101562 111.199219 L 246.601562 111.199219 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:2.2923;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 251.101562 111.199219 L 255.601562 111.199219 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:2.2923;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 260.101562 111.199219 L 264.601562 111.199219 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:2.2923;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 269.199219 111.199219 L 273.699219 111.199219 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:2.2923;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 278.199219 111.199219 L 282.800781 111.199219 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:2.2923;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 287.300781 111.199219 L 291.800781 111.199219 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:2.2923;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 296.300781 111.199219 L 300.800781 111.199219 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:2.2923;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 305.300781 111.199219 L 309.898438 111.199219 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:2.2923;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 314.398438 111.199219 L 318.898438 111.199219 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:2.2923;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 323.5 111.199219 L 328 111.199219 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:2.2923;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 332.5 111.199219 L 337 111.199219 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:2.2923;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 341.5 111.199219 L 346.101562 111.199219 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:2.2923;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 350.601562 111.199219 L 355.101562 111.199219 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:2.2923;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 359.601562 111.199219 L 364.199219 111.199219 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:2.2923;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 368.699219 111.199219 L 373.199219 111.199219 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:2.2923;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 377.699219 111.199219 L 382.300781 111.199219 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:2.2923;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 386.800781 111.199219 L 391.300781 111.199219 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:2.2923;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 395.800781 111.199219 L 400.300781 111.199219 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:2.2923;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 404.898438 111.199219 L 409.398438 111.199219 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:2.2923;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 413.898438 111.199219 L 418.5 111.199219 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:2.2923;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 423 111.199219 L 427.5 111.199219 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:2.2923;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 432 111.199219 L 436.5 111.199219 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:2.2923;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 441.101562 111.199219 L 445.601562 111.199219 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:2.2923;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 450.101562 111.199219 L 454.601562 111.199219 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:2.2923;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 459.199219 111.199219 L 463.699219 111.199219 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:2.2923;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 468.199219 111.199219 L 472.699219 111.199219 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:2.2923;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 477.199219 111.199219 L 481.800781 111.199219 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:2.2923;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 486.300781 111.199219 L 490.800781 111.199219 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:2.2923;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 495.300781 111.199219 L 499.898438 111.199219 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:2.2923;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 504.398438 111.199219 L 508.898438 111.199219 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:2.2923;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 513.398438 111.199219 L 517.898438 111.199219 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:2.2923;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 522.5 111.199219 L 527 111.199219 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:2.2923;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 531.5 111.199219 L 536.101562 111.199219 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:2.2923;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 540.601562 111.199219 L 545.101562 111.199219 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:2.2923;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 549.601562 111.199219 L 554.101562 111.199219 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:2.2923;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 558.699219 111.199219 L 563.199219 111.199219 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:2.2923;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 567.699219 111.199219 L 572.199219 111.199219 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:2.2923;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 576.800781 111.199219 L 581.300781 111.199219 " transform="matrix(1,0,0,-1,-66,213)"/>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph0-13" x="472.8" y="124.8"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph0-14" x="482.894" y="124.8"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph0-15" x="492.988" y="124.8"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph0-16" x="504.594" y="124.8"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph0-17" x="513.288" y="124.8"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph0-18" x="472.8" y="140.5"/>
+  <use xlink:href="#glyph0-7" x="480.584" y="140.5"/>
+  <use xlink:href="#glyph0-10" x="488.368" y="140.5"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph0-19" x="492.358" y="140.5"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph0-11" x="502.452" y="140.5"/>
+  <use xlink:href="#glyph0-12" x="510.236" y="140.5"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph0-4" x="514.926" y="140.5"/>
+  <use xlink:href="#glyph0-17" x="521.926" y="140.5"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph0-14" x="471.3" y="164.3"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph0-20" x="481.394" y="164.3"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph0-3" x="484.488" y="164.3"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph0-2" x="491.572" y="164.3"/>
+  <use xlink:href="#glyph0-21" x="499.356" y="164.3"/>
+  <use xlink:href="#glyph0-21" x="507.14" y="164.3"/>
+  <use xlink:href="#glyph0-12" x="514.924" y="164.3"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph0-7" x="519.614" y="164.3"/>
+  <use xlink:href="#glyph0-21" x="527.398" y="164.3"/>
+  <use xlink:href="#glyph0-2" x="535.182" y="164.3"/>
+  <use xlink:href="#glyph0-10" x="542.966" y="164.3"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph0-7" x="546.858" y="164.3"/>
+  <use xlink:href="#glyph0-22" x="554.642" y="164.3"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph1-1" x="471.3" y="180"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph1-2" x="481.394" y="180"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph1-3" x="486.882" y="180"/>
+  <use xlink:href="#glyph1-4" x="494.666" y="180"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph1-5" x="498.656" y="180"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph0-23" x="506.592" y="180"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph0-10" x="515.972" y="180"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph0-11" x="519.864" y="180"/>
+  <use xlink:href="#glyph0-12" x="527.648" y="180"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph0-2" x="532.338" y="180"/>
+  <use xlink:href="#glyph0-21" x="540.122" y="180"/>
+  <use xlink:href="#glyph0-7" x="547.906" y="180"/>
+</g>
+<path style="fill:none;stroke-width:1.4999;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 135.199219 80.898438 L 132.398438 79.898438 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:1.4999;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 129.601562 79 L 126.800781 78 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:1.4999;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 124 77.101562 L 121.199219 76.101562 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:1.4999;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 118.398438 75.101562 L 115.601562 74.199219 " transform="matrix(1,0,0,-1,-66,213)"/>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph0-14" x="-1" y="131.1"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph0-13" x="9.094" y="131.1"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph0-16" x="19.188" y="131.1"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph0-15" x="28.484" y="131.1"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph0-10" x="20.6" y="146.8"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph0-20" x="24.59" y="146.8"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph0-7" x="27.684" y="146.8"/>
+  <use xlink:href="#glyph0-12" x="35.468" y="146.8"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph0-24" x="4.7" y="167.1"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph0-25" x="13.198" y="167.1"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph0-2" x="16.292" y="167.1"/>
+  <use xlink:href="#glyph0-3" x="24.076" y="167.1"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph0-26" x="31.16" y="167.1"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph0-10" x="19.4" y="182.8"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph0-20" x="23.39" y="182.8"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph0-7" x="26.484" y="182.8"/>
+  <use xlink:href="#glyph0-12" x="34.268" y="182.8"/>
+</g>
+<path style="fill:none;stroke-width:1.4999;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 135.199219 44.898438 L 132.398438 43.898438 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:1.4999;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 129.601562 43 L 126.800781 42 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:1.4999;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 124 41.101562 L 121.199219 40.101562 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:1.4999;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 118.398438 39.101562 L 115.601562 38.199219 " transform="matrix(1,0,0,-1,-66,213)"/>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph0-3" x="471.3" y="74.8"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph0-26" x="478.384" y="74.8"/>
+  <use xlink:href="#glyph0-9" x="486.168" y="74.8"/>
+  <use xlink:href="#glyph0-27" x="493.952" y="74.8"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph0-27" x="497.55" y="74.8"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph0-25" x="501.442" y="74.8"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph0-7" x="504.536" y="74.8"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph0-19" x="471.3" y="90.6"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph0-12" x="481.394" y="90.6"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph0-20" x="486" y="90.6"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph0-10" x="489.192" y="90.6"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph0-7" x="493.084" y="90.6"/>
+  <use xlink:href="#glyph0-28" x="500.868" y="90.6"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph0-12" x="504.858" y="90.6"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph0-7" x="509.464" y="90.6"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph0-2" x="517.346" y="90.6"/>
+  <use xlink:href="#glyph0-22" x="525.13" y="90.6"/>
+</g>
+<path style="fill-rule:evenodd;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:0.12;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 227.5 104.699219 L 214.398438 104.699219 L 214.398438 119.101562 L 240.601562 119.101562 L 240.601562 104.699219 Z M 227.5 104.699219 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill-rule:evenodd;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:0.12;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 346.101562 104.699219 L 332.300781 104.699219 L 332.300781 119.101562 L 359.800781 119.101562 L 359.800781 104.699219 Z M 346.101562 104.699219 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill-rule:evenodd;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:0.12;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 506.300781 104.699219 L 493.398438 104.699219 L 493.398438 119.101562 L 519.101562 119.101562 L 519.101562 104.699219 Z M 506.300781 104.699219 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style=" stroke:none;fill-rule:evenodd;fill:rgb(79.998779%,79.998779%,79.998779%);fill-opacity:1;" d="M 155.300781 90.5 L 155.300781 89.699219 L 155.199219 88.800781 L 155.101562 88 L 155 87.199219 L 154.898438 86.300781 L 154.800781 85.5 L 154.601562 84.699219 L 154.398438 83.898438 L 154.101562 83.199219 L 153.898438 82.398438 L 153.601562 81.699219 L 153.300781 81 L 152.898438 80.300781 L 152.601562 79.601562 L 152.199219 79 L 151.800781 78.398438 L 151.398438 77.800781 L 150.898 [...]
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(19.999695%,19.999695%,19.999695%);stroke-opacity:1;stroke-miterlimit:10;" d="M 221.300781 122.5 L 221.300781 123.300781 L 221.199219 124.199219 L 221.101562 125 L 221 125.800781 L 220.898438 126.699219 L 220.800781 127.5 L 220.601562 128.300781 L 220.398438 129.101562 L 220.101562 129.800781 L 219.898438 130.601562 L 219.601562 131.300781 L 219.300781 132 L 218.898438 132.699219 L 218.601562 1 [...]
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(19.999695%,19.999695%,19.999695%);stroke-opacity:1;stroke-miterlimit:10;" d="M 188.699219 155.101562 Z M 188.699219 155.101562 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(19.999695%,19.999695%,19.999695%);stroke-opacity:1;stroke-miterlimit:10;" d="M 231.898438 89.699219 Z M 231.898438 89.699219 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style=" stroke:none;fill-rule:evenodd;fill:rgb(79.998779%,79.998779%,79.998779%);fill-opacity:1;" d="M 274.199219 90.5 L 274.199219 88.800781 L 274.101562 88 L 274 87.199219 L 273.800781 86.300781 L 273.699219 85.5 L 273.300781 83.898438 L 273.101562 83.199219 L 272.800781 82.398438 L 271.898438 80.300781 L 271.5 79.601562 L 271.199219 79 L 270.800781 78.398438 L 270.300781 77.800781 L 269.898438 77.300781 L 269.398438 76.800781 L 269 76.300781 L 268.5 75.898438 L 268 75.5 L 267.5  [...]
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(19.999695%,19.999695%,19.999695%);stroke-opacity:1;stroke-miterlimit:10;" d="M 340.199219 122.5 L 340.199219 124.199219 L 340.101562 125 L 340 125.800781 L 339.800781 126.699219 L 339.699219 127.5 L 339.300781 129.101562 L 339.101562 129.800781 L 338.800781 130.601562 L 337.898438 132.699219 L 337.5 133.398438 L 337.199219 134 L 336.800781 134.601562 L 336.300781 135.199219 L 335.898438 135.69 [...]
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(19.999695%,19.999695%,19.999695%);stroke-opacity:1;stroke-miterlimit:10;" d="M 307.601562 155.101562 Z M 307.601562 155.101562 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(19.999695%,19.999695%,19.999695%);stroke-opacity:1;stroke-miterlimit:10;" d="M 350.800781 89.699219 Z M 350.800781 89.699219 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style=" stroke:none;fill-rule:evenodd;fill:rgb(79.998779%,79.998779%,79.998779%);fill-opacity:1;" d="M 435.699219 90.5 L 435.699219 89.699219 L 435.601562 88.800781 L 435.398438 87.199219 L 435.300781 86.300781 L 435.199219 85.5 L 434.800781 83.898438 L 434.5 83.199219 L 434.300781 82.398438 L 433.398438 80.300781 L 433 79.601562 L 432.601562 79 L 432.199219 78.398438 L 431.800781 77.800781 L 431.300781 77.300781 L 430.898438 76.800781 L 430.398438 76.300781 L 429.898438 75.898438  [...]
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(19.999695%,19.999695%,19.999695%);stroke-opacity:1;stroke-miterlimit:10;" d="M 501.699219 122.5 L 501.699219 123.300781 L 501.601562 124.199219 L 501.398438 125.800781 L 501.300781 126.699219 L 501.199219 127.5 L 500.800781 129.101562 L 500.5 129.800781 L 500.300781 130.601562 L 499.398438 132.699219 L 499 133.398438 L 498.601562 134 L 498.199219 134.601562 L 497.800781 135.199219 L 497.300781 [...]
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(19.999695%,19.999695%,19.999695%);stroke-opacity:1;stroke-miterlimit:10;" d="M 469.101562 155.101562 Z M 469.101562 155.101562 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:0.9905;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(19.999695%,19.999695%,19.999695%);stroke-opacity:1;stroke-miterlimit:10;" d="M 512.300781 89.699219 Z M 512.300781 89.699219 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style=" stroke:none;fill-rule:evenodd;fill:rgb(79.998779%,79.998779%,79.998779%);fill-opacity:1;" d="M 425.5 122.898438 L 449.300781 122.898438 L 449.300781 146.699219 L 425.5 146.699219 Z M 425.5 122.898438 Z M 449.300781 146.699219 Z M 449.300781 146.699219 "/>
+<path style="fill:none;stroke-width:0.12;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 491.5 90.101562 L 515.300781 90.101562 L 515.300781 66.300781 L 491.5 66.300781 Z M 491.5 90.101562 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:0.12;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 491.5 90.101562 Z M 491.5 90.101562 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:0.12;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 515.300781 66.300781 Z M 515.300781 66.300781 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style=" stroke:none;fill-rule:evenodd;fill:rgb(79.998779%,79.998779%,79.998779%);fill-opacity:1;" d="M 430.101562 122.898438 L 430.101562 146.699219 Z M 425.5 122.898438 Z M 449.300781 146.699219 Z M 449.300781 146.699219 "/>
+<path style="fill:none;stroke-width:0.12;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 496.101562 90.101562 L 496.101562 66.300781 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:0.12;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 491.5 90.101562 Z M 491.5 90.101562 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:0.12;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 515.300781 66.300781 Z M 515.300781 66.300781 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style=" stroke:none;fill-rule:evenodd;fill:rgb(79.998779%,79.998779%,79.998779%);fill-opacity:1;" d="M 425.5 127.5 L 449.300781 127.5 Z M 425.5 122.898438 Z M 449.300781 146.699219 Z M 449.300781 146.699219 "/>
+<path style="fill:none;stroke-width:0.12;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 491.5 85.5 L 515.300781 85.5 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:0.12;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 491.5 90.101562 Z M 491.5 90.101562 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:0.12;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 515.300781 66.300781 Z M 515.300781 66.300781 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style=" stroke:none;fill-rule:evenodd;fill:rgb(25.097656%,47.44873%,15.293884%);fill-opacity:1;" d="M 424.898438 157.601562 C 424.898438 155.699219 430.800781 153.898438 436.800781 153.898438 C 442.699219 153.898438 448.601562 155.699219 448.601562 157.601562 L 448.601562 173.898438 C 448.601562 175.800781 442.699219 177.699219 436.800781 177.699219 C 430.800781 177.699219 424.898438 175.800781 424.898438 173.898438 Z M 424.898438 153.898438 Z M 448.601562 177.699219 Z M 448.601562 [...]
+<path style="fill:none;stroke-width:0.12;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 490.898438 55.398438 C 490.898438 57.300781 496.800781 59.101562 502.800781 59.101562 C 508.699219 59.101562 514.601562 57.300781 514.601562 55.398438 L 514.601562 39.101562 C 514.601562 37.199219 508.699219 35.300781 502.800781 35.300781 C 496.800781 35.300781 490.898438 37.199219 490.898438 39.101562 Z M 490.898438 55.398438 " transform="m [...]
+<path style="fill:none;stroke-width:0.12;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 490.898438 59.101562 Z M 490.898438 59.101562 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:0.12;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 514.601562 35.300781 Z M 514.601562 35.300781 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style=" stroke:none;fill-rule:evenodd;fill:rgb(25.097656%,47.44873%,15.293884%);fill-opacity:1;" d="M 424.898438 157.601562 C 424.898438 159.5 430.800781 161.398438 436.800781 161.398438 C 442.699219 161.398438 448.601562 159.5 448.601562 157.601562 Z M 424.898438 153.898438 Z M 448.601562 177.699219 Z M 448.601562 177.699219 "/>
+<path style="fill:none;stroke-width:0.12;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 490.898438 55.398438 C 490.898438 53.5 496.800781 51.601562 502.800781 51.601562 C 508.699219 51.601562 514.601562 53.5 514.601562 55.398438 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:0.12;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 490.898438 59.101562 Z M 490.898438 59.101562 " transform="matrix(1,0,0,-1,-66,213)"/>
+<path style="fill:none;stroke-width:0.12;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 514.601562 35.300781 Z M 514.601562 35.300781 " transform="matrix(1,0,0,-1,-66,213)"/>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph0-17" x="78.2" y="11.1"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph0-17" x="82.19" y="11.1"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph0-17" x="86.082" y="11.1"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph0-17" x="90.072" y="11.1"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph0-29" x="94.1" y="11.1"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph0-11" x="106.994" y="11.1"/>
+  <use xlink:href="#glyph0-12" x="114.778" y="11.1"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph0-4" x="119.468" y="11.1"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph0-7" x="126.552" y="11.1"/>
+  <use xlink:href="#glyph0-12" x="134.336" y="11.1"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph0-17" x="197.3" y="11.1"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph0-17" x="201.29" y="11.1"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph0-17" x="205.182" y="11.1"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph0-17" x="209.172" y="11.1"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph0-29" x="213.1" y="11.1"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph0-11" x="226.106" y="11.1"/>
+  <use xlink:href="#glyph0-12" x="233.89" y="11.1"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph0-4" x="238.58" y="11.1"/>
+  <use xlink:href="#glyph0-7" x="245.58" y="11.1"/>
+  <use xlink:href="#glyph0-12" x="253.364" y="11.1"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph0-17" x="358.9" y="11.1"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph0-17" x="362.792" y="11.1"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph0-17" x="366.782" y="11.1"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph0-17" x="370.674" y="11.1"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph0-29" x="374.7" y="11.1"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph0-11" x="387.706" y="11.1"/>
+  <use xlink:href="#glyph0-12" x="395.49" y="11.1"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph0-4" x="400.096" y="11.1"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph0-7" x="407.18" y="11.1"/>
+  <use xlink:href="#glyph0-12" x="414.964" y="11.1"/>
+</g>
+</g>
+</defs>
+<g id="surface1">
+<use xlink:href="#surface5"/>
+</g>
+</svg>
diff --git a/site/img/blog/disaggregation/sql.svg b/site/img/blog/disaggregation/sql.svg
new file mode 100644
index 0000000..864bcb6
--- /dev/null
+++ b/site/img/blog/disaggregation/sql.svg
@@ -0,0 +1,437 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="247pt" height="145pt" viewBox="0 0 247 145" version="1.1">
+<defs>
+<g>
+<symbol overflow="visible" id="glyph0-0">
+<path style="stroke:none;" d="M 0.46875 1.65625 L 0.46875 -6.578125 L 5.125 -6.578125 L 5.125 1.65625 Z M 0.984375 1.125 L 4.609375 1.125 L 4.609375 -6.046875 L 0.984375 -6.046875 Z M 0.984375 1.125 "/>
+</symbol>
+<symbol overflow="visible" id="glyph0-1">
+<path style="stroke:none;" d=""/>
+</symbol>
+<symbol overflow="visible" id="glyph0-2">
+<path style="stroke:none;" d="M 2.96875 -6.1875 C 2.488281 -6.1875 2.128906 -5.953125 1.890625 -5.484375 C 1.660156 -5.023438 1.546875 -4.328125 1.546875 -3.390625 C 1.546875 -2.460938 1.660156 -1.765625 1.890625 -1.296875 C 2.128906 -0.828125 2.488281 -0.59375 2.96875 -0.59375 C 3.445312 -0.59375 3.800781 -0.828125 4.03125 -1.296875 C 4.269531 -1.765625 4.390625 -2.460938 4.390625 -3.390625 C 4.390625 -4.328125 4.269531 -5.023438 4.03125 -5.484375 C 3.800781 -5.953125 3.445312 -6.1875 2 [...]
+</symbol>
+<symbol overflow="visible" id="glyph0-3">
+<path style="stroke:none;" d="M 1 -6.796875 L 4.625 -6.796875 L 4.625 -6.03125 L 1.84375 -6.03125 L 1.84375 -4.359375 C 1.976562 -4.398438 2.113281 -4.429688 2.25 -4.453125 C 2.382812 -4.484375 2.519531 -4.5 2.65625 -4.5 C 3.414062 -4.5 4.015625 -4.289062 4.453125 -3.875 C 4.898438 -3.457031 5.125 -2.894531 5.125 -2.1875 C 5.125 -1.445312 4.894531 -0.875 4.4375 -0.46875 C 3.976562 -0.0703125 3.335938 0.125 2.515625 0.125 C 2.222656 0.125 1.925781 0.0976562 1.625 0.046875 C 1.332031 0.003 [...]
+</symbol>
+<symbol overflow="visible" id="glyph0-4">
+<path style="stroke:none;" d="M 1.15625 -0.78125 L 2.65625 -0.78125 L 2.65625 -5.96875 L 1.03125 -5.640625 L 1.03125 -6.46875 L 2.65625 -6.796875 L 3.578125 -6.796875 L 3.578125 -0.78125 L 5.078125 -0.78125 L 5.078125 0 L 1.15625 0 Z M 1.15625 -0.78125 "/>
+</symbol>
+<symbol overflow="visible" id="glyph0-5">
+<path style="stroke:none;" d="M 1.796875 -0.78125 L 5 -0.78125 L 5 0 L 0.6875 0 L 0.6875 -0.78125 C 1.03125 -1.132812 1.503906 -1.613281 2.109375 -2.21875 C 2.710938 -2.832031 3.09375 -3.226562 3.25 -3.40625 C 3.539062 -3.738281 3.742188 -4.019531 3.859375 -4.25 C 3.984375 -4.476562 4.046875 -4.703125 4.046875 -4.921875 C 4.046875 -5.285156 3.914062 -5.582031 3.65625 -5.8125 C 3.40625 -6.039062 3.078125 -6.15625 2.671875 -6.15625 C 2.378906 -6.15625 2.070312 -6.101562 1.75 -6 C 1.4375 -5 [...]
+</symbol>
+<symbol overflow="visible" id="glyph0-6">
+<path style="stroke:none;" d="M 2.671875 0 L 0.078125 -6.796875 L 1.03125 -6.796875 L 3.1875 -1.078125 L 5.34375 -6.796875 L 6.296875 -6.796875 L 3.71875 0 Z M 2.671875 0 "/>
+</symbol>
+<symbol overflow="visible" id="glyph0-7">
+<path style="stroke:none;" d="M 3.203125 -2.5625 C 2.523438 -2.5625 2.050781 -2.484375 1.78125 -2.328125 C 1.519531 -2.171875 1.390625 -1.910156 1.390625 -1.546875 C 1.390625 -1.242188 1.488281 -1.003906 1.6875 -0.828125 C 1.882812 -0.648438 2.148438 -0.5625 2.484375 -0.5625 C 2.953125 -0.5625 3.328125 -0.726562 3.609375 -1.0625 C 3.890625 -1.394531 4.03125 -1.832031 4.03125 -2.375 L 4.03125 -2.5625 Z M 4.875 -2.90625 L 4.875 0 L 4.03125 0 L 4.03125 -0.78125 C 3.84375 -0.46875 3.601562 - [...]
+</symbol>
+<symbol overflow="visible" id="glyph0-8">
+<path style="stroke:none;" d="M 5.125 -3.078125 L 5.125 0 L 4.28125 0 L 4.28125 -3.046875 C 4.28125 -3.535156 4.1875 -3.898438 4 -4.140625 C 3.8125 -4.378906 3.53125 -4.5 3.15625 -4.5 C 2.695312 -4.5 2.335938 -4.351562 2.078125 -4.0625 C 1.816406 -3.769531 1.6875 -3.378906 1.6875 -2.890625 L 1.6875 0 L 0.84375 0 L 0.84375 -5.09375 L 1.6875 -5.09375 L 1.6875 -4.3125 C 1.882812 -4.613281 2.117188 -4.835938 2.390625 -4.984375 C 2.671875 -5.140625 2.988281 -5.21875 3.34375 -5.21875 C 3.92578 [...]
+</symbol>
+<symbol overflow="visible" id="glyph0-9">
+<path style="stroke:none;" d="M 0.875 -5.09375 L 1.71875 -5.09375 L 1.71875 0 L 0.875 0 Z M 0.875 -7.09375 L 1.71875 -7.09375 L 1.71875 -6.03125 L 0.875 -6.03125 Z M 0.875 -7.09375 "/>
+</symbol>
+<symbol overflow="visible" id="glyph0-10">
+<path style="stroke:none;" d="M 0.875 -7.09375 L 1.71875 -7.09375 L 1.71875 0 L 0.875 0 Z M 0.875 -7.09375 "/>
+</symbol>
+<symbol overflow="visible" id="glyph0-11">
+<path style="stroke:none;" d="M 2.375 -6.796875 L 3.140625 -6.796875 L 0.78125 0.859375 L 0 0.859375 Z M 2.375 -6.796875 "/>
+</symbol>
+<symbol overflow="visible" id="glyph0-12">
+<path style="stroke:none;" d="M 4.984375 -6.578125 L 4.984375 -5.6875 C 4.640625 -5.851562 4.3125 -5.972656 4 -6.046875 C 3.6875 -6.128906 3.390625 -6.171875 3.109375 -6.171875 C 2.609375 -6.171875 2.222656 -6.070312 1.953125 -5.875 C 1.679688 -5.6875 1.546875 -5.414062 1.546875 -5.0625 C 1.546875 -4.757812 1.632812 -4.53125 1.8125 -4.375 C 1.988281 -4.21875 2.332031 -4.09375 2.84375 -4 L 3.390625 -3.890625 C 4.078125 -3.753906 4.582031 -3.519531 4.90625 -3.1875 C 5.238281 -2.863281 5.40 [...]
+</symbol>
+<symbol overflow="visible" id="glyph0-13">
+<path style="stroke:none;" d="M 1.6875 -0.765625 L 1.6875 1.9375 L 0.84375 1.9375 L 0.84375 -5.09375 L 1.6875 -5.09375 L 1.6875 -4.328125 C 1.863281 -4.628906 2.085938 -4.851562 2.359375 -5 C 2.628906 -5.144531 2.953125 -5.21875 3.328125 -5.21875 C 3.941406 -5.21875 4.441406 -4.972656 4.828125 -4.484375 C 5.210938 -3.992188 5.40625 -3.347656 5.40625 -2.546875 C 5.40625 -1.742188 5.210938 -1.097656 4.828125 -0.609375 C 4.441406 -0.117188 3.941406 0.125 3.328125 0.125 C 2.953125 0.125 2.62 [...]
+</symbol>
+<symbol overflow="visible" id="glyph0-14">
+<path style="stroke:none;" d="M 3.828125 -4.3125 C 3.734375 -4.375 3.628906 -4.414062 3.515625 -4.4375 C 3.410156 -4.46875 3.289062 -4.484375 3.15625 -4.484375 C 2.6875 -4.484375 2.320312 -4.328125 2.0625 -4.015625 C 1.8125 -3.703125 1.6875 -3.257812 1.6875 -2.6875 L 1.6875 0 L 0.84375 0 L 0.84375 -5.09375 L 1.6875 -5.09375 L 1.6875 -4.3125 C 1.863281 -4.613281 2.09375 -4.835938 2.375 -4.984375 C 2.65625 -5.140625 3 -5.21875 3.40625 -5.21875 C 3.46875 -5.21875 3.53125 -5.210938 3.59375 - [...]
+</symbol>
+<symbol overflow="visible" id="glyph0-15">
+<path style="stroke:none;" d="M 0.84375 -7.09375 L 1.6875 -7.09375 L 1.6875 -2.90625 L 4.1875 -5.09375 L 5.265625 -5.09375 L 2.5625 -2.71875 L 5.375 0 L 4.28125 0 L 1.6875 -2.484375 L 1.6875 0 L 0.84375 0 Z M 0.84375 -7.09375 "/>
+</symbol>
+<symbol overflow="visible" id="glyph0-16">
+<path style="stroke:none;" d="M 6 -6.28125 L 6 -5.3125 C 5.695312 -5.59375 5.367188 -5.804688 5.015625 -5.953125 C 4.660156 -6.097656 4.289062 -6.171875 3.90625 -6.171875 C 3.125 -6.171875 2.523438 -5.929688 2.109375 -5.453125 C 1.703125 -4.972656 1.5 -4.285156 1.5 -3.390625 C 1.5 -2.492188 1.703125 -1.804688 2.109375 -1.328125 C 2.523438 -0.859375 3.125 -0.625 3.90625 -0.625 C 4.289062 -0.625 4.660156 -0.691406 5.015625 -0.828125 C 5.367188 -0.972656 5.695312 -1.191406 6 -1.484375 L 6 - [...]
+</symbol>
+<symbol overflow="visible" id="glyph1-0">
+<path style="stroke:none;" d="M 1.5 0.84375 L -4.328125 -4.984375 L -1.03125 -8.28125 L 4.796875 -2.453125 Z M 1.5 0.09375 L 4.0625 -2.46875 L -1.015625 -7.546875 L -3.578125 -4.984375 Z M 1.5 0.09375 "/>
+</symbol>
+<symbol overflow="visible" id="glyph1-1">
+<path style="stroke:none;" d="M -0.25 -6.6875 L 0.296875 -6.140625 C 0.046875 -6.054688 -0.179688 -5.953125 -0.390625 -5.828125 C -0.609375 -5.710938 -0.804688 -5.566406 -0.984375 -5.390625 C -1.367188 -5.003906 -1.546875 -4.582031 -1.515625 -4.125 C -1.492188 -3.675781 -1.257812 -3.226562 -0.8125 -2.78125 C -0.375 -2.34375 0.0703125 -2.109375 0.53125 -2.078125 C 0.988281 -2.046875 1.410156 -2.222656 1.796875 -2.609375 C 1.972656 -2.785156 2.117188 -2.976562 2.234375 -3.1875 C 2.359375 - [...]
+</symbol>
+<symbol overflow="visible" id="glyph1-2">
+<path style="stroke:none;" d="M -1.171875 -5.203125 C -1.484375 -4.890625 -1.609375 -4.515625 -1.546875 -4.078125 C -1.492188 -3.648438 -1.25 -3.21875 -0.8125 -2.78125 C -0.382812 -2.351562 0.0390625 -2.101562 0.46875 -2.03125 C 0.90625 -1.96875 1.285156 -2.097656 1.609375 -2.421875 C 1.929688 -2.742188 2.054688 -3.117188 1.984375 -3.546875 C 1.921875 -3.984375 1.675781 -4.414062 1.25 -4.84375 C 0.820312 -5.269531 0.394531 -5.515625 -0.03125 -5.578125 C -0.46875 -5.648438 -0.847656 -5.52 [...]
+</symbol>
+<symbol overflow="visible" id="glyph1-3">
+<path style="stroke:none;" d="M -1.734375 -2.390625 L 0 -4.125 L 0.515625 -3.609375 L -1.21875 -1.875 Z M -1.734375 -2.390625 "/>
+</symbol>
+<symbol overflow="visible" id="glyph1-4">
+<path style="stroke:none;" d="M -4.390625 -5.640625 L -3.796875 -6.234375 L 1.21875 -1.21875 L 0.625 -0.625 Z M -4.390625 -5.640625 "/>
+</symbol>
+<symbol overflow="visible" id="glyph1-5">
+<path style="stroke:none;" d="M 0.453125 -4.078125 C -0.0234375 -3.597656 -0.300781 -3.207031 -0.375 -2.90625 C -0.457031 -2.613281 -0.367188 -2.335938 -0.109375 -2.078125 C 0.109375 -1.859375 0.347656 -1.753906 0.609375 -1.765625 C 0.878906 -1.785156 1.128906 -1.910156 1.359375 -2.140625 C 1.691406 -2.472656 1.835938 -2.859375 1.796875 -3.296875 C 1.753906 -3.734375 1.546875 -4.140625 1.171875 -4.515625 L 1.03125 -4.65625 Z M 1.390625 -5.515625 L 3.453125 -3.453125 L 2.84375 -2.84375 L  [...]
+</symbol>
+<symbol overflow="visible" id="glyph1-6">
+<path style="stroke:none;" d="M -3.421875 -5.828125 L -2.40625 -4.8125 L -1.171875 -6.046875 L -0.71875 -5.59375 L -1.953125 -4.359375 L 0.015625 -2.390625 C 0.304688 -2.097656 0.535156 -1.953125 0.703125 -1.953125 C 0.867188 -1.953125 1.078125 -2.078125 1.328125 -2.328125 L 1.9375 -2.9375 L 2.4375 -2.4375 L 1.828125 -1.828125 C 1.367188 -1.367188 0.960938 -1.132812 0.609375 -1.125 C 0.265625 -1.125 -0.128906 -1.347656 -0.578125 -1.796875 L -2.546875 -3.765625 L -2.984375 -3.328125 L -3. [...]
+</symbol>
+<symbol overflow="visible" id="glyph1-7">
+<path style="stroke:none;" d="M 1.765625 -5.671875 L 2.0625 -5.375 L -0.671875 -2.640625 C -0.242188 -2.253906 0.179688 -2.0625 0.609375 -2.0625 C 1.046875 -2.070312 1.46875 -2.28125 1.875 -2.6875 C 2.09375 -2.90625 2.28125 -3.148438 2.4375 -3.421875 C 2.59375 -3.691406 2.722656 -3.984375 2.828125 -4.296875 L 3.375 -3.75 C 3.257812 -3.445312 3.113281 -3.160156 2.9375 -2.890625 C 2.757812 -2.617188 2.554688 -2.367188 2.328125 -2.140625 C 1.753906 -1.566406 1.128906 -1.273438 0.453125 -1.2 [...]
+</symbol>
+<symbol overflow="visible" id="glyph1-8">
+<path style="stroke:none;" d="M -0.0625 -6.0625 L -2.015625 -8.015625 L -1.421875 -8.609375 L 3.59375 -3.59375 L 3 -3 L 2.453125 -3.546875 C 2.546875 -3.203125 2.550781 -2.882812 2.46875 -2.59375 C 2.382812 -2.300781 2.203125 -2.015625 1.921875 -1.734375 C 1.492188 -1.304688 0.96875 -1.128906 0.34375 -1.203125 C -0.28125 -1.273438 -0.875 -1.59375 -1.4375 -2.15625 C -2.007812 -2.726562 -2.328125 -3.320312 -2.390625 -3.9375 C -2.460938 -4.5625 -2.285156 -5.085938 -1.859375 -5.515625 C -1.5 [...]
+</symbol>
+<symbol overflow="visible" id="glyph1-9">
+<path style="stroke:none;" d="M 0.265625 -1.359375 L 1.328125 -2.421875 L -2.34375 -6.09375 L -3.25 -4.71875 L -3.84375 -5.3125 L -2.9375 -6.6875 L -2.28125 -7.34375 L 1.984375 -3.078125 L 3.046875 -4.140625 L 3.59375 -3.59375 L 0.8125 -0.8125 Z M 0.265625 -1.359375 "/>
+</symbol>
+<symbol overflow="visible" id="glyph1-10">
+<path style="stroke:none;" d="M -2.28125 -6.46875 C -2.613281 -6.132812 -2.695312 -5.71875 -2.53125 -5.21875 C -2.375 -4.726562 -1.960938 -4.148438 -1.296875 -3.484375 C -0.648438 -2.835938 -0.078125 -2.429688 0.421875 -2.265625 C 0.921875 -2.097656 1.335938 -2.179688 1.671875 -2.515625 C 2.015625 -2.859375 2.101562 -3.28125 1.9375 -3.78125 C 1.769531 -4.28125 1.363281 -4.851562 0.71875 -5.5 C 0.0507812 -6.164062 -0.523438 -6.578125 -1.015625 -6.734375 C -1.515625 -6.898438 -1.9375 -6.81 [...]
+</symbol>
+<symbol overflow="visible" id="glyph1-11">
+<path style="stroke:none;" d=""/>
+</symbol>
+<symbol overflow="visible" id="glyph1-12">
+<path style="stroke:none;" d="M 3.234375 -4.609375 L 1.9375 -5.90625 L 0.875 -4.84375 L 0.34375 -5.375 L 2.0625 -7.09375 L 4.125 -5.03125 C 4.0625 -4.59375 3.921875 -4.175781 3.703125 -3.78125 C 3.484375 -3.382812 3.203125 -3.015625 2.859375 -2.671875 C 2.109375 -1.921875 1.300781 -1.550781 0.4375 -1.5625 C -0.414062 -1.582031 -1.234375 -1.984375 -2.015625 -2.765625 C -2.804688 -3.554688 -3.207031 -4.378906 -3.21875 -5.234375 C -3.238281 -6.097656 -2.875 -6.90625 -2.125 -7.65625 C -1.812 [...]
+</symbol>
+<symbol overflow="visible" id="glyph1-13">
+<path style="stroke:none;" d="M 1.421875 -5.015625 C 0.984375 -5.453125 0.550781 -5.703125 0.125 -5.765625 C -0.300781 -5.828125 -0.671875 -5.703125 -0.984375 -5.390625 C -1.296875 -5.078125 -1.421875 -4.707031 -1.359375 -4.28125 C -1.296875 -3.851562 -1.046875 -3.421875 -0.609375 -2.984375 C -0.179688 -2.554688 0.25 -2.304688 0.6875 -2.234375 C 1.125 -2.160156 1.5 -2.28125 1.8125 -2.59375 C 2.125 -2.90625 2.242188 -3.28125 2.171875 -3.71875 C 2.097656 -4.15625 1.847656 -4.585938 1.42187 [...]
+</symbol>
+<symbol overflow="visible" id="glyph1-14">
+<path style="stroke:none;" d="M -3.140625 -6.484375 L -2.59375 -7.03125 L 1.15625 0.0625 L 0.609375 0.609375 Z M -3.140625 -6.484375 "/>
+</symbol>
+<symbol overflow="visible" id="glyph1-15">
+<path style="stroke:none;" d="M -0.578125 -6.421875 L -0.015625 -5.859375 C -0.273438 -5.785156 -0.515625 -5.675781 -0.734375 -5.53125 C -0.953125 -5.382812 -1.160156 -5.210938 -1.359375 -5.015625 C -1.640625 -4.734375 -1.804688 -4.472656 -1.859375 -4.234375 C -1.921875 -4.003906 -1.863281 -3.800781 -1.6875 -3.625 C -1.550781 -3.488281 -1.394531 -3.429688 -1.21875 -3.453125 C -1.039062 -3.472656 -0.753906 -3.609375 -0.359375 -3.859375 L -0.109375 -4.015625 C 0.390625 -4.347656 0.8125 -4. [...]
+</symbol>
+<symbol overflow="visible" id="glyph1-16">
+<path style="stroke:none;" d="M -4.828125 -4.796875 L -0.765625 -8.859375 L -0.21875 -8.3125 L -1.921875 -6.609375 L 2.34375 -2.34375 L 1.6875 -1.6875 L -2.578125 -5.953125 L -4.28125 -4.25 Z M -4.828125 -4.796875 "/>
+</symbol>
+<symbol overflow="visible" id="glyph1-17">
+<path style="stroke:none;" d="M -0.1875 -8.6875 L 0.5 -8 C 0.0703125 -7.988281 -0.3125 -7.90625 -0.65625 -7.75 C -1.007812 -7.601562 -1.320312 -7.394531 -1.59375 -7.125 C -2.144531 -6.570312 -2.394531 -5.976562 -2.34375 -5.34375 C -2.300781 -4.71875 -1.960938 -4.085938 -1.328125 -3.453125 C -0.703125 -2.828125 -0.078125 -2.488281 0.546875 -2.4375 C 1.179688 -2.394531 1.773438 -2.648438 2.328125 -3.203125 C 2.597656 -3.472656 2.804688 -3.78125 2.953125 -4.125 C 3.109375 -4.476562 3.191406 [...]
+</symbol>
+<symbol overflow="visible" id="glyph1-18">
+<path style="stroke:none;" d="M -2.984375 -5.578125 L -1.171875 -3.765625 L -0.34375 -4.59375 C -0.0390625 -4.894531 0.113281 -5.207031 0.125 -5.53125 C 0.132812 -5.851562 -0.00390625 -6.160156 -0.296875 -6.453125 C -0.578125 -6.734375 -0.878906 -6.867188 -1.203125 -6.859375 C -1.535156 -6.859375 -1.851562 -6.707031 -2.15625 -6.40625 Z M -4.15625 -5.46875 L -2.6875 -6.9375 C -2.15625 -7.46875 -1.628906 -7.75 -1.109375 -7.78125 C -0.585938 -7.8125 -0.09375 -7.59375 0.375 -7.125 C 0.851562 [...]
+</symbol>
+<symbol overflow="visible" id="glyph1-19">
+<path style="stroke:none;" d="M -2.984375 -4.234375 L -2.390625 -4.828125 L 1.21875 -1.21875 L 0.625 -0.625 Z M -4.390625 -5.640625 L -3.796875 -6.234375 L -3.046875 -5.484375 L -3.640625 -4.890625 Z M -4.390625 -5.640625 "/>
+</symbol>
+<symbol overflow="visible" id="glyph1-20">
+<path style="stroke:none;" d="M 1.15625 -4.84375 C 0.726562 -5.269531 0.3125 -5.507812 -0.09375 -5.5625 C -0.507812 -5.625 -0.878906 -5.492188 -1.203125 -5.171875 C -1.523438 -4.847656 -1.65625 -4.476562 -1.59375 -4.0625 C -1.539062 -3.65625 -1.300781 -3.238281 -0.875 -2.8125 C -0.445312 -2.382812 -0.03125 -2.140625 0.375 -2.078125 C 0.789062 -2.023438 1.160156 -2.160156 1.484375 -2.484375 C 1.804688 -2.804688 1.9375 -3.171875 1.875 -3.578125 C 1.820312 -3.992188 1.582031 -4.414062 1.156 [...]
+</symbol>
+<symbol overflow="visible" id="glyph1-21">
+<path style="stroke:none;" d="M -0.34375 -5.75 C -0.445312 -5.726562 -0.546875 -5.6875 -0.640625 -5.625 C -0.742188 -5.570312 -0.84375 -5.5 -0.9375 -5.40625 C -1.269531 -5.070312 -1.414062 -4.703125 -1.375 -4.296875 C -1.34375 -3.898438 -1.125 -3.5 -0.71875 -3.09375 L 1.1875 -1.1875 L 0.59375 -0.59375 L -3.015625 -4.203125 L -2.421875 -4.796875 L -1.859375 -4.234375 C -1.953125 -4.578125 -1.945312 -4.898438 -1.84375 -5.203125 C -1.75 -5.515625 -1.5625 -5.8125 -1.28125 -6.09375 C -1.23828 [...]
+</symbol>
+<symbol overflow="visible" id="glyph1-22">
+<path style="stroke:none;" d="M 0.671875 -5.171875 C 0.859375 -5.273438 1.09375 -5.3125 1.375 -5.28125 C 1.664062 -5.257812 2.015625 -5.179688 2.421875 -5.046875 L 4.390625 -4.390625 L 3.6875 -3.6875 L 1.84375 -4.3125 C 1.363281 -4.476562 0.992188 -4.535156 0.734375 -4.484375 C 0.484375 -4.441406 0.234375 -4.296875 -0.015625 -4.046875 L -0.734375 -3.328125 L 1.296875 -1.296875 L 0.65625 -0.65625 L -4.15625 -5.46875 L -2.6875 -6.9375 C -2.144531 -7.476562 -1.625 -7.769531 -1.125 -7.8125 C [...]
+</symbol>
+<symbol overflow="visible" id="glyph1-23">
+<path style="stroke:none;" d="M -2.984375 -5.578125 L 0.765625 -1.828125 L 1.5625 -2.625 C 2.21875 -3.28125 2.546875 -3.910156 2.546875 -4.515625 C 2.554688 -5.128906 2.238281 -5.757812 1.59375 -6.40625 C 0.945312 -7.050781 0.320312 -7.367188 -0.28125 -7.359375 C -0.894531 -7.359375 -1.53125 -7.03125 -2.1875 -6.375 Z M -4.15625 -5.46875 L -2.828125 -6.796875 C -1.898438 -7.722656 -1.019531 -8.207031 -0.1875 -8.25 C 0.632812 -8.300781 1.457031 -7.914062 2.28125 -7.09375 C 3.101562 -6.2695 [...]
+</symbol>
+<symbol overflow="visible" id="glyph1-24">
+<path style="stroke:none;" d="M -4.15625 -5.46875 L -3.203125 -6.421875 L 1.3125 -4.375 L -0.734375 -8.890625 L 0.234375 -9.859375 L 5.046875 -5.046875 L 4.40625 -4.40625 L 0.1875 -8.625 L 2.25 -4.09375 L 1.59375 -3.4375 L -2.9375 -5.5 L 1.28125 -1.28125 L 0.65625 -0.65625 Z M -4.15625 -5.46875 "/>
+</symbol>
+<symbol overflow="visible" id="glyph1-25">
+<path style="stroke:none;" d="M -1.921875 -6.421875 L -0.40625 -3.15625 L 1.359375 -4.921875 Z M -2.921875 -6.703125 L -2.1875 -7.4375 L 4.453125 -4.453125 L 3.78125 -3.78125 L 2.109375 -4.578125 L -0.0625 -2.40625 L 0.734375 -0.734375 L 0.0625 -0.0625 Z M -2.921875 -6.703125 "/>
+</symbol>
+<symbol overflow="visible" id="glyph2-0">
+<path style="stroke:none;" d="M 1.65625 -0.46875 L -6.578125 -0.46875 L -6.578125 -5.125 L 1.65625 -5.125 Z M 1.125 -0.984375 L 1.125 -4.609375 L -6.046875 -4.609375 L -6.046875 -0.984375 Z M 1.125 -0.984375 "/>
+</symbol>
+<symbol overflow="visible" id="glyph2-1">
+<path style="stroke:none;" d="M -3.1875 -4.140625 C -3.125 -4.335938 -2.984375 -4.53125 -2.765625 -4.71875 C -2.546875 -4.90625 -2.242188 -5.09375 -1.859375 -5.28125 L 0 -6.21875 L 0 -5.21875 L -1.75 -4.359375 C -2.195312 -4.128906 -2.492188 -3.910156 -2.640625 -3.703125 C -2.796875 -3.492188 -2.875 -3.207031 -2.875 -2.84375 L -2.875 -1.828125 L 0 -1.828125 L 0 -0.921875 L -6.796875 -0.921875 L -6.796875 -3 C -6.796875 -3.769531 -6.632812 -4.347656 -6.3125 -4.734375 C -5.988281 -5.117188 [...]
+</symbol>
+<symbol overflow="visible" id="glyph2-2">
+<path style="stroke:none;" d="M -2.015625 -0.796875 L -5.09375 -0.796875 L -5.09375 -1.625 L -2.046875 -1.625 C -1.566406 -1.625 -1.203125 -1.71875 -0.953125 -1.90625 C -0.710938 -2.101562 -0.59375 -2.390625 -0.59375 -2.765625 C -0.59375 -3.210938 -0.738281 -3.566406 -1.03125 -3.828125 C -1.320312 -4.097656 -1.710938 -4.234375 -2.203125 -4.234375 L -5.09375 -4.234375 L -5.09375 -5.0625 L 0 -5.0625 L 0 -4.234375 L -0.78125 -4.234375 C -0.46875 -4.023438 -0.238281 -3.785156 -0.09375 -3.515 [...]
+</symbol>
+<symbol overflow="visible" id="glyph2-3">
+<path style="stroke:none;" d="M -3.078125 -5.125 L 0 -5.125 L 0 -4.28125 L -3.046875 -4.28125 C -3.535156 -4.28125 -3.898438 -4.1875 -4.140625 -4 C -4.378906 -3.8125 -4.5 -3.53125 -4.5 -3.15625 C -4.5 -2.695312 -4.351562 -2.335938 -4.0625 -2.078125 C -3.769531 -1.816406 -3.378906 -1.6875 -2.890625 -1.6875 L 0 -1.6875 L 0 -0.84375 L -5.09375 -0.84375 L -5.09375 -1.6875 L -4.3125 -1.6875 C -4.613281 -1.882812 -4.835938 -2.117188 -4.984375 -2.390625 C -5.140625 -2.671875 -5.21875 -2.988281  [...]
+</symbol>
+<symbol overflow="visible" id="glyph2-4">
+<path style="stroke:none;" d="M -6.546875 -1.703125 L -5.09375 -1.703125 L -5.09375 -3.4375 L -4.453125 -3.4375 L -4.453125 -1.703125 L -1.6875 -1.703125 C -1.269531 -1.703125 -1 -1.757812 -0.875 -1.875 C -0.757812 -1.988281 -0.703125 -2.222656 -0.703125 -2.578125 L -0.703125 -3.4375 L 0 -3.4375 L 0 -2.578125 C 0 -1.929688 -0.117188 -1.484375 -0.359375 -1.234375 C -0.597656 -0.984375 -1.039062 -0.859375 -1.6875 -0.859375 L -4.453125 -0.859375 L -4.453125 -0.25 L -5.09375 -0.25 L -5.09375 [...]
+</symbol>
+<symbol overflow="visible" id="glyph2-5">
+<path style="stroke:none;" d="M -5.09375 -0.875 L -5.09375 -1.71875 L 0 -1.71875 L 0 -0.875 Z M -7.09375 -0.875 L -7.09375 -1.71875 L -6.03125 -1.71875 L -6.03125 -0.875 Z M -7.09375 -0.875 "/>
+</symbol>
+<symbol overflow="visible" id="glyph2-6">
+<path style="stroke:none;" d="M -4.125 -4.84375 C -4.5 -5.0625 -4.773438 -5.316406 -4.953125 -5.609375 C -5.128906 -5.898438 -5.21875 -6.238281 -5.21875 -6.625 C -5.21875 -7.15625 -5.03125 -7.566406 -4.65625 -7.859375 C -4.289062 -8.148438 -3.765625 -8.296875 -3.078125 -8.296875 L 0 -8.296875 L 0 -7.453125 L -3.046875 -7.453125 C -3.535156 -7.453125 -3.898438 -7.363281 -4.140625 -7.1875 C -4.378906 -7.019531 -4.5 -6.757812 -4.5 -6.40625 C -4.5 -5.96875 -4.351562 -5.617188 -4.0625 -5.3593 [...]
+</symbol>
+<symbol overflow="visible" id="glyph2-7">
+<path style="stroke:none;" d="M -2.765625 -5.25 L -2.34375 -5.25 L -2.34375 -1.390625 C -1.769531 -1.421875 -1.332031 -1.59375 -1.03125 -1.90625 C -0.726562 -2.21875 -0.578125 -2.65625 -0.578125 -3.21875 C -0.578125 -3.53125 -0.613281 -3.835938 -0.6875 -4.140625 C -0.769531 -4.441406 -0.890625 -4.742188 -1.046875 -5.046875 L -0.265625 -5.046875 C -0.128906 -4.742188 -0.03125 -4.429688 0.03125 -4.109375 C 0.09375 -3.796875 0.125 -3.476562 0.125 -3.15625 C 0.125 -2.34375 -0.109375 -1.69531 [...]
+</symbol>
+<symbol overflow="visible" id="glyph2-8">
+<path style="stroke:none;" d=""/>
+</symbol>
+<symbol overflow="visible" id="glyph2-9">
+<path style="stroke:none;" d="M -7.078125 -2.890625 C -6.378906 -2.484375 -5.6875 -2.179688 -5 -1.984375 C -4.320312 -1.785156 -3.628906 -1.6875 -2.921875 -1.6875 C -2.222656 -1.6875 -1.53125 -1.785156 -0.84375 -1.984375 C -0.15625 -2.179688 0.535156 -2.484375 1.234375 -2.890625 L 1.234375 -2.15625 C 0.515625 -1.707031 -0.1875 -1.367188 -0.875 -1.140625 C -1.5625 -0.910156 -2.242188 -0.796875 -2.921875 -0.796875 C -3.597656 -0.796875 -4.28125 -0.90625 -4.96875 -1.125 C -5.65625 -1.351562 [...]
+</symbol>
+<symbol overflow="visible" id="glyph2-10">
+<path style="stroke:none;" d="M -4.953125 -4.125 L -4.15625 -4.125 C -4.28125 -3.894531 -4.367188 -3.648438 -4.421875 -3.390625 C -4.484375 -3.140625 -4.515625 -2.875 -4.515625 -2.59375 C -4.515625 -2.1875 -4.453125 -1.878906 -4.328125 -1.671875 C -4.203125 -1.460938 -4.007812 -1.359375 -3.75 -1.359375 C -3.5625 -1.359375 -3.410156 -1.429688 -3.296875 -1.578125 C -3.191406 -1.722656 -3.085938 -2.019531 -2.984375 -2.46875 L -2.921875 -2.765625 C -2.796875 -3.359375 -2.613281 -3.78125 -2.3 [...]
+</symbol>
+<symbol overflow="visible" id="glyph2-11">
+<path style="stroke:none;" d="M -4.90625 -4.546875 L -4.125 -4.546875 C -4.25 -4.304688 -4.34375 -4.066406 -4.40625 -3.828125 C -4.476562 -3.597656 -4.515625 -3.359375 -4.515625 -3.109375 C -4.515625 -2.566406 -4.34375 -2.144531 -4 -1.84375 C -3.65625 -1.539062 -3.171875 -1.390625 -2.546875 -1.390625 C -1.921875 -1.390625 -1.4375 -1.539062 -1.09375 -1.84375 C -0.75 -2.144531 -0.578125 -2.566406 -0.578125 -3.109375 C -0.578125 -3.359375 -0.609375 -3.597656 -0.671875 -3.828125 C -0.742188  [...]
+</symbol>
+<symbol overflow="visible" id="glyph2-12">
+<path style="stroke:none;" d="M -4.515625 -2.859375 C -4.515625 -2.410156 -4.335938 -2.050781 -3.984375 -1.78125 C -3.640625 -1.519531 -3.160156 -1.390625 -2.546875 -1.390625 C -1.929688 -1.390625 -1.445312 -1.519531 -1.09375 -1.78125 C -0.75 -2.039062 -0.578125 -2.398438 -0.578125 -2.859375 C -0.578125 -3.304688 -0.753906 -3.660156 -1.109375 -3.921875 C -1.460938 -4.179688 -1.941406 -4.3125 -2.546875 -4.3125 C -3.148438 -4.3125 -3.628906 -4.179688 -3.984375 -3.921875 C -4.335938 -3.6601 [...]
+</symbol>
+<symbol overflow="visible" id="glyph2-13">
+<path style="stroke:none;" d="M -4.328125 -4.234375 L -7.09375 -4.234375 L -7.09375 -5.078125 L 0 -5.078125 L 0 -4.234375 L -0.765625 -4.234375 C -0.460938 -4.054688 -0.238281 -3.832031 -0.09375 -3.5625 C 0.0507812 -3.300781 0.125 -2.976562 0.125 -2.59375 C 0.125 -1.976562 -0.117188 -1.476562 -0.609375 -1.09375 C -1.097656 -0.707031 -1.742188 -0.515625 -2.546875 -0.515625 C -3.347656 -0.515625 -3.992188 -0.707031 -4.484375 -1.09375 C -4.972656 -1.476562 -5.21875 -1.976562 -5.21875 -2.593 [...]
+</symbol>
+<symbol overflow="visible" id="glyph2-14">
+<path style="stroke:none;" d="M -7.078125 -0.75 L -7.078125 -1.46875 C -6.359375 -1.925781 -5.65625 -2.269531 -4.96875 -2.5 C -4.28125 -2.726562 -3.597656 -2.84375 -2.921875 -2.84375 C -2.242188 -2.84375 -1.5625 -2.726562 -0.875 -2.5 C -0.1875 -2.269531 0.515625 -1.925781 1.234375 -1.46875 L 1.234375 -0.75 C 0.535156 -1.15625 -0.15625 -1.457031 -0.84375 -1.65625 C -1.53125 -1.851562 -2.222656 -1.953125 -2.921875 -1.953125 C -3.628906 -1.953125 -4.320312 -1.851562 -5 -1.65625 C -5.6875 -1 [...]
+</symbol>
+</g>
+<clipPath id="clip1">
+  <rect x="0" y="0" width="247" height="145"/>
+</clipPath>
+<g id="surface5" clip-path="url(#clip1)">
+<path style="fill:none;stroke-width:0.25;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-dasharray:0.2,2;stroke-miterlimit:3.8;" d="M 44.050781 93 L 251.148438 93 " transform="matrix(1,0,0,1,-5,-8)"/>
+<path style="fill:none;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:3.8;" d="M 44.050781 93 L 48.351562 93 " transform="matrix(1,0,0,1,-5,-8)"/>
+<path style="fill:none;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:3.8;" d="M 251.148438 93 L 246.851562 93 " transform="matrix(1,0,0,1,-5,-8)"/>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph0-1" x="21.228662" y="88.513086"/>
+  <use xlink:href="#glyph0-1" x="24.187226" y="88.513086"/>
+  <use xlink:href="#glyph0-2" x="27.145789" y="88.513086"/>
+</g>
+<path style="fill:none;stroke-width:0.25;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-dasharray:0.2,2;stroke-miterlimit:3.8;" d="M 44.050781 72.601562 L 251.148438 72.601562 " transform="matrix(1,0,0,1,-5,-8)"/>
+<path style="fill:none;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:3.8;" d="M 44.050781 72.601562 L 48.351562 72.601562 " transform="matrix(1,0,0,1,-5,-8)"/>
+<path style="fill:none;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:3.8;" d="M 251.148438 72.601562 L 246.851562 72.601562 " transform="matrix(1,0,0,1,-5,-8)"/>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph0-1" x="21.228662" y="68.113086"/>
+  <use xlink:href="#glyph0-1" x="24.187226" y="68.113086"/>
+  <use xlink:href="#glyph0-3" x="27.145789" y="68.113086"/>
+</g>
+<path style="fill:none;stroke-width:0.25;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-dasharray:0.2,2;stroke-miterlimit:3.8;" d="M 44.050781 52.199219 L 251.148438 52.199219 " transform="matrix(1,0,0,1,-5,-8)"/>
+<path style="fill:none;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:3.8;" d="M 44.050781 52.199219 L 48.351562 52.199219 " transform="matrix(1,0,0,1,-5,-8)"/>
+<path style="fill:none;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:3.8;" d="M 251.148438 52.199219 L 246.851562 52.199219 " transform="matrix(1,0,0,1,-5,-8)"/>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph0-1" x="18.257422" y="47.713086"/>
+  <use xlink:href="#glyph0-4" x="21.215986" y="47.713086"/>
+  <use xlink:href="#glyph0-2" x="27.151779" y="47.713086"/>
+</g>
+<path style="fill:none;stroke-width:0.25;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-dasharray:0.2,2;stroke-miterlimit:3.8;" d="M 44.050781 31.800781 L 127.851562 31.800781 " transform="matrix(1,0,0,1,-5,-8)"/>
+<path style="fill:none;stroke-width:0.25;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-dasharray:0.2,2;stroke-miterlimit:3.8;" d="M 245.199219 31.800781 L 251.148438 31.800781 " transform="matrix(1,0,0,1,-5,-8)"/>
+<path style="fill:none;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:3.8;" d="M 44.050781 31.800781 L 48.351562 31.800781 " transform="matrix(1,0,0,1,-5,-8)"/>
+<path style="fill:none;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:3.8;" d="M 251.148438 31.800781 L 246.851562 31.800781 " transform="matrix(1,0,0,1,-5,-8)"/>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph0-1" x="18.257422" y="27.313086"/>
+  <use xlink:href="#glyph0-4" x="21.215986" y="27.313086"/>
+  <use xlink:href="#glyph0-3" x="27.151779" y="27.313086"/>
+</g>
+<path style="fill:none;stroke-width:0.25;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-dasharray:0.2,2;stroke-miterlimit:3.8;" d="M 44.050781 11.398438 L 251.148438 11.398438 " transform="matrix(1,0,0,1,-5,-8)"/>
+<path style="fill:none;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:3.8;" d="M 44.050781 11.398438 L 48.351562 11.398438 " transform="matrix(1,0,0,1,-5,-8)"/>
+<path style="fill:none;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:3.8;" d="M 251.148438 11.398438 L 246.851562 11.398438 " transform="matrix(1,0,0,1,-5,-8)"/>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph0-1" x="18.257422" y="6.913086"/>
+  <use xlink:href="#glyph0-5" x="21.215986" y="6.913086"/>
+  <use xlink:href="#glyph0-2" x="27.151779" y="6.913086"/>
+</g>
+<path style="fill:none;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:3.8;" d="M 59.601562 93 L 59.601562 88.699219 " transform="matrix(1,0,0,1,-5,-8)"/>
+<path style="fill:none;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:3.8;" d="M 59.601562 11.398438 L 59.601562 15.699219 " transform="matrix(1,0,0,1,-5,-8)"/>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph1-1" x="22.533778" y="127.984476"/>
+  <use xlink:href="#glyph1-2" x="26.156867" y="124.361387"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph1-3" x="30.31451" y="120.203744"/>
+  <use xlink:href="#glyph1-4" x="32.690305" y="117.827949"/>
+  <use xlink:href="#glyph1-2" x="34.518348" y="115.999906"/>
+  <use xlink:href="#glyph1-1" x="38.550602" y="111.967652"/>
+  <use xlink:href="#glyph1-5" x="42.173691" y="108.344563"/>
+  <use xlink:href="#glyph1-6" x="46.212544" y="104.30571"/>
+  <use xlink:href="#glyph1-7" x="48.799521" y="101.718733"/>
+  <use xlink:href="#glyph1-8" x="52.858173" y="97.660081"/>
+</g>
+<path style="fill:none;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:3.8;" d="M 75.101562 93 L 75.101562 88.699219 " transform="matrix(1,0,0,1,-5,-8)"/>
+<path style="fill:none;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:3.8;" d="M 75.101562 11.398438 L 75.101562 15.699219 " transform="matrix(1,0,0,1,-5,-8)"/>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph1-9" x="28.595214" y="137.423039"/>
+  <use xlink:href="#glyph1-10" x="32.792453" y="133.2258"/>
+  <use xlink:href="#glyph1-10" x="36.989693" y="129.02856"/>
+  <use xlink:href="#glyph1-11" x="41.186932" y="124.831321"/>
+  <use xlink:href="#glyph1-12" x="43.278952" y="122.739301"/>
+  <use xlink:href="#glyph1-13" x="48.386914" y="117.631339"/>
+  <use xlink:href="#glyph1-14" x="52.570954" y="113.447299"/>
+  <use xlink:href="#glyph1-15" x="54.788364" y="111.229889"/>
+  <use xlink:href="#glyph1-11" x="58.220069" y="107.798184"/>
+  <use xlink:href="#glyph1-16" x="60.312089" y="105.706164"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph1-17" x="63.948377" y="102.069876"/>
+  <use xlink:href="#glyph1-18" x="68.554781" y="97.463472"/>
+</g>
+<path style="fill:none;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:3.8;" d="M 111.351562 93 L 111.351562 88.699219 " transform="matrix(1,0,0,1,-5,-8)"/>
+<path style="fill:none;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:3.8;" d="M 111.351562 11.398438 L 111.351562 15.699219 " transform="matrix(1,0,0,1,-5,-8)"/>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph1-8" x="61.252435" y="141.015819"/>
+  <use xlink:href="#glyph1-19" x="65.436476" y="136.831778"/>
+  <use xlink:href="#glyph1-15" x="67.264518" y="135.003736"/>
+  <use xlink:href="#glyph1-5" x="70.696224" y="131.57203"/>
+  <use xlink:href="#glyph1-20" x="74.735077" y="127.533177"/>
+  <use xlink:href="#glyph1-20" x="78.919117" y="123.349137"/>
+  <use xlink:href="#glyph1-21" x="83.103158" y="119.165096"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph1-7" x="85.670337" y="116.597917"/>
+  <use xlink:href="#glyph1-20" x="89.728988" y="112.539266"/>
+  <use xlink:href="#glyph1-5" x="93.913029" y="108.355225"/>
+  <use xlink:href="#glyph1-6" x="97.951882" y="104.316372"/>
+  <use xlink:href="#glyph1-7" x="100.53886" y="101.729394"/>
+  <use xlink:href="#glyph1-8" x="104.597511" y="97.670743"/>
+</g>
+<path style="fill:none;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:3.8;" d="M 126.898438 93 L 126.898438 88.699219 " transform="matrix(1,0,0,1,-5,-8)"/>
+<path style="fill:none;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:3.8;" d="M 126.898438 11.398438 L 126.898438 15.699219 " transform="matrix(1,0,0,1,-5,-8)"/>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph1-9" x="84.593972" y="133.224282"/>
+  <use xlink:href="#glyph1-10" x="88.791211" y="129.027043"/>
+  <use xlink:href="#glyph1-11" x="92.988451" y="124.829803"/>
+  <use xlink:href="#glyph1-12" x="95.080471" y="122.737783"/>
+  <use xlink:href="#glyph1-13" x="100.188432" y="117.629822"/>
+  <use xlink:href="#glyph1-14" x="104.372473" y="113.445781"/>
+  <use xlink:href="#glyph1-15" x="106.589882" y="111.228372"/>
+  <use xlink:href="#glyph1-11" x="110.021587" y="107.796667"/>
+  <use xlink:href="#glyph1-16" x="112.113608" y="105.704646"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph1-17" x="115.749895" y="102.068359"/>
+  <use xlink:href="#glyph1-18" x="120.356299" y="97.461955"/>
+</g>
+<path style="fill:none;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:3.8;" d="M 163.148438 93 L 163.148438 88.699219 " transform="matrix(1,0,0,1,-5,-8)"/>
+<path style="fill:none;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:3.8;" d="M 163.148438 11.398438 L 163.148438 15.699219 " transform="matrix(1,0,0,1,-5,-8)"/>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph1-8" x="113.052435" y="141.015819"/>
+  <use xlink:href="#glyph1-19" x="117.236476" y="136.831778"/>
+  <use xlink:href="#glyph1-15" x="119.064518" y="135.003736"/>
+  <use xlink:href="#glyph1-5" x="122.496224" y="131.57203"/>
+  <use xlink:href="#glyph1-20" x="126.535077" y="127.533177"/>
+  <use xlink:href="#glyph1-20" x="130.719117" y="123.349137"/>
+  <use xlink:href="#glyph1-21" x="134.903158" y="119.165096"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph1-7" x="137.470337" y="116.597917"/>
+  <use xlink:href="#glyph1-20" x="141.528988" y="112.539266"/>
+  <use xlink:href="#glyph1-5" x="145.713029" y="108.355225"/>
+  <use xlink:href="#glyph1-6" x="149.751882" y="104.316372"/>
+  <use xlink:href="#glyph1-7" x="152.33886" y="101.729394"/>
+  <use xlink:href="#glyph1-8" x="156.397511" y="97.670743"/>
+</g>
+<path style="fill:none;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:3.8;" d="M 178.648438 93 L 178.648438 88.699219 " transform="matrix(1,0,0,1,-5,-8)"/>
+<path style="fill:none;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:3.8;" d="M 178.648438 11.398438 L 178.648438 15.699219 " transform="matrix(1,0,0,1,-5,-8)"/>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph1-9" x="132.145214" y="137.423039"/>
+  <use xlink:href="#glyph1-10" x="136.342453" y="133.2258"/>
+  <use xlink:href="#glyph1-10" x="140.539693" y="129.02856"/>
+  <use xlink:href="#glyph1-11" x="144.736932" y="124.831321"/>
+  <use xlink:href="#glyph1-12" x="146.828952" y="122.739301"/>
+  <use xlink:href="#glyph1-13" x="151.936914" y="117.631339"/>
+  <use xlink:href="#glyph1-14" x="156.120954" y="113.447299"/>
+  <use xlink:href="#glyph1-15" x="158.338364" y="111.229889"/>
+  <use xlink:href="#glyph1-11" x="161.770069" y="107.798184"/>
+  <use xlink:href="#glyph1-16" x="163.862089" y="105.706164"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph1-17" x="167.498377" y="102.069876"/>
+  <use xlink:href="#glyph1-18" x="172.104781" y="97.463472"/>
+</g>
+<path style="fill:none;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:3.8;" d="M 214.898438 93 L 214.898438 88.699219 " transform="matrix(1,0,0,1,-5,-8)"/>
+<path style="fill:none;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:3.8;" d="M 214.898438 11.398438 L 214.898438 15.699219 " transform="matrix(1,0,0,1,-5,-8)"/>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph1-8" x="164.802435" y="141.015819"/>
+  <use xlink:href="#glyph1-19" x="168.986476" y="136.831778"/>
+  <use xlink:href="#glyph1-15" x="170.814518" y="135.003736"/>
+  <use xlink:href="#glyph1-5" x="174.246224" y="131.57203"/>
+  <use xlink:href="#glyph1-20" x="178.285077" y="127.533177"/>
+  <use xlink:href="#glyph1-20" x="182.469117" y="123.349137"/>
+  <use xlink:href="#glyph1-21" x="186.653158" y="119.165096"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph1-7" x="189.220337" y="116.597917"/>
+  <use xlink:href="#glyph1-20" x="193.278988" y="112.539266"/>
+  <use xlink:href="#glyph1-5" x="197.463029" y="108.355225"/>
+  <use xlink:href="#glyph1-6" x="201.501882" y="104.316372"/>
+  <use xlink:href="#glyph1-7" x="204.08886" y="101.729394"/>
+  <use xlink:href="#glyph1-8" x="208.147511" y="97.670743"/>
+</g>
+<path style="fill:none;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:3.8;" d="M 230.449219 93 L 230.449219 88.699219 " transform="matrix(1,0,0,1,-5,-8)"/>
+<path style="fill:none;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:3.8;" d="M 230.449219 11.398438 L 230.449219 15.699219 " transform="matrix(1,0,0,1,-5,-8)"/>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph1-9" x="176.301936" y="145.066318"/>
+  <use xlink:href="#glyph1-10" x="180.499175" y="140.869079"/>
+  <use xlink:href="#glyph1-10" x="184.696415" y="136.671839"/>
+  <use xlink:href="#glyph1-11" x="188.893654" y="132.4746"/>
+  <use xlink:href="#glyph1-12" x="190.985674" y="130.38258"/>
+  <use xlink:href="#glyph1-13" x="196.093636" y="125.274618"/>
+  <use xlink:href="#glyph1-14" x="200.277676" y="121.090578"/>
+  <use xlink:href="#glyph1-15" x="202.495086" y="118.873168"/>
+  <use xlink:href="#glyph1-11" x="205.926791" y="115.441463"/>
+  <use xlink:href="#glyph1-22" x="208.018811" y="113.349443"/>
+  <use xlink:href="#glyph1-23" x="212.598818" y="108.769436"/>
+  <use xlink:href="#glyph1-24" x="217.680381" y="103.687873"/>
+  <use xlink:href="#glyph1-25" x="223.369092" y="97.999162"/>
+</g>
+<path style="fill:none;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:3.8;" d="M 44.050781 11.398438 L 251.148438 11.398438 L 251.148438 93 L 44.050781 93 Z M 44.050781 11.398438 " transform="matrix(1,0,0,1,-5,-8)"/>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph2-1" x="7.913086" y="87.889355"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph2-2" x="7.913086" y="81.832233"/>
+  <use xlink:href="#glyph2-3" x="7.913086" y="75.924439"/>
+  <use xlink:href="#glyph2-4" x="7.913086" y="70.016645"/>
+  <use xlink:href="#glyph2-5" x="7.913086" y="66.358106"/>
+  <use xlink:href="#glyph2-6" x="7.913086" y="63.772862"/>
+  <use xlink:href="#glyph2-7" x="7.913086" y="54.682513"/>
+  <use xlink:href="#glyph2-8" x="7.913086" y="48.942713"/>
+  <use xlink:href="#glyph2-9" x="7.913086" y="45.984149"/>
+  <use xlink:href="#glyph2-10" x="7.913086" y="42.344276"/>
+  <use xlink:href="#glyph2-7" x="7.913086" y="37.491112"/>
+  <use xlink:href="#glyph2-11" x="7.913086" y="31.751312"/>
+  <use xlink:href="#glyph2-12" x="7.913086" y="26.62749"/>
+  <use xlink:href="#glyph2-3" x="7.913086" y="20.925023"/>
+  <use xlink:href="#glyph2-13" x="7.913086" y="15.017229"/>
+  <use xlink:href="#glyph2-10" x="7.913086" y="9.100101"/>
+  <use xlink:href="#glyph2-14" x="7.913086" y="4.246937"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph0-6" x="139.453125" y="16.663086"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph0-7" x="145.108928" y="16.663086"/>
+  <use xlink:href="#glyph0-8" x="150.820729" y="16.663086"/>
+  <use xlink:href="#glyph0-9" x="156.728523" y="16.663086"/>
+  <use xlink:href="#glyph0-10" x="159.313766" y="16.663086"/>
+  <use xlink:href="#glyph0-10" x="161.899009" y="16.663086"/>
+  <use xlink:href="#glyph0-7" x="164.484252" y="16.663086"/>
+  <use xlink:href="#glyph0-11" x="170.196053" y="16.663086"/>
+  <use xlink:href="#glyph0-12" x="173.331944" y="16.663086"/>
+  <use xlink:href="#glyph0-13" x="179.249071" y="16.663086"/>
+  <use xlink:href="#glyph0-7" x="185.166198" y="16.663086"/>
+  <use xlink:href="#glyph0-14" x="190.877999" y="16.663086"/>
+  <use xlink:href="#glyph0-15" x="194.713865" y="16.663086"/>
+</g>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 206.148438 10.453125 L 234.25 10.453125 L 234.25 15.851562 L 206.148438 15.851562 Z M 206.148438 10.453125 "/>
+<path style="fill:none;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:3.8;" d="M 211.148438 18.449219 L 239.25 18.449219 L 239.25 23.851562 L 211.148438 23.851562 Z M 211.148438 18.449219 " transform="matrix(1,0,0,1,-5,-8)"/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 58.449219 43.351562 L 71.449219 43.351562 L 71.449219 85 L 58.449219 85 Z M 58.449219 43.351562 "/>
+<path style="fill:none;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:3.8;" d="M 63.449219 51.398438 L 76.398438 51.398438 L 76.398438 93 L 63.449219 93 Z M 63.449219 51.398438 " transform="matrix(1,0,0,1,-5,-8)"/>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph0-12" x="148.986963" y="27.513086"/>
+  <use xlink:href="#glyph0-13" x="154.90409" y="27.513086"/>
+  <use xlink:href="#glyph0-7" x="160.821217" y="27.513086"/>
+  <use xlink:href="#glyph0-14" x="166.533018" y="27.513086"/>
+  <use xlink:href="#glyph0-15" x="170.368884" y="27.513086"/>
+  <use xlink:href="#glyph0-11" x="175.772696" y="27.513086"/>
+  <use xlink:href="#glyph0-16" x="178.908587" y="27.513086"/>
+  <use xlink:href="#glyph0-14" x="185.423026" y="27.513086"/>
+  <use xlink:href="#glyph0-7" x="189.258893" y="27.513086"/>
+  <use xlink:href="#glyph0-9" x="194.970693" y="27.513086"/>
+  <use xlink:href="#glyph0-10" x="197.555937" y="27.513086"/>
+</g>
+<path style="fill-rule:nonzero;fill:rgb(100%,0%,0%);fill-opacity:1;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(100%,0%,0%);stroke-opacity:1;stroke-miterlimit:3.8;" d="M 211.148438 29.300781 L 239.25 29.300781 L 239.25 34.699219 L 211.148438 34.699219 Z M 211.148438 29.300781 " transform="matrix(1,0,0,1,-5,-8)"/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(100%,0%,0%);fill-opacity:1;" d="M 110.25 35.601562 L 123.25 35.601562 L 123.25 85 L 110.25 85 Z M 110.25 35.601562 "/>
+<path style="fill:none;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(100%,0%,0%);stroke-opacity:1;stroke-miterlimit:3.8;" d="M 115.25 43.648438 L 128.199219 43.648438 L 128.199219 93 L 115.25 93 Z M 115.25 43.648438 " transform="matrix(1,0,0,1,-5,-8)"/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(100%,0%,0%);fill-opacity:1;" d="M 162 40.898438 L 175 40.898438 L 175 85 L 162 85 Z M 162 40.898438 "/>
+<path style="fill:none;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(100%,0%,0%);stroke-opacity:1;stroke-miterlimit:3.8;" d="M 167 48.949219 L 179.949219 48.949219 L 179.949219 93 L 167 93 Z M 167 48.949219 " transform="matrix(1,0,0,1,-5,-8)"/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(100%,0%,0%);fill-opacity:1;" d="M 213.800781 52.300781 L 226.800781 52.300781 L 226.800781 85 L 213.800781 85 Z M 213.800781 52.300781 "/>
+<path style="fill:none;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(100%,0%,0%);stroke-opacity:1;stroke-miterlimit:3.8;" d="M 218.800781 60.351562 L 231.75 60.351562 L 231.75 93 L 218.800781 93 Z M 218.800781 60.351562 " transform="matrix(1,0,0,1,-5,-8)"/>
+<path style="fill:none;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:3.8;" d="M 44.050781 11.398438 L 251.148438 11.398438 L 251.148438 93 L 44.050781 93 Z M 44.050781 11.398438 " transform="matrix(1,0,0,1,-5,-8)"/>
+</g>
+</defs>
+<g id="surface1">
+<use xlink:href="#surface5"/>
+</g>
+</svg>
diff --git a/site/img/blog/disaggregation/terasort.svg b/site/img/blog/disaggregation/terasort.svg
new file mode 100644
index 0000000..ebc187d
--- /dev/null
+++ b/site/img/blog/disaggregation/terasort.svg
@@ -0,0 +1,422 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="266pt" height="139pt" viewBox="0 0 266 139" version="1.1">
+<defs>
+<g>
+<symbol overflow="visible" id="glyph0-0">
+<path style="stroke:none;" d="M 0.46875 1.65625 L 0.46875 -6.578125 L 5.125 -6.578125 L 5.125 1.65625 Z M 0.984375 1.125 L 4.609375 1.125 L 4.609375 -6.046875 L 0.984375 -6.046875 Z M 0.984375 1.125 "/>
+</symbol>
+<symbol overflow="visible" id="glyph0-1">
+<path style="stroke:none;" d=""/>
+</symbol>
+<symbol overflow="visible" id="glyph0-2">
+<path style="stroke:none;" d="M 2.96875 -6.1875 C 2.488281 -6.1875 2.128906 -5.953125 1.890625 -5.484375 C 1.660156 -5.023438 1.546875 -4.328125 1.546875 -3.390625 C 1.546875 -2.460938 1.660156 -1.765625 1.890625 -1.296875 C 2.128906 -0.828125 2.488281 -0.59375 2.96875 -0.59375 C 3.445312 -0.59375 3.800781 -0.828125 4.03125 -1.296875 C 4.269531 -1.765625 4.390625 -2.460938 4.390625 -3.390625 C 4.390625 -4.328125 4.269531 -5.023438 4.03125 -5.484375 C 3.800781 -5.953125 3.445312 -6.1875 2 [...]
+</symbol>
+<symbol overflow="visible" id="glyph0-3">
+<path style="stroke:none;" d="M 1.796875 -0.78125 L 5 -0.78125 L 5 0 L 0.6875 0 L 0.6875 -0.78125 C 1.03125 -1.132812 1.503906 -1.613281 2.109375 -2.21875 C 2.710938 -2.832031 3.09375 -3.226562 3.25 -3.40625 C 3.539062 -3.738281 3.742188 -4.019531 3.859375 -4.25 C 3.984375 -4.476562 4.046875 -4.703125 4.046875 -4.921875 C 4.046875 -5.285156 3.914062 -5.582031 3.65625 -5.8125 C 3.40625 -6.039062 3.078125 -6.15625 2.671875 -6.15625 C 2.378906 -6.15625 2.070312 -6.101562 1.75 -6 C 1.4375 -5 [...]
+</symbol>
+<symbol overflow="visible" id="glyph0-4">
+<path style="stroke:none;" d="M 3.53125 -6 L 1.203125 -2.375 L 3.53125 -2.375 Z M 3.28125 -6.796875 L 4.4375 -6.796875 L 4.4375 -2.375 L 5.40625 -2.375 L 5.40625 -1.609375 L 4.4375 -1.609375 L 4.4375 0 L 3.53125 0 L 3.53125 -1.609375 L 0.453125 -1.609375 L 0.453125 -2.484375 Z M 3.28125 -6.796875 "/>
+</symbol>
+<symbol overflow="visible" id="glyph0-5">
+<path style="stroke:none;" d="M 3.078125 -3.765625 C 2.660156 -3.765625 2.332031 -3.625 2.09375 -3.34375 C 1.851562 -3.0625 1.734375 -2.675781 1.734375 -2.1875 C 1.734375 -1.695312 1.851562 -1.304688 2.09375 -1.015625 C 2.332031 -0.734375 2.660156 -0.59375 3.078125 -0.59375 C 3.492188 -0.59375 3.820312 -0.734375 4.0625 -1.015625 C 4.300781 -1.304688 4.421875 -1.695312 4.421875 -2.1875 C 4.421875 -2.675781 4.300781 -3.0625 4.0625 -3.34375 C 3.820312 -3.625 3.492188 -3.765625 3.078125 -3.7 [...]
+</symbol>
+<symbol overflow="visible" id="glyph0-6">
+<path style="stroke:none;" d="M 2.96875 -3.234375 C 2.53125 -3.234375 2.1875 -3.113281 1.9375 -2.875 C 1.6875 -2.644531 1.5625 -2.320312 1.5625 -1.90625 C 1.5625 -1.5 1.6875 -1.175781 1.9375 -0.9375 C 2.1875 -0.707031 2.53125 -0.59375 2.96875 -0.59375 C 3.40625 -0.59375 3.75 -0.707031 4 -0.9375 C 4.25 -1.175781 4.375 -1.5 4.375 -1.90625 C 4.375 -2.320312 4.25 -2.644531 4 -2.875 C 3.75 -3.113281 3.40625 -3.234375 2.96875 -3.234375 Z M 2.046875 -3.625 C 1.648438 -3.71875 1.34375 -3.898438  [...]
+</symbol>
+<symbol overflow="visible" id="glyph0-7">
+<path style="stroke:none;" d="M 1.15625 -0.78125 L 2.65625 -0.78125 L 2.65625 -5.96875 L 1.03125 -5.640625 L 1.03125 -6.46875 L 2.65625 -6.796875 L 3.578125 -6.796875 L 3.578125 -0.78125 L 5.078125 -0.78125 L 5.078125 0 L 1.15625 0 Z M 1.15625 -0.78125 "/>
+</symbol>
+<symbol overflow="visible" id="glyph0-8">
+<path style="stroke:none;" d="M 6 -6.28125 L 6 -5.3125 C 5.695312 -5.59375 5.367188 -5.804688 5.015625 -5.953125 C 4.660156 -6.097656 4.289062 -6.171875 3.90625 -6.171875 C 3.125 -6.171875 2.523438 -5.929688 2.109375 -5.453125 C 1.703125 -4.972656 1.5 -4.285156 1.5 -3.390625 C 1.5 -2.492188 1.703125 -1.804688 2.109375 -1.328125 C 2.523438 -0.859375 3.125 -0.625 3.90625 -0.625 C 4.289062 -0.625 4.660156 -0.691406 5.015625 -0.828125 C 5.367188 -0.972656 5.695312 -1.191406 6 -1.484375 L 6 - [...]
+</symbol>
+<symbol overflow="visible" id="glyph0-9">
+<path style="stroke:none;" d="M 3.828125 -4.3125 C 3.734375 -4.375 3.628906 -4.414062 3.515625 -4.4375 C 3.410156 -4.46875 3.289062 -4.484375 3.15625 -4.484375 C 2.6875 -4.484375 2.320312 -4.328125 2.0625 -4.015625 C 1.8125 -3.703125 1.6875 -3.257812 1.6875 -2.6875 L 1.6875 0 L 0.84375 0 L 0.84375 -5.09375 L 1.6875 -5.09375 L 1.6875 -4.3125 C 1.863281 -4.613281 2.09375 -4.835938 2.375 -4.984375 C 2.65625 -5.140625 3 -5.21875 3.40625 -5.21875 C 3.46875 -5.21875 3.53125 -5.210938 3.59375 - [...]
+</symbol>
+<symbol overflow="visible" id="glyph0-10">
+<path style="stroke:none;" d="M 3.203125 -2.5625 C 2.523438 -2.5625 2.050781 -2.484375 1.78125 -2.328125 C 1.519531 -2.171875 1.390625 -1.910156 1.390625 -1.546875 C 1.390625 -1.242188 1.488281 -1.003906 1.6875 -0.828125 C 1.882812 -0.648438 2.148438 -0.5625 2.484375 -0.5625 C 2.953125 -0.5625 3.328125 -0.726562 3.609375 -1.0625 C 3.890625 -1.394531 4.03125 -1.832031 4.03125 -2.375 L 4.03125 -2.5625 Z M 4.875 -2.90625 L 4.875 0 L 4.03125 0 L 4.03125 -0.78125 C 3.84375 -0.46875 3.601562 - [...]
+</symbol>
+<symbol overflow="visible" id="glyph0-11">
+<path style="stroke:none;" d="M 0.875 -5.09375 L 1.71875 -5.09375 L 1.71875 0 L 0.875 0 Z M 0.875 -7.09375 L 1.71875 -7.09375 L 1.71875 -6.03125 L 0.875 -6.03125 Z M 0.875 -7.09375 "/>
+</symbol>
+<symbol overflow="visible" id="glyph0-12">
+<path style="stroke:none;" d="M 0.875 -7.09375 L 1.71875 -7.09375 L 1.71875 0 L 0.875 0 Z M 0.875 -7.09375 "/>
+</symbol>
+<symbol overflow="visible" id="glyph0-13">
+<path style="stroke:none;" d="M 1.828125 -6.046875 L 1.828125 -0.75 L 2.953125 -0.75 C 3.890625 -0.75 4.570312 -0.960938 5 -1.390625 C 5.4375 -1.816406 5.65625 -2.488281 5.65625 -3.40625 C 5.65625 -4.3125 5.4375 -4.976562 5 -5.40625 C 4.570312 -5.832031 3.890625 -6.046875 2.953125 -6.046875 Z M 0.921875 -6.796875 L 2.8125 -6.796875 C 4.125 -6.796875 5.085938 -6.519531 5.703125 -5.96875 C 6.316406 -5.425781 6.625 -4.570312 6.625 -3.40625 C 6.625 -2.238281 6.3125 -1.378906 5.6875 -0.828125 [...]
+</symbol>
+<symbol overflow="visible" id="glyph0-14">
+<path style="stroke:none;" d="M 4.140625 -3.1875 C 4.335938 -3.125 4.53125 -2.984375 4.71875 -2.765625 C 4.90625 -2.546875 5.09375 -2.242188 5.28125 -1.859375 L 6.21875 0 L 5.21875 0 L 4.359375 -1.75 C 4.128906 -2.195312 3.910156 -2.492188 3.703125 -2.640625 C 3.492188 -2.796875 3.207031 -2.875 2.84375 -2.875 L 1.828125 -2.875 L 1.828125 0 L 0.921875 0 L 0.921875 -6.796875 L 3 -6.796875 C 3.769531 -6.796875 4.347656 -6.632812 4.734375 -6.3125 C 5.117188 -5.988281 5.3125 -5.5 5.3125 -4.84 [...]
+</symbol>
+<symbol overflow="visible" id="glyph0-15">
+<path style="stroke:none;" d="M 3.1875 -5.890625 L 1.9375 -2.515625 L 4.4375 -2.515625 Z M 2.671875 -6.796875 L 3.71875 -6.796875 L 6.296875 0 L 5.34375 0 L 4.734375 -1.75 L 1.65625 -1.75 L 1.046875 0 L 0.078125 0 Z M 2.671875 -6.796875 "/>
+</symbol>
+<symbol overflow="visible" id="glyph0-16">
+<path style="stroke:none;" d="M 0.921875 -6.796875 L 2.28125 -6.796875 L 4.015625 -2.171875 L 5.765625 -6.796875 L 7.140625 -6.796875 L 7.140625 0 L 6.234375 0 L 6.234375 -5.96875 L 4.484375 -1.3125 L 3.5625 -1.3125 L 1.8125 -5.96875 L 1.8125 0 L 0.921875 0 Z M 0.921875 -6.796875 "/>
+</symbol>
+<symbol overflow="visible" id="glyph0-17">
+<path style="stroke:none;" d="M 0.921875 -6.796875 L 2.15625 -6.796875 L 5.171875 -1.109375 L 5.171875 -6.796875 L 6.0625 -6.796875 L 6.0625 0 L 4.828125 0 L 1.8125 -5.6875 L 1.8125 0 L 0.921875 0 Z M 0.921875 -6.796875 "/>
+</symbol>
+<symbol overflow="visible" id="glyph0-18">
+<path style="stroke:none;" d="M 2.671875 0 L 0.078125 -6.796875 L 1.03125 -6.796875 L 3.1875 -1.078125 L 5.34375 -6.796875 L 6.296875 -6.796875 L 3.71875 0 Z M 2.671875 0 "/>
+</symbol>
+<symbol overflow="visible" id="glyph0-19">
+<path style="stroke:none;" d="M 5.25 -2.765625 L 5.25 -2.34375 L 1.390625 -2.34375 C 1.421875 -1.769531 1.59375 -1.332031 1.90625 -1.03125 C 2.21875 -0.726562 2.65625 -0.578125 3.21875 -0.578125 C 3.53125 -0.578125 3.835938 -0.613281 4.140625 -0.6875 C 4.441406 -0.769531 4.742188 -0.890625 5.046875 -1.046875 L 5.046875 -0.265625 C 4.742188 -0.128906 4.429688 -0.03125 4.109375 0.03125 C 3.796875 0.09375 3.476562 0.125 3.15625 0.125 C 2.34375 0.125 1.695312 -0.109375 1.21875 -0.578125 C 0. [...]
+</symbol>
+<symbol overflow="visible" id="glyph0-20">
+<path style="stroke:none;" d="M 5.125 -3.078125 L 5.125 0 L 4.28125 0 L 4.28125 -3.046875 C 4.28125 -3.535156 4.1875 -3.898438 4 -4.140625 C 3.8125 -4.378906 3.53125 -4.5 3.15625 -4.5 C 2.695312 -4.5 2.335938 -4.351562 2.078125 -4.0625 C 1.816406 -3.769531 1.6875 -3.378906 1.6875 -2.890625 L 1.6875 0 L 0.84375 0 L 0.84375 -5.09375 L 1.6875 -5.09375 L 1.6875 -4.3125 C 1.882812 -4.613281 2.117188 -4.835938 2.390625 -4.984375 C 2.671875 -5.140625 2.988281 -5.21875 3.34375 -5.21875 C 3.92578 [...]
+</symbol>
+<symbol overflow="visible" id="glyph0-21">
+<path style="stroke:none;" d="M 4.234375 -4.328125 L 4.234375 -7.09375 L 5.078125 -7.09375 L 5.078125 0 L 4.234375 0 L 4.234375 -0.765625 C 4.054688 -0.460938 3.832031 -0.238281 3.5625 -0.09375 C 3.300781 0.0507812 2.976562 0.125 2.59375 0.125 C 1.976562 0.125 1.476562 -0.117188 1.09375 -0.609375 C 0.707031 -1.097656 0.515625 -1.742188 0.515625 -2.546875 C 0.515625 -3.347656 0.707031 -3.992188 1.09375 -4.484375 C 1.476562 -4.972656 1.976562 -5.21875 2.59375 -5.21875 C 2.976562 -5.21875 3 [...]
+</symbol>
+<symbol overflow="visible" id="glyph0-22">
+<path style="stroke:none;" d="M 0.796875 -2.015625 L 0.796875 -5.09375 L 1.625 -5.09375 L 1.625 -2.046875 C 1.625 -1.566406 1.71875 -1.203125 1.90625 -0.953125 C 2.101562 -0.710938 2.390625 -0.59375 2.765625 -0.59375 C 3.210938 -0.59375 3.566406 -0.738281 3.828125 -1.03125 C 4.097656 -1.320312 4.234375 -1.710938 4.234375 -2.203125 L 4.234375 -5.09375 L 5.0625 -5.09375 L 5.0625 0 L 4.234375 0 L 4.234375 -0.78125 C 4.023438 -0.46875 3.785156 -0.238281 3.515625 -0.09375 C 3.242188 0.0507812 [...]
+</symbol>
+<symbol overflow="visible" id="glyph0-23">
+<path style="stroke:none;" d="M 4.546875 -4.90625 L 4.546875 -4.125 C 4.304688 -4.25 4.066406 -4.34375 3.828125 -4.40625 C 3.597656 -4.476562 3.359375 -4.515625 3.109375 -4.515625 C 2.566406 -4.515625 2.144531 -4.34375 1.84375 -4 C 1.539062 -3.65625 1.390625 -3.171875 1.390625 -2.546875 C 1.390625 -1.921875 1.539062 -1.4375 1.84375 -1.09375 C 2.144531 -0.75 2.566406 -0.578125 3.109375 -0.578125 C 3.359375 -0.578125 3.597656 -0.609375 3.828125 -0.671875 C 4.066406 -0.742188 4.304688 -0.84 [...]
+</symbol>
+<symbol overflow="visible" id="glyph0-24">
+<path style="stroke:none;" d="M 1.6875 -0.765625 L 1.6875 1.9375 L 0.84375 1.9375 L 0.84375 -5.09375 L 1.6875 -5.09375 L 1.6875 -4.328125 C 1.863281 -4.628906 2.085938 -4.851562 2.359375 -5 C 2.628906 -5.144531 2.953125 -5.21875 3.328125 -5.21875 C 3.941406 -5.21875 4.441406 -4.972656 4.828125 -4.484375 C 5.210938 -3.992188 5.40625 -3.347656 5.40625 -2.546875 C 5.40625 -1.742188 5.210938 -1.097656 4.828125 -0.609375 C 4.441406 -0.117188 3.941406 0.125 3.328125 0.125 C 2.953125 0.125 2.62 [...]
+</symbol>
+<symbol overflow="visible" id="glyph1-0">
+<path style="stroke:none;" d="M 1.5 0.84375 L -4.328125 -4.984375 L -1.03125 -8.28125 L 4.796875 -2.453125 Z M 1.5 0.09375 L 4.0625 -2.46875 L -1.015625 -7.546875 L -3.578125 -4.984375 Z M 1.5 0.09375 "/>
+</symbol>
+<symbol overflow="visible" id="glyph1-1">
+<path style="stroke:none;" d="M -0.25 -6.6875 L 0.296875 -6.140625 C 0.046875 -6.054688 -0.179688 -5.953125 -0.390625 -5.828125 C -0.609375 -5.710938 -0.804688 -5.566406 -0.984375 -5.390625 C -1.367188 -5.003906 -1.546875 -4.582031 -1.515625 -4.125 C -1.492188 -3.675781 -1.257812 -3.226562 -0.8125 -2.78125 C -0.375 -2.34375 0.0703125 -2.109375 0.53125 -2.078125 C 0.988281 -2.046875 1.410156 -2.222656 1.796875 -2.609375 C 1.972656 -2.785156 2.117188 -2.976562 2.234375 -3.1875 C 2.359375 - [...]
+</symbol>
+<symbol overflow="visible" id="glyph1-2">
+<path style="stroke:none;" d="M -1.171875 -5.203125 C -1.484375 -4.890625 -1.609375 -4.515625 -1.546875 -4.078125 C -1.492188 -3.648438 -1.25 -3.21875 -0.8125 -2.78125 C -0.382812 -2.351562 0.0390625 -2.101562 0.46875 -2.03125 C 0.90625 -1.96875 1.285156 -2.097656 1.609375 -2.421875 C 1.929688 -2.742188 2.054688 -3.117188 1.984375 -3.546875 C 1.921875 -3.984375 1.675781 -4.414062 1.25 -4.84375 C 0.820312 -5.269531 0.394531 -5.515625 -0.03125 -5.578125 C -0.46875 -5.648438 -0.847656 -5.52 [...]
+</symbol>
+<symbol overflow="visible" id="glyph1-3">
+<path style="stroke:none;" d="M -1.734375 -2.390625 L 0 -4.125 L 0.515625 -3.609375 L -1.21875 -1.875 Z M -1.734375 -2.390625 "/>
+</symbol>
+<symbol overflow="visible" id="glyph1-4">
+<path style="stroke:none;" d="M -4.390625 -5.640625 L -3.796875 -6.234375 L 1.21875 -1.21875 L 0.625 -0.625 Z M -4.390625 -5.640625 "/>
+</symbol>
+<symbol overflow="visible" id="glyph1-5">
+<path style="stroke:none;" d="M 0.453125 -4.078125 C -0.0234375 -3.597656 -0.300781 -3.207031 -0.375 -2.90625 C -0.457031 -2.613281 -0.367188 -2.335938 -0.109375 -2.078125 C 0.109375 -1.859375 0.347656 -1.753906 0.609375 -1.765625 C 0.878906 -1.785156 1.128906 -1.910156 1.359375 -2.140625 C 1.691406 -2.472656 1.835938 -2.859375 1.796875 -3.296875 C 1.753906 -3.734375 1.546875 -4.140625 1.171875 -4.515625 L 1.03125 -4.65625 Z M 1.390625 -5.515625 L 3.453125 -3.453125 L 2.84375 -2.84375 L  [...]
+</symbol>
+<symbol overflow="visible" id="glyph1-6">
+<path style="stroke:none;" d="M -3.421875 -5.828125 L -2.40625 -4.8125 L -1.171875 -6.046875 L -0.71875 -5.59375 L -1.953125 -4.359375 L 0.015625 -2.390625 C 0.304688 -2.097656 0.535156 -1.953125 0.703125 -1.953125 C 0.867188 -1.953125 1.078125 -2.078125 1.328125 -2.328125 L 1.9375 -2.9375 L 2.4375 -2.4375 L 1.828125 -1.828125 C 1.367188 -1.367188 0.960938 -1.132812 0.609375 -1.125 C 0.265625 -1.125 -0.128906 -1.347656 -0.578125 -1.796875 L -2.546875 -3.765625 L -2.984375 -3.328125 L -3. [...]
+</symbol>
+<symbol overflow="visible" id="glyph1-7">
+<path style="stroke:none;" d="M 1.765625 -5.671875 L 2.0625 -5.375 L -0.671875 -2.640625 C -0.242188 -2.253906 0.179688 -2.0625 0.609375 -2.0625 C 1.046875 -2.070312 1.46875 -2.28125 1.875 -2.6875 C 2.09375 -2.90625 2.28125 -3.148438 2.4375 -3.421875 C 2.59375 -3.691406 2.722656 -3.984375 2.828125 -4.296875 L 3.375 -3.75 C 3.257812 -3.445312 3.113281 -3.160156 2.9375 -2.890625 C 2.757812 -2.617188 2.554688 -2.367188 2.328125 -2.140625 C 1.753906 -1.566406 1.128906 -1.273438 0.453125 -1.2 [...]
+</symbol>
+<symbol overflow="visible" id="glyph1-8">
+<path style="stroke:none;" d="M -0.0625 -6.0625 L -2.015625 -8.015625 L -1.421875 -8.609375 L 3.59375 -3.59375 L 3 -3 L 2.453125 -3.546875 C 2.546875 -3.203125 2.550781 -2.882812 2.46875 -2.59375 C 2.382812 -2.300781 2.203125 -2.015625 1.921875 -1.734375 C 1.492188 -1.304688 0.96875 -1.128906 0.34375 -1.203125 C -0.28125 -1.273438 -0.875 -1.59375 -1.4375 -2.15625 C -2.007812 -2.726562 -2.328125 -3.320312 -2.390625 -3.9375 C -2.460938 -4.5625 -2.285156 -5.085938 -1.859375 -5.515625 C -1.5 [...]
+</symbol>
+<symbol overflow="visible" id="glyph1-9">
+<path style="stroke:none;" d="M -2.984375 -4.234375 L -2.390625 -4.828125 L 1.21875 -1.21875 L 0.625 -0.625 Z M -4.390625 -5.640625 L -3.796875 -6.234375 L -3.046875 -5.484375 L -3.640625 -4.890625 Z M -4.390625 -5.640625 "/>
+</symbol>
+<symbol overflow="visible" id="glyph1-10">
+<path style="stroke:none;" d="M -0.578125 -6.421875 L -0.015625 -5.859375 C -0.273438 -5.785156 -0.515625 -5.675781 -0.734375 -5.53125 C -0.953125 -5.382812 -1.160156 -5.210938 -1.359375 -5.015625 C -1.640625 -4.734375 -1.804688 -4.472656 -1.859375 -4.234375 C -1.921875 -4.003906 -1.863281 -3.800781 -1.6875 -3.625 C -1.550781 -3.488281 -1.394531 -3.429688 -1.21875 -3.453125 C -1.039062 -3.472656 -0.753906 -3.609375 -0.359375 -3.859375 L -0.109375 -4.015625 C 0.390625 -4.347656 0.8125 -4. [...]
+</symbol>
+<symbol overflow="visible" id="glyph1-11">
+<path style="stroke:none;" d="M 1.15625 -4.84375 C 0.726562 -5.269531 0.3125 -5.507812 -0.09375 -5.5625 C -0.507812 -5.625 -0.878906 -5.492188 -1.203125 -5.171875 C -1.523438 -4.847656 -1.65625 -4.476562 -1.59375 -4.0625 C -1.539062 -3.65625 -1.300781 -3.238281 -0.875 -2.8125 C -0.445312 -2.382812 -0.03125 -2.140625 0.375 -2.078125 C 0.789062 -2.023438 1.160156 -2.160156 1.484375 -2.484375 C 1.804688 -2.804688 1.9375 -3.171875 1.875 -3.578125 C 1.820312 -3.992188 1.582031 -4.414062 1.156 [...]
+</symbol>
+<symbol overflow="visible" id="glyph1-12">
+<path style="stroke:none;" d="M -0.34375 -5.75 C -0.445312 -5.726562 -0.546875 -5.6875 -0.640625 -5.625 C -0.742188 -5.570312 -0.84375 -5.5 -0.9375 -5.40625 C -1.269531 -5.070312 -1.414062 -4.703125 -1.375 -4.296875 C -1.34375 -3.898438 -1.125 -3.5 -0.71875 -3.09375 L 1.1875 -1.1875 L 0.59375 -0.59375 L -3.015625 -4.203125 L -2.421875 -4.796875 L -1.859375 -4.234375 C -1.953125 -4.578125 -1.945312 -4.898438 -1.84375 -5.203125 C -1.75 -5.515625 -1.5625 -5.8125 -1.28125 -6.09375 C -1.23828 [...]
+</symbol>
+<symbol overflow="visible" id="glyph2-0">
+<path style="stroke:none;" d="M 1.65625 -0.46875 L -6.578125 -0.46875 L -6.578125 -5.125 L 1.65625 -5.125 Z M 1.125 -0.984375 L 1.125 -4.609375 L -6.046875 -4.609375 L -6.046875 -0.984375 Z M 1.125 -0.984375 "/>
+</symbol>
+<symbol overflow="visible" id="glyph2-1">
+<path style="stroke:none;" d="M -3.1875 -4.140625 C -3.125 -4.335938 -2.984375 -4.53125 -2.765625 -4.71875 C -2.546875 -4.90625 -2.242188 -5.09375 -1.859375 -5.28125 L 0 -6.21875 L 0 -5.21875 L -1.75 -4.359375 C -2.195312 -4.128906 -2.492188 -3.910156 -2.640625 -3.703125 C -2.796875 -3.492188 -2.875 -3.207031 -2.875 -2.84375 L -2.875 -1.828125 L 0 -1.828125 L 0 -0.921875 L -6.796875 -0.921875 L -6.796875 -3 C -6.796875 -3.769531 -6.632812 -4.347656 -6.3125 -4.734375 C -5.988281 -5.117188 [...]
+</symbol>
+<symbol overflow="visible" id="glyph2-2">
+<path style="stroke:none;" d="M -2.015625 -0.796875 L -5.09375 -0.796875 L -5.09375 -1.625 L -2.046875 -1.625 C -1.566406 -1.625 -1.203125 -1.71875 -0.953125 -1.90625 C -0.710938 -2.101562 -0.59375 -2.390625 -0.59375 -2.765625 C -0.59375 -3.210938 -0.738281 -3.566406 -1.03125 -3.828125 C -1.320312 -4.097656 -1.710938 -4.234375 -2.203125 -4.234375 L -5.09375 -4.234375 L -5.09375 -5.0625 L 0 -5.0625 L 0 -4.234375 L -0.78125 -4.234375 C -0.46875 -4.023438 -0.238281 -3.785156 -0.09375 -3.515 [...]
+</symbol>
+<symbol overflow="visible" id="glyph2-3">
+<path style="stroke:none;" d="M -3.078125 -5.125 L 0 -5.125 L 0 -4.28125 L -3.046875 -4.28125 C -3.535156 -4.28125 -3.898438 -4.1875 -4.140625 -4 C -4.378906 -3.8125 -4.5 -3.53125 -4.5 -3.15625 C -4.5 -2.695312 -4.351562 -2.335938 -4.0625 -2.078125 C -3.769531 -1.816406 -3.378906 -1.6875 -2.890625 -1.6875 L 0 -1.6875 L 0 -0.84375 L -5.09375 -0.84375 L -5.09375 -1.6875 L -4.3125 -1.6875 C -4.613281 -1.882812 -4.835938 -2.117188 -4.984375 -2.390625 C -5.140625 -2.671875 -5.21875 -2.988281  [...]
+</symbol>
+<symbol overflow="visible" id="glyph2-4">
+<path style="stroke:none;" d="M -6.546875 -1.703125 L -5.09375 -1.703125 L -5.09375 -3.4375 L -4.453125 -3.4375 L -4.453125 -1.703125 L -1.6875 -1.703125 C -1.269531 -1.703125 -1 -1.757812 -0.875 -1.875 C -0.757812 -1.988281 -0.703125 -2.222656 -0.703125 -2.578125 L -0.703125 -3.4375 L 0 -3.4375 L 0 -2.578125 C 0 -1.929688 -0.117188 -1.484375 -0.359375 -1.234375 C -0.597656 -0.984375 -1.039062 -0.859375 -1.6875 -0.859375 L -4.453125 -0.859375 L -4.453125 -0.25 L -5.09375 -0.25 L -5.09375 [...]
+</symbol>
+<symbol overflow="visible" id="glyph2-5">
+<path style="stroke:none;" d="M -5.09375 -0.875 L -5.09375 -1.71875 L 0 -1.71875 L 0 -0.875 Z M -7.09375 -0.875 L -7.09375 -1.71875 L -6.03125 -1.71875 L -6.03125 -0.875 Z M -7.09375 -0.875 "/>
+</symbol>
+<symbol overflow="visible" id="glyph2-6">
+<path style="stroke:none;" d="M -4.125 -4.84375 C -4.5 -5.0625 -4.773438 -5.316406 -4.953125 -5.609375 C -5.128906 -5.898438 -5.21875 -6.238281 -5.21875 -6.625 C -5.21875 -7.15625 -5.03125 -7.566406 -4.65625 -7.859375 C -4.289062 -8.148438 -3.765625 -8.296875 -3.078125 -8.296875 L 0 -8.296875 L 0 -7.453125 L -3.046875 -7.453125 C -3.535156 -7.453125 -3.898438 -7.363281 -4.140625 -7.1875 C -4.378906 -7.019531 -4.5 -6.757812 -4.5 -6.40625 C -4.5 -5.96875 -4.351562 -5.617188 -4.0625 -5.3593 [...]
+</symbol>
+<symbol overflow="visible" id="glyph2-7">
+<path style="stroke:none;" d="M -2.765625 -5.25 L -2.34375 -5.25 L -2.34375 -1.390625 C -1.769531 -1.421875 -1.332031 -1.59375 -1.03125 -1.90625 C -0.726562 -2.21875 -0.578125 -2.65625 -0.578125 -3.21875 C -0.578125 -3.53125 -0.613281 -3.835938 -0.6875 -4.140625 C -0.769531 -4.441406 -0.890625 -4.742188 -1.046875 -5.046875 L -0.265625 -5.046875 C -0.128906 -4.742188 -0.03125 -4.429688 0.03125 -4.109375 C 0.09375 -3.796875 0.125 -3.476562 0.125 -3.15625 C 0.125 -2.34375 -0.109375 -1.69531 [...]
+</symbol>
+<symbol overflow="visible" id="glyph2-8">
+<path style="stroke:none;" d=""/>
+</symbol>
+<symbol overflow="visible" id="glyph2-9">
+<path style="stroke:none;" d="M -7.078125 -2.890625 C -6.378906 -2.484375 -5.6875 -2.179688 -5 -1.984375 C -4.320312 -1.785156 -3.628906 -1.6875 -2.921875 -1.6875 C -2.222656 -1.6875 -1.53125 -1.785156 -0.84375 -1.984375 C -0.15625 -2.179688 0.535156 -2.484375 1.234375 -2.890625 L 1.234375 -2.15625 C 0.515625 -1.707031 -0.1875 -1.367188 -0.875 -1.140625 C -1.5625 -0.910156 -2.242188 -0.796875 -2.921875 -0.796875 C -3.597656 -0.796875 -4.28125 -0.90625 -4.96875 -1.125 C -5.65625 -1.351562 [...]
+</symbol>
+<symbol overflow="visible" id="glyph2-10">
+<path style="stroke:none;" d="M -4.953125 -4.125 L -4.15625 -4.125 C -4.28125 -3.894531 -4.367188 -3.648438 -4.421875 -3.390625 C -4.484375 -3.140625 -4.515625 -2.875 -4.515625 -2.59375 C -4.515625 -2.1875 -4.453125 -1.878906 -4.328125 -1.671875 C -4.203125 -1.460938 -4.007812 -1.359375 -3.75 -1.359375 C -3.5625 -1.359375 -3.410156 -1.429688 -3.296875 -1.578125 C -3.191406 -1.722656 -3.085938 -2.019531 -2.984375 -2.46875 L -2.921875 -2.765625 C -2.796875 -3.359375 -2.613281 -3.78125 -2.3 [...]
+</symbol>
+<symbol overflow="visible" id="glyph2-11">
+<path style="stroke:none;" d="M -4.90625 -4.546875 L -4.125 -4.546875 C -4.25 -4.304688 -4.34375 -4.066406 -4.40625 -3.828125 C -4.476562 -3.597656 -4.515625 -3.359375 -4.515625 -3.109375 C -4.515625 -2.566406 -4.34375 -2.144531 -4 -1.84375 C -3.65625 -1.539062 -3.171875 -1.390625 -2.546875 -1.390625 C -1.921875 -1.390625 -1.4375 -1.539062 -1.09375 -1.84375 C -0.75 -2.144531 -0.578125 -2.566406 -0.578125 -3.109375 C -0.578125 -3.359375 -0.609375 -3.597656 -0.671875 -3.828125 C -0.742188  [...]
+</symbol>
+<symbol overflow="visible" id="glyph2-12">
+<path style="stroke:none;" d="M -4.515625 -2.859375 C -4.515625 -2.410156 -4.335938 -2.050781 -3.984375 -1.78125 C -3.640625 -1.519531 -3.160156 -1.390625 -2.546875 -1.390625 C -1.929688 -1.390625 -1.445312 -1.519531 -1.09375 -1.78125 C -0.75 -2.039062 -0.578125 -2.398438 -0.578125 -2.859375 C -0.578125 -3.304688 -0.753906 -3.660156 -1.109375 -3.921875 C -1.460938 -4.179688 -1.941406 -4.3125 -2.546875 -4.3125 C -3.148438 -4.3125 -3.628906 -4.179688 -3.984375 -3.921875 C -4.335938 -3.6601 [...]
+</symbol>
+<symbol overflow="visible" id="glyph2-13">
+<path style="stroke:none;" d="M -4.328125 -4.234375 L -7.09375 -4.234375 L -7.09375 -5.078125 L 0 -5.078125 L 0 -4.234375 L -0.765625 -4.234375 C -0.460938 -4.054688 -0.238281 -3.832031 -0.09375 -3.5625 C 0.0507812 -3.300781 0.125 -2.976562 0.125 -2.59375 C 0.125 -1.976562 -0.117188 -1.476562 -0.609375 -1.09375 C -1.097656 -0.707031 -1.742188 -0.515625 -2.546875 -0.515625 C -3.347656 -0.515625 -3.992188 -0.707031 -4.484375 -1.09375 C -4.972656 -1.476562 -5.21875 -1.976562 -5.21875 -2.593 [...]
+</symbol>
+<symbol overflow="visible" id="glyph2-14">
+<path style="stroke:none;" d="M -7.078125 -0.75 L -7.078125 -1.46875 C -6.359375 -1.925781 -5.65625 -2.269531 -4.96875 -2.5 C -4.28125 -2.726562 -3.597656 -2.84375 -2.921875 -2.84375 C -2.242188 -2.84375 -1.5625 -2.726562 -0.875 -2.5 C -0.1875 -2.269531 0.515625 -1.925781 1.234375 -1.46875 L 1.234375 -0.75 C 0.535156 -1.15625 -0.15625 -1.457031 -0.84375 -1.65625 C -1.53125 -1.851562 -2.222656 -1.953125 -2.921875 -1.953125 C -3.628906 -1.953125 -4.320312 -1.851562 -5 -1.65625 C -5.6875 -1 [...]
+</symbol>
+</g>
+<clipPath id="clip1">
+  <rect x="0" y="0" width="266" height="139"/>
+</clipPath>
+<g id="surface5" clip-path="url(#clip1)">
+<path style="fill:none;stroke-width:0.25;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-dasharray:0.2,2;stroke-miterlimit:3.8;" d="M 50 93 L 270.601562 93 " transform="matrix(1,0,0,1,-5,-9)"/>
+<path style="fill:none;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:3.8;" d="M 50 93 L 54.300781 93 " transform="matrix(1,0,0,1,-5,-9)"/>
+<path style="fill:none;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:3.8;" d="M 270.601562 93 L 266.300781 93 " transform="matrix(1,0,0,1,-5,-9)"/>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph0-1" x="30.145361" y="87.513086"/>
+  <use xlink:href="#glyph0-2" x="33.103925" y="87.513086"/>
+</g>
+<path style="fill:none;stroke-width:0.25;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-dasharray:0.2,2;stroke-miterlimit:3.8;" d="M 50 81.351562 L 270.601562 81.351562 " transform="matrix(1,0,0,1,-5,-9)"/>
+<path style="fill:none;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:3.8;" d="M 50 81.351562 L 54.300781 81.351562 " transform="matrix(1,0,0,1,-5,-9)"/>
+<path style="fill:none;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:3.8;" d="M 270.601562 81.351562 L 266.300781 81.351562 " transform="matrix(1,0,0,1,-5,-9)"/>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph0-1" x="24.207422" y="75.863086"/>
+  <use xlink:href="#glyph0-3" x="27.165986" y="75.863086"/>
+  <use xlink:href="#glyph0-2" x="33.101779" y="75.863086"/>
+</g>
+<path style="fill:none;stroke-width:0.25;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-dasharray:0.2,2;stroke-miterlimit:3.8;" d="M 50 69.699219 L 270.601562 69.699219 " transform="matrix(1,0,0,1,-5,-9)"/>
+<path style="fill:none;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:3.8;" d="M 50 69.699219 L 54.300781 69.699219 " transform="matrix(1,0,0,1,-5,-9)"/>
+<path style="fill:none;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:3.8;" d="M 270.601562 69.699219 L 266.300781 69.699219 " transform="matrix(1,0,0,1,-5,-9)"/>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph0-1" x="24.207422" y="64.213086"/>
+  <use xlink:href="#glyph0-4" x="27.165986" y="64.213086"/>
+  <use xlink:href="#glyph0-2" x="33.101779" y="64.213086"/>
+</g>
+<path style="fill:none;stroke-width:0.25;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-dasharray:0.2,2;stroke-miterlimit:3.8;" d="M 50 58.050781 L 270.601562 58.050781 " transform="matrix(1,0,0,1,-5,-9)"/>
+<path style="fill:none;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:3.8;" d="M 50 58.050781 L 54.300781 58.050781 " transform="matrix(1,0,0,1,-5,-9)"/>
+<path style="fill:none;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:3.8;" d="M 270.601562 58.050781 L 266.300781 58.050781 " transform="matrix(1,0,0,1,-5,-9)"/>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph0-1" x="24.207422" y="52.563086"/>
+  <use xlink:href="#glyph0-5" x="27.165986" y="52.563086"/>
+  <use xlink:href="#glyph0-2" x="33.101779" y="52.563086"/>
+</g>
+<path style="fill:none;stroke-width:0.25;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-dasharray:0.2,2;stroke-miterlimit:3.8;" d="M 50 46.351562 L 270.601562 46.351562 " transform="matrix(1,0,0,1,-5,-9)"/>
+<path style="fill:none;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:3.8;" d="M 50 46.351562 L 54.300781 46.351562 " transform="matrix(1,0,0,1,-5,-9)"/>
+<path style="fill:none;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:3.8;" d="M 270.601562 46.351562 L 266.300781 46.351562 " transform="matrix(1,0,0,1,-5,-9)"/>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph0-1" x="24.207422" y="40.863086"/>
+  <use xlink:href="#glyph0-6" x="27.165986" y="40.863086"/>
+  <use xlink:href="#glyph0-2" x="33.101779" y="40.863086"/>
+</g>
+<path style="fill:none;stroke-width:0.25;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-dasharray:0.2,2;stroke-miterlimit:3.8;" d="M 50 34.699219 L 55.949219 34.699219 " transform="matrix(1,0,0,1,-5,-9)"/>
+<path style="fill:none;stroke-width:0.25;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-dasharray:0.2,2;stroke-miterlimit:3.8;" d="M 131.648438 34.699219 L 270.601562 34.699219 " transform="matrix(1,0,0,1,-5,-9)"/>
+<path style="fill:none;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:3.8;" d="M 50 34.699219 L 54.300781 34.699219 " transform="matrix(1,0,0,1,-5,-9)"/>
+<path style="fill:none;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:3.8;" d="M 270.601562 34.699219 L 266.300781 34.699219 " transform="matrix(1,0,0,1,-5,-9)"/>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph0-1" x="18.269482" y="29.213086"/>
+  <use xlink:href="#glyph0-7" x="21.228046" y="29.213086"/>
+  <use xlink:href="#glyph0-2" x="27.163839" y="29.213086"/>
+  <use xlink:href="#glyph0-2" x="33.099632" y="29.213086"/>
+</g>
+<path style="fill:none;stroke-width:0.25;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-dasharray:0.2,2;stroke-miterlimit:3.8;" d="M 50 23.050781 L 55.949219 23.050781 " transform="matrix(1,0,0,1,-5,-9)"/>
+<path style="fill:none;stroke-width:0.25;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-dasharray:0.2,2;stroke-miterlimit:3.8;" d="M 131.648438 23.050781 L 270.601562 23.050781 " transform="matrix(1,0,0,1,-5,-9)"/>
+<path style="fill:none;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:3.8;" d="M 50 23.050781 L 54.300781 23.050781 " transform="matrix(1,0,0,1,-5,-9)"/>
+<path style="fill:none;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:3.8;" d="M 270.601562 23.050781 L 266.300781 23.050781 " transform="matrix(1,0,0,1,-5,-9)"/>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph0-1" x="18.269482" y="17.563086"/>
+  <use xlink:href="#glyph0-7" x="21.228046" y="17.563086"/>
+  <use xlink:href="#glyph0-3" x="27.163839" y="17.563086"/>
+  <use xlink:href="#glyph0-2" x="33.099632" y="17.563086"/>
+</g>
+<path style="fill:none;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:3.8;" d="M 50 93 L 50 88.699219 " transform="matrix(1,0,0,1,-5,-9)"/>
+<path style="fill:none;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:3.8;" d="M 50 11.398438 L 50 15.699219 " transform="matrix(1,0,0,1,-5,-9)"/>
+<path style="fill:none;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:3.8;" d="M 86.75 93 L 86.75 88.699219 " transform="matrix(1,0,0,1,-5,-9)"/>
+<path style="fill:none;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:3.8;" d="M 86.75 11.398438 L 86.75 15.699219 " transform="matrix(1,0,0,1,-5,-9)"/>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph1-1" x="49.683778" y="126.984476"/>
+  <use xlink:href="#glyph1-2" x="53.306867" y="123.361387"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph1-3" x="57.46451" y="119.203744"/>
+  <use xlink:href="#glyph1-4" x="59.840305" y="116.827949"/>
+  <use xlink:href="#glyph1-2" x="61.668348" y="114.999906"/>
+  <use xlink:href="#glyph1-1" x="65.700602" y="110.967652"/>
+  <use xlink:href="#glyph1-5" x="69.323691" y="107.344563"/>
+  <use xlink:href="#glyph1-6" x="73.362544" y="103.30571"/>
+  <use xlink:href="#glyph1-7" x="75.949521" y="100.718733"/>
+  <use xlink:href="#glyph1-8" x="80.008173" y="96.660081"/>
+</g>
+<path style="fill:none;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:3.8;" d="M 108.851562 93 L 108.851562 88.699219 " transform="matrix(1,0,0,1,-5,-9)"/>
+<path style="fill:none;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:3.8;" d="M 108.851562 11.398438 L 108.851562 15.699219 " transform="matrix(1,0,0,1,-5,-9)"/>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph1-8" x="58.752435" y="140.015819"/>
+  <use xlink:href="#glyph1-9" x="62.936476" y="135.831778"/>
+  <use xlink:href="#glyph1-10" x="64.764518" y="134.003736"/>
+  <use xlink:href="#glyph1-5" x="68.196224" y="130.57203"/>
+  <use xlink:href="#glyph1-11" x="72.235077" y="126.533177"/>
+  <use xlink:href="#glyph1-11" x="76.419117" y="122.349137"/>
+  <use xlink:href="#glyph1-12" x="80.603158" y="118.165096"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph1-7" x="83.170337" y="115.597917"/>
+  <use xlink:href="#glyph1-11" x="87.228988" y="111.539266"/>
+  <use xlink:href="#glyph1-5" x="91.413029" y="107.355225"/>
+  <use xlink:href="#glyph1-6" x="95.451882" y="103.316372"/>
+  <use xlink:href="#glyph1-7" x="98.03886" y="100.729394"/>
+  <use xlink:href="#glyph1-8" x="102.097511" y="96.670743"/>
+</g>
+<path style="fill:none;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:3.8;" d="M 160.300781 93 L 160.300781 88.699219 " transform="matrix(1,0,0,1,-5,-9)"/>
+<path style="fill:none;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:3.8;" d="M 160.300781 11.398438 L 160.300781 15.699219 " transform="matrix(1,0,0,1,-5,-9)"/>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph1-1" x="123.233778" y="126.984476"/>
+  <use xlink:href="#glyph1-2" x="126.856867" y="123.361387"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph1-3" x="131.01451" y="119.203744"/>
+  <use xlink:href="#glyph1-4" x="133.390305" y="116.827949"/>
+  <use xlink:href="#glyph1-2" x="135.218348" y="114.999906"/>
+  <use xlink:href="#glyph1-1" x="139.250602" y="110.967652"/>
+  <use xlink:href="#glyph1-5" x="142.873691" y="107.344563"/>
+  <use xlink:href="#glyph1-6" x="146.912544" y="103.30571"/>
+  <use xlink:href="#glyph1-7" x="149.499521" y="100.718733"/>
+  <use xlink:href="#glyph1-8" x="153.558173" y="96.660081"/>
+</g>
+<path style="fill:none;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:3.8;" d="M 182.351562 93 L 182.351562 88.699219 " transform="matrix(1,0,0,1,-5,-9)"/>
+<path style="fill:none;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:3.8;" d="M 182.351562 11.398438 L 182.351562 15.699219 " transform="matrix(1,0,0,1,-5,-9)"/>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph1-8" x="132.252435" y="140.015819"/>
+  <use xlink:href="#glyph1-9" x="136.436476" y="135.831778"/>
+  <use xlink:href="#glyph1-10" x="138.264518" y="134.003736"/>
+  <use xlink:href="#glyph1-5" x="141.696224" y="130.57203"/>
+  <use xlink:href="#glyph1-11" x="145.735077" y="126.533177"/>
+  <use xlink:href="#glyph1-11" x="149.919117" y="122.349137"/>
+  <use xlink:href="#glyph1-12" x="154.103158" y="118.165096"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph1-7" x="156.670337" y="115.597917"/>
+  <use xlink:href="#glyph1-11" x="160.728988" y="111.539266"/>
+  <use xlink:href="#glyph1-5" x="164.913029" y="107.355225"/>
+  <use xlink:href="#glyph1-6" x="168.951882" y="103.316372"/>
+  <use xlink:href="#glyph1-7" x="171.53886" y="100.729394"/>
+  <use xlink:href="#glyph1-8" x="175.597511" y="96.670743"/>
+</g>
+<path style="fill:none;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:3.8;" d="M 233.851562 93 L 233.851562 88.699219 " transform="matrix(1,0,0,1,-5,-9)"/>
+<path style="fill:none;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:3.8;" d="M 233.851562 11.398438 L 233.851562 15.699219 " transform="matrix(1,0,0,1,-5,-9)"/>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph1-1" x="196.783778" y="126.984476"/>
+  <use xlink:href="#glyph1-2" x="200.406867" y="123.361387"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph1-3" x="204.56451" y="119.203744"/>
+  <use xlink:href="#glyph1-4" x="206.940305" y="116.827949"/>
+  <use xlink:href="#glyph1-2" x="208.768348" y="114.999906"/>
+  <use xlink:href="#glyph1-1" x="212.800602" y="110.967652"/>
+  <use xlink:href="#glyph1-5" x="216.423691" y="107.344563"/>
+  <use xlink:href="#glyph1-6" x="220.462544" y="103.30571"/>
+  <use xlink:href="#glyph1-7" x="223.049521" y="100.718733"/>
+  <use xlink:href="#glyph1-8" x="227.108173" y="96.660081"/>
+</g>
+<path style="fill:none;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:3.8;" d="M 50 11.398438 L 270.601562 11.398438 L 270.601562 93 L 50 93 Z M 50 11.398438 " transform="matrix(1,0,0,1,-5,-9)"/>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph0-8" x="74.4" y="55.463086"/>
+  <use xlink:href="#glyph0-9" x="80.91444" y="55.463086"/>
+  <use xlink:href="#glyph0-10" x="84.750306" y="55.463086"/>
+  <use xlink:href="#glyph0-11" x="90.462107" y="55.463086"/>
+  <use xlink:href="#glyph0-12" x="93.04735" y="55.463086"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph0-13" x="74.4" y="64.213089"/>
+  <use xlink:href="#glyph0-14" x="81.586416" y="64.213089"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph0-15" x="87.68087" y="64.213089"/>
+  <use xlink:href="#glyph0-16" x="94.064648" y="64.213089"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph0-8" x="147.950002" y="48.463087"/>
+  <use xlink:href="#glyph0-9" x="154.464441" y="48.463087"/>
+  <use xlink:href="#glyph0-10" x="158.300307" y="48.463087"/>
+  <use xlink:href="#glyph0-11" x="164.012108" y="48.463087"/>
+  <use xlink:href="#glyph0-12" x="166.597351" y="48.463087"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph0-17" x="147.950002" y="57.21309"/>
+  <use xlink:href="#glyph0-18" x="154.931091" y="57.21309"/>
+  <use xlink:href="#glyph0-16" x="161.314869" y="57.21309"/>
+  <use xlink:href="#glyph0-19" x="169.359922" y="57.21309"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph0-18" x="211.900006" y="17.563094"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph0-10" x="217.555808" y="17.563094"/>
+  <use xlink:href="#glyph0-20" x="223.267609" y="17.563094"/>
+  <use xlink:href="#glyph0-11" x="229.175403" y="17.563094"/>
+  <use xlink:href="#glyph0-12" x="231.760647" y="17.563094"/>
+  <use xlink:href="#glyph0-12" x="234.34589" y="17.563094"/>
+  <use xlink:href="#glyph0-10" x="236.931133" y="17.563094"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph2-1" x="7.913086" y="86.889355"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph2-2" x="7.913086" y="80.832233"/>
+  <use xlink:href="#glyph2-3" x="7.913086" y="74.924439"/>
+  <use xlink:href="#glyph2-4" x="7.913086" y="69.016645"/>
+  <use xlink:href="#glyph2-5" x="7.913086" y="65.358106"/>
+  <use xlink:href="#glyph2-6" x="7.913086" y="62.772862"/>
+  <use xlink:href="#glyph2-7" x="7.913086" y="53.682513"/>
+  <use xlink:href="#glyph2-8" x="7.913086" y="47.942713"/>
+  <use xlink:href="#glyph2-9" x="7.913086" y="44.984149"/>
+  <use xlink:href="#glyph2-10" x="7.913086" y="41.344276"/>
+  <use xlink:href="#glyph2-7" x="7.913086" y="36.491112"/>
+  <use xlink:href="#glyph2-11" x="7.913086" y="30.751312"/>
+  <use xlink:href="#glyph2-12" x="7.913086" y="25.62749"/>
+  <use xlink:href="#glyph2-3" x="7.913086" y="19.925023"/>
+  <use xlink:href="#glyph2-13" x="7.913086" y="14.017229"/>
+  <use xlink:href="#glyph2-10" x="7.913086" y="8.100101"/>
+  <use xlink:href="#glyph2-14" x="7.913086" y="3.246937"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph0-14" x="52.129492" y="15.663086"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph0-19" x="58.186614" y="15.663086"/>
+  <use xlink:href="#glyph0-21" x="63.926414" y="15.663086"/>
+  <use xlink:href="#glyph0-22" x="69.843541" y="15.663086"/>
+  <use xlink:href="#glyph0-23" x="75.751335" y="15.663086"/>
+  <use xlink:href="#glyph0-19" x="80.875157" y="15.663086"/>
+</g>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 92.601562 9.453125 L 120.703125 9.453125 L 120.703125 14.851562 L 92.601562 14.851562 Z M 92.601562 9.453125 "/>
+<path style="fill:none;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:3.8;" d="M 97.601562 18.449219 L 125.699219 18.449219 L 125.699219 23.851562 L 97.601562 23.851562 Z M 97.601562 18.449219 " transform="matrix(1,0,0,1,-5,-9)"/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 72.601562 66.351562 L 91 66.351562 L 91 84 L 72.601562 84 Z M 72.601562 66.351562 "/>
+<path style="fill:none;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:3.8;" d="M 77.601562 75.398438 L 95.949219 75.398438 L 95.949219 93 L 77.601562 93 Z M 77.601562 75.398438 " transform="matrix(1,0,0,1,-5,-9)"/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 146.101562 60.101562 L 164.550781 60.101562 L 164.550781 84 L 146.101562 84 Z M 146.101562 60.101562 "/>
+<path style="fill:none;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:3.8;" d="M 151.101562 69.148438 L 169.5 69.148438 L 169.5 93 L 151.101562 93 Z M 151.101562 69.148438 " transform="matrix(1,0,0,1,-5,-9)"/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 219.648438 19.5 L 238.097656 19.5 L 238.097656 84 L 219.648438 84 Z M 219.648438 19.5 "/>
+<path style="fill:none;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:3.8;" d="M 224.648438 28.550781 L 243.050781 28.550781 L 243.050781 93 L 224.648438 93 Z M 224.648438 28.550781 " transform="matrix(1,0,0,1,-5,-9)"/>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph0-16" x="66.954102" y="26.513086"/>
+  <use xlink:href="#glyph0-10" x="74.999155" y="26.513086"/>
+  <use xlink:href="#glyph0-24" x="80.710956" y="26.513086"/>
+</g>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(100%,0%,0%);fill-opacity:1;" d="M 92.601562 20.300781 L 120.703125 20.300781 L 120.703125 25.699219 L 92.601562 25.699219 Z M 92.601562 20.300781 "/>
+<path style="fill:none;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(100%,0%,0%);stroke-opacity:1;stroke-miterlimit:3.8;" d="M 97.601562 29.300781 L 125.699219 29.300781 L 125.699219 34.699219 L 97.601562 34.699219 Z M 97.601562 29.300781 " transform="matrix(1,0,0,1,-5,-9)"/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(100%,0%,0%);fill-opacity:1;" d="M 72.601562 75.351562 L 91 75.351562 L 91 84 L 72.601562 84 Z M 72.601562 75.351562 "/>
+<path style="fill:none;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(100%,0%,0%);stroke-opacity:1;stroke-miterlimit:3.8;" d="M 77.601562 84.398438 L 95.949219 84.398438 L 95.949219 93 L 77.601562 93 Z M 77.601562 84.398438 " transform="matrix(1,0,0,1,-5,-9)"/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(100%,0%,0%);fill-opacity:1;" d="M 146.101562 70.699219 L 164.550781 70.699219 L 164.550781 84 L 146.101562 84 Z M 146.101562 70.699219 "/>
+<path style="fill:none;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(100%,0%,0%);stroke-opacity:1;stroke-miterlimit:3.8;" d="M 151.101562 79.75 L 169.5 79.75 L 169.5 93 L 151.101562 93 Z M 151.101562 79.75 " transform="matrix(1,0,0,1,-5,-9)"/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(100%,0%,0%);fill-opacity:1;" d="M 219.648438 72.199219 L 238.097656 72.199219 L 238.097656 84 L 219.648438 84 Z M 219.648438 72.199219 "/>
+<path style="fill:none;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(100%,0%,0%);stroke-opacity:1;stroke-miterlimit:3.8;" d="M 224.648438 81.25 L 243.050781 81.25 L 243.050781 93 L 224.648438 93 Z M 224.648438 81.25 " transform="matrix(1,0,0,1,-5,-9)"/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 94.648438 66.800781 L 113.046875 66.800781 L 113.046875 84 L 94.648438 84 Z M 94.648438 66.800781 "/>
+<path style="fill:none;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:3.8;" d="M 99.648438 75.851562 L 118 75.851562 L 118 93 L 99.648438 93 Z M 99.648438 75.851562 " transform="matrix(1,0,0,1,-5,-9)"/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 168.148438 60.800781 L 186.597656 60.800781 L 186.597656 84 L 168.148438 84 Z M 168.148438 60.800781 "/>
+<path style="fill:none;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:3.8;" d="M 173.148438 69.851562 L 191.550781 69.851562 L 191.550781 93 L 173.148438 93 Z M 173.148438 69.851562 " transform="matrix(1,0,0,1,-5,-9)"/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(100%,0%,0%);fill-opacity:1;" d="M 94.648438 75.648438 L 113.046875 75.648438 L 113.046875 84 L 94.648438 84 Z M 94.648438 75.648438 "/>
+<path style="fill:none;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(100%,0%,0%);stroke-opacity:1;stroke-miterlimit:3.8;" d="M 99.648438 84.699219 L 118 84.699219 L 118 93 L 99.648438 93 Z M 99.648438 84.699219 " transform="matrix(1,0,0,1,-5,-9)"/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(100%,0%,0%);fill-opacity:1;" d="M 168.148438 70.800781 L 186.597656 70.800781 L 186.597656 84 L 168.148438 84 Z M 168.148438 70.800781 "/>
+<path style="fill:none;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(100%,0%,0%);stroke-opacity:1;stroke-miterlimit:3.8;" d="M 173.148438 79.851562 L 191.550781 79.851562 L 191.550781 93 L 173.148438 93 Z M 173.148438 79.851562 " transform="matrix(1,0,0,1,-5,-9)"/>
+<path style="fill:none;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:3.8;" d="M 50 11.398438 L 270.601562 11.398438 L 270.601562 93 L 50 93 Z M 50 11.398438 " transform="matrix(1,0,0,1,-5,-9)"/>
+</g>
+</defs>
+<g id="surface1">
+<use xlink:href="#surface5"/>
+</g>
+</svg>