提交 e28c7fb6 编写于 作者: S ShusenTang

add 10.10

上级 b6b8b5b9
......@@ -97,7 +97,8 @@ Dive into Deep Learning with PyTorch.
[10.6 求近义词和类比词](https://github.com/ShusenTang/Dive-into-DL-PyTorch/blob/master/docs/chapter10_natural-language-processing/10.6_similarity-analogy.md)
[10.7 文本情感分类:使用循环神经网络](https://github.com/ShusenTang/Dive-into-DL-PyTorch/blob/master/docs/chapter10_natural-language-processing/10.7_sentiment-analysis-rnn.md)
[10.8 文本情感分类:使用卷积神经网络(textCNN)](https://github.com/ShusenTang/Dive-into-DL-PyTorch/blob/master/docs/chapter10_natural-language-processing/10.8_sentiment-analysis-cnn.md)
[10.9 编码器—解码器(seq2seq)](https://github.com/ShusenTang/Dive-into-DL-PyTorch/blob/master/docs/chapter10_natural-language-processing/10.9_seq2seq.md)
[10.9 编码器—解码器(seq2seq)](https://github.com/ShusenTang/Dive-into-DL-PyTorch/blob/master/docs/chapter10_natural-language-processing/10.9_seq2seq.md)
[10.10 束搜索](https://github.com/ShusenTang/Dive-into-DL-PyTorch/blob/master/docs/chapter10_natural-language-processing/10.10_beam-search.md)
......
# 10.10 束搜索
上一节介绍了如何训练输入和输出均为不定长序列的编码器—解码器。本节我们介绍如何使用编码器—解码器来预测不定长的序列。
上一节里已经提到,在准备训练数据集时,我们通常会在样本的输入序列和输出序列后面分别附上一个特殊符号"<eos>"表示序列的终止。我们在接下来的讨论中也将沿用上一节的全部数学符号。为了便于讨论,假设解码器的输出是一段文本序列。设输出文本词典$\mathcal{Y}$(包含特殊符号"<eos>")的大小为$\left|\mathcal{Y}\right|$,输出序列的最大长度为$T'$。所有可能的输出序列一共有$\mathcal{O}(\left|\mathcal{Y}\right|^{T'})$种。这些输出序列中所有特殊符号"<eos>"后面的子序列将被舍弃。
## 10.10.1 贪婪搜索
让我们先来看一个简单的解决方案:贪婪搜索(greedy search)。对于输出序列任一时间步$t'$,我们从$|\mathcal{Y}|$个词中搜索出条件概率最大的词
$$
y _ { t ^ { \prime } } = \underset { y \in \mathcal { Y } } { \operatorname { argmax } } P \left( y | y _ { 1 } , \ldots , y _ { t ^ { \prime } - 1 } , c \right)
$$
作为输出。一旦搜索出"<eos>"符号,或者输出序列长度已经达到了最大长度$T'$,便完成输出。
我们在描述解码器时提到,基于输入序列生成输出序列的条件概率是$\prod_{t'=1}^{T'} P(y_{t'} \mid y_1, \ldots, y_{t'-1}, \boldsymbol{c})$。我们将该条件概率最大的输出序列称为最优输出序列。而贪婪搜索的主要问题是不能保证得到最优输出序列。
下面来看一个例子。假设输出词典里面有“A”“B”“C”和“<eos>”这4个词。图10.9中每个时间步下的4个数字分别代表了该时间步生成“A”“B”“C”和“<eos>”这4个词的条件概率。在每个时间步,贪婪搜索选取条件概率最大的词。因此,图10.9中将生成输出序列“A”“B”“C”“<eos>”。该输出序列的条件概率是$0.5\times0.4\times0.4\times0.6 = 0.048$。
<div align=center>
<img width="200" src="../../img/chapter10/10.10_s2s_prob1.svg"/>
</div>
<div align=center>图10.9 在每个时间步,贪婪搜索选取条件概率最大的词</div>
接下来,观察图10.10演示的例子。与图10.9中不同,图10.10在时间步2中选取了条件概率第二大的词“C”。由于时间步3所基于的时间步1和2的输出子序列由图10.9中的“A”“B”变为了图10.10中的“A”“C”,图10.10中时间步3生成各个词的条件概率发生了变化。我们选取条件概率最大的词“B”。此时时间步4所基于的前3个时间步的输出子序列为“A”“C”“B”,与图10.9中的“A”“B”“C”不同。因此,图10.10中时间步4生成各个词的条件概率也与图10.9中的不同。我们发现,此时的输出序列“A”“C”“B”“&lt;eos&gt;”的条件概率是$0.5\times0.3\times0.6\times0.6=0.054$,大于贪婪搜索得到的输出序列的条件概率。因此,贪婪搜索得到的输出序列“A”“B”“C”“&lt;eos&gt;”并非最优输出序列。
<div align=center>
<img width="200" src="../../img/chapter10/10.10_s2s_prob2.svg"/>
</div>
<div align=center>图10.10 在时间步2选取条件概率第二大的词“C”</div>
## 10.10.2 穷举搜索
如果目标是得到最优输出序列,我们可以考虑穷举搜索(exhaustive search):穷举所有可能的输出序列,输出条件概率最大的序列。
虽然穷举搜索可以得到最优输出序列,但它的计算开销$\mathcal{O}(\left|\mathcal{Y}\right|^{T'})$很容易过大。例如,当$|\mathcal{Y}|=10000$且$T'=10$时,我们将评估$10000^{10} = 10^{40}$个序列:这几乎不可能完成。而贪婪搜索的计算开销是$\mathcal{O}(\left|\mathcal{Y}\right|T')$,通常显著小于穷举搜索的计算开销。例如,当$|\mathcal{Y}|=10000$且$T'=10$时,我们只需评估$10000\times10=10^5$个序列。
## 10.10.3 束搜索
束搜索(beam search)是对贪婪搜索的一个改进算法。它有一个束宽(beam size)超参数。我们将它设为$k$。在时间步1时,选取当前时间步条件概率最大的$k$个词,分别组成$k$个候选输出序列的首词。在之后的每个时间步,基于上个时间步的$k$个候选输出序列,从$k\left|\mathcal{Y}\right|$个可能的输出序列中选取条件概率最大的$k$个,作为该时间步的候选输出序列。最终,我们从各个时间步的候选输出序列中筛选出包含特殊符号“&lt;eos&gt;”的序列,并将它们中所有特殊符号“&lt;eos&gt;”后面的子序列舍弃,得到最终候选输出序列的集合。
<div align=center>
<img width="500" src="../../img/chapter10/10.10_beam_search.svg"/>
</div>
<div align=center>图10.11 束搜索的过程。束宽为2,输出序列最大长度为3。候选输出序列有A、C、AB、CE、ABD和CED</div>
图10.11通过一个例子演示了束搜索的过程。假设输出序列的词典中只包含5个元素,即$\mathcal{Y} = \{A, B, C, D, E\}$,且其中一个为特殊符号“&lt;eos&gt;”。设束搜索的束宽等于2,输出序列最大长度为3。在输出序列的时间步1时,假设条件概率$P(y_1 \mid \boldsymbol{c})$最大的2个词为$A$和$C$。我们在时间步2时将对所有的$y_2 \in \mathcal{Y}$都分别计算$P(y_2 \mid A, \boldsymbol{c})$和$P(y_2 \mid C, \boldsymbol{c})$,并从计算出的10个条件概率中取最大的2个,假设为$P(B \mid A, \boldsymbol{c})$和$P(E \mid C, \boldsymbol{c})$。那么,我们在时间步3时将对所有的$y_3 \in \mathcal{Y}$都分别计算$P(y_3 \mid A, B, \boldsymbol{c})$和$P(y_3 \mid C, E, \boldsymbol{c})$,并从计算出的10个条件概率中取最大的2个,假设为$P(D \mid A, B, \boldsymbol{c})$和$P(D \mid C, E, \boldsymbol{c})$。如此一来,我们得到6个候选输出序列:(1)$A$;(2)$C$;(3)$A$、$B$;(4)$C$、$E$;(5)$A$、$B$、$D$和(6)$C$、$E$、$D$。接下来,我们将根据这6个序列得出最终候选输出序列的集合。
在最终候选输出序列的集合中,我们取以下分数最高的序列作为输出序列:
$$ \frac{1}{L^\alpha} \log P(y_1, \ldots, y_{L}) = \frac{1}{L^\alpha} \sum_{t'=1}^L \log P(y_{t'} \mid y_1, \ldots, y_{t'-1}, \boldsymbol{c}),$$
其中$L$为最终候选序列长度,$\alpha$一般可选为0.75。分母上的$L^\alpha$是为了惩罚较长序列在以上分数中较多的对数相加项。分析可知,束搜索的计算开销为$\mathcal{O}(k\left|\mathcal{Y}\right|T')$。这介于贪婪搜索和穷举搜索的计算开销之间。此外,贪婪搜索可看作是束宽为1的束搜索。束搜索通过灵活的束宽$k$来权衡计算开销和搜索质量。
## 小结
* 预测不定长序列的方法包括贪婪搜索、穷举搜索和束搜索。
* 束搜索通过灵活的束宽来权衡计算开销和搜索质量。
-----------
> 注:本节与原书基本相同,[原书传送门](https://zh.d2l.ai/chapter_natural-language-processing/beam-search.html)
<?xml version="1.0" encoding="UTF-8"?>
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="367pt" height="238pt" viewBox="0 0 367 238" version="1.1">
<defs>
<g>
<symbol overflow="visible" id="glyph0-0">
<path style="stroke:none;" d=""/>
</symbol>
<symbol overflow="visible" id="glyph0-1">
<path style="stroke:none;" d="M 3.328125 -6.671875 L 0.734375 -6.671875 L 0.734375 0.171875 L 1.375 0.171875 L 1.375 -0.640625 L 2.703125 -0.640625 L 2.703125 -0.046875 L 3.328125 -0.046875 Z M 1.375 -1.25 L 1.375 -3.421875 L 2.703125 -3.421875 L 2.703125 -1.25 Z M 1.375 -4.015625 L 1.375 -6.078125 L 2.703125 -6.078125 L 2.703125 -4.015625 Z M 4.625 -4 L 4.09375 -3.65625 C 4.640625 -2.828125 5.0625 -2.078125 5.375 -1.40625 L 5.90625 -1.78125 C 5.609375 -2.40625 5.1875 -3.15625 4.625 -4 Z M 6.671875 0.8125 C 7.234375 0.8125 7.515625 0.515625 7.515625 -0.046875 L 7.515625 -5.078125 L 8.625 -5.078125 L 8.625 -5.703125 L 7.515625 -5.703125 L 7.515625 -7.28125 L 6.859375 -7.28125 L 6.859375 -5.703125 L 3.75 -5.703125 L 3.75 -5.078125 L 6.859375 -5.078125 L 6.859375 -0.203125 C 6.859375 0.078125 6.71875 0.21875 6.46875 0.21875 C 5.984375 0.21875 5.484375 0.203125 4.96875 0.1875 L 5.109375 0.8125 Z M 6.671875 0.8125 "/>
</symbol>
<symbol overflow="visible" id="glyph0-2">
<path style="stroke:none;" d="M 2.75 -4.90625 L 2.75 -0.71875 L 6.171875 -0.71875 L 6.171875 -4.90625 Z M 5.578125 -1.296875 L 3.359375 -1.296875 L 3.359375 -2.53125 L 5.578125 -2.53125 Z M 3.359375 -3.109375 L 3.359375 -4.34375 L 5.578125 -4.34375 L 5.578125 -3.109375 Z M 7.1875 0.828125 C 7.78125 0.828125 8.09375 0.5 8.09375 -0.125 L 8.09375 -6.90625 L 3.96875 -6.90625 L 3.96875 -6.296875 L 7.46875 -6.296875 L 7.46875 -0.3125 C 7.46875 0.046875 7.3125 0.25 7.046875 0.25 L 6.265625 0.21875 L 6.421875 0.828125 Z M 0.890625 -5.859375 L 0.890625 0.90625 L 1.515625 0.90625 L 1.515625 -5.859375 Z M 2.203125 -7.4375 L 1.609375 -7.171875 C 2 -6.6875 2.375 -6.125 2.71875 -5.5 L 3.296875 -5.8125 C 2.984375 -6.40625 2.609375 -6.9375 2.203125 -7.4375 Z M 2.203125 -7.4375 "/>
</symbol>
<symbol overflow="visible" id="glyph0-3">
<path style="stroke:none;" d="M 4.21875 -7.375 L 4.21875 -4.421875 L 2.53125 -4.421875 L 2.53125 -6.671875 L 1.875 -6.671875 L 1.875 -4.421875 L 0.5 -4.421875 L 0.5 -3.78125 L 4.28125 -3.78125 L 4.28125 -1.078125 L 4.921875 -1.078125 L 4.921875 -3.78125 L 8.5 -3.78125 L 8.5 -4.421875 L 4.875 -4.421875 L 4.875 -5.65625 L 7.609375 -5.65625 L 7.609375 -6.28125 L 4.875 -6.28125 L 4.875 -7.375 Z M 7.15625 -3.125 C 6.171875 -0.84375 4.109375 0.3125 1 0.3125 L 1.234375 0.9375 C 4.4375 0.921875 6.609375 -0.328125 7.75 -2.8125 Z M 2.65625 -3.390625 C 2.140625 -2.59375 1.5 -1.90625 0.734375 -1.3125 L 1.140625 -0.78125 C 1.921875 -1.40625 2.578125 -2.140625 3.125 -2.96875 Z M 2.65625 -3.390625 "/>
</symbol>
<symbol overflow="visible" id="glyph0-4">
<path style="stroke:none;" d=""/>
</symbol>
<symbol overflow="visible" id="glyph0-5">
<path style="stroke:none;" d="M 2.171875 -7.359375 C 1.78125 -5.96875 1.15625 -4.734375 0.3125 -3.65625 L 0.515625 -2.96875 C 0.84375 -3.34375 1.125 -3.71875 1.390625 -4.140625 L 1.390625 0.921875 L 2 0.921875 L 2 -5.1875 C 2.296875 -5.78125 2.546875 -6.421875 2.75 -7.09375 Z M 2.765625 -5.71875 L 2.765625 -0.40625 L 3.359375 -0.40625 L 3.359375 -5.71875 Z M 3.765625 -5.328125 L 3.765625 -4.75 L 8.359375 -4.75 L 8.359375 -5.328125 L 7.4375 -5.328125 L 7.4375 -6.96875 L 4.1875 -6.96875 L 4.1875 -6.390625 L 6.796875 -6.390625 L 6.796875 -5.328125 Z M 4.765625 -3.265625 L 5.765625 -3.265625 L 5.765625 -3.171875 C 5.765625 -2.828125 5.71875 -2.5 5.65625 -2.171875 L 3.734375 -2.171875 L 3.734375 -1.609375 L 5.484375 -1.609375 C 5.125 -0.6875 4.390625 -0.015625 3.28125 0.40625 L 3.6875 0.9375 C 4.8125 0.453125 5.59375 -0.296875 6.015625 -1.3125 C 6.46875 -0.5 7.203125 0.234375 8.203125 0.90625 L 8.625 0.375 C 7.59375 -0.21875 6.875 -0.875 6.453125 -1.609375 L 8.515625 -1.609375 L 8.515625 -2.171875 L 6.28125 -2.171875 C 6.34375 -2.515625 6.375 -2.875 6.390625 -3.265625 L 8.140625 -3.265625 L 8.140625 -3.84375 L 5.0625 -3.84375 C 5.140625 -4.03125 5.234375 -4.234375 5.3125 -4.421875 L 4.765625 -4.546875 C 4.484375 -3.859375 4.15625 -3.28125 3.71875 -2.859375 L 4.109375 -2.390625 C 4.34375 -2.640625 4.578125 -2.9375 4.765625 -3.265625 Z M 4.765625 -3.265625 "/>
</symbol>
<symbol overflow="visible" id="glyph0-6">
<path style="stroke:none;" d="M 1.140625 -7.203125 L 0.6875 -6.78125 C 1.328125 -6.28125 1.84375 -5.8125 2.203125 -5.359375 L 2.65625 -5.8125 C 2.234375 -6.265625 1.734375 -6.734375 1.140625 -7.203125 Z M 6.359375 0.734375 L 8.453125 0.734375 L 8.609375 0.09375 C 8.375 0.109375 8.03125 0.109375 7.59375 0.125 C 7.140625 0.140625 6.703125 0.140625 6.265625 0.140625 C 5.578125 0.140625 4.984375 0.140625 4.515625 0.125 C 3.96875 0.109375 3.5625 0.03125 3.28125 -0.09375 C 3.03125 -0.203125 2.796875 -0.390625 2.578125 -0.65625 C 2.515625 -0.734375 2.4375 -0.8125 2.359375 -0.859375 L 2.359375 -4.234375 L 0.484375 -4.234375 L 0.484375 -3.640625 L 1.765625 -3.640625 L 1.765625 -0.90625 C 1.390625 -0.734375 0.96875 -0.265625 0.484375 0.5 L 0.96875 0.9375 C 1.46875 0.09375 1.828125 -0.328125 2.046875 -0.328125 C 2.15625 -0.328125 2.28125 -0.25 2.40625 -0.09375 C 2.6875 0.21875 3 0.453125 3.34375 0.5625 C 3.703125 0.65625 4.1875 0.71875 4.765625 0.71875 C 5.34375 0.734375 5.875 0.734375 6.359375 0.734375 Z M 5.59375 -7.375 L 5.59375 -6.234375 L 4.40625 -6.234375 C 4.515625 -6.515625 4.609375 -6.8125 4.703125 -7.125 L 4.078125 -7.25 C 3.859375 -6.4375 3.515625 -5.703125 3.03125 -5.015625 L 3.59375 -4.671875 C 3.78125 -4.953125 3.96875 -5.265625 4.125 -5.609375 L 5.59375 -5.609375 L 5.59375 -4.3125 L 3.25 -4.3125 L 3.25 -3.6875 L 4.703125 -3.6875 C 4.671875 -3.125 4.578125 -2.640625 4.421875 -2.25 C 4.1875 -1.703125 3.71875 -1.265625 2.984375 -0.90625 L 3.40625 -0.390625 C 4.25 -0.828125 4.8125 -1.390625 5.046875 -2.078125 C 5.1875 -2.53125 5.28125 -3.0625 5.3125 -3.6875 L 6.21875 -3.6875 L 6.21875 -1.140625 C 6.21875 -0.9375 6.265625 -0.78125 6.40625 -0.640625 C 6.515625 -0.515625 6.6875 -0.453125 6.921875 -0.453125 L 7.5625 -0.453125 C 7.875 -0.46875 8.09375 -0.546875 8.21875 -0.671875 C 8.359375 -0.8125 8.453125 -1.25 8.5 -2 L 7.9375 -2.1875 C 7.90625 -1.546875 7.828125 -1.1875 7.71875 -1.109375 C 7.65625 -1.046875 7.5625 -1.03125 7.4375 -1.03125 L 7.109375 -1.03125 C 6.90625 -1.03125 6.828125 -1.109375 6.828125 -1.28125 L 6.828125 -3.6875 L 8.328125 -3.6875 L 8.328125 -4.3125 L 6.21875 -4.3125 L 6.21875 -5.609375 L 8.015625 -5.609375 L 8.015625 -6.234375 L 6.21875 -6.234375 L 6.21875 -7.375 Z M 5.59375 -7.375 "/>
</symbol>
<symbol overflow="visible" id="glyph0-7">
<path style="stroke:none;" d="M 2.0625 -4.84375 L 2.0625 -3.515625 L 1.171875 -3.515625 C 1.390625 -4.09375 1.609375 -4.75 1.796875 -5.484375 L 3.53125 -5.484375 L 3.53125 -6.09375 L 1.953125 -6.09375 C 2.03125 -6.453125 2.109375 -6.84375 2.203125 -7.25 L 1.609375 -7.375 C 1.515625 -6.9375 1.4375 -6.5 1.34375 -6.09375 L 0.453125 -6.09375 L 0.453125 -5.484375 L 1.203125 -5.484375 C 1 -4.6875 0.78125 -4 0.515625 -3.46875 L 0.65625 -2.921875 L 2.0625 -2.921875 L 2.0625 -1.578125 C 1.53125 -1.484375 0.984375 -1.390625 0.390625 -1.328125 L 0.46875 -0.6875 C 1.015625 -0.78125 1.546875 -0.859375 2.0625 -0.96875 L 2.0625 0.90625 L 2.65625 0.90625 L 2.65625 -1.09375 L 3.515625 -1.3125 L 3.515625 -1.921875 C 3.25 -1.859375 2.96875 -1.78125 2.65625 -1.703125 L 2.65625 -2.921875 L 3.484375 -2.921875 L 3.484375 -3.515625 L 2.65625 -3.515625 L 2.65625 -4.84375 Z M 4.71875 -5.3125 L 4.71875 -4.78125 L 7.296875 -4.78125 L 7.296875 -5.3125 L 4.71875 -5.3125 C 5.171875 -5.75 5.609375 -6.234375 6.03125 -6.75 C 6.71875 -5.875 7.484375 -5.125 8.328125 -4.515625 L 8.671875 -5.015625 C 7.859375 -5.59375 7.0625 -6.359375 6.265625 -7.328125 L 5.8125 -7.328125 C 5.078125 -6.4375 4.25 -5.640625 3.328125 -4.96875 L 3.6875 -4.421875 C 4.03125 -4.703125 4.375 -5 4.71875 -5.3125 Z M 5.34375 0.84375 C 5.78125 0.84375 6.015625 0.609375 6.015625 0.140625 L 6.015625 -4.0625 L 3.890625 -4.0625 L 3.890625 0.90625 L 4.453125 0.90625 L 4.453125 -0.78125 L 5.46875 -0.78125 L 5.46875 0.03125 C 5.46875 0.21875 5.359375 0.328125 5.171875 0.328125 L 4.765625 0.3125 L 4.90625 0.84375 Z M 4.453125 -1.28125 L 4.453125 -2.140625 L 5.46875 -2.140625 L 5.46875 -1.28125 Z M 4.453125 -2.640625 L 4.453125 -3.53125 L 5.46875 -3.53125 L 5.46875 -2.640625 Z M 6.546875 -3.8125 L 6.546875 -0.578125 L 7.0625 -0.578125 L 7.0625 -3.8125 Z M 7.53125 0.859375 C 7.96875 0.859375 8.1875 0.59375 8.1875 0.078125 L 8.1875 -4.21875 L 7.625 -4.21875 L 7.625 -0.0625 C 7.625 0.1875 7.53125 0.328125 7.328125 0.328125 C 7.109375 0.328125 6.875 0.3125 6.640625 0.28125 L 6.765625 0.859375 Z M 7.53125 0.859375 "/>
</symbol>
<symbol overflow="visible" id="glyph0-8">
<path style="stroke:none;" d="M 6.9375 -4.21875 L 4.828125 -4.21875 L 4.828125 -7.359375 L 4.171875 -7.359375 L 4.171875 -4.21875 L 2.0625 -4.21875 L 2.0625 -6.671875 L 1.40625 -6.671875 L 1.40625 -3.59375 L 4.171875 -3.59375 L 4.171875 -0.28125 L 1.625 -0.28125 L 1.625 -2.75 L 0.96875 -2.75 L 0.96875 0.84375 L 1.625 0.84375 L 1.625 0.328125 L 7.375 0.328125 L 7.375 0.84375 L 8.03125 0.84375 L 8.03125 -2.75 L 7.375 -2.75 L 7.375 -0.28125 L 4.828125 -0.28125 L 4.828125 -3.59375 L 7.59375 -3.59375 L 7.59375 -6.671875 L 6.9375 -6.671875 Z M 6.9375 -4.21875 "/>
</symbol>
<symbol overflow="visible" id="glyph0-9">
<path style="stroke:none;" d="M 4.84375 -7.390625 L 4.1875 -7.28125 C 4.3125 -7.078125 4.453125 -6.84375 4.5625 -6.609375 L 1.171875 -6.609375 L 1.171875 -3.703125 C 1.15625 -1.9375 0.890625 -0.546875 0.375 0.453125 L 0.859375 0.875 C 1.46875 -0.265625 1.796875 -1.796875 1.828125 -3.703125 L 1.828125 -6.015625 L 8.46875 -6.015625 L 8.46875 -6.609375 L 5.21875 -6.609375 C 5.09375 -6.890625 4.96875 -7.15625 4.84375 -7.390625 Z M 4.0625 -4.296875 L 3.671875 -3.921875 C 4.390625 -3.5625 4.984375 -3.21875 5.4375 -2.890625 L 2.234375 -2.890625 L 2.234375 -2.28125 L 4.890625 -2.28125 L 4.890625 -0.03125 C 4.890625 0.21875 4.765625 0.34375 4.515625 0.34375 C 4.125 0.34375 3.703125 0.328125 3.28125 0.3125 L 3.40625 0.921875 L 4.734375 0.921875 C 5.265625 0.921875 5.53125 0.640625 5.53125 0.109375 L 5.53125 -2.28125 L 7.609375 -2.28125 C 7.296875 -1.78125 6.953125 -1.34375 6.5625 -0.984375 L 7.0625 -0.609375 C 7.515625 -1.09375 7.921875 -1.6875 8.296875 -2.390625 L 8.296875 -2.890625 L 6.015625 -2.890625 L 6.140625 -3.03125 C 6.015625 -3.125 5.890625 -3.21875 5.734375 -3.3125 C 6.390625 -3.734375 7 -4.234375 7.546875 -4.828125 L 7.546875 -5.296875 L 2.765625 -5.296875 L 2.765625 -4.734375 L 6.734375 -4.734375 C 6.28125 -4.3125 5.78125 -3.953125 5.25 -3.640625 C 4.890625 -3.859375 4.484375 -4.09375 4.0625 -4.296875 Z M 4.0625 -4.296875 "/>
</symbol>
<symbol overflow="visible" id="glyph0-10">
<path style="stroke:none;" d="M 7.328125 0.8125 C 7.9375 0.8125 8.25 0.5 8.25 -0.140625 L 8.25 -7.296875 L 7.59375 -7.296875 L 7.59375 -0.28125 C 7.59375 0.0625 7.421875 0.25 7.09375 0.25 C 6.734375 0.25 6.359375 0.21875 5.953125 0.203125 L 6.109375 0.8125 Z M 5.671875 -6.609375 L 5.671875 -0.921875 L 6.3125 -0.921875 L 6.3125 -6.609375 Z M 0.640625 -6.96875 L 0.640625 -6.34375 L 2.046875 -6.34375 C 1.859375 -4.859375 1.3125 -3.703125 0.4375 -2.859375 L 0.734375 -2.265625 C 0.984375 -2.484375 1.203125 -2.734375 1.40625 -3 C 2 -2.6875 2.53125 -2.328125 2.984375 -1.953125 C 2.40625 -1.015625 1.609375 -0.28125 0.59375 0.234375 L 0.90625 0.8125 C 2.90625 -0.203125 4.125 -1.984375 4.578125 -4.53125 L 4.578125 -5.109375 L 2.4375 -5.109375 C 2.53125 -5.484375 2.625 -5.90625 2.6875 -6.34375 L 5.015625 -6.34375 L 5.015625 -6.96875 Z M 1.734375 -3.5 C 1.921875 -3.8125 2.078125 -4.125 2.21875 -4.484375 L 3.953125 -4.484375 C 3.8125 -3.765625 3.578125 -3.09375 3.28125 -2.5 C 2.828125 -2.84375 2.328125 -3.171875 1.734375 -3.5 Z M 1.734375 -3.5 "/>
</symbol>
<symbol overflow="visible" id="glyph1-0">
<path style="stroke:none;" d=""/>
</symbol>
<symbol overflow="visible" id="glyph1-1">
<path style="stroke:none;" d="M 3.546875 0 L 3.546875 -0.140625 C 2.875 -0.140625 2.6875 -0.296875 2.6875 -0.6875 L 2.6875 -6.0625 L 2.609375 -6.078125 L 1 -5.265625 L 1 -5.140625 L 1.234375 -5.234375 C 1.40625 -5.296875 1.5625 -5.34375 1.640625 -5.34375 C 1.84375 -5.34375 1.921875 -5.203125 1.921875 -4.890625 L 1.921875 -0.859375 C 1.921875 -0.359375 1.734375 -0.171875 1.0625 -0.140625 L 1.0625 0 Z M 3.546875 0 "/>
</symbol>
<symbol overflow="visible" id="glyph1-2">
<path style="stroke:none;" d="M 2.6875 1.40625 L 2.6875 1.171875 L 1.9375 1.171875 C 1.640625 1.171875 1.46875 1.046875 1.46875 0.6875 L 1.46875 -5.296875 C 1.46875 -5.625 1.640625 -5.734375 1.9375 -5.734375 L 2.6875 -5.734375 L 2.6875 -5.953125 L 0.796875 -5.953125 L 0.796875 1.40625 Z M 2.6875 1.40625 "/>
</symbol>
<symbol overflow="visible" id="glyph1-3">
<path style="stroke:none;" d="M 2.203125 1.40625 L 2.203125 -5.953125 L 0.3125 -5.953125 L 0.3125 -5.734375 L 1.0625 -5.734375 C 1.40625 -5.734375 1.515625 -5.5625 1.515625 -5.25 L 1.515625 0.765625 C 1.515625 1.046875 1.40625 1.171875 1.09375 1.171875 L 0.3125 1.171875 L 0.3125 1.40625 Z M 2.203125 1.40625 "/>
</symbol>
<symbol overflow="visible" id="glyph1-4">
<path style="stroke:none;" d="M 4.265625 -1.234375 L 4.140625 -1.28125 C 3.84375 -0.78125 3.65625 -0.6875 3.28125 -0.6875 L 1.171875 -0.6875 L 2.65625 -2.265625 C 3.453125 -3.109375 3.8125 -3.78125 3.8125 -4.5 C 3.8125 -5.390625 3.15625 -6.078125 2.140625 -6.078125 C 1.03125 -6.078125 0.453125 -5.34375 0.265625 -4.296875 L 0.453125 -4.25 C 0.8125 -5.125 1.140625 -5.421875 1.78125 -5.421875 C 2.546875 -5.421875 3.03125 -4.96875 3.03125 -4.15625 C 3.03125 -3.390625 2.703125 -2.703125 1.859375 -1.8125 L 0.265625 -0.109375 L 0.265625 0 L 3.78125 0 Z M 4.265625 -1.234375 "/>
</symbol>
<symbol overflow="visible" id="glyph1-5">
<path style="stroke:none;" d="M 0.546875 -4.59375 C 0.921875 -5.25 1.328125 -5.546875 1.890625 -5.546875 C 2.484375 -5.546875 2.859375 -5.234375 2.859375 -4.625 C 2.859375 -4.078125 2.578125 -3.671875 2.140625 -3.421875 C 1.953125 -3.3125 1.71875 -3.21875 1.375 -3.09375 L 1.375 -2.96875 C 1.890625 -2.96875 2.09375 -2.9375 2.296875 -2.875 C 2.921875 -2.703125 3.234375 -2.265625 3.234375 -1.578125 C 3.234375 -0.8125 2.734375 -0.203125 2.0625 -0.203125 C 1.8125 -0.203125 1.625 -0.25 1.28125 -0.484375 C 1.03125 -0.65625 0.890625 -0.71875 0.734375 -0.71875 C 0.53125 -0.71875 0.375 -0.578125 0.375 -0.390625 C 0.375 -0.0625 0.71875 0.125 1.375 0.125 C 2.171875 0.125 3.03125 -0.140625 3.46875 -0.71875 C 3.71875 -1.046875 3.875 -1.5 3.875 -1.96875 C 3.875 -2.4375 3.734375 -2.859375 3.484375 -3.125 C 3.296875 -3.328125 3.125 -3.4375 2.734375 -3.609375 C 3.34375 -3.96875 3.578125 -4.421875 3.578125 -4.84375 C 3.578125 -5.59375 3 -6.078125 2.171875 -6.078125 C 1.234375 -6.078125 0.671875 -5.484375 0.40625 -4.625 Z M 0.546875 -4.59375 "/>
</symbol>
<symbol overflow="visible" id="glyph2-0">
<path style="stroke:none;" d=""/>
</symbol>
<symbol overflow="visible" id="glyph2-1">
<path style="stroke:none;" d="M 5.078125 0 L 5.078125 -0.140625 C 4.59375 -0.1875 4.5 -0.28125 4.375 -1.03125 L 3.546875 -6.015625 L 3.3125 -6.015625 L 0.75 -1.546875 C 0.078125 -0.375 -0.046875 -0.21875 -0.453125 -0.140625 L -0.453125 0 L 1.21875 0 L 1.21875 -0.140625 C 0.796875 -0.15625 0.65625 -0.265625 0.65625 -0.4375 C 0.65625 -0.578125 0.734375 -0.796875 0.859375 -1.03125 L 1.390625 -2.03125 L 3.359375 -2.03125 L 3.546875 -0.859375 C 3.5625 -0.78125 3.5625 -0.6875 3.5625 -0.625 C 3.5625 -0.3125 3.4375 -0.171875 2.875 -0.140625 L 2.875 0 Z M 3.328125 -2.359375 L 1.578125 -2.359375 L 2.921875 -4.71875 Z M 3.328125 -2.359375 "/>
</symbol>
<symbol overflow="visible" id="glyph2-2">
<path style="stroke:none;" d="M 1.171875 -5.875 L 1.171875 -5.734375 C 1.734375 -5.6875 1.859375 -5.625 1.859375 -5.359375 C 1.859375 -5.234375 1.828125 -5.015625 1.765625 -4.78125 L 0.671875 -0.859375 C 0.515625 -0.3125 0.421875 -0.21875 -0.078125 -0.140625 L -0.078125 0 L 2.375 0 C 3.828125 0 4.84375 -0.59375 4.84375 -1.796875 C 4.84375 -2.4375 4.484375 -2.921875 3.71875 -3.15625 C 4.109375 -3.234375 4.4375 -3.328125 4.71875 -3.515625 C 5.046875 -3.71875 5.296875 -4.046875 5.296875 -4.53125 C 5.296875 -5.421875 4.671875 -5.875 3.421875 -5.875 Z M 2.234375 -3.265625 L 2.796875 -5.28125 C 2.890625 -5.609375 2.984375 -5.609375 3.328125 -5.609375 C 4.0625 -5.609375 4.390625 -5.296875 4.390625 -4.640625 C 4.390625 -3.75 3.75 -3.265625 2.578125 -3.265625 Z M 2.140625 -2.984375 C 2.703125 -2.984375 3.09375 -2.9375 3.28125 -2.875 C 3.625 -2.75 3.875 -2.359375 3.875 -1.796875 C 3.875 -0.796875 3.171875 -0.265625 2.140625 -0.265625 C 1.765625 -0.265625 1.53125 -0.390625 1.53125 -0.640625 C 1.53125 -0.765625 1.671875 -1.21875 1.859375 -1.90625 Z M 2.140625 -2.984375 "/>
</symbol>
<symbol overflow="visible" id="glyph2-3">
<path style="stroke:none;" d="M 1.171875 -5.875 L 1.171875 -5.734375 C 1.734375 -5.71875 1.859375 -5.609375 1.859375 -5.359375 C 1.859375 -5.234375 1.828125 -5.0625 1.765625 -4.828125 L 0.671875 -0.828125 C 0.515625 -0.296875 0.4375 -0.234375 -0.078125 -0.140625 L -0.078125 0 L 2.234375 0 C 3.296875 0 4.203125 -0.234375 4.859375 -0.75 C 5.734375 -1.4375 6.296875 -2.34375 6.296875 -3.453125 C 6.296875 -5.03125 5.25 -5.875 3.671875 -5.875 Z M 2.796875 -5.25 C 2.875 -5.578125 3.078125 -5.609375 3.421875 -5.609375 C 3.9375 -5.609375 4.3125 -5.5 4.59375 -5.296875 C 5.046875 -4.953125 5.296875 -4.390625 5.296875 -3.671875 C 5.296875 -2.765625 4.953125 -1.703125 4.3125 -1.078125 C 3.75 -0.546875 3.046875 -0.265625 2.140625 -0.265625 C 1.734375 -0.265625 1.53125 -0.375 1.53125 -0.609375 C 1.53125 -0.71875 1.578125 -0.90625 1.734375 -1.453125 Z M 2.796875 -5.25 "/>
</symbol>
<symbol overflow="visible" id="glyph2-4">
<path style="stroke:none;" d="M 5.703125 -5.875 L 1.234375 -5.875 L 1.234375 -5.734375 C 1.796875 -5.671875 1.921875 -5.609375 1.921875 -5.359375 C 1.921875 -5.25 1.875 -4.96875 1.828125 -4.78125 L 0.71875 -0.8125 C 0.578125 -0.28125 0.5 -0.234375 -0.015625 -0.140625 L -0.015625 0 L 4.546875 0 L 5.109375 -1.453125 L 4.96875 -1.53125 C 4.625 -1.046875 4.40625 -0.796875 4.125 -0.640625 C 3.65625 -0.40625 3.171875 -0.296875 2.296875 -0.296875 C 1.796875 -0.296875 1.578125 -0.390625 1.578125 -0.609375 C 1.578125 -0.71875 1.6875 -1.125 1.90625 -1.921875 L 2.203125 -2.921875 L 2.890625 -2.921875 C 3.265625 -2.921875 3.5 -2.875 3.59375 -2.796875 C 3.640625 -2.75 3.65625 -2.65625 3.65625 -2.515625 C 3.65625 -2.34375 3.640625 -2.234375 3.59375 -2.046875 L 3.78125 -2 L 4.390625 -4.09375 L 4.234375 -4.125 C 3.890625 -3.359375 3.78125 -3.25 2.984375 -3.25 L 2.28125 -3.25 L 2.875 -5.34375 C 2.921875 -5.546875 3.015625 -5.578125 3.53125 -5.578125 C 4.9375 -5.578125 5.25 -5.46875 5.25 -4.921875 C 5.25 -4.8125 5.25 -4.65625 5.234375 -4.515625 L 5.421875 -4.484375 Z M 5.703125 -5.875 "/>
</symbol>
<symbol overflow="visible" id="glyph2-5">
<path style="stroke:none;" d="M 6.203125 -5.96875 L 6.015625 -5.96875 C 5.9375 -5.828125 5.84375 -5.78125 5.671875 -5.78125 C 5.59375 -5.78125 5.484375 -5.78125 5.296875 -5.84375 C 4.921875 -5.96875 4.546875 -6 4.25 -6 C 3.53125 -6 2.859375 -5.75 2.28125 -5.34375 C 1.28125 -4.640625 0.59375 -3.453125 0.59375 -2.1875 C 0.59375 -0.703125 1.5625 0.15625 2.9375 0.15625 C 3.875 0.15625 4.59375 -0.21875 5.40625 -1.171875 L 5.234375 -1.3125 C 4.453125 -0.5 3.921875 -0.25 3.171875 -0.25 C 2.171875 -0.25 1.609375 -0.828125 1.609375 -2.09375 C 1.609375 -3.078125 1.921875 -4.109375 2.578125 -4.796875 C 3.0625 -5.328125 3.703125 -5.671875 4.359375 -5.671875 C 5.15625 -5.671875 5.59375 -5.171875 5.703125 -4.203125 L 5.875 -4.171875 Z M 6.203125 -5.96875 "/>
</symbol>
</g>
</defs>
<g id="surface1">
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-1" x="92.7515" y="15"/>
<use xlink:href="#glyph0-2" x="101.7515" y="15"/>
<use xlink:href="#glyph0-3" x="110.7515" y="15"/>
<use xlink:href="#glyph0-4" x="119.7515" y="15"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-1" x="122.7485" y="15"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-5" x="83" y="29"/>
<use xlink:href="#glyph0-6" x="92" y="29"/>
<use xlink:href="#glyph0-7" x="101" y="29"/>
<use xlink:href="#glyph0-8" x="110" y="29"/>
<use xlink:href="#glyph0-9" x="119" y="29"/>
<use xlink:href="#glyph0-10" x="128" y="29"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-2" x="5.503" y="142.00004"/>
<use xlink:href="#glyph1-3" x="8.5" y="142.00004"/>
</g>
<path style="fill-rule:nonzero;fill:rgb(69.802856%,85.096741%,100%);fill-opacity:1;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 215.085938 239.050781 C 217.820312 241.785156 217.820312 246.214844 215.085938 248.949219 C 212.355469 251.683594 207.921875 251.683594 205.1875 248.949219 C 202.453125 246.214844 202.453125 241.785156 205.1875 239.050781 C 207.921875 236.316406 212.355469 236.316406 215.085938 239.050781 " transform="matrix(1,0,0,1,-144,-140)"/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph2-1" x="63.38813" y="106.5001"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph2-2" x="63.38813" y="124.5"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph2-3" x="62.88863" y="159.50008"/>
</g>
<path style="fill:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 160.5 274.574219 L 199.152344 250.765625 " transform="matrix(1,0,0,1,-144,-140)"/>
<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 202.558594 248.667969 L 199.152344 250.765625 M 198.367188 249.488281 L 202.558594 248.667969 L 199.9375 252.042969 " transform="matrix(1,0,0,1,-144,-140)"/>
<path style="fill:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 160.5 277.070312 L 196.492188 266.144531 " transform="matrix(1,0,0,1,-144,-140)"/>
<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 200.320312 264.980469 L 196.492188 266.144531 M 196.054688 264.707031 L 200.320312 264.980469 L 196.929688 267.578125 " transform="matrix(1,0,0,1,-144,-140)"/>
<path style="fill:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 160.5 281.929688 L 195.992188 292.707031 " transform="matrix(1,0,0,1,-144,-140)"/>
<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 199.820312 293.867188 L 195.992188 292.707031 M 196.429688 291.269531 L 199.820312 293.867188 L 195.554688 294.140625 " transform="matrix(1,0,0,1,-144,-140)"/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph2-4" x="63.38813" y="175.54615"/>
</g>
<path style="fill-rule:nonzero;fill:rgb(69.802856%,85.096741%,100%);fill-opacity:1;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 215.085938 274.550781 C 217.820312 277.285156 217.820312 281.714844 215.085938 284.449219 C 212.355469 287.183594 207.921875 287.183594 205.1875 284.449219 C 202.453125 281.714844 202.453125 277.285156 205.1875 274.550781 C 207.921875 271.816406 212.355469 271.816406 215.085938 274.550781 " transform="matrix(1,0,0,1,-144,-140)"/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph2-5" x="63.13613" y="142.00004"/>
</g>
<path style="fill:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 160.5 279.5 L 197.238281 279.5 " transform="matrix(1,0,0,1,-144,-140)"/>
<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 201.238281 279.5 L 197.238281 279.5 M 197.238281 278 L 201.238281 279.5 L 197.238281 281 " transform="matrix(1,0,0,1,-144,-140)"/>
<path style="fill:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 160.5 284.15625 L 197.039062 305.421875 " transform="matrix(1,0,0,1,-144,-140)"/>
<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 200.496094 307.433594 L 197.039062 305.421875 M 197.792969 304.125 L 200.496094 307.433594 L 196.285156 306.71875 " transform="matrix(1,0,0,1,-144,-140)"/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph2-1" x="107.2505" y="94.5"/>
</g>
<path style="fill-rule:nonzero;fill:rgb(69.802856%,85.096741%,100%);fill-opacity:1;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 316.585938 208.550781 C 319.320312 211.285156 319.320312 215.714844 316.585938 218.449219 C 313.855469 221.183594 309.421875 221.183594 306.6875 218.449219 C 303.953125 215.714844 303.953125 211.285156 306.6875 208.550781 C 309.421875 205.816406 313.855469 205.816406 316.585938 208.550781 " transform="matrix(1,0,0,1,-144,-140)"/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph2-2" x="164.8881" y="76.0001"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph2-1" x="164.8881" y="58.5"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph2-3" x="164.3886" y="112.0001"/>
</g>
<path style="fill:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 262 229.433594 L 299.351562 217.441406 " transform="matrix(1,0,0,1,-144,-140)"/>
<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 303.160156 216.21875 L 299.351562 217.441406 M 298.894531 216.015625 L 303.160156 216.21875 L 299.8125 218.871094 " transform="matrix(1,0,0,1,-144,-140)"/>
<path style="fill:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 262 227.003906 L 298.632812 204.121094 " transform="matrix(1,0,0,1,-144,-140)"/>
<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 302.027344 202.003906 L 298.632812 204.121094 M 297.839844 202.851562 L 302.027344 202.003906 L 299.429688 205.394531 " transform="matrix(1,0,0,1,-144,-140)"/>
<path style="fill:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 262 234.429688 L 297.492188 245.207031 " transform="matrix(1,0,0,1,-144,-140)"/>
<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 301.320312 246.367188 L 297.492188 245.207031 M 297.929688 243.769531 L 301.320312 246.367188 L 297.054688 246.640625 " transform="matrix(1,0,0,1,-144,-140)"/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph2-4" x="164.8881" y="128.0461"/>
</g>
<path style="fill:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 262 236.65625 L 298.539062 257.921875 " transform="matrix(1,0,0,1,-144,-140)"/>
<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 301.996094 259.933594 L 298.539062 257.921875 M 299.292969 256.625 L 301.996094 259.933594 L 297.785156 259.21875 " transform="matrix(1,0,0,1,-144,-140)"/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph2-5" x="106.9985" y="191.00004"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph2-2" x="164.8881" y="173.5"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph2-3" x="164.3886" y="206.5"/>
</g>
<path style="fill:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 262.5 325.917969 L 297.992188 315.144531 " transform="matrix(1,0,0,1,-144,-140)"/>
<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 301.820312 313.980469 L 297.992188 315.144531 M 297.554688 313.707031 L 301.820312 313.980469 L 298.429688 316.578125 " transform="matrix(1,0,0,1,-144,-140)"/>
<path style="fill:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 262.5 330.785156 L 297.441406 340.183594 " transform="matrix(1,0,0,1,-144,-140)"/>
<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 301.304688 341.222656 L 297.441406 340.183594 M 297.828125 338.734375 L 301.304688 341.222656 L 297.050781 341.628906 " transform="matrix(1,0,0,1,-144,-140)"/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph2-5" x="164.6361" y="190"/>
</g>
<path style="fill-rule:nonzero;fill:rgb(69.802856%,85.096741%,100%);fill-opacity:1;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 316.585938 354.550781 C 319.320312 357.285156 319.320312 361.714844 316.585938 364.449219 C 313.855469 367.183594 309.421875 367.183594 306.6875 364.449219 C 303.953125 361.714844 303.953125 357.285156 306.6875 354.550781 C 309.421875 351.816406 313.855469 351.816406 316.585938 354.550781 " transform="matrix(1,0,0,1,-144,-140)"/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph2-4" x="164.8881" y="222"/>
</g>
<path style="fill:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 262.5 333.070312 L 300.273438 353.390625 " transform="matrix(1,0,0,1,-144,-140)"/>
<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 303.796875 355.285156 L 300.273438 353.390625 M 300.984375 352.066406 L 303.796875 355.285156 L 299.566406 354.710938 " transform="matrix(1,0,0,1,-144,-140)"/>
<path style="fill:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 262.5 328.351562 L 297.238281 327.75 " transform="matrix(1,0,0,1,-144,-140)"/>
<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 301.238281 327.679688 L 297.238281 327.75 M 297.210938 326.25 L 301.238281 327.679688 L 297.265625 329.25 " transform="matrix(1,0,0,1,-144,-140)"/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph2-5" x="164.6361" y="94.5"/>
</g>
<path style="fill:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 262 232 L 297.238281 232 " transform="matrix(1,0,0,1,-144,-140)"/>
<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 301.238281 232 L 297.238281 232 M 297.238281 230.5 L 301.238281 232 L 297.238281 233.5 " transform="matrix(1,0,0,1,-144,-140)"/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph2-1" x="164.8881" y="159.02307"/>
</g>
<path style="fill:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 262.5 323.785156 L 298.476562 303.824219 " transform="matrix(1,0,0,1,-144,-140)"/>
<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 301.976562 301.882812 L 298.476562 303.824219 M 297.75 302.511719 L 301.976562 301.882812 L 299.207031 305.136719 " transform="matrix(1,0,0,1,-144,-140)"/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph2-1" x="211.501" y="94.5"/>
<use xlink:href="#glyph2-2" x="217" y="94.5"/>
</g>
<path style="fill-rule:nonzero;fill:rgb(69.802856%,85.096741%,100%);fill-opacity:1;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 423.585938 244.097656 C 426.320312 246.832031 426.320312 251.261719 423.585938 253.996094 C 420.855469 256.730469 416.421875 256.730469 413.6875 253.996094 C 410.953125 251.261719 410.953125 246.832031 413.6875 244.097656 C 416.421875 241.363281 420.855469 241.363281 423.585938 244.097656 " transform="matrix(1,0,0,1,-144,-140)"/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph2-3" x="271.3886" y="111.5461"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph2-1" x="271.8881" y="58.5"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph2-2" x="271.8881" y="76.0001"/>
</g>
<path style="fill:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 371.5 235.105469 L 406.265625 245.386719 " transform="matrix(1,0,0,1,-144,-140)"/>
<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 410.101562 246.523438 L 406.265625 245.386719 M 406.691406 243.949219 L 410.101562 246.523438 L 405.839844 246.824219 " transform="matrix(1,0,0,1,-144,-140)"/>
<path style="fill:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 371.5 225.441406 L 405.632812 204.121094 " transform="matrix(1,0,0,1,-144,-140)"/>
<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 409.027344 202.003906 L 405.632812 204.121094 M 404.839844 202.851562 L 409.027344 202.003906 L 406.429688 205.394531 " transform="matrix(1,0,0,1,-144,-140)"/>
<path style="fill:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 371.5 228.628906 L 405.019531 217.871094 " transform="matrix(1,0,0,1,-144,-140)"/>
<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 408.828125 216.648438 L 405.019531 217.871094 M 404.5625 216.441406 L 408.828125 216.648438 L 405.476562 219.300781 " transform="matrix(1,0,0,1,-144,-140)"/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph2-4" x="271.8881" y="129.5001"/>
</g>
<path style="fill:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 371.5 238.375 L 405.59375 259.078125 " transform="matrix(1,0,0,1,-144,-140)"/>
<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 409.011719 261.15625 L 405.59375 259.078125 M 406.375 257.796875 L 409.011719 261.15625 L 404.816406 260.363281 " transform="matrix(1,0,0,1,-144,-140)"/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph2-5" x="211.249" y="191.00004"/>
<use xlink:href="#glyph2-4" x="217.252" y="191.00004"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph2-2" x="271.7505" y="175.54615"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph2-4" x="271.8881" y="227.5"/>
</g>
<path style="fill:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 372 325.542969 L 404.800781 316.726562 " transform="matrix(1,0,0,1,-144,-140)"/>
<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 408.664062 315.6875 L 404.800781 316.726562 M 404.414062 315.277344 L 408.664062 315.6875 L 405.191406 318.175781 " transform="matrix(1,0,0,1,-144,-140)"/>
<path style="fill:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 372 335.464844 L 405.652344 356.777344 " transform="matrix(1,0,0,1,-144,-140)"/>
<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 409.03125 358.917969 L 405.652344 356.777344 M 406.457031 355.511719 L 409.03125 358.917969 L 404.851562 358.042969 " transform="matrix(1,0,0,1,-144,-140)"/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph2-5" x="271.6361" y="191"/>
</g>
<path style="fill-rule:nonzero;fill:rgb(69.802856%,85.096741%,100%);fill-opacity:1;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 423.585938 340.550781 C 426.320312 343.285156 426.320312 347.714844 423.585938 350.449219 C 420.855469 353.183594 416.421875 353.183594 413.6875 350.449219 C 410.953125 347.714844 410.953125 343.285156 413.6875 340.550781 C 416.421875 337.816406 420.855469 337.816406 423.585938 340.550781 " transform="matrix(1,0,0,1,-144,-140)"/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph2-3" x="271.3886" y="208"/>
</g>
<path style="fill:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 372 331.746094 L 406.261719 341.851562 " transform="matrix(1,0,0,1,-144,-140)"/>
<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 410.101562 342.980469 L 406.261719 341.851562 M 406.6875 340.410156 L 410.101562 342.980469 L 405.839844 343.289062 " transform="matrix(1,0,0,1,-144,-140)"/>
<path style="fill:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 372 328.5 L 404.238281 328.5 " transform="matrix(1,0,0,1,-144,-140)"/>
<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 408.238281 328.5 L 404.238281 328.5 M 404.238281 327 L 408.238281 328.5 L 404.238281 330 " transform="matrix(1,0,0,1,-144,-140)"/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph2-5" x="271.4985" y="94.0001"/>
</g>
<path style="fill:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 371.5 231.910156 L 404.101562 231.625 " transform="matrix(1,0,0,1,-144,-140)"/>
<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 408.101562 231.589844 L 404.101562 231.625 M 404.085938 230.125 L 408.101562 231.589844 L 404.113281 233.125 " transform="matrix(1,0,0,1,-144,-140)"/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph2-1" x="271.8881" y="159.02307"/>
</g>
<path style="fill:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 372 322.398438 L 405.476562 303.824219 " transform="matrix(1,0,0,1,-144,-140)"/>
<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 408.976562 301.882812 L 405.476562 303.824219 M 404.75 302.511719 L 408.976562 301.882812 L 406.207031 305.136719 " transform="matrix(1,0,0,1,-144,-140)"/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph2-1" x="326.252" y="94.5"/>
<use xlink:href="#glyph2-2" x="331.751" y="94.5"/>
<use xlink:href="#glyph2-3" x="337.25" y="94.5"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph2-5" x="326" y="191.00004"/>
<use xlink:href="#glyph2-4" x="332.003" y="191.00004"/>
<use xlink:href="#glyph2-3" x="337.502" y="191.00004"/>
</g>
<path style="fill:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-dasharray:4,4;stroke-miterlimit:10;" d="M 216.890625 242.152344 L 246 234.1875 " transform="matrix(1,0,0,1,-144,-140)"/>
<path style="fill:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-dasharray:4,4;stroke-miterlimit:10;" d="M 214.804688 284.714844 L 245.5 319.003906 " transform="matrix(1,0,0,1,-144,-140)"/>
<path style="fill:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-dasharray:4,4;stroke-miterlimit:10;" d="M 318.195312 215.957031 L 350.5 228.066406 " transform="matrix(1,0,0,1,-144,-140)"/>
<path style="fill:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-dasharray:4,4;stroke-miterlimit:10;" d="M 317.566406 355.777344 L 350 335.40625 " transform="matrix(1,0,0,1,-144,-140)"/>
<path style="fill:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-dasharray:4,4;stroke-miterlimit:10;" d="M 425.375 247.144531 L 465 235.953125 " transform="matrix(1,0,0,1,-144,-140)"/>
<path style="fill:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-dasharray:4,4;stroke-miterlimit:10;" d="M 425.375 343.601562 L 465 332.441406 " transform="matrix(1,0,0,1,-144,-140)"/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-1" x="199.7515" y="15"/>
<use xlink:href="#glyph0-2" x="208.7515" y="15"/>
<use xlink:href="#glyph0-3" x="217.7515" y="15"/>
<use xlink:href="#glyph0-4" x="226.7515" y="15"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-4" x="229.7485" y="15"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-5" x="190" y="29"/>
<use xlink:href="#glyph0-6" x="199" y="29"/>
<use xlink:href="#glyph0-7" x="208" y="29"/>
<use xlink:href="#glyph0-8" x="217" y="29"/>
<use xlink:href="#glyph0-9" x="226" y="29"/>
<use xlink:href="#glyph0-10" x="235" y="29"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-1" x="317.7515" y="15"/>
<use xlink:href="#glyph0-2" x="326.7515" y="15"/>
<use xlink:href="#glyph0-3" x="335.7515" y="15"/>
<use xlink:href="#glyph0-4" x="344.7515" y="15"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-5" x="347.7485" y="15"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-5" x="308" y="29"/>
<use xlink:href="#glyph0-6" x="317" y="29"/>
<use xlink:href="#glyph0-7" x="326" y="29"/>
<use xlink:href="#glyph0-8" x="335" y="29"/>
<use xlink:href="#glyph0-9" x="344" y="29"/>
<use xlink:href="#glyph0-10" x="353" y="29"/>
</g>
</g>
</svg>
<?xml version="1.0" encoding="UTF-8"?>
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="142pt" height="88pt" viewBox="0 0 142 88" version="1.1">
<defs>
<g>
<symbol overflow="visible" id="glyph0-0">
<path style="stroke:none;" d=""/>
</symbol>
<symbol overflow="visible" id="glyph0-1">
<path style="stroke:none;" d="M 4.28125 -2.96875 C 4.28125 -4.8125 3.46875 -6.078125 2.28125 -6.078125 C 0.84375 -6.078125 0.21875 -4.609375 0.21875 -3.03125 C 0.21875 -1.546875 0.71875 0.125 2.25 0.125 C 3.71875 0.125 4.28125 -1.421875 4.28125 -2.96875 Z M 3.421875 -2.921875 C 3.421875 -1.140625 3.015625 -0.109375 2.25 -0.109375 C 1.46875 -0.109375 1.078125 -1.140625 1.078125 -2.96875 C 1.078125 -4.78125 1.484375 -5.84375 2.234375 -5.84375 C 3.03125 -5.84375 3.421875 -4.796875 3.421875 -2.921875 Z M 3.421875 -2.921875 "/>
</symbol>
<symbol overflow="visible" id="glyph0-2">
<path style="stroke:none;" d="M 1.625 -0.390625 C 1.625 -0.65625 1.390625 -0.90625 1.140625 -0.90625 C 0.859375 -0.90625 0.625 -0.671875 0.625 -0.390625 C 0.625 -0.109375 0.84375 0.09375 1.125 0.09375 C 1.390625 0.09375 1.625 -0.125 1.625 -0.390625 Z M 1.625 -0.390625 "/>
</symbol>
<symbol overflow="visible" id="glyph0-3">
<path style="stroke:none;" d="M 3.546875 0 L 3.546875 -0.140625 C 2.875 -0.140625 2.6875 -0.296875 2.6875 -0.6875 L 2.6875 -6.0625 L 2.609375 -6.078125 L 1 -5.265625 L 1 -5.140625 L 1.234375 -5.234375 C 1.40625 -5.296875 1.5625 -5.34375 1.640625 -5.34375 C 1.84375 -5.34375 1.921875 -5.203125 1.921875 -4.890625 L 1.921875 -0.859375 C 1.921875 -0.359375 1.734375 -0.171875 1.0625 -0.140625 L 1.0625 0 Z M 3.546875 0 "/>
</symbol>
<symbol overflow="visible" id="glyph0-4">
<path style="stroke:none;" d="M 4.265625 -1.234375 L 4.140625 -1.28125 C 3.84375 -0.78125 3.65625 -0.6875 3.28125 -0.6875 L 1.171875 -0.6875 L 2.65625 -2.265625 C 3.453125 -3.109375 3.8125 -3.78125 3.8125 -4.5 C 3.8125 -5.390625 3.15625 -6.078125 2.140625 -6.078125 C 1.03125 -6.078125 0.453125 -5.34375 0.265625 -4.296875 L 0.453125 -4.25 C 0.8125 -5.125 1.140625 -5.421875 1.78125 -5.421875 C 2.546875 -5.421875 3.03125 -4.96875 3.03125 -4.15625 C 3.03125 -3.390625 2.703125 -2.703125 1.859375 -1.8125 L 0.265625 -0.109375 L 0.265625 0 L 3.78125 0 Z M 4.265625 -1.234375 "/>
</symbol>
<symbol overflow="visible" id="glyph0-5">
<path style="stroke:none;" d="M 3.9375 -6.125 L 3.859375 -6.1875 C 3.71875 -6 3.640625 -5.953125 3.421875 -5.953125 L 1.5625 -5.953125 L 0.578125 -3.828125 C 0.578125 -3.828125 0.578125 -3.796875 0.578125 -3.78125 C 0.578125 -3.71875 0.609375 -3.703125 0.6875 -3.703125 C 1.546875 -3.703125 2.171875 -3.421875 2.59375 -3.078125 C 3 -2.75 3.203125 -2.296875 3.203125 -1.734375 C 3.203125 -0.953125 2.625 -0.203125 1.984375 -0.203125 C 1.8125 -0.203125 1.609375 -0.28125 1.34375 -0.5 C 1.0625 -0.734375 0.890625 -0.78125 0.6875 -0.78125 C 0.4375 -0.78125 0.28125 -0.65625 0.28125 -0.4375 C 0.28125 -0.09375 0.75 0.125 1.421875 0.125 C 2.03125 0.125 2.53125 -0.015625 2.953125 -0.3125 C 3.5625 -0.765625 3.828125 -1.328125 3.828125 -2.1875 C 3.828125 -2.65625 3.75 -3 3.515625 -3.328125 C 3 -4.046875 2.5625 -4.234375 1.265625 -4.484375 L 1.625 -5.25 L 3.375 -5.25 C 3.515625 -5.25 3.59375 -5.296875 3.625 -5.359375 Z M 3.9375 -6.125 "/>
</symbol>
<symbol overflow="visible" id="glyph0-6">
<path style="stroke:none;" d="M 4.25 -1.5 L 4.25 -2.078125 L 3.328125 -2.078125 L 3.328125 -6.078125 L 2.9375 -6.078125 L 0.109375 -2.078125 L 0.109375 -1.5 L 2.625 -1.5 L 2.625 0 L 3.328125 0 L 3.328125 -1.5 Z M 2.625 -2.078125 L 0.46875 -2.078125 L 2.625 -5.171875 Z M 2.625 -2.078125 "/>
</symbol>
<symbol overflow="visible" id="glyph0-7">
<path style="stroke:none;" d="M 0.546875 -4.59375 C 0.921875 -5.25 1.328125 -5.546875 1.890625 -5.546875 C 2.484375 -5.546875 2.859375 -5.234375 2.859375 -4.625 C 2.859375 -4.078125 2.578125 -3.671875 2.140625 -3.421875 C 1.953125 -3.3125 1.71875 -3.21875 1.375 -3.09375 L 1.375 -2.96875 C 1.890625 -2.96875 2.09375 -2.9375 2.296875 -2.875 C 2.921875 -2.703125 3.234375 -2.265625 3.234375 -1.578125 C 3.234375 -0.8125 2.734375 -0.203125 2.0625 -0.203125 C 1.8125 -0.203125 1.625 -0.25 1.28125 -0.484375 C 1.03125 -0.65625 0.890625 -0.71875 0.734375 -0.71875 C 0.53125 -0.71875 0.375 -0.578125 0.375 -0.390625 C 0.375 -0.0625 0.71875 0.125 1.375 0.125 C 2.171875 0.125 3.03125 -0.140625 3.46875 -0.71875 C 3.71875 -1.046875 3.875 -1.5 3.875 -1.96875 C 3.875 -2.4375 3.734375 -2.859375 3.484375 -3.125 C 3.296875 -3.328125 3.125 -3.4375 2.734375 -3.609375 C 3.34375 -3.96875 3.578125 -4.421875 3.578125 -4.84375 C 3.578125 -5.59375 3 -6.078125 2.171875 -6.078125 C 1.234375 -6.078125 0.671875 -5.484375 0.40625 -4.625 Z M 0.546875 -4.59375 "/>
</symbol>
<symbol overflow="visible" id="glyph0-8">
<path style="stroke:none;" d="M 4.015625 -6.15625 C 2.765625 -6.015625 2.0625 -5.8125 1.28125 -5 C 0.640625 -4.34375 0.3125 -3.484375 0.3125 -2.515625 C 0.3125 -1.875 0.484375 -1.234375 0.734375 -0.78125 C 1.046875 -0.203125 1.609375 0.125 2.328125 0.125 C 2.921875 0.125 3.421875 -0.109375 3.75 -0.53125 C 4.046875 -0.890625 4.21875 -1.390625 4.21875 -1.96875 C 4.21875 -3.125 3.5625 -3.859375 2.515625 -3.859375 C 2.109375 -3.859375 1.8125 -3.78125 1.375 -3.453125 C 1.609375 -4.8125 2.625 -5.78125 4.03125 -6.015625 Z M 3.40625 -1.6875 C 3.40625 -0.78125 3.0625 -0.125 2.421875 -0.125 C 1.578125 -0.125 1.140625 -1.03125 1.140625 -2.390625 C 1.140625 -3.21875 1.671875 -3.4375 2.1875 -3.4375 C 3.03125 -3.4375 3.40625 -2.84375 3.40625 -1.6875 Z M 3.40625 -1.6875 "/>
</symbol>
<symbol overflow="visible" id="glyph0-9">
<path style="stroke:none;" d="M 5.59375 0.21875 L 5.59375 -0.34375 L 1.703125 -2.28125 L 5.59375 -4.21875 L 5.59375 -4.8125 L 0.5 -2.328125 L 0.5 -2.234375 Z M 5.59375 0.21875 "/>
</symbol>
<symbol overflow="visible" id="glyph0-10">
<path style="stroke:none;" d="M 3.671875 -1.46875 C 3.234375 -0.8125 2.890625 -0.53125 2.28125 -0.53125 C 1.875 -0.53125 1.53125 -0.6875 1.28125 -1.03125 C 0.96875 -1.453125 0.921875 -1.8125 0.875 -2.5 L 3.640625 -2.5 C 3.609375 -2.984375 3.515625 -3.265625 3.34375 -3.515625 C 3.046875 -3.921875 2.640625 -4.140625 2.09375 -4.140625 C 0.953125 -4.140625 0.21875 -3.21875 0.21875 -1.953125 C 0.21875 -0.71875 0.875 0.09375 1.9375 0.09375 C 2.828125 0.09375 3.46875 -0.4375 3.8125 -1.40625 Z M 0.890625 -2.78125 C 0.984375 -3.453125 1.34375 -3.8125 1.84375 -3.8125 C 2.4375 -3.8125 2.625 -3.515625 2.734375 -2.78125 Z M 0.890625 -2.78125 "/>
</symbol>
<symbol overflow="visible" id="glyph0-11">
<path style="stroke:none;" d="M 4.234375 -2.078125 C 4.234375 -3.328125 3.390625 -4.140625 2.28125 -4.140625 C 1.078125 -4.140625 0.265625 -3.296875 0.265625 -2.046875 C 0.265625 -0.796875 1.109375 0.09375 2.203125 0.09375 C 3.421875 0.09375 4.234375 -0.828125 4.234375 -2.078125 Z M 3.421875 -1.84375 C 3.421875 -0.796875 3.03125 -0.15625 2.359375 -0.15625 C 2.03125 -0.15625 1.75 -0.328125 1.546875 -0.609375 C 1.21875 -1.09375 1.078125 -1.75 1.078125 -2.453125 C 1.078125 -3.359375 1.5 -3.890625 2.109375 -3.890625 C 2.5 -3.890625 2.75 -3.703125 2.96875 -3.4375 C 3.265625 -3.0625 3.421875 -2.453125 3.421875 -1.84375 Z M 3.421875 -1.84375 "/>
</symbol>
<symbol overflow="visible" id="glyph0-12">
<path style="stroke:none;" d="M 1.40625 -2.703125 C 1.15625 -2.859375 1.015625 -3.125 1.015625 -3.328125 C 1.015625 -3.75 1.3125 -3.9375 1.6875 -3.9375 C 2.234375 -3.9375 2.5 -3.640625 2.703125 -2.828125 L 2.84375 -2.828125 L 2.796875 -4.046875 L 2.703125 -4.046875 C 2.625 -3.96875 2.59375 -3.953125 2.5625 -3.953125 C 2.5 -3.953125 2.40625 -3.984375 2.296875 -4.03125 C 2.109375 -4.125 1.921875 -4.125 1.703125 -4.125 C 0.96875 -4.125 0.453125 -3.734375 0.453125 -3.03125 C 0.453125 -2.5625 0.796875 -2.140625 1.53125 -1.71875 L 2.03125 -1.453125 C 2.328125 -1.28125 2.5 -1.046875 2.5 -0.78125 C 2.5 -0.40625 2.21875 -0.109375 1.75 -0.109375 C 1.140625 -0.109375 0.796875 -0.5 0.609375 -1.375 L 0.46875 -1.375 L 0.46875 0.03125 L 0.578125 0.03125 C 0.640625 -0.046875 0.6875 -0.078125 0.796875 -0.078125 C 0.90625 -0.078125 1 -0.0625 1.21875 0.015625 C 1.421875 0.078125 1.6875 0.09375 1.875 0.09375 C 2.5625 0.09375 3.125 -0.4375 3.125 -1.03125 C 3.125 -1.546875 2.921875 -1.796875 2.34375 -2.140625 Z M 1.40625 -2.703125 "/>
</symbol>
<symbol overflow="visible" id="glyph0-13">
<path style="stroke:none;" d="M 5.59375 -2.234375 L 5.59375 -2.328125 L 0.5 -4.8125 L 0.5 -4.21875 L 4.390625 -2.28125 L 0.5 -0.34375 L 0.5 0.21875 Z M 5.59375 -2.234375 "/>
</symbol>
<symbol overflow="visible" id="glyph0-14">
<path style="stroke:none;" d="M 5.53125 -1.171875 C 4.84375 -0.546875 4.359375 -0.265625 3.546875 -0.265625 C 2.921875 -0.265625 2.34375 -0.5 1.9375 -0.921875 C 1.515625 -1.375 1.296875 -2.078125 1.296875 -3.0625 C 1.296875 -4.625 2.09375 -5.71875 3.453125 -5.71875 C 4.046875 -5.71875 4.515625 -5.46875 4.90625 -5.046875 C 5.125 -4.796875 5.265625 -4.53125 5.375 -4.046875 L 5.578125 -4.046875 L 5.5 -6.078125 L 5.3125 -6.078125 C 5.265625 -5.890625 5.109375 -5.78125 4.9375 -5.78125 C 4.78125 -5.78125 4.515625 -5.890625 4.3125 -5.953125 C 3.953125 -6.046875 3.59375 -6.078125 3.25 -6.078125 C 2.40625 -6.078125 1.640625 -5.78125 1.0625 -5.140625 C 0.546875 -4.578125 0.25 -3.828125 0.25 -2.921875 C 0.25 -2.03125 0.5625 -1.21875 1.109375 -0.671875 C 1.640625 -0.15625 2.421875 0.125 3.234375 0.125 C 4.296875 0.125 5.171875 -0.265625 5.703125 -1.015625 Z M 5.53125 -1.171875 "/>
</symbol>
<symbol overflow="visible" id="glyph0-15">
<path style="stroke:none;" d="M 3.796875 -3.140625 C 4.265625 -3.265625 4.453125 -3.328125 4.65625 -3.515625 C 4.890625 -3.71875 5.03125 -4.09375 5.03125 -4.453125 C 5.03125 -5.40625 4.234375 -5.953125 2.671875 -5.953125 L 0.15625 -5.953125 L 0.15625 -5.78125 C 0.875 -5.734375 1.015625 -5.65625 1.015625 -4.953125 L 1.015625 -1.015625 C 1.015625 -0.328125 0.859375 -0.1875 0.15625 -0.171875 L 0.15625 0 L 3.1875 0 C 4.484375 0 5.34375 -0.609375 5.34375 -1.609375 C 5.34375 -2 5.1875 -2.375 4.890625 -2.640625 C 4.640625 -2.875 4.390625 -3.03125 3.796875 -3.125 Z M 1.9375 -3.296875 L 1.9375 -5.34375 C 1.9375 -5.546875 2 -5.625 2.15625 -5.625 L 2.515625 -5.625 C 3.59375 -5.625 4.109375 -5.171875 4.109375 -4.40625 C 4.109375 -3.65625 3.671875 -3.296875 2.765625 -3.296875 Z M 1.9375 -2.9375 C 3 -2.890625 3.34375 -2.9375 3.875 -2.578125 C 4.171875 -2.375 4.296875 -2.046875 4.296875 -1.609375 C 4.296875 -1.21875 4.1875 -0.921875 3.953125 -0.71875 C 3.5625 -0.375 3.25 -0.328125 2.5 -0.328125 C 2.078125 -0.328125 1.9375 -0.4375 1.9375 -0.734375 Z M 1.9375 -2.9375 "/>
</symbol>
<symbol overflow="visible" id="glyph0-16">
<path style="stroke:none;" d="M 6.359375 0 L 6.359375 -0.171875 C 5.890625 -0.21875 5.765625 -0.40625 5.515625 -1 L 3.296875 -6.0625 L 3.125 -6.0625 L 1.265625 -1.671875 C 0.734375 -0.40625 0.65625 -0.21875 0.140625 -0.171875 L 0.140625 0 L 1.921875 0 L 1.921875 -0.171875 C 1.5 -0.171875 1.296875 -0.265625 1.296875 -0.546875 C 1.296875 -0.640625 1.328125 -0.796875 1.375 -0.921875 L 1.796875 -1.9375 L 4.15625 -1.9375 L 4.515625 -1.09375 C 4.625 -0.84375 4.6875 -0.609375 4.6875 -0.46875 C 4.6875 -0.390625 4.640625 -0.28125 4.5625 -0.25 C 4.453125 -0.1875 4.390625 -0.171875 4.0625 -0.171875 L 4.0625 0 Z M 4.015625 -2.3125 L 1.9375 -2.3125 L 2.984375 -4.78125 Z M 4.015625 -2.3125 "/>
</symbol>
<symbol overflow="visible" id="glyph1-0">
<path style="stroke:none;" d=""/>
</symbol>
<symbol overflow="visible" id="glyph1-1">
<path style="stroke:none;" d="M 3.328125 -6.671875 L 0.734375 -6.671875 L 0.734375 0.171875 L 1.375 0.171875 L 1.375 -0.640625 L 2.703125 -0.640625 L 2.703125 -0.046875 L 3.328125 -0.046875 Z M 1.375 -1.25 L 1.375 -3.421875 L 2.703125 -3.421875 L 2.703125 -1.25 Z M 1.375 -4.015625 L 1.375 -6.078125 L 2.703125 -6.078125 L 2.703125 -4.015625 Z M 4.625 -4 L 4.09375 -3.65625 C 4.640625 -2.828125 5.0625 -2.078125 5.375 -1.40625 L 5.90625 -1.78125 C 5.609375 -2.40625 5.1875 -3.15625 4.625 -4 Z M 6.671875 0.8125 C 7.234375 0.8125 7.515625 0.515625 7.515625 -0.046875 L 7.515625 -5.078125 L 8.625 -5.078125 L 8.625 -5.703125 L 7.515625 -5.703125 L 7.515625 -7.28125 L 6.859375 -7.28125 L 6.859375 -5.703125 L 3.75 -5.703125 L 3.75 -5.078125 L 6.859375 -5.078125 L 6.859375 -0.203125 C 6.859375 0.078125 6.71875 0.21875 6.46875 0.21875 C 5.984375 0.21875 5.484375 0.203125 4.96875 0.1875 L 5.109375 0.8125 Z M 6.671875 0.8125 "/>
</symbol>
<symbol overflow="visible" id="glyph1-2">
<path style="stroke:none;" d="M 2.75 -4.90625 L 2.75 -0.71875 L 6.171875 -0.71875 L 6.171875 -4.90625 Z M 5.578125 -1.296875 L 3.359375 -1.296875 L 3.359375 -2.53125 L 5.578125 -2.53125 Z M 3.359375 -3.109375 L 3.359375 -4.34375 L 5.578125 -4.34375 L 5.578125 -3.109375 Z M 7.1875 0.828125 C 7.78125 0.828125 8.09375 0.5 8.09375 -0.125 L 8.09375 -6.90625 L 3.96875 -6.90625 L 3.96875 -6.296875 L 7.46875 -6.296875 L 7.46875 -0.3125 C 7.46875 0.046875 7.3125 0.25 7.046875 0.25 L 6.265625 0.21875 L 6.421875 0.828125 Z M 0.890625 -5.859375 L 0.890625 0.90625 L 1.515625 0.90625 L 1.515625 -5.859375 Z M 2.203125 -7.4375 L 1.609375 -7.171875 C 2 -6.6875 2.375 -6.125 2.71875 -5.5 L 3.296875 -5.8125 C 2.984375 -6.40625 2.609375 -6.9375 2.203125 -7.4375 Z M 2.203125 -7.4375 "/>
</symbol>
<symbol overflow="visible" id="glyph1-3">
<path style="stroke:none;" d="M 4.21875 -7.375 L 4.21875 -4.421875 L 2.53125 -4.421875 L 2.53125 -6.671875 L 1.875 -6.671875 L 1.875 -4.421875 L 0.5 -4.421875 L 0.5 -3.78125 L 4.28125 -3.78125 L 4.28125 -1.078125 L 4.921875 -1.078125 L 4.921875 -3.78125 L 8.5 -3.78125 L 8.5 -4.421875 L 4.875 -4.421875 L 4.875 -5.65625 L 7.609375 -5.65625 L 7.609375 -6.28125 L 4.875 -6.28125 L 4.875 -7.375 Z M 7.15625 -3.125 C 6.171875 -0.84375 4.109375 0.3125 1 0.3125 L 1.234375 0.9375 C 4.4375 0.921875 6.609375 -0.328125 7.75 -2.8125 Z M 2.65625 -3.390625 C 2.140625 -2.59375 1.5 -1.90625 0.734375 -1.3125 L 1.140625 -0.78125 C 1.921875 -1.40625 2.578125 -2.140625 3.125 -2.96875 Z M 2.65625 -3.390625 "/>
</symbol>
</g>
</defs>
<g id="surface1">
<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 131.445312 149.800781 L 152 149.800781 L 152 165.898438 L 131.445312 165.898438 Z M 131.445312 149.800781 " transform="matrix(1,0,0,1,-91,-79)"/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-1" x="45.09722" y="81.350006"/>
<use xlink:href="#glyph0-2" x="49.59722" y="81.350006"/>
<use xlink:href="#glyph0-3" x="51.84722" y="81.350006"/>
</g>
<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 131.445312 133.699219 L 152 133.699219 L 152 149.800781 L 131.445312 149.800781 Z M 131.445312 133.699219 " transform="matrix(1,0,0,1,-91,-79)"/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-1" x="45.09722" y="65.25"/>
<use xlink:href="#glyph0-2" x="49.59722" y="65.25"/>
<use xlink:href="#glyph0-4" x="51.84722" y="65.25"/>
</g>
<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 131.445312 117.601562 L 152 117.601562 L 152 133.699219 L 131.445312 133.699219 Z M 131.445312 117.601562 " transform="matrix(1,0,0,1,-91,-79)"/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-1" x="45.09722" y="49.15"/>
<use xlink:href="#glyph0-2" x="49.59722" y="49.15"/>
<use xlink:href="#glyph0-4" x="51.84722" y="49.15"/>
</g>
<path style="fill-rule:nonzero;fill:rgb(69.802856%,85.096741%,100%);fill-opacity:1;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 131.445312 101.5 L 152 101.5 L 152 117.601562 L 131.445312 117.601562 Z M 131.445312 101.5 " transform="matrix(1,0,0,1,-91,-79)"/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-1" x="45.09722" y="33.05"/>
<use xlink:href="#glyph0-2" x="49.59722" y="33.05"/>
<use xlink:href="#glyph0-5" x="51.84722" y="33.05"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-1" x="5.53415" y="15.6"/>
<use xlink:href="#glyph1-2" x="14.53415" y="15.6"/>
<use xlink:href="#glyph1-3" x="23.53415" y="15.6"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-3" x="48.47222" y="16.6"/>
</g>
<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 158.042969 149.800781 L 178.597656 149.800781 L 178.597656 165.898438 L 158.042969 165.898438 Z M 158.042969 149.800781 " transform="matrix(1,0,0,1,-91,-79)"/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-1" x="71.6956" y="81.350006"/>
<use xlink:href="#glyph0-2" x="76.1956" y="81.350006"/>
<use xlink:href="#glyph0-4" x="78.4456" y="81.350006"/>
</g>
<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 158.042969 101.5 L 178.597656 101.5 L 178.597656 117.601562 L 158.042969 117.601562 Z M 158.042969 101.5 " transform="matrix(1,0,0,1,-91,-79)"/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-1" x="71.6956" y="33.05"/>
<use xlink:href="#glyph0-2" x="76.1956" y="33.05"/>
<use xlink:href="#glyph0-3" x="78.4456" y="33.05"/>
</g>
<path style="fill-rule:nonzero;fill:rgb(69.802856%,85.096741%,100%);fill-opacity:1;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 158.042969 117.601562 L 178.597656 117.601562 L 178.597656 133.699219 L 158.042969 133.699219 Z M 158.042969 117.601562 " transform="matrix(1,0,0,1,-91,-79)"/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-1" x="71.6956" y="49.15"/>
<use xlink:href="#glyph0-2" x="76.1956" y="49.15"/>
<use xlink:href="#glyph0-6" x="78.4456" y="49.15"/>
</g>
<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 158.042969 133.699219 L 178.597656 133.699219 L 178.597656 149.800781 L 158.042969 149.800781 Z M 158.042969 133.699219 " transform="matrix(1,0,0,1,-91,-79)"/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-1" x="71.6956" y="65.25"/>
<use xlink:href="#glyph0-2" x="76.1956" y="65.25"/>
<use xlink:href="#glyph0-7" x="78.4456" y="65.25"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-4" x="75.0706" y="16.5"/>
</g>
<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 184.730469 149.890625 L 205.289062 149.890625 L 205.289062 165.992188 L 184.730469 165.992188 Z M 184.730469 149.890625 " transform="matrix(1,0,0,1,-91,-79)"/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-1" x="98.3849" y="81.440915"/>
<use xlink:href="#glyph0-2" x="102.8849" y="81.440915"/>
<use xlink:href="#glyph0-4" x="105.1349" y="81.440915"/>
</g>
<path style="fill-rule:nonzero;fill:rgb(69.802856%,85.096741%,100%);fill-opacity:1;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 184.730469 133.789062 L 205.289062 133.789062 L 205.289062 149.890625 L 184.730469 149.890625 Z M 184.730469 133.789062 " transform="matrix(1,0,0,1,-91,-79)"/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-1" x="98.3849" y="65.34091"/>
<use xlink:href="#glyph0-2" x="102.8849" y="65.34091"/>
<use xlink:href="#glyph0-6" x="105.1349" y="65.34091"/>
</g>
<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 184.730469 117.691406 L 205.289062 117.691406 L 205.289062 133.789062 L 184.730469 133.789062 Z M 184.730469 117.691406 " transform="matrix(1,0,0,1,-91,-79)"/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-1" x="98.3849" y="49.24091"/>
<use xlink:href="#glyph0-2" x="102.8849" y="49.24091"/>
<use xlink:href="#glyph0-4" x="105.1349" y="49.24091"/>
</g>
<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 184.730469 101.589844 L 205.289062 101.589844 L 205.289062 117.691406 L 184.730469 117.691406 Z M 184.730469 101.589844 " transform="matrix(1,0,0,1,-91,-79)"/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-1" x="98.3849" y="33.14091"/>
<use xlink:href="#glyph0-2" x="102.8849" y="33.14091"/>
<use xlink:href="#glyph0-4" x="105.1349" y="33.14091"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-7" x="101.669" y="16.59091"/>
</g>
<path style="fill-rule:nonzero;fill:rgb(69.802856%,85.096741%,100%);fill-opacity:1;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 211.421875 149.980469 L 231.976562 149.980469 L 231.976562 166.082031 L 211.421875 166.082031 Z M 211.421875 149.980469 " transform="matrix(1,0,0,1,-91,-79)"/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-1" x="125.0742" y="81.531824"/>
<use xlink:href="#glyph0-2" x="129.5742" y="81.531824"/>
<use xlink:href="#glyph0-8" x="131.8242" y="81.531824"/>
</g>
<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 211.421875 133.882812 L 231.976562 133.882812 L 231.976562 149.980469 L 211.421875 149.980469 Z M 211.421875 133.882812 " transform="matrix(1,0,0,1,-91,-79)"/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-1" x="125.0742" y="65.43182"/>
<use xlink:href="#glyph0-2" x="129.5742" y="65.43182"/>
<use xlink:href="#glyph0-4" x="131.8242" y="65.43182"/>
</g>
<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 211.421875 117.78125 L 231.976562 117.78125 L 231.976562 133.882812 L 211.421875 133.882812 Z M 211.421875 117.78125 " transform="matrix(1,0,0,1,-91,-79)"/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-1" x="125.0742" y="49.33182"/>
<use xlink:href="#glyph0-2" x="129.5742" y="49.33182"/>
<use xlink:href="#glyph0-4" x="131.8242" y="49.33182"/>
</g>
<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 211.421875 101.683594 L 231.976562 101.683594 L 231.976562 117.78125 L 211.421875 117.78125 Z M 211.421875 101.683594 " transform="matrix(1,0,0,1,-91,-79)"/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-1" x="125.0742" y="33.23182"/>
<use xlink:href="#glyph0-2" x="129.5742" y="33.23182"/>
<use xlink:href="#glyph0-1" x="131.8242" y="33.23182"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-6" x="128.4492" y="16.68182"/>
</g>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;" d="M 3 70.800781 L 35.066406 70.800781 L 35.066406 86.898438 L 3 86.898438 Z M 3 70.800781 "/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-9" x="6.87065" y="81.350006"/>
<use xlink:href="#glyph0-10" x="13.03565" y="81.350006"/>
<use xlink:href="#glyph0-11" x="17.03165" y="81.350006"/>
<use xlink:href="#glyph0-12" x="21.53165" y="81.350006"/>
<use xlink:href="#glyph0-13" x="25.03265" y="81.350006"/>
</g>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;" d="M 3 54.699219 L 35.066406 54.699219 L 35.066406 70.800781 L 3 70.800781 Z M 3 54.699219 "/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-14" x="16.03265" y="65.25"/>
</g>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;" d="M 3 38.601562 L 35.066406 38.601562 L 35.066406 54.699219 L 3 54.699219 Z M 3 38.601562 "/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-15" x="16.03265" y="49.15"/>
</g>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;" d="M 3 22.5 L 35.066406 22.5 L 35.066406 38.601562 L 3 38.601562 Z M 3 22.5 "/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-16" x="15.78515" y="33.05"/>
</g>
</g>
</svg>
<?xml version="1.0" encoding="UTF-8"?>
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="141pt" height="88pt" viewBox="0 0 141 88" version="1.1">
<defs>
<g>
<symbol overflow="visible" id="glyph0-0">
<path style="stroke:none;" d=""/>
</symbol>
<symbol overflow="visible" id="glyph0-1">
<path style="stroke:none;" d="M 4.28125 -2.96875 C 4.28125 -4.8125 3.46875 -6.078125 2.28125 -6.078125 C 0.84375 -6.078125 0.21875 -4.609375 0.21875 -3.03125 C 0.21875 -1.546875 0.71875 0.125 2.25 0.125 C 3.71875 0.125 4.28125 -1.421875 4.28125 -2.96875 Z M 3.421875 -2.921875 C 3.421875 -1.140625 3.015625 -0.109375 2.25 -0.109375 C 1.46875 -0.109375 1.078125 -1.140625 1.078125 -2.96875 C 1.078125 -4.78125 1.484375 -5.84375 2.234375 -5.84375 C 3.03125 -5.84375 3.421875 -4.796875 3.421875 -2.921875 Z M 3.421875 -2.921875 "/>
</symbol>
<symbol overflow="visible" id="glyph0-2">
<path style="stroke:none;" d="M 1.625 -0.390625 C 1.625 -0.65625 1.390625 -0.90625 1.140625 -0.90625 C 0.859375 -0.90625 0.625 -0.671875 0.625 -0.390625 C 0.625 -0.109375 0.84375 0.09375 1.125 0.09375 C 1.390625 0.09375 1.625 -0.125 1.625 -0.390625 Z M 1.625 -0.390625 "/>
</symbol>
<symbol overflow="visible" id="glyph0-3">
<path style="stroke:none;" d="M 3.546875 0 L 3.546875 -0.140625 C 2.875 -0.140625 2.6875 -0.296875 2.6875 -0.6875 L 2.6875 -6.0625 L 2.609375 -6.078125 L 1 -5.265625 L 1 -5.140625 L 1.234375 -5.234375 C 1.40625 -5.296875 1.5625 -5.34375 1.640625 -5.34375 C 1.84375 -5.34375 1.921875 -5.203125 1.921875 -4.890625 L 1.921875 -0.859375 C 1.921875 -0.359375 1.734375 -0.171875 1.0625 -0.140625 L 1.0625 0 Z M 3.546875 0 "/>
</symbol>
<symbol overflow="visible" id="glyph0-4">
<path style="stroke:none;" d="M 4.265625 -1.234375 L 4.140625 -1.28125 C 3.84375 -0.78125 3.65625 -0.6875 3.28125 -0.6875 L 1.171875 -0.6875 L 2.65625 -2.265625 C 3.453125 -3.109375 3.8125 -3.78125 3.8125 -4.5 C 3.8125 -5.390625 3.15625 -6.078125 2.140625 -6.078125 C 1.03125 -6.078125 0.453125 -5.34375 0.265625 -4.296875 L 0.453125 -4.25 C 0.8125 -5.125 1.140625 -5.421875 1.78125 -5.421875 C 2.546875 -5.421875 3.03125 -4.96875 3.03125 -4.15625 C 3.03125 -3.390625 2.703125 -2.703125 1.859375 -1.8125 L 0.265625 -0.109375 L 0.265625 0 L 3.78125 0 Z M 4.265625 -1.234375 "/>
</symbol>
<symbol overflow="visible" id="glyph0-5">
<path style="stroke:none;" d="M 3.9375 -6.125 L 3.859375 -6.1875 C 3.71875 -6 3.640625 -5.953125 3.421875 -5.953125 L 1.5625 -5.953125 L 0.578125 -3.828125 C 0.578125 -3.828125 0.578125 -3.796875 0.578125 -3.78125 C 0.578125 -3.71875 0.609375 -3.703125 0.6875 -3.703125 C 1.546875 -3.703125 2.171875 -3.421875 2.59375 -3.078125 C 3 -2.75 3.203125 -2.296875 3.203125 -1.734375 C 3.203125 -0.953125 2.625 -0.203125 1.984375 -0.203125 C 1.8125 -0.203125 1.609375 -0.28125 1.34375 -0.5 C 1.0625 -0.734375 0.890625 -0.78125 0.6875 -0.78125 C 0.4375 -0.78125 0.28125 -0.65625 0.28125 -0.4375 C 0.28125 -0.09375 0.75 0.125 1.421875 0.125 C 2.03125 0.125 2.53125 -0.015625 2.953125 -0.3125 C 3.5625 -0.765625 3.828125 -1.328125 3.828125 -2.1875 C 3.828125 -2.65625 3.75 -3 3.515625 -3.328125 C 3 -4.046875 2.5625 -4.234375 1.265625 -4.484375 L 1.625 -5.25 L 3.375 -5.25 C 3.515625 -5.25 3.59375 -5.296875 3.625 -5.359375 Z M 3.9375 -6.125 "/>
</symbol>
<symbol overflow="visible" id="glyph0-6">
<path style="stroke:none;" d="M 4.25 -1.5 L 4.25 -2.078125 L 3.328125 -2.078125 L 3.328125 -6.078125 L 2.9375 -6.078125 L 0.109375 -2.078125 L 0.109375 -1.5 L 2.625 -1.5 L 2.625 0 L 3.328125 0 L 3.328125 -1.5 Z M 2.625 -2.078125 L 0.46875 -2.078125 L 2.625 -5.171875 Z M 2.625 -2.078125 "/>
</symbol>
<symbol overflow="visible" id="glyph0-7">
<path style="stroke:none;" d="M 0.546875 -4.59375 C 0.921875 -5.25 1.328125 -5.546875 1.890625 -5.546875 C 2.484375 -5.546875 2.859375 -5.234375 2.859375 -4.625 C 2.859375 -4.078125 2.578125 -3.671875 2.140625 -3.421875 C 1.953125 -3.3125 1.71875 -3.21875 1.375 -3.09375 L 1.375 -2.96875 C 1.890625 -2.96875 2.09375 -2.9375 2.296875 -2.875 C 2.921875 -2.703125 3.234375 -2.265625 3.234375 -1.578125 C 3.234375 -0.8125 2.734375 -0.203125 2.0625 -0.203125 C 1.8125 -0.203125 1.625 -0.25 1.28125 -0.484375 C 1.03125 -0.65625 0.890625 -0.71875 0.734375 -0.71875 C 0.53125 -0.71875 0.375 -0.578125 0.375 -0.390625 C 0.375 -0.0625 0.71875 0.125 1.375 0.125 C 2.171875 0.125 3.03125 -0.140625 3.46875 -0.71875 C 3.71875 -1.046875 3.875 -1.5 3.875 -1.96875 C 3.875 -2.4375 3.734375 -2.859375 3.484375 -3.125 C 3.296875 -3.328125 3.125 -3.4375 2.734375 -3.609375 C 3.34375 -3.96875 3.578125 -4.421875 3.578125 -4.84375 C 3.578125 -5.59375 3 -6.078125 2.171875 -6.078125 C 1.234375 -6.078125 0.671875 -5.484375 0.40625 -4.625 Z M 0.546875 -4.59375 "/>
</symbol>
<symbol overflow="visible" id="glyph0-8">
<path style="stroke:none;" d="M 4.015625 -6.15625 C 2.765625 -6.015625 2.0625 -5.8125 1.28125 -5 C 0.640625 -4.34375 0.3125 -3.484375 0.3125 -2.515625 C 0.3125 -1.875 0.484375 -1.234375 0.734375 -0.78125 C 1.046875 -0.203125 1.609375 0.125 2.328125 0.125 C 2.921875 0.125 3.421875 -0.109375 3.75 -0.53125 C 4.046875 -0.890625 4.21875 -1.390625 4.21875 -1.96875 C 4.21875 -3.125 3.5625 -3.859375 2.515625 -3.859375 C 2.109375 -3.859375 1.8125 -3.78125 1.375 -3.453125 C 1.609375 -4.8125 2.625 -5.78125 4.03125 -6.015625 Z M 3.40625 -1.6875 C 3.40625 -0.78125 3.0625 -0.125 2.421875 -0.125 C 1.578125 -0.125 1.140625 -1.03125 1.140625 -2.390625 C 1.140625 -3.21875 1.671875 -3.4375 2.1875 -3.4375 C 3.03125 -3.4375 3.40625 -2.84375 3.40625 -1.6875 Z M 3.40625 -1.6875 "/>
</symbol>
<symbol overflow="visible" id="glyph0-9">
<path style="stroke:none;" d="M 5.59375 0.21875 L 5.59375 -0.34375 L 1.703125 -2.28125 L 5.59375 -4.21875 L 5.59375 -4.8125 L 0.5 -2.328125 L 0.5 -2.234375 Z M 5.59375 0.21875 "/>
</symbol>
<symbol overflow="visible" id="glyph0-10">
<path style="stroke:none;" d="M 3.671875 -1.46875 C 3.234375 -0.8125 2.890625 -0.53125 2.28125 -0.53125 C 1.875 -0.53125 1.53125 -0.6875 1.28125 -1.03125 C 0.96875 -1.453125 0.921875 -1.8125 0.875 -2.5 L 3.640625 -2.5 C 3.609375 -2.984375 3.515625 -3.265625 3.34375 -3.515625 C 3.046875 -3.921875 2.640625 -4.140625 2.09375 -4.140625 C 0.953125 -4.140625 0.21875 -3.21875 0.21875 -1.953125 C 0.21875 -0.71875 0.875 0.09375 1.9375 0.09375 C 2.828125 0.09375 3.46875 -0.4375 3.8125 -1.40625 Z M 0.890625 -2.78125 C 0.984375 -3.453125 1.34375 -3.8125 1.84375 -3.8125 C 2.4375 -3.8125 2.625 -3.515625 2.734375 -2.78125 Z M 0.890625 -2.78125 "/>
</symbol>
<symbol overflow="visible" id="glyph0-11">
<path style="stroke:none;" d="M 4.234375 -2.078125 C 4.234375 -3.328125 3.390625 -4.140625 2.28125 -4.140625 C 1.078125 -4.140625 0.265625 -3.296875 0.265625 -2.046875 C 0.265625 -0.796875 1.109375 0.09375 2.203125 0.09375 C 3.421875 0.09375 4.234375 -0.828125 4.234375 -2.078125 Z M 3.421875 -1.84375 C 3.421875 -0.796875 3.03125 -0.15625 2.359375 -0.15625 C 2.03125 -0.15625 1.75 -0.328125 1.546875 -0.609375 C 1.21875 -1.09375 1.078125 -1.75 1.078125 -2.453125 C 1.078125 -3.359375 1.5 -3.890625 2.109375 -3.890625 C 2.5 -3.890625 2.75 -3.703125 2.96875 -3.4375 C 3.265625 -3.0625 3.421875 -2.453125 3.421875 -1.84375 Z M 3.421875 -1.84375 "/>
</symbol>
<symbol overflow="visible" id="glyph0-12">
<path style="stroke:none;" d="M 1.40625 -2.703125 C 1.15625 -2.859375 1.015625 -3.125 1.015625 -3.328125 C 1.015625 -3.75 1.3125 -3.9375 1.6875 -3.9375 C 2.234375 -3.9375 2.5 -3.640625 2.703125 -2.828125 L 2.84375 -2.828125 L 2.796875 -4.046875 L 2.703125 -4.046875 C 2.625 -3.96875 2.59375 -3.953125 2.5625 -3.953125 C 2.5 -3.953125 2.40625 -3.984375 2.296875 -4.03125 C 2.109375 -4.125 1.921875 -4.125 1.703125 -4.125 C 0.96875 -4.125 0.453125 -3.734375 0.453125 -3.03125 C 0.453125 -2.5625 0.796875 -2.140625 1.53125 -1.71875 L 2.03125 -1.453125 C 2.328125 -1.28125 2.5 -1.046875 2.5 -0.78125 C 2.5 -0.40625 2.21875 -0.109375 1.75 -0.109375 C 1.140625 -0.109375 0.796875 -0.5 0.609375 -1.375 L 0.46875 -1.375 L 0.46875 0.03125 L 0.578125 0.03125 C 0.640625 -0.046875 0.6875 -0.078125 0.796875 -0.078125 C 0.90625 -0.078125 1 -0.0625 1.21875 0.015625 C 1.421875 0.078125 1.6875 0.09375 1.875 0.09375 C 2.5625 0.09375 3.125 -0.4375 3.125 -1.03125 C 3.125 -1.546875 2.921875 -1.796875 2.34375 -2.140625 Z M 1.40625 -2.703125 "/>
</symbol>
<symbol overflow="visible" id="glyph0-13">
<path style="stroke:none;" d="M 5.59375 -2.234375 L 5.59375 -2.328125 L 0.5 -4.8125 L 0.5 -4.21875 L 4.390625 -2.28125 L 0.5 -0.34375 L 0.5 0.21875 Z M 5.59375 -2.234375 "/>
</symbol>
<symbol overflow="visible" id="glyph0-14">
<path style="stroke:none;" d="M 5.53125 -1.171875 C 4.84375 -0.546875 4.359375 -0.265625 3.546875 -0.265625 C 2.921875 -0.265625 2.34375 -0.5 1.9375 -0.921875 C 1.515625 -1.375 1.296875 -2.078125 1.296875 -3.0625 C 1.296875 -4.625 2.09375 -5.71875 3.453125 -5.71875 C 4.046875 -5.71875 4.515625 -5.46875 4.90625 -5.046875 C 5.125 -4.796875 5.265625 -4.53125 5.375 -4.046875 L 5.578125 -4.046875 L 5.5 -6.078125 L 5.3125 -6.078125 C 5.265625 -5.890625 5.109375 -5.78125 4.9375 -5.78125 C 4.78125 -5.78125 4.515625 -5.890625 4.3125 -5.953125 C 3.953125 -6.046875 3.59375 -6.078125 3.25 -6.078125 C 2.40625 -6.078125 1.640625 -5.78125 1.0625 -5.140625 C 0.546875 -4.578125 0.25 -3.828125 0.25 -2.921875 C 0.25 -2.03125 0.5625 -1.21875 1.109375 -0.671875 C 1.640625 -0.15625 2.421875 0.125 3.234375 0.125 C 4.296875 0.125 5.171875 -0.265625 5.703125 -1.015625 Z M 5.53125 -1.171875 "/>
</symbol>
<symbol overflow="visible" id="glyph0-15">
<path style="stroke:none;" d="M 3.796875 -3.140625 C 4.265625 -3.265625 4.453125 -3.328125 4.65625 -3.515625 C 4.890625 -3.71875 5.03125 -4.09375 5.03125 -4.453125 C 5.03125 -5.40625 4.234375 -5.953125 2.671875 -5.953125 L 0.15625 -5.953125 L 0.15625 -5.78125 C 0.875 -5.734375 1.015625 -5.65625 1.015625 -4.953125 L 1.015625 -1.015625 C 1.015625 -0.328125 0.859375 -0.1875 0.15625 -0.171875 L 0.15625 0 L 3.1875 0 C 4.484375 0 5.34375 -0.609375 5.34375 -1.609375 C 5.34375 -2 5.1875 -2.375 4.890625 -2.640625 C 4.640625 -2.875 4.390625 -3.03125 3.796875 -3.125 Z M 1.9375 -3.296875 L 1.9375 -5.34375 C 1.9375 -5.546875 2 -5.625 2.15625 -5.625 L 2.515625 -5.625 C 3.59375 -5.625 4.109375 -5.171875 4.109375 -4.40625 C 4.109375 -3.65625 3.671875 -3.296875 2.765625 -3.296875 Z M 1.9375 -2.9375 C 3 -2.890625 3.34375 -2.9375 3.875 -2.578125 C 4.171875 -2.375 4.296875 -2.046875 4.296875 -1.609375 C 4.296875 -1.21875 4.1875 -0.921875 3.953125 -0.71875 C 3.5625 -0.375 3.25 -0.328125 2.5 -0.328125 C 2.078125 -0.328125 1.9375 -0.4375 1.9375 -0.734375 Z M 1.9375 -2.9375 "/>
</symbol>
<symbol overflow="visible" id="glyph0-16">
<path style="stroke:none;" d="M 6.359375 0 L 6.359375 -0.171875 C 5.890625 -0.21875 5.765625 -0.40625 5.515625 -1 L 3.296875 -6.0625 L 3.125 -6.0625 L 1.265625 -1.671875 C 0.734375 -0.40625 0.65625 -0.21875 0.140625 -0.171875 L 0.140625 0 L 1.921875 0 L 1.921875 -0.171875 C 1.5 -0.171875 1.296875 -0.265625 1.296875 -0.546875 C 1.296875 -0.640625 1.328125 -0.796875 1.375 -0.921875 L 1.796875 -1.9375 L 4.15625 -1.9375 L 4.515625 -1.09375 C 4.625 -0.84375 4.6875 -0.609375 4.6875 -0.46875 C 4.6875 -0.390625 4.640625 -0.28125 4.5625 -0.25 C 4.453125 -0.1875 4.390625 -0.171875 4.0625 -0.171875 L 4.0625 0 Z M 4.015625 -2.3125 L 1.9375 -2.3125 L 2.984375 -4.78125 Z M 4.015625 -2.3125 "/>
</symbol>
<symbol overflow="visible" id="glyph1-0">
<path style="stroke:none;" d=""/>
</symbol>
<symbol overflow="visible" id="glyph1-1">
<path style="stroke:none;" d="M 3.328125 -6.671875 L 0.734375 -6.671875 L 0.734375 0.171875 L 1.375 0.171875 L 1.375 -0.640625 L 2.703125 -0.640625 L 2.703125 -0.046875 L 3.328125 -0.046875 Z M 1.375 -1.25 L 1.375 -3.421875 L 2.703125 -3.421875 L 2.703125 -1.25 Z M 1.375 -4.015625 L 1.375 -6.078125 L 2.703125 -6.078125 L 2.703125 -4.015625 Z M 4.625 -4 L 4.09375 -3.65625 C 4.640625 -2.828125 5.0625 -2.078125 5.375 -1.40625 L 5.90625 -1.78125 C 5.609375 -2.40625 5.1875 -3.15625 4.625 -4 Z M 6.671875 0.8125 C 7.234375 0.8125 7.515625 0.515625 7.515625 -0.046875 L 7.515625 -5.078125 L 8.625 -5.078125 L 8.625 -5.703125 L 7.515625 -5.703125 L 7.515625 -7.28125 L 6.859375 -7.28125 L 6.859375 -5.703125 L 3.75 -5.703125 L 3.75 -5.078125 L 6.859375 -5.078125 L 6.859375 -0.203125 C 6.859375 0.078125 6.71875 0.21875 6.46875 0.21875 C 5.984375 0.21875 5.484375 0.203125 4.96875 0.1875 L 5.109375 0.8125 Z M 6.671875 0.8125 "/>
</symbol>
<symbol overflow="visible" id="glyph1-2">
<path style="stroke:none;" d="M 2.75 -4.90625 L 2.75 -0.71875 L 6.171875 -0.71875 L 6.171875 -4.90625 Z M 5.578125 -1.296875 L 3.359375 -1.296875 L 3.359375 -2.53125 L 5.578125 -2.53125 Z M 3.359375 -3.109375 L 3.359375 -4.34375 L 5.578125 -4.34375 L 5.578125 -3.109375 Z M 7.1875 0.828125 C 7.78125 0.828125 8.09375 0.5 8.09375 -0.125 L 8.09375 -6.90625 L 3.96875 -6.90625 L 3.96875 -6.296875 L 7.46875 -6.296875 L 7.46875 -0.3125 C 7.46875 0.046875 7.3125 0.25 7.046875 0.25 L 6.265625 0.21875 L 6.421875 0.828125 Z M 0.890625 -5.859375 L 0.890625 0.90625 L 1.515625 0.90625 L 1.515625 -5.859375 Z M 2.203125 -7.4375 L 1.609375 -7.171875 C 2 -6.6875 2.375 -6.125 2.71875 -5.5 L 3.296875 -5.8125 C 2.984375 -6.40625 2.609375 -6.9375 2.203125 -7.4375 Z M 2.203125 -7.4375 "/>
</symbol>
<symbol overflow="visible" id="glyph1-3">
<path style="stroke:none;" d="M 4.21875 -7.375 L 4.21875 -4.421875 L 2.53125 -4.421875 L 2.53125 -6.671875 L 1.875 -6.671875 L 1.875 -4.421875 L 0.5 -4.421875 L 0.5 -3.78125 L 4.28125 -3.78125 L 4.28125 -1.078125 L 4.921875 -1.078125 L 4.921875 -3.78125 L 8.5 -3.78125 L 8.5 -4.421875 L 4.875 -4.421875 L 4.875 -5.65625 L 7.609375 -5.65625 L 7.609375 -6.28125 L 4.875 -6.28125 L 4.875 -7.375 Z M 7.15625 -3.125 C 6.171875 -0.84375 4.109375 0.3125 1 0.3125 L 1.234375 0.9375 C 4.4375 0.921875 6.609375 -0.328125 7.75 -2.8125 Z M 2.65625 -3.390625 C 2.140625 -2.59375 1.5 -1.90625 0.734375 -1.3125 L 1.140625 -0.78125 C 1.921875 -1.40625 2.578125 -2.140625 3.125 -2.96875 Z M 2.65625 -3.390625 "/>
</symbol>
</g>
</defs>
<g id="surface1">
<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 129.910156 254.699219 L 150.464844 254.699219 L 150.464844 270.800781 L 129.910156 270.800781 Z M 129.910156 254.699219 " transform="matrix(1,0,0,1,-90,-184)"/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-1" x="44.56308" y="81.250005"/>
<use xlink:href="#glyph0-2" x="49.06308" y="81.250005"/>
<use xlink:href="#glyph0-3" x="51.31308" y="81.250005"/>
</g>
<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 129.910156 238.601562 L 150.464844 238.601562 L 150.464844 254.699219 L 129.910156 254.699219 Z M 129.910156 238.601562 " transform="matrix(1,0,0,1,-90,-184)"/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-1" x="44.56308" y="65.15"/>
<use xlink:href="#glyph0-2" x="49.06308" y="65.15"/>
<use xlink:href="#glyph0-4" x="51.31308" y="65.15"/>
</g>
<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 129.910156 222.5 L 150.464844 222.5 L 150.464844 238.601562 L 129.910156 238.601562 Z M 129.910156 222.5 " transform="matrix(1,0,0,1,-90,-184)"/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-1" x="44.56308" y="49.05"/>
<use xlink:href="#glyph0-2" x="49.06308" y="49.05"/>
<use xlink:href="#glyph0-4" x="51.31308" y="49.05"/>
</g>
<path style="fill-rule:nonzero;fill:rgb(69.802856%,85.096741%,100%);fill-opacity:1;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 129.910156 206.398438 L 150.464844 206.398438 L 150.464844 222.5 L 129.910156 222.5 Z M 129.910156 206.398438 " transform="matrix(1,0,0,1,-90,-184)"/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-1" x="44.56308" y="32.95"/>
<use xlink:href="#glyph0-2" x="49.06308" y="32.95"/>
<use xlink:href="#glyph0-5" x="51.31308" y="32.95"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-1" x="5" y="15.5"/>
<use xlink:href="#glyph1-2" x="14" y="15.5"/>
<use xlink:href="#glyph1-3" x="23" y="15.5"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-3" x="47.93808" y="16.5"/>
</g>
<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 156.507812 254.699219 L 177.0625 254.699219 L 177.0625 270.800781 L 156.507812 270.800781 Z M 156.507812 254.699219 " transform="matrix(1,0,0,1,-90,-184)"/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-1" x="71.16145" y="81.250005"/>
<use xlink:href="#glyph0-2" x="75.66145" y="81.250005"/>
<use xlink:href="#glyph0-4" x="77.91145" y="81.250005"/>
</g>
<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 156.507812 206.398438 L 177.0625 206.398438 L 177.0625 222.5 L 156.507812 222.5 Z M 156.507812 206.398438 " transform="matrix(1,0,0,1,-90,-184)"/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-1" x="71.16145" y="32.95"/>
<use xlink:href="#glyph0-2" x="75.66145" y="32.95"/>
<use xlink:href="#glyph0-3" x="77.91145" y="32.95"/>
</g>
<path style="fill-rule:nonzero;fill:rgb(99.998474%,100%,100%);fill-opacity:1;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 156.507812 222.5 L 177.0625 222.5 L 177.0625 238.601562 L 156.507812 238.601562 Z M 156.507812 222.5 " transform="matrix(1,0,0,1,-90,-184)"/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-1" x="71.16145" y="49.05"/>
<use xlink:href="#glyph0-2" x="75.66145" y="49.05"/>
<use xlink:href="#glyph0-6" x="77.91145" y="49.05"/>
</g>
<path style="fill-rule:nonzero;fill:rgb(69.802856%,85.096741%,100%);fill-opacity:1;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 156.507812 238.601562 L 177.0625 238.601562 L 177.0625 254.699219 L 156.507812 254.699219 Z M 156.507812 238.601562 " transform="matrix(1,0,0,1,-90,-184)"/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-1" x="71.16145" y="65.15"/>
<use xlink:href="#glyph0-2" x="75.66145" y="65.15"/>
<use xlink:href="#glyph0-7" x="77.91145" y="65.15"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-4" x="74.53645" y="16.4"/>
</g>
<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 183.199219 254.789062 L 203.753906 254.789062 L 203.753906 270.890625 L 183.199219 270.890625 Z M 183.199219 254.789062 " transform="matrix(1,0,0,1,-90,-184)"/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-1" x="97.8507" y="81.340914"/>
<use xlink:href="#glyph0-2" x="102.3507" y="81.340914"/>
<use xlink:href="#glyph0-3" x="104.6007" y="81.340914"/>
</g>
<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 183.199219 238.691406 L 203.753906 238.691406 L 203.753906 254.789062 L 183.199219 254.789062 Z M 183.199219 238.691406 " transform="matrix(1,0,0,1,-90,-184)"/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-1" x="97.8507" y="65.24091"/>
<use xlink:href="#glyph0-2" x="102.3507" y="65.24091"/>
<use xlink:href="#glyph0-4" x="104.6007" y="65.24091"/>
</g>
<path style="fill-rule:nonzero;fill:rgb(69.802856%,85.096741%,100%);fill-opacity:1;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 183.199219 222.589844 L 203.753906 222.589844 L 203.753906 238.691406 L 183.199219 238.691406 Z M 183.199219 222.589844 " transform="matrix(1,0,0,1,-90,-184)"/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-1" x="97.8507" y="49.14091"/>
<use xlink:href="#glyph0-2" x="102.3507" y="49.14091"/>
<use xlink:href="#glyph0-8" x="104.6007" y="49.14091"/>
</g>
<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 183.199219 206.492188 L 203.753906 206.492188 L 203.753906 222.589844 L 183.199219 222.589844 Z M 183.199219 206.492188 " transform="matrix(1,0,0,1,-90,-184)"/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-1" x="97.8507" y="33.04091"/>
<use xlink:href="#glyph0-2" x="102.3507" y="33.04091"/>
<use xlink:href="#glyph0-3" x="104.6007" y="33.04091"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-7" x="101.1348" y="16.49091"/>
</g>
<path style="fill-rule:nonzero;fill:rgb(69.802856%,85.096741%,100%);fill-opacity:1;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 209.886719 254.882812 L 230.441406 254.882812 L 230.441406 270.980469 L 209.886719 270.980469 Z M 209.886719 254.882812 " transform="matrix(1,0,0,1,-90,-184)"/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-1" x="124.54" y="81.431823"/>
<use xlink:href="#glyph0-2" x="129.04" y="81.431823"/>
<use xlink:href="#glyph0-8" x="131.29" y="81.431823"/>
</g>
<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 209.886719 238.78125 L 230.441406 238.78125 L 230.441406 254.882812 L 209.886719 254.882812 Z M 209.886719 238.78125 " transform="matrix(1,0,0,1,-90,-184)"/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-1" x="124.54" y="65.33182"/>
<use xlink:href="#glyph0-2" x="129.04" y="65.33182"/>
<use xlink:href="#glyph0-3" x="131.29" y="65.33182"/>
</g>
<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 209.886719 222.683594 L 230.441406 222.683594 L 230.441406 238.78125 L 209.886719 238.78125 Z M 209.886719 222.683594 " transform="matrix(1,0,0,1,-90,-184)"/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-1" x="124.54" y="49.23182"/>
<use xlink:href="#glyph0-2" x="129.04" y="49.23182"/>
<use xlink:href="#glyph0-4" x="131.29" y="49.23182"/>
</g>
<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 209.886719 206.582031 L 230.441406 206.582031 L 230.441406 222.683594 L 209.886719 222.683594 Z M 209.886719 206.582031 " transform="matrix(1,0,0,1,-90,-184)"/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-1" x="124.54" y="33.13182"/>
<use xlink:href="#glyph0-2" x="129.04" y="33.13182"/>
<use xlink:href="#glyph0-3" x="131.29" y="33.13182"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-6" x="127.915" y="16.58182"/>
</g>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;" d="M 2.464844 70.699219 L 34.535156 70.699219 L 34.535156 86.800781 L 2.464844 86.800781 Z M 2.464844 70.699219 "/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-9" x="6.3365" y="81.250005"/>
<use xlink:href="#glyph0-10" x="12.5015" y="81.250005"/>
<use xlink:href="#glyph0-11" x="16.4975" y="81.250005"/>
<use xlink:href="#glyph0-12" x="20.9975" y="81.250005"/>
<use xlink:href="#glyph0-13" x="24.4985" y="81.250005"/>
</g>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;" d="M 2.464844 54.601562 L 34.535156 54.601562 L 34.535156 70.699219 L 2.464844 70.699219 Z M 2.464844 54.601562 "/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-14" x="15.4985" y="65.15"/>
</g>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;" d="M 2.464844 38.5 L 34.535156 38.5 L 34.535156 54.601562 L 2.464844 54.601562 Z M 2.464844 38.5 "/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-15" x="15.4985" y="49.05"/>
</g>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;" d="M 2.464844 22.398438 L 34.535156 22.398438 L 34.535156 38.5 L 2.464844 38.5 Z M 2.464844 22.398438 "/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-16" x="15.251" y="32.95"/>
</g>
</g>
</svg>
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册