1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-18 10:32:48 +02:00

[docs] Revise loop terminology reference.

Motivated by D88183, this seeks to clarify the current loop nomenclature with added illustrations, examples for possibly unexpected situations (infinite loops not part of the "parent" loop, logical loops sharing the same header, ...), and clarification on what other sources may consider a loop. The current document also has multiple errors that are fixed here.

Some selected errors:
 * Loops a defined as strongly-connected components. A component a partition of all nodes, i.e. a subloop can never be a component. That is, the document as it currently is only covers top-level loops, even it also uses the term SCC for subloops.
 * "a block can be the header of two separate loops at the same time" (it is considered a single loop by LoopInfo)
 * "execute before some interesting event happens" (some interesting event is not well-defined)

Reviewed By: baziotis, Whitney

Differential Revision: https://reviews.llvm.org/D88408
This commit is contained in:
Michael Kruse 2020-10-05 10:21:57 -05:00
parent ddbd7fdf6a
commit a5187b0c04
10 changed files with 8026 additions and 98 deletions

View File

@ -20066,6 +20066,8 @@ not overflow at link time under the medium code model if ``x`` is an
a constant initializer folded into a function body. This intrinsic can be
used to avoid the possibility of overflows when loading from such a constant.
.. _llvm_sideeffect:
'``llvm.sideeffect``' Intrinsic
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

View File

@ -7,118 +7,240 @@ LLVM Loop Terminology (and Canonical Forms)
.. contents::
:local:
Introduction
============
Loops are a core concept in any optimizer. This page spells out some
of the common terminology used within LLVM code to describe loop
structures.
First, let's start with the basics. In LLVM, a Loop is a maximal set of basic
blocks that form a strongly connected component (SCC) in the Control
Flow Graph (CFG) where there exists a dedicated entry/header block that
dominates all other blocks within the loop. Thus, without leaving the
loop, one can reach every block in the loop from the header block and
the header block from every block in the loop.
Note that there are some important implications of this definition:
* Not all SCCs are loops. There exist SCCs that do not meet the
dominance requirement and such are not considered loops.
* Loops can contain non-loop SCCs and non-loop SCCs may contain
loops. Loops may also contain sub-loops.
* A header block is uniquely associated with one loop. There can be
multiple SCC within that loop, but the strongly connected component
(SCC) formed from their union must always be unique.
* Given the use of dominance in the definition, all loops are
statically reachable from the entry of the function.
* Every loop must have a header block, and some set of predecessors
outside the loop. A loop is allowed to be statically infinite, so
there need not be any exiting edges.
* Any two loops are either fully disjoint (no intersecting blocks), or
one must be a sub-loop of the other.
* Loops in a function form a forest. One implication of this fact
is that a loop either has no parent or a single parent.
A loop may have an arbitrary number of exits, both explicit (via
control flow) and implicit (via throwing calls which transfer control
out of the containing function). There is no special requirement on
the form or structure of exit blocks (the block outside the loop which
is branched to). They may have multiple predecessors, phis, etc...
Key Terminology
Loop Definition
===============
**Header Block** - The basic block which dominates all other blocks
contained within the loop. As such, it is the first one executed if
the loop executes at all. Note that a block can be the header of
two separate loops at the same time, but only if one is a sub-loop
of the other.
Loops are an important concept for a code optimizer. In LLVM, detection
of loops in a control-flow graph is done by :ref:`loopinfo`. It is based
on the following definition.
**Exiting Block** - A basic block contained within a given loop which has
at least one successor outside of the loop and one successor inside the
loop. (The latter is a consequence of the block being contained within
an SCC which is part of the loop.) That is, it has a successor which
is an Exit Block.
A loop is a subset of nodes from the control-flow graph (CFG; where
nodes represent basic blocks) with the following properties:
**Exit Block** - A basic block outside of the associated loop which has a
predecessor inside the loop. That is, it has a predecessor which is
an Exiting Block.
1. The induced subgraph (which is the subgraph that contains all the
edges from the CFG within the loop) is strongly connected
(every node is reachable from all others).
**Latch Block** - A basic block within the loop whose successors include
the header block of the loop. Thus, a latch is a source of backedge.
A loop may have multiple latch blocks. A latch block may be either
conditional or unconditional.
2. All edges from outside the subset into the subset point to the same
node, called the **header**. As a consequence, the header dominates
all nodes in the loop (i.e. every execution path to any of the loop's
node will have to pass through the header).
**Backedge(s)** - The edge(s) in the CFG from latch blocks to the header
block. Note that there can be multiple such edges, and even multiple
such edges leaving a single latch block.
3. The loop is the maximum subset with these properties. That is, no
additional nodes from the CFG can be added such that the induced
subgraph would still be strongly connected and the header would
remain the same.
**Loop Predecessor** - The predecessor blocks of the loop header which
are not contained by the loop itself. These are the only blocks
through which execution can enter the loop. When used in the
singular form implies that there is only one such unique block.
In computer science literature, this is often called a *natural loop*.
In LLVM, this is the only definition of a loop.
**Preheader Block** - A preheader is a (singular) loop predecessor which
ends in an unconditional transfer of control to the loop header. Note
that not all loops have such blocks.
**Backedge Taken Count** - The number of times the backedge will execute
before some interesting event happens. Commonly used without
qualification of the event as a shorthand for when some exiting block
branches to some exit block. May be zero, or not statically computable.
Terminology
-----------
**Iteration Count** - The number of times the header will execute before
some interesting event happens. Commonly used without qualification to
refer to the iteration count at which the loop exits. Will always be
one greater than the backedge taken count. *Warning*: Preceding
statement is true in the *integer domain*; if you're dealing with fixed
width integers (such as LLVM Values or SCEVs), you need to be cautious
of overflow when converting one to the other.
The definition of a loop comes with some additional terminology:
It's important to note that the same basic block can play multiple
roles in the same loop, or in different loops at once. For example, a
single block can be the header for two nested loops at once, while
also being an exiting block for the inner one only, and an exit block
for a sibling loop. Example:
* An **entering block** (or **loop predecessor**) is a non-loop node
that has an edge into the loop (necessarily the header). If there is
only one entering block entering block, and its only edge is to the
header, it is also called the loop's **preheader**. The preheader
dominates the loop without itself being part of the loop.
* A **latch** is a loop node that has an edge to the header.
* A **backedge** is an edge from a latch to the header.
* An **exiting edge** is an edge from inside the loop to a node outside
of the loop. The source of such an edge is called an **exiting block**, its
target is an **exit block**.
.. image:: ./loop-terminology.svg
:width: 400 px
Important Notes
---------------
This loop definition has some noteworthy consequences:
* A node can be the header of at most one loop. As such, a loop can be
identified by its header. Due to the header being the only entry into
a loop, it can be called a Single-Entry-Multiple-Exits (SEME) region.
* For basic blocks that are not reachable from the function's entry, the
concept of loops is undefined. This follows from the concept of
dominance being undefined as well.
* The smallest loop consists of a single basic block that branches to
itself. In this case that block is the header, latch (and exiting
block if it has another edge to a different block) at the same time.
A single block that has no branch to itself is not considered a loop,
even though it is trivially strongly connected.
.. image:: ./loop-single.svg
:width: 300 px
In this case, the role of header, exiting block and latch fall to the
same node. :ref:`loopinfo` reports this as:
.. code-block:: console
$ opt input.ll -loops -analyze
Loop at depth 1 containing: %for.body<header><latch><exiting>
* Loops can be nested inside each other. That is, a loop's node set can
be a subset of another loop with a different loop header. The loop
hierarchy in a function forms a forest: Each top-level loop is the
root of the tree of the loops nested inside it.
.. image:: ./loop-nested.svg
:width: 350 px
* It is not possible that two loops share only a few of their nodes.
Two loops are either disjoint or one is nested inside the other. In
the example below the left and right subsets both violate the
maximality condition. Only the merge of both sets is considered a loop.
.. image:: ./loop-nonmaximal.svg
:width: 250 px
* It is also possible that two logical loops share a header, but are
considered a single loop by LLVM:
.. code-block:: C
while (..) {
for (..) {}
do {
do {
// <-- block of interest
if (exit) break;
} while (..);
} while (..)
for (int i = 0; i < 128; ++i)
for (int j = 0; j < 128; ++j)
body(i,j);
which might be represented in LLVM-IR as follows. Note that there is
only a single header and hence just a single loop.
.. image:: ./loop-merge.svg
:width: 400 px
The :ref:`LoopSimplify <loop-terminology-loop-simplify>` pass will
detect the loop and ensure separate headers for the outer and inner loop.
.. image:: ./loop-separate.svg
:width: 400 px
* A cycle in the CFG does not imply there is a loop. The example below
shows such a CFG, where there is no header node that dominates all
other nodes in the cycle. This is called **irreducible control-flow**.
.. image:: ./loop-irreducible.svg
:width: 150 px
The term reducible results from the ability to collapse the CFG into a
single node by successively replacing one of three base structures with
a single node: A sequential execution of basic blocks, a conditional
branching (or switch) with re-joining, and a basic block looping on itself.
`Wikipedia <https://en.wikipedia.org/wiki/Control-flow_graph#Reducibility>`_
has a more formal definition, which basically says that every cycle has
a dominating header.
* Irreducible control-flow can occur at any level of the loop nesting.
That is, a loop that itself does not contain any loops can still have
cyclic control flow in its body; a loop that is not nested inside
another loop can still be part of an outer cycle; and there can be
additional cycles between any two loops where one is contained in the other.
* Exiting edges are not the only way to break out of a loop. Other
possibilities are unreachable terminators, [[noreturn]] functions,
exceptions, signals, and your computer's power button.
* A basic block "inside" the loop that does not have a path back to the
loop (i.e. to a latch or header) is not considered part of the loop.
This is illustrated by the following code.
.. code-block:: C
for (unsigned i = 0; i <= n; ++i) {
if (c1) {
// When reaching this block, we will have exited the loop.
do_something();
break;
}
if (c2) {
// abort(), never returns, so we have exited the loop.
abort();
}
if (c3) {
// The unreachable allows the compiler to assume that this will not rejoin the loop.
do_something();
__builtin_unreachable();
}
if (c4) {
// This statically infinite loop is not nested because control-flow will not continue with the for-loop.
while(true) {
do_something();
}
}
}
* There is no requirement for the control flow to eventually leave the
loop, i.e. a loop can be infinite. A **statically infinite loop** is a
loop that has no exiting edges. A **dynamically infinite loop** has
exiting edges, but it is possible to be never taken. This may happen
only under some circumstances, such as when n == UINT_MAX in the code
below.
.. code-block:: C
for (unsigned i = 0; i <= n; ++i)
body(i);
It is possible for the optimizer to turn a dynamically infinite loop
into a statically infinite loop, for instance when it can prove that the
exiting condition is always false. Because the exiting edge is never
taken, the optimizer can change the conditional branch into an
unconditional one.
Note that under some circumstances the compiler may assume that a loop will
eventually terminate without proving it. For instance, it may remove a loop
that does not do anything in its body. If the loop was infinite, this
optimization resulted in an "infinite" performance speed-up. A call
to the intrinsic :ref:`llvm.sideeffect<llvm_sideeffect>` can be added
into the loop to ensure that the optimizer does not make this assumption
without proof.
* The number of executions of the loop header before leaving the loop is
the **loop trip count** (or **iteration count**). If the loop should
not be executed at all, a **loop guard** must skip the entire loop:
.. image:: ./loop-guard.svg
:width: 500 px
Since the first thing a loop header might do is to check whether there
is another execution and if not, immediately exit without doing any work
(also see :ref:`loop-terminology-loop-rotate`), loop trip count is not
the best measure of a loop's number of iterations. For instance, the
number of header executions of the code below for a non-positive n
(before loop rotation) is 1, even though the loop body is not executed
at all.
.. code-block:: C
for (int i = 0; i < n; ++i)
body(i);
A better measure is the **backedge-taken count**, which is the number of
times any of the backedges is taken before the loop. It is one less than
the trip count for executions that enter the header.
.. _loopinfo:
LoopInfo
========

1079
docs/loop-guard.svg Normal file

File diff suppressed because it is too large Load Diff

After

Width:  |  Height:  |  Size: 108 KiB

772
docs/loop-irreducible.svg Normal file
View File

@ -0,0 +1,772 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="48.293pt" height="95.556pt" viewBox="0 0 48.293 95.556" 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.125 -2.1875 C 4.125 -2.515625 4.109375 -3.265625 3.734375 -3.875 C 3.3125 -4.484375 2.71875 -4.59375 2.359375 -4.59375 C 1.25 -4.59375 0.34375 -3.53125 0.34375 -2.25 C 0.34375 -0.9375 1.3125 0.109375 2.5 0.109375 C 3.125 0.109375 3.703125 -0.125 4.09375 -0.40625 L 4.03125 -1.0625 C 3.40625 -0.53125 2.734375 -0.5 2.515625 -0.5 C 1.71875 -0.5 1.078125 -1.203125 1.046875 -2.1875 Z M 3.5625 -2.734375 L 1.09375 -2.734375 C 1.25 -3.484375 1.78125 -3.984375 2.359375 -3.984375 C 2.875 -3.984375 3.421875 -3.65625 3.5625 -2.734375 Z M 3.5625 -2.734375 "/>
</symbol>
<symbol overflow="visible" id="glyph0-2">
<path style="stroke:none;" d="M 4.34375 0 L 4.34375 -2.96875 C 4.34375 -3.625 4.1875 -4.53125 2.96875 -4.53125 C 2.078125 -4.53125 1.578125 -3.859375 1.53125 -3.78125 L 1.53125 -4.484375 L 0.8125 -4.484375 L 0.8125 0 L 1.578125 0 L 1.578125 -2.4375 C 1.578125 -3.09375 1.828125 -3.921875 2.59375 -3.921875 C 3.546875 -3.921875 3.5625 -3.21875 3.5625 -2.90625 L 3.5625 0 Z M 4.34375 0 "/>
</symbol>
<symbol overflow="visible" id="glyph0-3">
<path style="stroke:none;" d="M 3.3125 -0.265625 L 3.15625 -0.859375 C 2.890625 -0.640625 2.578125 -0.53125 2.25 -0.53125 C 1.890625 -0.53125 1.75 -0.828125 1.75 -1.359375 L 1.75 -3.84375 L 3.15625 -3.84375 L 3.15625 -4.421875 L 1.75 -4.421875 L 1.75 -5.6875 L 1.0625 -5.6875 L 1.0625 -4.421875 L 0.1875 -4.421875 L 0.1875 -3.84375 L 1.03125 -3.84375 L 1.03125 -1.1875 C 1.03125 -0.59375 1.171875 0.109375 1.859375 0.109375 C 2.546875 0.109375 3.0625 -0.140625 3.3125 -0.265625 Z M 3.3125 -0.265625 "/>
</symbol>
<symbol overflow="visible" id="glyph0-4">
<path style="stroke:none;" d="M 3.265625 -3.875 L 3.265625 -4.53125 C 2.375 -4.53125 1.828125 -4.03125 1.515625 -3.578125 L 1.515625 -4.484375 L 0.8125 -4.484375 L 0.8125 0 L 1.5625 0 L 1.5625 -2.140625 C 1.5625 -3.125 2.28125 -3.84375 3.265625 -3.875 Z M 3.265625 -3.875 "/>
</symbol>
<symbol overflow="visible" id="glyph0-5">
<path style="stroke:none;" d="M 4.453125 -4.421875 L 3.703125 -4.421875 C 2.40625 -1.25 2.375 -0.796875 2.375 -0.5625 L 2.359375 -0.5625 C 2.296875 -1.234375 1.5 -3.09375 1.46875 -3.1875 L 0.921875 -4.421875 L 0.140625 -4.421875 L 2.078125 0 L 1.71875 0.890625 C 1.453125 1.46875 1.28125 1.46875 1.140625 1.46875 C 0.984375 1.46875 0.671875 1.4375 0.375 1.3125 L 0.421875 1.96875 C 0.640625 2.015625 0.921875 2.046875 1.140625 2.046875 C 1.5 2.046875 1.859375 1.921875 2.265625 0.90625 Z M 4.453125 -4.421875 "/>
</symbol>
<symbol overflow="visible" id="glyph0-6">
<path style="stroke:none;" d="M 4.078125 0 L 4.078125 -2.875 C 4.078125 -3.890625 3.34375 -4.59375 2.4375 -4.59375 C 1.78125 -4.59375 1.328125 -4.4375 0.875 -4.171875 L 0.921875 -3.515625 C 1.453125 -3.875 1.9375 -4 2.4375 -4 C 2.90625 -4 3.296875 -3.609375 3.296875 -2.875 L 3.296875 -2.4375 C 1.796875 -2.421875 0.53125 -2 0.53125 -1.125 C 0.53125 -0.703125 0.8125 0.109375 1.671875 0.109375 C 1.8125 0.109375 2.75 0.09375 3.328125 -0.359375 L 3.328125 0 Z M 3.296875 -1.3125 C 3.296875 -1.125 3.296875 -0.875 2.953125 -0.6875 C 2.671875 -0.515625 2.296875 -0.5 2.1875 -0.5 C 1.703125 -0.5 1.25 -0.734375 1.25 -1.140625 C 1.25 -1.84375 2.875 -1.90625 3.296875 -1.9375 Z M 3.296875 -1.3125 "/>
</symbol>
<symbol overflow="visible" id="glyph0-7">
<path style="stroke:none;" d="M 4.78125 -2.21875 C 4.78125 -3.453125 4.109375 -4.53125 3.171875 -4.53125 C 2.78125 -4.53125 2.15625 -4.4375 1.5625 -3.953125 L 1.5625 -6.921875 L 0.8125 -6.921875 L 0.8125 0 L 1.59375 0 L 1.59375 -0.453125 C 1.828125 -0.234375 2.265625 0.109375 2.9375 0.109375 C 3.921875 0.109375 4.78125 -0.890625 4.78125 -2.21875 Z M 4 -2.21875 C 4 -0.921875 3.171875 -0.5 2.5625 -0.5 C 2.171875 -0.5 1.84375 -0.671875 1.59375 -1.140625 L 1.59375 -3.34375 C 1.75 -3.578125 2.109375 -3.921875 2.65625 -3.921875 C 3.25 -3.921875 4 -3.5 4 -2.21875 Z M 4 -2.21875 "/>
</symbol>
</g>
<clipPath id="clip1">
<path d="M 10 24 L 39 24 L 39 39 L 10 39 Z M 10 24 "/>
</clipPath>
<clipPath id="clip2">
<path d="M 34.15625 24.480469 L 14.316406 24.480469 C 12.113281 24.480469 10.328125 26.265625 10.328125 28.464844 L 10.328125 34.867188 C 10.328125 37.070312 12.113281 38.851562 14.316406 38.851562 L 34.15625 38.851562 C 36.359375 38.851562 38.140625 37.070312 38.140625 34.867188 L 38.140625 28.464844 C 38.140625 26.265625 36.359375 24.480469 34.15625 24.480469 Z M 34.15625 24.480469 "/>
</clipPath>
<clipPath id="clip3">
<path d="M 4.648438 54.664062 L 52.699219 41.789062 L 43.824219 8.667969 L -4.226562 21.542969 Z M 4.648438 54.664062 "/>
</clipPath>
<linearGradient id="linear0" gradientUnits="userSpaceOnUse" x1="0" y1="19.259335" x2="0" y2="80.740665" gradientTransform="matrix(0.480502,-0.12875,-0.0887442,-0.331198,4.648116,54.664404)">
<stop offset="0" style="stop-color:rgb(100%,100%,100%);stop-opacity:1;"/>
<stop offset="0.0625" style="stop-color:rgb(100%,100%,100%);stop-opacity:1;"/>
<stop offset="0.09375" style="stop-color:rgb(99.987793%,99.993896%,99.993896%);stop-opacity:1;"/>
<stop offset="0.0976563" style="stop-color:rgb(99.736023%,99.867249%,99.867249%);stop-opacity:1;"/>
<stop offset="0.101562" style="stop-color:rgb(99.49646%,99.74823%,99.74823%);stop-opacity:1;"/>
<stop offset="0.105469" style="stop-color:rgb(99.255371%,99.627686%,99.627686%);stop-opacity:1;"/>
<stop offset="0.109375" style="stop-color:rgb(99.015808%,99.507141%,99.507141%);stop-opacity:1;"/>
<stop offset="0.113281" style="stop-color:rgb(98.774719%,99.386597%,99.386597%);stop-opacity:1;"/>
<stop offset="0.117188" style="stop-color:rgb(98.535156%,99.267578%,99.267578%);stop-opacity:1;"/>
<stop offset="0.121094" style="stop-color:rgb(98.294067%,99.147034%,99.147034%);stop-opacity:1;"/>
<stop offset="0.125" style="stop-color:rgb(98.054504%,99.026489%,99.026489%);stop-opacity:1;"/>
<stop offset="0.128906" style="stop-color:rgb(97.814941%,98.905945%,98.905945%);stop-opacity:1;"/>
<stop offset="0.132812" style="stop-color:rgb(97.575378%,98.786926%,98.786926%);stop-opacity:1;"/>
<stop offset="0.136719" style="stop-color:rgb(97.33429%,98.666382%,98.666382%);stop-opacity:1;"/>
<stop offset="0.140625" style="stop-color:rgb(97.094727%,98.547363%,98.547363%);stop-opacity:1;"/>
<stop offset="0.144531" style="stop-color:rgb(96.853638%,98.426819%,98.426819%);stop-opacity:1;"/>
<stop offset="0.148438" style="stop-color:rgb(96.614075%,98.306274%,98.306274%);stop-opacity:1;"/>
<stop offset="0.152344" style="stop-color:rgb(96.372986%,98.18573%,98.18573%);stop-opacity:1;"/>
<stop offset="0.15625" style="stop-color:rgb(96.133423%,98.066711%,98.066711%);stop-opacity:1;"/>
<stop offset="0.160156" style="stop-color:rgb(95.892334%,97.946167%,97.946167%);stop-opacity:1;"/>
<stop offset="0.164062" style="stop-color:rgb(95.652771%,97.825623%,97.825623%);stop-opacity:1;"/>
<stop offset="0.167969" style="stop-color:rgb(95.413208%,97.705078%,97.705078%);stop-opacity:1;"/>
<stop offset="0.171875" style="stop-color:rgb(95.173645%,97.58606%,97.58606%);stop-opacity:1;"/>
<stop offset="0.175781" style="stop-color:rgb(94.932556%,97.465515%,97.465515%);stop-opacity:1;"/>
<stop offset="0.179688" style="stop-color:rgb(94.692993%,97.346497%,97.346497%);stop-opacity:1;"/>
<stop offset="0.183594" style="stop-color:rgb(94.451904%,97.225952%,97.225952%);stop-opacity:1;"/>
<stop offset="0.1875" style="stop-color:rgb(94.212341%,97.105408%,97.105408%);stop-opacity:1;"/>
<stop offset="0.191406" style="stop-color:rgb(93.971252%,96.984863%,96.984863%);stop-opacity:1;"/>
<stop offset="0.195312" style="stop-color:rgb(93.731689%,96.865845%,96.865845%);stop-opacity:1;"/>
<stop offset="0.199219" style="stop-color:rgb(93.492126%,96.7453%,96.7453%);stop-opacity:1;"/>
<stop offset="0.203125" style="stop-color:rgb(93.252563%,96.626282%,96.626282%);stop-opacity:1;"/>
<stop offset="0.207031" style="stop-color:rgb(93.011475%,96.505737%,96.505737%);stop-opacity:1;"/>
<stop offset="0.210938" style="stop-color:rgb(92.771912%,96.385193%,96.385193%);stop-opacity:1;"/>
<stop offset="0.214844" style="stop-color:rgb(92.530823%,96.264648%,96.264648%);stop-opacity:1;"/>
<stop offset="0.21875" style="stop-color:rgb(92.29126%,96.14563%,96.14563%);stop-opacity:1;"/>
<stop offset="0.222656" style="stop-color:rgb(92.050171%,96.025085%,96.025085%);stop-opacity:1;"/>
<stop offset="0.226562" style="stop-color:rgb(91.810608%,95.904541%,95.904541%);stop-opacity:1;"/>
<stop offset="0.230469" style="stop-color:rgb(91.569519%,95.783997%,95.783997%);stop-opacity:1;"/>
<stop offset="0.234375" style="stop-color:rgb(91.329956%,95.664978%,95.664978%);stop-opacity:1;"/>
<stop offset="0.238281" style="stop-color:rgb(91.090393%,95.544434%,95.544434%);stop-opacity:1;"/>
<stop offset="0.242188" style="stop-color:rgb(90.85083%,95.425415%,95.425415%);stop-opacity:1;"/>
<stop offset="0.246094" style="stop-color:rgb(90.609741%,95.304871%,95.304871%);stop-opacity:1;"/>
<stop offset="0.25" style="stop-color:rgb(90.370178%,95.184326%,95.184326%);stop-opacity:1;"/>
<stop offset="0.253906" style="stop-color:rgb(90.129089%,95.063782%,95.063782%);stop-opacity:1;"/>
<stop offset="0.257812" style="stop-color:rgb(89.889526%,94.944763%,94.944763%);stop-opacity:1;"/>
<stop offset="0.261719" style="stop-color:rgb(89.648438%,94.824219%,94.824219%);stop-opacity:1;"/>
<stop offset="0.265625" style="stop-color:rgb(89.408875%,94.703674%,94.703674%);stop-opacity:1;"/>
<stop offset="0.269531" style="stop-color:rgb(89.169312%,94.58313%,94.58313%);stop-opacity:1;"/>
<stop offset="0.273438" style="stop-color:rgb(88.929749%,94.464111%,94.464111%);stop-opacity:1;"/>
<stop offset="0.277344" style="stop-color:rgb(88.68866%,94.343567%,94.343567%);stop-opacity:1;"/>
<stop offset="0.28125" style="stop-color:rgb(88.449097%,94.224548%,94.224548%);stop-opacity:1;"/>
<stop offset="0.285156" style="stop-color:rgb(88.208008%,94.104004%,94.104004%);stop-opacity:1;"/>
<stop offset="0.289062" style="stop-color:rgb(87.968445%,93.983459%,93.983459%);stop-opacity:1;"/>
<stop offset="0.292969" style="stop-color:rgb(87.727356%,93.862915%,93.862915%);stop-opacity:1;"/>
<stop offset="0.296875" style="stop-color:rgb(87.487793%,93.743896%,93.743896%);stop-opacity:1;"/>
<stop offset="0.300781" style="stop-color:rgb(87.246704%,93.623352%,93.623352%);stop-opacity:1;"/>
<stop offset="0.304688" style="stop-color:rgb(87.007141%,93.502808%,93.502808%);stop-opacity:1;"/>
<stop offset="0.308594" style="stop-color:rgb(86.767578%,93.382263%,93.382263%);stop-opacity:1;"/>
<stop offset="0.3125" style="stop-color:rgb(86.528015%,93.263245%,93.263245%);stop-opacity:1;"/>
<stop offset="0.316406" style="stop-color:rgb(86.286926%,93.1427%,93.1427%);stop-opacity:1;"/>
<stop offset="0.320312" style="stop-color:rgb(86.047363%,93.023682%,93.023682%);stop-opacity:1;"/>
<stop offset="0.324219" style="stop-color:rgb(85.806274%,92.903137%,92.903137%);stop-opacity:1;"/>
<stop offset="0.328125" style="stop-color:rgb(85.566711%,92.782593%,92.782593%);stop-opacity:1;"/>
<stop offset="0.332031" style="stop-color:rgb(85.325623%,92.662048%,92.662048%);stop-opacity:1;"/>
<stop offset="0.335938" style="stop-color:rgb(85.08606%,92.54303%,92.54303%);stop-opacity:1;"/>
<stop offset="0.339844" style="stop-color:rgb(84.846497%,92.422485%,92.422485%);stop-opacity:1;"/>
<stop offset="0.34375" style="stop-color:rgb(84.606934%,92.303467%,92.303467%);stop-opacity:1;"/>
<stop offset="0.347656" style="stop-color:rgb(84.365845%,92.182922%,92.182922%);stop-opacity:1;"/>
<stop offset="0.351562" style="stop-color:rgb(84.126282%,92.062378%,92.062378%);stop-opacity:1;"/>
<stop offset="0.355469" style="stop-color:rgb(83.885193%,91.941833%,91.941833%);stop-opacity:1;"/>
<stop offset="0.359375" style="stop-color:rgb(83.64563%,91.822815%,91.822815%);stop-opacity:1;"/>
<stop offset="0.363281" style="stop-color:rgb(83.404541%,91.702271%,91.702271%);stop-opacity:1;"/>
<stop offset="0.367188" style="stop-color:rgb(83.164978%,91.581726%,91.581726%);stop-opacity:1;"/>
<stop offset="0.371094" style="stop-color:rgb(82.923889%,91.461182%,91.461182%);stop-opacity:1;"/>
<stop offset="0.375" style="stop-color:rgb(82.684326%,91.342163%,91.342163%);stop-opacity:1;"/>
<stop offset="0.378906" style="stop-color:rgb(82.444763%,91.221619%,91.221619%);stop-opacity:1;"/>
<stop offset="0.382812" style="stop-color:rgb(82.2052%,91.1026%,91.1026%);stop-opacity:1;"/>
<stop offset="0.386719" style="stop-color:rgb(81.964111%,90.982056%,90.982056%);stop-opacity:1;"/>
<stop offset="0.390625" style="stop-color:rgb(81.724548%,90.861511%,90.861511%);stop-opacity:1;"/>
<stop offset="0.394531" style="stop-color:rgb(81.483459%,90.740967%,90.740967%);stop-opacity:1;"/>
<stop offset="0.398438" style="stop-color:rgb(81.243896%,90.621948%,90.621948%);stop-opacity:1;"/>
<stop offset="0.402344" style="stop-color:rgb(81.002808%,90.501404%,90.501404%);stop-opacity:1;"/>
<stop offset="0.40625" style="stop-color:rgb(80.763245%,90.380859%,90.380859%);stop-opacity:1;"/>
<stop offset="0.410156" style="stop-color:rgb(80.523682%,90.260315%,90.260315%);stop-opacity:1;"/>
<stop offset="0.414062" style="stop-color:rgb(80.284119%,90.141296%,90.141296%);stop-opacity:1;"/>
<stop offset="0.417969" style="stop-color:rgb(80.04303%,90.020752%,90.020752%);stop-opacity:1;"/>
<stop offset="0.421875" style="stop-color:rgb(79.803467%,89.901733%,89.901733%);stop-opacity:1;"/>
<stop offset="0.425781" style="stop-color:rgb(79.562378%,89.781189%,89.781189%);stop-opacity:1;"/>
<stop offset="0.429688" style="stop-color:rgb(79.322815%,89.660645%,89.660645%);stop-opacity:1;"/>
<stop offset="0.433594" style="stop-color:rgb(79.081726%,89.5401%,89.5401%);stop-opacity:1;"/>
<stop offset="0.4375" style="stop-color:rgb(78.842163%,89.421082%,89.421082%);stop-opacity:1;"/>
<stop offset="0.441406" style="stop-color:rgb(78.601074%,89.300537%,89.300537%);stop-opacity:1;"/>
<stop offset="0.445312" style="stop-color:rgb(78.361511%,89.179993%,89.179993%);stop-opacity:1;"/>
<stop offset="0.449219" style="stop-color:rgb(78.121948%,89.059448%,89.059448%);stop-opacity:1;"/>
<stop offset="0.453125" style="stop-color:rgb(77.882385%,88.94043%,88.94043%);stop-opacity:1;"/>
<stop offset="0.457031" style="stop-color:rgb(77.641296%,88.819885%,88.819885%);stop-opacity:1;"/>
<stop offset="0.460937" style="stop-color:rgb(77.401733%,88.700867%,88.700867%);stop-opacity:1;"/>
<stop offset="0.464844" style="stop-color:rgb(77.160645%,88.580322%,88.580322%);stop-opacity:1;"/>
<stop offset="0.46875" style="stop-color:rgb(76.921082%,88.459778%,88.459778%);stop-opacity:1;"/>
<stop offset="0.472656" style="stop-color:rgb(76.679993%,88.339233%,88.339233%);stop-opacity:1;"/>
<stop offset="0.476562" style="stop-color:rgb(76.44043%,88.220215%,88.220215%);stop-opacity:1;"/>
<stop offset="0.480469" style="stop-color:rgb(76.199341%,88.09967%,88.09967%);stop-opacity:1;"/>
<stop offset="0.484375" style="stop-color:rgb(75.959778%,87.979126%,87.979126%);stop-opacity:1;"/>
<stop offset="0.488281" style="stop-color:rgb(75.720215%,87.858582%,87.858582%);stop-opacity:1;"/>
<stop offset="0.492188" style="stop-color:rgb(75.480652%,87.739563%,87.739563%);stop-opacity:1;"/>
<stop offset="0.496094" style="stop-color:rgb(75.239563%,87.619019%,87.619019%);stop-opacity:1;"/>
<stop offset="0.5" style="stop-color:rgb(75%,87.5%,87.5%);stop-opacity:1;"/>
<stop offset="0.503906" style="stop-color:rgb(74.758911%,87.379456%,87.379456%);stop-opacity:1;"/>
<stop offset="0.507812" style="stop-color:rgb(74.519348%,87.258911%,87.258911%);stop-opacity:1;"/>
<stop offset="0.511719" style="stop-color:rgb(74.278259%,87.138367%,87.138367%);stop-opacity:1;"/>
<stop offset="0.515625" style="stop-color:rgb(74.038696%,87.019348%,87.019348%);stop-opacity:1;"/>
<stop offset="0.519531" style="stop-color:rgb(73.799133%,86.898804%,86.898804%);stop-opacity:1;"/>
<stop offset="0.523438" style="stop-color:rgb(73.55957%,86.779785%,86.779785%);stop-opacity:1;"/>
<stop offset="0.527344" style="stop-color:rgb(73.318481%,86.659241%,86.659241%);stop-opacity:1;"/>
<stop offset="0.53125" style="stop-color:rgb(73.078918%,86.538696%,86.538696%);stop-opacity:1;"/>
<stop offset="0.535156" style="stop-color:rgb(72.83783%,86.418152%,86.418152%);stop-opacity:1;"/>
<stop offset="0.539062" style="stop-color:rgb(72.598267%,86.299133%,86.299133%);stop-opacity:1;"/>
<stop offset="0.542969" style="stop-color:rgb(72.357178%,86.178589%,86.178589%);stop-opacity:1;"/>
<stop offset="0.546875" style="stop-color:rgb(72.117615%,86.058044%,86.058044%);stop-opacity:1;"/>
<stop offset="0.550781" style="stop-color:rgb(71.876526%,85.9375%,85.9375%);stop-opacity:1;"/>
<stop offset="0.554688" style="stop-color:rgb(71.636963%,85.818481%,85.818481%);stop-opacity:1;"/>
<stop offset="0.558594" style="stop-color:rgb(71.3974%,85.697937%,85.697937%);stop-opacity:1;"/>
<stop offset="0.5625" style="stop-color:rgb(71.157837%,85.578918%,85.578918%);stop-opacity:1;"/>
<stop offset="0.566406" style="stop-color:rgb(70.916748%,85.458374%,85.458374%);stop-opacity:1;"/>
<stop offset="0.570313" style="stop-color:rgb(70.677185%,85.33783%,85.33783%);stop-opacity:1;"/>
<stop offset="0.574219" style="stop-color:rgb(70.436096%,85.217285%,85.217285%);stop-opacity:1;"/>
<stop offset="0.578125" style="stop-color:rgb(70.196533%,85.098267%,85.098267%);stop-opacity:1;"/>
<stop offset="0.582031" style="stop-color:rgb(69.955444%,84.977722%,84.977722%);stop-opacity:1;"/>
<stop offset="0.585937" style="stop-color:rgb(69.715881%,84.857178%,84.857178%);stop-opacity:1;"/>
<stop offset="0.589844" style="stop-color:rgb(69.476318%,84.736633%,84.736633%);stop-opacity:1;"/>
<stop offset="0.59375" style="stop-color:rgb(69.236755%,84.617615%,84.617615%);stop-opacity:1;"/>
<stop offset="0.597656" style="stop-color:rgb(68.995667%,84.49707%,84.49707%);stop-opacity:1;"/>
<stop offset="0.601562" style="stop-color:rgb(68.756104%,84.378052%,84.378052%);stop-opacity:1;"/>
<stop offset="0.605469" style="stop-color:rgb(68.515015%,84.257507%,84.257507%);stop-opacity:1;"/>
<stop offset="0.609375" style="stop-color:rgb(68.275452%,84.136963%,84.136963%);stop-opacity:1;"/>
<stop offset="0.613281" style="stop-color:rgb(68.034363%,84.016418%,84.016418%);stop-opacity:1;"/>
<stop offset="0.617188" style="stop-color:rgb(67.7948%,83.8974%,83.8974%);stop-opacity:1;"/>
<stop offset="0.621094" style="stop-color:rgb(67.553711%,83.776855%,83.776855%);stop-opacity:1;"/>
<stop offset="0.625" style="stop-color:rgb(67.314148%,83.656311%,83.656311%);stop-opacity:1;"/>
<stop offset="0.628906" style="stop-color:rgb(67.074585%,83.535767%,83.535767%);stop-opacity:1;"/>
<stop offset="0.632812" style="stop-color:rgb(66.835022%,83.416748%,83.416748%);stop-opacity:1;"/>
<stop offset="0.636719" style="stop-color:rgb(66.593933%,83.296204%,83.296204%);stop-opacity:1;"/>
<stop offset="0.640625" style="stop-color:rgb(66.35437%,83.177185%,83.177185%);stop-opacity:1;"/>
<stop offset="0.644531" style="stop-color:rgb(66.113281%,83.056641%,83.056641%);stop-opacity:1;"/>
<stop offset="0.648438" style="stop-color:rgb(65.873718%,82.936096%,82.936096%);stop-opacity:1;"/>
<stop offset="0.652344" style="stop-color:rgb(65.632629%,82.815552%,82.815552%);stop-opacity:1;"/>
<stop offset="0.65625" style="stop-color:rgb(65.393066%,82.696533%,82.696533%);stop-opacity:1;"/>
<stop offset="0.660156" style="stop-color:rgb(65.153503%,82.575989%,82.575989%);stop-opacity:1;"/>
<stop offset="0.664063" style="stop-color:rgb(64.91394%,82.45697%,82.45697%);stop-opacity:1;"/>
<stop offset="0.667969" style="stop-color:rgb(64.672852%,82.336426%,82.336426%);stop-opacity:1;"/>
<stop offset="0.671875" style="stop-color:rgb(64.433289%,82.215881%,82.215881%);stop-opacity:1;"/>
<stop offset="0.675781" style="stop-color:rgb(64.1922%,82.095337%,82.095337%);stop-opacity:1;"/>
<stop offset="0.679688" style="stop-color:rgb(63.952637%,81.976318%,81.976318%);stop-opacity:1;"/>
<stop offset="0.683594" style="stop-color:rgb(63.711548%,81.855774%,81.855774%);stop-opacity:1;"/>
<stop offset="0.6875" style="stop-color:rgb(63.471985%,81.735229%,81.735229%);stop-opacity:1;"/>
<stop offset="0.691406" style="stop-color:rgb(63.230896%,81.614685%,81.614685%);stop-opacity:1;"/>
<stop offset="0.695313" style="stop-color:rgb(62.991333%,81.495667%,81.495667%);stop-opacity:1;"/>
<stop offset="0.699219" style="stop-color:rgb(62.75177%,81.375122%,81.375122%);stop-opacity:1;"/>
<stop offset="0.703125" style="stop-color:rgb(62.512207%,81.256104%,81.256104%);stop-opacity:1;"/>
<stop offset="0.707031" style="stop-color:rgb(62.271118%,81.135559%,81.135559%);stop-opacity:1;"/>
<stop offset="0.710937" style="stop-color:rgb(62.031555%,81.015015%,81.015015%);stop-opacity:1;"/>
<stop offset="0.714844" style="stop-color:rgb(61.790466%,80.89447%,80.89447%);stop-opacity:1;"/>
<stop offset="0.71875" style="stop-color:rgb(61.550903%,80.775452%,80.775452%);stop-opacity:1;"/>
<stop offset="0.722656" style="stop-color:rgb(61.309814%,80.654907%,80.654907%);stop-opacity:1;"/>
<stop offset="0.726562" style="stop-color:rgb(61.070251%,80.534363%,80.534363%);stop-opacity:1;"/>
<stop offset="0.730469" style="stop-color:rgb(60.830688%,80.413818%,80.413818%);stop-opacity:1;"/>
<stop offset="0.734375" style="stop-color:rgb(60.591125%,80.2948%,80.2948%);stop-opacity:1;"/>
<stop offset="0.738281" style="stop-color:rgb(60.350037%,80.174255%,80.174255%);stop-opacity:1;"/>
<stop offset="0.742188" style="stop-color:rgb(60.110474%,80.055237%,80.055237%);stop-opacity:1;"/>
<stop offset="0.746094" style="stop-color:rgb(59.869385%,79.934692%,79.934692%);stop-opacity:1;"/>
<stop offset="0.75" style="stop-color:rgb(59.629822%,79.814148%,79.814148%);stop-opacity:1;"/>
<stop offset="0.753906" style="stop-color:rgb(59.388733%,79.693604%,79.693604%);stop-opacity:1;"/>
<stop offset="0.757812" style="stop-color:rgb(59.14917%,79.574585%,79.574585%);stop-opacity:1;"/>
<stop offset="0.761719" style="stop-color:rgb(58.908081%,79.454041%,79.454041%);stop-opacity:1;"/>
<stop offset="0.765625" style="stop-color:rgb(58.668518%,79.333496%,79.333496%);stop-opacity:1;"/>
<stop offset="0.769531" style="stop-color:rgb(58.428955%,79.212952%,79.212952%);stop-opacity:1;"/>
<stop offset="0.773438" style="stop-color:rgb(58.189392%,79.093933%,79.093933%);stop-opacity:1;"/>
<stop offset="0.777344" style="stop-color:rgb(57.948303%,78.973389%,78.973389%);stop-opacity:1;"/>
<stop offset="0.78125" style="stop-color:rgb(57.70874%,78.85437%,78.85437%);stop-opacity:1;"/>
<stop offset="0.785156" style="stop-color:rgb(57.467651%,78.733826%,78.733826%);stop-opacity:1;"/>
<stop offset="0.789063" style="stop-color:rgb(57.228088%,78.613281%,78.613281%);stop-opacity:1;"/>
<stop offset="0.792969" style="stop-color:rgb(56.987%,78.492737%,78.492737%);stop-opacity:1;"/>
<stop offset="0.796875" style="stop-color:rgb(56.747437%,78.373718%,78.373718%);stop-opacity:1;"/>
<stop offset="0.800781" style="stop-color:rgb(56.506348%,78.253174%,78.253174%);stop-opacity:1;"/>
<stop offset="0.804688" style="stop-color:rgb(56.266785%,78.132629%,78.132629%);stop-opacity:1;"/>
<stop offset="0.808594" style="stop-color:rgb(56.027222%,78.012085%,78.012085%);stop-opacity:1;"/>
<stop offset="0.8125" style="stop-color:rgb(55.787659%,77.893066%,77.893066%);stop-opacity:1;"/>
<stop offset="0.816406" style="stop-color:rgb(55.54657%,77.772522%,77.772522%);stop-opacity:1;"/>
<stop offset="0.820313" style="stop-color:rgb(55.307007%,77.653503%,77.653503%);stop-opacity:1;"/>
<stop offset="0.824219" style="stop-color:rgb(55.065918%,77.532959%,77.532959%);stop-opacity:1;"/>
<stop offset="0.828125" style="stop-color:rgb(54.826355%,77.412415%,77.412415%);stop-opacity:1;"/>
<stop offset="0.832031" style="stop-color:rgb(54.585266%,77.29187%,77.29187%);stop-opacity:1;"/>
<stop offset="0.835937" style="stop-color:rgb(54.345703%,77.172852%,77.172852%);stop-opacity:1;"/>
<stop offset="0.839844" style="stop-color:rgb(54.10614%,77.052307%,77.052307%);stop-opacity:1;"/>
<stop offset="0.84375" style="stop-color:rgb(53.866577%,76.933289%,76.933289%);stop-opacity:1;"/>
<stop offset="0.847656" style="stop-color:rgb(53.625488%,76.812744%,76.812744%);stop-opacity:1;"/>
<stop offset="0.851562" style="stop-color:rgb(53.385925%,76.6922%,76.6922%);stop-opacity:1;"/>
<stop offset="0.855469" style="stop-color:rgb(53.144836%,76.571655%,76.571655%);stop-opacity:1;"/>
<stop offset="0.859375" style="stop-color:rgb(52.905273%,76.452637%,76.452637%);stop-opacity:1;"/>
<stop offset="0.863281" style="stop-color:rgb(52.664185%,76.332092%,76.332092%);stop-opacity:1;"/>
<stop offset="0.867188" style="stop-color:rgb(52.424622%,76.211548%,76.211548%);stop-opacity:1;"/>
<stop offset="0.871094" style="stop-color:rgb(52.183533%,76.091003%,76.091003%);stop-opacity:1;"/>
<stop offset="0.875" style="stop-color:rgb(51.94397%,75.971985%,75.971985%);stop-opacity:1;"/>
<stop offset="0.878906" style="stop-color:rgb(51.704407%,75.85144%,75.85144%);stop-opacity:1;"/>
<stop offset="0.882812" style="stop-color:rgb(51.464844%,75.732422%,75.732422%);stop-opacity:1;"/>
<stop offset="0.886719" style="stop-color:rgb(51.223755%,75.611877%,75.611877%);stop-opacity:1;"/>
<stop offset="0.890625" style="stop-color:rgb(50.984192%,75.491333%,75.491333%);stop-opacity:1;"/>
<stop offset="0.894531" style="stop-color:rgb(50.743103%,75.370789%,75.370789%);stop-opacity:1;"/>
<stop offset="0.898438" style="stop-color:rgb(50.50354%,75.25177%,75.25177%);stop-opacity:1;"/>
<stop offset="0.902344" style="stop-color:rgb(50.262451%,75.131226%,75.131226%);stop-opacity:1;"/>
<stop offset="0.90625" style="stop-color:rgb(50.022888%,75.010681%,75.010681%);stop-opacity:1;"/>
<stop offset="0.9375" style="stop-color:rgb(50.010681%,75.004578%,75.004578%);stop-opacity:1;"/>
<stop offset="1" style="stop-color:rgb(50%,75%,75%);stop-opacity:1;"/>
</linearGradient>
<clipPath id="clip4">
<path d="M 0 7 L 48.292969 7 L 48.292969 56 L 0 56 Z M 0 7 "/>
</clipPath>
<clipPath id="clip5">
<path d="M 38 60 L 48.292969 60 L 48.292969 72 L 38 72 Z M 38 60 "/>
</clipPath>
<clipPath id="clip6">
<path d="M 36 58 L 48 58 L 48 70 L 36 70 Z M 36 58 "/>
</clipPath>
<clipPath id="clip7">
<path d="M 43.710938 58.21875 L 40.246094 58.21875 C 38.046875 58.21875 36.261719 60 36.261719 62.203125 L 36.261719 65.574219 C 36.261719 67.777344 38.046875 69.5625 40.246094 69.5625 L 43.710938 69.5625 C 45.910156 69.5625 47.695312 67.777344 47.695312 65.574219 L 47.695312 62.203125 C 47.695312 60 45.910156 58.21875 43.710938 58.21875 Z M 43.710938 58.21875 "/>
</clipPath>
<clipPath id="clip8">
<path d="M 33.925781 77.761719 L 55.890625 71.878906 L 50.03125 50.015625 L 28.070312 55.898438 Z M 33.925781 77.761719 "/>
</clipPath>
<linearGradient id="linear1" gradientUnits="userSpaceOnUse" x1="0" y1="19.259803" x2="0" y2="80.740197" gradientTransform="matrix(0.219624,-0.0588479,-0.0585839,-0.218638,33.92702,77.763308)">
<stop offset="0" style="stop-color:rgb(100%,100%,100%);stop-opacity:1;"/>
<stop offset="0.0625" style="stop-color:rgb(100%,100%,100%);stop-opacity:1;"/>
<stop offset="0.09375" style="stop-color:rgb(99.987793%,99.993896%,99.993896%);stop-opacity:1;"/>
<stop offset="0.0976562" style="stop-color:rgb(99.734497%,99.867249%,99.867249%);stop-opacity:1;"/>
<stop offset="0.101563" style="stop-color:rgb(99.494934%,99.746704%,99.746704%);stop-opacity:1;"/>
<stop offset="0.105469" style="stop-color:rgb(99.255371%,99.62616%,99.62616%);stop-opacity:1;"/>
<stop offset="0.109375" style="stop-color:rgb(99.015808%,99.507141%,99.507141%);stop-opacity:1;"/>
<stop offset="0.113281" style="stop-color:rgb(98.774719%,99.386597%,99.386597%);stop-opacity:1;"/>
<stop offset="0.117187" style="stop-color:rgb(98.535156%,99.267578%,99.267578%);stop-opacity:1;"/>
<stop offset="0.121094" style="stop-color:rgb(98.294067%,99.147034%,99.147034%);stop-opacity:1;"/>
<stop offset="0.125" style="stop-color:rgb(98.054504%,99.026489%,99.026489%);stop-opacity:1;"/>
<stop offset="0.128906" style="stop-color:rgb(97.813416%,98.905945%,98.905945%);stop-opacity:1;"/>
<stop offset="0.132813" style="stop-color:rgb(97.573853%,98.786926%,98.786926%);stop-opacity:1;"/>
<stop offset="0.136719" style="stop-color:rgb(97.33429%,98.666382%,98.666382%);stop-opacity:1;"/>
<stop offset="0.140625" style="stop-color:rgb(97.094727%,98.547363%,98.547363%);stop-opacity:1;"/>
<stop offset="0.144531" style="stop-color:rgb(96.853638%,98.426819%,98.426819%);stop-opacity:1;"/>
<stop offset="0.148438" style="stop-color:rgb(96.614075%,98.306274%,98.306274%);stop-opacity:1;"/>
<stop offset="0.152344" style="stop-color:rgb(96.372986%,98.18573%,98.18573%);stop-opacity:1;"/>
<stop offset="0.15625" style="stop-color:rgb(96.133423%,98.066711%,98.066711%);stop-opacity:1;"/>
<stop offset="0.160156" style="stop-color:rgb(95.892334%,97.946167%,97.946167%);stop-opacity:1;"/>
<stop offset="0.164063" style="stop-color:rgb(95.652771%,97.825623%,97.825623%);stop-opacity:1;"/>
<stop offset="0.167969" style="stop-color:rgb(95.411682%,97.705078%,97.705078%);stop-opacity:1;"/>
<stop offset="0.171875" style="stop-color:rgb(95.172119%,97.58606%,97.58606%);stop-opacity:1;"/>
<stop offset="0.175781" style="stop-color:rgb(94.932556%,97.465515%,97.465515%);stop-opacity:1;"/>
<stop offset="0.179688" style="stop-color:rgb(94.692993%,97.346497%,97.346497%);stop-opacity:1;"/>
<stop offset="0.183594" style="stop-color:rgb(94.451904%,97.225952%,97.225952%);stop-opacity:1;"/>
<stop offset="0.1875" style="stop-color:rgb(94.212341%,97.105408%,97.105408%);stop-opacity:1;"/>
<stop offset="0.191406" style="stop-color:rgb(93.971252%,96.984863%,96.984863%);stop-opacity:1;"/>
<stop offset="0.195312" style="stop-color:rgb(93.731689%,96.865845%,96.865845%);stop-opacity:1;"/>
<stop offset="0.199219" style="stop-color:rgb(93.490601%,96.7453%,96.7453%);stop-opacity:1;"/>
<stop offset="0.203125" style="stop-color:rgb(93.251038%,96.624756%,96.624756%);stop-opacity:1;"/>
<stop offset="0.207031" style="stop-color:rgb(93.011475%,96.504211%,96.504211%);stop-opacity:1;"/>
<stop offset="0.210938" style="stop-color:rgb(92.771912%,96.385193%,96.385193%);stop-opacity:1;"/>
<stop offset="0.214844" style="stop-color:rgb(92.530823%,96.264648%,96.264648%);stop-opacity:1;"/>
<stop offset="0.21875" style="stop-color:rgb(92.29126%,96.14563%,96.14563%);stop-opacity:1;"/>
<stop offset="0.222656" style="stop-color:rgb(92.050171%,96.025085%,96.025085%);stop-opacity:1;"/>
<stop offset="0.226563" style="stop-color:rgb(91.810608%,95.904541%,95.904541%);stop-opacity:1;"/>
<stop offset="0.230469" style="stop-color:rgb(91.569519%,95.783997%,95.783997%);stop-opacity:1;"/>
<stop offset="0.234375" style="stop-color:rgb(91.329956%,95.664978%,95.664978%);stop-opacity:1;"/>
<stop offset="0.238281" style="stop-color:rgb(91.090393%,95.544434%,95.544434%);stop-opacity:1;"/>
<stop offset="0.242188" style="stop-color:rgb(90.85083%,95.425415%,95.425415%);stop-opacity:1;"/>
<stop offset="0.246094" style="stop-color:rgb(90.609741%,95.304871%,95.304871%);stop-opacity:1;"/>
<stop offset="0.25" style="stop-color:rgb(90.370178%,95.184326%,95.184326%);stop-opacity:1;"/>
<stop offset="0.253906" style="stop-color:rgb(90.129089%,95.063782%,95.063782%);stop-opacity:1;"/>
<stop offset="0.257813" style="stop-color:rgb(89.889526%,94.944763%,94.944763%);stop-opacity:1;"/>
<stop offset="0.261719" style="stop-color:rgb(89.648438%,94.824219%,94.824219%);stop-opacity:1;"/>
<stop offset="0.265625" style="stop-color:rgb(89.408875%,94.703674%,94.703674%);stop-opacity:1;"/>
<stop offset="0.269531" style="stop-color:rgb(89.167786%,94.58313%,94.58313%);stop-opacity:1;"/>
<stop offset="0.273438" style="stop-color:rgb(88.928223%,94.464111%,94.464111%);stop-opacity:1;"/>
<stop offset="0.277344" style="stop-color:rgb(88.68866%,94.343567%,94.343567%);stop-opacity:1;"/>
<stop offset="0.28125" style="stop-color:rgb(88.449097%,94.224548%,94.224548%);stop-opacity:1;"/>
<stop offset="0.285156" style="stop-color:rgb(88.208008%,94.104004%,94.104004%);stop-opacity:1;"/>
<stop offset="0.289063" style="stop-color:rgb(87.968445%,93.983459%,93.983459%);stop-opacity:1;"/>
<stop offset="0.292969" style="stop-color:rgb(87.727356%,93.862915%,93.862915%);stop-opacity:1;"/>
<stop offset="0.296875" style="stop-color:rgb(87.487793%,93.743896%,93.743896%);stop-opacity:1;"/>
<stop offset="0.300781" style="stop-color:rgb(87.246704%,93.623352%,93.623352%);stop-opacity:1;"/>
<stop offset="0.304688" style="stop-color:rgb(87.007141%,93.502808%,93.502808%);stop-opacity:1;"/>
<stop offset="0.308594" style="stop-color:rgb(86.767578%,93.382263%,93.382263%);stop-opacity:1;"/>
<stop offset="0.3125" style="stop-color:rgb(86.528015%,93.263245%,93.263245%);stop-opacity:1;"/>
<stop offset="0.316406" style="stop-color:rgb(86.286926%,93.1427%,93.1427%);stop-opacity:1;"/>
<stop offset="0.320312" style="stop-color:rgb(86.047363%,93.023682%,93.023682%);stop-opacity:1;"/>
<stop offset="0.324219" style="stop-color:rgb(85.806274%,92.903137%,92.903137%);stop-opacity:1;"/>
<stop offset="0.328125" style="stop-color:rgb(85.566711%,92.782593%,92.782593%);stop-opacity:1;"/>
<stop offset="0.332031" style="stop-color:rgb(85.325623%,92.662048%,92.662048%);stop-opacity:1;"/>
<stop offset="0.335938" style="stop-color:rgb(85.08606%,92.54303%,92.54303%);stop-opacity:1;"/>
<stop offset="0.339844" style="stop-color:rgb(84.844971%,92.422485%,92.422485%);stop-opacity:1;"/>
<stop offset="0.34375" style="stop-color:rgb(84.605408%,92.301941%,92.301941%);stop-opacity:1;"/>
<stop offset="0.347656" style="stop-color:rgb(84.365845%,92.181396%,92.181396%);stop-opacity:1;"/>
<stop offset="0.351563" style="stop-color:rgb(84.126282%,92.062378%,92.062378%);stop-opacity:1;"/>
<stop offset="0.355469" style="stop-color:rgb(83.885193%,91.941833%,91.941833%);stop-opacity:1;"/>
<stop offset="0.359375" style="stop-color:rgb(83.64563%,91.822815%,91.822815%);stop-opacity:1;"/>
<stop offset="0.363281" style="stop-color:rgb(83.404541%,91.702271%,91.702271%);stop-opacity:1;"/>
<stop offset="0.367188" style="stop-color:rgb(83.164978%,91.581726%,91.581726%);stop-opacity:1;"/>
<stop offset="0.371094" style="stop-color:rgb(82.923889%,91.461182%,91.461182%);stop-opacity:1;"/>
<stop offset="0.375" style="stop-color:rgb(82.684326%,91.342163%,91.342163%);stop-opacity:1;"/>
<stop offset="0.378906" style="stop-color:rgb(82.444763%,91.221619%,91.221619%);stop-opacity:1;"/>
<stop offset="0.382813" style="stop-color:rgb(82.2052%,91.1026%,91.1026%);stop-opacity:1;"/>
<stop offset="0.386719" style="stop-color:rgb(81.964111%,90.982056%,90.982056%);stop-opacity:1;"/>
<stop offset="0.390625" style="stop-color:rgb(81.724548%,90.861511%,90.861511%);stop-opacity:1;"/>
<stop offset="0.394531" style="stop-color:rgb(81.483459%,90.740967%,90.740967%);stop-opacity:1;"/>
<stop offset="0.398438" style="stop-color:rgb(81.243896%,90.621948%,90.621948%);stop-opacity:1;"/>
<stop offset="0.402344" style="stop-color:rgb(81.002808%,90.501404%,90.501404%);stop-opacity:1;"/>
<stop offset="0.40625" style="stop-color:rgb(80.763245%,90.380859%,90.380859%);stop-opacity:1;"/>
<stop offset="0.410156" style="stop-color:rgb(80.522156%,90.260315%,90.260315%);stop-opacity:1;"/>
<stop offset="0.414062" style="stop-color:rgb(80.282593%,90.141296%,90.141296%);stop-opacity:1;"/>
<stop offset="0.417969" style="stop-color:rgb(80.04303%,90.020752%,90.020752%);stop-opacity:1;"/>
<stop offset="0.421875" style="stop-color:rgb(79.803467%,89.901733%,89.901733%);stop-opacity:1;"/>
<stop offset="0.425781" style="stop-color:rgb(79.562378%,89.781189%,89.781189%);stop-opacity:1;"/>
<stop offset="0.429688" style="stop-color:rgb(79.322815%,89.660645%,89.660645%);stop-opacity:1;"/>
<stop offset="0.433594" style="stop-color:rgb(79.081726%,89.5401%,89.5401%);stop-opacity:1;"/>
<stop offset="0.4375" style="stop-color:rgb(78.842163%,89.421082%,89.421082%);stop-opacity:1;"/>
<stop offset="0.441406" style="stop-color:rgb(78.601074%,89.300537%,89.300537%);stop-opacity:1;"/>
<stop offset="0.445313" style="stop-color:rgb(78.361511%,89.179993%,89.179993%);stop-opacity:1;"/>
<stop offset="0.449219" style="stop-color:rgb(78.121948%,89.059448%,89.059448%);stop-opacity:1;"/>
<stop offset="0.453125" style="stop-color:rgb(77.882385%,88.94043%,88.94043%);stop-opacity:1;"/>
<stop offset="0.457031" style="stop-color:rgb(77.641296%,88.819885%,88.819885%);stop-opacity:1;"/>
<stop offset="0.460938" style="stop-color:rgb(77.401733%,88.700867%,88.700867%);stop-opacity:1;"/>
<stop offset="0.464844" style="stop-color:rgb(77.160645%,88.580322%,88.580322%);stop-opacity:1;"/>
<stop offset="0.46875" style="stop-color:rgb(76.921082%,88.459778%,88.459778%);stop-opacity:1;"/>
<stop offset="0.472656" style="stop-color:rgb(76.679993%,88.339233%,88.339233%);stop-opacity:1;"/>
<stop offset="0.476562" style="stop-color:rgb(76.44043%,88.220215%,88.220215%);stop-opacity:1;"/>
<stop offset="0.480469" style="stop-color:rgb(76.199341%,88.09967%,88.09967%);stop-opacity:1;"/>
<stop offset="0.484375" style="stop-color:rgb(75.959778%,87.979126%,87.979126%);stop-opacity:1;"/>
<stop offset="0.488281" style="stop-color:rgb(75.720215%,87.858582%,87.858582%);stop-opacity:1;"/>
<stop offset="0.492188" style="stop-color:rgb(75.480652%,87.739563%,87.739563%);stop-opacity:1;"/>
<stop offset="0.496094" style="stop-color:rgb(75.239563%,87.619019%,87.619019%);stop-opacity:1;"/>
<stop offset="0.5" style="stop-color:rgb(75%,87.5%,87.5%);stop-opacity:1;"/>
<stop offset="0.503906" style="stop-color:rgb(74.758911%,87.379456%,87.379456%);stop-opacity:1;"/>
<stop offset="0.507812" style="stop-color:rgb(74.519348%,87.258911%,87.258911%);stop-opacity:1;"/>
<stop offset="0.511719" style="stop-color:rgb(74.278259%,87.138367%,87.138367%);stop-opacity:1;"/>
<stop offset="0.515625" style="stop-color:rgb(74.038696%,87.019348%,87.019348%);stop-opacity:1;"/>
<stop offset="0.519531" style="stop-color:rgb(73.799133%,86.898804%,86.898804%);stop-opacity:1;"/>
<stop offset="0.523437" style="stop-color:rgb(73.55957%,86.779785%,86.779785%);stop-opacity:1;"/>
<stop offset="0.527344" style="stop-color:rgb(73.318481%,86.659241%,86.659241%);stop-opacity:1;"/>
<stop offset="0.53125" style="stop-color:rgb(73.078918%,86.538696%,86.538696%);stop-opacity:1;"/>
<stop offset="0.535156" style="stop-color:rgb(72.83783%,86.418152%,86.418152%);stop-opacity:1;"/>
<stop offset="0.539062" style="stop-color:rgb(72.598267%,86.299133%,86.299133%);stop-opacity:1;"/>
<stop offset="0.542969" style="stop-color:rgb(72.357178%,86.178589%,86.178589%);stop-opacity:1;"/>
<stop offset="0.546875" style="stop-color:rgb(72.117615%,86.058044%,86.058044%);stop-opacity:1;"/>
<stop offset="0.550781" style="stop-color:rgb(71.876526%,85.9375%,85.9375%);stop-opacity:1;"/>
<stop offset="0.554688" style="stop-color:rgb(71.636963%,85.818481%,85.818481%);stop-opacity:1;"/>
<stop offset="0.558594" style="stop-color:rgb(71.3974%,85.697937%,85.697937%);stop-opacity:1;"/>
<stop offset="0.5625" style="stop-color:rgb(71.157837%,85.578918%,85.578918%);stop-opacity:1;"/>
<stop offset="0.566406" style="stop-color:rgb(70.916748%,85.458374%,85.458374%);stop-opacity:1;"/>
<stop offset="0.570312" style="stop-color:rgb(70.677185%,85.33783%,85.33783%);stop-opacity:1;"/>
<stop offset="0.574219" style="stop-color:rgb(70.436096%,85.217285%,85.217285%);stop-opacity:1;"/>
<stop offset="0.578125" style="stop-color:rgb(70.196533%,85.098267%,85.098267%);stop-opacity:1;"/>
<stop offset="0.582031" style="stop-color:rgb(69.955444%,84.977722%,84.977722%);stop-opacity:1;"/>
<stop offset="0.585938" style="stop-color:rgb(69.715881%,84.857178%,84.857178%);stop-opacity:1;"/>
<stop offset="0.589844" style="stop-color:rgb(69.476318%,84.736633%,84.736633%);stop-opacity:1;"/>
<stop offset="0.59375" style="stop-color:rgb(69.236755%,84.617615%,84.617615%);stop-opacity:1;"/>
<stop offset="0.597656" style="stop-color:rgb(68.995667%,84.49707%,84.49707%);stop-opacity:1;"/>
<stop offset="0.601563" style="stop-color:rgb(68.756104%,84.378052%,84.378052%);stop-opacity:1;"/>
<stop offset="0.605469" style="stop-color:rgb(68.515015%,84.257507%,84.257507%);stop-opacity:1;"/>
<stop offset="0.609375" style="stop-color:rgb(68.275452%,84.136963%,84.136963%);stop-opacity:1;"/>
<stop offset="0.613281" style="stop-color:rgb(68.034363%,84.016418%,84.016418%);stop-opacity:1;"/>
<stop offset="0.617187" style="stop-color:rgb(67.7948%,83.8974%,83.8974%);stop-opacity:1;"/>
<stop offset="0.621094" style="stop-color:rgb(67.555237%,83.776855%,83.776855%);stop-opacity:1;"/>
<stop offset="0.625" style="stop-color:rgb(67.315674%,83.657837%,83.657837%);stop-opacity:1;"/>
<stop offset="0.628906" style="stop-color:rgb(67.074585%,83.537292%,83.537292%);stop-opacity:1;"/>
<stop offset="0.632812" style="stop-color:rgb(66.835022%,83.416748%,83.416748%);stop-opacity:1;"/>
<stop offset="0.636719" style="stop-color:rgb(66.593933%,83.296204%,83.296204%);stop-opacity:1;"/>
<stop offset="0.640625" style="stop-color:rgb(66.35437%,83.177185%,83.177185%);stop-opacity:1;"/>
<stop offset="0.644531" style="stop-color:rgb(66.113281%,83.056641%,83.056641%);stop-opacity:1;"/>
<stop offset="0.648438" style="stop-color:rgb(65.873718%,82.936096%,82.936096%);stop-opacity:1;"/>
<stop offset="0.652344" style="stop-color:rgb(65.632629%,82.815552%,82.815552%);stop-opacity:1;"/>
<stop offset="0.65625" style="stop-color:rgb(65.393066%,82.696533%,82.696533%);stop-opacity:1;"/>
<stop offset="0.660156" style="stop-color:rgb(65.153503%,82.575989%,82.575989%);stop-opacity:1;"/>
<stop offset="0.664062" style="stop-color:rgb(64.91394%,82.45697%,82.45697%);stop-opacity:1;"/>
<stop offset="0.667969" style="stop-color:rgb(64.672852%,82.336426%,82.336426%);stop-opacity:1;"/>
<stop offset="0.671875" style="stop-color:rgb(64.433289%,82.215881%,82.215881%);stop-opacity:1;"/>
<stop offset="0.675781" style="stop-color:rgb(64.1922%,82.095337%,82.095337%);stop-opacity:1;"/>
<stop offset="0.679688" style="stop-color:rgb(63.952637%,81.976318%,81.976318%);stop-opacity:1;"/>
<stop offset="0.683594" style="stop-color:rgb(63.711548%,81.855774%,81.855774%);stop-opacity:1;"/>
<stop offset="0.6875" style="stop-color:rgb(63.471985%,81.735229%,81.735229%);stop-opacity:1;"/>
<stop offset="0.691406" style="stop-color:rgb(63.232422%,81.614685%,81.614685%);stop-opacity:1;"/>
<stop offset="0.695313" style="stop-color:rgb(62.992859%,81.495667%,81.495667%);stop-opacity:1;"/>
<stop offset="0.699219" style="stop-color:rgb(62.75177%,81.375122%,81.375122%);stop-opacity:1;"/>
<stop offset="0.703125" style="stop-color:rgb(62.512207%,81.256104%,81.256104%);stop-opacity:1;"/>
<stop offset="0.707031" style="stop-color:rgb(62.271118%,81.135559%,81.135559%);stop-opacity:1;"/>
<stop offset="0.710937" style="stop-color:rgb(62.031555%,81.015015%,81.015015%);stop-opacity:1;"/>
<stop offset="0.714844" style="stop-color:rgb(61.790466%,80.89447%,80.89447%);stop-opacity:1;"/>
<stop offset="0.71875" style="stop-color:rgb(61.550903%,80.775452%,80.775452%);stop-opacity:1;"/>
<stop offset="0.722656" style="stop-color:rgb(61.309814%,80.654907%,80.654907%);stop-opacity:1;"/>
<stop offset="0.726562" style="stop-color:rgb(61.070251%,80.534363%,80.534363%);stop-opacity:1;"/>
<stop offset="0.730469" style="stop-color:rgb(60.830688%,80.413818%,80.413818%);stop-opacity:1;"/>
<stop offset="0.734375" style="stop-color:rgb(60.591125%,80.2948%,80.2948%);stop-opacity:1;"/>
<stop offset="0.738281" style="stop-color:rgb(60.350037%,80.174255%,80.174255%);stop-opacity:1;"/>
<stop offset="0.742188" style="stop-color:rgb(60.110474%,80.055237%,80.055237%);stop-opacity:1;"/>
<stop offset="0.746094" style="stop-color:rgb(59.869385%,79.934692%,79.934692%);stop-opacity:1;"/>
<stop offset="0.75" style="stop-color:rgb(59.629822%,79.814148%,79.814148%);stop-opacity:1;"/>
<stop offset="0.753906" style="stop-color:rgb(59.388733%,79.693604%,79.693604%);stop-opacity:1;"/>
<stop offset="0.757812" style="stop-color:rgb(59.14917%,79.574585%,79.574585%);stop-opacity:1;"/>
<stop offset="0.761719" style="stop-color:rgb(58.909607%,79.454041%,79.454041%);stop-opacity:1;"/>
<stop offset="0.765625" style="stop-color:rgb(58.670044%,79.335022%,79.335022%);stop-opacity:1;"/>
<stop offset="0.769531" style="stop-color:rgb(58.428955%,79.214478%,79.214478%);stop-opacity:1;"/>
<stop offset="0.773438" style="stop-color:rgb(58.189392%,79.093933%,79.093933%);stop-opacity:1;"/>
<stop offset="0.777344" style="stop-color:rgb(57.948303%,78.973389%,78.973389%);stop-opacity:1;"/>
<stop offset="0.78125" style="stop-color:rgb(57.70874%,78.85437%,78.85437%);stop-opacity:1;"/>
<stop offset="0.785156" style="stop-color:rgb(57.467651%,78.733826%,78.733826%);stop-opacity:1;"/>
<stop offset="0.789063" style="stop-color:rgb(57.228088%,78.613281%,78.613281%);stop-opacity:1;"/>
<stop offset="0.792969" style="stop-color:rgb(56.987%,78.492737%,78.492737%);stop-opacity:1;"/>
<stop offset="0.796875" style="stop-color:rgb(56.747437%,78.373718%,78.373718%);stop-opacity:1;"/>
<stop offset="0.800781" style="stop-color:rgb(56.507874%,78.253174%,78.253174%);stop-opacity:1;"/>
<stop offset="0.804687" style="stop-color:rgb(56.268311%,78.134155%,78.134155%);stop-opacity:1;"/>
<stop offset="0.808594" style="stop-color:rgb(56.027222%,78.013611%,78.013611%);stop-opacity:1;"/>
<stop offset="0.8125" style="stop-color:rgb(55.787659%,77.893066%,77.893066%);stop-opacity:1;"/>
<stop offset="0.816406" style="stop-color:rgb(55.54657%,77.772522%,77.772522%);stop-opacity:1;"/>
<stop offset="0.820312" style="stop-color:rgb(55.307007%,77.653503%,77.653503%);stop-opacity:1;"/>
<stop offset="0.824219" style="stop-color:rgb(55.065918%,77.532959%,77.532959%);stop-opacity:1;"/>
<stop offset="0.828125" style="stop-color:rgb(54.826355%,77.412415%,77.412415%);stop-opacity:1;"/>
<stop offset="0.832031" style="stop-color:rgb(54.586792%,77.29187%,77.29187%);stop-opacity:1;"/>
<stop offset="0.835938" style="stop-color:rgb(54.347229%,77.172852%,77.172852%);stop-opacity:1;"/>
<stop offset="0.839844" style="stop-color:rgb(54.10614%,77.052307%,77.052307%);stop-opacity:1;"/>
<stop offset="0.84375" style="stop-color:rgb(53.866577%,76.933289%,76.933289%);stop-opacity:1;"/>
<stop offset="0.847656" style="stop-color:rgb(53.625488%,76.812744%,76.812744%);stop-opacity:1;"/>
<stop offset="0.851562" style="stop-color:rgb(53.385925%,76.6922%,76.6922%);stop-opacity:1;"/>
<stop offset="0.855469" style="stop-color:rgb(53.144836%,76.571655%,76.571655%);stop-opacity:1;"/>
<stop offset="0.859375" style="stop-color:rgb(52.905273%,76.452637%,76.452637%);stop-opacity:1;"/>
<stop offset="0.863281" style="stop-color:rgb(52.664185%,76.332092%,76.332092%);stop-opacity:1;"/>
<stop offset="0.867187" style="stop-color:rgb(52.424622%,76.211548%,76.211548%);stop-opacity:1;"/>
<stop offset="0.871094" style="stop-color:rgb(52.185059%,76.091003%,76.091003%);stop-opacity:1;"/>
<stop offset="0.875" style="stop-color:rgb(51.945496%,75.971985%,75.971985%);stop-opacity:1;"/>
<stop offset="0.878906" style="stop-color:rgb(51.704407%,75.85144%,75.85144%);stop-opacity:1;"/>
<stop offset="0.882812" style="stop-color:rgb(51.464844%,75.732422%,75.732422%);stop-opacity:1;"/>
<stop offset="0.886719" style="stop-color:rgb(51.223755%,75.611877%,75.611877%);stop-opacity:1;"/>
<stop offset="0.890625" style="stop-color:rgb(50.984192%,75.491333%,75.491333%);stop-opacity:1;"/>
<stop offset="0.894531" style="stop-color:rgb(50.743103%,75.370789%,75.370789%);stop-opacity:1;"/>
<stop offset="0.898438" style="stop-color:rgb(50.50354%,75.25177%,75.25177%);stop-opacity:1;"/>
<stop offset="0.902344" style="stop-color:rgb(50.263977%,75.131226%,75.131226%);stop-opacity:1;"/>
<stop offset="0.90625" style="stop-color:rgb(50.024414%,75.012207%,75.012207%);stop-opacity:1;"/>
<stop offset="0.9375" style="stop-color:rgb(50.012207%,75.006104%,75.006104%);stop-opacity:1;"/>
<stop offset="1" style="stop-color:rgb(50%,75%,75%);stop-opacity:1;"/>
</linearGradient>
<clipPath id="clip9">
<path d="M 19 41 L 48.292969 41 L 48.292969 87 L 19 87 Z M 19 41 "/>
</clipPath>
<clipPath id="clip10">
<path d="M 0 57 L 13 57 L 13 71 L 0 71 Z M 0 57 "/>
</clipPath>
<clipPath id="clip11">
<path d="M 8.40625 57.054688 L 4.582031 57.054688 C 2.382812 57.054688 0.597656 58.839844 0.597656 61.042969 L 0.597656 66.734375 C 0.597656 68.9375 2.382812 70.722656 4.582031 70.722656 L 8.40625 70.722656 C 10.605469 70.722656 12.390625 68.9375 12.390625 66.734375 L 12.390625 61.042969 C 12.390625 58.839844 10.605469 57.054688 8.40625 57.054688 Z M 8.40625 57.054688 "/>
</clipPath>
<clipPath id="clip12">
<path d="M -1.8125 79.796875 L 21.640625 73.511719 L 14.796875 47.980469 L -8.652344 54.265625 Z M -1.8125 79.796875 "/>
</clipPath>
<linearGradient id="linear2" gradientUnits="userSpaceOnUse" x1="0" y1="19.259763" x2="0" y2="80.740237" gradientTransform="matrix(0.234508,-0.0628363,-0.0684139,-0.255324,-1.81073,79.79703)">
<stop offset="0" style="stop-color:rgb(100%,100%,100%);stop-opacity:1;"/>
<stop offset="0.0625" style="stop-color:rgb(100%,100%,100%);stop-opacity:1;"/>
<stop offset="0.09375" style="stop-color:rgb(99.987793%,99.993896%,99.993896%);stop-opacity:1;"/>
<stop offset="0.0976562" style="stop-color:rgb(99.734497%,99.867249%,99.867249%);stop-opacity:1;"/>
<stop offset="0.101562" style="stop-color:rgb(99.494934%,99.746704%,99.746704%);stop-opacity:1;"/>
<stop offset="0.105469" style="stop-color:rgb(99.255371%,99.62616%,99.62616%);stop-opacity:1;"/>
<stop offset="0.109375" style="stop-color:rgb(99.015808%,99.507141%,99.507141%);stop-opacity:1;"/>
<stop offset="0.113281" style="stop-color:rgb(98.774719%,99.386597%,99.386597%);stop-opacity:1;"/>
<stop offset="0.117187" style="stop-color:rgb(98.535156%,99.267578%,99.267578%);stop-opacity:1;"/>
<stop offset="0.121094" style="stop-color:rgb(98.294067%,99.147034%,99.147034%);stop-opacity:1;"/>
<stop offset="0.125" style="stop-color:rgb(98.054504%,99.026489%,99.026489%);stop-opacity:1;"/>
<stop offset="0.128906" style="stop-color:rgb(97.813416%,98.905945%,98.905945%);stop-opacity:1;"/>
<stop offset="0.132812" style="stop-color:rgb(97.573853%,98.786926%,98.786926%);stop-opacity:1;"/>
<stop offset="0.136719" style="stop-color:rgb(97.33429%,98.666382%,98.666382%);stop-opacity:1;"/>
<stop offset="0.140625" style="stop-color:rgb(97.094727%,98.547363%,98.547363%);stop-opacity:1;"/>
<stop offset="0.144531" style="stop-color:rgb(96.853638%,98.426819%,98.426819%);stop-opacity:1;"/>
<stop offset="0.148437" style="stop-color:rgb(96.614075%,98.306274%,98.306274%);stop-opacity:1;"/>
<stop offset="0.152344" style="stop-color:rgb(96.372986%,98.18573%,98.18573%);stop-opacity:1;"/>
<stop offset="0.15625" style="stop-color:rgb(96.133423%,98.066711%,98.066711%);stop-opacity:1;"/>
<stop offset="0.160156" style="stop-color:rgb(95.892334%,97.946167%,97.946167%);stop-opacity:1;"/>
<stop offset="0.164062" style="stop-color:rgb(95.652771%,97.825623%,97.825623%);stop-opacity:1;"/>
<stop offset="0.167969" style="stop-color:rgb(95.413208%,97.705078%,97.705078%);stop-opacity:1;"/>
<stop offset="0.171875" style="stop-color:rgb(95.173645%,97.58606%,97.58606%);stop-opacity:1;"/>
<stop offset="0.175781" style="stop-color:rgb(94.932556%,97.465515%,97.465515%);stop-opacity:1;"/>
<stop offset="0.179687" style="stop-color:rgb(94.692993%,97.346497%,97.346497%);stop-opacity:1;"/>
<stop offset="0.183594" style="stop-color:rgb(94.451904%,97.225952%,97.225952%);stop-opacity:1;"/>
<stop offset="0.1875" style="stop-color:rgb(94.212341%,97.105408%,97.105408%);stop-opacity:1;"/>
<stop offset="0.191406" style="stop-color:rgb(93.971252%,96.984863%,96.984863%);stop-opacity:1;"/>
<stop offset="0.195312" style="stop-color:rgb(93.731689%,96.865845%,96.865845%);stop-opacity:1;"/>
<stop offset="0.199219" style="stop-color:rgb(93.490601%,96.7453%,96.7453%);stop-opacity:1;"/>
<stop offset="0.203125" style="stop-color:rgb(93.251038%,96.624756%,96.624756%);stop-opacity:1;"/>
<stop offset="0.207031" style="stop-color:rgb(93.011475%,96.504211%,96.504211%);stop-opacity:1;"/>
<stop offset="0.210937" style="stop-color:rgb(92.771912%,96.385193%,96.385193%);stop-opacity:1;"/>
<stop offset="0.214844" style="stop-color:rgb(92.530823%,96.264648%,96.264648%);stop-opacity:1;"/>
<stop offset="0.21875" style="stop-color:rgb(92.29126%,96.14563%,96.14563%);stop-opacity:1;"/>
<stop offset="0.222656" style="stop-color:rgb(92.050171%,96.025085%,96.025085%);stop-opacity:1;"/>
<stop offset="0.226562" style="stop-color:rgb(91.810608%,95.904541%,95.904541%);stop-opacity:1;"/>
<stop offset="0.230469" style="stop-color:rgb(91.569519%,95.783997%,95.783997%);stop-opacity:1;"/>
<stop offset="0.234375" style="stop-color:rgb(91.329956%,95.664978%,95.664978%);stop-opacity:1;"/>
<stop offset="0.238281" style="stop-color:rgb(91.090393%,95.544434%,95.544434%);stop-opacity:1;"/>
<stop offset="0.242187" style="stop-color:rgb(90.85083%,95.425415%,95.425415%);stop-opacity:1;"/>
<stop offset="0.246094" style="stop-color:rgb(90.609741%,95.304871%,95.304871%);stop-opacity:1;"/>
<stop offset="0.25" style="stop-color:rgb(90.370178%,95.184326%,95.184326%);stop-opacity:1;"/>
<stop offset="0.253906" style="stop-color:rgb(90.129089%,95.063782%,95.063782%);stop-opacity:1;"/>
<stop offset="0.257812" style="stop-color:rgb(89.889526%,94.944763%,94.944763%);stop-opacity:1;"/>
<stop offset="0.261719" style="stop-color:rgb(89.648438%,94.824219%,94.824219%);stop-opacity:1;"/>
<stop offset="0.265625" style="stop-color:rgb(89.408875%,94.703674%,94.703674%);stop-opacity:1;"/>
<stop offset="0.269531" style="stop-color:rgb(89.167786%,94.58313%,94.58313%);stop-opacity:1;"/>
<stop offset="0.273437" style="stop-color:rgb(88.928223%,94.464111%,94.464111%);stop-opacity:1;"/>
<stop offset="0.277344" style="stop-color:rgb(88.68866%,94.343567%,94.343567%);stop-opacity:1;"/>
<stop offset="0.28125" style="stop-color:rgb(88.449097%,94.224548%,94.224548%);stop-opacity:1;"/>
<stop offset="0.285156" style="stop-color:rgb(88.208008%,94.104004%,94.104004%);stop-opacity:1;"/>
<stop offset="0.289062" style="stop-color:rgb(87.968445%,93.983459%,93.983459%);stop-opacity:1;"/>
<stop offset="0.292969" style="stop-color:rgb(87.727356%,93.862915%,93.862915%);stop-opacity:1;"/>
<stop offset="0.296875" style="stop-color:rgb(87.487793%,93.743896%,93.743896%);stop-opacity:1;"/>
<stop offset="0.300781" style="stop-color:rgb(87.246704%,93.623352%,93.623352%);stop-opacity:1;"/>
<stop offset="0.304687" style="stop-color:rgb(87.007141%,93.502808%,93.502808%);stop-opacity:1;"/>
<stop offset="0.308594" style="stop-color:rgb(86.767578%,93.382263%,93.382263%);stop-opacity:1;"/>
<stop offset="0.3125" style="stop-color:rgb(86.528015%,93.263245%,93.263245%);stop-opacity:1;"/>
<stop offset="0.316406" style="stop-color:rgb(86.286926%,93.1427%,93.1427%);stop-opacity:1;"/>
<stop offset="0.320312" style="stop-color:rgb(86.047363%,93.023682%,93.023682%);stop-opacity:1;"/>
<stop offset="0.324219" style="stop-color:rgb(85.806274%,92.903137%,92.903137%);stop-opacity:1;"/>
<stop offset="0.328125" style="stop-color:rgb(85.566711%,92.782593%,92.782593%);stop-opacity:1;"/>
<stop offset="0.332031" style="stop-color:rgb(85.325623%,92.662048%,92.662048%);stop-opacity:1;"/>
<stop offset="0.335937" style="stop-color:rgb(85.08606%,92.54303%,92.54303%);stop-opacity:1;"/>
<stop offset="0.339844" style="stop-color:rgb(84.844971%,92.422485%,92.422485%);stop-opacity:1;"/>
<stop offset="0.34375" style="stop-color:rgb(84.605408%,92.301941%,92.301941%);stop-opacity:1;"/>
<stop offset="0.347656" style="stop-color:rgb(84.365845%,92.181396%,92.181396%);stop-opacity:1;"/>
<stop offset="0.351562" style="stop-color:rgb(84.126282%,92.062378%,92.062378%);stop-opacity:1;"/>
<stop offset="0.355469" style="stop-color:rgb(83.885193%,91.941833%,91.941833%);stop-opacity:1;"/>
<stop offset="0.359375" style="stop-color:rgb(83.64563%,91.822815%,91.822815%);stop-opacity:1;"/>
<stop offset="0.363281" style="stop-color:rgb(83.404541%,91.702271%,91.702271%);stop-opacity:1;"/>
<stop offset="0.367187" style="stop-color:rgb(83.164978%,91.581726%,91.581726%);stop-opacity:1;"/>
<stop offset="0.371094" style="stop-color:rgb(82.923889%,91.461182%,91.461182%);stop-opacity:1;"/>
<stop offset="0.375" style="stop-color:rgb(82.684326%,91.342163%,91.342163%);stop-opacity:1;"/>
<stop offset="0.378906" style="stop-color:rgb(82.444763%,91.221619%,91.221619%);stop-opacity:1;"/>
<stop offset="0.382812" style="stop-color:rgb(82.2052%,91.1026%,91.1026%);stop-opacity:1;"/>
<stop offset="0.386719" style="stop-color:rgb(81.964111%,90.982056%,90.982056%);stop-opacity:1;"/>
<stop offset="0.390625" style="stop-color:rgb(81.724548%,90.861511%,90.861511%);stop-opacity:1;"/>
<stop offset="0.394531" style="stop-color:rgb(81.483459%,90.740967%,90.740967%);stop-opacity:1;"/>
<stop offset="0.398437" style="stop-color:rgb(81.243896%,90.621948%,90.621948%);stop-opacity:1;"/>
<stop offset="0.402344" style="stop-color:rgb(81.002808%,90.501404%,90.501404%);stop-opacity:1;"/>
<stop offset="0.40625" style="stop-color:rgb(80.763245%,90.380859%,90.380859%);stop-opacity:1;"/>
<stop offset="0.410156" style="stop-color:rgb(80.522156%,90.260315%,90.260315%);stop-opacity:1;"/>
<stop offset="0.414062" style="stop-color:rgb(80.282593%,90.141296%,90.141296%);stop-opacity:1;"/>
<stop offset="0.417969" style="stop-color:rgb(80.04303%,90.020752%,90.020752%);stop-opacity:1;"/>
<stop offset="0.421875" style="stop-color:rgb(79.803467%,89.901733%,89.901733%);stop-opacity:1;"/>
<stop offset="0.425781" style="stop-color:rgb(79.562378%,89.781189%,89.781189%);stop-opacity:1;"/>
<stop offset="0.429687" style="stop-color:rgb(79.322815%,89.660645%,89.660645%);stop-opacity:1;"/>
<stop offset="0.433594" style="stop-color:rgb(79.081726%,89.5401%,89.5401%);stop-opacity:1;"/>
<stop offset="0.4375" style="stop-color:rgb(78.842163%,89.421082%,89.421082%);stop-opacity:1;"/>
<stop offset="0.441406" style="stop-color:rgb(78.601074%,89.300537%,89.300537%);stop-opacity:1;"/>
<stop offset="0.445312" style="stop-color:rgb(78.361511%,89.179993%,89.179993%);stop-opacity:1;"/>
<stop offset="0.449219" style="stop-color:rgb(78.121948%,89.059448%,89.059448%);stop-opacity:1;"/>
<stop offset="0.453125" style="stop-color:rgb(77.882385%,88.94043%,88.94043%);stop-opacity:1;"/>
<stop offset="0.457031" style="stop-color:rgb(77.641296%,88.819885%,88.819885%);stop-opacity:1;"/>
<stop offset="0.460937" style="stop-color:rgb(77.401733%,88.700867%,88.700867%);stop-opacity:1;"/>
<stop offset="0.464844" style="stop-color:rgb(77.160645%,88.580322%,88.580322%);stop-opacity:1;"/>
<stop offset="0.46875" style="stop-color:rgb(76.921082%,88.459778%,88.459778%);stop-opacity:1;"/>
<stop offset="0.472656" style="stop-color:rgb(76.679993%,88.339233%,88.339233%);stop-opacity:1;"/>
<stop offset="0.476562" style="stop-color:rgb(76.44043%,88.220215%,88.220215%);stop-opacity:1;"/>
<stop offset="0.480469" style="stop-color:rgb(76.199341%,88.09967%,88.09967%);stop-opacity:1;"/>
<stop offset="0.484375" style="stop-color:rgb(75.959778%,87.979126%,87.979126%);stop-opacity:1;"/>
<stop offset="0.488281" style="stop-color:rgb(75.720215%,87.858582%,87.858582%);stop-opacity:1;"/>
<stop offset="0.492187" style="stop-color:rgb(75.480652%,87.739563%,87.739563%);stop-opacity:1;"/>
<stop offset="0.496094" style="stop-color:rgb(75.239563%,87.619019%,87.619019%);stop-opacity:1;"/>
<stop offset="0.5" style="stop-color:rgb(75%,87.5%,87.5%);stop-opacity:1;"/>
<stop offset="0.503906" style="stop-color:rgb(74.758911%,87.379456%,87.379456%);stop-opacity:1;"/>
<stop offset="0.507812" style="stop-color:rgb(74.519348%,87.258911%,87.258911%);stop-opacity:1;"/>
<stop offset="0.511719" style="stop-color:rgb(74.278259%,87.138367%,87.138367%);stop-opacity:1;"/>
<stop offset="0.515625" style="stop-color:rgb(74.038696%,87.019348%,87.019348%);stop-opacity:1;"/>
<stop offset="0.519531" style="stop-color:rgb(73.799133%,86.898804%,86.898804%);stop-opacity:1;"/>
<stop offset="0.523437" style="stop-color:rgb(73.55957%,86.779785%,86.779785%);stop-opacity:1;"/>
<stop offset="0.527344" style="stop-color:rgb(73.318481%,86.659241%,86.659241%);stop-opacity:1;"/>
<stop offset="0.53125" style="stop-color:rgb(73.078918%,86.538696%,86.538696%);stop-opacity:1;"/>
<stop offset="0.535156" style="stop-color:rgb(72.83783%,86.418152%,86.418152%);stop-opacity:1;"/>
<stop offset="0.539062" style="stop-color:rgb(72.598267%,86.299133%,86.299133%);stop-opacity:1;"/>
<stop offset="0.542969" style="stop-color:rgb(72.357178%,86.178589%,86.178589%);stop-opacity:1;"/>
<stop offset="0.546875" style="stop-color:rgb(72.117615%,86.058044%,86.058044%);stop-opacity:1;"/>
<stop offset="0.550781" style="stop-color:rgb(71.876526%,85.9375%,85.9375%);stop-opacity:1;"/>
<stop offset="0.554687" style="stop-color:rgb(71.636963%,85.818481%,85.818481%);stop-opacity:1;"/>
<stop offset="0.558594" style="stop-color:rgb(71.3974%,85.697937%,85.697937%);stop-opacity:1;"/>
<stop offset="0.5625" style="stop-color:rgb(71.157837%,85.578918%,85.578918%);stop-opacity:1;"/>
<stop offset="0.566406" style="stop-color:rgb(70.916748%,85.458374%,85.458374%);stop-opacity:1;"/>
<stop offset="0.570312" style="stop-color:rgb(70.677185%,85.33783%,85.33783%);stop-opacity:1;"/>
<stop offset="0.574219" style="stop-color:rgb(70.436096%,85.217285%,85.217285%);stop-opacity:1;"/>
<stop offset="0.578125" style="stop-color:rgb(70.196533%,85.098267%,85.098267%);stop-opacity:1;"/>
<stop offset="0.582031" style="stop-color:rgb(69.955444%,84.977722%,84.977722%);stop-opacity:1;"/>
<stop offset="0.585937" style="stop-color:rgb(69.715881%,84.857178%,84.857178%);stop-opacity:1;"/>
<stop offset="0.589844" style="stop-color:rgb(69.476318%,84.736633%,84.736633%);stop-opacity:1;"/>
<stop offset="0.59375" style="stop-color:rgb(69.236755%,84.617615%,84.617615%);stop-opacity:1;"/>
<stop offset="0.597656" style="stop-color:rgb(68.995667%,84.49707%,84.49707%);stop-opacity:1;"/>
<stop offset="0.601562" style="stop-color:rgb(68.756104%,84.378052%,84.378052%);stop-opacity:1;"/>
<stop offset="0.605469" style="stop-color:rgb(68.515015%,84.257507%,84.257507%);stop-opacity:1;"/>
<stop offset="0.609375" style="stop-color:rgb(68.275452%,84.136963%,84.136963%);stop-opacity:1;"/>
<stop offset="0.613281" style="stop-color:rgb(68.034363%,84.016418%,84.016418%);stop-opacity:1;"/>
<stop offset="0.617188" style="stop-color:rgb(67.7948%,83.8974%,83.8974%);stop-opacity:1;"/>
<stop offset="0.621094" style="stop-color:rgb(67.555237%,83.776855%,83.776855%);stop-opacity:1;"/>
<stop offset="0.625" style="stop-color:rgb(67.315674%,83.657837%,83.657837%);stop-opacity:1;"/>
<stop offset="0.628906" style="stop-color:rgb(67.074585%,83.537292%,83.537292%);stop-opacity:1;"/>
<stop offset="0.632812" style="stop-color:rgb(66.835022%,83.416748%,83.416748%);stop-opacity:1;"/>
<stop offset="0.636719" style="stop-color:rgb(66.593933%,83.296204%,83.296204%);stop-opacity:1;"/>
<stop offset="0.640625" style="stop-color:rgb(66.35437%,83.177185%,83.177185%);stop-opacity:1;"/>
<stop offset="0.644531" style="stop-color:rgb(66.113281%,83.056641%,83.056641%);stop-opacity:1;"/>
<stop offset="0.648437" style="stop-color:rgb(65.873718%,82.936096%,82.936096%);stop-opacity:1;"/>
<stop offset="0.652344" style="stop-color:rgb(65.632629%,82.815552%,82.815552%);stop-opacity:1;"/>
<stop offset="0.65625" style="stop-color:rgb(65.393066%,82.696533%,82.696533%);stop-opacity:1;"/>
<stop offset="0.660156" style="stop-color:rgb(65.153503%,82.575989%,82.575989%);stop-opacity:1;"/>
<stop offset="0.664062" style="stop-color:rgb(64.91394%,82.45697%,82.45697%);stop-opacity:1;"/>
<stop offset="0.667969" style="stop-color:rgb(64.672852%,82.336426%,82.336426%);stop-opacity:1;"/>
<stop offset="0.671875" style="stop-color:rgb(64.433289%,82.215881%,82.215881%);stop-opacity:1;"/>
<stop offset="0.675781" style="stop-color:rgb(64.1922%,82.095337%,82.095337%);stop-opacity:1;"/>
<stop offset="0.679687" style="stop-color:rgb(63.952637%,81.976318%,81.976318%);stop-opacity:1;"/>
<stop offset="0.683594" style="stop-color:rgb(63.711548%,81.855774%,81.855774%);stop-opacity:1;"/>
<stop offset="0.6875" style="stop-color:rgb(63.471985%,81.735229%,81.735229%);stop-opacity:1;"/>
<stop offset="0.691406" style="stop-color:rgb(63.232422%,81.614685%,81.614685%);stop-opacity:1;"/>
<stop offset="0.695312" style="stop-color:rgb(62.992859%,81.495667%,81.495667%);stop-opacity:1;"/>
<stop offset="0.699219" style="stop-color:rgb(62.75177%,81.375122%,81.375122%);stop-opacity:1;"/>
<stop offset="0.703125" style="stop-color:rgb(62.512207%,81.256104%,81.256104%);stop-opacity:1;"/>
<stop offset="0.707031" style="stop-color:rgb(62.271118%,81.135559%,81.135559%);stop-opacity:1;"/>
<stop offset="0.710937" style="stop-color:rgb(62.031555%,81.015015%,81.015015%);stop-opacity:1;"/>
<stop offset="0.714844" style="stop-color:rgb(61.790466%,80.89447%,80.89447%);stop-opacity:1;"/>
<stop offset="0.71875" style="stop-color:rgb(61.550903%,80.775452%,80.775452%);stop-opacity:1;"/>
<stop offset="0.722656" style="stop-color:rgb(61.309814%,80.654907%,80.654907%);stop-opacity:1;"/>
<stop offset="0.726562" style="stop-color:rgb(61.070251%,80.534363%,80.534363%);stop-opacity:1;"/>
<stop offset="0.730469" style="stop-color:rgb(60.830688%,80.413818%,80.413818%);stop-opacity:1;"/>
<stop offset="0.734375" style="stop-color:rgb(60.591125%,80.2948%,80.2948%);stop-opacity:1;"/>
<stop offset="0.738281" style="stop-color:rgb(60.350037%,80.174255%,80.174255%);stop-opacity:1;"/>
<stop offset="0.742188" style="stop-color:rgb(60.110474%,80.055237%,80.055237%);stop-opacity:1;"/>
<stop offset="0.746094" style="stop-color:rgb(59.869385%,79.934692%,79.934692%);stop-opacity:1;"/>
<stop offset="0.75" style="stop-color:rgb(59.629822%,79.814148%,79.814148%);stop-opacity:1;"/>
<stop offset="0.753906" style="stop-color:rgb(59.388733%,79.693604%,79.693604%);stop-opacity:1;"/>
<stop offset="0.757812" style="stop-color:rgb(59.14917%,79.574585%,79.574585%);stop-opacity:1;"/>
<stop offset="0.761719" style="stop-color:rgb(58.909607%,79.454041%,79.454041%);stop-opacity:1;"/>
<stop offset="0.765625" style="stop-color:rgb(58.670044%,79.335022%,79.335022%);stop-opacity:1;"/>
<stop offset="0.769531" style="stop-color:rgb(58.428955%,79.214478%,79.214478%);stop-opacity:1;"/>
<stop offset="0.773437" style="stop-color:rgb(58.189392%,79.093933%,79.093933%);stop-opacity:1;"/>
<stop offset="0.777344" style="stop-color:rgb(57.948303%,78.973389%,78.973389%);stop-opacity:1;"/>
<stop offset="0.78125" style="stop-color:rgb(57.70874%,78.85437%,78.85437%);stop-opacity:1;"/>
<stop offset="0.785156" style="stop-color:rgb(57.467651%,78.733826%,78.733826%);stop-opacity:1;"/>
<stop offset="0.789062" style="stop-color:rgb(57.228088%,78.613281%,78.613281%);stop-opacity:1;"/>
<stop offset="0.792969" style="stop-color:rgb(56.987%,78.492737%,78.492737%);stop-opacity:1;"/>
<stop offset="0.796875" style="stop-color:rgb(56.747437%,78.373718%,78.373718%);stop-opacity:1;"/>
<stop offset="0.800781" style="stop-color:rgb(56.507874%,78.253174%,78.253174%);stop-opacity:1;"/>
<stop offset="0.804687" style="stop-color:rgb(56.268311%,78.134155%,78.134155%);stop-opacity:1;"/>
<stop offset="0.808594" style="stop-color:rgb(56.027222%,78.013611%,78.013611%);stop-opacity:1;"/>
<stop offset="0.8125" style="stop-color:rgb(55.787659%,77.893066%,77.893066%);stop-opacity:1;"/>
<stop offset="0.816406" style="stop-color:rgb(55.54657%,77.772522%,77.772522%);stop-opacity:1;"/>
<stop offset="0.820312" style="stop-color:rgb(55.307007%,77.653503%,77.653503%);stop-opacity:1;"/>
<stop offset="0.824219" style="stop-color:rgb(55.065918%,77.532959%,77.532959%);stop-opacity:1;"/>
<stop offset="0.828125" style="stop-color:rgb(54.826355%,77.412415%,77.412415%);stop-opacity:1;"/>
<stop offset="0.832031" style="stop-color:rgb(54.586792%,77.29187%,77.29187%);stop-opacity:1;"/>
<stop offset="0.835937" style="stop-color:rgb(54.347229%,77.172852%,77.172852%);stop-opacity:1;"/>
<stop offset="0.839844" style="stop-color:rgb(54.10614%,77.052307%,77.052307%);stop-opacity:1;"/>
<stop offset="0.84375" style="stop-color:rgb(53.866577%,76.933289%,76.933289%);stop-opacity:1;"/>
<stop offset="0.847656" style="stop-color:rgb(53.625488%,76.812744%,76.812744%);stop-opacity:1;"/>
<stop offset="0.851562" style="stop-color:rgb(53.385925%,76.6922%,76.6922%);stop-opacity:1;"/>
<stop offset="0.855469" style="stop-color:rgb(53.144836%,76.571655%,76.571655%);stop-opacity:1;"/>
<stop offset="0.859375" style="stop-color:rgb(52.905273%,76.452637%,76.452637%);stop-opacity:1;"/>
<stop offset="0.863281" style="stop-color:rgb(52.664185%,76.332092%,76.332092%);stop-opacity:1;"/>
<stop offset="0.867187" style="stop-color:rgb(52.424622%,76.211548%,76.211548%);stop-opacity:1;"/>
<stop offset="0.871094" style="stop-color:rgb(52.185059%,76.091003%,76.091003%);stop-opacity:1;"/>
<stop offset="0.875" style="stop-color:rgb(51.945496%,75.971985%,75.971985%);stop-opacity:1;"/>
<stop offset="0.878906" style="stop-color:rgb(51.704407%,75.85144%,75.85144%);stop-opacity:1;"/>
<stop offset="0.882812" style="stop-color:rgb(51.464844%,75.732422%,75.732422%);stop-opacity:1;"/>
<stop offset="0.886719" style="stop-color:rgb(51.223755%,75.611877%,75.611877%);stop-opacity:1;"/>
<stop offset="0.890625" style="stop-color:rgb(50.984192%,75.491333%,75.491333%);stop-opacity:1;"/>
<stop offset="0.894531" style="stop-color:rgb(50.743103%,75.370789%,75.370789%);stop-opacity:1;"/>
<stop offset="0.898438" style="stop-color:rgb(50.50354%,75.25177%,75.25177%);stop-opacity:1;"/>
<stop offset="0.902344" style="stop-color:rgb(50.263977%,75.131226%,75.131226%);stop-opacity:1;"/>
<stop offset="0.90625" style="stop-color:rgb(50.024414%,75.012207%,75.012207%);stop-opacity:1;"/>
<stop offset="0.9375" style="stop-color:rgb(50.012207%,75.006104%,75.006104%);stop-opacity:1;"/>
<stop offset="1" style="stop-color:rgb(50%,75%,75%);stop-opacity:1;"/>
</linearGradient>
</defs>
<g id="surface1">
<path style="fill:none;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -0.001625 -3.518844 L -0.001625 -16.52275 " transform="matrix(1,0,0,-1,24.236,3.321)"/>
<path style="fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.206134 -0.001625 L 0.643634 2.092125 L 2.463946 -0.001625 L 0.643634 -2.091469 Z M 6.206134 -0.001625 " transform="matrix(0,1,1,0,24.236,17.47746)"/>
<path style="fill:none;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 4.287437 -36.132125 L 12.494469 -51.034469 " transform="matrix(1,0,0,-1,24.236,3.321)"/>
<path style="fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.207846 -0.000649791 L 0.643676 2.091026 L 2.466342 -0.000704599 L 0.645398 -2.09288 Z M 6.207846 -0.000649791 " transform="matrix(0.48233,0.87595,0.87595,-0.48233,35.58837,52.28458)"/>
<path style="fill:none;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -4.286781 -36.132125 L -11.939125 -50.030563 " transform="matrix(1,0,0,-1,24.236,3.321)"/>
<path style="fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.206594 -0.00239401 L 0.642321 2.093267 L 2.465123 -0.00232116 L 0.642463 -2.094025 Z M 6.206594 -0.00239401 " transform="matrix(-0.48233,0.87596,0.87596,0.48233,13.43713,51.27927)"/>
<path style="fill:none;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 11.428062 -64.214156 C 4.974937 -67.979781 -1.220375 -68.596969 -7.614906 -66.073531 " transform="matrix(1,0,0,-1,24.236,3.321)"/>
<path style="fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.206584 -0.00198464 L 0.642426 2.09409 L 2.465794 0.00102779 L 0.644445 -2.09058 Z M 6.206584 -0.00198464 " transform="matrix(-0.90152,-0.43263,-0.43263,0.90152,18.76247,70.4096)"/>
<path style="fill:none;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -11.247719 -56.819625 C -4.759438 -53.112594 1.439781 -52.550094 7.810875 -55.132125 " transform="matrix(1,0,0,-1,24.236,3.321)"/>
<path style="fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.205492 0.000720865 L 0.643751 2.09126 L 2.466804 0.0010682 L 0.643746 -2.091181 Z M 6.205492 0.000720865 " transform="matrix(0.89754,0.44083,0.44083,-0.89754,29.91438,57.42133)"/>
<path style="fill:none;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -17.743813 -67.999313 L -17.743813 -81.354781 " transform="matrix(1,0,0,-1,24.236,3.321)"/>
<path style="fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.209041 -0.0010625 L 0.642635 2.092687 L 2.466854 -0.0010625 L 0.642635 -2.094813 Z M 6.209041 -0.0010625 " transform="matrix(0,1,1,0,6.49325,82.31049)"/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(50%,50%,50%);fill-opacity:0.5;" d="M 36.304688 26.628906 L 16.460938 26.628906 C 14.261719 26.628906 12.476562 28.410156 12.476562 30.613281 L 12.476562 37.015625 C 12.476562 39.214844 14.261719 41 16.460938 41 L 36.304688 41 C 38.503906 41 40.289062 39.214844 40.289062 37.015625 L 40.289062 30.613281 C 40.289062 28.410156 38.503906 26.628906 36.304688 26.628906 Z M 36.304688 26.628906 "/>
<g clip-path="url(#clip1)" clip-rule="nonzero">
<g clip-path="url(#clip2)" clip-rule="nonzero">
<g clip-path="url(#clip3)" clip-rule="nonzero">
<path style=" stroke:none;fill-rule:nonzero;fill:url(#linear0);" d="M 12.191406 45.804688 L 6.738281 25.445312 L 36.277344 17.527344 L 41.734375 37.890625 Z M 12.191406 45.804688 "/>
</g>
</g>
</g>
<g clip-path="url(#clip4)" clip-rule="nonzero">
<path style="fill:none;stroke-width:1.19553;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,50%,50%);stroke-opacity:1;stroke-miterlimit:10;" d="M 9.92025 7.186531 L -9.919594 7.186531 C -12.122719 7.186531 -13.907875 5.401375 -13.907875 3.202156 L -13.907875 -3.200188 C -13.907875 -5.403313 -12.122719 -7.184563 -9.919594 -7.184563 L 9.92025 -7.184563 C 12.123375 -7.184563 13.904625 -5.403313 13.904625 -3.200188 L 13.904625 3.202156 C 13.904625 5.401375 12.123375 7.186531 9.92025 7.186531 Z M 9.92025 7.186531 " transform="matrix(1,0,0,-1,24.236,31.667)"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-1" x="13.651" y="33.49"/>
<use xlink:href="#glyph0-2" x="18.074412" y="33.49"/>
<use xlink:href="#glyph0-3" x="23.225097" y="33.49"/>
<use xlink:href="#glyph0-4" x="26.82161" y="33.49"/>
<use xlink:href="#glyph0-5" x="30.228833" y="33.49"/>
</g>
<g clip-path="url(#clip5)" clip-rule="nonzero">
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(50%,50%,50%);fill-opacity:0.5;" d="M 45.859375 60.363281 L 42.394531 60.363281 C 40.195312 60.363281 38.410156 62.148438 38.410156 64.347656 L 38.410156 67.722656 C 38.410156 69.921875 40.195312 71.707031 42.394531 71.707031 L 45.859375 71.707031 C 48.058594 71.707031 49.84375 69.921875 49.84375 67.722656 L 49.84375 64.347656 C 49.84375 62.148438 48.058594 60.363281 45.859375 60.363281 Z M 45.859375 60.363281 "/>
</g>
<g clip-path="url(#clip6)" clip-rule="nonzero">
<g clip-path="url(#clip7)" clip-rule="nonzero">
<g clip-path="url(#clip8)" clip-rule="nonzero">
<path style=" stroke:none;fill-rule:nonzero;fill:url(#linear1);" d="M 37.027344 72.417969 L 33.425781 58.976562 L 46.929688 55.359375 L 50.53125 68.800781 Z M 37.027344 72.417969 "/>
</g>
</g>
</g>
<g clip-path="url(#clip9)" clip-rule="nonzero">
<path style="fill:none;stroke-width:1.19553;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,50%,50%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1.731938 5.67025 L -1.732906 5.67025 C -3.932125 5.67025 -5.717281 3.889 -5.717281 1.685875 L -5.717281 -1.685219 C -5.717281 -3.888344 -3.932125 -5.6735 -1.732906 -5.6735 L 1.731938 -5.6735 C 3.931156 -5.6735 5.716313 -3.888344 5.716313 -1.685219 L 5.716313 1.685875 C 5.716313 3.889 3.931156 5.67025 1.731938 5.67025 Z M 1.731938 5.67025 " transform="matrix(1,0,0,-1,41.979,63.889)"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-6" x="39.583" y="66.131"/>
</g>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(50%,50%,50%);fill-opacity:0.5;" d="M 10.550781 59.203125 L 6.730469 59.203125 C 4.527344 59.203125 2.746094 60.988281 2.746094 63.1875 L 2.746094 68.882812 C 2.746094 71.085938 4.527344 72.867188 6.730469 72.867188 L 10.550781 72.867188 C 12.753906 72.867188 14.535156 71.085938 14.535156 68.882812 L 14.535156 63.1875 C 14.535156 60.988281 12.753906 59.203125 10.550781 59.203125 Z M 10.550781 59.203125 "/>
<g clip-path="url(#clip10)" clip-rule="nonzero">
<g clip-path="url(#clip11)" clip-rule="nonzero">
<g clip-path="url(#clip12)" clip-rule="nonzero">
<path style=" stroke:none;fill-rule:nonzero;fill:url(#linear2);" d="M 1.386719 73.667969 L -2.816406 57.972656 L 11.601562 54.109375 L 15.804688 69.804688 Z M 1.386719 73.667969 "/>
</g>
</g>
</g>
<path style="fill:none;stroke-width:1.19553;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,50%,50%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1.91225 6.834313 L -1.911969 6.834313 C -4.111188 6.834313 -5.896344 5.049156 -5.896344 2.846031 L -5.896344 -2.845375 C -5.896344 -5.0485 -4.111188 -6.833656 -1.911969 -6.833656 L 1.91225 -6.833656 C 4.111469 -6.833656 5.896625 -5.0485 5.896625 -2.845375 L 5.896625 2.846031 C 5.896625 5.049156 4.111469 6.834313 1.91225 6.834313 Z M 1.91225 6.834313 " transform="matrix(1,0,0,-1,6.494,63.889)"/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-7" x="3.918" y="67.291"/>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 76 KiB

660
docs/loop-merge.svg Normal file
View File

@ -0,0 +1,660 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="540pt" height="370.24pt" version="1.1" viewBox="0 0 540 370.24" xmlns="http://www.w3.org/2000/svg" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:xlink="http://www.w3.org/1999/xlink">
<metadata>
<rdf:RDF>
<cc:Work rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/>
<dc:title/>
</cc:Work>
</rdf:RDF>
</metadata>
<defs>
<symbol id="glyph0-4" overflow="visible"></symbol>
<symbol id="glyph1-1" overflow="visible">
<path d="m6.0625-2.3438h-4.8594c0.082031 0.61719 0.34375 1.1094 0.78125 1.4844s0.97266 0.5625 1.6094 0.5625c0.35156 0 0.72266-0.054687 1.1094-0.17188 0.39453-0.11328 0.71875-0.26953 0.96875-0.46875 0.0625-0.050781 0.125-0.078125 0.1875-0.078125 0.050781 0 0.097656 0.027344 0.14062 0.078125 0.050781 0.042969 0.078125 0.09375 0.078125 0.15625s-0.03125 0.125-0.09375 0.1875c-0.17969 0.1875-0.5 0.36719-0.96875 0.53125-0.46094 0.16406-0.93359 0.25-1.4219 0.25-0.82422 0-1.5078-0.26562-2.0469-0.79688-0.54297-0.53906-0.8125-1.1914-0.8125-1.9531 0-0.6875 0.25391-1.2812 0.76562-1.7812 0.50781-0.5 1.1445-0.75 1.9062-0.75 0.76953 0 1.4062 0.25781 1.9062 0.76562 0.50781 0.51172 0.75781 1.1719 0.75 1.9844zm-0.48438-0.48438c-0.09375-0.51953-0.34375-0.94531-0.75-1.2812-0.39844-0.33203-0.87109-0.5-1.4219-0.5-0.5625 0-1.0469 0.16797-1.4531 0.5-0.39844 0.32422-0.64062 0.75-0.73438 1.2812z"/>
</symbol>
<symbol id="glyph1-2" overflow="visible">
<path d="m1.9531-4.9219v0.73438c0.33203-0.34375 0.62891-0.57812 0.89062-0.70312 0.26953-0.13281 0.57031-0.20312 0.90625-0.20312 0.36328 0 0.69531 0.078125 1 0.23438 0.20703 0.11719 0.39453 0.30859 0.5625 0.57812 0.17578 0.26172 0.26562 0.52734 0.26562 0.79688v3h0.40625c0.11328 0 0.19531 0.027344 0.25 0.078125 0.050781 0.042969 0.078125 0.10156 0.078125 0.17188 0 0.0625-0.027344 0.12109-0.078125 0.17188-0.054687 0.042969-0.13672 0.0625-0.25 0.0625h-1.2656c-0.125 0-0.21484-0.019531-0.26562-0.0625-0.042969-0.050781-0.0625-0.10938-0.0625-0.17188 0-0.070313 0.019531-0.12891 0.0625-0.17188 0.050781-0.050781 0.14062-0.078125 0.26562-0.078125h0.39062v-2.9219c0-0.33203-0.125-0.61328-0.375-0.84375-0.24219-0.23828-0.57031-0.35938-0.98438-0.35938-0.3125 0-0.58594 0.070313-0.8125 0.20312-0.23047 0.125-0.55859 0.4375-0.98438 0.9375v2.9844h0.53125c0.11328 0 0.19141 0.027344 0.23438 0.078125 0.050781 0.042969 0.078125 0.10156 0.078125 0.17188 0 0.0625-0.027344 0.12109-0.078125 0.17188-0.042969 0.042969-0.12109 0.0625-0.23438 0.0625h-1.5469c-0.11719 0-0.19922-0.019531-0.25-0.0625-0.054688-0.050781-0.078125-0.10938-0.078125-0.17188 0-0.070313 0.023437-0.12891 0.078125-0.17188 0.050781-0.050781 0.13281-0.078125 0.25-0.078125h0.53125v-3.9531h-0.40625c-0.11719 0-0.19922-0.019531-0.25-0.0625-0.042969-0.039062-0.0625-0.097656-0.0625-0.17188 0-0.070313 0.019531-0.12891 0.0625-0.17188 0.050781-0.050781 0.13281-0.078125 0.25-0.078125z"/>
</symbol>
<symbol id="glyph1-3" overflow="visible">
<path d="m2.5156-4.9219h2.5781c0.11328 0 0.19531 0.027344 0.25 0.078125 0.050781 0.042969 0.078125 0.10156 0.078125 0.17188 0 0.074219-0.027344 0.13281-0.078125 0.17188-0.054688 0.042969-0.13672 0.0625-0.25 0.0625h-2.5781v3.1719c0 0.28125 0.10938 0.51562 0.32812 0.70312 0.21875 0.17969 0.53906 0.26562 0.96875 0.26562 0.32031 0 0.67188-0.046875 1.0469-0.14062s0.66406-0.20312 0.875-0.32812c0.070313-0.039063 0.13281-0.0625 0.1875-0.0625 0.0625 0 0.11328 0.027344 0.15625 0.078125 0.039063 0.042969 0.0625 0.09375 0.0625 0.15625 0 0.054688-0.023437 0.10547-0.0625 0.15625-0.125 0.125-0.42188 0.26172-0.89062 0.40625s-0.91797 0.21875-1.3438 0.21875c-0.55469 0-0.99609-0.13281-1.3281-0.39062-0.32422-0.25781-0.48438-0.61328-0.48438-1.0625v-3.1719h-0.89062c-0.11719 0-0.19922-0.019531-0.25-0.0625-0.042969-0.039062-0.0625-0.097656-0.0625-0.17188 0-0.070313 0.019531-0.12891 0.0625-0.17188 0.050781-0.050781 0.13281-0.078125 0.25-0.078125h0.89062v-1.4062c0-0.11328 0.019531-0.19141 0.0625-0.23438 0.039062-0.050781 0.097656-0.078125 0.17188-0.078125 0.070313 0 0.12891 0.027344 0.17188 0.078125 0.050781 0.042969 0.078125 0.12109 0.078125 0.23438z"/>
</symbol>
<symbol id="glyph1-4" overflow="visible">
<path d="m2.9219-4.9219v1.2031c0.61328-0.55078 1.0781-0.90625 1.3906-1.0625 0.3125-0.16406 0.59766-0.25 0.85938-0.25 0.28125 0 0.53906 0.09375 0.78125 0.28125 0.25 0.1875 0.375 0.33594 0.375 0.4375 0 0.074219-0.027344 0.13672-0.078125 0.1875-0.042969 0.042969-0.10156 0.0625-0.17188 0.0625-0.042969 0-0.078125-0.003906-0.10938-0.015625-0.023438-0.019531-0.070312-0.066406-0.14062-0.14062-0.13672-0.125-0.25781-0.21094-0.35938-0.26562-0.09375-0.050781-0.1875-0.078125-0.28125-0.078125-0.21094 0-0.46094 0.085938-0.75 0.25-0.29297 0.16797-0.79688 0.57422-1.5156 1.2188v2.6094h2.1094c0.11328 0 0.19531 0.027344 0.25 0.078125 0.050781 0.042969 0.078125 0.10156 0.078125 0.17188 0 0.0625-0.027344 0.12109-0.078125 0.17188-0.054688 0.042969-0.13672 0.0625-0.25 0.0625h-3.75c-0.10547 0-0.18359-0.019531-0.23438-0.0625-0.054687-0.039062-0.078125-0.097656-0.078125-0.17188 0-0.0625 0.019531-0.11328 0.0625-0.15625 0.050781-0.039063 0.13281-0.0625 0.25-0.0625h1.1562v-3.9844h-0.875c-0.11719 0-0.19922-0.019531-0.25-0.0625-0.042969-0.039062-0.0625-0.097656-0.0625-0.17188 0-0.070313 0.019531-0.12891 0.0625-0.17188 0.050781-0.050781 0.13281-0.078125 0.25-0.078125z"/>
</symbol>
<symbol id="glyph1-5" overflow="visible">
<path d="m3.5156 0-2.2031-4.4375h-0.15625c-0.10547 0-0.18359-0.019531-0.23438-0.0625-0.054687-0.039062-0.078125-0.097656-0.078125-0.17188 0-0.050781 0.007812-0.09375 0.03125-0.125 0.03125-0.039063 0.0625-0.070313 0.09375-0.09375 0.039062-0.019531 0.10156-0.03125 0.1875-0.03125h1.3125c0.11328 0 0.19141 0.027344 0.23438 0.078125 0.050781 0.042969 0.078125 0.10156 0.078125 0.17188 0 0.074219-0.027344 0.13281-0.078125 0.17188-0.042969 0.042969-0.12109 0.0625-0.23438 0.0625h-0.64062l1.9531 3.9219 1.9062-3.9219h-0.64062c-0.11719 0-0.19922-0.019531-0.25-0.0625-0.042969-0.039062-0.0625-0.097656-0.0625-0.17188 0-0.070313 0.019531-0.12891 0.0625-0.17188 0.050781-0.050781 0.13281-0.078125 0.25-0.078125h1.3125c0.11328 0 0.19141 0.027344 0.23438 0.078125 0.050781 0.042969 0.078125 0.10156 0.078125 0.17188 0 0.054687-0.015625 0.10156-0.046875 0.14062-0.03125 0.042969-0.070312 0.070312-0.10938 0.078125-0.03125 0.011719-0.13672 0.015625-0.3125 0.015625l-3.0156 6.1562h0.75c0.11328 0 0.19141 0.019531 0.23438 0.0625 0.050781 0.039062 0.078125 0.097656 0.078125 0.17188 0 0.070313-0.027344 0.12891-0.078125 0.17188-0.042969 0.039062-0.12109 0.0625-0.23438 0.0625h-2.75c-0.11719 0-0.19922-0.023438-0.25-0.0625-0.042969-0.042969-0.0625-0.10156-0.0625-0.17188 0-0.074219 0.019531-0.13281 0.0625-0.17188 0.050781-0.042969 0.13281-0.0625 0.25-0.0625h1.4844z"/>
</symbol>
<symbol id="glyph1-6" overflow="visible">
<path d="m3.3906-4.9219h0.20312c0.20703 0 0.38281 0.078125 0.53125 0.23438 0.15625 0.14844 0.23438 0.32422 0.23438 0.53125 0 0.23047-0.078125 0.41797-0.23438 0.5625-0.14844 0.14844-0.32422 0.21875-0.53125 0.21875h-0.20312c-0.21094 0-0.39062-0.070312-0.54688-0.21875-0.15625-0.15625-0.23438-0.33594-0.23438-0.54688 0-0.21875 0.078125-0.39844 0.23438-0.54688 0.15625-0.15625 0.33594-0.23438 0.54688-0.23438zm0 3.5469h0.20312c0.20703 0 0.38281 0.078125 0.53125 0.23438 0.15625 0.14844 0.23438 0.32422 0.23438 0.53125 0 0.23047-0.078125 0.41797-0.23438 0.5625-0.14844 0.14453-0.32422 0.21875-0.53125 0.21875h-0.20312c-0.21094 0-0.39062-0.074219-0.54688-0.21875-0.15625-0.15625-0.23438-0.33594-0.23438-0.54688 0-0.21875 0.078125-0.39844 0.23438-0.54688 0.15625-0.15625 0.33594-0.23438 0.54688-0.23438z"/>
</symbol>
<symbol id="glyph1-7" overflow="visible"></symbol>
<symbol id="glyph1-8" overflow="visible">
<path d="m1.6875-7.125v3.1562c0.57031-0.75 1.2695-1.125 2.0938-1.125 0.6875 0 1.2812 0.25781 1.7812 0.76562 0.5 0.5 0.75 1.1211 0.75 1.8594 0 0.74219-0.25781 1.3711-0.76562 1.8906-0.5 0.51172-1.0898 0.76562-1.7656 0.76562-0.83594 0-1.5312-0.375-2.0938-1.125v0.9375h-1.1094c-0.11719 0-0.19922-0.019531-0.25-0.0625-0.054687-0.050781-0.078125-0.10938-0.078125-0.17188 0-0.070313 0.023438-0.12891 0.078125-0.17188 0.050781-0.050781 0.13281-0.078125 0.25-0.078125h0.64062v-6.1562h-0.64062c-0.11719 0-0.19922-0.019531-0.25-0.0625-0.054687-0.050781-0.078125-0.11328-0.078125-0.1875 0-0.0625 0.023438-0.11328 0.078125-0.15625 0.050781-0.050781 0.13281-0.078125 0.25-0.078125zm4.1406 4.6719c0-0.59375-0.21094-1.0977-0.625-1.5156-0.40625-0.42578-0.88672-0.64062-1.4375-0.64062-0.55469 0-1.0391 0.21484-1.4531 0.64062-0.40625 0.41797-0.60938 0.92188-0.60938 1.5156 0 0.60547 0.20312 1.1172 0.60938 1.5312 0.41406 0.41797 0.89844 0.625 1.4531 0.625 0.55078 0 1.0312-0.20703 1.4375-0.625 0.41406-0.41406 0.625-0.92578 0.625-1.5312z"/>
</symbol>
<symbol id="glyph1-9" overflow="visible">
<path d="m3.7344-7.125v6.6406h1.875c0.11328 0 0.19141 0.027344 0.23438 0.078125 0.050781 0.042969 0.078125 0.10156 0.078125 0.17188 0 0.0625-0.027344 0.12109-0.078125 0.17188-0.042969 0.042969-0.12109 0.0625-0.23438 0.0625h-4.2344c-0.11719 0-0.19922-0.019531-0.25-0.0625-0.042969-0.050781-0.0625-0.10938-0.0625-0.17188 0-0.070313 0.019531-0.12891 0.0625-0.17188 0.050781-0.050781 0.13281-0.078125 0.25-0.078125h1.875v-6.1562h-1.375c-0.11719 0-0.19922-0.019531-0.25-0.0625-0.042969-0.050781-0.0625-0.11328-0.0625-0.1875 0-0.0625 0.019531-0.11328 0.0625-0.15625 0.050781-0.050781 0.13281-0.078125 0.25-0.078125z"/>
</symbol>
<symbol id="glyph1-10" overflow="visible">
<path d="m4.8594 0v-0.6875c-0.69922 0.58594-1.4375 0.875-2.2188 0.875-0.57422 0-1.0234-0.14844-1.3438-0.4375-0.32422-0.28906-0.48438-0.64453-0.48438-1.0625 0-0.45703 0.21094-0.85938 0.64062-1.2031 0.42578-0.34375 1.0469-0.51562 1.8594-0.51562 0.21875 0 0.45312 0.015625 0.70312 0.046875 0.25781 0.023437 0.53906 0.0625 0.84375 0.125v-0.78125c0-0.25781-0.125-0.48438-0.375-0.67188-0.24219-0.19531-0.60156-0.29688-1.0781-0.29688-0.375 0-0.89844 0.10938-1.5625 0.32812-0.125 0.042969-0.20312 0.0625-0.23438 0.0625-0.0625 0-0.11719-0.019531-0.15625-0.0625-0.042969-0.050781-0.0625-0.11328-0.0625-0.1875 0-0.0625 0.019531-0.10938 0.0625-0.14062 0.050781-0.0625 0.26562-0.14062 0.64062-0.23438 0.58203-0.16406 1.0234-0.25 1.3281-0.25 0.60156 0 1.0703 0.15234 1.4062 0.45312 0.34375 0.30469 0.51562 0.63672 0.51562 1v3.1562h0.64062c0.11328 0 0.19141 0.027344 0.23438 0.078125 0.050781 0.042969 0.078125 0.10156 0.078125 0.17188 0 0.0625-0.027344 0.12109-0.078125 0.17188-0.042969 0.042969-0.12109 0.0625-0.23438 0.0625zm0-2.375c-0.21875-0.0625-0.45312-0.10938-0.70312-0.14062s-0.51562-0.046875-0.79688-0.046875c-0.6875 0-1.2305 0.15234-1.625 0.45312-0.29297 0.21875-0.4375 0.48438-0.4375 0.79688 0 0.29297 0.10938 0.53906 0.32812 0.73438 0.22656 0.1875 0.55469 0.28125 0.98438 0.28125 0.41406 0 0.80078-0.078125 1.1562-0.23438 0.35156-0.16406 0.71875-0.42969 1.0938-0.79688z"/>
</symbol>
<symbol id="glyph1-11" overflow="visible">
<path d="m4.2188-5.7656c0 0.40625-0.14844 0.75781-0.4375 1.0469-0.28125 0.28125-0.62109 0.42188-1.0156 0.42188-0.40625 0-0.75-0.14062-1.0312-0.42188-0.28125-0.28906-0.42188-0.64062-0.42188-1.0469s0.14062-0.75 0.42188-1.0312c0.28125-0.28906 0.625-0.4375 1.0312-0.4375 0.39453 0 0.73438 0.14844 1.0156 0.4375 0.28906 0.28125 0.4375 0.625 0.4375 1.0312zm-0.34375 0c0-0.3125-0.10938-0.57812-0.32812-0.79688s-0.48047-0.32812-0.78125-0.32812c-0.3125 0-0.57812 0.10938-0.79688 0.32812s-0.32812 0.48438-0.32812 0.79688 0.10938 0.57812 0.32812 0.79688 0.48438 0.32812 0.79688 0.32812c0.30078 0 0.5625-0.10938 0.78125-0.32812s0.32812-0.48438 0.32812-0.79688zm1.875 1.6562-4.4062 1.4375c-0.054688 0.011719-0.09375 0.015625-0.125 0.015625-0.042969 0-0.078125-0.015625-0.10938-0.046875-0.03125-0.039063-0.046875-0.082031-0.046875-0.125 0-0.039063 0.00781-0.078125 0.03125-0.10938 0.019531-0.019531 0.066406-0.046875 0.14062-0.078125l4.4062-1.4219c0.0625-0.019531 0.10156-0.03125 0.125-0.03125 0.039063 0 0.078125 0.023438 0.10938 0.0625 0.03125 0.03125 0.046875 0.070312 0.046875 0.10938 0 0.042969-0.011719 0.078125-0.03125 0.10938-0.023437 0.023438-0.070313 0.046875-0.14062 0.078125zm-0.0625 2.7812c0 0.40625-0.14844 0.75781-0.4375 1.0469-0.28125 0.28125-0.625 0.42188-1.0312 0.42188-0.39844 0-0.74219-0.14453-1.0312-0.4375-0.28125-0.28906-0.42188-0.63281-0.42188-1.0312 0-0.41406 0.14062-0.76562 0.42188-1.0469 0.28906-0.28906 0.63281-0.4375 1.0312-0.4375 0.40625 0 0.75 0.14844 1.0312 0.4375 0.28906 0.28125 0.4375 0.63281 0.4375 1.0469zm-0.35938 0c0-0.32031-0.10938-0.59375-0.32812-0.8125-0.21094-0.21875-0.46875-0.32812-0.78125-0.32812-0.30469 0-0.5625 0.10938-0.78125 0.32812s-0.32812 0.49219-0.32812 0.8125c0 0.30469 0.10938 0.57031 0.32812 0.79688 0.21875 0.21875 0.47656 0.32812 0.78125 0.32812 0.3125 0 0.57031-0.10938 0.78125-0.32812 0.21875-0.21875 0.32812-0.48438 0.32812-0.79688z"/>
</symbol>
<symbol id="glyph1-12" overflow="visible">
<path d="m1.9219-7.125v2.9375c0.30078-0.33203 0.58594-0.56641 0.85938-0.70312 0.28125-0.13281 0.59375-0.20312 0.9375-0.20312 0.375 0 0.69141 0.070312 0.95312 0.20312 0.25781 0.13672 0.47266 0.33984 0.64062 0.60938 0.17578 0.27344 0.26562 0.55469 0.26562 0.84375v2.9531h0.53125c0.125 0 0.20703 0.027344 0.25 0.078125 0.050781 0.042969 0.078125 0.10156 0.078125 0.17188 0 0.0625-0.027344 0.12109-0.078125 0.17188-0.042969 0.042969-0.125 0.0625-0.25 0.0625h-1.5469c-0.11719 0-0.19922-0.019531-0.25-0.0625-0.054688-0.050781-0.078125-0.10938-0.078125-0.17188 0-0.070313 0.023437-0.12891 0.078125-0.17188 0.050781-0.050781 0.13281-0.078125 0.25-0.078125h0.53125v-2.9219c0-0.34375-0.125-0.62891-0.375-0.85938-0.24219-0.22656-0.58594-0.34375-1.0312-0.34375-0.34375 0-0.64062 0.085937-0.89062 0.25-0.17969 0.125-0.46875 0.41406-0.875 0.85938v3.0156h0.53125c0.11328 0 0.19531 0.027344 0.25 0.078125 0.050781 0.042969 0.078125 0.10156 0.078125 0.17188 0 0.0625-0.027344 0.12109-0.078125 0.17188-0.054687 0.042969-0.13672 0.0625-0.25 0.0625h-1.5469c-0.11719 0-0.19922-0.019531-0.25-0.0625-0.054688-0.050781-0.078125-0.10938-0.078125-0.17188 0-0.070313 0.023437-0.12891 0.078125-0.17188 0.050781-0.050781 0.13281-0.078125 0.25-0.078125h0.53125v-6.1562h-0.64062c-0.11719 0-0.19922-0.019531-0.25-0.0625-0.042969-0.050781-0.0625-0.11328-0.0625-0.1875 0-0.0625 0.019531-0.11328 0.0625-0.15625 0.050781-0.050781 0.13281-0.078125 0.25-0.078125z"/>
</symbol>
<symbol id="glyph1-13" overflow="visible">
<path d="m5.8281-7.125v6.6406h0.625c0.125 0 0.20703 0.027344 0.25 0.078125 0.050781 0.042969 0.078125 0.10156 0.078125 0.17188 0 0.0625-0.027344 0.12109-0.078125 0.17188-0.042969 0.042969-0.125 0.0625-0.25 0.0625h-1.1094v-0.95312c-0.55469 0.76172-1.2578 1.1406-2.1094 1.1406-0.42969 0-0.83984-0.11719-1.2344-0.34375-0.39844-0.22656-0.71094-0.55078-0.9375-0.96875-0.23047-0.42578-0.34375-0.86719-0.34375-1.3281 0-0.44531 0.11328-0.87891 0.34375-1.2969 0.22656-0.42578 0.53906-0.75391 0.9375-0.98438 0.39453-0.23828 0.80469-0.35938 1.2344-0.35938 0.83203 0 1.5352 0.38281 2.1094 1.1406v-2.6875h-0.64062c-0.11719 0-0.19922-0.019531-0.25-0.0625-0.054687-0.050781-0.078125-0.11328-0.078125-0.1875 0-0.0625 0.023438-0.11328 0.078125-0.15625 0.050781-0.050781 0.13281-0.078125 0.25-0.078125zm-0.48438 4.6719c0-0.60156-0.21094-1.1133-0.625-1.5312-0.40625-0.41406-0.89062-0.625-1.4531-0.625s-1.0547 0.21094-1.4688 0.625c-0.40625 0.41797-0.60938 0.92969-0.60938 1.5312 0 0.60547 0.20312 1.1172 0.60938 1.5312 0.41406 0.41797 0.90625 0.625 1.4688 0.625s1.0469-0.20703 1.4531-0.625c0.41406-0.41406 0.625-0.92578 0.625-1.5312z"/>
</symbol>
<symbol id="glyph1-14" overflow="visible">
<path d="m3.7188-7.3594v1.2344h-0.70312v-1.2344zm0.015625 2.4375v4.4375h1.875c0.125 0 0.20703 0.027344 0.25 0.078125 0.050781 0.042969 0.078125 0.10156 0.078125 0.17188 0 0.0625-0.027344 0.12109-0.078125 0.17188-0.042969 0.042969-0.125 0.0625-0.25 0.0625h-4.2188c-0.11719 0-0.19922-0.019531-0.25-0.0625-0.042969-0.050781-0.0625-0.10938-0.0625-0.17188 0-0.070313 0.019531-0.12891 0.0625-0.17188 0.050781-0.050781 0.13281-0.078125 0.25-0.078125h1.875v-3.9531h-1.3906c-0.11719 0-0.19922-0.019531-0.25-0.0625-0.054688-0.039062-0.078125-0.097656-0.078125-0.17188 0-0.070313 0.023437-0.12891 0.078125-0.17188 0.050781-0.050781 0.13281-0.078125 0.25-0.078125z"/>
</symbol>
<symbol id="glyph1-15" overflow="visible">
<path d="m6.0938-3.9375h-5.2031c-0.11719 0-0.19922-0.019531-0.25-0.0625-0.042969-0.050781-0.0625-0.11328-0.0625-0.1875 0-0.070312 0.019531-0.12891 0.0625-0.17188 0.050781-0.039063 0.13281-0.0625 0.25-0.0625h5.2031c0.11328 0 0.19141 0.023437 0.23438 0.0625 0.050781 0.042969 0.078125 0.10156 0.078125 0.17188 0 0.074219-0.027344 0.13672-0.078125 0.1875-0.042969 0.042969-0.12109 0.0625-0.23438 0.0625zm0 1.7031h-5.2031c-0.11719 0-0.19922-0.019531-0.25-0.0625-0.042969-0.039063-0.0625-0.097656-0.0625-0.17188 0-0.070312 0.019531-0.12891 0.0625-0.17188 0.050781-0.050781 0.13281-0.078125 0.25-0.078125h5.2031c0.11328 0 0.19141 0.027344 0.23438 0.078125 0.050781 0.042969 0.078125 0.10156 0.078125 0.17188 0 0.074219-0.027344 0.13281-0.078125 0.17188-0.042969 0.042969-0.12109 0.0625-0.23438 0.0625z"/>
</symbol>
<symbol id="glyph1-16" overflow="visible">
<path d="m1.6875-4.9219v0.875c0.28906-0.34375 0.59766-0.60156 0.92188-0.78125 0.32031-0.17578 0.70312-0.26562 1.1406-0.26562 0.47656 0 0.91406 0.11719 1.3125 0.34375 0.39453 0.21875 0.70312 0.52734 0.92188 0.92188 0.21875 0.38672 0.32812 0.79297 0.32812 1.2188 0 0.6875-0.24609 1.2773-0.73438 1.7656-0.49219 0.48047-1.0938 0.71875-1.8125 0.71875-0.85547 0-1.5469-0.34375-2.0781-1.0312v2.875h1.1562c0.11328 0 0.19531 0.019531 0.25 0.0625 0.050781 0.039062 0.078125 0.097656 0.078125 0.17188 0 0.070313-0.027344 0.12891-0.078125 0.17188-0.054688 0.039062-0.13672 0.0625-0.25 0.0625h-2.2656c-0.11719 0-0.19922-0.023438-0.25-0.0625-0.054687-0.042969-0.078125-0.10156-0.078125-0.17188 0-0.074219 0.023438-0.13281 0.078125-0.17188 0.050781-0.042969 0.13281-0.0625 0.25-0.0625h0.64062v-6.1562h-0.64062c-0.11719 0-0.19922-0.019531-0.25-0.0625-0.054687-0.039062-0.078125-0.097656-0.078125-0.17188 0-0.070313 0.023438-0.12891 0.078125-0.17188 0.050781-0.050781 0.13281-0.078125 0.25-0.078125zm4.1406 2.3125c0-0.53906-0.20312-1.0078-0.60938-1.4062-0.39844-0.39453-0.88281-0.59375-1.4531-0.59375-0.58594 0-1.0781 0.19922-1.4844 0.59375-0.39844 0.39844-0.59375 0.86719-0.59375 1.4062 0 0.55469 0.19531 1.0273 0.59375 1.4219 0.40625 0.38672 0.89844 0.57812 1.4844 0.57812 0.57031 0 1.0547-0.19141 1.4531-0.57812 0.40625-0.39453 0.60938-0.86719 0.60938-1.4219z"/>
</symbol>
<symbol id="glyph1-17" overflow="visible">
<path d="m4.4688-3.875c0.4375 0.19922 0.76953 0.46875 1 0.8125 0.22656 0.34375 0.34375 0.69922 0.34375 1.0625 0 0.57422-0.23438 1.0781-0.70312 1.5156-0.46094 0.4375-1.0312 0.65625-1.7188 0.65625-0.41797 0-0.84375-0.089844-1.2812-0.26562-0.4375-0.17578-0.74609-0.35156-0.92188-0.53125-0.054688-0.0625-0.078125-0.125-0.078125-0.1875s0.019531-0.11328 0.0625-0.15625c0.039063-0.050781 0.09375-0.078125 0.15625-0.078125s0.12891 0.03125 0.20312 0.09375c0.58203 0.42969 1.2031 0.64062 1.8594 0.64062 0.55078 0 1.0156-0.17188 1.3906-0.51562s0.5625-0.72656 0.5625-1.1562c0-0.28125-0.09375-0.55469-0.28125-0.82812-0.17969-0.26953-0.44531-0.48438-0.79688-0.64062-0.34375-0.15625-0.6875-0.23438-1.0312-0.23438-0.11719 0-0.19922-0.019531-0.25-0.0625-0.054687-0.050781-0.078125-0.11328-0.078125-0.1875 0-0.0625 0.019531-0.11328 0.0625-0.15625 0.050781-0.050781 0.12891-0.078125 0.23438-0.078125h0.40625c0.42578 0 0.77344-0.12891 1.0469-0.39062 0.28125-0.25781 0.42188-0.5625 0.42188-0.90625 0-0.35156-0.14844-0.66406-0.4375-0.9375-0.29297-0.26953-0.67188-0.40625-1.1406-0.40625-0.32422 0-0.625 0.058594-0.90625 0.17188-0.27344 0.10547-0.49219 0.25781-0.65625 0.45312-0.0625 0.085938-0.10938 0.13672-0.14062 0.15625-0.03125 0.011719-0.070313 0.015625-0.10938 0.015625-0.074219 0-0.13281-0.019531-0.17188-0.0625-0.042969-0.039063-0.0625-0.09375-0.0625-0.15625 0-0.15625 0.16016-0.34766 0.48438-0.57812 0.45703-0.32031 0.97656-0.48438 1.5625-0.48438 0.60156 0 1.0977 0.18359 1.4844 0.54688 0.38281 0.36719 0.57812 0.79688 0.57812 1.2969 0 0.3125-0.09375 0.61719-0.28125 0.90625-0.1875 0.28125-0.46094 0.50781-0.8125 0.67188z"/>
</symbol>
<symbol id="glyph1-18" overflow="visible">
<path d="m1.4375-0.48438h3.6562v-0.1875c0-0.10156 0.019531-0.17969 0.0625-0.23438 0.050781-0.050781 0.11328-0.078125 0.1875-0.078125 0.0625 0 0.11328 0.027344 0.15625 0.078125 0.050781 0.054688 0.078125 0.13281 0.078125 0.23438v0.67188h-4.6094v-0.70312c0.96875-0.875 1.9102-1.7578 2.8281-2.6562 0.42578-0.41406 0.71875-0.72266 0.875-0.92188 0.16406-0.19531 0.27344-0.36719 0.32812-0.51562 0.0625-0.15625 0.09375-0.30469 0.09375-0.45312 0-0.41406-0.16797-0.78125-0.5-1.0938-0.32422-0.3125-0.71875-0.46875-1.1875-0.46875-0.41797 0-0.78906 0.12109-1.1094 0.35938-0.32422 0.24219-0.53125 0.53906-0.625 0.89062-0.023437 0.085938-0.046875 0.14062-0.078125 0.17188-0.054688 0.042969-0.10547 0.0625-0.15625 0.0625-0.074219 0-0.13281-0.019531-0.17188-0.0625-0.042969-0.050781-0.0625-0.10938-0.0625-0.17188 0-0.17578 0.097656-0.42188 0.29688-0.73438 0.19531-0.3125 0.46875-0.55469 0.8125-0.73438 0.35156-0.17578 0.71875-0.26562 1.0938-0.26562 0.59375 0 1.1016 0.21094 1.5312 0.625 0.42578 0.40625 0.64062 0.875 0.64062 1.4062 0 0.21875-0.039063 0.42188-0.10938 0.60938-0.074219 0.17969-0.19922 0.375-0.375 0.59375-0.16797 0.21875-0.47656 0.54688-0.92188 0.98438-1.125 1.1055-2.0391 1.9609-2.7344 2.5625z"/>
</symbol>
<symbol id="glyph1-19" overflow="visible">
<path d="m3.7344-6.6406v7.6406h1.1562c0.11328 0 0.19141 0.019531 0.23438 0.0625 0.050781 0.039062 0.078125 0.097656 0.078125 0.17188 0 0.070313-0.027344 0.12891-0.078125 0.17188-0.042969 0.039062-0.12109 0.0625-0.23438 0.0625h-1.6406v-8.5938h1.6406c0.11328 0 0.19141 0.027344 0.23438 0.078125 0.050781 0.042969 0.078125 0.10156 0.078125 0.17188 0 0.0625-0.027344 0.12109-0.078125 0.17188-0.042969 0.042969-0.12109 0.0625-0.23438 0.0625z"/>
</symbol>
<symbol id="glyph1-20" overflow="visible">
<path d="m5.6719-4.1562v1.1875c0 1.0234-0.24609 1.8359-0.73438 2.4375-0.375 0.46875-0.85547 0.70312-1.4375 0.70312-0.28125 0-0.54688-0.058594-0.79688-0.17188s-0.46094-0.26953-0.625-0.46875c-0.11719-0.125-0.24219-0.32031-0.375-0.59375-0.125-0.28125-0.21484-0.53516-0.26562-0.76562-0.09375-0.32031-0.14062-0.70312-0.14062-1.1406v-1.1875c0-1.0195 0.24219-1.832 0.73438-2.4375 0.38281-0.46875 0.86719-0.70312 1.4531-0.70312 0.28125 0 0.53906 0.058594 0.78125 0.17188 0.25 0.11719 0.46094 0.27344 0.64062 0.46875 0.11328 0.125 0.23438 0.32812 0.35938 0.60938 0.125 0.27344 0.21875 0.52344 0.28125 0.75 0.082031 0.32422 0.125 0.70312 0.125 1.1406zm-0.46875 0.0625c0-0.44531-0.070313-0.86328-0.20312-1.25-0.125-0.38281-0.26562-0.69141-0.42188-0.92188-0.09375-0.13281-0.21484-0.25-0.35938-0.34375-0.21875-0.13281-0.46484-0.20312-0.73438-0.20312-0.53125 0-0.94922 0.27734-1.25 0.82812-0.30469 0.54297-0.45312 1.1719-0.45312 1.8906v1.0625c0 0.44922 0.0625 0.87109 0.1875 1.2656 0.125 0.38672 0.26953 0.69531 0.4375 0.92188 0.082031 0.125 0.20312 0.23438 0.35938 0.32812 0.21875 0.13672 0.46094 0.20312 0.73438 0.20312 0.53125 0 0.94531-0.26953 1.25-0.8125 0.30078-0.55078 0.45312-1.1875 0.45312-1.9062z"/>
</symbol>
<symbol id="glyph1-21" overflow="visible">
<path d="m2.5469-1.7188h1.5469l-1.6875 3.1406c-0.10547 0.1875-0.23047 0.28125-0.375 0.28125-0.09375 0-0.17188-0.039063-0.23438-0.10938-0.0625-0.0625-0.09375-0.14062-0.09375-0.23438 0-0.03125 0.00391-0.074219 0.015625-0.125z"/>
</symbol>
<symbol id="glyph1-22" overflow="visible">
<path d="m3.2656 1v-7.6406h-1.1562c-0.11719 0-0.19922-0.019531-0.25-0.0625-0.042969-0.050781-0.0625-0.10938-0.0625-0.17188 0-0.070312 0.019531-0.12891 0.0625-0.17188 0.050781-0.050781 0.13281-0.078125 0.25-0.078125h1.6406v8.5938h-1.6406c-0.11719 0-0.19922-0.023438-0.25-0.0625-0.042969-0.042969-0.0625-0.10156-0.0625-0.17188 0-0.074219 0.019531-0.13281 0.0625-0.17188 0.050781-0.042969 0.13281-0.0625 0.25-0.0625z"/>
</symbol>
<symbol id="glyph1-23" overflow="visible">
<path d="m3.3906-1.375h0.20312c0.20703 0 0.38281 0.078125 0.53125 0.23438 0.15625 0.14844 0.23438 0.32422 0.23438 0.53125 0 0.23047-0.078125 0.41797-0.23438 0.5625-0.14844 0.14453-0.32422 0.21875-0.53125 0.21875h-0.20312c-0.21094 0-0.39062-0.074219-0.54688-0.21875-0.15625-0.15625-0.23438-0.33594-0.23438-0.54688 0-0.21875 0.078125-0.39844 0.23438-0.54688 0.15625-0.15625 0.33594-0.23438 0.54688-0.23438z"/>
</symbol>
<symbol id="glyph1-24" overflow="visible">
<path d="m3.8125-2.5781 2.1875 2.0938c0.14453 0 0.23438 0.011719 0.26562 0.03125 0.039063 0.011719 0.078125 0.039063 0.10938 0.078125 0.03125 0.042969 0.046875 0.089844 0.046875 0.14062 0 0.0625-0.027344 0.12109-0.078125 0.17188-0.054688 0.042969-0.13672 0.0625-0.25 0.0625h-1.5312c-0.125 0-0.21484-0.019531-0.26562-0.0625-0.042969-0.050781-0.0625-0.10938-0.0625-0.17188 0-0.070313 0.019531-0.12891 0.0625-0.17188 0.050781-0.050781 0.14062-0.078125 0.26562-0.078125h0.78125l-1.8594-1.7656-1.8438 1.7656h0.79688c0.11328 0 0.19531 0.027344 0.25 0.078125 0.050781 0.042969 0.078125 0.10156 0.078125 0.17188 0 0.0625-0.027344 0.12109-0.078125 0.17188-0.054688 0.042969-0.13672 0.0625-0.25 0.0625h-1.5469c-0.11719 0-0.19922-0.019531-0.25-0.0625-0.042969-0.050781-0.0625-0.10938-0.0625-0.17188 0-0.050781 0.007813-0.097656 0.03125-0.14062 0.03125-0.039062 0.0625-0.066406 0.09375-0.078125 0.039063-0.019531 0.13281-0.03125 0.28125-0.03125l2.1875-2.0938-1.9531-1.8594c-0.13672 0-0.22656-0.00391-0.26562-0.015625-0.03125-0.019531-0.0625-0.050781-0.09375-0.09375-0.023437-0.039063-0.03125-0.082031-0.03125-0.125 0-0.070313 0.019531-0.12891 0.0625-0.17188 0.050781-0.050781 0.14062-0.078125 0.26562-0.078125h1.2969c0.11328 0 0.19141 0.027344 0.23438 0.078125 0.050781 0.042969 0.078125 0.10156 0.078125 0.17188 0 0.074219-0.027344 0.13281-0.078125 0.17188-0.042969 0.042969-0.12109 0.0625-0.23438 0.0625h-0.5625l1.5938 1.5469 1.625-1.5469h-0.5625c-0.11719 0-0.19922-0.019531-0.25-0.0625-0.054687-0.039062-0.078125-0.097656-0.078125-0.17188 0-0.070313 0.019531-0.12891 0.0625-0.17188 0.050781-0.050781 0.14062-0.078125 0.26562-0.078125h1.2969c0.11328 0 0.19141 0.027344 0.23438 0.078125 0.050781 0.042969 0.078125 0.10156 0.078125 0.17188 0 0.042969-0.015625 0.085937-0.046875 0.125-0.023437 0.042969-0.054687 0.074219-0.09375 0.09375-0.03125 0.011719-0.11719 0.015625-0.25 0.015625z"/>
</symbol>
<symbol id="glyph1-25" overflow="visible">
<path d="m3.1719-4.4375v3.9531h2.0938c0.11328 0 0.19141 0.027344 0.23438 0.078125 0.050781 0.042969 0.078125 0.10156 0.078125 0.17188 0 0.0625-0.027344 0.12109-0.078125 0.17188-0.042969 0.042969-0.12109 0.0625-0.23438 0.0625h-3.7344c-0.10547 0-0.18359-0.019531-0.23438-0.0625-0.054687-0.050781-0.078125-0.10938-0.078125-0.17188 0-0.070313 0.023438-0.12891 0.078125-0.17188 0.050781-0.050781 0.12891-0.078125 0.23438-0.078125h1.1562v-3.9531h-1.0312c-0.11719 0-0.19922-0.019531-0.25-0.0625-0.042969-0.039062-0.0625-0.097656-0.0625-0.17188 0-0.070313 0.019531-0.12891 0.0625-0.17188 0.050781-0.050781 0.13281-0.078125 0.25-0.078125h1.0312v-0.71875c0-0.39453 0.16016-0.73828 0.48438-1.0312 0.33203-0.30078 0.76562-0.45312 1.2969-0.45312 0.44531 0 0.92969 0.042969 1.4531 0.125 0.1875 0.03125 0.30078 0.070312 0.34375 0.10938 0.039063 0.042969 0.0625 0.10156 0.0625 0.17188 0 0.0625-0.027344 0.11719-0.078125 0.15625-0.042969 0.042969-0.10156 0.0625-0.17188 0.0625-0.03125 0-0.085937-0.00391-0.15625-0.015625-0.57422-0.082031-1.0586-0.125-1.4531-0.125-0.41797 0-0.74219 0.10547-0.96875 0.3125-0.21875 0.19922-0.32812 0.42969-0.32812 0.6875v0.71875h2.2344c0.11328 0 0.19141 0.027344 0.23438 0.078125 0.050781 0.042969 0.078125 0.10156 0.078125 0.17188 0 0.074219-0.027344 0.13281-0.078125 0.17188-0.042969 0.042969-0.12109 0.0625-0.23438 0.0625z"/>
</symbol>
<symbol id="glyph1-26" overflow="visible">
<path d="m6.1562-2.4531c0 0.73047-0.26172 1.3555-0.78125 1.875-0.52344 0.51172-1.1523 0.76562-1.8906 0.76562-0.74219 0-1.3711-0.25391-1.8906-0.76562-0.51172-0.51953-0.76562-1.1445-0.76562-1.875 0-0.71875 0.25391-1.3359 0.76562-1.8594 0.51953-0.51953 1.1484-0.78125 1.8906-0.78125 0.73828 0 1.3672 0.26172 1.8906 0.78125 0.51953 0.51172 0.78125 1.1328 0.78125 1.8594zm-0.48438 0c0-0.59375-0.21484-1.0977-0.64062-1.5156-0.42969-0.42578-0.94531-0.64062-1.5469-0.64062-0.60547 0-1.1211 0.21484-1.5469 0.64062-0.42969 0.41797-0.64062 0.92188-0.64062 1.5156s0.21094 1.1055 0.64062 1.5312c0.42578 0.41797 0.94141 0.625 1.5469 0.625 0.60156 0 1.1172-0.20703 1.5469-0.625 0.42578-0.42578 0.64062-0.9375 0.64062-1.5312z"/>
</symbol>
<symbol id="glyph1-27" overflow="visible">
<path d="m5.125 0v-0.70312c-0.65625 0.59375-1.3594 0.89062-2.1094 0.89062-0.46875 0-0.82422-0.125-1.0625-0.375-0.32422-0.33203-0.48438-0.72266-0.48438-1.1719v-3.0781h-0.64062c-0.10547 0-0.18359-0.019531-0.23438-0.0625-0.054688-0.039062-0.078125-0.097656-0.078125-0.17188 0-0.070313 0.023437-0.12891 0.078125-0.17188 0.050781-0.050781 0.12891-0.078125 0.23438-0.078125h1.125v3.5625c0 0.3125 0.097656 0.57031 0.29688 0.76562 0.19531 0.19922 0.44141 0.29688 0.73438 0.29688 0.78125 0 1.4922-0.35156 2.1406-1.0625v-3.0781h-0.89062c-0.11719 0-0.19922-0.019531-0.25-0.0625-0.042969-0.039062-0.0625-0.097656-0.0625-0.17188 0-0.070313 0.019531-0.12891 0.0625-0.17188 0.050781-0.050781 0.13281-0.078125 0.25-0.078125h1.3594v4.4375h0.40625c0.11328 0 0.19141 0.027344 0.23438 0.078125 0.050781 0.042969 0.078125 0.10156 0.078125 0.17188 0 0.0625-0.027344 0.12109-0.078125 0.17188-0.042969 0.042969-0.12109 0.0625-0.23438 0.0625z"/>
</symbol>
<symbol id="glyph1-28" overflow="visible">
<path d="m4.1719-7.3594v1.2344h-0.70312v-1.2344zm0.03125 2.9219h-2.8281c-0.11719 0-0.19922-0.019531-0.25-0.0625-0.054688-0.039062-0.078125-0.097656-0.078125-0.17188 0-0.070313 0.019531-0.12891 0.0625-0.17188 0.050781-0.050781 0.14062-0.078125 0.26562-0.078125h3.2969v5.25c0 0.40625-0.085937 0.74219-0.25 1.0156-0.16797 0.28125-0.41797 0.50391-0.75 0.67188-0.23047 0.11328-0.5 0.17188-0.8125 0.17188h-1.5156c-0.11719 0-0.19922-0.023438-0.25-0.0625-0.054688-0.042969-0.078125-0.10156-0.078125-0.17188 0-0.074219 0.023437-0.13672 0.078125-0.1875 0.050781-0.042969 0.13281-0.0625 0.25-0.0625l1.5 0.015625c0.40625 0 0.73438-0.13672 0.98438-0.40625 0.25-0.26172 0.375-0.58984 0.375-0.98438z"/>
</symbol>
<symbol id="glyph1-29" overflow="visible">
<path d="m5.4844-4.4375v-0.15625c0-0.11328 0.019531-0.19531 0.0625-0.25 0.039063-0.050781 0.097656-0.078125 0.17188-0.078125 0.070312 0 0.12891 0.027344 0.17188 0.078125 0.039063 0.054688 0.0625 0.13672 0.0625 0.25v1.0781c0 0.11719-0.023437 0.19922-0.0625 0.25-0.042969 0.054687-0.10156 0.078125-0.17188 0.078125-0.0625 0-0.12109-0.019531-0.17188-0.0625-0.042969-0.050781-0.0625-0.125-0.0625-0.21875-0.03125-0.26953-0.21484-0.52344-0.54688-0.76562-0.32422-0.25-0.76562-0.375-1.3281-0.375-0.71094 0-1.2461 0.22656-1.6094 0.67188-0.36719 0.4375-0.54688 0.94531-0.54688 1.5156 0 0.61719 0.19531 1.125 0.59375 1.5312 0.40625 0.39844 0.92969 0.59375 1.5781 0.59375 0.375 0 0.75-0.066406 1.125-0.20312 0.38281-0.13281 0.73438-0.35156 1.0469-0.65625 0.082031-0.070312 0.15625-0.10938 0.21875-0.10938s0.11328 0.023437 0.15625 0.0625c0.039063 0.042969 0.0625 0.10156 0.0625 0.17188 0 0.15625-0.1875 0.35938-0.5625 0.60938-0.625 0.40625-1.3125 0.60938-2.0625 0.60938-0.77344 0-1.4062-0.24219-1.9062-0.73438-0.49219-0.48828-0.73438-1.1094-0.73438-1.8594 0-0.76953 0.25-1.4102 0.75-1.9219 0.50781-0.50781 1.1484-0.76562 1.9219-0.76562 0.72656 0 1.3438 0.21875 1.8438 0.65625z"/>
</symbol>
<symbol id="glyph1-30" overflow="visible">
<path d="m3.9062 0h-0.8125l-1.9531-4.4375h-0.48438c-0.11719 0-0.19922-0.019531-0.25-0.0625-0.054688-0.039062-0.078125-0.097656-0.078125-0.17188 0-0.070313 0.023437-0.12891 0.078125-0.17188 0.050781-0.050781 0.13281-0.078125 0.25-0.078125h1.7812c0.11328 0 0.19531 0.027344 0.25 0.078125 0.050781 0.042969 0.078125 0.10156 0.078125 0.17188 0 0.074219-0.027344 0.13281-0.078125 0.17188-0.054688 0.042969-0.13672 0.0625-0.25 0.0625h-0.78125l1.75 3.9531h0.20312l1.7188-3.9531h-0.79688c-0.11719 0-0.19922-0.019531-0.25-0.0625-0.042969-0.039062-0.0625-0.097656-0.0625-0.17188 0-0.070313 0.019531-0.12891 0.0625-0.17188 0.050781-0.050781 0.13281-0.078125 0.25-0.078125h1.7969c0.11328 0 0.19141 0.027344 0.23438 0.078125 0.050781 0.042969 0.078125 0.10156 0.078125 0.17188 0 0.074219-0.027344 0.13281-0.078125 0.17188-0.042969 0.042969-0.12109 0.0625-0.23438 0.0625h-0.48438z"/>
</symbol>
<symbol id="glyph1-31" overflow="visible">
<path d="m3.4375-2.8281c0-0.4375 0.054688-0.89453 0.17188-1.375 0.11328-0.48828 0.32812-1.0508 0.64062-1.6875 0.32031-0.64453 0.5625-1.0352 0.71875-1.1719 0.039062-0.039062 0.085938-0.0625 0.14062-0.0625 0.0625 0 0.11719 0.027344 0.17188 0.078125 0.050781 0.042969 0.078125 0.09375 0.078125 0.15625 0 0.042969-0.015625 0.085937-0.046875 0.125-0.41797 0.76172-0.71484 1.4531-0.89062 2.0781-0.17969 0.625-0.26562 1.2461-0.26562 1.8594 0 0.625 0.085938 1.25 0.26562 1.875 0.17578 0.61719 0.47266 1.3008 0.89062 2.0625 0.03125 0.050781 0.046875 0.09375 0.046875 0.125 0 0.0625-0.027344 0.11328-0.078125 0.15625-0.054688 0.050781-0.10938 0.078125-0.17188 0.078125-0.054687 0-0.10156-0.023438-0.14062-0.0625-0.14844-0.125-0.38281-0.5-0.70312-1.125-0.3125-0.625-0.53125-1.1758-0.65625-1.6562-0.11719-0.47656-0.17188-0.96094-0.17188-1.4531z"/>
</symbol>
<symbol id="glyph1-32" overflow="visible">
<path d="m3.625-2.8281c0 0.4375-0.058594 0.90234-0.17188 1.3906-0.11719 0.49219-0.33594 1.0547-0.65625 1.6875-0.3125 0.64453-0.54688 1.0312-0.70312 1.1562-0.042969 0.039062-0.089844 0.0625-0.14062 0.0625-0.074219 0-0.13672-0.027344-0.1875-0.078125-0.042969-0.042969-0.0625-0.09375-0.0625-0.15625 0-0.03125 0.015625-0.074219 0.046875-0.125 0.41406-0.76172 0.71094-1.4453 0.89062-2.0625 0.17578-0.625 0.26562-1.25 0.26562-1.875 0-0.61328-0.089844-1.2344-0.26562-1.8594-0.17969-0.625-0.47656-1.3164-0.89062-2.0781-0.03125-0.039063-0.046875-0.082031-0.046875-0.125 0-0.0625 0.019531-0.11328 0.0625-0.15625 0.050781-0.050781 0.11328-0.078125 0.1875-0.078125 0.050781 0 0.097656 0.023438 0.14062 0.0625 0.14453 0.125 0.375 0.5 0.6875 1.125 0.32031 0.625 0.53906 1.1836 0.65625 1.6719 0.125 0.48047 0.1875 0.96094 0.1875 1.4375z"/>
</symbol>
<symbol id="glyph1-33" overflow="visible">
<path d="m4.875-1.7188v-0.0625c-0.09375 0.023438-0.18359 0.039062-0.26562 0.046875h-0.21875c-0.46875 0-0.85547-0.14062-1.1562-0.42188-0.29297-0.28906-0.4375-0.64062-0.4375-1.0469 0-0.46875 0.17969-0.86719 0.54688-1.2031 0.375-0.33203 0.88281-0.5 1.5312-0.5v-0.54688c0-0.41406-0.13281-0.75391-0.39062-1.0156-0.25-0.26953-0.57031-0.40625-0.95312-0.40625-0.27344 0-0.52734 0.070312-0.76562 0.20312-0.16797 0.09375-0.30469 0.21094-0.40625 0.34375-0.17969 0.24219-0.33594 0.52734-0.46875 0.85938-0.125 0.33594-0.1875 0.75-0.1875 1.25v1.875c0 0.73047 0.16406 1.3516 0.5 1.8594 0.34375 0.5 0.80078 0.75 1.375 0.75 0.5625 0 0.98828-0.13672 1.2812-0.40625 0.0625-0.0625 0.125-0.09375 0.1875-0.09375s0.11328 0.027344 0.15625 0.078125c0.039063 0.042969 0.0625 0.09375 0.0625 0.15625 0 0.11328-0.10938 0.24219-0.32812 0.39062-0.36719 0.22656-0.83984 0.34375-1.4219 0.34375-0.3125 0-0.59375-0.058594-0.84375-0.17188-0.25-0.10547-0.46094-0.25781-0.625-0.45312-0.10547-0.11328-0.23438-0.3125-0.39062-0.59375-0.14844-0.28906-0.25-0.54688-0.3125-0.76562-0.085938-0.30078-0.125-0.66406-0.125-1.0938v-1.9062c0-0.96875 0.25781-1.7578 0.78125-2.375 0.40625-0.48828 0.90625-0.73438 1.5-0.73438 0.3125 0 0.59766 0.070313 0.85938 0.20312 0.25781 0.125 0.48828 0.33984 0.6875 0.64062 0.20703 0.30469 0.3125 0.65625 0.3125 1.0625v3.2656c0.070313 0 0.125 0.023438 0.15625 0.0625 0.039063 0.042969 0.0625 0.10156 0.0625 0.17188 0 0.042969-0.015625 0.085937-0.046875 0.125-0.023438 0.042969-0.054688 0.074219-0.09375 0.09375-0.03125 0.011719-0.089844 0.015625-0.17188 0.015625zm0-2.7188c-0.5 0-0.89062 0.125-1.1719 0.375s-0.42188 0.53125-0.42188 0.84375c0 0.29297 0.10156 0.53906 0.3125 0.73438 0.20703 0.1875 0.49219 0.28125 0.85938 0.28125 0.0625 0 0.12891-0.00391 0.20312-0.015625 0.070312-0.00781 0.14453-0.023438 0.21875-0.046875z"/>
</symbol>
<symbol id="glyph1-34" overflow="visible">
<path d="m5.0625-4.6094c0-0.10156 0.019531-0.17969 0.0625-0.23438 0.050781-0.050781 0.10938-0.078125 0.17188-0.078125 0.070313 0 0.12891 0.027344 0.17188 0.078125 0.050781 0.054688 0.078125 0.13672 0.078125 0.25v0.8125c0 0.11719-0.027344 0.19922-0.078125 0.25-0.042969 0.054688-0.10156 0.078125-0.17188 0.078125-0.0625 0-0.11719-0.019531-0.15625-0.0625-0.042969-0.039063-0.070313-0.10938-0.078125-0.20312-0.023438-0.22656-0.13672-0.41406-0.34375-0.5625-0.3125-0.21875-0.72656-0.32812-1.2344-0.32812-0.54297 0-0.96094 0.10938-1.25 0.32812-0.21875 0.16797-0.32812 0.35156-0.32812 0.54688 0 0.23047 0.12891 0.41797 0.39062 0.5625 0.1875 0.10547 0.53125 0.1875 1.0312 0.25 0.66406 0.074219 1.1289 0.15625 1.3906 0.25 0.36328 0.125 0.63281 0.30859 0.8125 0.54688 0.17578 0.23047 0.26562 0.48047 0.26562 0.75 0 0.40625-0.19922 0.77344-0.59375 1.0938-0.38672 0.3125-0.95312 0.46875-1.7031 0.46875s-1.3672-0.19141-1.8438-0.57812c0 0.13672-0.011719 0.22656-0.03125 0.26562-0.011719 0.03125-0.039062 0.0625-0.078125 0.09375-0.042969 0.023438-0.089844 0.03125-0.14062 0.03125-0.0625 0-0.12109-0.019531-0.17188-0.0625-0.042969-0.050781-0.0625-0.13281-0.0625-0.25v-0.98438c0-0.11328 0.019531-0.19531 0.0625-0.25 0.050781-0.050781 0.10938-0.078125 0.17188-0.078125 0.070312 0 0.12891 0.027344 0.17188 0.078125 0.050781 0.054687 0.078125 0.11719 0.078125 0.1875 0 0.17969 0.039062 0.32422 0.125 0.4375 0.13281 0.1875 0.34766 0.33984 0.64062 0.45312 0.28906 0.11719 0.64453 0.17188 1.0625 0.17188 0.625 0 1.0859-0.11328 1.3906-0.34375 0.30078-0.22656 0.45312-0.47266 0.45312-0.73438 0-0.28906-0.15625-0.52344-0.46875-0.70312-0.30469-0.17578-0.75-0.29688-1.3438-0.35938s-1.0234-0.14062-1.2812-0.23438c-0.26172-0.10156-0.46484-0.25-0.60938-0.4375-0.13672-0.19531-0.20312-0.41016-0.20312-0.64062 0-0.40625 0.19531-0.72656 0.59375-0.96875 0.40625-0.25 0.88281-0.375 1.4375-0.375 0.65625 0 1.1914 0.16406 1.6094 0.48438z"/>
</symbol>
<symbol id="glyph1-35" overflow="visible">
<path d="m5.125 0h-0.57812l-1.0625-3.0625-1.0312 3.0625h-0.59375l-0.98438-4.4375h-0.23438c-0.11719 0-0.19922-0.019531-0.25-0.0625-0.054687-0.039062-0.078125-0.097656-0.078125-0.17188 0-0.070313 0.023438-0.12891 0.078125-0.17188 0.050781-0.050781 0.13281-0.078125 0.25-0.078125h1.3125c0.11328 0 0.19141 0.027344 0.23438 0.078125 0.050781 0.042969 0.078125 0.10156 0.078125 0.17188 0 0.074219-0.027344 0.13281-0.078125 0.17188-0.042969 0.042969-0.12109 0.0625-0.23438 0.0625h-0.60938l0.84375 3.7812 1.0156-3.0156h0.5625l1.0469 3.0156 0.8125-3.7812h-0.59375c-0.11719 0-0.19922-0.019531-0.25-0.0625-0.054688-0.039062-0.078125-0.097656-0.078125-0.17188 0-0.070313 0.019531-0.12891 0.0625-0.17188 0.050781-0.050781 0.14062-0.078125 0.26562-0.078125h1.2969c0.11328 0 0.19531 0.027344 0.25 0.078125 0.050781 0.042969 0.078125 0.10156 0.078125 0.17188 0 0.074219-0.027344 0.13281-0.078125 0.17188-0.054687 0.042969-0.13672 0.0625-0.25 0.0625h-0.21875z"/>
</symbol>
<symbol id="glyph1-36" overflow="visible">
<path d="m3.7188-7.2188v6.7344h1.6406c0.11328 0 0.19141 0.027344 0.23438 0.078125 0.050781 0.042969 0.078125 0.10156 0.078125 0.17188 0 0.0625-0.027344 0.12109-0.078125 0.17188-0.042969 0.042969-0.12109 0.0625-0.23438 0.0625h-3.75c-0.11719 0-0.19922-0.019531-0.25-0.0625-0.042969-0.050781-0.0625-0.10938-0.0625-0.17188 0-0.070313 0.019531-0.12891 0.0625-0.17188 0.050781-0.050781 0.13281-0.078125 0.25-0.078125h1.6406v-6.0781l-1.5625 0.48438c-0.074219 0.023437-0.125 0.03125-0.15625 0.03125-0.0625 0-0.12109-0.019531-0.17188-0.0625-0.042969-0.050781-0.0625-0.10938-0.0625-0.17188 0-0.050781 0.019531-0.10156 0.0625-0.15625 0.03125-0.03125 0.09375-0.0625 0.1875-0.09375z"/>
</symbol>
<symbol id="glyph1-37" overflow="visible">
<path d="m1.3125-4.9219v0.48438c0.40625-0.4375 0.8125-0.65625 1.2188-0.65625 0.25 0 0.46875 0.070312 0.65625 0.20312 0.1875 0.13672 0.34375 0.33594 0.46875 0.59375 0.20703-0.25781 0.42188-0.45703 0.64062-0.59375 0.21875-0.13281 0.4375-0.20312 0.65625-0.20312 0.34375 0 0.61328 0.11719 0.8125 0.34375 0.26953 0.29297 0.40625 0.60547 0.40625 0.9375v3.3281h0.40625c0.11328 0 0.19141 0.027344 0.23438 0.078125 0.050781 0.042969 0.078125 0.10156 0.078125 0.17188 0 0.0625-0.027344 0.12109-0.078125 0.17188-0.042969 0.042969-0.12109 0.0625-0.23438 0.0625h-0.875v-3.7656c0-0.23828-0.078125-0.4375-0.23438-0.59375-0.14844-0.16406-0.3125-0.25-0.5-0.25-0.17969 0-0.36719 0.070313-0.5625 0.20312-0.1875 0.125-0.40625 0.38281-0.65625 0.76562v3.1562h0.40625c0.11328 0 0.19141 0.027344 0.23438 0.078125 0.050781 0.042969 0.078125 0.10156 0.078125 0.17188 0 0.0625-0.027344 0.12109-0.078125 0.17188-0.042969 0.042969-0.12109 0.0625-0.23438 0.0625h-0.875v-3.7344c0-0.25-0.078125-0.45703-0.23438-0.625-0.14844-0.16406-0.3125-0.25-0.5-0.25-0.16797 0-0.33594 0.058594-0.5 0.17188-0.23047 0.15625-0.47656 0.42188-0.73438 0.79688v3.1562h0.40625c0.11328 0 0.19141 0.027344 0.23438 0.078125 0.050781 0.042969 0.078125 0.10156 0.078125 0.17188 0 0.0625-0.027344 0.12109-0.078125 0.17188-0.042969 0.042969-0.12109 0.0625-0.23438 0.0625h-1.2812c-0.11719 0-0.19922-0.019531-0.25-0.0625-0.042969-0.050781-0.0625-0.10938-0.0625-0.17188 0-0.070313 0.019531-0.12891 0.0625-0.17188 0.050781-0.050781 0.13281-0.078125 0.25-0.078125h0.40625v-3.9531h-0.40625c-0.11719 0-0.19922-0.019531-0.25-0.0625-0.042969-0.039062-0.0625-0.097656-0.0625-0.17188 0-0.070313 0.019531-0.12891 0.0625-0.17188 0.050781-0.050781 0.13281-0.078125 0.25-0.078125z"/>
</symbol>
<symbol id="glyph1-38" overflow="visible">
<path d="m4.4688-3.6875c0.39453 0.1875 0.69141 0.44531 0.89062 0.76562 0.20703 0.3125 0.3125 0.65234 0.3125 1.0156 0 0.5625-0.21484 1.0547-0.64062 1.4688-0.41797 0.40625-0.93359 0.60938-1.5469 0.60938-0.60547 0-1.1211-0.20312-1.5469-0.60938-0.41797-0.41406-0.625-0.90625-0.625-1.4688 0-0.36328 0.097656-0.70312 0.29688-1.0156 0.20703-0.32031 0.50781-0.57812 0.90625-0.76562-0.34375-0.20703-0.59375-0.41406-0.75-0.625-0.21875-0.3125-0.32812-0.64844-0.32812-1.0156 0-0.53125 0.19531-0.98828 0.59375-1.375 0.40625-0.39453 0.89062-0.59375 1.4531-0.59375 0.57031 0 1.0547 0.19922 1.4531 0.59375 0.40625 0.38672 0.60938 0.84375 0.60938 1.375 0 0.36719-0.10938 0.69922-0.32812 1-0.15625 0.21875-0.40625 0.43359-0.75 0.64062zm0.59375-1.625c0-0.41406-0.15234-0.76953-0.45312-1.0625-0.30469-0.28906-0.67969-0.4375-1.125-0.4375-0.4375 0-0.8125 0.15234-1.125 0.45312-0.30469 0.29297-0.45312 0.63672-0.45312 1.0312 0 0.375 0.14844 0.70312 0.45312 0.98438 0.30078 0.27344 0.67578 0.40625 1.125 0.40625 0.44531 0 0.82031-0.13281 1.125-0.40625 0.30078-0.28125 0.45312-0.60156 0.45312-0.96875zm0.125 3.4062c0-0.41406-0.16406-0.78125-0.48438-1.0938-0.32422-0.3125-0.73047-0.46875-1.2188-0.46875-0.48047 0-0.88672 0.15625-1.2188 0.46875-0.32422 0.3125-0.48438 0.67969-0.48438 1.0938 0 0.42969 0.16016 0.80469 0.48438 1.125 0.33203 0.3125 0.73828 0.46875 1.2188 0.46875 0.48828 0 0.89453-0.15625 1.2188-0.46875 0.32031-0.32031 0.48438-0.69531 0.48438-1.125z"/>
</symbol>
<symbol id="glyph1-39" overflow="visible">
<path d="m3.7188-6.1719v5.6875h1.25c0.10156 0 0.17969 0.027344 0.23438 0.078125 0.050781 0.042969 0.078125 0.10156 0.078125 0.17188 0 0.0625-0.027344 0.12109-0.078125 0.17188-0.054687 0.042969-0.13281 0.0625-0.23438 0.0625h-2.9688c-0.11719 0-0.19922-0.019531-0.25-0.0625-0.042969-0.050781-0.0625-0.10938-0.0625-0.17188 0-0.070313 0.019531-0.12891 0.0625-0.17188 0.050781-0.050781 0.13281-0.078125 0.25-0.078125h1.2344v-5.6875h-1.9531v1.6562c0 0.11719-0.023438 0.19922-0.0625 0.25-0.042969 0.054687-0.10156 0.078125-0.17188 0.078125-0.0625 0-0.12109-0.023438-0.17188-0.078125-0.042969-0.050781-0.0625-0.13281-0.0625-0.25v-2.125h5.3438v2.125c0 0.11719-0.027344 0.19922-0.078125 0.25-0.042969 0.054687-0.09375 0.078125-0.15625 0.078125-0.074219 0-0.13672-0.023438-0.1875-0.078125-0.042969-0.050781-0.0625-0.13281-0.0625-0.25v-1.6562z"/>
</symbol>
<symbol id="glyph1-40" overflow="visible">
<path d="m2.3438-3.2031v2.7188h1.625c0.11328 0 0.19531 0.027344 0.25 0.078125 0.050781 0.042969 0.078125 0.10156 0.078125 0.17188 0 0.0625-0.027344 0.12109-0.078125 0.17188-0.054688 0.042969-0.13672 0.0625-0.25 0.0625h-2.75c-0.11719 0-0.19922-0.019531-0.25-0.0625-0.042969-0.050781-0.0625-0.10938-0.0625-0.17188 0-0.070313 0.019531-0.12891 0.0625-0.17188 0.050781-0.050781 0.13281-0.078125 0.25-0.078125h0.64062v-5.6875h-0.64062c-0.11719 0-0.19922-0.019531-0.25-0.0625-0.042969-0.039063-0.0625-0.097656-0.0625-0.17188 0-0.070312 0.023438-0.12891 0.078125-0.17188 0.039063-0.039063 0.11719-0.0625 0.23438-0.0625h5.25v1.6406c0 0.11719-0.027344 0.19922-0.078125 0.25-0.042969 0.042969-0.09375 0.0625-0.15625 0.0625-0.074219 0-0.13672-0.019531-0.1875-0.0625-0.042969-0.050781-0.0625-0.13281-0.0625-0.25v-1.1719h-3.6406v2.4844h1.7031v-0.53125c0-0.11328 0.019531-0.19531 0.0625-0.25 0.050781-0.050781 0.11328-0.078125 0.1875-0.078125 0.0625 0 0.11328 0.027344 0.15625 0.078125 0.050781 0.054688 0.078125 0.13672 0.078125 0.25v1.5469c0 0.11719-0.027344 0.19922-0.078125 0.25-0.042969 0.054687-0.09375 0.078125-0.15625 0.078125-0.074219 0-0.13672-0.023438-0.1875-0.078125-0.042969-0.050781-0.0625-0.13281-0.0625-0.25v-0.53125z"/>
</symbol>
<clipPath id="clip1">
<path d="m36 36h540v370.24h-540z"/>
</clipPath>
</defs>
<g transform="translate(-36,-36)" clip-path="url(#clip1)">
<path d="m36 406.24v-370.24h540v370.24z" fill="#fff"/>
</g>
<g transform="translate(-36,-36)">
<use x="276.50989" y="396.44205" width="100%" height="100%" xlink:href="#glyph0-4"/>
<use x="293.32669" y="396.44205" width="100%" height="100%" xlink:href="#glyph0-4"/>
<use x="317.60468" y="396.44205" width="100%" height="100%" xlink:href="#glyph0-4"/>
</g>
<path d="m196.32 35.281v-31.547h130.33v31.547z" fill="#a3c2fd" fill-opacity=".43922" stroke="#3a4fc2" stroke-linejoin="round" stroke-miterlimit="10" stroke-width=".83013"/>
<g transform="translate(-36,-36)">
<use x="238.96875" y="52.352192" width="100%" height="100%" xlink:href="#glyph1-1"/>
<use x="245.81401" y="52.352192" width="100%" height="100%" xlink:href="#glyph1-2"/>
<use x="252.65927" y="52.352192" width="100%" height="100%" xlink:href="#glyph1-3"/>
<use x="259.51614" y="52.352192" width="100%" height="100%" xlink:href="#glyph1-4"/>
<use x="266.36139" y="52.352192" width="100%" height="100%" xlink:href="#glyph1-5"/>
<use x="273.20667" y="52.352192" width="100%" height="100%" xlink:href="#glyph1-6"/>
<use x="238.96875" y="64.805321" width="100%" height="100%" xlink:href="#glyph1-7"/>
<use x="245.81401" y="64.805321" width="100%" height="100%" xlink:href="#glyph1-8"/>
<use x="252.65927" y="64.805321" width="100%" height="100%" xlink:href="#glyph1-4"/>
<use x="259.51614" y="64.805321" width="100%" height="100%" xlink:href="#glyph1-7"/>
<use x="266.36139" y="64.805321" width="100%" height="100%" xlink:href="#glyph1-9"/>
<use x="273.20667" y="64.805321" width="100%" height="100%" xlink:href="#glyph1-10"/>
<use x="280.05191" y="64.805321" width="100%" height="100%" xlink:href="#glyph1-8"/>
<use x="286.89719" y="64.805321" width="100%" height="100%" xlink:href="#glyph1-1"/>
<use x="293.75406" y="64.805321" width="100%" height="100%" xlink:href="#glyph1-9"/>
<use x="300.5993" y="64.805321" width="100%" height="100%" xlink:href="#glyph1-7"/>
<use x="307.44458" y="64.805321" width="100%" height="100%" xlink:href="#glyph1-11"/>
<use x="314.28983" y="64.805321" width="100%" height="100%" xlink:href="#glyph1-12"/>
<use x="321.13507" y="64.805321" width="100%" height="100%" xlink:href="#glyph1-1"/>
<use x="327.98035" y="64.805321" width="100%" height="100%" xlink:href="#glyph1-10"/>
<use x="334.83722" y="64.805321" width="100%" height="100%" xlink:href="#glyph1-13"/>
<use x="341.68246" y="64.805321" width="100%" height="100%" xlink:href="#glyph1-1"/>
<use x="348.52774" y="64.805321" width="100%" height="100%" xlink:href="#glyph1-4"/>
</g>
<path d="m18.262 178.89v-112.9h486.46v112.9z" fill="#b50c26" fill-opacity=".43922" stroke="#b50c26" stroke-linejoin="round" stroke-miterlimit="10" stroke-width=".83013"/>
<g transform="translate(-36,-36)">
<use x="60.902344" y="114.61391" width="100%" height="100%" xlink:href="#glyph1-12"/>
<use x="67.747604" y="114.61391" width="100%" height="100%" xlink:href="#glyph1-1"/>
<use x="74.592857" y="114.61391" width="100%" height="100%" xlink:href="#glyph1-10"/>
<use x="81.449738" y="114.61391" width="100%" height="100%" xlink:href="#glyph1-13"/>
<use x="88.294998" y="114.61391" width="100%" height="100%" xlink:href="#glyph1-1"/>
<use x="95.140251" y="114.61391" width="100%" height="100%" xlink:href="#glyph1-4"/>
<use x="101.98551" y="114.61391" width="100%" height="100%" xlink:href="#glyph1-6"/>
<use x="108.83076" y="114.61391" width="100%" height="100%" xlink:href="#glyph1-7"/>
<use x="60.902344" y="127.06704" width="100%" height="100%" xlink:href="#glyph1-7"/>
<use x="67.747604" y="127.06704" width="100%" height="100%" xlink:href="#glyph1-11"/>
<use x="74.592857" y="127.06704" width="100%" height="100%" xlink:href="#glyph1-14"/>
<use x="81.449738" y="127.06704" width="100%" height="100%" xlink:href="#glyph1-7"/>
<use x="88.294998" y="127.06704" width="100%" height="100%" xlink:href="#glyph1-15"/>
<use x="95.140251" y="127.06704" width="100%" height="100%" xlink:href="#glyph1-7"/>
<use x="101.98551" y="127.06704" width="100%" height="100%" xlink:href="#glyph1-16"/>
<use x="108.83076" y="127.06704" width="100%" height="100%" xlink:href="#glyph1-12"/>
<use x="115.68764" y="127.06704" width="100%" height="100%" xlink:href="#glyph1-14"/>
<use x="122.53291" y="127.06704" width="100%" height="100%" xlink:href="#glyph1-7"/>
<use x="129.37816" y="127.06704" width="100%" height="100%" xlink:href="#glyph1-14"/>
<use x="136.22342" y="127.06704" width="100%" height="100%" xlink:href="#glyph1-17"/>
<use x="143.06868" y="127.06704" width="100%" height="100%" xlink:href="#glyph1-18"/>
<use x="149.91393" y="127.06704" width="100%" height="100%" xlink:href="#glyph1-7"/>
<use x="156.77081" y="127.06704" width="100%" height="100%" xlink:href="#glyph1-19"/>
<use x="163.61607" y="127.06704" width="100%" height="100%" xlink:href="#glyph1-7"/>
<use x="170.46132" y="127.06704" width="100%" height="100%" xlink:href="#glyph1-20"/>
<use x="177.32817" y="127.06704" width="100%" height="100%" xlink:href="#glyph1-21"/>
<use x="184.17342" y="127.06704" width="100%" height="100%" xlink:href="#glyph1-7"/>
<use x="191.01868" y="127.06704" width="100%" height="100%" xlink:href="#glyph1-11"/>
<use x="197.87556" y="127.06704" width="100%" height="100%" xlink:href="#glyph1-1"/>
<use x="204.72081" y="127.06704" width="100%" height="100%" xlink:href="#glyph1-2"/>
<use x="211.56607" y="127.06704" width="100%" height="100%" xlink:href="#glyph1-3"/>
<use x="218.41133" y="127.06704" width="100%" height="100%" xlink:href="#glyph1-4"/>
<use x="225.25659" y="127.06704" width="100%" height="100%" xlink:href="#glyph1-5"/>
<use x="232.11346" y="127.06704" width="100%" height="100%" xlink:href="#glyph1-7"/>
<use x="238.95872" y="127.06704" width="100%" height="100%" xlink:href="#glyph1-22"/>
<use x="245.80399" y="127.06704" width="100%" height="100%" xlink:href="#glyph1-21"/>
<use x="252.64925" y="127.06704" width="100%" height="100%" xlink:href="#glyph1-7"/>
<use x="259.49451" y="127.06704" width="100%" height="100%" xlink:href="#glyph1-19"/>
<use x="266.33975" y="127.06704" width="100%" height="100%" xlink:href="#glyph1-7"/>
<use x="273.19662" y="127.06704" width="100%" height="100%" xlink:href="#glyph1-11"/>
<use x="280.0419" y="127.06704" width="100%" height="100%" xlink:href="#glyph1-14"/>
<use x="286.88715" y="127.06704" width="100%" height="100%" xlink:href="#glyph1-23"/>
<use x="293.754" y="127.06704" width="100%" height="100%" xlink:href="#glyph1-2"/>
<use x="300.59924" y="127.06704" width="100%" height="100%" xlink:href="#glyph1-1"/>
<use x="307.44449" y="127.06704" width="100%" height="100%" xlink:href="#glyph1-24"/>
<use x="314.30139" y="127.06704" width="100%" height="100%" xlink:href="#glyph1-3"/>
<use x="321.14664" y="127.06704" width="100%" height="100%" xlink:href="#glyph1-21"/>
<use x="327.99188" y="127.06704" width="100%" height="100%" xlink:href="#glyph1-7"/>
<use x="334.83716" y="127.06704" width="100%" height="100%" xlink:href="#glyph1-11"/>
<use x="341.6824" y="127.06704" width="100%" height="100%" xlink:href="#glyph1-25"/>
<use x="348.53928" y="127.06704" width="100%" height="100%" xlink:href="#glyph1-26"/>
<use x="355.38455" y="127.06704" width="100%" height="100%" xlink:href="#glyph1-4"/>
<use x="362.2298" y="127.06704" width="100%" height="100%" xlink:href="#glyph1-23"/>
<use x="369.07507" y="127.06704" width="100%" height="100%" xlink:href="#glyph1-26"/>
<use x="375.92032" y="127.06704" width="100%" height="100%" xlink:href="#glyph1-27"/>
<use x="382.76556" y="127.06704" width="100%" height="100%" xlink:href="#glyph1-3"/>
<use x="389.62247" y="127.06704" width="100%" height="100%" xlink:href="#glyph1-1"/>
<use x="396.46771" y="127.06704" width="100%" height="100%" xlink:href="#glyph1-4"/>
<use x="403.31296" y="127.06704" width="100%" height="100%" xlink:href="#glyph1-7"/>
<use x="410.17981" y="127.06704" width="100%" height="100%" xlink:href="#glyph1-22"/>
<use x="417.02505" y="127.06704" width="100%" height="100%" xlink:href="#glyph1-21"/>
<use x="423.87033" y="127.06704" width="100%" height="100%" xlink:href="#glyph1-7"/>
<use x="430.7272" y="127.06704" width="100%" height="100%" xlink:href="#glyph1-19"/>
<use x="437.57245" y="127.06704" width="100%" height="100%" xlink:href="#glyph1-7"/>
<use x="444.41772" y="127.06704" width="100%" height="100%" xlink:href="#glyph1-11"/>
<use x="451.26297" y="127.06704" width="100%" height="100%" xlink:href="#glyph1-14"/>
<use x="458.10822" y="127.06704" width="100%" height="100%" xlink:href="#glyph1-21"/>
<use x="464.96512" y="127.06704" width="100%" height="100%" xlink:href="#glyph1-7"/>
<use x="471.81036" y="127.06704" width="100%" height="100%" xlink:href="#glyph1-11"/>
<use x="478.65561" y="127.06704" width="100%" height="100%" xlink:href="#glyph1-12"/>
<use x="485.50089" y="127.06704" width="100%" height="100%" xlink:href="#glyph1-1"/>
<use x="492.34613" y="127.06704" width="100%" height="100%" xlink:href="#glyph1-10"/>
<use x="499.19141" y="127.06704" width="100%" height="100%" xlink:href="#glyph1-13"/>
<use x="506.04828" y="127.06704" width="100%" height="100%" xlink:href="#glyph1-1"/>
<use x="512.89355" y="127.06704" width="100%" height="100%" xlink:href="#glyph1-4"/>
<use x="519.73877" y="127.06704" width="100%" height="100%" xlink:href="#glyph1-7"/>
<use x="526.60565" y="127.06704" width="100%" height="100%" xlink:href="#glyph1-22"/>
<use x="60.902332" y="139.51627" width="100%" height="100%" xlink:href="#glyph1-7"/>
<use x="67.747589" y="139.51627" width="100%" height="100%" xlink:href="#glyph1-11"/>
<use x="74.59285" y="139.51627" width="100%" height="100%" xlink:href="#glyph1-28"/>
<use x="81.449722" y="139.51627" width="100%" height="100%" xlink:href="#glyph1-7"/>
<use x="88.294983" y="139.51627" width="100%" height="100%" xlink:href="#glyph1-15"/>
<use x="95.140244" y="139.51627" width="100%" height="100%" xlink:href="#glyph1-7"/>
<use x="101.9855" y="139.51627" width="100%" height="100%" xlink:href="#glyph1-16"/>
<use x="108.83076" y="139.51627" width="100%" height="100%" xlink:href="#glyph1-12"/>
<use x="115.68764" y="139.51627" width="100%" height="100%" xlink:href="#glyph1-14"/>
<use x="122.53289" y="139.51627" width="100%" height="100%" xlink:href="#glyph1-7"/>
<use x="129.37814" y="139.51627" width="100%" height="100%" xlink:href="#glyph1-14"/>
<use x="136.2234" y="139.51627" width="100%" height="100%" xlink:href="#glyph1-17"/>
<use x="143.06866" y="139.51627" width="100%" height="100%" xlink:href="#glyph1-18"/>
<use x="149.91393" y="139.51627" width="100%" height="100%" xlink:href="#glyph1-7"/>
<use x="156.7708" y="139.51627" width="100%" height="100%" xlink:href="#glyph1-19"/>
<use x="163.61606" y="139.51627" width="100%" height="100%" xlink:href="#glyph1-7"/>
<use x="170.46132" y="139.51627" width="100%" height="100%" xlink:href="#glyph1-20"/>
<use x="177.32816" y="139.51627" width="100%" height="100%" xlink:href="#glyph1-21"/>
<use x="184.17342" y="139.51627" width="100%" height="100%" xlink:href="#glyph1-7"/>
<use x="191.01866" y="139.51627" width="100%" height="100%" xlink:href="#glyph1-11"/>
<use x="197.87555" y="139.51627" width="100%" height="100%" xlink:href="#glyph1-1"/>
<use x="204.72081" y="139.51627" width="100%" height="100%" xlink:href="#glyph1-2"/>
<use x="211.56606" y="139.51627" width="100%" height="100%" xlink:href="#glyph1-3"/>
<use x="218.41132" y="139.51627" width="100%" height="100%" xlink:href="#glyph1-4"/>
<use x="225.25658" y="139.51627" width="100%" height="100%" xlink:href="#glyph1-5"/>
<use x="232.11345" y="139.51627" width="100%" height="100%" xlink:href="#glyph1-7"/>
<use x="238.95871" y="139.51627" width="100%" height="100%" xlink:href="#glyph1-22"/>
<use x="245.80397" y="139.51627" width="100%" height="100%" xlink:href="#glyph1-21"/>
<use x="252.64923" y="139.51627" width="100%" height="100%" xlink:href="#glyph1-7"/>
<use x="259.49448" y="139.51627" width="100%" height="100%" xlink:href="#glyph1-19"/>
<use x="266.33975" y="139.51627" width="100%" height="100%" xlink:href="#glyph1-7"/>
<use x="273.19662" y="139.51627" width="100%" height="100%" xlink:href="#glyph1-20"/>
<use x="280.04187" y="139.51627" width="100%" height="100%" xlink:href="#glyph1-21"/>
<use x="286.88715" y="139.51627" width="100%" height="100%" xlink:href="#glyph1-7"/>
<use x="293.75397" y="139.51627" width="100%" height="100%" xlink:href="#glyph1-11"/>
<use x="300.59924" y="139.51627" width="100%" height="100%" xlink:href="#glyph1-25"/>
<use x="307.44449" y="139.51627" width="100%" height="100%" xlink:href="#glyph1-26"/>
<use x="314.30136" y="139.51627" width="100%" height="100%" xlink:href="#glyph1-4"/>
<use x="321.14664" y="139.51627" width="100%" height="100%" xlink:href="#glyph1-23"/>
<use x="327.99188" y="139.51627" width="100%" height="100%" xlink:href="#glyph1-26"/>
<use x="334.83713" y="139.51627" width="100%" height="100%" xlink:href="#glyph1-27"/>
<use x="341.6824" y="139.51627" width="100%" height="100%" xlink:href="#glyph1-3"/>
<use x="348.53928" y="139.51627" width="100%" height="100%" xlink:href="#glyph1-1"/>
<use x="355.38452" y="139.51627" width="100%" height="100%" xlink:href="#glyph1-4"/>
<use x="362.2298" y="139.51627" width="100%" height="100%" xlink:href="#glyph1-7"/>
<use x="369.07504" y="139.51627" width="100%" height="100%" xlink:href="#glyph1-22"/>
<use x="375.92032" y="139.51627" width="100%" height="100%" xlink:href="#glyph1-21"/>
<use x="382.76556" y="139.51627" width="100%" height="100%" xlink:href="#glyph1-7"/>
<use x="389.62244" y="139.51627" width="100%" height="100%" xlink:href="#glyph1-19"/>
<use x="396.46771" y="139.51627" width="100%" height="100%" xlink:href="#glyph1-7"/>
<use x="403.31296" y="139.51627" width="100%" height="100%" xlink:href="#glyph1-11"/>
<use x="410.17981" y="139.51627" width="100%" height="100%" xlink:href="#glyph1-28"/>
<use x="417.02505" y="139.51627" width="100%" height="100%" xlink:href="#glyph1-23"/>
<use x="423.8703" y="139.51627" width="100%" height="100%" xlink:href="#glyph1-2"/>
<use x="430.7272" y="139.51627" width="100%" height="100%" xlink:href="#glyph1-1"/>
<use x="437.57245" y="139.51627" width="100%" height="100%" xlink:href="#glyph1-24"/>
<use x="444.41769" y="139.51627" width="100%" height="100%" xlink:href="#glyph1-3"/>
<use x="451.26297" y="139.51627" width="100%" height="100%" xlink:href="#glyph1-21"/>
<use x="458.10822" y="139.51627" width="100%" height="100%" xlink:href="#glyph1-7"/>
<use x="464.96509" y="139.51627" width="100%" height="100%" xlink:href="#glyph1-11"/>
<use x="471.81036" y="139.51627" width="100%" height="100%" xlink:href="#glyph1-12"/>
<use x="478.65561" y="139.51627" width="100%" height="100%" xlink:href="#glyph1-1"/>
<use x="485.50085" y="139.51627" width="100%" height="100%" xlink:href="#glyph1-10"/>
<use x="492.34613" y="139.51627" width="100%" height="100%" xlink:href="#glyph1-13"/>
<use x="499.19138" y="139.51627" width="100%" height="100%" xlink:href="#glyph1-1"/>
<use x="506.04825" y="139.51627" width="100%" height="100%" xlink:href="#glyph1-4"/>
<use x="512.89349" y="139.51627" width="100%" height="100%" xlink:href="#glyph1-7"/>
<use x="519.73877" y="139.51627" width="100%" height="100%" xlink:href="#glyph1-22"/>
<use x="60.902332" y="151.96939" width="100%" height="100%" xlink:href="#glyph1-7"/>
<use x="67.747589" y="151.96939" width="100%" height="100%" xlink:href="#glyph1-29"/>
<use x="74.59285" y="151.96939" width="100%" height="100%" xlink:href="#glyph1-10"/>
<use x="81.449722" y="151.96939" width="100%" height="100%" xlink:href="#glyph1-9"/>
<use x="88.294983" y="151.96939" width="100%" height="100%" xlink:href="#glyph1-9"/>
<use x="95.140244" y="151.96939" width="100%" height="100%" xlink:href="#glyph1-7"/>
<use x="101.9855" y="151.96939" width="100%" height="100%" xlink:href="#glyph1-30"/>
<use x="108.83076" y="151.96939" width="100%" height="100%" xlink:href="#glyph1-26"/>
<use x="115.68764" y="151.96939" width="100%" height="100%" xlink:href="#glyph1-14"/>
<use x="122.53289" y="151.96939" width="100%" height="100%" xlink:href="#glyph1-13"/>
<use x="129.37814" y="151.96939" width="100%" height="100%" xlink:href="#glyph1-7"/>
<use x="136.2234" y="151.96939" width="100%" height="100%" xlink:href="#glyph1-31"/>
<use x="143.06866" y="151.96939" width="100%" height="100%" xlink:href="#glyph1-14"/>
<use x="149.91393" y="151.96939" width="100%" height="100%" xlink:href="#glyph1-17"/>
<use x="156.7708" y="151.96939" width="100%" height="100%" xlink:href="#glyph1-18"/>
<use x="163.61606" y="151.96939" width="100%" height="100%" xlink:href="#glyph1-21"/>
<use x="170.46132" y="151.96939" width="100%" height="100%" xlink:href="#glyph1-7"/>
<use x="177.32816" y="151.96939" width="100%" height="100%" xlink:href="#glyph1-23"/>
<use x="184.17342" y="151.96939" width="100%" height="100%" xlink:href="#glyph1-23"/>
<use x="191.01866" y="151.96939" width="100%" height="100%" xlink:href="#glyph1-23"/>
<use x="197.87555" y="151.96939" width="100%" height="100%" xlink:href="#glyph1-32"/>
<use x="204.72081" y="151.96939" width="100%" height="100%" xlink:href="#glyph1-7"/>
<use x="211.56606" y="151.96939" width="100%" height="100%" xlink:href="#glyph1-33"/>
<use x="218.41132" y="151.96939" width="100%" height="100%" xlink:href="#glyph1-8"/>
<use x="225.25658" y="151.96939" width="100%" height="100%" xlink:href="#glyph1-26"/>
<use x="232.11345" y="151.96939" width="100%" height="100%" xlink:href="#glyph1-13"/>
<use x="238.95871" y="151.96939" width="100%" height="100%" xlink:href="#glyph1-5"/>
<use x="245.80397" y="151.96939" width="100%" height="100%" xlink:href="#glyph1-31"/>
<use x="252.64923" y="151.96939" width="100%" height="100%" xlink:href="#glyph1-14"/>
<use x="259.49448" y="151.96939" width="100%" height="100%" xlink:href="#glyph1-17"/>
<use x="266.33975" y="151.96939" width="100%" height="100%" xlink:href="#glyph1-18"/>
<use x="273.19662" y="151.96939" width="100%" height="100%" xlink:href="#glyph1-7"/>
<use x="280.04187" y="151.96939" width="100%" height="100%" xlink:href="#glyph1-11"/>
<use x="286.88715" y="151.96939" width="100%" height="100%" xlink:href="#glyph1-14"/>
<use x="293.75397" y="151.96939" width="100%" height="100%" xlink:href="#glyph1-21"/>
<use x="300.59924" y="151.96939" width="100%" height="100%" xlink:href="#glyph1-7"/>
<use x="307.44449" y="151.96939" width="100%" height="100%" xlink:href="#glyph1-14"/>
<use x="314.30136" y="151.96939" width="100%" height="100%" xlink:href="#glyph1-17"/>
<use x="321.14664" y="151.96939" width="100%" height="100%" xlink:href="#glyph1-18"/>
<use x="327.99188" y="151.96939" width="100%" height="100%" xlink:href="#glyph1-7"/>
<use x="334.83713" y="151.96939" width="100%" height="100%" xlink:href="#glyph1-11"/>
<use x="341.6824" y="151.96939" width="100%" height="100%" xlink:href="#glyph1-28"/>
<use x="348.53928" y="151.96939" width="100%" height="100%" xlink:href="#glyph1-32"/>
<use x="60.902332" y="164.42252" width="100%" height="100%" xlink:href="#glyph1-7"/>
<use x="67.747589" y="164.42252" width="100%" height="100%" xlink:href="#glyph1-11"/>
<use x="74.59285" y="164.42252" width="100%" height="100%" xlink:href="#glyph1-28"/>
<use x="81.449722" y="164.42252" width="100%" height="100%" xlink:href="#glyph1-23"/>
<use x="88.294983" y="164.42252" width="100%" height="100%" xlink:href="#glyph1-2"/>
<use x="95.140244" y="164.42252" width="100%" height="100%" xlink:href="#glyph1-1"/>
<use x="101.9855" y="164.42252" width="100%" height="100%" xlink:href="#glyph1-24"/>
<use x="108.83076" y="164.42252" width="100%" height="100%" xlink:href="#glyph1-3"/>
<use x="115.68764" y="164.42252" width="100%" height="100%" xlink:href="#glyph1-7"/>
<use x="122.53289" y="164.42252" width="100%" height="100%" xlink:href="#glyph1-15"/>
<use x="129.37814" y="164.42252" width="100%" height="100%" xlink:href="#glyph1-7"/>
<use x="136.2234" y="164.42252" width="100%" height="100%" xlink:href="#glyph1-10"/>
<use x="143.06866" y="164.42252" width="100%" height="100%" xlink:href="#glyph1-13"/>
<use x="149.91393" y="164.42252" width="100%" height="100%" xlink:href="#glyph1-13"/>
<use x="156.7708" y="164.42252" width="100%" height="100%" xlink:href="#glyph1-7"/>
<use x="163.61606" y="164.42252" width="100%" height="100%" xlink:href="#glyph1-2"/>
<use x="170.46132" y="164.42252" width="100%" height="100%" xlink:href="#glyph1-34"/>
<use x="177.32816" y="164.42252" width="100%" height="100%" xlink:href="#glyph1-35"/>
<use x="184.17342" y="164.42252" width="100%" height="100%" xlink:href="#glyph1-7"/>
<use x="191.01866" y="164.42252" width="100%" height="100%" xlink:href="#glyph1-14"/>
<use x="197.87555" y="164.42252" width="100%" height="100%" xlink:href="#glyph1-17"/>
<use x="204.72081" y="164.42252" width="100%" height="100%" xlink:href="#glyph1-18"/>
<use x="211.56606" y="164.42252" width="100%" height="100%" xlink:href="#glyph1-7"/>
<use x="218.41132" y="164.42252" width="100%" height="100%" xlink:href="#glyph1-11"/>
<use x="225.25658" y="164.42252" width="100%" height="100%" xlink:href="#glyph1-28"/>
<use x="232.11345" y="164.42252" width="100%" height="100%" xlink:href="#glyph1-21"/>
<use x="238.95871" y="164.42252" width="100%" height="100%" xlink:href="#glyph1-7"/>
<use x="245.80397" y="164.42252" width="100%" height="100%" xlink:href="#glyph1-36"/>
<use x="60.902332" y="176.87173" width="100%" height="100%" xlink:href="#glyph1-7"/>
<use x="67.747589" y="176.87173" width="100%" height="100%" xlink:href="#glyph1-11"/>
<use x="74.59285" y="176.87173" width="100%" height="100%" xlink:href="#glyph1-14"/>
<use x="81.449722" y="176.87173" width="100%" height="100%" xlink:href="#glyph1-2"/>
<use x="88.294983" y="176.87173" width="100%" height="100%" xlink:href="#glyph1-2"/>
<use x="95.140244" y="176.87173" width="100%" height="100%" xlink:href="#glyph1-1"/>
<use x="101.9855" y="176.87173" width="100%" height="100%" xlink:href="#glyph1-4"/>
<use x="108.83076" y="176.87173" width="100%" height="100%" xlink:href="#glyph1-23"/>
<use x="115.68764" y="176.87173" width="100%" height="100%" xlink:href="#glyph1-29"/>
<use x="122.53289" y="176.87173" width="100%" height="100%" xlink:href="#glyph1-26"/>
<use x="129.37814" y="176.87173" width="100%" height="100%" xlink:href="#glyph1-2"/>
<use x="136.2234" y="176.87173" width="100%" height="100%" xlink:href="#glyph1-13"/>
<use x="143.06866" y="176.87173" width="100%" height="100%" xlink:href="#glyph1-7"/>
<use x="149.91393" y="176.87173" width="100%" height="100%" xlink:href="#glyph1-15"/>
<use x="156.7708" y="176.87173" width="100%" height="100%" xlink:href="#glyph1-7"/>
<use x="163.61606" y="176.87173" width="100%" height="100%" xlink:href="#glyph1-14"/>
<use x="170.46132" y="176.87173" width="100%" height="100%" xlink:href="#glyph1-29"/>
<use x="177.32816" y="176.87173" width="100%" height="100%" xlink:href="#glyph1-37"/>
<use x="184.17342" y="176.87173" width="100%" height="100%" xlink:href="#glyph1-16"/>
<use x="191.01866" y="176.87173" width="100%" height="100%" xlink:href="#glyph1-7"/>
<use x="197.87555" y="176.87173" width="100%" height="100%" xlink:href="#glyph1-34"/>
<use x="204.72081" y="176.87173" width="100%" height="100%" xlink:href="#glyph1-9"/>
<use x="211.56606" y="176.87173" width="100%" height="100%" xlink:href="#glyph1-3"/>
<use x="218.41132" y="176.87173" width="100%" height="100%" xlink:href="#glyph1-7"/>
<use x="225.25658" y="176.87173" width="100%" height="100%" xlink:href="#glyph1-14"/>
<use x="232.11345" y="176.87173" width="100%" height="100%" xlink:href="#glyph1-17"/>
<use x="238.95871" y="176.87173" width="100%" height="100%" xlink:href="#glyph1-18"/>
<use x="245.80397" y="176.87173" width="100%" height="100%" xlink:href="#glyph1-7"/>
<use x="252.64923" y="176.87173" width="100%" height="100%" xlink:href="#glyph1-11"/>
<use x="259.49448" y="176.87173" width="100%" height="100%" xlink:href="#glyph1-28"/>
<use x="266.33975" y="176.87173" width="100%" height="100%" xlink:href="#glyph1-23"/>
<use x="273.19662" y="176.87173" width="100%" height="100%" xlink:href="#glyph1-2"/>
<use x="280.04187" y="176.87173" width="100%" height="100%" xlink:href="#glyph1-1"/>
<use x="286.88715" y="176.87173" width="100%" height="100%" xlink:href="#glyph1-24"/>
<use x="293.75397" y="176.87173" width="100%" height="100%" xlink:href="#glyph1-3"/>
<use x="300.59924" y="176.87173" width="100%" height="100%" xlink:href="#glyph1-21"/>
<use x="307.44449" y="176.87173" width="100%" height="100%" xlink:href="#glyph1-7"/>
<use x="314.30136" y="176.87173" width="100%" height="100%" xlink:href="#glyph1-36"/>
<use x="321.14664" y="176.87173" width="100%" height="100%" xlink:href="#glyph1-18"/>
<use x="327.99188" y="176.87173" width="100%" height="100%" xlink:href="#glyph1-38"/>
<use x="60.902332" y="189.32486" width="100%" height="100%" xlink:href="#glyph1-7"/>
<use x="67.747589" y="189.32486" width="100%" height="100%" xlink:href="#glyph1-8"/>
<use x="74.59285" y="189.32486" width="100%" height="100%" xlink:href="#glyph1-4"/>
<use x="81.449722" y="189.32486" width="100%" height="100%" xlink:href="#glyph1-7"/>
<use x="88.294983" y="189.32486" width="100%" height="100%" xlink:href="#glyph1-14"/>
<use x="95.140244" y="189.32486" width="100%" height="100%" xlink:href="#glyph1-36"/>
<use x="101.9855" y="189.32486" width="100%" height="100%" xlink:href="#glyph1-7"/>
<use x="108.83076" y="189.32486" width="100%" height="100%" xlink:href="#glyph1-11"/>
<use x="115.68764" y="189.32486" width="100%" height="100%" xlink:href="#glyph1-14"/>
<use x="122.53289" y="189.32486" width="100%" height="100%" xlink:href="#glyph1-2"/>
<use x="129.37814" y="189.32486" width="100%" height="100%" xlink:href="#glyph1-2"/>
<use x="136.2234" y="189.32486" width="100%" height="100%" xlink:href="#glyph1-1"/>
<use x="143.06866" y="189.32486" width="100%" height="100%" xlink:href="#glyph1-4"/>
<use x="149.91393" y="189.32486" width="100%" height="100%" xlink:href="#glyph1-23"/>
<use x="156.7708" y="189.32486" width="100%" height="100%" xlink:href="#glyph1-29"/>
<use x="163.61606" y="189.32486" width="100%" height="100%" xlink:href="#glyph1-26"/>
<use x="170.46132" y="189.32486" width="100%" height="100%" xlink:href="#glyph1-2"/>
<use x="177.32816" y="189.32486" width="100%" height="100%" xlink:href="#glyph1-13"/>
<use x="184.17342" y="189.32486" width="100%" height="100%" xlink:href="#glyph1-21"/>
<use x="191.01866" y="189.32486" width="100%" height="100%" xlink:href="#glyph1-7"/>
<use x="197.87555" y="189.32486" width="100%" height="100%" xlink:href="#glyph1-9"/>
<use x="204.72081" y="189.32486" width="100%" height="100%" xlink:href="#glyph1-10"/>
<use x="211.56606" y="189.32486" width="100%" height="100%" xlink:href="#glyph1-8"/>
<use x="218.41132" y="189.32486" width="100%" height="100%" xlink:href="#glyph1-1"/>
<use x="225.25658" y="189.32486" width="100%" height="100%" xlink:href="#glyph1-9"/>
<use x="232.11345" y="189.32486" width="100%" height="100%" xlink:href="#glyph1-7"/>
<use x="238.95871" y="189.32486" width="100%" height="100%" xlink:href="#glyph1-11"/>
<use x="245.80397" y="189.32486" width="100%" height="100%" xlink:href="#glyph1-12"/>
<use x="252.64923" y="189.32486" width="100%" height="100%" xlink:href="#glyph1-1"/>
<use x="259.49448" y="189.32486" width="100%" height="100%" xlink:href="#glyph1-10"/>
<use x="266.33975" y="189.32486" width="100%" height="100%" xlink:href="#glyph1-13"/>
<use x="273.19662" y="189.32486" width="100%" height="100%" xlink:href="#glyph1-1"/>
<use x="280.04187" y="189.32486" width="100%" height="100%" xlink:href="#glyph1-4"/>
<use x="286.88715" y="189.32486" width="100%" height="100%" xlink:href="#glyph1-21"/>
<use x="293.75397" y="189.32486" width="100%" height="100%" xlink:href="#glyph1-7"/>
<use x="300.59924" y="189.32486" width="100%" height="100%" xlink:href="#glyph1-9"/>
<use x="307.44449" y="189.32486" width="100%" height="100%" xlink:href="#glyph1-10"/>
<use x="314.30136" y="189.32486" width="100%" height="100%" xlink:href="#glyph1-8"/>
<use x="321.14664" y="189.32486" width="100%" height="100%" xlink:href="#glyph1-1"/>
<use x="327.99188" y="189.32486" width="100%" height="100%" xlink:href="#glyph1-9"/>
<use x="334.83713" y="189.32486" width="100%" height="100%" xlink:href="#glyph1-7"/>
<use x="341.6824" y="189.32486" width="100%" height="100%" xlink:href="#glyph1-11"/>
<use x="348.53928" y="189.32486" width="100%" height="100%" xlink:href="#glyph1-25"/>
<use x="355.38452" y="189.32486" width="100%" height="100%" xlink:href="#glyph1-26"/>
<use x="362.2298" y="189.32486" width="100%" height="100%" xlink:href="#glyph1-4"/>
<use x="369.07504" y="189.32486" width="100%" height="100%" xlink:href="#glyph1-23"/>
<use x="375.92032" y="189.32486" width="100%" height="100%" xlink:href="#glyph1-26"/>
<use x="382.76556" y="189.32486" width="100%" height="100%" xlink:href="#glyph1-27"/>
<use x="389.62244" y="189.32486" width="100%" height="100%" xlink:href="#glyph1-3"/>
<use x="396.46771" y="189.32486" width="100%" height="100%" xlink:href="#glyph1-1"/>
<use x="403.31296" y="189.32486" width="100%" height="100%" xlink:href="#glyph1-4"/>
</g>
<path d="m18.262 159.8h486.46" fill="none" stroke="#b50c26" stroke-linejoin="round" stroke-miterlimit="10" stroke-width=".83013"/>
<g transform="translate(-36,-36)">
<use x="172.14062" y="208.41859" width="100%" height="100%" xlink:href="#glyph1-39"/>
</g>
<path d="m261.49 178.89v-19.094" fill="none" stroke="#b50c26" stroke-linejoin="round" stroke-miterlimit="10" stroke-width=".83013"/>
<g transform="translate(-36,-36)">
<use x="415.37109" y="208.41859" width="100%" height="100%" xlink:href="#glyph1-40"/>
</g>
<g stroke="#000" stroke-linejoin="round" stroke-miterlimit="10" stroke-width=".83013">
<path d="m261.49 35.281v22.305" fill="none"/>
<path d="m264.4 57.695-2.9062 8.3008-2.9062-8.3008z"/>
<path d="m105.77 178.92c-65.297 15.629-102.45 9.7266-102.45-32.816 0-6.3086 2.8086-11.812 7.8867-16.559" fill="none"/>
<path d="m9.7969 126.97 8.3867-2.6523-4.9023 7.3008z"/>
</g>
<path d="m193.84 285.15v-75.539h342.84v75.539z" fill="#e6755c" fill-opacity=".43922" stroke="#3a4fc2" stroke-linejoin="round" stroke-miterlimit="10" stroke-width=".83013"/>
<g transform="translate(-36,-36)">
<use x="236.47656" y="258.2272" width="100%" height="100%" xlink:href="#glyph1-25"/>
<use x="243.32182" y="258.2272" width="100%" height="100%" xlink:href="#glyph1-26"/>
<use x="250.16708" y="258.2272" width="100%" height="100%" xlink:href="#glyph1-4"/>
<use x="257.02396" y="258.2272" width="100%" height="100%" xlink:href="#glyph1-23"/>
<use x="263.8692" y="258.2272" width="100%" height="100%" xlink:href="#glyph1-26"/>
<use x="270.71448" y="258.2272" width="100%" height="100%" xlink:href="#glyph1-27"/>
<use x="277.55972" y="258.2272" width="100%" height="100%" xlink:href="#glyph1-3"/>
<use x="284.405" y="258.2272" width="100%" height="100%" xlink:href="#glyph1-1"/>
<use x="291.26187" y="258.2272" width="100%" height="100%" xlink:href="#glyph1-4"/>
<use x="298.10712" y="258.2272" width="100%" height="100%" xlink:href="#glyph1-6"/>
<use x="304.95239" y="258.2272" width="100%" height="100%" xlink:href="#glyph1-7"/>
<use x="236.47656" y="270.67642" width="100%" height="100%" xlink:href="#glyph1-7"/>
<use x="243.32182" y="270.67642" width="100%" height="100%" xlink:href="#glyph1-11"/>
<use x="250.16708" y="270.67642" width="100%" height="100%" xlink:href="#glyph1-14"/>
<use x="257.02396" y="270.67642" width="100%" height="100%" xlink:href="#glyph1-23"/>
<use x="263.8692" y="270.67642" width="100%" height="100%" xlink:href="#glyph1-2"/>
<use x="270.71448" y="270.67642" width="100%" height="100%" xlink:href="#glyph1-1"/>
<use x="277.55972" y="270.67642" width="100%" height="100%" xlink:href="#glyph1-24"/>
<use x="284.405" y="270.67642" width="100%" height="100%" xlink:href="#glyph1-3"/>
<use x="291.26187" y="270.67642" width="100%" height="100%" xlink:href="#glyph1-7"/>
<use x="298.10712" y="270.67642" width="100%" height="100%" xlink:href="#glyph1-15"/>
<use x="304.95239" y="270.67642" width="100%" height="100%" xlink:href="#glyph1-7"/>
<use x="311.79764" y="270.67642" width="100%" height="100%" xlink:href="#glyph1-10"/>
<use x="318.64288" y="270.67642" width="100%" height="100%" xlink:href="#glyph1-13"/>
<use x="325.48816" y="270.67642" width="100%" height="100%" xlink:href="#glyph1-13"/>
<use x="332.34503" y="270.67642" width="100%" height="100%" xlink:href="#glyph1-7"/>
<use x="339.19028" y="270.67642" width="100%" height="100%" xlink:href="#glyph1-2"/>
<use x="346.03555" y="270.67642" width="100%" height="100%" xlink:href="#glyph1-34"/>
<use x="352.90237" y="270.67642" width="100%" height="100%" xlink:href="#glyph1-35"/>
<use x="359.74765" y="270.67642" width="100%" height="100%" xlink:href="#glyph1-7"/>
<use x="366.5929" y="270.67642" width="100%" height="100%" xlink:href="#glyph1-14"/>
<use x="373.44977" y="270.67642" width="100%" height="100%" xlink:href="#glyph1-17"/>
<use x="380.29504" y="270.67642" width="100%" height="100%" xlink:href="#glyph1-18"/>
<use x="387.14029" y="270.67642" width="100%" height="100%" xlink:href="#glyph1-7"/>
<use x="393.98553" y="270.67642" width="100%" height="100%" xlink:href="#glyph1-11"/>
<use x="400.83081" y="270.67642" width="100%" height="100%" xlink:href="#glyph1-14"/>
<use x="407.68768" y="270.67642" width="100%" height="100%" xlink:href="#glyph1-21"/>
<use x="414.53293" y="270.67642" width="100%" height="100%" xlink:href="#glyph1-7"/>
<use x="421.3782" y="270.67642" width="100%" height="100%" xlink:href="#glyph1-36"/>
<use x="236.47656" y="283.12955" width="100%" height="100%" xlink:href="#glyph1-7"/>
<use x="243.32182" y="283.12955" width="100%" height="100%" xlink:href="#glyph1-11"/>
<use x="250.16708" y="283.12955" width="100%" height="100%" xlink:href="#glyph1-26"/>
<use x="257.02396" y="283.12955" width="100%" height="100%" xlink:href="#glyph1-27"/>
<use x="263.8692" y="283.12955" width="100%" height="100%" xlink:href="#glyph1-3"/>
<use x="270.71448" y="283.12955" width="100%" height="100%" xlink:href="#glyph1-1"/>
<use x="277.55972" y="283.12955" width="100%" height="100%" xlink:href="#glyph1-4"/>
<use x="284.405" y="283.12955" width="100%" height="100%" xlink:href="#glyph1-23"/>
<use x="291.26187" y="283.12955" width="100%" height="100%" xlink:href="#glyph1-29"/>
<use x="298.10712" y="283.12955" width="100%" height="100%" xlink:href="#glyph1-26"/>
<use x="304.95239" y="283.12955" width="100%" height="100%" xlink:href="#glyph1-2"/>
<use x="311.79764" y="283.12955" width="100%" height="100%" xlink:href="#glyph1-13"/>
<use x="318.64288" y="283.12955" width="100%" height="100%" xlink:href="#glyph1-7"/>
<use x="325.48816" y="283.12955" width="100%" height="100%" xlink:href="#glyph1-15"/>
<use x="332.34503" y="283.12955" width="100%" height="100%" xlink:href="#glyph1-7"/>
<use x="339.19028" y="283.12955" width="100%" height="100%" xlink:href="#glyph1-14"/>
<use x="346.03555" y="283.12955" width="100%" height="100%" xlink:href="#glyph1-29"/>
<use x="352.90237" y="283.12955" width="100%" height="100%" xlink:href="#glyph1-37"/>
<use x="359.74765" y="283.12955" width="100%" height="100%" xlink:href="#glyph1-16"/>
<use x="366.5929" y="283.12955" width="100%" height="100%" xlink:href="#glyph1-7"/>
<use x="373.44977" y="283.12955" width="100%" height="100%" xlink:href="#glyph1-34"/>
<use x="380.29504" y="283.12955" width="100%" height="100%" xlink:href="#glyph1-9"/>
<use x="387.14029" y="283.12955" width="100%" height="100%" xlink:href="#glyph1-3"/>
<use x="393.98553" y="283.12955" width="100%" height="100%" xlink:href="#glyph1-7"/>
<use x="400.83081" y="283.12955" width="100%" height="100%" xlink:href="#glyph1-14"/>
<use x="407.68768" y="283.12955" width="100%" height="100%" xlink:href="#glyph1-17"/>
<use x="414.53293" y="283.12955" width="100%" height="100%" xlink:href="#glyph1-18"/>
<use x="421.3782" y="283.12955" width="100%" height="100%" xlink:href="#glyph1-7"/>
<use x="428.22345" y="283.12955" width="100%" height="100%" xlink:href="#glyph1-11"/>
<use x="435.06873" y="283.12955" width="100%" height="100%" xlink:href="#glyph1-14"/>
<use x="441.91397" y="283.12955" width="100%" height="100%" xlink:href="#glyph1-23"/>
<use x="448.77084" y="283.12955" width="100%" height="100%" xlink:href="#glyph1-2"/>
<use x="455.61612" y="283.12955" width="100%" height="100%" xlink:href="#glyph1-1"/>
<use x="462.46136" y="283.12955" width="100%" height="100%" xlink:href="#glyph1-24"/>
<use x="469.32822" y="283.12955" width="100%" height="100%" xlink:href="#glyph1-3"/>
<use x="476.17346" y="283.12955" width="100%" height="100%" xlink:href="#glyph1-21"/>
<use x="483.01871" y="283.12955" width="100%" height="100%" xlink:href="#glyph1-7"/>
<use x="489.87561" y="283.12955" width="100%" height="100%" xlink:href="#glyph1-36"/>
<use x="496.72086" y="283.12955" width="100%" height="100%" xlink:href="#glyph1-18"/>
<use x="503.5661" y="283.12955" width="100%" height="100%" xlink:href="#glyph1-38"/>
<use x="236.47656" y="295.58267" width="100%" height="100%" xlink:href="#glyph1-7"/>
<use x="243.32182" y="295.58267" width="100%" height="100%" xlink:href="#glyph1-8"/>
<use x="250.16708" y="295.58267" width="100%" height="100%" xlink:href="#glyph1-4"/>
<use x="257.02396" y="295.58267" width="100%" height="100%" xlink:href="#glyph1-7"/>
<use x="263.8692" y="295.58267" width="100%" height="100%" xlink:href="#glyph1-14"/>
<use x="270.71448" y="295.58267" width="100%" height="100%" xlink:href="#glyph1-36"/>
<use x="277.55972" y="295.58267" width="100%" height="100%" xlink:href="#glyph1-7"/>
<use x="284.405" y="295.58267" width="100%" height="100%" xlink:href="#glyph1-11"/>
<use x="291.26187" y="295.58267" width="100%" height="100%" xlink:href="#glyph1-26"/>
<use x="298.10712" y="295.58267" width="100%" height="100%" xlink:href="#glyph1-27"/>
<use x="304.95239" y="295.58267" width="100%" height="100%" xlink:href="#glyph1-3"/>
<use x="311.79764" y="295.58267" width="100%" height="100%" xlink:href="#glyph1-1"/>
<use x="318.64288" y="295.58267" width="100%" height="100%" xlink:href="#glyph1-4"/>
<use x="325.48816" y="295.58267" width="100%" height="100%" xlink:href="#glyph1-23"/>
<use x="332.34503" y="295.58267" width="100%" height="100%" xlink:href="#glyph1-29"/>
<use x="339.19028" y="295.58267" width="100%" height="100%" xlink:href="#glyph1-26"/>
<use x="346.03555" y="295.58267" width="100%" height="100%" xlink:href="#glyph1-2"/>
<use x="352.90237" y="295.58267" width="100%" height="100%" xlink:href="#glyph1-13"/>
<use x="359.74765" y="295.58267" width="100%" height="100%" xlink:href="#glyph1-21"/>
<use x="366.5929" y="295.58267" width="100%" height="100%" xlink:href="#glyph1-7"/>
<use x="373.44977" y="295.58267" width="100%" height="100%" xlink:href="#glyph1-9"/>
<use x="380.29504" y="295.58267" width="100%" height="100%" xlink:href="#glyph1-10"/>
<use x="387.14029" y="295.58267" width="100%" height="100%" xlink:href="#glyph1-8"/>
<use x="393.98553" y="295.58267" width="100%" height="100%" xlink:href="#glyph1-1"/>
<use x="400.83081" y="295.58267" width="100%" height="100%" xlink:href="#glyph1-9"/>
<use x="407.68768" y="295.58267" width="100%" height="100%" xlink:href="#glyph1-7"/>
<use x="414.53293" y="295.58267" width="100%" height="100%" xlink:href="#glyph1-11"/>
<use x="421.3782" y="295.58267" width="100%" height="100%" xlink:href="#glyph1-12"/>
<use x="428.22345" y="295.58267" width="100%" height="100%" xlink:href="#glyph1-1"/>
<use x="435.06873" y="295.58267" width="100%" height="100%" xlink:href="#glyph1-10"/>
<use x="441.91397" y="295.58267" width="100%" height="100%" xlink:href="#glyph1-13"/>
<use x="448.77084" y="295.58267" width="100%" height="100%" xlink:href="#glyph1-1"/>
<use x="455.61612" y="295.58267" width="100%" height="100%" xlink:href="#glyph1-4"/>
<use x="462.46136" y="295.58267" width="100%" height="100%" xlink:href="#glyph1-21"/>
<use x="469.32822" y="295.58267" width="100%" height="100%" xlink:href="#glyph1-7"/>
<use x="476.17346" y="295.58267" width="100%" height="100%" xlink:href="#glyph1-9"/>
<use x="483.01871" y="295.58267" width="100%" height="100%" xlink:href="#glyph1-10"/>
<use x="489.87561" y="295.58267" width="100%" height="100%" xlink:href="#glyph1-8"/>
<use x="496.72086" y="295.58267" width="100%" height="100%" xlink:href="#glyph1-1"/>
<use x="503.5661" y="295.58267" width="100%" height="100%" xlink:href="#glyph1-9"/>
<use x="510.41138" y="295.58267" width="100%" height="100%" xlink:href="#glyph1-7"/>
<use x="517.25665" y="295.58267" width="100%" height="100%" xlink:href="#glyph1-11"/>
<use x="524.11353" y="295.58267" width="100%" height="100%" xlink:href="#glyph1-4"/>
<use x="530.95874" y="295.58267" width="100%" height="100%" xlink:href="#glyph1-1"/>
<use x="537.80402" y="295.58267" width="100%" height="100%" xlink:href="#glyph1-3"/>
<use x="544.64929" y="295.58267" width="100%" height="100%" xlink:href="#glyph1-27"/>
<use x="551.49451" y="295.58267" width="100%" height="100%" xlink:href="#glyph1-4"/>
<use x="558.33978" y="295.58267" width="100%" height="100%" xlink:href="#glyph1-2"/>
</g>
<path d="m193.84 266.06h342.84" fill="none" stroke="#3a4fc2" stroke-linejoin="round" stroke-miterlimit="10" stroke-width=".83013"/>
<g transform="translate(-36,-36)">
<use x="311.60156" y="314.67642" width="100%" height="100%" xlink:href="#glyph1-39"/>
</g>
<path d="m364.84 285.15v-19.09" fill="none" stroke="#3a4fc2" stroke-linejoin="round" stroke-miterlimit="10" stroke-width=".83013"/>
<g transform="translate(-36,-36)">
<use x="483.02344" y="314.67642" width="100%" height="100%" xlink:href="#glyph1-40"/>
</g>
<g stroke="#000" stroke-linejoin="round" stroke-miterlimit="10" stroke-width=".83013">
<path d="m383.52 179.31c0 7.1289-0.96875 14.539-2.457 21.723" fill="none"/>
<path d="m383.84 201.92-4.7383 7.4102-0.91407-8.7461z"/>
<path d="m278.93 286.39c0 18.91-71.785 12.605-85.09-0.82812-26.926-27.191-11.258-66.672 11.746-99.883" fill="none"/>
<path d="m203.23 183.97 7.1953-5.0586-2.4727 8.4414z"/>
</g>
<path d="m412.99 347.41v-31.547h75.543v31.547z" fill="#a3c2fd" fill-opacity=".43922" stroke="#3a4fc2" stroke-linejoin="round" stroke-miterlimit="10" stroke-width=".83013"/>
<g transform="translate(-36,-36)">
<use x="455.63281" y="364.48111" width="100%" height="100%" xlink:href="#glyph1-4"/>
<use x="462.47806" y="364.48111" width="100%" height="100%" xlink:href="#glyph1-1"/>
<use x="469.32333" y="364.48111" width="100%" height="100%" xlink:href="#glyph1-3"/>
<use x="476.18021" y="364.48111" width="100%" height="100%" xlink:href="#glyph1-27"/>
<use x="483.02545" y="364.48111" width="100%" height="100%" xlink:href="#glyph1-4"/>
<use x="489.87073" y="364.48111" width="100%" height="100%" xlink:href="#glyph1-2"/>
<use x="496.71597" y="364.48111" width="100%" height="100%" xlink:href="#glyph1-6"/>
<use x="503.56125" y="364.48111" width="100%" height="100%" xlink:href="#glyph1-7"/>
<use x="455.63281" y="376.93423" width="100%" height="100%" xlink:href="#glyph1-7"/>
<use x="462.47806" y="376.93423" width="100%" height="100%" xlink:href="#glyph1-4"/>
<use x="469.32333" y="376.93423" width="100%" height="100%" xlink:href="#glyph1-1"/>
<use x="476.18021" y="376.93423" width="100%" height="100%" xlink:href="#glyph1-3"/>
<use x="483.02545" y="376.93423" width="100%" height="100%" xlink:href="#glyph1-7"/>
<use x="489.87073" y="376.93423" width="100%" height="100%" xlink:href="#glyph1-30"/>
<use x="496.71597" y="376.93423" width="100%" height="100%" xlink:href="#glyph1-26"/>
<use x="503.56125" y="376.93423" width="100%" height="100%" xlink:href="#glyph1-14"/>
<use x="510.41812" y="376.93423" width="100%" height="100%" xlink:href="#glyph1-13"/>
</g>
<path d="m450.76 285.57v21.758" fill="none" stroke="#000" stroke-linejoin="round" stroke-miterlimit="10" stroke-width=".83013"/>
<path d="m453.67 307.43-2.9062 8.3008-2.9062-8.3008z" stroke="#000" stroke-linejoin="round" stroke-miterlimit="10" stroke-width=".83013"/>
</svg>

After

Width:  |  Height:  |  Size: 88 KiB

874
docs/loop-nested.svg Normal file
View File

@ -0,0 +1,874 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="186.7pt" height="161.887pt" viewBox="0 0 186.7 161.887" 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 0 2.546875 L 7.40625 2.546875 L 7.40625 1.28125 L 0 1.28125 Z M 9.71875 2.65625 L 11.15625 2.65625 L 11.15625 1.203125 L 9.71875 1.203125 Z M 9.71875 2.65625 "/>
</symbol>
<symbol overflow="visible" id="glyph0-2">
<path style="stroke:none;" d="M 0 7.046875 L 5.03125 7.046875 C 6.109375 7.046875 7.546875 6.78125 7.546875 4.84375 C 7.546875 3.734375 6.96875 3.015625 6.390625 2.53125 L 7.453125 2.53125 L 7.453125 1.28125 L 0 1.28125 L 0 2.578125 L 4.171875 2.578125 C 5.25 2.578125 6.484375 3 6.484375 4.171875 C 6.484375 5.6875 5.46875 5.734375 4.890625 5.734375 L 0 5.734375 Z M 0 7.046875 "/>
</symbol>
<symbol overflow="visible" id="glyph0-3">
<path style="stroke:none;" d="M 3.765625 6.734375 C 4.34375 6.734375 5.4375 6.703125 6.359375 6.140625 C 7.328125 5.546875 7.609375 4.5625 7.609375 3.828125 C 7.609375 2.03125 5.921875 0.515625 3.734375 0.515625 C 1.59375 0.515625 -0.140625 2.078125 -0.140625 4.0625 C -0.140625 4.84375 0.09375 5.78125 0.703125 6.640625 C 0.78125 6.640625 1.171875 6.59375 1.171875 6.59375 C 1.171875 6.59375 1.734375 6.546875 1.8125 6.546875 C 1.140625 5.71875 0.90625 4.765625 0.90625 4.078125 C 0.90625 2.984375 1.84375 1.796875 3.765625 1.734375 Z M 4.71875 5.59375 L 4.71875 1.875 C 5.671875 2.09375 6.5625 2.859375 6.5625 3.828125 C 6.5625 4.078125 6.53125 5.28125 4.71875 5.59375 Z M 4.71875 5.59375 "/>
</symbol>
<symbol overflow="visible" id="glyph0-4">
<path style="stroke:none;" d="M 6.40625 5.265625 L 7.546875 5.265625 C 7.53125 4.171875 6.96875 3.140625 6.078125 2.515625 L 7.453125 2.515625 L 7.453125 1.296875 L 0 1.296875 L 0 2.5625 L 3.671875 2.5625 C 5.28125 2.5625 6.375 3.75 6.40625 5.265625 Z M 6.40625 5.265625 "/>
</symbol>
<symbol overflow="visible" id="glyph0-5">
<path style="stroke:none;" d="M 0 2.546875 L 11.953125 2.546875 L 11.953125 1.28125 L 0 1.28125 Z M 0 2.546875 "/>
</symbol>
<symbol overflow="visible" id="glyph0-6">
<path style="stroke:none;" d="M 3.6875 7.609375 C 5.890625 7.609375 7.609375 5.96875 7.609375 4.046875 C 7.609375 2.0625 5.84375 0.46875 3.6875 0.46875 C 1.5 0.46875 -0.140625 2.125 -0.140625 4.03125 C -0.140625 5.984375 1.546875 7.609375 3.6875 7.609375 Z M 3.828125 6.296875 C 1.875 6.296875 0.9375 5.1875 0.9375 4.03125 C 0.9375 2.828125 1.953125 1.78125 3.828125 1.78125 C 5.8125 1.78125 6.546875 3 6.546875 4.03125 C 6.546875 5.140625 5.75 6.296875 3.828125 6.296875 Z M 3.828125 6.296875 "/>
</symbol>
<symbol overflow="visible" id="glyph0-7">
<path style="stroke:none;" d="M 3.71875 7.75 C 5.75 7.75 7.546875 6.71875 7.546875 5.234375 C 7.546875 4.375 7.234375 3.34375 6.609375 2.5625 L 7.40625 2.5625 L 7.40625 1.296875 L -3.359375 1.296875 L -3.359375 2.59375 L 0.78125 2.59375 C 0.21875 3.171875 -0.140625 3.9375 -0.140625 4.765625 C -0.140625 6.375 1.515625 7.75 3.71875 7.75 Z M 3.71875 6.4375 C 2.015625 6.4375 0.90625 5.265625 0.90625 4.109375 C 0.90625 3.765625 1 3.40625 1.296875 3.0625 C 1.703125 2.59375 1.96875 2.59375 2.203125 2.59375 L 5.59375 2.59375 C 5.796875 2.734375 6.453125 3.328125 6.453125 4.265625 C 6.453125 5.46875 5.21875 6.4375 3.71875 6.4375 Z M 3.71875 6.4375 "/>
</symbol>
<symbol overflow="visible" id="glyph0-8">
<path style="stroke:none;" d="M 0 7.046875 L 7.40625 7.046875 L 7.40625 5.734375 L 2.65625 5.734375 C 1.375 5.734375 0.859375 4.796875 0.859375 3.828125 C 0.859375 2.6875 1.234375 2.578125 1.953125 2.578125 L 7.40625 2.578125 L 7.40625 1.28125 L 1.859375 1.28125 C 0.515625 1.28125 -0.140625 1.734375 -0.140625 2.921875 C -0.140625 3.515625 0 4.84375 0.859375 5.765625 L 0 5.765625 Z M 0 7.046875 "/>
</symbol>
<symbol overflow="visible" id="glyph0-9">
<path style="stroke:none;" d="M 0.5 5.390625 L 1.515625 5.109375 C 1.15625 4.703125 0.953125 4.203125 0.953125 3.671875 C 0.953125 2.90625 1.90625 2.875 2.34375 2.875 L 6.40625 2.875 L 6.40625 5.109375 L 7.40625 5.109375 L 7.40625 2.875 L 9.515625 2.875 L 9.515625 1.65625 L 7.40625 1.65625 L 7.40625 0.296875 L 6.40625 0.296875 L 6.40625 1.625 L 2.046875 1.625 C 1.0625 1.625 -0.140625 1.84375 -0.140625 2.984375 C -0.140625 3.84375 0.109375 4.625 0.5 5.390625 Z M 0.5 5.390625 "/>
</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 4.34375 0 L 4.34375 -2.96875 C 4.34375 -3.625 4.1875 -4.53125 2.96875 -4.53125 C 2.359375 -4.53125 1.875 -4.234375 1.5625 -3.8125 L 1.5625 -6.921875 L 0.8125 -6.921875 L 0.8125 0 L 1.578125 0 L 1.578125 -2.4375 C 1.578125 -3.09375 1.828125 -3.921875 2.59375 -3.921875 C 3.546875 -3.921875 3.5625 -3.21875 3.5625 -2.90625 L 3.5625 0 Z M 4.34375 0 "/>
</symbol>
<symbol overflow="visible" id="glyph1-2">
<path style="stroke:none;" d="M 4.125 -2.1875 C 4.125 -2.515625 4.109375 -3.265625 3.734375 -3.875 C 3.3125 -4.484375 2.71875 -4.59375 2.359375 -4.59375 C 1.25 -4.59375 0.34375 -3.53125 0.34375 -2.25 C 0.34375 -0.9375 1.3125 0.109375 2.5 0.109375 C 3.125 0.109375 3.703125 -0.125 4.09375 -0.40625 L 4.03125 -1.0625 C 3.40625 -0.53125 2.734375 -0.5 2.515625 -0.5 C 1.71875 -0.5 1.078125 -1.203125 1.046875 -2.1875 Z M 3.5625 -2.734375 L 1.09375 -2.734375 C 1.25 -3.484375 1.78125 -3.984375 2.359375 -3.984375 C 2.875 -3.984375 3.421875 -3.65625 3.5625 -2.734375 Z M 3.5625 -2.734375 "/>
</symbol>
<symbol overflow="visible" id="glyph1-3">
<path style="stroke:none;" d="M 4.078125 0 L 4.078125 -2.875 C 4.078125 -3.890625 3.34375 -4.59375 2.4375 -4.59375 C 1.78125 -4.59375 1.328125 -4.4375 0.875 -4.171875 L 0.921875 -3.515625 C 1.453125 -3.875 1.9375 -4 2.4375 -4 C 2.90625 -4 3.296875 -3.609375 3.296875 -2.875 L 3.296875 -2.4375 C 1.796875 -2.421875 0.53125 -2 0.53125 -1.125 C 0.53125 -0.703125 0.8125 0.109375 1.671875 0.109375 C 1.8125 0.109375 2.75 0.09375 3.328125 -0.359375 L 3.328125 0 Z M 3.296875 -1.3125 C 3.296875 -1.125 3.296875 -0.875 2.953125 -0.6875 C 2.671875 -0.515625 2.296875 -0.5 2.1875 -0.5 C 1.703125 -0.5 1.25 -0.734375 1.25 -1.140625 C 1.25 -1.84375 2.875 -1.90625 3.296875 -1.9375 Z M 3.296875 -1.3125 "/>
</symbol>
<symbol overflow="visible" id="glyph1-4">
<path style="stroke:none;" d="M 4.328125 0 L 4.328125 -6.921875 L 3.578125 -6.921875 L 3.578125 -3.984375 C 3.046875 -4.421875 2.5 -4.53125 2.125 -4.53125 C 1.140625 -4.53125 0.359375 -3.5 0.359375 -2.21875 C 0.359375 -0.90625 1.125 0.109375 2.078125 0.109375 C 2.40625 0.109375 2.984375 0.015625 3.546875 -0.515625 L 3.546875 0 Z M 3.546875 -1.390625 C 3.546875 -1.25 3.53125 -1.0625 3.21875 -0.78125 C 2.984375 -0.578125 2.734375 -0.5 2.484375 -0.5 C 1.859375 -0.5 1.140625 -0.96875 1.140625 -2.203125 C 1.140625 -3.515625 2 -3.921875 2.578125 -3.921875 C 3.03125 -3.921875 3.328125 -3.703125 3.546875 -3.375 Z M 3.546875 -1.390625 "/>
</symbol>
<symbol overflow="visible" id="glyph1-5">
<path style="stroke:none;" d="M 3.265625 -3.875 L 3.265625 -4.53125 C 2.375 -4.53125 1.828125 -4.03125 1.515625 -3.578125 L 1.515625 -4.484375 L 0.8125 -4.484375 L 0.8125 0 L 1.5625 0 L 1.5625 -2.140625 C 1.5625 -3.125 2.28125 -3.84375 3.265625 -3.875 Z M 3.265625 -3.875 "/>
</symbol>
<symbol overflow="visible" id="glyph1-6">
<path style="stroke:none;" d="M 4.421875 -7.28125 C 4.421875 -7.390625 4.328125 -7.484375 4.21875 -7.484375 C 4.078125 -7.484375 4.03125 -7.375 4 -7.28125 L 0.609375 2.109375 C 0.5625 2.25 0.5625 2.296875 0.5625 2.296875 C 0.5625 2.40625 0.640625 2.5 0.75 2.5 C 0.890625 2.5 0.9375 2.390625 0.96875 2.296875 L 4.359375 -7.09375 C 4.421875 -7.234375 4.421875 -7.28125 4.421875 -7.28125 Z M 4.421875 -7.28125 "/>
</symbol>
<symbol overflow="visible" id="glyph1-7">
<path style="stroke:none;" d="M 4.578125 0 L 2.59375 -2.28125 L 4.421875 -4.421875 L 3.59375 -4.421875 L 2.265625 -2.78125 L 0.890625 -4.421875 L 0.0625 -4.421875 L 1.9375 -2.28125 L 0 0 L 0.8125 0 L 2.265625 -1.875 L 3.765625 0 Z M 4.578125 0 "/>
</symbol>
<symbol overflow="visible" id="glyph1-8">
<path style="stroke:none;" d="M 1.5625 0 L 1.5625 -4.421875 L 0.8125 -4.421875 L 0.8125 0 Z M 1.640625 -5.640625 L 1.640625 -6.53125 L 0.75 -6.53125 L 0.75 -5.640625 Z M 1.640625 -5.640625 "/>
</symbol>
<symbol overflow="visible" id="glyph1-9">
<path style="stroke:none;" d="M 3.3125 -0.265625 L 3.15625 -0.859375 C 2.890625 -0.640625 2.578125 -0.53125 2.25 -0.53125 C 1.890625 -0.53125 1.75 -0.828125 1.75 -1.359375 L 1.75 -3.84375 L 3.15625 -3.84375 L 3.15625 -4.421875 L 1.75 -4.421875 L 1.75 -5.6875 L 1.0625 -5.6875 L 1.0625 -4.421875 L 0.1875 -4.421875 L 0.1875 -3.84375 L 1.03125 -3.84375 L 1.03125 -1.1875 C 1.03125 -0.59375 1.171875 0.109375 1.859375 0.109375 C 2.546875 0.109375 3.0625 -0.140625 3.3125 -0.265625 Z M 3.3125 -0.265625 "/>
</symbol>
<symbol overflow="visible" id="glyph1-10">
<path style="stroke:none;" d="M 4.34375 0 L 4.34375 -2.96875 C 4.34375 -3.625 4.1875 -4.53125 2.96875 -4.53125 C 2.078125 -4.53125 1.578125 -3.859375 1.53125 -3.78125 L 1.53125 -4.484375 L 0.8125 -4.484375 L 0.8125 0 L 1.578125 0 L 1.578125 -2.4375 C 1.578125 -3.09375 1.828125 -3.921875 2.59375 -3.921875 C 3.546875 -3.921875 3.5625 -3.21875 3.5625 -2.90625 L 3.5625 0 Z M 4.34375 0 "/>
</symbol>
<symbol overflow="visible" id="glyph1-11">
<path style="stroke:none;" d="M 4.828125 -3.90625 L 4.71875 -4.53125 C 4.03125 -4.53125 3.453125 -4.34375 3.15625 -4.21875 C 2.9375 -4.390625 2.609375 -4.53125 2.203125 -4.53125 C 1.34375 -4.53125 0.625 -3.8125 0.625 -2.90625 C 0.625 -2.546875 0.75 -2.1875 0.953125 -1.921875 C 0.65625 -1.515625 0.65625 -1.125 0.65625 -1.078125 C 0.65625 -0.8125 0.75 -0.53125 0.921875 -0.3125 C 0.40625 -0.015625 0.28125 0.453125 0.28125 0.703125 C 0.28125 1.453125 1.265625 2.046875 2.484375 2.046875 C 3.703125 2.046875 4.6875 1.46875 4.6875 0.703125 C 4.6875 -0.6875 3.03125 -0.6875 2.640625 -0.6875 L 1.765625 -0.6875 C 1.640625 -0.6875 1.1875 -0.6875 1.1875 -1.21875 C 1.1875 -1.328125 1.21875 -1.484375 1.296875 -1.578125 C 1.5 -1.421875 1.828125 -1.28125 2.203125 -1.28125 C 3.09375 -1.28125 3.796875 -2.03125 3.796875 -2.90625 C 3.796875 -3.390625 3.578125 -3.765625 3.46875 -3.90625 L 3.515625 -3.890625 C 3.734375 -3.890625 4 -3.9375 4.25 -3.9375 C 4.421875 -3.9375 4.828125 -3.90625 4.828125 -3.90625 Z M 3.09375 -2.90625 C 3.09375 -2.140625 2.625 -1.859375 2.203125 -1.859375 C 1.828125 -1.859375 1.3125 -2.078125 1.3125 -2.90625 C 1.3125 -3.734375 1.828125 -3.96875 2.203125 -3.96875 C 2.625 -3.96875 3.09375 -3.6875 3.09375 -2.90625 Z M 4 0.71875 C 4 1.15625 3.3125 1.484375 2.5 1.484375 C 1.6875 1.484375 0.984375 1.171875 0.984375 0.703125 C 0.984375 0.671875 0.984375 0.03125 1.75 0.03125 L 2.65625 0.03125 C 2.875 0.03125 4 0.03125 4 0.71875 Z M 4 0.71875 "/>
</symbol>
<symbol overflow="visible" id="glyph1-12">
<path style="stroke:none;" d="M 1.5625 0 L 1.5625 -6.921875 L 0.8125 -6.921875 L 0.8125 0 Z M 1.5625 0 "/>
</symbol>
<symbol overflow="visible" id="glyph1-13">
<path style="stroke:none;" d="M 4.140625 -0.40625 L 4.078125 -1.0625 C 3.5625 -0.671875 3.03125 -0.53125 2.515625 -0.53125 C 1.6875 -0.53125 1.140625 -1.25 1.140625 -2.21875 C 1.140625 -3 1.5 -3.953125 2.5625 -3.953125 C 3.078125 -3.953125 3.421875 -3.875 3.96875 -3.515625 L 4.09375 -4.171875 C 3.5 -4.5 3.15625 -4.59375 2.546875 -4.59375 C 1.171875 -4.59375 0.359375 -3.390625 0.359375 -2.21875 C 0.359375 -0.984375 1.265625 0.109375 2.515625 0.109375 C 3.046875 0.109375 3.59375 -0.03125 4.140625 -0.40625 Z M 4.140625 -0.40625 "/>
</symbol>
</g>
<clipPath id="clip1">
<path d="M 0 6 L 186.699219 6 L 186.699219 155 L 0 155 Z M 0 6 "/>
</clipPath>
<clipPath id="clip2">
<path d="M 66 33 L 101 33 L 101 48 L 66 48 Z M 66 33 "/>
</clipPath>
<clipPath id="clip3">
<path d="M 96.578125 33.632812 L 70.558594 33.632812 C 68.359375 33.632812 66.574219 35.417969 66.574219 37.621094 L 66.574219 43.3125 C 66.574219 45.515625 68.359375 47.300781 70.558594 47.300781 L 96.578125 47.300781 C 98.777344 47.300781 100.5625 45.515625 100.5625 43.3125 L 100.5625 37.621094 C 100.5625 35.417969 98.777344 33.632812 96.578125 33.632812 Z M 96.578125 33.632812 "/>
</clipPath>
<clipPath id="clip4">
<path d="M 59.628906 65.402344 L 116.765625 50.089844 L 107.507812 15.53125 L 50.371094 30.84375 Z M 59.628906 65.402344 "/>
</clipPath>
<linearGradient id="linear0" gradientUnits="userSpaceOnUse" x1="0" y1="19.259417" x2="0" y2="80.740583" gradientTransform="matrix(0.571367,-0.153097,-0.092598,-0.345581,59.630556,65.400899)">
<stop offset="0" style="stop-color:rgb(100%,100%,100%);stop-opacity:1;"/>
<stop offset="0.0625" style="stop-color:rgb(100%,100%,100%);stop-opacity:1;"/>
<stop offset="0.09375" style="stop-color:rgb(99.987793%,99.993896%,99.993896%);stop-opacity:1;"/>
<stop offset="0.0976563" style="stop-color:rgb(99.736023%,99.867249%,99.867249%);stop-opacity:1;"/>
<stop offset="0.101563" style="stop-color:rgb(99.49646%,99.74823%,99.74823%);stop-opacity:1;"/>
<stop offset="0.105469" style="stop-color:rgb(99.255371%,99.627686%,99.627686%);stop-opacity:1;"/>
<stop offset="0.109375" style="stop-color:rgb(99.015808%,99.507141%,99.507141%);stop-opacity:1;"/>
<stop offset="0.113281" style="stop-color:rgb(98.774719%,99.386597%,99.386597%);stop-opacity:1;"/>
<stop offset="0.117188" style="stop-color:rgb(98.535156%,99.267578%,99.267578%);stop-opacity:1;"/>
<stop offset="0.121094" style="stop-color:rgb(98.294067%,99.147034%,99.147034%);stop-opacity:1;"/>
<stop offset="0.125" style="stop-color:rgb(98.054504%,99.026489%,99.026489%);stop-opacity:1;"/>
<stop offset="0.128906" style="stop-color:rgb(97.814941%,98.905945%,98.905945%);stop-opacity:1;"/>
<stop offset="0.132813" style="stop-color:rgb(97.575378%,98.786926%,98.786926%);stop-opacity:1;"/>
<stop offset="0.136719" style="stop-color:rgb(97.33429%,98.666382%,98.666382%);stop-opacity:1;"/>
<stop offset="0.140625" style="stop-color:rgb(97.094727%,98.547363%,98.547363%);stop-opacity:1;"/>
<stop offset="0.144531" style="stop-color:rgb(96.853638%,98.426819%,98.426819%);stop-opacity:1;"/>
<stop offset="0.148438" style="stop-color:rgb(96.614075%,98.306274%,98.306274%);stop-opacity:1;"/>
<stop offset="0.152344" style="stop-color:rgb(96.372986%,98.18573%,98.18573%);stop-opacity:1;"/>
<stop offset="0.15625" style="stop-color:rgb(96.133423%,98.066711%,98.066711%);stop-opacity:1;"/>
<stop offset="0.160156" style="stop-color:rgb(95.892334%,97.946167%,97.946167%);stop-opacity:1;"/>
<stop offset="0.164063" style="stop-color:rgb(95.652771%,97.825623%,97.825623%);stop-opacity:1;"/>
<stop offset="0.167969" style="stop-color:rgb(95.413208%,97.705078%,97.705078%);stop-opacity:1;"/>
<stop offset="0.171875" style="stop-color:rgb(95.173645%,97.58606%,97.58606%);stop-opacity:1;"/>
<stop offset="0.175781" style="stop-color:rgb(94.932556%,97.465515%,97.465515%);stop-opacity:1;"/>
<stop offset="0.179688" style="stop-color:rgb(94.692993%,97.346497%,97.346497%);stop-opacity:1;"/>
<stop offset="0.183594" style="stop-color:rgb(94.451904%,97.225952%,97.225952%);stop-opacity:1;"/>
<stop offset="0.1875" style="stop-color:rgb(94.212341%,97.105408%,97.105408%);stop-opacity:1;"/>
<stop offset="0.191406" style="stop-color:rgb(93.971252%,96.984863%,96.984863%);stop-opacity:1;"/>
<stop offset="0.195313" style="stop-color:rgb(93.731689%,96.865845%,96.865845%);stop-opacity:1;"/>
<stop offset="0.199219" style="stop-color:rgb(93.492126%,96.7453%,96.7453%);stop-opacity:1;"/>
<stop offset="0.203125" style="stop-color:rgb(93.252563%,96.626282%,96.626282%);stop-opacity:1;"/>
<stop offset="0.207031" style="stop-color:rgb(93.011475%,96.505737%,96.505737%);stop-opacity:1;"/>
<stop offset="0.210938" style="stop-color:rgb(92.771912%,96.385193%,96.385193%);stop-opacity:1;"/>
<stop offset="0.214844" style="stop-color:rgb(92.530823%,96.264648%,96.264648%);stop-opacity:1;"/>
<stop offset="0.21875" style="stop-color:rgb(92.29126%,96.14563%,96.14563%);stop-opacity:1;"/>
<stop offset="0.222656" style="stop-color:rgb(92.050171%,96.025085%,96.025085%);stop-opacity:1;"/>
<stop offset="0.226563" style="stop-color:rgb(91.810608%,95.904541%,95.904541%);stop-opacity:1;"/>
<stop offset="0.230469" style="stop-color:rgb(91.569519%,95.783997%,95.783997%);stop-opacity:1;"/>
<stop offset="0.234375" style="stop-color:rgb(91.329956%,95.664978%,95.664978%);stop-opacity:1;"/>
<stop offset="0.238281" style="stop-color:rgb(91.090393%,95.544434%,95.544434%);stop-opacity:1;"/>
<stop offset="0.242188" style="stop-color:rgb(90.85083%,95.425415%,95.425415%);stop-opacity:1;"/>
<stop offset="0.246094" style="stop-color:rgb(90.609741%,95.304871%,95.304871%);stop-opacity:1;"/>
<stop offset="0.25" style="stop-color:rgb(90.370178%,95.184326%,95.184326%);stop-opacity:1;"/>
<stop offset="0.253906" style="stop-color:rgb(90.129089%,95.063782%,95.063782%);stop-opacity:1;"/>
<stop offset="0.257813" style="stop-color:rgb(89.889526%,94.944763%,94.944763%);stop-opacity:1;"/>
<stop offset="0.261719" style="stop-color:rgb(89.648438%,94.824219%,94.824219%);stop-opacity:1;"/>
<stop offset="0.265625" style="stop-color:rgb(89.408875%,94.703674%,94.703674%);stop-opacity:1;"/>
<stop offset="0.269531" style="stop-color:rgb(89.169312%,94.58313%,94.58313%);stop-opacity:1;"/>
<stop offset="0.273438" style="stop-color:rgb(88.929749%,94.464111%,94.464111%);stop-opacity:1;"/>
<stop offset="0.277344" style="stop-color:rgb(88.68866%,94.343567%,94.343567%);stop-opacity:1;"/>
<stop offset="0.28125" style="stop-color:rgb(88.449097%,94.224548%,94.224548%);stop-opacity:1;"/>
<stop offset="0.285156" style="stop-color:rgb(88.208008%,94.104004%,94.104004%);stop-opacity:1;"/>
<stop offset="0.289062" style="stop-color:rgb(87.968445%,93.983459%,93.983459%);stop-opacity:1;"/>
<stop offset="0.292969" style="stop-color:rgb(87.727356%,93.862915%,93.862915%);stop-opacity:1;"/>
<stop offset="0.296875" style="stop-color:rgb(87.487793%,93.743896%,93.743896%);stop-opacity:1;"/>
<stop offset="0.300781" style="stop-color:rgb(87.246704%,93.623352%,93.623352%);stop-opacity:1;"/>
<stop offset="0.304688" style="stop-color:rgb(87.007141%,93.502808%,93.502808%);stop-opacity:1;"/>
<stop offset="0.308594" style="stop-color:rgb(86.767578%,93.382263%,93.382263%);stop-opacity:1;"/>
<stop offset="0.3125" style="stop-color:rgb(86.528015%,93.263245%,93.263245%);stop-opacity:1;"/>
<stop offset="0.316406" style="stop-color:rgb(86.286926%,93.1427%,93.1427%);stop-opacity:1;"/>
<stop offset="0.320312" style="stop-color:rgb(86.047363%,93.023682%,93.023682%);stop-opacity:1;"/>
<stop offset="0.324219" style="stop-color:rgb(85.806274%,92.903137%,92.903137%);stop-opacity:1;"/>
<stop offset="0.328125" style="stop-color:rgb(85.566711%,92.782593%,92.782593%);stop-opacity:1;"/>
<stop offset="0.332031" style="stop-color:rgb(85.325623%,92.662048%,92.662048%);stop-opacity:1;"/>
<stop offset="0.335938" style="stop-color:rgb(85.08606%,92.54303%,92.54303%);stop-opacity:1;"/>
<stop offset="0.339844" style="stop-color:rgb(84.846497%,92.422485%,92.422485%);stop-opacity:1;"/>
<stop offset="0.34375" style="stop-color:rgb(84.606934%,92.303467%,92.303467%);stop-opacity:1;"/>
<stop offset="0.347656" style="stop-color:rgb(84.365845%,92.182922%,92.182922%);stop-opacity:1;"/>
<stop offset="0.351562" style="stop-color:rgb(84.126282%,92.062378%,92.062378%);stop-opacity:1;"/>
<stop offset="0.355469" style="stop-color:rgb(83.885193%,91.941833%,91.941833%);stop-opacity:1;"/>
<stop offset="0.359375" style="stop-color:rgb(83.64563%,91.822815%,91.822815%);stop-opacity:1;"/>
<stop offset="0.363281" style="stop-color:rgb(83.404541%,91.702271%,91.702271%);stop-opacity:1;"/>
<stop offset="0.367188" style="stop-color:rgb(83.164978%,91.581726%,91.581726%);stop-opacity:1;"/>
<stop offset="0.371094" style="stop-color:rgb(82.923889%,91.461182%,91.461182%);stop-opacity:1;"/>
<stop offset="0.375" style="stop-color:rgb(82.684326%,91.342163%,91.342163%);stop-opacity:1;"/>
<stop offset="0.378906" style="stop-color:rgb(82.444763%,91.221619%,91.221619%);stop-opacity:1;"/>
<stop offset="0.382812" style="stop-color:rgb(82.2052%,91.1026%,91.1026%);stop-opacity:1;"/>
<stop offset="0.386719" style="stop-color:rgb(81.964111%,90.982056%,90.982056%);stop-opacity:1;"/>
<stop offset="0.390625" style="stop-color:rgb(81.724548%,90.861511%,90.861511%);stop-opacity:1;"/>
<stop offset="0.394531" style="stop-color:rgb(81.483459%,90.740967%,90.740967%);stop-opacity:1;"/>
<stop offset="0.398437" style="stop-color:rgb(81.243896%,90.621948%,90.621948%);stop-opacity:1;"/>
<stop offset="0.402344" style="stop-color:rgb(81.002808%,90.501404%,90.501404%);stop-opacity:1;"/>
<stop offset="0.40625" style="stop-color:rgb(80.763245%,90.380859%,90.380859%);stop-opacity:1;"/>
<stop offset="0.410156" style="stop-color:rgb(80.522156%,90.260315%,90.260315%);stop-opacity:1;"/>
<stop offset="0.414062" style="stop-color:rgb(80.282593%,90.141296%,90.141296%);stop-opacity:1;"/>
<stop offset="0.417969" style="stop-color:rgb(80.04303%,90.020752%,90.020752%);stop-opacity:1;"/>
<stop offset="0.421875" style="stop-color:rgb(79.803467%,89.901733%,89.901733%);stop-opacity:1;"/>
<stop offset="0.425781" style="stop-color:rgb(79.562378%,89.781189%,89.781189%);stop-opacity:1;"/>
<stop offset="0.429687" style="stop-color:rgb(79.322815%,89.660645%,89.660645%);stop-opacity:1;"/>
<stop offset="0.433594" style="stop-color:rgb(79.081726%,89.5401%,89.5401%);stop-opacity:1;"/>
<stop offset="0.4375" style="stop-color:rgb(78.842163%,89.421082%,89.421082%);stop-opacity:1;"/>
<stop offset="0.441406" style="stop-color:rgb(78.601074%,89.300537%,89.300537%);stop-opacity:1;"/>
<stop offset="0.445312" style="stop-color:rgb(78.361511%,89.179993%,89.179993%);stop-opacity:1;"/>
<stop offset="0.449219" style="stop-color:rgb(78.121948%,89.059448%,89.059448%);stop-opacity:1;"/>
<stop offset="0.453125" style="stop-color:rgb(77.882385%,88.94043%,88.94043%);stop-opacity:1;"/>
<stop offset="0.457031" style="stop-color:rgb(77.641296%,88.819885%,88.819885%);stop-opacity:1;"/>
<stop offset="0.460937" style="stop-color:rgb(77.401733%,88.700867%,88.700867%);stop-opacity:1;"/>
<stop offset="0.464844" style="stop-color:rgb(77.160645%,88.580322%,88.580322%);stop-opacity:1;"/>
<stop offset="0.46875" style="stop-color:rgb(76.921082%,88.459778%,88.459778%);stop-opacity:1;"/>
<stop offset="0.472656" style="stop-color:rgb(76.679993%,88.339233%,88.339233%);stop-opacity:1;"/>
<stop offset="0.476562" style="stop-color:rgb(76.44043%,88.220215%,88.220215%);stop-opacity:1;"/>
<stop offset="0.480469" style="stop-color:rgb(76.199341%,88.09967%,88.09967%);stop-opacity:1;"/>
<stop offset="0.484375" style="stop-color:rgb(75.959778%,87.979126%,87.979126%);stop-opacity:1;"/>
<stop offset="0.488281" style="stop-color:rgb(75.720215%,87.858582%,87.858582%);stop-opacity:1;"/>
<stop offset="0.492187" style="stop-color:rgb(75.480652%,87.739563%,87.739563%);stop-opacity:1;"/>
<stop offset="0.496094" style="stop-color:rgb(75.239563%,87.619019%,87.619019%);stop-opacity:1;"/>
<stop offset="0.5" style="stop-color:rgb(75%,87.5%,87.5%);stop-opacity:1;"/>
<stop offset="0.503906" style="stop-color:rgb(74.758911%,87.379456%,87.379456%);stop-opacity:1;"/>
<stop offset="0.507813" style="stop-color:rgb(74.519348%,87.258911%,87.258911%);stop-opacity:1;"/>
<stop offset="0.511719" style="stop-color:rgb(74.278259%,87.138367%,87.138367%);stop-opacity:1;"/>
<stop offset="0.515625" style="stop-color:rgb(74.038696%,87.019348%,87.019348%);stop-opacity:1;"/>
<stop offset="0.519531" style="stop-color:rgb(73.799133%,86.898804%,86.898804%);stop-opacity:1;"/>
<stop offset="0.523438" style="stop-color:rgb(73.55957%,86.779785%,86.779785%);stop-opacity:1;"/>
<stop offset="0.527344" style="stop-color:rgb(73.318481%,86.659241%,86.659241%);stop-opacity:1;"/>
<stop offset="0.53125" style="stop-color:rgb(73.078918%,86.538696%,86.538696%);stop-opacity:1;"/>
<stop offset="0.535156" style="stop-color:rgb(72.83783%,86.418152%,86.418152%);stop-opacity:1;"/>
<stop offset="0.539063" style="stop-color:rgb(72.598267%,86.299133%,86.299133%);stop-opacity:1;"/>
<stop offset="0.542969" style="stop-color:rgb(72.357178%,86.178589%,86.178589%);stop-opacity:1;"/>
<stop offset="0.546875" style="stop-color:rgb(72.117615%,86.058044%,86.058044%);stop-opacity:1;"/>
<stop offset="0.550781" style="stop-color:rgb(71.876526%,85.9375%,85.9375%);stop-opacity:1;"/>
<stop offset="0.554688" style="stop-color:rgb(71.636963%,85.818481%,85.818481%);stop-opacity:1;"/>
<stop offset="0.558594" style="stop-color:rgb(71.3974%,85.697937%,85.697937%);stop-opacity:1;"/>
<stop offset="0.5625" style="stop-color:rgb(71.157837%,85.578918%,85.578918%);stop-opacity:1;"/>
<stop offset="0.566406" style="stop-color:rgb(70.916748%,85.458374%,85.458374%);stop-opacity:1;"/>
<stop offset="0.570312" style="stop-color:rgb(70.677185%,85.33783%,85.33783%);stop-opacity:1;"/>
<stop offset="0.574219" style="stop-color:rgb(70.436096%,85.217285%,85.217285%);stop-opacity:1;"/>
<stop offset="0.578125" style="stop-color:rgb(70.196533%,85.098267%,85.098267%);stop-opacity:1;"/>
<stop offset="0.582031" style="stop-color:rgb(69.955444%,84.977722%,84.977722%);stop-opacity:1;"/>
<stop offset="0.585938" style="stop-color:rgb(69.715881%,84.857178%,84.857178%);stop-opacity:1;"/>
<stop offset="0.589844" style="stop-color:rgb(69.476318%,84.736633%,84.736633%);stop-opacity:1;"/>
<stop offset="0.59375" style="stop-color:rgb(69.236755%,84.617615%,84.617615%);stop-opacity:1;"/>
<stop offset="0.597656" style="stop-color:rgb(68.995667%,84.49707%,84.49707%);stop-opacity:1;"/>
<stop offset="0.601562" style="stop-color:rgb(68.756104%,84.378052%,84.378052%);stop-opacity:1;"/>
<stop offset="0.605469" style="stop-color:rgb(68.515015%,84.257507%,84.257507%);stop-opacity:1;"/>
<stop offset="0.609375" style="stop-color:rgb(68.275452%,84.136963%,84.136963%);stop-opacity:1;"/>
<stop offset="0.613281" style="stop-color:rgb(68.034363%,84.016418%,84.016418%);stop-opacity:1;"/>
<stop offset="0.617188" style="stop-color:rgb(67.7948%,83.8974%,83.8974%);stop-opacity:1;"/>
<stop offset="0.621094" style="stop-color:rgb(67.553711%,83.776855%,83.776855%);stop-opacity:1;"/>
<stop offset="0.625" style="stop-color:rgb(67.314148%,83.656311%,83.656311%);stop-opacity:1;"/>
<stop offset="0.628906" style="stop-color:rgb(67.074585%,83.535767%,83.535767%);stop-opacity:1;"/>
<stop offset="0.632812" style="stop-color:rgb(66.835022%,83.416748%,83.416748%);stop-opacity:1;"/>
<stop offset="0.636719" style="stop-color:rgb(66.593933%,83.296204%,83.296204%);stop-opacity:1;"/>
<stop offset="0.640625" style="stop-color:rgb(66.35437%,83.177185%,83.177185%);stop-opacity:1;"/>
<stop offset="0.644531" style="stop-color:rgb(66.113281%,83.056641%,83.056641%);stop-opacity:1;"/>
<stop offset="0.648438" style="stop-color:rgb(65.873718%,82.936096%,82.936096%);stop-opacity:1;"/>
<stop offset="0.652344" style="stop-color:rgb(65.632629%,82.815552%,82.815552%);stop-opacity:1;"/>
<stop offset="0.65625" style="stop-color:rgb(65.393066%,82.696533%,82.696533%);stop-opacity:1;"/>
<stop offset="0.660156" style="stop-color:rgb(65.153503%,82.575989%,82.575989%);stop-opacity:1;"/>
<stop offset="0.664062" style="stop-color:rgb(64.91394%,82.45697%,82.45697%);stop-opacity:1;"/>
<stop offset="0.667969" style="stop-color:rgb(64.672852%,82.336426%,82.336426%);stop-opacity:1;"/>
<stop offset="0.671875" style="stop-color:rgb(64.433289%,82.215881%,82.215881%);stop-opacity:1;"/>
<stop offset="0.675781" style="stop-color:rgb(64.1922%,82.095337%,82.095337%);stop-opacity:1;"/>
<stop offset="0.679688" style="stop-color:rgb(63.952637%,81.976318%,81.976318%);stop-opacity:1;"/>
<stop offset="0.683594" style="stop-color:rgb(63.711548%,81.855774%,81.855774%);stop-opacity:1;"/>
<stop offset="0.6875" style="stop-color:rgb(63.471985%,81.735229%,81.735229%);stop-opacity:1;"/>
<stop offset="0.691406" style="stop-color:rgb(63.230896%,81.614685%,81.614685%);stop-opacity:1;"/>
<stop offset="0.695312" style="stop-color:rgb(62.991333%,81.495667%,81.495667%);stop-opacity:1;"/>
<stop offset="0.699219" style="stop-color:rgb(62.75177%,81.375122%,81.375122%);stop-opacity:1;"/>
<stop offset="0.703125" style="stop-color:rgb(62.512207%,81.256104%,81.256104%);stop-opacity:1;"/>
<stop offset="0.707031" style="stop-color:rgb(62.271118%,81.135559%,81.135559%);stop-opacity:1;"/>
<stop offset="0.710938" style="stop-color:rgb(62.031555%,81.015015%,81.015015%);stop-opacity:1;"/>
<stop offset="0.714844" style="stop-color:rgb(61.790466%,80.89447%,80.89447%);stop-opacity:1;"/>
<stop offset="0.71875" style="stop-color:rgb(61.550903%,80.775452%,80.775452%);stop-opacity:1;"/>
<stop offset="0.722656" style="stop-color:rgb(61.309814%,80.654907%,80.654907%);stop-opacity:1;"/>
<stop offset="0.726562" style="stop-color:rgb(61.070251%,80.534363%,80.534363%);stop-opacity:1;"/>
<stop offset="0.730469" style="stop-color:rgb(60.830688%,80.413818%,80.413818%);stop-opacity:1;"/>
<stop offset="0.734375" style="stop-color:rgb(60.591125%,80.2948%,80.2948%);stop-opacity:1;"/>
<stop offset="0.738281" style="stop-color:rgb(60.350037%,80.174255%,80.174255%);stop-opacity:1;"/>
<stop offset="0.742188" style="stop-color:rgb(60.110474%,80.055237%,80.055237%);stop-opacity:1;"/>
<stop offset="0.746094" style="stop-color:rgb(59.869385%,79.934692%,79.934692%);stop-opacity:1;"/>
<stop offset="0.75" style="stop-color:rgb(59.629822%,79.814148%,79.814148%);stop-opacity:1;"/>
<stop offset="0.753906" style="stop-color:rgb(59.388733%,79.693604%,79.693604%);stop-opacity:1;"/>
<stop offset="0.757812" style="stop-color:rgb(59.14917%,79.574585%,79.574585%);stop-opacity:1;"/>
<stop offset="0.761719" style="stop-color:rgb(58.908081%,79.454041%,79.454041%);stop-opacity:1;"/>
<stop offset="0.765625" style="stop-color:rgb(58.668518%,79.333496%,79.333496%);stop-opacity:1;"/>
<stop offset="0.769531" style="stop-color:rgb(58.428955%,79.212952%,79.212952%);stop-opacity:1;"/>
<stop offset="0.773437" style="stop-color:rgb(58.189392%,79.093933%,79.093933%);stop-opacity:1;"/>
<stop offset="0.777344" style="stop-color:rgb(57.948303%,78.973389%,78.973389%);stop-opacity:1;"/>
<stop offset="0.78125" style="stop-color:rgb(57.70874%,78.85437%,78.85437%);stop-opacity:1;"/>
<stop offset="0.785156" style="stop-color:rgb(57.467651%,78.733826%,78.733826%);stop-opacity:1;"/>
<stop offset="0.789062" style="stop-color:rgb(57.228088%,78.613281%,78.613281%);stop-opacity:1;"/>
<stop offset="0.792969" style="stop-color:rgb(56.987%,78.492737%,78.492737%);stop-opacity:1;"/>
<stop offset="0.796875" style="stop-color:rgb(56.747437%,78.373718%,78.373718%);stop-opacity:1;"/>
<stop offset="0.800781" style="stop-color:rgb(56.507874%,78.253174%,78.253174%);stop-opacity:1;"/>
<stop offset="0.804687" style="stop-color:rgb(56.268311%,78.134155%,78.134155%);stop-opacity:1;"/>
<stop offset="0.808594" style="stop-color:rgb(56.027222%,78.013611%,78.013611%);stop-opacity:1;"/>
<stop offset="0.8125" style="stop-color:rgb(55.787659%,77.893066%,77.893066%);stop-opacity:1;"/>
<stop offset="0.816406" style="stop-color:rgb(55.54657%,77.772522%,77.772522%);stop-opacity:1;"/>
<stop offset="0.820312" style="stop-color:rgb(55.307007%,77.653503%,77.653503%);stop-opacity:1;"/>
<stop offset="0.824219" style="stop-color:rgb(55.065918%,77.532959%,77.532959%);stop-opacity:1;"/>
<stop offset="0.828125" style="stop-color:rgb(54.826355%,77.412415%,77.412415%);stop-opacity:1;"/>
<stop offset="0.832031" style="stop-color:rgb(54.585266%,77.29187%,77.29187%);stop-opacity:1;"/>
<stop offset="0.835937" style="stop-color:rgb(54.345703%,77.172852%,77.172852%);stop-opacity:1;"/>
<stop offset="0.839844" style="stop-color:rgb(54.10614%,77.052307%,77.052307%);stop-opacity:1;"/>
<stop offset="0.84375" style="stop-color:rgb(53.866577%,76.933289%,76.933289%);stop-opacity:1;"/>
<stop offset="0.847656" style="stop-color:rgb(53.625488%,76.812744%,76.812744%);stop-opacity:1;"/>
<stop offset="0.851562" style="stop-color:rgb(53.385925%,76.6922%,76.6922%);stop-opacity:1;"/>
<stop offset="0.855469" style="stop-color:rgb(53.144836%,76.571655%,76.571655%);stop-opacity:1;"/>
<stop offset="0.859375" style="stop-color:rgb(52.905273%,76.452637%,76.452637%);stop-opacity:1;"/>
<stop offset="0.863281" style="stop-color:rgb(52.664185%,76.332092%,76.332092%);stop-opacity:1;"/>
<stop offset="0.867187" style="stop-color:rgb(52.424622%,76.211548%,76.211548%);stop-opacity:1;"/>
<stop offset="0.871094" style="stop-color:rgb(52.185059%,76.091003%,76.091003%);stop-opacity:1;"/>
<stop offset="0.875" style="stop-color:rgb(51.945496%,75.971985%,75.971985%);stop-opacity:1;"/>
<stop offset="0.878906" style="stop-color:rgb(51.704407%,75.85144%,75.85144%);stop-opacity:1;"/>
<stop offset="0.882812" style="stop-color:rgb(51.464844%,75.732422%,75.732422%);stop-opacity:1;"/>
<stop offset="0.886719" style="stop-color:rgb(51.223755%,75.611877%,75.611877%);stop-opacity:1;"/>
<stop offset="0.890625" style="stop-color:rgb(50.984192%,75.491333%,75.491333%);stop-opacity:1;"/>
<stop offset="0.894531" style="stop-color:rgb(50.743103%,75.370789%,75.370789%);stop-opacity:1;"/>
<stop offset="0.898437" style="stop-color:rgb(50.50354%,75.25177%,75.25177%);stop-opacity:1;"/>
<stop offset="0.902344" style="stop-color:rgb(50.262451%,75.131226%,75.131226%);stop-opacity:1;"/>
<stop offset="0.90625" style="stop-color:rgb(50.022888%,75.010681%,75.010681%);stop-opacity:1;"/>
<stop offset="0.9375" style="stop-color:rgb(50.010681%,75.004578%,75.004578%);stop-opacity:1;"/>
<stop offset="1" style="stop-color:rgb(50%,75%,75%);stop-opacity:1;"/>
</linearGradient>
<clipPath id="clip5">
<path d="M 37 71 L 130 71 L 130 88 L 37 88 Z M 37 71 "/>
</clipPath>
<clipPath id="clip6">
<path d="M 125.484375 71.171875 L 41.652344 71.171875 C 39.453125 71.171875 37.667969 72.957031 37.667969 75.15625 L 37.667969 83.789062 C 37.667969 85.992188 39.453125 87.777344 41.652344 87.777344 L 125.484375 87.777344 C 127.6875 87.777344 129.46875 85.992188 129.46875 83.789062 L 129.46875 75.15625 C 129.46875 72.957031 127.6875 71.171875 125.484375 71.171875 Z M 125.484375 71.171875 "/>
</clipPath>
<clipPath id="clip7">
<path d="M 18.910156 130.308594 L 164.980469 91.167969 L 148.226562 28.640625 L 2.15625 67.78125 Z M 18.910156 130.308594 "/>
</clipPath>
<linearGradient id="linear1" gradientUnits="userSpaceOnUse" x1="0" y1="19.259206" x2="0" y2="80.740794" gradientTransform="matrix(1.460699,-0.391393,-0.167539,-0.625266,18.911035,130.306929)">
<stop offset="0" style="stop-color:rgb(100%,100%,100%);stop-opacity:1;"/>
<stop offset="0.0625" style="stop-color:rgb(100%,100%,100%);stop-opacity:1;"/>
<stop offset="0.09375" style="stop-color:rgb(99.987793%,99.993896%,99.993896%);stop-opacity:1;"/>
<stop offset="0.0976563" style="stop-color:rgb(99.736023%,99.867249%,99.867249%);stop-opacity:1;"/>
<stop offset="0.101562" style="stop-color:rgb(99.49646%,99.74823%,99.74823%);stop-opacity:1;"/>
<stop offset="0.105469" style="stop-color:rgb(99.255371%,99.627686%,99.627686%);stop-opacity:1;"/>
<stop offset="0.109375" style="stop-color:rgb(99.015808%,99.507141%,99.507141%);stop-opacity:1;"/>
<stop offset="0.113281" style="stop-color:rgb(98.774719%,99.386597%,99.386597%);stop-opacity:1;"/>
<stop offset="0.117188" style="stop-color:rgb(98.535156%,99.267578%,99.267578%);stop-opacity:1;"/>
<stop offset="0.121094" style="stop-color:rgb(98.294067%,99.147034%,99.147034%);stop-opacity:1;"/>
<stop offset="0.125" style="stop-color:rgb(98.054504%,99.026489%,99.026489%);stop-opacity:1;"/>
<stop offset="0.128906" style="stop-color:rgb(97.814941%,98.905945%,98.905945%);stop-opacity:1;"/>
<stop offset="0.132813" style="stop-color:rgb(97.575378%,98.786926%,98.786926%);stop-opacity:1;"/>
<stop offset="0.136719" style="stop-color:rgb(97.33429%,98.666382%,98.666382%);stop-opacity:1;"/>
<stop offset="0.140625" style="stop-color:rgb(97.094727%,98.547363%,98.547363%);stop-opacity:1;"/>
<stop offset="0.144531" style="stop-color:rgb(96.853638%,98.426819%,98.426819%);stop-opacity:1;"/>
<stop offset="0.148438" style="stop-color:rgb(96.614075%,98.306274%,98.306274%);stop-opacity:1;"/>
<stop offset="0.152344" style="stop-color:rgb(96.372986%,98.18573%,98.18573%);stop-opacity:1;"/>
<stop offset="0.15625" style="stop-color:rgb(96.133423%,98.066711%,98.066711%);stop-opacity:1;"/>
<stop offset="0.160156" style="stop-color:rgb(95.89386%,97.946167%,97.946167%);stop-opacity:1;"/>
<stop offset="0.164062" style="stop-color:rgb(95.654297%,97.827148%,97.827148%);stop-opacity:1;"/>
<stop offset="0.167969" style="stop-color:rgb(95.413208%,97.706604%,97.706604%);stop-opacity:1;"/>
<stop offset="0.171875" style="stop-color:rgb(95.173645%,97.58606%,97.58606%);stop-opacity:1;"/>
<stop offset="0.175781" style="stop-color:rgb(94.932556%,97.465515%,97.465515%);stop-opacity:1;"/>
<stop offset="0.179688" style="stop-color:rgb(94.692993%,97.346497%,97.346497%);stop-opacity:1;"/>
<stop offset="0.183594" style="stop-color:rgb(94.451904%,97.225952%,97.225952%);stop-opacity:1;"/>
<stop offset="0.1875" style="stop-color:rgb(94.212341%,97.105408%,97.105408%);stop-opacity:1;"/>
<stop offset="0.191406" style="stop-color:rgb(93.971252%,96.984863%,96.984863%);stop-opacity:1;"/>
<stop offset="0.195313" style="stop-color:rgb(93.731689%,96.865845%,96.865845%);stop-opacity:1;"/>
<stop offset="0.199219" style="stop-color:rgb(93.492126%,96.7453%,96.7453%);stop-opacity:1;"/>
<stop offset="0.203125" style="stop-color:rgb(93.252563%,96.626282%,96.626282%);stop-opacity:1;"/>
<stop offset="0.207031" style="stop-color:rgb(93.011475%,96.505737%,96.505737%);stop-opacity:1;"/>
<stop offset="0.210937" style="stop-color:rgb(92.771912%,96.385193%,96.385193%);stop-opacity:1;"/>
<stop offset="0.214844" style="stop-color:rgb(92.530823%,96.264648%,96.264648%);stop-opacity:1;"/>
<stop offset="0.21875" style="stop-color:rgb(92.29126%,96.14563%,96.14563%);stop-opacity:1;"/>
<stop offset="0.222656" style="stop-color:rgb(92.050171%,96.025085%,96.025085%);stop-opacity:1;"/>
<stop offset="0.226562" style="stop-color:rgb(91.810608%,95.904541%,95.904541%);stop-opacity:1;"/>
<stop offset="0.230469" style="stop-color:rgb(91.569519%,95.783997%,95.783997%);stop-opacity:1;"/>
<stop offset="0.234375" style="stop-color:rgb(91.329956%,95.664978%,95.664978%);stop-opacity:1;"/>
<stop offset="0.238281" style="stop-color:rgb(91.090393%,95.544434%,95.544434%);stop-opacity:1;"/>
<stop offset="0.242188" style="stop-color:rgb(90.85083%,95.425415%,95.425415%);stop-opacity:1;"/>
<stop offset="0.246094" style="stop-color:rgb(90.609741%,95.304871%,95.304871%);stop-opacity:1;"/>
<stop offset="0.25" style="stop-color:rgb(90.370178%,95.184326%,95.184326%);stop-opacity:1;"/>
<stop offset="0.253906" style="stop-color:rgb(90.129089%,95.063782%,95.063782%);stop-opacity:1;"/>
<stop offset="0.257812" style="stop-color:rgb(89.889526%,94.944763%,94.944763%);stop-opacity:1;"/>
<stop offset="0.261719" style="stop-color:rgb(89.648438%,94.824219%,94.824219%);stop-opacity:1;"/>
<stop offset="0.265625" style="stop-color:rgb(89.408875%,94.703674%,94.703674%);stop-opacity:1;"/>
<stop offset="0.269531" style="stop-color:rgb(89.169312%,94.58313%,94.58313%);stop-opacity:1;"/>
<stop offset="0.273438" style="stop-color:rgb(88.929749%,94.464111%,94.464111%);stop-opacity:1;"/>
<stop offset="0.277344" style="stop-color:rgb(88.68866%,94.343567%,94.343567%);stop-opacity:1;"/>
<stop offset="0.28125" style="stop-color:rgb(88.449097%,94.224548%,94.224548%);stop-opacity:1;"/>
<stop offset="0.285156" style="stop-color:rgb(88.208008%,94.104004%,94.104004%);stop-opacity:1;"/>
<stop offset="0.289063" style="stop-color:rgb(87.968445%,93.983459%,93.983459%);stop-opacity:1;"/>
<stop offset="0.292969" style="stop-color:rgb(87.727356%,93.862915%,93.862915%);stop-opacity:1;"/>
<stop offset="0.296875" style="stop-color:rgb(87.487793%,93.743896%,93.743896%);stop-opacity:1;"/>
<stop offset="0.300781" style="stop-color:rgb(87.246704%,93.623352%,93.623352%);stop-opacity:1;"/>
<stop offset="0.304687" style="stop-color:rgb(87.007141%,93.502808%,93.502808%);stop-opacity:1;"/>
<stop offset="0.308594" style="stop-color:rgb(86.767578%,93.382263%,93.382263%);stop-opacity:1;"/>
<stop offset="0.3125" style="stop-color:rgb(86.528015%,93.263245%,93.263245%);stop-opacity:1;"/>
<stop offset="0.316406" style="stop-color:rgb(86.286926%,93.1427%,93.1427%);stop-opacity:1;"/>
<stop offset="0.320312" style="stop-color:rgb(86.047363%,93.023682%,93.023682%);stop-opacity:1;"/>
<stop offset="0.324219" style="stop-color:rgb(85.806274%,92.903137%,92.903137%);stop-opacity:1;"/>
<stop offset="0.328125" style="stop-color:rgb(85.566711%,92.782593%,92.782593%);stop-opacity:1;"/>
<stop offset="0.332031" style="stop-color:rgb(85.325623%,92.662048%,92.662048%);stop-opacity:1;"/>
<stop offset="0.335938" style="stop-color:rgb(85.08606%,92.54303%,92.54303%);stop-opacity:1;"/>
<stop offset="0.339844" style="stop-color:rgb(84.846497%,92.422485%,92.422485%);stop-opacity:1;"/>
<stop offset="0.34375" style="stop-color:rgb(84.606934%,92.303467%,92.303467%);stop-opacity:1;"/>
<stop offset="0.347656" style="stop-color:rgb(84.365845%,92.182922%,92.182922%);stop-opacity:1;"/>
<stop offset="0.351562" style="stop-color:rgb(84.126282%,92.062378%,92.062378%);stop-opacity:1;"/>
<stop offset="0.355469" style="stop-color:rgb(83.885193%,91.941833%,91.941833%);stop-opacity:1;"/>
<stop offset="0.359375" style="stop-color:rgb(83.64563%,91.822815%,91.822815%);stop-opacity:1;"/>
<stop offset="0.363281" style="stop-color:rgb(83.404541%,91.702271%,91.702271%);stop-opacity:1;"/>
<stop offset="0.367187" style="stop-color:rgb(83.164978%,91.581726%,91.581726%);stop-opacity:1;"/>
<stop offset="0.371094" style="stop-color:rgb(82.923889%,91.461182%,91.461182%);stop-opacity:1;"/>
<stop offset="0.375" style="stop-color:rgb(82.684326%,91.342163%,91.342163%);stop-opacity:1;"/>
<stop offset="0.378906" style="stop-color:rgb(82.444763%,91.221619%,91.221619%);stop-opacity:1;"/>
<stop offset="0.382812" style="stop-color:rgb(82.2052%,91.1026%,91.1026%);stop-opacity:1;"/>
<stop offset="0.386719" style="stop-color:rgb(81.964111%,90.982056%,90.982056%);stop-opacity:1;"/>
<stop offset="0.390625" style="stop-color:rgb(81.724548%,90.861511%,90.861511%);stop-opacity:1;"/>
<stop offset="0.394531" style="stop-color:rgb(81.483459%,90.740967%,90.740967%);stop-opacity:1;"/>
<stop offset="0.398438" style="stop-color:rgb(81.243896%,90.621948%,90.621948%);stop-opacity:1;"/>
<stop offset="0.402344" style="stop-color:rgb(81.002808%,90.501404%,90.501404%);stop-opacity:1;"/>
<stop offset="0.40625" style="stop-color:rgb(80.763245%,90.380859%,90.380859%);stop-opacity:1;"/>
<stop offset="0.410156" style="stop-color:rgb(80.523682%,90.260315%,90.260315%);stop-opacity:1;"/>
<stop offset="0.414062" style="stop-color:rgb(80.284119%,90.141296%,90.141296%);stop-opacity:1;"/>
<stop offset="0.417969" style="stop-color:rgb(80.04303%,90.020752%,90.020752%);stop-opacity:1;"/>
<stop offset="0.421875" style="stop-color:rgb(79.803467%,89.901733%,89.901733%);stop-opacity:1;"/>
<stop offset="0.425781" style="stop-color:rgb(79.562378%,89.781189%,89.781189%);stop-opacity:1;"/>
<stop offset="0.429688" style="stop-color:rgb(79.322815%,89.660645%,89.660645%);stop-opacity:1;"/>
<stop offset="0.433594" style="stop-color:rgb(79.081726%,89.5401%,89.5401%);stop-opacity:1;"/>
<stop offset="0.4375" style="stop-color:rgb(78.842163%,89.421082%,89.421082%);stop-opacity:1;"/>
<stop offset="0.441406" style="stop-color:rgb(78.601074%,89.300537%,89.300537%);stop-opacity:1;"/>
<stop offset="0.445313" style="stop-color:rgb(78.361511%,89.179993%,89.179993%);stop-opacity:1;"/>
<stop offset="0.449219" style="stop-color:rgb(78.121948%,89.059448%,89.059448%);stop-opacity:1;"/>
<stop offset="0.453125" style="stop-color:rgb(77.882385%,88.94043%,88.94043%);stop-opacity:1;"/>
<stop offset="0.457031" style="stop-color:rgb(77.641296%,88.819885%,88.819885%);stop-opacity:1;"/>
<stop offset="0.460937" style="stop-color:rgb(77.401733%,88.700867%,88.700867%);stop-opacity:1;"/>
<stop offset="0.464844" style="stop-color:rgb(77.160645%,88.580322%,88.580322%);stop-opacity:1;"/>
<stop offset="0.46875" style="stop-color:rgb(76.921082%,88.459778%,88.459778%);stop-opacity:1;"/>
<stop offset="0.472656" style="stop-color:rgb(76.679993%,88.339233%,88.339233%);stop-opacity:1;"/>
<stop offset="0.476562" style="stop-color:rgb(76.44043%,88.220215%,88.220215%);stop-opacity:1;"/>
<stop offset="0.480469" style="stop-color:rgb(76.199341%,88.09967%,88.09967%);stop-opacity:1;"/>
<stop offset="0.484375" style="stop-color:rgb(75.959778%,87.979126%,87.979126%);stop-opacity:1;"/>
<stop offset="0.488281" style="stop-color:rgb(75.720215%,87.858582%,87.858582%);stop-opacity:1;"/>
<stop offset="0.492188" style="stop-color:rgb(75.480652%,87.739563%,87.739563%);stop-opacity:1;"/>
<stop offset="0.496094" style="stop-color:rgb(75.239563%,87.619019%,87.619019%);stop-opacity:1;"/>
<stop offset="0.5" style="stop-color:rgb(75%,87.5%,87.5%);stop-opacity:1;"/>
<stop offset="0.503906" style="stop-color:rgb(74.758911%,87.379456%,87.379456%);stop-opacity:1;"/>
<stop offset="0.507812" style="stop-color:rgb(74.519348%,87.258911%,87.258911%);stop-opacity:1;"/>
<stop offset="0.511719" style="stop-color:rgb(74.278259%,87.138367%,87.138367%);stop-opacity:1;"/>
<stop offset="0.515625" style="stop-color:rgb(74.038696%,87.019348%,87.019348%);stop-opacity:1;"/>
<stop offset="0.519531" style="stop-color:rgb(73.799133%,86.898804%,86.898804%);stop-opacity:1;"/>
<stop offset="0.523438" style="stop-color:rgb(73.55957%,86.779785%,86.779785%);stop-opacity:1;"/>
<stop offset="0.527344" style="stop-color:rgb(73.318481%,86.659241%,86.659241%);stop-opacity:1;"/>
<stop offset="0.53125" style="stop-color:rgb(73.078918%,86.538696%,86.538696%);stop-opacity:1;"/>
<stop offset="0.535156" style="stop-color:rgb(72.83783%,86.418152%,86.418152%);stop-opacity:1;"/>
<stop offset="0.539062" style="stop-color:rgb(72.598267%,86.299133%,86.299133%);stop-opacity:1;"/>
<stop offset="0.542969" style="stop-color:rgb(72.357178%,86.178589%,86.178589%);stop-opacity:1;"/>
<stop offset="0.546875" style="stop-color:rgb(72.117615%,86.058044%,86.058044%);stop-opacity:1;"/>
<stop offset="0.550781" style="stop-color:rgb(71.876526%,85.9375%,85.9375%);stop-opacity:1;"/>
<stop offset="0.554687" style="stop-color:rgb(71.636963%,85.818481%,85.818481%);stop-opacity:1;"/>
<stop offset="0.558594" style="stop-color:rgb(71.3974%,85.697937%,85.697937%);stop-opacity:1;"/>
<stop offset="0.5625" style="stop-color:rgb(71.157837%,85.578918%,85.578918%);stop-opacity:1;"/>
<stop offset="0.566406" style="stop-color:rgb(70.916748%,85.458374%,85.458374%);stop-opacity:1;"/>
<stop offset="0.570312" style="stop-color:rgb(70.677185%,85.33783%,85.33783%);stop-opacity:1;"/>
<stop offset="0.574219" style="stop-color:rgb(70.436096%,85.217285%,85.217285%);stop-opacity:1;"/>
<stop offset="0.578125" style="stop-color:rgb(70.196533%,85.098267%,85.098267%);stop-opacity:1;"/>
<stop offset="0.582031" style="stop-color:rgb(69.955444%,84.977722%,84.977722%);stop-opacity:1;"/>
<stop offset="0.585938" style="stop-color:rgb(69.715881%,84.857178%,84.857178%);stop-opacity:1;"/>
<stop offset="0.589844" style="stop-color:rgb(69.476318%,84.736633%,84.736633%);stop-opacity:1;"/>
<stop offset="0.59375" style="stop-color:rgb(69.236755%,84.617615%,84.617615%);stop-opacity:1;"/>
<stop offset="0.597656" style="stop-color:rgb(68.995667%,84.49707%,84.49707%);stop-opacity:1;"/>
<stop offset="0.601563" style="stop-color:rgb(68.756104%,84.378052%,84.378052%);stop-opacity:1;"/>
<stop offset="0.605469" style="stop-color:rgb(68.515015%,84.257507%,84.257507%);stop-opacity:1;"/>
<stop offset="0.609375" style="stop-color:rgb(68.275452%,84.136963%,84.136963%);stop-opacity:1;"/>
<stop offset="0.613281" style="stop-color:rgb(68.034363%,84.016418%,84.016418%);stop-opacity:1;"/>
<stop offset="0.617188" style="stop-color:rgb(67.7948%,83.8974%,83.8974%);stop-opacity:1;"/>
<stop offset="0.621094" style="stop-color:rgb(67.553711%,83.776855%,83.776855%);stop-opacity:1;"/>
<stop offset="0.625" style="stop-color:rgb(67.314148%,83.656311%,83.656311%);stop-opacity:1;"/>
<stop offset="0.628906" style="stop-color:rgb(67.074585%,83.535767%,83.535767%);stop-opacity:1;"/>
<stop offset="0.632812" style="stop-color:rgb(66.835022%,83.416748%,83.416748%);stop-opacity:1;"/>
<stop offset="0.636719" style="stop-color:rgb(66.593933%,83.296204%,83.296204%);stop-opacity:1;"/>
<stop offset="0.640625" style="stop-color:rgb(66.35437%,83.177185%,83.177185%);stop-opacity:1;"/>
<stop offset="0.644531" style="stop-color:rgb(66.113281%,83.056641%,83.056641%);stop-opacity:1;"/>
<stop offset="0.648437" style="stop-color:rgb(65.873718%,82.936096%,82.936096%);stop-opacity:1;"/>
<stop offset="0.652344" style="stop-color:rgb(65.632629%,82.815552%,82.815552%);stop-opacity:1;"/>
<stop offset="0.65625" style="stop-color:rgb(65.393066%,82.696533%,82.696533%);stop-opacity:1;"/>
<stop offset="0.660156" style="stop-color:rgb(65.153503%,82.575989%,82.575989%);stop-opacity:1;"/>
<stop offset="0.664062" style="stop-color:rgb(64.91394%,82.45697%,82.45697%);stop-opacity:1;"/>
<stop offset="0.667969" style="stop-color:rgb(64.672852%,82.336426%,82.336426%);stop-opacity:1;"/>
<stop offset="0.671875" style="stop-color:rgb(64.433289%,82.215881%,82.215881%);stop-opacity:1;"/>
<stop offset="0.675781" style="stop-color:rgb(64.1922%,82.095337%,82.095337%);stop-opacity:1;"/>
<stop offset="0.679688" style="stop-color:rgb(63.952637%,81.976318%,81.976318%);stop-opacity:1;"/>
<stop offset="0.683594" style="stop-color:rgb(63.711548%,81.855774%,81.855774%);stop-opacity:1;"/>
<stop offset="0.6875" style="stop-color:rgb(63.471985%,81.735229%,81.735229%);stop-opacity:1;"/>
<stop offset="0.691406" style="stop-color:rgb(63.230896%,81.614685%,81.614685%);stop-opacity:1;"/>
<stop offset="0.695312" style="stop-color:rgb(62.991333%,81.495667%,81.495667%);stop-opacity:1;"/>
<stop offset="0.699219" style="stop-color:rgb(62.75177%,81.375122%,81.375122%);stop-opacity:1;"/>
<stop offset="0.703125" style="stop-color:rgb(62.512207%,81.256104%,81.256104%);stop-opacity:1;"/>
<stop offset="0.707031" style="stop-color:rgb(62.271118%,81.135559%,81.135559%);stop-opacity:1;"/>
<stop offset="0.710938" style="stop-color:rgb(62.031555%,81.015015%,81.015015%);stop-opacity:1;"/>
<stop offset="0.714844" style="stop-color:rgb(61.790466%,80.89447%,80.89447%);stop-opacity:1;"/>
<stop offset="0.71875" style="stop-color:rgb(61.550903%,80.775452%,80.775452%);stop-opacity:1;"/>
<stop offset="0.722656" style="stop-color:rgb(61.309814%,80.654907%,80.654907%);stop-opacity:1;"/>
<stop offset="0.726563" style="stop-color:rgb(61.070251%,80.534363%,80.534363%);stop-opacity:1;"/>
<stop offset="0.730469" style="stop-color:rgb(60.829163%,80.413818%,80.413818%);stop-opacity:1;"/>
<stop offset="0.734375" style="stop-color:rgb(60.5896%,80.2948%,80.2948%);stop-opacity:1;"/>
<stop offset="0.738281" style="stop-color:rgb(60.350037%,80.174255%,80.174255%);stop-opacity:1;"/>
<stop offset="0.742188" style="stop-color:rgb(60.110474%,80.055237%,80.055237%);stop-opacity:1;"/>
<stop offset="0.746094" style="stop-color:rgb(59.869385%,79.934692%,79.934692%);stop-opacity:1;"/>
<stop offset="0.75" style="stop-color:rgb(59.629822%,79.814148%,79.814148%);stop-opacity:1;"/>
<stop offset="0.753906" style="stop-color:rgb(59.388733%,79.693604%,79.693604%);stop-opacity:1;"/>
<stop offset="0.757813" style="stop-color:rgb(59.14917%,79.574585%,79.574585%);stop-opacity:1;"/>
<stop offset="0.761719" style="stop-color:rgb(58.908081%,79.454041%,79.454041%);stop-opacity:1;"/>
<stop offset="0.765625" style="stop-color:rgb(58.668518%,79.333496%,79.333496%);stop-opacity:1;"/>
<stop offset="0.769531" style="stop-color:rgb(58.428955%,79.212952%,79.212952%);stop-opacity:1;"/>
<stop offset="0.773438" style="stop-color:rgb(58.189392%,79.093933%,79.093933%);stop-opacity:1;"/>
<stop offset="0.777344" style="stop-color:rgb(57.948303%,78.973389%,78.973389%);stop-opacity:1;"/>
<stop offset="0.78125" style="stop-color:rgb(57.70874%,78.85437%,78.85437%);stop-opacity:1;"/>
<stop offset="0.785156" style="stop-color:rgb(57.467651%,78.733826%,78.733826%);stop-opacity:1;"/>
<stop offset="0.789062" style="stop-color:rgb(57.228088%,78.613281%,78.613281%);stop-opacity:1;"/>
<stop offset="0.792969" style="stop-color:rgb(56.987%,78.492737%,78.492737%);stop-opacity:1;"/>
<stop offset="0.796875" style="stop-color:rgb(56.747437%,78.373718%,78.373718%);stop-opacity:1;"/>
<stop offset="0.800781" style="stop-color:rgb(56.506348%,78.253174%,78.253174%);stop-opacity:1;"/>
<stop offset="0.804688" style="stop-color:rgb(56.266785%,78.132629%,78.132629%);stop-opacity:1;"/>
<stop offset="0.808594" style="stop-color:rgb(56.027222%,78.012085%,78.012085%);stop-opacity:1;"/>
<stop offset="0.8125" style="stop-color:rgb(55.787659%,77.893066%,77.893066%);stop-opacity:1;"/>
<stop offset="0.816406" style="stop-color:rgb(55.54657%,77.772522%,77.772522%);stop-opacity:1;"/>
<stop offset="0.820313" style="stop-color:rgb(55.307007%,77.653503%,77.653503%);stop-opacity:1;"/>
<stop offset="0.824219" style="stop-color:rgb(55.065918%,77.532959%,77.532959%);stop-opacity:1;"/>
<stop offset="0.828125" style="stop-color:rgb(54.826355%,77.412415%,77.412415%);stop-opacity:1;"/>
<stop offset="0.832031" style="stop-color:rgb(54.585266%,77.29187%,77.29187%);stop-opacity:1;"/>
<stop offset="0.835938" style="stop-color:rgb(54.345703%,77.172852%,77.172852%);stop-opacity:1;"/>
<stop offset="0.839844" style="stop-color:rgb(54.10614%,77.052307%,77.052307%);stop-opacity:1;"/>
<stop offset="0.84375" style="stop-color:rgb(53.866577%,76.933289%,76.933289%);stop-opacity:1;"/>
<stop offset="0.847656" style="stop-color:rgb(53.625488%,76.812744%,76.812744%);stop-opacity:1;"/>
<stop offset="0.851562" style="stop-color:rgb(53.385925%,76.6922%,76.6922%);stop-opacity:1;"/>
<stop offset="0.855469" style="stop-color:rgb(53.144836%,76.571655%,76.571655%);stop-opacity:1;"/>
<stop offset="0.859375" style="stop-color:rgb(52.905273%,76.452637%,76.452637%);stop-opacity:1;"/>
<stop offset="0.863281" style="stop-color:rgb(52.664185%,76.332092%,76.332092%);stop-opacity:1;"/>
<stop offset="0.867187" style="stop-color:rgb(52.424622%,76.211548%,76.211548%);stop-opacity:1;"/>
<stop offset="0.871094" style="stop-color:rgb(52.183533%,76.091003%,76.091003%);stop-opacity:1;"/>
<stop offset="0.875" style="stop-color:rgb(51.94397%,75.971985%,75.971985%);stop-opacity:1;"/>
<stop offset="0.878906" style="stop-color:rgb(51.704407%,75.85144%,75.85144%);stop-opacity:1;"/>
<stop offset="0.882812" style="stop-color:rgb(51.464844%,75.732422%,75.732422%);stop-opacity:1;"/>
<stop offset="0.886719" style="stop-color:rgb(51.223755%,75.611877%,75.611877%);stop-opacity:1;"/>
<stop offset="0.890625" style="stop-color:rgb(50.984192%,75.491333%,75.491333%);stop-opacity:1;"/>
<stop offset="0.894531" style="stop-color:rgb(50.743103%,75.370789%,75.370789%);stop-opacity:1;"/>
<stop offset="0.898438" style="stop-color:rgb(50.50354%,75.25177%,75.25177%);stop-opacity:1;"/>
<stop offset="0.902344" style="stop-color:rgb(50.262451%,75.131226%,75.131226%);stop-opacity:1;"/>
<stop offset="0.90625" style="stop-color:rgb(50.022888%,75.010681%,75.010681%);stop-opacity:1;"/>
<stop offset="0.9375" style="stop-color:rgb(50.010681%,75.004578%,75.004578%);stop-opacity:1;"/>
<stop offset="1" style="stop-color:rgb(50%,75%,75%);stop-opacity:1;"/>
</linearGradient>
<clipPath id="clip8">
<path d="M 53 111 L 114 111 L 114 129 L 53 129 Z M 53 111 "/>
</clipPath>
<clipPath id="clip9">
<path d="M 109.320312 111.648438 L 57.816406 111.648438 C 55.617188 111.648438 53.832031 113.433594 53.832031 115.632812 L 53.832031 124.265625 C 53.832031 126.46875 55.617188 128.25 57.816406 128.25 L 109.320312 128.25 C 111.523438 128.25 113.304688 126.46875 113.304688 124.265625 L 113.304688 115.632812 C 113.304688 113.433594 111.523438 111.648438 109.320312 111.648438 Z M 109.320312 111.648438 "/>
</clipPath>
<clipPath id="clip10">
<path d="M 41.679688 157.636719 L 138.6875 131.644531 L 125.457031 82.261719 L 28.449219 108.257812 Z M 41.679688 157.636719 "/>
</clipPath>
<linearGradient id="linear2" gradientUnits="userSpaceOnUse" x1="0" y1="19.259531" x2="0" y2="80.740469" gradientTransform="matrix(0.970074,-0.25993,-0.132317,-0.493812,41.681135,157.637137)">
<stop offset="0" style="stop-color:rgb(100%,100%,100%);stop-opacity:1;"/>
<stop offset="0.0625" style="stop-color:rgb(100%,100%,100%);stop-opacity:1;"/>
<stop offset="0.09375" style="stop-color:rgb(99.987793%,99.993896%,99.993896%);stop-opacity:1;"/>
<stop offset="0.0976562" style="stop-color:rgb(99.736023%,99.867249%,99.867249%);stop-opacity:1;"/>
<stop offset="0.101562" style="stop-color:rgb(99.49646%,99.74823%,99.74823%);stop-opacity:1;"/>
<stop offset="0.105469" style="stop-color:rgb(99.255371%,99.627686%,99.627686%);stop-opacity:1;"/>
<stop offset="0.109375" style="stop-color:rgb(99.015808%,99.507141%,99.507141%);stop-opacity:1;"/>
<stop offset="0.113281" style="stop-color:rgb(98.774719%,99.386597%,99.386597%);stop-opacity:1;"/>
<stop offset="0.117187" style="stop-color:rgb(98.535156%,99.267578%,99.267578%);stop-opacity:1;"/>
<stop offset="0.121094" style="stop-color:rgb(98.294067%,99.147034%,99.147034%);stop-opacity:1;"/>
<stop offset="0.125" style="stop-color:rgb(98.054504%,99.026489%,99.026489%);stop-opacity:1;"/>
<stop offset="0.128906" style="stop-color:rgb(97.814941%,98.905945%,98.905945%);stop-opacity:1;"/>
<stop offset="0.132813" style="stop-color:rgb(97.575378%,98.786926%,98.786926%);stop-opacity:1;"/>
<stop offset="0.136719" style="stop-color:rgb(97.33429%,98.666382%,98.666382%);stop-opacity:1;"/>
<stop offset="0.140625" style="stop-color:rgb(97.094727%,98.547363%,98.547363%);stop-opacity:1;"/>
<stop offset="0.144531" style="stop-color:rgb(96.853638%,98.426819%,98.426819%);stop-opacity:1;"/>
<stop offset="0.148438" style="stop-color:rgb(96.614075%,98.306274%,98.306274%);stop-opacity:1;"/>
<stop offset="0.152344" style="stop-color:rgb(96.372986%,98.18573%,98.18573%);stop-opacity:1;"/>
<stop offset="0.15625" style="stop-color:rgb(96.133423%,98.066711%,98.066711%);stop-opacity:1;"/>
<stop offset="0.160156" style="stop-color:rgb(95.892334%,97.946167%,97.946167%);stop-opacity:1;"/>
<stop offset="0.164063" style="stop-color:rgb(95.652771%,97.825623%,97.825623%);stop-opacity:1;"/>
<stop offset="0.167969" style="stop-color:rgb(95.413208%,97.705078%,97.705078%);stop-opacity:1;"/>
<stop offset="0.171875" style="stop-color:rgb(95.173645%,97.58606%,97.58606%);stop-opacity:1;"/>
<stop offset="0.175781" style="stop-color:rgb(94.932556%,97.465515%,97.465515%);stop-opacity:1;"/>
<stop offset="0.179688" style="stop-color:rgb(94.692993%,97.346497%,97.346497%);stop-opacity:1;"/>
<stop offset="0.183594" style="stop-color:rgb(94.451904%,97.225952%,97.225952%);stop-opacity:1;"/>
<stop offset="0.1875" style="stop-color:rgb(94.212341%,97.105408%,97.105408%);stop-opacity:1;"/>
<stop offset="0.191406" style="stop-color:rgb(93.971252%,96.984863%,96.984863%);stop-opacity:1;"/>
<stop offset="0.195313" style="stop-color:rgb(93.731689%,96.865845%,96.865845%);stop-opacity:1;"/>
<stop offset="0.199219" style="stop-color:rgb(93.490601%,96.7453%,96.7453%);stop-opacity:1;"/>
<stop offset="0.203125" style="stop-color:rgb(93.251038%,96.624756%,96.624756%);stop-opacity:1;"/>
<stop offset="0.207031" style="stop-color:rgb(93.011475%,96.504211%,96.504211%);stop-opacity:1;"/>
<stop offset="0.210938" style="stop-color:rgb(92.771912%,96.385193%,96.385193%);stop-opacity:1;"/>
<stop offset="0.214844" style="stop-color:rgb(92.530823%,96.264648%,96.264648%);stop-opacity:1;"/>
<stop offset="0.21875" style="stop-color:rgb(92.29126%,96.14563%,96.14563%);stop-opacity:1;"/>
<stop offset="0.222656" style="stop-color:rgb(92.050171%,96.025085%,96.025085%);stop-opacity:1;"/>
<stop offset="0.226563" style="stop-color:rgb(91.810608%,95.904541%,95.904541%);stop-opacity:1;"/>
<stop offset="0.230469" style="stop-color:rgb(91.569519%,95.783997%,95.783997%);stop-opacity:1;"/>
<stop offset="0.234375" style="stop-color:rgb(91.329956%,95.664978%,95.664978%);stop-opacity:1;"/>
<stop offset="0.238281" style="stop-color:rgb(91.090393%,95.544434%,95.544434%);stop-opacity:1;"/>
<stop offset="0.242188" style="stop-color:rgb(90.85083%,95.425415%,95.425415%);stop-opacity:1;"/>
<stop offset="0.246094" style="stop-color:rgb(90.609741%,95.304871%,95.304871%);stop-opacity:1;"/>
<stop offset="0.25" style="stop-color:rgb(90.370178%,95.184326%,95.184326%);stop-opacity:1;"/>
<stop offset="0.253906" style="stop-color:rgb(90.129089%,95.063782%,95.063782%);stop-opacity:1;"/>
<stop offset="0.257813" style="stop-color:rgb(89.889526%,94.944763%,94.944763%);stop-opacity:1;"/>
<stop offset="0.261719" style="stop-color:rgb(89.648438%,94.824219%,94.824219%);stop-opacity:1;"/>
<stop offset="0.265625" style="stop-color:rgb(89.408875%,94.703674%,94.703674%);stop-opacity:1;"/>
<stop offset="0.269531" style="stop-color:rgb(89.167786%,94.58313%,94.58313%);stop-opacity:1;"/>
<stop offset="0.273438" style="stop-color:rgb(88.928223%,94.464111%,94.464111%);stop-opacity:1;"/>
<stop offset="0.277344" style="stop-color:rgb(88.68866%,94.343567%,94.343567%);stop-opacity:1;"/>
<stop offset="0.28125" style="stop-color:rgb(88.449097%,94.224548%,94.224548%);stop-opacity:1;"/>
<stop offset="0.285156" style="stop-color:rgb(88.208008%,94.104004%,94.104004%);stop-opacity:1;"/>
<stop offset="0.289063" style="stop-color:rgb(87.968445%,93.983459%,93.983459%);stop-opacity:1;"/>
<stop offset="0.292969" style="stop-color:rgb(87.727356%,93.862915%,93.862915%);stop-opacity:1;"/>
<stop offset="0.296875" style="stop-color:rgb(87.487793%,93.743896%,93.743896%);stop-opacity:1;"/>
<stop offset="0.300781" style="stop-color:rgb(87.246704%,93.623352%,93.623352%);stop-opacity:1;"/>
<stop offset="0.304688" style="stop-color:rgb(87.007141%,93.502808%,93.502808%);stop-opacity:1;"/>
<stop offset="0.308594" style="stop-color:rgb(86.767578%,93.382263%,93.382263%);stop-opacity:1;"/>
<stop offset="0.3125" style="stop-color:rgb(86.528015%,93.263245%,93.263245%);stop-opacity:1;"/>
<stop offset="0.316406" style="stop-color:rgb(86.286926%,93.1427%,93.1427%);stop-opacity:1;"/>
<stop offset="0.320313" style="stop-color:rgb(86.047363%,93.023682%,93.023682%);stop-opacity:1;"/>
<stop offset="0.324219" style="stop-color:rgb(85.806274%,92.903137%,92.903137%);stop-opacity:1;"/>
<stop offset="0.328125" style="stop-color:rgb(85.566711%,92.782593%,92.782593%);stop-opacity:1;"/>
<stop offset="0.332031" style="stop-color:rgb(85.325623%,92.662048%,92.662048%);stop-opacity:1;"/>
<stop offset="0.335938" style="stop-color:rgb(85.08606%,92.54303%,92.54303%);stop-opacity:1;"/>
<stop offset="0.339844" style="stop-color:rgb(84.844971%,92.422485%,92.422485%);stop-opacity:1;"/>
<stop offset="0.34375" style="stop-color:rgb(84.605408%,92.301941%,92.301941%);stop-opacity:1;"/>
<stop offset="0.347656" style="stop-color:rgb(84.365845%,92.181396%,92.181396%);stop-opacity:1;"/>
<stop offset="0.351563" style="stop-color:rgb(84.126282%,92.062378%,92.062378%);stop-opacity:1;"/>
<stop offset="0.355469" style="stop-color:rgb(83.885193%,91.941833%,91.941833%);stop-opacity:1;"/>
<stop offset="0.359375" style="stop-color:rgb(83.64563%,91.822815%,91.822815%);stop-opacity:1;"/>
<stop offset="0.363281" style="stop-color:rgb(83.404541%,91.702271%,91.702271%);stop-opacity:1;"/>
<stop offset="0.367188" style="stop-color:rgb(83.164978%,91.581726%,91.581726%);stop-opacity:1;"/>
<stop offset="0.371094" style="stop-color:rgb(82.923889%,91.461182%,91.461182%);stop-opacity:1;"/>
<stop offset="0.375" style="stop-color:rgb(82.684326%,91.342163%,91.342163%);stop-opacity:1;"/>
<stop offset="0.378906" style="stop-color:rgb(82.444763%,91.221619%,91.221619%);stop-opacity:1;"/>
<stop offset="0.382813" style="stop-color:rgb(82.2052%,91.1026%,91.1026%);stop-opacity:1;"/>
<stop offset="0.386719" style="stop-color:rgb(81.964111%,90.982056%,90.982056%);stop-opacity:1;"/>
<stop offset="0.390625" style="stop-color:rgb(81.724548%,90.861511%,90.861511%);stop-opacity:1;"/>
<stop offset="0.394531" style="stop-color:rgb(81.483459%,90.740967%,90.740967%);stop-opacity:1;"/>
<stop offset="0.398438" style="stop-color:rgb(81.243896%,90.621948%,90.621948%);stop-opacity:1;"/>
<stop offset="0.402344" style="stop-color:rgb(81.002808%,90.501404%,90.501404%);stop-opacity:1;"/>
<stop offset="0.40625" style="stop-color:rgb(80.763245%,90.380859%,90.380859%);stop-opacity:1;"/>
<stop offset="0.410156" style="stop-color:rgb(80.522156%,90.260315%,90.260315%);stop-opacity:1;"/>
<stop offset="0.414063" style="stop-color:rgb(80.282593%,90.141296%,90.141296%);stop-opacity:1;"/>
<stop offset="0.417969" style="stop-color:rgb(80.04303%,90.020752%,90.020752%);stop-opacity:1;"/>
<stop offset="0.421875" style="stop-color:rgb(79.803467%,89.901733%,89.901733%);stop-opacity:1;"/>
<stop offset="0.425781" style="stop-color:rgb(79.562378%,89.781189%,89.781189%);stop-opacity:1;"/>
<stop offset="0.429688" style="stop-color:rgb(79.322815%,89.660645%,89.660645%);stop-opacity:1;"/>
<stop offset="0.433594" style="stop-color:rgb(79.081726%,89.5401%,89.5401%);stop-opacity:1;"/>
<stop offset="0.4375" style="stop-color:rgb(78.842163%,89.421082%,89.421082%);stop-opacity:1;"/>
<stop offset="0.441406" style="stop-color:rgb(78.601074%,89.300537%,89.300537%);stop-opacity:1;"/>
<stop offset="0.445313" style="stop-color:rgb(78.361511%,89.179993%,89.179993%);stop-opacity:1;"/>
<stop offset="0.449219" style="stop-color:rgb(78.121948%,89.059448%,89.059448%);stop-opacity:1;"/>
<stop offset="0.453125" style="stop-color:rgb(77.882385%,88.94043%,88.94043%);stop-opacity:1;"/>
<stop offset="0.457031" style="stop-color:rgb(77.641296%,88.819885%,88.819885%);stop-opacity:1;"/>
<stop offset="0.460938" style="stop-color:rgb(77.401733%,88.700867%,88.700867%);stop-opacity:1;"/>
<stop offset="0.464844" style="stop-color:rgb(77.160645%,88.580322%,88.580322%);stop-opacity:1;"/>
<stop offset="0.46875" style="stop-color:rgb(76.921082%,88.459778%,88.459778%);stop-opacity:1;"/>
<stop offset="0.472656" style="stop-color:rgb(76.679993%,88.339233%,88.339233%);stop-opacity:1;"/>
<stop offset="0.476563" style="stop-color:rgb(76.44043%,88.220215%,88.220215%);stop-opacity:1;"/>
<stop offset="0.480469" style="stop-color:rgb(76.199341%,88.09967%,88.09967%);stop-opacity:1;"/>
<stop offset="0.484375" style="stop-color:rgb(75.959778%,87.979126%,87.979126%);stop-opacity:1;"/>
<stop offset="0.488281" style="stop-color:rgb(75.720215%,87.858582%,87.858582%);stop-opacity:1;"/>
<stop offset="0.492188" style="stop-color:rgb(75.480652%,87.739563%,87.739563%);stop-opacity:1;"/>
<stop offset="0.496094" style="stop-color:rgb(75.239563%,87.619019%,87.619019%);stop-opacity:1;"/>
<stop offset="0.5" style="stop-color:rgb(75%,87.5%,87.5%);stop-opacity:1;"/>
<stop offset="0.503906" style="stop-color:rgb(74.758911%,87.379456%,87.379456%);stop-opacity:1;"/>
<stop offset="0.507812" style="stop-color:rgb(74.519348%,87.258911%,87.258911%);stop-opacity:1;"/>
<stop offset="0.511719" style="stop-color:rgb(74.278259%,87.138367%,87.138367%);stop-opacity:1;"/>
<stop offset="0.515625" style="stop-color:rgb(74.038696%,87.019348%,87.019348%);stop-opacity:1;"/>
<stop offset="0.519531" style="stop-color:rgb(73.799133%,86.898804%,86.898804%);stop-opacity:1;"/>
<stop offset="0.523438" style="stop-color:rgb(73.55957%,86.779785%,86.779785%);stop-opacity:1;"/>
<stop offset="0.527344" style="stop-color:rgb(73.318481%,86.659241%,86.659241%);stop-opacity:1;"/>
<stop offset="0.53125" style="stop-color:rgb(73.078918%,86.538696%,86.538696%);stop-opacity:1;"/>
<stop offset="0.535156" style="stop-color:rgb(72.83783%,86.418152%,86.418152%);stop-opacity:1;"/>
<stop offset="0.539063" style="stop-color:rgb(72.598267%,86.299133%,86.299133%);stop-opacity:1;"/>
<stop offset="0.542969" style="stop-color:rgb(72.357178%,86.178589%,86.178589%);stop-opacity:1;"/>
<stop offset="0.546875" style="stop-color:rgb(72.117615%,86.058044%,86.058044%);stop-opacity:1;"/>
<stop offset="0.550781" style="stop-color:rgb(71.876526%,85.9375%,85.9375%);stop-opacity:1;"/>
<stop offset="0.554688" style="stop-color:rgb(71.636963%,85.818481%,85.818481%);stop-opacity:1;"/>
<stop offset="0.558594" style="stop-color:rgb(71.3974%,85.697937%,85.697937%);stop-opacity:1;"/>
<stop offset="0.5625" style="stop-color:rgb(71.157837%,85.578918%,85.578918%);stop-opacity:1;"/>
<stop offset="0.566406" style="stop-color:rgb(70.916748%,85.458374%,85.458374%);stop-opacity:1;"/>
<stop offset="0.570313" style="stop-color:rgb(70.677185%,85.33783%,85.33783%);stop-opacity:1;"/>
<stop offset="0.574219" style="stop-color:rgb(70.436096%,85.217285%,85.217285%);stop-opacity:1;"/>
<stop offset="0.578125" style="stop-color:rgb(70.196533%,85.098267%,85.098267%);stop-opacity:1;"/>
<stop offset="0.582031" style="stop-color:rgb(69.955444%,84.977722%,84.977722%);stop-opacity:1;"/>
<stop offset="0.585938" style="stop-color:rgb(69.715881%,84.857178%,84.857178%);stop-opacity:1;"/>
<stop offset="0.589844" style="stop-color:rgb(69.476318%,84.736633%,84.736633%);stop-opacity:1;"/>
<stop offset="0.59375" style="stop-color:rgb(69.236755%,84.617615%,84.617615%);stop-opacity:1;"/>
<stop offset="0.597656" style="stop-color:rgb(68.995667%,84.49707%,84.49707%);stop-opacity:1;"/>
<stop offset="0.601562" style="stop-color:rgb(68.756104%,84.378052%,84.378052%);stop-opacity:1;"/>
<stop offset="0.605469" style="stop-color:rgb(68.515015%,84.257507%,84.257507%);stop-opacity:1;"/>
<stop offset="0.609375" style="stop-color:rgb(68.275452%,84.136963%,84.136963%);stop-opacity:1;"/>
<stop offset="0.613281" style="stop-color:rgb(68.034363%,84.016418%,84.016418%);stop-opacity:1;"/>
<stop offset="0.617188" style="stop-color:rgb(67.7948%,83.8974%,83.8974%);stop-opacity:1;"/>
<stop offset="0.621094" style="stop-color:rgb(67.553711%,83.776855%,83.776855%);stop-opacity:1;"/>
<stop offset="0.625" style="stop-color:rgb(67.314148%,83.656311%,83.656311%);stop-opacity:1;"/>
<stop offset="0.628906" style="stop-color:rgb(67.074585%,83.535767%,83.535767%);stop-opacity:1;"/>
<stop offset="0.632813" style="stop-color:rgb(66.835022%,83.416748%,83.416748%);stop-opacity:1;"/>
<stop offset="0.636719" style="stop-color:rgb(66.593933%,83.296204%,83.296204%);stop-opacity:1;"/>
<stop offset="0.640625" style="stop-color:rgb(66.35437%,83.177185%,83.177185%);stop-opacity:1;"/>
<stop offset="0.644531" style="stop-color:rgb(66.113281%,83.056641%,83.056641%);stop-opacity:1;"/>
<stop offset="0.648438" style="stop-color:rgb(65.873718%,82.936096%,82.936096%);stop-opacity:1;"/>
<stop offset="0.652344" style="stop-color:rgb(65.632629%,82.815552%,82.815552%);stop-opacity:1;"/>
<stop offset="0.65625" style="stop-color:rgb(65.393066%,82.696533%,82.696533%);stop-opacity:1;"/>
<stop offset="0.660156" style="stop-color:rgb(65.153503%,82.575989%,82.575989%);stop-opacity:1;"/>
<stop offset="0.664062" style="stop-color:rgb(64.91394%,82.45697%,82.45697%);stop-opacity:1;"/>
<stop offset="0.667969" style="stop-color:rgb(64.672852%,82.336426%,82.336426%);stop-opacity:1;"/>
<stop offset="0.671875" style="stop-color:rgb(64.433289%,82.215881%,82.215881%);stop-opacity:1;"/>
<stop offset="0.675781" style="stop-color:rgb(64.1922%,82.095337%,82.095337%);stop-opacity:1;"/>
<stop offset="0.679688" style="stop-color:rgb(63.952637%,81.976318%,81.976318%);stop-opacity:1;"/>
<stop offset="0.683594" style="stop-color:rgb(63.711548%,81.855774%,81.855774%);stop-opacity:1;"/>
<stop offset="0.6875" style="stop-color:rgb(63.471985%,81.735229%,81.735229%);stop-opacity:1;"/>
<stop offset="0.691406" style="stop-color:rgb(63.230896%,81.614685%,81.614685%);stop-opacity:1;"/>
<stop offset="0.695312" style="stop-color:rgb(62.991333%,81.495667%,81.495667%);stop-opacity:1;"/>
<stop offset="0.699219" style="stop-color:rgb(62.75177%,81.375122%,81.375122%);stop-opacity:1;"/>
<stop offset="0.703125" style="stop-color:rgb(62.512207%,81.256104%,81.256104%);stop-opacity:1;"/>
<stop offset="0.707031" style="stop-color:rgb(62.271118%,81.135559%,81.135559%);stop-opacity:1;"/>
<stop offset="0.710938" style="stop-color:rgb(62.031555%,81.015015%,81.015015%);stop-opacity:1;"/>
<stop offset="0.714844" style="stop-color:rgb(61.790466%,80.89447%,80.89447%);stop-opacity:1;"/>
<stop offset="0.71875" style="stop-color:rgb(61.550903%,80.775452%,80.775452%);stop-opacity:1;"/>
<stop offset="0.722656" style="stop-color:rgb(61.309814%,80.654907%,80.654907%);stop-opacity:1;"/>
<stop offset="0.726563" style="stop-color:rgb(61.070251%,80.534363%,80.534363%);stop-opacity:1;"/>
<stop offset="0.730469" style="stop-color:rgb(60.830688%,80.413818%,80.413818%);stop-opacity:1;"/>
<stop offset="0.734375" style="stop-color:rgb(60.591125%,80.2948%,80.2948%);stop-opacity:1;"/>
<stop offset="0.738281" style="stop-color:rgb(60.350037%,80.174255%,80.174255%);stop-opacity:1;"/>
<stop offset="0.742188" style="stop-color:rgb(60.110474%,80.055237%,80.055237%);stop-opacity:1;"/>
<stop offset="0.746094" style="stop-color:rgb(59.869385%,79.934692%,79.934692%);stop-opacity:1;"/>
<stop offset="0.75" style="stop-color:rgb(59.629822%,79.814148%,79.814148%);stop-opacity:1;"/>
<stop offset="0.753906" style="stop-color:rgb(59.388733%,79.693604%,79.693604%);stop-opacity:1;"/>
<stop offset="0.757813" style="stop-color:rgb(59.14917%,79.574585%,79.574585%);stop-opacity:1;"/>
<stop offset="0.761719" style="stop-color:rgb(58.908081%,79.454041%,79.454041%);stop-opacity:1;"/>
<stop offset="0.765625" style="stop-color:rgb(58.668518%,79.333496%,79.333496%);stop-opacity:1;"/>
<stop offset="0.769531" style="stop-color:rgb(58.428955%,79.212952%,79.212952%);stop-opacity:1;"/>
<stop offset="0.773438" style="stop-color:rgb(58.189392%,79.093933%,79.093933%);stop-opacity:1;"/>
<stop offset="0.777344" style="stop-color:rgb(57.948303%,78.973389%,78.973389%);stop-opacity:1;"/>
<stop offset="0.78125" style="stop-color:rgb(57.70874%,78.85437%,78.85437%);stop-opacity:1;"/>
<stop offset="0.785156" style="stop-color:rgb(57.467651%,78.733826%,78.733826%);stop-opacity:1;"/>
<stop offset="0.789063" style="stop-color:rgb(57.228088%,78.613281%,78.613281%);stop-opacity:1;"/>
<stop offset="0.792969" style="stop-color:rgb(56.987%,78.492737%,78.492737%);stop-opacity:1;"/>
<stop offset="0.796875" style="stop-color:rgb(56.747437%,78.373718%,78.373718%);stop-opacity:1;"/>
<stop offset="0.800781" style="stop-color:rgb(56.507874%,78.253174%,78.253174%);stop-opacity:1;"/>
<stop offset="0.804688" style="stop-color:rgb(56.268311%,78.134155%,78.134155%);stop-opacity:1;"/>
<stop offset="0.808594" style="stop-color:rgb(56.027222%,78.013611%,78.013611%);stop-opacity:1;"/>
<stop offset="0.8125" style="stop-color:rgb(55.787659%,77.893066%,77.893066%);stop-opacity:1;"/>
<stop offset="0.816406" style="stop-color:rgb(55.54657%,77.772522%,77.772522%);stop-opacity:1;"/>
<stop offset="0.820313" style="stop-color:rgb(55.307007%,77.653503%,77.653503%);stop-opacity:1;"/>
<stop offset="0.824219" style="stop-color:rgb(55.065918%,77.532959%,77.532959%);stop-opacity:1;"/>
<stop offset="0.828125" style="stop-color:rgb(54.826355%,77.412415%,77.412415%);stop-opacity:1;"/>
<stop offset="0.832031" style="stop-color:rgb(54.585266%,77.29187%,77.29187%);stop-opacity:1;"/>
<stop offset="0.835938" style="stop-color:rgb(54.345703%,77.172852%,77.172852%);stop-opacity:1;"/>
<stop offset="0.839844" style="stop-color:rgb(54.10614%,77.052307%,77.052307%);stop-opacity:1;"/>
<stop offset="0.84375" style="stop-color:rgb(53.866577%,76.933289%,76.933289%);stop-opacity:1;"/>
<stop offset="0.847656" style="stop-color:rgb(53.625488%,76.812744%,76.812744%);stop-opacity:1;"/>
<stop offset="0.851563" style="stop-color:rgb(53.385925%,76.6922%,76.6922%);stop-opacity:1;"/>
<stop offset="0.855469" style="stop-color:rgb(53.144836%,76.571655%,76.571655%);stop-opacity:1;"/>
<stop offset="0.859375" style="stop-color:rgb(52.905273%,76.452637%,76.452637%);stop-opacity:1;"/>
<stop offset="0.863281" style="stop-color:rgb(52.664185%,76.332092%,76.332092%);stop-opacity:1;"/>
<stop offset="0.867188" style="stop-color:rgb(52.424622%,76.211548%,76.211548%);stop-opacity:1;"/>
<stop offset="0.871094" style="stop-color:rgb(52.185059%,76.091003%,76.091003%);stop-opacity:1;"/>
<stop offset="0.875" style="stop-color:rgb(51.945496%,75.971985%,75.971985%);stop-opacity:1;"/>
<stop offset="0.878906" style="stop-color:rgb(51.704407%,75.85144%,75.85144%);stop-opacity:1;"/>
<stop offset="0.882812" style="stop-color:rgb(51.464844%,75.732422%,75.732422%);stop-opacity:1;"/>
<stop offset="0.886719" style="stop-color:rgb(51.223755%,75.611877%,75.611877%);stop-opacity:1;"/>
<stop offset="0.890625" style="stop-color:rgb(50.984192%,75.491333%,75.491333%);stop-opacity:1;"/>
<stop offset="0.894531" style="stop-color:rgb(50.743103%,75.370789%,75.370789%);stop-opacity:1;"/>
<stop offset="0.898438" style="stop-color:rgb(50.50354%,75.25177%,75.25177%);stop-opacity:1;"/>
<stop offset="0.902344" style="stop-color:rgb(50.262451%,75.131226%,75.131226%);stop-opacity:1;"/>
<stop offset="0.90625" style="stop-color:rgb(50.022888%,75.010681%,75.010681%);stop-opacity:1;"/>
<stop offset="0.9375" style="stop-color:rgb(50.010681%,75.004578%,75.004578%);stop-opacity:1;"/>
<stop offset="1" style="stop-color:rgb(50%,75%,75%);stop-opacity:1;"/>
</linearGradient>
</defs>
<g id="surface1">
<path style="fill:none;stroke-width:1.59404;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(100%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 53.860687 -53.082344 L -45.834625 -53.082344 C -48.033844 -53.082344 -49.819 -54.8675 -49.819 -57.066719 L -49.819 -95.2425 C -49.819 -97.441719 -48.033844 -99.226875 -45.834625 -99.226875 L 53.860687 -99.226875 C 56.059906 -99.226875 57.845062 -97.441719 57.845062 -95.2425 L 57.845062 -57.066719 C 57.845062 -54.8675 56.059906 -53.082344 53.860687 -53.082344 Z M 53.860687 -53.082344 " transform="matrix(1,0,0,-1,83.569,3.32)"/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-1" x="149.088" y="45.775"/>
<use xlink:href="#glyph0-2" x="149.088" y="49.614043"/>
<use xlink:href="#glyph0-2" x="149.088" y="57.946316"/>
<use xlink:href="#glyph0-3" x="149.088" y="66.278589"/>
<use xlink:href="#glyph0-4" x="149.088" y="73.474643"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-5" x="149.088" y="84.372016"/>
<use xlink:href="#glyph0-6" x="149.088" y="88.21106"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-6" x="149.088" y="96.749918"/>
<use xlink:href="#glyph0-7" x="149.088" y="104.841175"/>
</g>
<g clip-path="url(#clip1)" clip-rule="nonzero">
<path style="fill:none;stroke-width:1.59404;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(100%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 77.001312 -26.195625 L -63.889313 -26.195625 C -66.088531 -26.195625 -67.873688 -27.980781 -67.873688 -30.183906 L -67.873688 -125.066719 C -67.873688 -127.265937 -66.088531 -129.051094 -63.889313 -129.051094 L 77.001312 -129.051094 C 79.204437 -129.051094 80.985687 -127.265937 80.985687 -125.066719 L 80.985687 -30.183906 C 80.985687 -27.980781 79.204437 -26.195625 77.001312 -26.195625 Z M 77.001312 -26.195625 " transform="matrix(1,0,0,-1,83.569,3.32)"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-6" x="171.432" y="46.357"/>
<use xlink:href="#glyph0-8" x="171.432" y="54.448257"/>
<use xlink:href="#glyph0-9" x="171.432" y="62.78053"/>
<use xlink:href="#glyph0-3" x="171.432" y="68.633779"/>
<use xlink:href="#glyph0-4" x="171.432" y="75.829833"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-5" x="171.432" y="86.727207"/>
<use xlink:href="#glyph0-6" x="171.432" y="90.56625"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-6" x="171.432" y="99.105108"/>
<use xlink:href="#glyph0-7" x="171.432" y="107.196365"/>
</g>
<path style="fill:none;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 0.0013125 -3.519844 L 0.0013125 -25.676094 " transform="matrix(1,0,0,-1,83.569,3.32)"/>
<path style="fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.205317 0.0013125 L 0.642817 2.091156 L 2.467036 0.0013125 L 0.642817 -2.092438 Z M 6.205317 0.0013125 " transform="matrix(0,1,1,0,83.569,26.63062)"/>
<path style="fill:none;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 0.0013125 -44.578437 L 0.0013125 -63.215156 " transform="matrix(1,0,0,-1,83.569,3.32)"/>
<path style="fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.20654 0.0013125 L 0.64404 2.091156 L 2.464352 0.0013125 L 0.64404 -2.092438 Z M 6.20654 0.0013125 " transform="matrix(0,1,1,0,83.569,64.16846)"/>
<path style="fill:none;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 0.0013125 -85.055 L 0.0013125 -103.691719 " transform="matrix(1,0,0,-1,83.569,3.32)"/>
<path style="fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.206232 0.0013125 L 0.643732 2.091156 L 2.464045 0.0013125 L 0.643732 -2.092438 Z M 6.206232 0.0013125 " transform="matrix(0,1,1,0,83.569,104.64533)"/>
<path style="fill:none;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 0.0013125 -125.531562 L 0.0013125 -147.687812 " transform="matrix(1,0,0,-1,83.569,3.32)"/>
<path style="fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.205656 0.0013125 L 0.643156 2.091156 L 2.463469 0.0013125 L 0.643156 -2.092438 Z M 6.205656 0.0013125 " transform="matrix(0,1,1,0,83.569,148.642)"/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(50%,50%,50%);fill-opacity:0.5;" d="M 98.726562 35.78125 L 72.707031 35.78125 C 70.503906 35.78125 68.722656 37.566406 68.722656 39.765625 L 68.722656 45.460938 C 68.722656 47.664062 70.503906 49.445312 72.707031 49.445312 L 98.726562 49.445312 C 100.925781 49.445312 102.710938 47.664062 102.710938 45.460938 L 102.710938 39.765625 C 102.710938 37.566406 100.925781 35.78125 98.726562 35.78125 Z M 98.726562 35.78125 "/>
<g clip-path="url(#clip2)" clip-rule="nonzero">
<g clip-path="url(#clip3)" clip-rule="nonzero">
<g clip-path="url(#clip4)" clip-rule="nonzero">
<path style=" stroke:none;fill-rule:nonzero;fill:url(#linear0);" d="M 68.851562 55.796875 L 63.160156 34.550781 L 98.285156 25.136719 L 103.980469 46.382812 Z M 68.851562 55.796875 "/>
</g>
</g>
</g>
<path style="fill:none;stroke-width:1.19553;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,50%,50%);stroke-opacity:1;stroke-miterlimit:10;" d="M 13.009125 6.834188 L -13.010406 6.834188 C -15.209625 6.834188 -16.994781 5.049031 -16.994781 2.845906 L -16.994781 -2.8455 C -16.994781 -5.048625 -15.209625 -6.833781 -13.010406 -6.833781 L 13.009125 -6.833781 C 15.208344 -6.833781 16.9935 -5.048625 16.9935 -2.8455 L 16.9935 2.845906 C 16.9935 5.049031 15.208344 6.834188 13.009125 6.834188 Z M 13.009125 6.834188 " transform="matrix(1,0,0,-1,83.569,40.467)"/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-1" x="69.896" y="43.869"/>
<use xlink:href="#glyph1-2" x="75.046685" y="43.869"/>
<use xlink:href="#glyph1-3" x="79.470097" y="43.869"/>
<use xlink:href="#glyph1-4" x="84.262127" y="43.869"/>
<use xlink:href="#glyph1-2" x="89.412812" y="43.869"/>
<use xlink:href="#glyph1-5" x="93.836224" y="43.869"/>
</g>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(50%,50%,50%);fill-opacity:0.5;" d="M 127.632812 73.320312 L 43.800781 73.320312 C 41.597656 73.320312 39.816406 75.101562 39.816406 77.304688 L 39.816406 85.9375 C 39.816406 88.140625 41.597656 89.921875 43.800781 89.921875 L 127.632812 89.921875 C 129.832031 89.921875 131.617188 88.140625 131.617188 85.9375 L 131.617188 77.304688 C 131.617188 75.101562 129.832031 73.320312 127.632812 73.320312 Z M 127.632812 73.320312 "/>
<g clip-path="url(#clip5)" clip-rule="nonzero">
<g clip-path="url(#clip6)" clip-rule="nonzero">
<g clip-path="url(#clip7)" clip-rule="nonzero">
<path style=" stroke:none;fill-rule:nonzero;fill:url(#linear1);" d="M 43.816406 110.726562 L 33.515625 72.285156 L 123.320312 48.222656 L 133.621094 86.664062 Z M 43.816406 110.726562 "/>
</g>
</g>
</g>
<path style="fill:none;stroke-width:1.19553;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,50%,50%);stroke-opacity:1;stroke-miterlimit:10;" d="M 41.915375 8.302125 L -41.916656 8.302125 C -44.115875 8.302125 -45.901031 6.516969 -45.901031 4.31775 L -45.901031 -4.315062 C -45.901031 -6.518187 -44.115875 -8.303344 -41.916656 -8.303344 L 41.915375 -8.303344 C 44.1185 -8.303344 45.89975 -6.518187 45.89975 -4.315062 L 45.89975 4.31775 C 45.89975 6.516969 44.1185 8.302125 41.915375 8.302125 Z M 41.915375 8.302125 " transform="matrix(1,0,0,-1,83.569,79.474)"/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-1" x="40.989" y="81.964"/>
<use xlink:href="#glyph1-2" x="46.139685" y="81.964"/>
<use xlink:href="#glyph1-3" x="50.563097" y="81.964"/>
<use xlink:href="#glyph1-4" x="55.355127" y="81.964"/>
<use xlink:href="#glyph1-2" x="60.505812" y="81.964"/>
<use xlink:href="#glyph1-5" x="64.929224" y="81.964"/>
<use xlink:href="#glyph1-6" x="68.336447" y="81.964"/>
<use xlink:href="#glyph1-2" x="73.317767" y="81.964"/>
<use xlink:href="#glyph1-7" x="77.741179" y="81.964"/>
<use xlink:href="#glyph1-8" x="82.333956" y="81.964"/>
<use xlink:href="#glyph1-9" x="84.715027" y="81.964"/>
<use xlink:href="#glyph1-8" x="88.31154" y="81.964"/>
<use xlink:href="#glyph1-10" x="90.692611" y="81.964"/>
<use xlink:href="#glyph1-11" x="95.843296" y="81.964"/>
<use xlink:href="#glyph1-6" x="100.824616" y="81.964"/>
<use xlink:href="#glyph1-12" x="105.805936" y="81.964"/>
<use xlink:href="#glyph1-3" x="108.187007" y="81.964"/>
<use xlink:href="#glyph1-9" x="112.979037" y="81.964"/>
<use xlink:href="#glyph1-13" x="116.57555" y="81.964"/>
<use xlink:href="#glyph1-1" x="120.998962" y="81.964"/>
</g>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(50%,50%,50%);fill-opacity:0.5;" d="M 111.46875 113.796875 L 59.964844 113.796875 C 57.761719 113.796875 55.980469 115.578125 55.980469 117.78125 L 55.980469 126.414062 C 55.980469 128.613281 57.761719 130.398438 59.964844 130.398438 L 111.46875 130.398438 C 113.667969 130.398438 115.453125 128.613281 115.453125 126.414062 L 115.453125 117.78125 C 115.453125 115.578125 113.667969 113.796875 111.46875 113.796875 Z M 111.46875 113.796875 "/>
<g clip-path="url(#clip8)" clip-rule="nonzero">
<g clip-path="url(#clip9)" clip-rule="nonzero">
<g clip-path="url(#clip10)" clip-rule="nonzero">
<path style=" stroke:none;fill-rule:nonzero;fill:url(#linear2);" d="M 57.816406 143.121094 L 49.679688 112.761719 L 109.320312 96.78125 L 117.457031 127.140625 Z M 57.816406 143.121094 "/>
</g>
</g>
</g>
<path style="fill:none;stroke-width:1.19553;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,50%,50%);stroke-opacity:1;stroke-miterlimit:10;" d="M 25.751312 8.301563 L -25.752594 8.301563 C -27.951813 8.301563 -29.736969 6.516406 -29.736969 4.317188 L -29.736969 -4.315625 C -29.736969 -6.51875 -27.951813 -8.3 -25.752594 -8.3 L 25.751312 -8.3 C 27.954437 -8.3 29.735687 -6.51875 29.735687 -4.315625 L 29.735687 4.317188 C 29.735687 6.516406 27.954437 8.301563 25.751312 8.301563 Z M 25.751312 8.301563 " transform="matrix(1,0,0,-1,83.569,119.95)"/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-2" x="57.153" y="122.441"/>
<use xlink:href="#glyph1-7" x="61.576412" y="122.441"/>
<use xlink:href="#glyph1-8" x="66.169189" y="122.441"/>
<use xlink:href="#glyph1-9" x="68.55026" y="122.441"/>
<use xlink:href="#glyph1-8" x="72.146773" y="122.441"/>
<use xlink:href="#glyph1-10" x="74.527844" y="122.441"/>
<use xlink:href="#glyph1-11" x="79.678529" y="122.441"/>
<use xlink:href="#glyph1-6" x="84.659849" y="122.441"/>
<use xlink:href="#glyph1-12" x="89.641169" y="122.441"/>
<use xlink:href="#glyph1-3" x="92.02224" y="122.441"/>
<use xlink:href="#glyph1-9" x="96.81427" y="122.441"/>
<use xlink:href="#glyph1-13" x="100.410783" y="122.441"/>
<use xlink:href="#glyph1-1" x="104.834195" y="122.441"/>
</g>
<path style="fill:none;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 24.458344 -85.055 C 63.532562 -124.129219 64.520844 -32.035469 27.423187 -64.472969 " transform="matrix(1,0,0,-1,83.569,3.32)"/>
<path style="fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.207474 -0.00203951 L 0.643185 2.095192 L 2.465286 0.000255224 L 0.641914 -2.091924 Z M 6.207474 -0.00203951 " transform="matrix(-0.73027,0.68312,0.68312,0.73027,112.7064,66.19854)"/>
<path style="fill:none;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -30.334625 -111.285469 C -82.080719 -92.277656 -74.5065 -42.578437 -21.6315 -40.328437 " transform="matrix(1,0,0,-1,83.569,3.32)"/>
<path style="fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.206889 -0.00167383 L 0.642857 2.092915 L 2.463849 0.000540841 L 0.643345 -2.091693 Z M 6.206889 -0.00167383 " transform="matrix(0.99976,-0.02042,-0.02042,-0.99976,59.57191,43.69929)"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 88 KiB

1280
docs/loop-nonmaximal.svg Normal file

File diff suppressed because it is too large Load Diff

After

Width:  |  Height:  |  Size: 129 KiB

690
docs/loop-separate.svg Normal file
View File

@ -0,0 +1,690 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="540pt" height="456.35pt" version="1.1" viewBox="0 0 540 456.35" xmlns="http://www.w3.org/2000/svg" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:xlink="http://www.w3.org/1999/xlink">
<metadata>
<rdf:RDF>
<cc:Work rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/>
<dc:title/>
</cc:Work>
</rdf:RDF>
</metadata>
<defs>
<symbol id="glyph0-4" overflow="visible"></symbol>
<symbol id="glyph1-1" overflow="visible">
<path d="m6.4062-2.4688h-5.125c0.082031 0.64844 0.35156 1.168 0.8125 1.5625 0.45703 0.39844 1.0234 0.59375 1.7031 0.59375 0.375 0 0.76562-0.054688 1.1719-0.17188 0.41406-0.125 0.75391-0.28906 1.0156-0.5 0.070313-0.0625 0.13281-0.09375 0.1875-0.09375 0.0625 0 0.11719 0.027344 0.17188 0.078125 0.050781 0.054688 0.078125 0.10938 0.078125 0.17188 0 0.074219-0.039063 0.14062-0.10938 0.20312-0.1875 0.19922-0.52734 0.38672-1.0156 0.5625-0.49219 0.17578-0.99219 0.26562-1.5 0.26562-0.86719 0-1.5898-0.28125-2.1719-0.84375-0.57422-0.57031-0.85938-1.2578-0.85938-2.0625 0-0.72656 0.26953-1.3516 0.8125-1.875 0.53906-0.51953 1.2109-0.78125 2.0156-0.78125 0.82031 0 1.5 0.27344 2.0312 0.8125 0.53125 0.53125 0.78906 1.2266 0.78125 2.0781zm-0.51562-0.51562c-0.09375-0.55078-0.35547-1-0.78125-1.3438-0.42969-0.35156-0.93359-0.53125-1.5156-0.53125-0.59375 0-1.1055 0.17188-1.5312 0.51562-0.41797 0.34375-0.67969 0.79688-0.78125 1.3594z"/>
</symbol>
<symbol id="glyph1-2" overflow="visible">
<path d="m2.0469-5.1875v0.76562c0.35156-0.35156 0.67188-0.59766 0.95312-0.73438 0.28906-0.13281 0.61328-0.20312 0.96875-0.20312 0.38281 0 0.73438 0.078125 1.0469 0.23438 0.21875 0.125 0.41406 0.32812 0.59375 0.60938 0.1875 0.27344 0.28125 0.55469 0.28125 0.84375v3.1719h0.42188c0.125 0 0.21094 0.027344 0.26562 0.078125 0.050781 0.042969 0.078125 0.10156 0.078125 0.17188 0 0.074219-0.027344 0.13672-0.078125 0.1875-0.054687 0.042969-0.14062 0.0625-0.26562 0.0625h-1.3438c-0.125 0-0.21484-0.019531-0.26562-0.0625-0.054687-0.050781-0.078125-0.11328-0.078125-0.1875 0-0.070312 0.023438-0.12891 0.078125-0.17188 0.050781-0.050781 0.14062-0.078125 0.26562-0.078125h0.42188v-3.0938c0-0.35156-0.13281-0.64844-0.39062-0.89062-0.26172-0.25-0.60938-0.375-1.0469-0.375-0.32422 0-0.60938 0.070313-0.85938 0.20312-0.24219 0.13672-0.58984 0.46875-1.0469 1v3.1562h0.57812c0.11328 0 0.19531 0.027344 0.25 0.078125 0.050781 0.042969 0.078125 0.10156 0.078125 0.17188 0 0.074219-0.027344 0.13672-0.078125 0.1875-0.054688 0.042969-0.13672 0.0625-0.25 0.0625h-1.6406c-0.125 0-0.21484-0.019531-0.26562-0.0625-0.054688-0.050781-0.078125-0.11328-0.078125-0.1875 0-0.070312 0.023437-0.12891 0.078125-0.17188 0.050781-0.050781 0.14062-0.078125 0.26562-0.078125h0.5625v-4.1719h-0.42188c-0.11719 0-0.19922-0.023437-0.25-0.078125-0.054688-0.050781-0.078125-0.11328-0.078125-0.1875 0-0.070312 0.023437-0.12891 0.078125-0.17188 0.050781-0.050781 0.13281-0.078125 0.25-0.078125z"/>
</symbol>
<symbol id="glyph1-3" overflow="visible">
<path d="m2.6406-5.1875h2.7344c0.125 0 0.21094 0.027344 0.26562 0.078125 0.050781 0.042969 0.078125 0.10547 0.078125 0.1875 0 0.0625-0.027344 0.12109-0.078125 0.17188-0.054687 0.054688-0.14062 0.078125-0.26562 0.078125h-2.7344v3.3438c0 0.29297 0.11328 0.53906 0.34375 0.73438 0.23828 0.1875 0.58594 0.28125 1.0469 0.28125 0.33203 0 0.69531-0.046875 1.0938-0.14062 0.39453-0.10156 0.70312-0.21875 0.92188-0.34375 0.082031-0.050781 0.14844-0.078125 0.20312-0.078125 0.0625 0 0.11328 0.027344 0.15625 0.078125 0.050781 0.042969 0.078125 0.10156 0.078125 0.17188 0 0.0625-0.027344 0.11719-0.078125 0.15625-0.125 0.13672-0.4375 0.28125-0.9375 0.4375-0.49219 0.15625-0.96094 0.23438-1.4062 0.23438-0.58594 0-1.0547-0.13672-1.4062-0.40625-0.34375-0.28125-0.51562-0.65625-0.51562-1.125v-3.3438h-0.9375c-0.11719 0-0.19922-0.023437-0.25-0.078125-0.054687-0.050781-0.078125-0.11328-0.078125-0.1875 0-0.070312 0.023438-0.12891 0.078125-0.17188 0.050781-0.050781 0.13281-0.078125 0.25-0.078125h0.9375v-1.4844c0-0.11328 0.019531-0.19531 0.0625-0.25 0.050781-0.050781 0.11328-0.078125 0.1875-0.078125 0.070313 0 0.12891 0.027344 0.17188 0.078125 0.050781 0.054687 0.078125 0.13672 0.078125 0.25z"/>
</symbol>
<symbol id="glyph1-4" overflow="visible">
<path d="m3.0781-5.1875v1.2656c0.65625-0.58203 1.1445-0.95703 1.4688-1.125 0.32031-0.17578 0.625-0.26562 0.90625-0.26562 0.30078 0 0.57812 0.10547 0.82812 0.3125 0.25781 0.19922 0.39062 0.35156 0.39062 0.45312 0 0.074219-0.027344 0.13672-0.078125 0.1875-0.054688 0.054687-0.11719 0.078125-0.1875 0.078125-0.042969 0-0.078125-0.00391-0.10938-0.015625-0.023437-0.019531-0.070313-0.066406-0.14062-0.14062-0.14844-0.14453-0.27344-0.24219-0.375-0.29688-0.10547-0.050781-0.20312-0.078125-0.29688-0.078125-0.21875 0-0.48438 0.089844-0.79688 0.26562-0.3125 0.17969-0.85156 0.60547-1.6094 1.2812v2.7656h2.2344c0.11328 0 0.19531 0.027344 0.25 0.078125 0.050781 0.042969 0.078125 0.10156 0.078125 0.17188 0 0.074219-0.027344 0.13672-0.078125 0.1875-0.054688 0.042969-0.13672 0.0625-0.25 0.0625h-3.9531c-0.11719 0-0.19922-0.019531-0.25-0.0625-0.054687-0.050781-0.078125-0.11328-0.078125-0.1875 0-0.0625 0.019531-0.11328 0.0625-0.15625 0.050781-0.050781 0.14062-0.078125 0.26562-0.078125h1.2188v-4.1875h-0.9375c-0.11719 0-0.19922-0.023437-0.25-0.078125-0.054687-0.050781-0.078125-0.11328-0.078125-0.1875 0-0.070312 0.023438-0.12891 0.078125-0.17188 0.050781-0.050781 0.13281-0.078125 0.25-0.078125z"/>
</symbol>
<symbol id="glyph1-5" overflow="visible">
<path d="m3.7188 0-2.3438-4.6719h-0.14062c-0.125 0-0.21484-0.023437-0.26562-0.078125-0.054688-0.050781-0.078125-0.10938-0.078125-0.17188 0-0.050781 0.007813-0.097656 0.03125-0.14062 0.03125-0.039062 0.066406-0.070312 0.10938-0.09375 0.039062-0.019531 0.10938-0.03125 0.20312-0.03125h1.375c0.11328 0 0.19531 0.027344 0.25 0.078125 0.050781 0.042969 0.078125 0.10547 0.078125 0.1875 0 0.0625-0.027344 0.12109-0.078125 0.17188-0.054687 0.054688-0.13672 0.078125-0.25 0.078125h-0.6875l2.0625 4.125 2.0156-4.125h-0.67188c-0.11719 0-0.19922-0.023437-0.25-0.078125-0.054687-0.050781-0.078125-0.11328-0.078125-0.1875 0-0.070312 0.023438-0.12891 0.078125-0.17188 0.050781-0.050781 0.13281-0.078125 0.25-0.078125h1.375c0.125 0 0.21094 0.027344 0.26562 0.078125 0.050781 0.042969 0.078125 0.10547 0.078125 0.1875 0 0.054687-0.015625 0.10156-0.046875 0.14062-0.03125 0.042969-0.070312 0.074219-0.10938 0.09375-0.042969 0.011719-0.15625 0.015625-0.34375 0.015625l-3.1875 6.4844h0.79688c0.11328 0 0.19531 0.019531 0.25 0.0625 0.050781 0.050781 0.078125 0.11328 0.078125 0.1875 0 0.070312-0.027344 0.12891-0.078125 0.17188-0.054688 0.050781-0.13672 0.078125-0.25 0.078125h-2.9062c-0.11719 0-0.19922-0.027344-0.25-0.078125-0.054688-0.042969-0.078125-0.10156-0.078125-0.17188 0-0.074219 0.023437-0.13672 0.078125-0.1875 0.050781-0.042969 0.13281-0.0625 0.25-0.0625h1.5781z"/>
</symbol>
<symbol id="glyph1-6" overflow="visible">
<path d="m3.5781-5.1875h0.21875c0.21875 0 0.40625 0.085938 0.5625 0.25 0.16406 0.15625 0.25 0.34375 0.25 0.5625 0 0.23047-0.085937 0.42188-0.25 0.57812-0.15625 0.15625-0.34375 0.23438-0.5625 0.23438h-0.21875c-0.23047 0-0.42188-0.078125-0.57812-0.23438s-0.23438-0.34375-0.23438-0.5625c0-0.23828 0.078125-0.4375 0.23438-0.59375 0.16406-0.15625 0.35938-0.23438 0.57812-0.23438zm0 3.75h0.21875c0.21875 0 0.40625 0.078125 0.5625 0.23438 0.16406 0.15625 0.25 0.34375 0.25 0.5625 0 0.24219-0.085937 0.4375-0.25 0.59375-0.15625 0.14453-0.34375 0.21875-0.5625 0.21875h-0.21875c-0.23047 0-0.42188-0.078125-0.57812-0.23438s-0.23438-0.34375-0.23438-0.5625c0-0.22656 0.078125-0.42188 0.23438-0.57812 0.16406-0.15625 0.35938-0.23438 0.57812-0.23438z"/>
</symbol>
<symbol id="glyph1-7" overflow="visible"></symbol>
<symbol id="glyph1-8" overflow="visible">
<path d="m1.7812-7.5156v3.3281c0.60156-0.78125 1.3359-1.1719 2.2031-1.1719 0.72656 0 1.3516 0.26562 1.875 0.79688 0.53125 0.53125 0.79688 1.1836 0.79688 1.9531 0 0.78125-0.26562 1.4492-0.79688 2-0.53125 0.54297-1.1562 0.8125-1.875 0.8125-0.875 0-1.6094-0.39453-2.2031-1.1875v0.98438h-1.1719c-0.125 0-0.21484-0.019531-0.26562-0.0625-0.054688-0.050781-0.078125-0.11328-0.078125-0.1875 0-0.070312 0.023437-0.12891 0.078125-0.17188 0.050781-0.050781 0.14062-0.078125 0.26562-0.078125h0.67188v-6.5h-0.67188c-0.125 0-0.21484-0.023438-0.26562-0.078125-0.054688-0.050781-0.078125-0.11328-0.078125-0.1875 0-0.070313 0.023437-0.12891 0.078125-0.17188 0.050781-0.050781 0.14062-0.078125 0.26562-0.078125zm4.375 4.9375c0-0.63281-0.21875-1.1719-0.65625-1.6094-0.4375-0.44531-0.94922-0.67188-1.5312-0.67188-0.58594 0-1.0938 0.22656-1.5312 0.67188-0.42969 0.4375-0.64062 0.97656-0.64062 1.6094 0 0.63672 0.21094 1.1719 0.64062 1.6094 0.4375 0.4375 0.94531 0.65625 1.5312 0.65625 0.58203 0 1.0938-0.21875 1.5312-0.65625s0.65625-0.97266 0.65625-1.6094z"/>
</symbol>
<symbol id="glyph1-9" overflow="visible">
<path d="m3.9375-7.5156v7.0156h1.9688c0.125 0 0.21094 0.027344 0.26562 0.078125 0.050781 0.042969 0.078125 0.10156 0.078125 0.17188 0 0.074219-0.027344 0.13672-0.078125 0.1875-0.054687 0.042969-0.14062 0.0625-0.26562 0.0625h-4.4531c-0.11719 0-0.19922-0.019531-0.25-0.0625-0.054687-0.050781-0.078125-0.11328-0.078125-0.1875 0-0.070312 0.023438-0.12891 0.078125-0.17188 0.050781-0.050781 0.13281-0.078125 0.25-0.078125h1.9844v-6.5h-1.4531c-0.125 0-0.21484-0.023438-0.26562-0.078125-0.054688-0.050781-0.078125-0.11328-0.078125-0.1875 0-0.070313 0.023437-0.12891 0.078125-0.17188 0.050781-0.050781 0.14062-0.078125 0.26562-0.078125z"/>
</symbol>
<symbol id="glyph1-10" overflow="visible">
<path d="m5.125 0v-0.71875c-0.73047 0.61719-1.5117 0.92188-2.3438 0.92188-0.60547 0-1.0781-0.15234-1.4219-0.45312-0.33594-0.3125-0.5-0.69141-0.5-1.1406 0-0.47656 0.22266-0.89844 0.67188-1.2656 0.44531-0.36328 1.0977-0.54688 1.9531-0.54688 0.23828 0 0.49219 0.015625 0.76562 0.046875 0.26953 0.03125 0.5625 0.078125 0.875 0.14062v-0.8125c0-0.28125-0.13281-0.51953-0.39062-0.71875-0.25-0.20703-0.63281-0.3125-1.1406-0.3125-0.39844 0-0.94531 0.11719-1.6406 0.34375-0.13672 0.042969-0.21875 0.0625-0.25 0.0625-0.0625 0-0.12109-0.019531-0.17188-0.0625-0.042969-0.050781-0.0625-0.11328-0.0625-0.1875 0-0.070313 0.019531-0.12891 0.0625-0.17188 0.050781-0.050781 0.27344-0.12891 0.67188-0.23438 0.625-0.16406 1.0977-0.25 1.4219-0.25 0.625 0 1.1133 0.15625 1.4688 0.46875 0.36328 0.3125 0.54688 0.66797 0.54688 1.0625v3.3281h0.67188c0.11328 0 0.19531 0.027344 0.25 0.078125 0.050781 0.042969 0.078125 0.10156 0.078125 0.17188 0 0.074219-0.027344 0.13672-0.078125 0.1875-0.054688 0.042969-0.13672 0.0625-0.25 0.0625zm0-2.5c-0.24219-0.070312-0.49219-0.125-0.75-0.15625-0.26172-0.03125-0.53906-0.046875-0.82812-0.046875-0.73047 0-1.3047 0.15625-1.7188 0.46875-0.3125 0.24219-0.46875 0.52344-0.46875 0.84375 0 0.3125 0.11719 0.57422 0.35938 0.78125 0.23828 0.19922 0.58594 0.29688 1.0469 0.29688 0.42578 0 0.82812-0.082031 1.2031-0.25 0.375-0.17578 0.75781-0.45312 1.1562-0.82812z"/>
</symbol>
<symbol id="glyph1-11" overflow="visible">
<path d="m4.4375-6.0781c0 0.42969-0.15234 0.79297-0.45312 1.0938-0.29297 0.30469-0.65234 0.45312-1.0781 0.45312-0.41797 0-0.77734-0.14844-1.0781-0.45312-0.30469-0.30078-0.45312-0.66406-0.45312-1.0938 0-0.4375 0.14844-0.80469 0.45312-1.1094 0.30078-0.30078 0.66016-0.45312 1.0781-0.45312 0.42578 0 0.78516 0.15234 1.0781 0.45312 0.30078 0.30469 0.45312 0.67188 0.45312 1.1094zm-0.35938 0c0-0.33203-0.11719-0.61328-0.34375-0.84375-0.23047-0.23828-0.50781-0.35938-0.82812-0.35938-0.32422 0-0.60156 0.12109-0.82812 0.35938-0.23047 0.23047-0.34375 0.51172-0.34375 0.84375 0 0.32422 0.11328 0.60547 0.34375 0.84375 0.22656 0.23047 0.50391 0.34375 0.82812 0.34375 0.32031 0 0.59766-0.11328 0.82812-0.34375 0.22656-0.23828 0.34375-0.51953 0.34375-0.84375zm2 1.7344-4.6719 1.5156c-0.054688 0.023437-0.09375 0.03125-0.125 0.03125-0.042969 0-0.078125-0.015625-0.10938-0.046875-0.03125-0.039062-0.046875-0.085938-0.046875-0.14062 0-0.039063 0.00781-0.082031 0.03125-0.125 0.019531-0.019531 0.066406-0.039063 0.14062-0.0625l4.6562-1.5156c0.0625-0.019531 0.10938-0.03125 0.14062-0.03125 0.039062 0 0.078125 0.023438 0.10938 0.0625 0.03125 0.03125 0.046875 0.074219 0.046875 0.125 0 0.042969-0.015625 0.085938-0.046875 0.125-0.011719 0.023438-0.054687 0.042969-0.125 0.0625zm-0.078125 2.9375c0 0.42969-0.15234 0.79297-0.45312 1.0938-0.30469 0.30469-0.66797 0.45312-1.0938 0.45312-0.41797 0-0.77734-0.14844-1.0781-0.45312-0.30469-0.30078-0.45312-0.66406-0.45312-1.0938 0-0.42578 0.14844-0.78906 0.45312-1.0938 0.30078-0.3125 0.66016-0.46875 1.0781-0.46875 0.42578 0 0.78906 0.15625 1.0938 0.46875 0.30078 0.30469 0.45312 0.66797 0.45312 1.0938zm-0.375 0c0-0.33203-0.11719-0.61328-0.34375-0.84375-0.23047-0.22656-0.50781-0.34375-0.82812-0.34375-0.32422 0-0.60156 0.11719-0.82812 0.34375-0.23047 0.23047-0.34375 0.51172-0.34375 0.84375 0 0.32422 0.11328 0.60547 0.34375 0.84375 0.22656 0.23047 0.50391 0.34375 0.82812 0.34375 0.32031 0 0.59766-0.11328 0.82812-0.34375 0.22656-0.22656 0.34375-0.50781 0.34375-0.84375z"/>
</symbol>
<symbol id="glyph1-12" overflow="visible">
<path d="m2.0312-7.5156v3.0938c0.3125-0.34375 0.61328-0.58203 0.90625-0.71875 0.30078-0.14453 0.62891-0.21875 0.98438-0.21875 0.39453 0 0.72656 0.070313 1 0.20312 0.28125 0.13672 0.50781 0.35156 0.6875 0.64062 0.1875 0.28125 0.28125 0.57812 0.28125 0.89062v3.125h0.5625c0.125 0 0.20703 0.027344 0.25 0.078125 0.050781 0.042969 0.078125 0.10156 0.078125 0.17188 0 0.074219-0.027344 0.13672-0.078125 0.1875-0.042969 0.042969-0.125 0.0625-0.25 0.0625h-1.6406c-0.125 0-0.21484-0.019531-0.26562-0.0625-0.054687-0.050781-0.078125-0.11328-0.078125-0.1875 0-0.070312 0.023438-0.12891 0.078125-0.17188 0.050781-0.050781 0.14062-0.078125 0.26562-0.078125h0.5625v-3.0938c0-0.35156-0.13281-0.64844-0.39062-0.89062-0.26172-0.25-0.625-0.375-1.0938-0.375-0.36719 0-0.67969 0.089844-0.9375 0.26562-0.1875 0.125-0.49609 0.42969-0.92188 0.90625v3.1875h0.5625c0.11328 0 0.19531 0.027344 0.25 0.078125 0.050781 0.042969 0.078125 0.10156 0.078125 0.17188 0 0.074219-0.027344 0.13672-0.078125 0.1875-0.054688 0.042969-0.13672 0.0625-0.25 0.0625h-1.6406c-0.125 0-0.21484-0.019531-0.26562-0.0625-0.054688-0.050781-0.078125-0.11328-0.078125-0.1875 0-0.070312 0.023437-0.12891 0.078125-0.17188 0.050781-0.050781 0.14062-0.078125 0.26562-0.078125h0.5625v-6.5h-0.67188c-0.11719 0-0.19922-0.023438-0.25-0.078125-0.054688-0.050781-0.078125-0.11328-0.078125-0.1875 0-0.070313 0.023437-0.12891 0.078125-0.17188 0.050781-0.050781 0.13281-0.078125 0.25-0.078125z"/>
</symbol>
<symbol id="glyph1-13" overflow="visible">
<path d="m6.1406-7.5156v7.0156h0.67188c0.125 0 0.21094 0.027344 0.26562 0.078125 0.050781 0.042969 0.078125 0.10156 0.078125 0.17188 0 0.074219-0.027344 0.13672-0.078125 0.1875-0.054687 0.042969-0.14062 0.0625-0.26562 0.0625h-1.1719v-1c-0.58594 0.80469-1.3281 1.2031-2.2344 1.2031-0.44922 0-0.88281-0.12109-1.2969-0.35938-0.41797-0.25-0.75-0.59766-1-1.0469-0.24219-0.44531-0.35938-0.90625-0.35938-1.375 0-0.47656 0.11719-0.94141 0.35938-1.3906 0.25-0.44531 0.58203-0.78906 1-1.0312 0.41406-0.23828 0.85156-0.35938 1.3125-0.35938 0.875 0 1.6133 0.39844 2.2188 1.1875v-2.8281h-0.67188c-0.125 0-0.21484-0.023438-0.26562-0.078125-0.054687-0.050781-0.078125-0.11328-0.078125-0.1875 0-0.070313 0.023438-0.12891 0.078125-0.17188 0.050781-0.050781 0.14062-0.078125 0.26562-0.078125zm-0.5 4.9375c0-0.64453-0.21875-1.1875-0.65625-1.625-0.42969-0.4375-0.9375-0.65625-1.5312-0.65625-0.60547 0-1.125 0.21875-1.5625 0.65625-0.42969 0.4375-0.64062 0.98047-0.64062 1.625 0 0.63672 0.21094 1.1719 0.64062 1.6094 0.4375 0.4375 0.95703 0.65625 1.5625 0.65625 0.59375 0 1.1016-0.21875 1.5312-0.65625 0.4375-0.4375 0.65625-0.97266 0.65625-1.6094z"/>
</symbol>
<symbol id="glyph1-14" overflow="visible">
<path d="m3.5781-1.4375h0.21875c0.21875 0 0.40625 0.078125 0.5625 0.23438 0.16406 0.15625 0.25 0.34375 0.25 0.5625 0 0.24219-0.085937 0.4375-0.25 0.59375-0.15625 0.14453-0.34375 0.21875-0.5625 0.21875h-0.21875c-0.23047 0-0.42188-0.078125-0.57812-0.23438s-0.23438-0.34375-0.23438-0.5625c0-0.22656 0.078125-0.42188 0.23438-0.57812 0.16406-0.15625 0.35938-0.23438 0.57812-0.23438z"/>
</symbol>
<symbol id="glyph1-15" overflow="visible">
<path d="m6.4844-2.5781c0 0.76172-0.27734 1.418-0.82812 1.9688-0.54297 0.54297-1.1992 0.8125-1.9688 0.8125-0.78125 0-1.4492-0.26953-2-0.8125-0.54297-0.55078-0.8125-1.207-0.8125-1.9688 0-0.76953 0.26953-1.4258 0.8125-1.9688 0.55078-0.53906 1.2188-0.8125 2-0.8125 0.76953 0 1.4258 0.27344 1.9688 0.8125 0.55078 0.54297 0.82812 1.1992 0.82812 1.9688zm-0.5 0c0-0.63281-0.22656-1.1719-0.67188-1.6094-0.44922-0.44531-0.99609-0.67188-1.6406-0.67188-0.63672 0-1.1797 0.22656-1.625 0.67188-0.44922 0.44922-0.67188 0.98438-0.67188 1.6094s0.22266 1.1641 0.67188 1.6094c0.44531 0.4375 0.98828 0.65625 1.625 0.65625 0.64453 0 1.1914-0.21875 1.6406-0.65625 0.44531-0.44531 0.67188-0.98438 0.67188-1.6094z"/>
</symbol>
<symbol id="glyph1-16" overflow="visible">
<path d="m5.4062 0v-0.73438c-0.6875 0.625-1.4336 0.9375-2.2344 0.9375-0.49219 0-0.86719-0.13672-1.125-0.40625-0.32422-0.35156-0.48438-0.76562-0.48438-1.2344v-3.2344h-0.6875c-0.11719 0-0.19922-0.023437-0.25-0.078125-0.054688-0.050781-0.078125-0.11328-0.078125-0.1875 0-0.070312 0.023437-0.12891 0.078125-0.17188 0.050781-0.050781 0.13281-0.078125 0.25-0.078125h1.1875v3.75c0 0.33594 0.10156 0.60547 0.3125 0.8125 0.20703 0.21094 0.46875 0.3125 0.78125 0.3125 0.8125 0 1.5625-0.375 2.25-1.125v-3.2344h-0.9375c-0.11719 0-0.19922-0.023437-0.25-0.078125-0.054688-0.050781-0.078125-0.11328-0.078125-0.1875 0-0.070312 0.023437-0.12891 0.078125-0.17188 0.050781-0.050781 0.13281-0.078125 0.25-0.078125h1.4375v4.6875h0.42188c0.125 0 0.21094 0.027344 0.26562 0.078125 0.050781 0.042969 0.078125 0.10156 0.078125 0.17188 0 0.074219-0.027344 0.13672-0.078125 0.1875-0.054688 0.042969-0.14062 0.0625-0.26562 0.0625z"/>
</symbol>
<symbol id="glyph1-17" overflow="visible">
<path d="m3.9219-7.7656v1.2969h-0.73438v-1.2969zm0.03125 2.5781v4.6875h1.9688c0.125 0 0.21094 0.027344 0.26562 0.078125 0.050781 0.042969 0.078125 0.10156 0.078125 0.17188 0 0.074219-0.027344 0.13672-0.078125 0.1875-0.054688 0.042969-0.14062 0.0625-0.26562 0.0625h-4.4531c-0.125 0-0.21484-0.019531-0.26562-0.0625-0.054687-0.050781-0.078125-0.11328-0.078125-0.1875 0-0.070312 0.023438-0.12891 0.078125-0.17188 0.050781-0.050781 0.14062-0.078125 0.26562-0.078125h1.9688v-4.1719h-1.4688c-0.11719 0-0.19922-0.023437-0.25-0.078125-0.054688-0.050781-0.078125-0.10938-0.078125-0.17188 0-0.082031 0.023437-0.14453 0.078125-0.1875 0.050781-0.050781 0.13281-0.078125 0.25-0.078125z"/>
</symbol>
<symbol id="glyph1-18" overflow="visible">
<path d="m1.7812-5.1875v0.92188c0.30078-0.36328 0.625-0.63281 0.96875-0.8125 0.34375-0.1875 0.75-0.28125 1.2188-0.28125 0.48828 0 0.94141 0.11719 1.3594 0.34375 0.42578 0.23047 0.75391 0.55469 0.98438 0.96875 0.22656 0.40625 0.34375 0.83984 0.34375 1.2969 0 0.71875-0.26172 1.3398-0.78125 1.8594-0.51172 0.51172-1.1484 0.76562-1.9062 0.76562-0.89844 0-1.625-0.36328-2.1875-1.0938v3.0312h1.2188c0.125 0 0.21094 0.019531 0.26562 0.0625 0.050781 0.050781 0.078125 0.11328 0.078125 0.1875 0 0.070312-0.027344 0.12891-0.078125 0.17188-0.054687 0.050781-0.14062 0.078125-0.26562 0.078125h-2.3906c-0.125 0-0.21484-0.027344-0.26562-0.078125-0.054688-0.042969-0.078125-0.10156-0.078125-0.17188 0-0.074219 0.023437-0.13672 0.078125-0.1875 0.050781-0.042969 0.14062-0.0625 0.26562-0.0625h0.67188v-6.4844h-0.67188c-0.125 0-0.21484-0.023437-0.26562-0.078125-0.054688-0.050781-0.078125-0.11328-0.078125-0.1875 0-0.070312 0.023437-0.12891 0.078125-0.17188 0.050781-0.050781 0.14062-0.078125 0.26562-0.078125zm4.3594 2.4375c0-0.58203-0.21484-1.0781-0.64062-1.4844-0.41797-0.41406-0.92969-0.625-1.5312-0.625-0.61719 0-1.1367 0.21094-1.5625 0.625-0.41797 0.41797-0.625 0.91406-0.625 1.4844 0 0.58594 0.20703 1.0859 0.625 1.5 0.42578 0.40625 0.94531 0.60938 1.5625 0.60938 0.60156 0 1.1133-0.20312 1.5312-0.60938 0.42578-0.41406 0.64062-0.91406 0.64062-1.5z"/>
</symbol>
<symbol id="glyph1-19" overflow="visible">
<path d="m6.4219-4.1562h-5.4844c-0.11719 0-0.19922-0.023438-0.25-0.078125-0.054688-0.050781-0.078125-0.11328-0.078125-0.1875 0-0.070313 0.023437-0.12891 0.078125-0.17188 0.050781-0.050781 0.13281-0.078125 0.25-0.078125h5.4844c0.125 0 0.21094 0.027344 0.26562 0.078125 0.050781 0.042969 0.078125 0.10547 0.078125 0.1875 0 0.0625-0.027344 0.12109-0.078125 0.17188-0.054688 0.054687-0.14062 0.078125-0.26562 0.078125zm0 1.7969h-5.4844c-0.11719 0-0.19922-0.019531-0.25-0.0625-0.054688-0.050781-0.078125-0.11328-0.078125-0.1875 0-0.070313 0.023437-0.12891 0.078125-0.17188 0.050781-0.050781 0.13281-0.078125 0.25-0.078125h5.4844c0.125 0 0.21094 0.027344 0.26562 0.078125 0.050781 0.042969 0.078125 0.10156 0.078125 0.17188 0 0.074219-0.027344 0.13672-0.078125 0.1875-0.054688 0.042969-0.14062 0.0625-0.26562 0.0625z"/>
</symbol>
<symbol id="glyph1-20" overflow="visible">
<path d="m4.7188-4.0938c0.45703 0.21094 0.80469 0.49609 1.0469 0.85938 0.25 0.36719 0.375 0.74219 0.375 1.125 0 0.60547-0.24609 1.1367-0.73438 1.5938-0.49219 0.46094-1.1055 0.6875-1.8438 0.6875-0.42969 0-0.875-0.089844-1.3438-0.26562-0.46094-0.1875-0.78125-0.375-0.96875-0.5625-0.054688-0.0625-0.078125-0.12891-0.078125-0.20312 0-0.0625 0.019531-0.11719 0.0625-0.17188 0.050781-0.050781 0.10938-0.078125 0.17188-0.078125s0.12891 0.03125 0.20312 0.09375c0.625 0.46094 1.2812 0.6875 1.9688 0.6875 0.58203 0 1.0703-0.17969 1.4688-0.54688 0.39453-0.36328 0.59375-0.76953 0.59375-1.2188 0-0.30078-0.10156-0.59375-0.29688-0.875-0.1875-0.28906-0.46484-0.51953-0.82812-0.6875-0.36719-0.16406-0.73438-0.25-1.1094-0.25-0.11719 0-0.19922-0.019531-0.25-0.0625-0.054688-0.039062-0.078125-0.10156-0.078125-0.1875 0-0.070312 0.019531-0.12891 0.0625-0.17188 0.050781-0.050781 0.12891-0.078125 0.23438-0.078125l0.42188 0.015625c0.45703 0 0.83203-0.13281 1.125-0.40625 0.28906-0.28125 0.4375-0.60156 0.4375-0.96875 0-0.375-0.15625-0.70312-0.46875-0.98438-0.30469-0.28906-0.70312-0.4375-1.2031-0.4375-0.34375 0-0.66406 0.0625-0.95312 0.1875-0.29297 0.11719-0.52734 0.27734-0.70312 0.48438-0.0625 0.074219-0.10938 0.12109-0.14062 0.14062-0.03125 0.023438-0.074219 0.03125-0.125 0.03125-0.0625 0-0.12109-0.019531-0.17188-0.0625-0.042969-0.050781-0.0625-0.10938-0.0625-0.17188 0-0.16406 0.17188-0.36719 0.51562-0.60938 0.47656-0.34375 1.0234-0.51562 1.6406-0.51562 0.63281 0 1.1562 0.19531 1.5625 0.57812 0.41406 0.38672 0.625 0.83984 0.625 1.3594 0 0.33594-0.10156 0.65234-0.29688 0.95312-0.19922 0.30469-0.48438 0.54297-0.85938 0.71875z"/>
</symbol>
<symbol id="glyph1-21" overflow="visible">
<path d="m1.5156-0.5h3.8594v-0.20312c0-0.11328 0.019531-0.19531 0.0625-0.25 0.050781-0.050781 0.11719-0.078125 0.20312-0.078125 0.070313 0 0.12891 0.027344 0.17188 0.078125 0.050781 0.054687 0.078125 0.13672 0.078125 0.25v0.70312h-4.8594v-0.75c1.0195-0.91406 2.0078-1.8477 2.9688-2.7969 0.45703-0.4375 0.76953-0.75781 0.9375-0.96875 0.16406-0.20703 0.28125-0.39062 0.34375-0.54688 0.0625-0.16406 0.09375-0.32812 0.09375-0.48438 0-0.42578-0.17969-0.80469-0.53125-1.1406-0.34375-0.33203-0.76172-0.5-1.25-0.5-0.4375 0-0.82812 0.125-1.1719 0.375-0.33594 0.25-0.55469 0.5625-0.65625 0.9375-0.023437 0.09375-0.054687 0.15625-0.09375 0.1875-0.042969 0.042969-0.09375 0.0625-0.15625 0.0625-0.074219 0-0.13672-0.019531-0.1875-0.0625-0.042969-0.050781-0.0625-0.10938-0.0625-0.17188 0-0.19531 0.10156-0.45703 0.3125-0.78125 0.21875-0.33203 0.50781-0.59375 0.875-0.78125 0.36328-0.1875 0.74219-0.28125 1.1406-0.28125 0.625 0 1.1602 0.21875 1.6094 0.65625 0.44531 0.4375 0.67188 0.93359 0.67188 1.4844 0 0.23047-0.039062 0.44531-0.10938 0.64062-0.074219 0.1875-0.20312 0.39844-0.39062 0.625-0.17969 0.23047-0.5 0.57812-0.96875 1.0469-1.1875 1.168-2.1523 2.0742-2.8906 2.7188z"/>
</symbol>
<symbol id="glyph1-22" overflow="visible">
<path d="m3.9375-7v8.0469h1.2188c0.125 0 0.20703 0.019531 0.25 0.0625 0.050781 0.050781 0.078125 0.11328 0.078125 0.1875 0 0.070313-0.027344 0.12891-0.078125 0.17188-0.042969 0.050781-0.125 0.078125-0.25 0.078125h-1.7188v-9.0625h1.7188c0.125 0 0.20703 0.027344 0.25 0.078125 0.050781 0.042969 0.078125 0.10156 0.078125 0.17188 0 0.074219-0.027344 0.13672-0.078125 0.1875-0.042969 0.054687-0.125 0.078125-0.25 0.078125z"/>
</symbol>
<symbol id="glyph1-23" overflow="visible">
<path d="m4.0312-2.7188 2.2969 2.2188c0.15625 0 0.25 0.007812 0.28125 0.015625 0.039063 0.011719 0.078125 0.042969 0.10938 0.09375 0.03125 0.042969 0.046875 0.089844 0.046875 0.14062 0 0.074219-0.027344 0.13672-0.078125 0.1875-0.054688 0.042969-0.14062 0.0625-0.26562 0.0625h-1.6094c-0.125 0-0.21484-0.019531-0.26562-0.0625-0.054687-0.050781-0.078125-0.11328-0.078125-0.1875 0-0.070312 0.023438-0.12891 0.078125-0.17188 0.050781-0.050781 0.14062-0.078125 0.26562-0.078125h0.82812l-1.9531-1.875-1.9531 1.875h0.84375c0.11328 0 0.19531 0.027344 0.25 0.078125 0.050781 0.042969 0.078125 0.10156 0.078125 0.17188 0 0.074219-0.027344 0.13672-0.078125 0.1875-0.054687 0.042969-0.13672 0.0625-0.25 0.0625h-1.6406c-0.11719 0-0.19922-0.019531-0.25-0.0625-0.054688-0.050781-0.078125-0.11328-0.078125-0.1875 0-0.050781 0.007813-0.097656 0.03125-0.14062 0.03125-0.050781 0.066406-0.082031 0.10938-0.09375 0.039062-0.007813 0.13281-0.015625 0.28125-0.015625l2.3125-2.2188-2.0469-1.9531c-0.14844 0-0.24219-0.00391-0.28125-0.015625-0.03125-0.019531-0.0625-0.050781-0.09375-0.09375-0.03125-0.050781-0.046875-0.10156-0.046875-0.15625 0-0.070312 0.023438-0.12891 0.078125-0.17188 0.050781-0.050781 0.14062-0.078125 0.26562-0.078125h1.375c0.11328 0 0.19531 0.027344 0.25 0.078125 0.050781 0.042969 0.078125 0.10547 0.078125 0.1875 0 0.0625-0.027344 0.12109-0.078125 0.17188-0.054688 0.054688-0.13672 0.078125-0.25 0.078125h-0.60938l1.7031 1.625 1.7031-1.625h-0.59375c-0.125 0-0.21484-0.023437-0.26562-0.078125-0.054688-0.050781-0.078125-0.11328-0.078125-0.1875 0-0.070312 0.023437-0.12891 0.078125-0.17188 0.050781-0.050781 0.14062-0.078125 0.26562-0.078125h1.3594c0.125 0 0.21094 0.027344 0.26562 0.078125 0.050781 0.042969 0.078125 0.10547 0.078125 0.1875 0 0.042969-0.015625 0.089844-0.046875 0.14062-0.03125 0.042969-0.070313 0.074219-0.10938 0.09375-0.03125 0.011719-0.12109 0.015625-0.26562 0.015625z"/>
</symbol>
<symbol id="glyph1-24" overflow="visible">
<path d="m2.6875-1.8125h1.625l-1.7656 3.3125c-0.11719 0.19531-0.24609 0.29688-0.39062 0.29688-0.10547 0-0.19531-0.039063-0.26562-0.10938-0.0625-0.0625-0.09375-0.14844-0.09375-0.25 0-0.042969 0.00391-0.085938 0.015625-0.125z"/>
</symbol>
<symbol id="glyph1-25" overflow="visible">
<path d="m3.3438-4.6719v4.1719h2.2188c0.11328 0 0.19531 0.027344 0.25 0.078125 0.050781 0.042969 0.078125 0.10156 0.078125 0.17188 0 0.074219-0.027344 0.13672-0.078125 0.1875-0.054688 0.042969-0.13672 0.0625-0.25 0.0625h-3.9375c-0.125 0-0.21484-0.019531-0.26562-0.0625-0.054687-0.050781-0.078125-0.11328-0.078125-0.1875 0-0.070312 0.023438-0.12891 0.078125-0.17188 0.050781-0.050781 0.14062-0.078125 0.26562-0.078125h1.2188v-4.1719h-1.0938c-0.125 0-0.21484-0.023437-0.26562-0.078125-0.054687-0.050781-0.078125-0.11328-0.078125-0.1875 0-0.070312 0.023438-0.12891 0.078125-0.17188 0.050781-0.050781 0.14062-0.078125 0.26562-0.078125h1.0938v-0.76562c0-0.41406 0.17188-0.78125 0.51562-1.0938s0.79688-0.46875 1.3594-0.46875c0.47656 0 0.98438 0.042969 1.5156 0.125 0.20703 0.03125 0.33203 0.074219 0.375 0.125 0.039063 0.042969 0.0625 0.10156 0.0625 0.17188 0 0.074219-0.027344 0.13672-0.078125 0.1875-0.042969 0.042969-0.10547 0.0625-0.1875 0.0625-0.03125 0-0.085938-0.007812-0.15625-0.03125-0.60547-0.082031-1.1172-0.125-1.5312-0.125-0.4375 0-0.77734 0.10938-1.0156 0.32812-0.24219 0.21094-0.35938 0.44922-0.35938 0.71875v0.76562h2.3594c0.11328 0 0.19531 0.027344 0.25 0.078125 0.050781 0.042969 0.078125 0.10547 0.078125 0.1875 0 0.0625-0.027344 0.12109-0.078125 0.17188-0.054687 0.054688-0.13672 0.078125-0.25 0.078125z"/>
</symbol>
<symbol id="glyph1-26" overflow="visible">
<path d="m3.4375 1.0469v-8.0469h-1.2031c-0.125 0-0.21484-0.023438-0.26562-0.078125-0.054688-0.050781-0.078125-0.11328-0.078125-0.1875 0-0.070313 0.023437-0.12891 0.078125-0.17188 0.050781-0.050781 0.14062-0.078125 0.26562-0.078125h1.7188v9.0625h-1.7188c-0.125 0-0.21484-0.027344-0.26562-0.078125-0.054688-0.042969-0.078125-0.10156-0.078125-0.17188 0-0.074219 0.023437-0.13672 0.078125-0.1875 0.050781-0.042969 0.14062-0.0625 0.26562-0.0625z"/>
</symbol>
<symbol id="glyph1-27" overflow="visible">
<path d="m5.9844-4.375v1.25c0 1.0742-0.25781 1.9297-0.76562 2.5625-0.40625 0.49219-0.91797 0.73438-1.5312 0.73438-0.29297 0-0.57031-0.058594-0.82812-0.17188-0.26172-0.11328-0.48438-0.27344-0.67188-0.48438-0.11719-0.13281-0.24609-0.34766-0.39062-0.64062-0.13672-0.28906-0.23047-0.55469-0.28125-0.79688-0.09375-0.34375-0.14062-0.74219-0.14062-1.2031v-1.25c0-1.082 0.25391-1.9414 0.76562-2.5781 0.40625-0.5 0.91406-0.75 1.5312-0.75 0.30078 0 0.58203 0.0625 0.84375 0.1875 0.25781 0.11719 0.47656 0.27734 0.65625 0.48438 0.125 0.13672 0.25391 0.35156 0.39062 0.64062 0.13281 0.29297 0.23438 0.55859 0.29688 0.79688 0.082031 0.34375 0.125 0.75 0.125 1.2188zm-0.5 0.0625c0-0.47656-0.070313-0.92188-0.20312-1.3281-0.13672-0.40625-0.28906-0.73438-0.45312-0.98438-0.09375-0.13281-0.22656-0.25391-0.39062-0.35938-0.21875-0.13281-0.47656-0.20312-0.76562-0.20312-0.5625 0-1.0078 0.28906-1.3281 0.85938-0.3125 0.57422-0.46875 1.2461-0.46875 2.0156v1.1094c0 0.48047 0.066406 0.92969 0.20312 1.3438 0.13281 0.40625 0.28516 0.73047 0.45312 0.96875 0.09375 0.13672 0.22266 0.25781 0.39062 0.35938 0.22656 0.13672 0.48438 0.20312 0.76562 0.20312 0.5625 0 1-0.28516 1.3125-0.85938 0.32031-0.57031 0.48438-1.2422 0.48438-2.0156z"/>
</symbol>
<symbol id="glyph1-28" overflow="visible">
<path d="m4.4062-7.7656v1.2969h-0.75v-1.2969zm0.03125 3.0938h-3c-0.11719 0-0.19922-0.023437-0.25-0.078125-0.054688-0.050781-0.078125-0.11328-0.078125-0.1875 0-0.070312 0.019531-0.12891 0.0625-0.17188 0.050781-0.050781 0.14062-0.078125 0.26562-0.078125h3.5v5.5469c0 0.42578-0.089844 0.78125-0.26562 1.0625-0.17969 0.28906-0.44531 0.52344-0.79688 0.70312-0.24219 0.125-0.52734 0.1875-0.85938 0.1875h-1.6094c-0.11719 0-0.19922-0.027344-0.25-0.078125-0.054688-0.042969-0.078125-0.10156-0.078125-0.17188 0-0.074219 0.023437-0.13672 0.078125-0.1875 0.050781-0.054688 0.13281-0.078125 0.25-0.078125l1.5938 0.015625c0.42578 0 0.76953-0.14062 1.0312-0.42188 0.26953-0.28125 0.40625-0.625 0.40625-1.0312z"/>
</symbol>
<symbol id="glyph1-29" overflow="visible">
<path d="m5.7812-4.6719v-0.17188c0-0.125 0.019531-0.21094 0.0625-0.26562 0.050781-0.050781 0.11328-0.078125 0.1875-0.078125 0.070312 0 0.12891 0.027344 0.17188 0.078125 0.050781 0.054687 0.078125 0.14062 0.078125 0.26562v1.1406c0 0.125-0.027344 0.21484-0.078125 0.26562-0.042969 0.054688-0.10156 0.078125-0.17188 0.078125-0.074219 0-0.13281-0.019531-0.17188-0.0625-0.042969-0.050781-0.070313-0.13281-0.078125-0.25-0.023438-0.28125-0.21094-0.54688-0.5625-0.79688-0.34375-0.25781-0.8125-0.39062-1.4062-0.39062-0.75 0-1.3203 0.23438-1.7031 0.70312-0.38672 0.46875-0.57812 1.0078-0.57812 1.6094 0 0.64844 0.21094 1.1836 0.64062 1.6094 0.42578 0.41797 0.97656 0.625 1.6562 0.625 0.38281 0 0.78125-0.066406 1.1875-0.20312 0.40625-0.14453 0.77344-0.37891 1.1094-0.70312 0.082031-0.070312 0.15625-0.10938 0.21875-0.10938s0.11328 0.023437 0.15625 0.0625c0.050781 0.042969 0.078125 0.10156 0.078125 0.17188 0 0.16797-0.19922 0.38672-0.59375 0.65625-0.65625 0.42969-1.3867 0.64062-2.1875 0.64062-0.80469 0-1.4648-0.25781-1.9844-0.78125-0.52344-0.51953-0.78125-1.1758-0.78125-1.9688 0-0.8125 0.26562-1.4844 0.79688-2.0156s1.2031-0.79688 2.0156-0.79688c0.76953 0 1.4141 0.23047 1.9375 0.6875z"/>
</symbol>
<symbol id="glyph1-30" overflow="visible">
<path d="m4.125 0h-0.85938l-2.0625-4.6719h-0.51562c-0.11719 0-0.19922-0.023437-0.25-0.078125-0.054688-0.050781-0.078125-0.11328-0.078125-0.1875 0-0.070312 0.023437-0.12891 0.078125-0.17188 0.050781-0.050781 0.13281-0.078125 0.25-0.078125h1.8906c0.11328 0 0.19531 0.027344 0.25 0.078125 0.050781 0.042969 0.078125 0.10547 0.078125 0.1875 0 0.0625-0.027344 0.12109-0.078125 0.17188-0.054687 0.054688-0.13672 0.078125-0.25 0.078125h-0.82812l1.8438 4.1719h0.21875l1.8125-4.1719h-0.84375c-0.125 0-0.21484-0.023437-0.26562-0.078125-0.054687-0.050781-0.078125-0.11328-0.078125-0.1875 0-0.070312 0.023438-0.12891 0.078125-0.17188 0.050781-0.050781 0.14062-0.078125 0.26562-0.078125h1.8906c0.125 0 0.20703 0.027344 0.25 0.078125 0.050781 0.042969 0.078125 0.10547 0.078125 0.1875 0 0.0625-0.027344 0.12109-0.078125 0.17188-0.042969 0.054688-0.125 0.078125-0.25 0.078125h-0.51562z"/>
</symbol>
<symbol id="glyph1-31" overflow="visible">
<path d="m3.625-2.9844c0-0.45703 0.054688-0.94141 0.17188-1.4531 0.125-0.51953 0.35156-1.1133 0.6875-1.7812 0.34375-0.67578 0.59375-1.0859 0.75-1.2344 0.050781-0.039063 0.10156-0.0625 0.15625-0.0625 0.070313 0 0.12891 0.027344 0.17188 0.078125 0.050781 0.042969 0.078125 0.10156 0.078125 0.17188 0 0.042969-0.011719 0.085937-0.03125 0.125-0.4375 0.8125-0.75 1.5469-0.9375 2.2031-0.1875 0.64844-0.28125 1.2969-0.28125 1.9531s0.09375 1.3125 0.28125 1.9688 0.5 1.3828 0.9375 2.1875c0.019531 0.050781 0.03125 0.097656 0.03125 0.14062 0 0.0625-0.027344 0.11719-0.078125 0.17188-0.042969 0.050781-0.10156 0.078125-0.17188 0.078125-0.054687 0-0.10547-0.027344-0.15625-0.078125-0.14844-0.13672-0.39062-0.53125-0.73438-1.1875-0.33594-0.65625-0.5625-1.2344-0.6875-1.7344-0.125-0.50781-0.1875-1.0234-0.1875-1.5469z"/>
</symbol>
<symbol id="glyph1-32" overflow="visible">
<path d="m3.8281-2.9844c0 0.46875-0.0625 0.96094-0.1875 1.4688-0.11719 0.51172-0.34375 1.1055-0.6875 1.7812-0.33594 0.67578-0.57812 1.082-0.73438 1.2188-0.054688 0.050781-0.10547 0.078125-0.15625 0.078125-0.074219 0-0.13672-0.027344-0.1875-0.078125-0.054688-0.054687-0.078125-0.10938-0.078125-0.17188 0-0.042969 0.015625-0.089844 0.046875-0.14062 0.4375-0.80469 0.75-1.5312 0.9375-2.1875s0.28125-1.3125 0.28125-1.9688-0.09375-1.3047-0.28125-1.9531c-0.1875-0.65625-0.5-1.3906-0.9375-2.2031-0.03125-0.039063-0.046875-0.082031-0.046875-0.125 0-0.070313 0.023437-0.12891 0.078125-0.17188 0.050781-0.050781 0.11328-0.078125 0.1875-0.078125 0.050781 0 0.10156 0.023437 0.15625 0.0625 0.14453 0.13672 0.38281 0.53906 0.71875 1.2031 0.33203 0.65625 0.5625 1.2422 0.6875 1.75 0.13281 0.5 0.20312 1.0078 0.20312 1.5156z"/>
</symbol>
<symbol id="glyph1-33" overflow="visible">
<path d="m5.1406-1.8125v-0.0625c-0.09375 0.023438-0.18359 0.039062-0.26562 0.046875h-0.23438c-0.49219 0-0.89844-0.14844-1.2188-0.45312-0.3125-0.30078-0.46875-0.67188-0.46875-1.1094 0-0.48828 0.19141-0.91016 0.57812-1.2656 0.39453-0.35156 0.92969-0.53125 1.6094-0.53125v-0.57812c0-0.4375-0.13672-0.79688-0.40625-1.0781-0.27344-0.28125-0.60938-0.42188-1.0156-0.42188-0.28125 0-0.54688 0.074219-0.79688 0.21875-0.17969 0.10547-0.32422 0.23047-0.4375 0.375-0.1875 0.25-0.35156 0.55469-0.48438 0.90625-0.13672 0.35547-0.20312 0.79297-0.20312 1.3125v1.9844c0 0.77344 0.17578 1.4219 0.53125 1.9531 0.35156 0.53125 0.83203 0.79688 1.4375 0.79688 0.60156 0 1.0547-0.14844 1.3594-0.4375 0.0625-0.0625 0.125-0.09375 0.1875-0.09375 0.070312 0 0.12891 0.027344 0.17188 0.078125 0.050781 0.042969 0.078125 0.10156 0.078125 0.17188 0 0.125-0.12109 0.25781-0.35938 0.40625-0.38672 0.25-0.88672 0.375-1.5 0.375-0.32422 0-0.62109-0.0625-0.89062-0.1875-0.26172-0.11719-0.48047-0.27734-0.65625-0.48438-0.11719-0.125-0.25-0.33203-0.40625-0.625-0.15625-0.30078-0.26562-0.56641-0.32812-0.79688-0.09375-0.32031-0.14062-0.70703-0.14062-1.1562v-2.0156c0-1.0195 0.27344-1.8516 0.82812-2.5 0.42578-0.51953 0.95312-0.78125 1.5781-0.78125 0.33203 0 0.63281 0.070313 0.90625 0.20312 0.28125 0.13672 0.52344 0.36719 0.73438 0.6875 0.20703 0.32422 0.3125 0.69531 0.3125 1.1094v3.4531c0.082031 0.011719 0.14453 0.039062 0.1875 0.078125 0.039063 0.042969 0.0625 0.10156 0.0625 0.17188 0 0.054688-0.015625 0.10156-0.046875 0.14062-0.023438 0.042969-0.054688 0.074219-0.09375 0.09375-0.03125 0.011719-0.10156 0.015625-0.20312 0.015625zm0-2.875c-0.52344 0.011719-0.93359 0.14844-1.2344 0.40625-0.29297 0.25-0.4375 0.54688-0.4375 0.89062 0 0.30469 0.10156 0.55859 0.3125 0.76562 0.21875 0.19922 0.52344 0.29688 0.92188 0.29688 0.0625 0 0.12891-0.00391 0.20312-0.015625 0.082031-0.00781 0.16016-0.023438 0.23438-0.046875z"/>
</symbol>
<symbol id="glyph1-34" overflow="visible">
<path d="m5.3438-4.8594c0-0.11328 0.019531-0.19531 0.0625-0.25 0.050781-0.050781 0.11328-0.078125 0.1875-0.078125 0.070312 0 0.12891 0.027344 0.17188 0.078125 0.050781 0.054687 0.078125 0.14062 0.078125 0.26562v0.85938c0 0.125-0.027344 0.21484-0.078125 0.26562-0.042969 0.054688-0.10156 0.078125-0.17188 0.078125-0.074219 0-0.13281-0.019531-0.17188-0.0625-0.042969-0.050781-0.070313-0.125-0.078125-0.21875-0.023438-0.23828-0.14844-0.4375-0.375-0.59375-0.32422-0.22656-0.75781-0.34375-1.2969-0.34375-0.5625 0-1 0.11719-1.3125 0.34375-0.24219 0.16797-0.35938 0.35938-0.35938 0.57812 0 0.24219 0.14062 0.4375 0.42188 0.59375 0.19531 0.11719 0.5625 0.20312 1.0938 0.26562 0.69531 0.074219 1.1797 0.15625 1.4531 0.25 0.38281 0.13672 0.67188 0.32812 0.85938 0.57812 0.19531 0.25 0.29688 0.52344 0.29688 0.8125 0 0.42969-0.21094 0.80859-0.625 1.1406-0.40625 0.33203-1.0117 0.5-1.8125 0.5-0.79297 0-1.4375-0.20312-1.9375-0.60938 0 0.13672-0.011719 0.22656-0.03125 0.26562-0.023438 0.042969-0.054688 0.078125-0.09375 0.10938-0.042969 0.023438-0.089844 0.03125-0.14062 0.03125-0.0625 0-0.12109-0.023438-0.17188-0.078125-0.054688-0.050781-0.078125-0.13281-0.078125-0.25v-1.0469c0-0.11328 0.019531-0.19531 0.0625-0.25 0.050781-0.050781 0.11328-0.078125 0.1875-0.078125 0.070313 0 0.13281 0.027344 0.1875 0.078125 0.050781 0.042969 0.078125 0.10547 0.078125 0.1875 0 0.1875 0.046875 0.34375 0.14062 0.46875 0.13281 0.1875 0.35156 0.34375 0.65625 0.46875 0.3125 0.125 0.6875 0.1875 1.125 0.1875 0.65625 0 1.1445-0.11719 1.4688-0.35938 0.32031-0.23828 0.48438-0.49219 0.48438-0.76562 0-0.3125-0.16797-0.5625-0.5-0.75-0.32422-0.1875-0.79688-0.3125-1.4219-0.375-0.625-0.070312-1.0742-0.16016-1.3438-0.26562-0.27344-0.10156-0.48438-0.25391-0.64062-0.45312-0.14844-0.20703-0.21875-0.42969-0.21875-0.67188 0-0.4375 0.20703-0.78125 0.625-1.0312 0.42578-0.25 0.92969-0.375 1.5156-0.375 0.69531 0 1.2656 0.16797 1.7031 0.5z"/>
</symbol>
<symbol id="glyph1-35" overflow="visible">
<path d="m5.4219 0h-0.625l-1.1094-3.2344-1.1094 3.2344h-0.625l-1.0312-4.6719h-0.25c-0.125 0-0.21484-0.023437-0.26562-0.078125-0.054688-0.050781-0.078125-0.11328-0.078125-0.1875 0-0.070312 0.023437-0.12891 0.078125-0.17188 0.050781-0.050781 0.14062-0.078125 0.26562-0.078125h1.375c0.125 0 0.21094 0.027344 0.26562 0.078125 0.050781 0.042969 0.078125 0.10547 0.078125 0.1875 0 0.0625-0.027344 0.12109-0.078125 0.17188-0.054688 0.054688-0.14062 0.078125-0.26562 0.078125h-0.64062l0.90625 3.9844 1.0625-3.1875h0.60938l1.0938 3.1875 0.85938-3.9844h-0.64062c-0.11719 0-0.20312-0.023437-0.26562-0.078125-0.054688-0.050781-0.078125-0.11328-0.078125-0.1875 0-0.070312 0.023437-0.12891 0.078125-0.17188 0.050781-0.050781 0.14062-0.078125 0.26562-0.078125h1.375c0.125 0 0.21094 0.027344 0.26562 0.078125 0.050781 0.042969 0.078125 0.10547 0.078125 0.1875 0 0.0625-0.027344 0.12109-0.078125 0.17188-0.054688 0.054688-0.14062 0.078125-0.26562 0.078125h-0.23438z"/>
</symbol>
<symbol id="glyph1-36" overflow="visible">
<path d="m3.9219-7.625v7.125h1.7344c0.11328 0 0.19531 0.027344 0.25 0.078125 0.050781 0.042969 0.078125 0.10156 0.078125 0.17188 0 0.074219-0.027344 0.13672-0.078125 0.1875-0.054688 0.042969-0.13672 0.0625-0.25 0.0625h-3.9531c-0.125 0-0.21484-0.019531-0.26562-0.0625-0.054688-0.050781-0.078125-0.11328-0.078125-0.1875 0-0.070312 0.023437-0.12891 0.078125-0.17188 0.050781-0.050781 0.14062-0.078125 0.26562-0.078125h1.7188v-6.4219l-1.6406 0.51562c-0.074219 0.023438-0.13281 0.03125-0.17188 0.03125-0.0625 0-0.12109-0.019531-0.17188-0.0625-0.042969-0.050781-0.0625-0.11328-0.0625-0.1875 0-0.0625 0.019531-0.11719 0.0625-0.17188 0.03125-0.03125 0.09375-0.0625 0.1875-0.09375z"/>
</symbol>
<symbol id="glyph1-37" overflow="visible">
<path d="m1.3906-5.1875v0.51562c0.42578-0.45703 0.85156-0.6875 1.2812-0.6875 0.25781 0 0.48828 0.070313 0.6875 0.20312 0.19531 0.13672 0.35938 0.34375 0.48438 0.625 0.22656-0.28125 0.45703-0.48828 0.6875-0.625 0.22656-0.13281 0.45703-0.20312 0.6875-0.20312 0.36328 0 0.65625 0.11719 0.875 0.34375 0.28125 0.30469 0.42188 0.63672 0.42188 1v3.5156h0.42188c0.125 0 0.21094 0.027344 0.26562 0.078125 0.050781 0.042969 0.078125 0.10156 0.078125 0.17188 0 0.074219-0.027344 0.13672-0.078125 0.1875-0.054687 0.042969-0.14062 0.0625-0.26562 0.0625h-0.92188v-3.9688c0-0.25781-0.078125-0.47266-0.23438-0.64062-0.15625-0.16406-0.33984-0.25-0.54688-0.25-0.17969 0-0.37109 0.074219-0.57812 0.21875-0.19922 0.13672-0.42969 0.40234-0.6875 0.79688v3.3438h0.42188c0.11328 0 0.19531 0.027344 0.25 0.078125 0.050781 0.042969 0.078125 0.10156 0.078125 0.17188 0 0.074219-0.027344 0.13672-0.078125 0.1875-0.054687 0.042969-0.13672 0.0625-0.25 0.0625h-0.9375v-3.9375c0-0.26953-0.078125-0.48828-0.23438-0.65625-0.15625-0.17578-0.33594-0.26562-0.53125-0.26562-0.17969 0-0.35547 0.058594-0.53125 0.17188-0.24219 0.16797-0.49609 0.44922-0.76562 0.84375v3.3438h0.42188c0.125 0 0.21094 0.027344 0.26562 0.078125 0.050781 0.042969 0.078125 0.10156 0.078125 0.17188 0 0.074219-0.027344 0.13672-0.078125 0.1875-0.054687 0.042969-0.14062 0.0625-0.26562 0.0625h-1.3438c-0.125 0-0.21484-0.019531-0.26562-0.0625-0.054687-0.050781-0.078125-0.11328-0.078125-0.1875 0-0.070312 0.023438-0.12891 0.078125-0.17188 0.050781-0.050781 0.14062-0.078125 0.26562-0.078125h0.42188v-4.1719h-0.42188c-0.125 0-0.21484-0.023437-0.26562-0.078125-0.054687-0.050781-0.078125-0.11328-0.078125-0.1875 0-0.070312 0.023438-0.12891 0.078125-0.17188 0.050781-0.050781 0.14062-0.078125 0.26562-0.078125z"/>
</symbol>
<symbol id="glyph1-38" overflow="visible">
<path d="m4.7188-3.9062c0.41406 0.21094 0.72656 0.48047 0.9375 0.8125 0.21875 0.33594 0.32812 0.69531 0.32812 1.0781 0 0.59375-0.22656 1.1094-0.67188 1.5469-0.44922 0.42969-0.99219 0.64062-1.625 0.64062-0.64844 0-1.1953-0.21094-1.6406-0.64062-0.4375-0.4375-0.65625-0.95312-0.65625-1.5469 0-0.38281 0.10156-0.74219 0.3125-1.0781 0.21875-0.33203 0.53516-0.60156 0.95312-0.8125-0.36719-0.20703-0.63281-0.42578-0.79688-0.65625-0.23047-0.32031-0.34375-0.67578-0.34375-1.0625 0-0.55078 0.20703-1.0352 0.625-1.4531 0.42578-0.41406 0.94141-0.625 1.5469-0.625 0.60156 0 1.1133 0.21094 1.5312 0.625 0.42578 0.41797 0.64062 0.90234 0.64062 1.4531 0 0.38672-0.11719 0.74219-0.34375 1.0625-0.16797 0.23047-0.43359 0.44922-0.79688 0.65625zm0.625-1.7031c0-0.4375-0.16406-0.80469-0.48438-1.1094-0.32422-0.3125-0.71875-0.46875-1.1875-0.46875-0.46094 0-0.85156 0.15625-1.1719 0.46875-0.32422 0.3125-0.48438 0.67969-0.48438 1.0938 0 0.39844 0.15625 0.74219 0.46875 1.0312 0.32031 0.29297 0.71875 0.4375 1.1875 0.4375 0.47656 0 0.875-0.14453 1.1875-0.4375 0.32031-0.28906 0.48438-0.62891 0.48438-1.0156zm0.14062 3.6094c0-0.44531-0.17188-0.83203-0.51562-1.1562-0.34375-0.33203-0.77344-0.5-1.2812-0.5-0.51172 0-0.9375 0.16797-1.2812 0.5-0.34375 0.32422-0.51562 0.70312-0.51562 1.1406 0 0.46094 0.17188 0.85547 0.51562 1.1875 0.34375 0.33594 0.76953 0.5 1.2812 0.5 0.5 0 0.92188-0.16406 1.2656-0.5 0.35156-0.33203 0.53125-0.72266 0.53125-1.1719z"/>
</symbol>
<symbol id="glyph1-39" overflow="visible">
<path d="m3.9219-6.5v6h1.3125c0.125 0 0.20703 0.027344 0.25 0.078125 0.050781 0.042969 0.078125 0.10156 0.078125 0.17188 0 0.074219-0.027344 0.13672-0.078125 0.1875-0.042969 0.042969-0.125 0.0625-0.25 0.0625h-3.125c-0.11719 0-0.19922-0.019531-0.25-0.0625-0.054687-0.050781-0.078125-0.11328-0.078125-0.1875 0-0.070312 0.023438-0.12891 0.078125-0.17188 0.050781-0.050781 0.13281-0.078125 0.25-0.078125h1.3125v-6h-2.0625v1.7344c0 0.125-0.027344 0.21484-0.078125 0.26562-0.042969 0.054688-0.10156 0.078125-0.17188 0.078125-0.074219 0-0.13672-0.023437-0.1875-0.078125-0.042969-0.050781-0.0625-0.14062-0.0625-0.26562v-2.2344h5.625v2.2344c0 0.125-0.023437 0.21484-0.0625 0.26562-0.042969 0.054688-0.10547 0.078125-0.1875 0.078125-0.074219 0-0.13672-0.023437-0.1875-0.078125-0.042969-0.050781-0.0625-0.14062-0.0625-0.26562v-1.7344z"/>
</symbol>
<symbol id="glyph1-40" overflow="visible">
<path d="m2.4688-3.3906v2.8906h1.7188c0.125 0 0.21094 0.027344 0.26562 0.078125 0.050781 0.042969 0.078125 0.10156 0.078125 0.17188 0 0.074219-0.027344 0.13672-0.078125 0.1875-0.054687 0.042969-0.14062 0.0625-0.26562 0.0625h-2.9062c-0.11719 0-0.19922-0.019531-0.25-0.0625-0.054688-0.050781-0.078125-0.11328-0.078125-0.1875 0-0.070312 0.023437-0.12891 0.078125-0.17188 0.050781-0.050781 0.13281-0.078125 0.25-0.078125h0.6875v-6h-0.6875c-0.11719 0-0.19922-0.019531-0.25-0.0625-0.054688-0.050781-0.078125-0.11328-0.078125-0.1875 0-0.082031 0.03125-0.14844 0.09375-0.20312 0.039063-0.03125 0.11719-0.046875 0.23438-0.046875h5.5469v1.7188c0 0.125-0.027344 0.21484-0.078125 0.26562-0.042969 0.054687-0.10156 0.078125-0.17188 0.078125-0.074219 0-0.13672-0.023438-0.1875-0.078125-0.054687-0.050781-0.078125-0.14062-0.078125-0.26562v-1.2188h-3.8438v2.6094h1.7969v-0.5625c0-0.125 0.019531-0.21094 0.0625-0.26562 0.050781-0.050781 0.11719-0.078125 0.20312-0.078125 0.070312 0 0.12891 0.027344 0.17188 0.078125 0.050781 0.054688 0.078125 0.14062 0.078125 0.26562v1.6406c0 0.11719-0.027344 0.19922-0.078125 0.25-0.042969 0.054688-0.10156 0.078125-0.17188 0.078125-0.085938 0-0.15234-0.023437-0.20312-0.078125-0.042969-0.050781-0.0625-0.13281-0.0625-0.25v-0.57812z"/>
</symbol>
<clipPath id="clip1">
<path d="m36 36h540v456.35h-540z"/>
</clipPath>
</defs>
<g transform="translate(-36,-36)" clip-path="url(#clip1)">
<path d="m36 492.35v-456.35h540v456.35z" fill="#fff"/>
</g>
<g transform="translate(-36,-36)">
<use x="274.88388" y="482.01486" width="100%" height="100%" xlink:href="#glyph0-4"/>
<use x="292.62811" y="482.01486" width="100%" height="100%" xlink:href="#glyph0-4"/>
<use x="318.24506" y="482.01486" width="100%" height="100%" xlink:href="#glyph0-4"/>
</g>
<path d="m119.12 37.227v-33.285h180.44v33.285z" fill="#87abfd" fill-opacity=".43922" stroke="#3a4fc2" stroke-linejoin="round" stroke-miterlimit="10" stroke-width=".87591"/>
<g transform="translate(-36,-36)">
<use x="162.13281" y="53.257042" width="100%" height="100%" xlink:href="#glyph1-1"/>
<use x="169.35559" y="53.257042" width="100%" height="100%" xlink:href="#glyph1-2"/>
<use x="176.57835" y="53.257042" width="100%" height="100%" xlink:href="#glyph1-3"/>
<use x="183.8134" y="53.257042" width="100%" height="100%" xlink:href="#glyph1-4"/>
<use x="191.03618" y="53.257042" width="100%" height="100%" xlink:href="#glyph1-5"/>
<use x="198.25894" y="53.257042" width="100%" height="100%" xlink:href="#glyph1-6"/>
<use x="162.13281" y="66.393761" width="100%" height="100%" xlink:href="#glyph1-7"/>
<use x="169.35559" y="66.393761" width="100%" height="100%" xlink:href="#glyph1-8"/>
<use x="176.57835" y="66.393761" width="100%" height="100%" xlink:href="#glyph1-4"/>
<use x="183.8134" y="66.393761" width="100%" height="100%" xlink:href="#glyph1-7"/>
<use x="191.03618" y="66.393761" width="100%" height="100%" xlink:href="#glyph1-9"/>
<use x="198.25894" y="66.393761" width="100%" height="100%" xlink:href="#glyph1-10"/>
<use x="205.48172" y="66.393761" width="100%" height="100%" xlink:href="#glyph1-8"/>
<use x="212.7045" y="66.393761" width="100%" height="100%" xlink:href="#glyph1-1"/>
<use x="219.93953" y="66.393761" width="100%" height="100%" xlink:href="#glyph1-9"/>
<use x="227.16231" y="66.393761" width="100%" height="100%" xlink:href="#glyph1-7"/>
<use x="234.38507" y="66.393761" width="100%" height="100%" xlink:href="#glyph1-11"/>
<use x="241.60785" y="66.393761" width="100%" height="100%" xlink:href="#glyph1-12"/>
<use x="248.83063" y="66.393761" width="100%" height="100%" xlink:href="#glyph1-1"/>
<use x="256.05341" y="66.393761" width="100%" height="100%" xlink:href="#glyph1-10"/>
<use x="263.28842" y="66.393761" width="100%" height="100%" xlink:href="#glyph1-13"/>
<use x="270.5112" y="66.393761" width="100%" height="100%" xlink:href="#glyph1-1"/>
<use x="277.73398" y="66.393761" width="100%" height="100%" xlink:href="#glyph1-4"/>
<use x="284.97952" y="66.393761" width="100%" height="100%" xlink:href="#glyph1-14"/>
<use x="292.2023" y="66.393761" width="100%" height="100%" xlink:href="#glyph1-15"/>
<use x="299.42508" y="66.393761" width="100%" height="100%" xlink:href="#glyph1-16"/>
<use x="306.66013" y="66.393761" width="100%" height="100%" xlink:href="#glyph1-3"/>
<use x="313.88287" y="66.393761" width="100%" height="100%" xlink:href="#glyph1-1"/>
<use x="321.10565" y="66.393761" width="100%" height="100%" xlink:href="#glyph1-4"/>
</g>
<path d="m3.5039 116.06v-46.422h411.68v46.422z" fill="#f3c7b0" fill-opacity=".43922" stroke="#3a4fc2" stroke-linejoin="round" stroke-miterlimit="10" stroke-width=".87591"/>
<g transform="translate(-36,-36)">
<use x="46.511719" y="118.94845" width="100%" height="100%" xlink:href="#glyph1-12"/>
<use x="53.734493" y="118.94845" width="100%" height="100%" xlink:href="#glyph1-1"/>
<use x="60.957268" y="118.94845" width="100%" height="100%" xlink:href="#glyph1-10"/>
<use x="68.192307" y="118.94845" width="100%" height="100%" xlink:href="#glyph1-13"/>
<use x="75.415077" y="118.94845" width="100%" height="100%" xlink:href="#glyph1-1"/>
<use x="82.637848" y="118.94845" width="100%" height="100%" xlink:href="#glyph1-4"/>
<use x="89.860626" y="118.94845" width="100%" height="100%" xlink:href="#glyph1-14"/>
<use x="97.083397" y="118.94845" width="100%" height="100%" xlink:href="#glyph1-15"/>
<use x="104.31844" y="118.94845" width="100%" height="100%" xlink:href="#glyph1-16"/>
<use x="111.54121" y="118.94845" width="100%" height="100%" xlink:href="#glyph1-3"/>
<use x="118.76398" y="118.94845" width="100%" height="100%" xlink:href="#glyph1-1"/>
<use x="125.98676" y="118.94845" width="100%" height="100%" xlink:href="#glyph1-4"/>
<use x="133.20953" y="118.94845" width="100%" height="100%" xlink:href="#glyph1-6"/>
<use x="140.43231" y="118.94845" width="100%" height="100%" xlink:href="#glyph1-7"/>
<use x="46.511719" y="132.08908" width="100%" height="100%" xlink:href="#glyph1-7"/>
<use x="53.734493" y="132.08908" width="100%" height="100%" xlink:href="#glyph1-11"/>
<use x="60.957268" y="132.08908" width="100%" height="100%" xlink:href="#glyph1-17"/>
<use x="68.192307" y="132.08908" width="100%" height="100%" xlink:href="#glyph1-14"/>
<use x="75.415077" y="132.08908" width="100%" height="100%" xlink:href="#glyph1-18"/>
<use x="82.637848" y="132.08908" width="100%" height="100%" xlink:href="#glyph1-12"/>
<use x="89.860626" y="132.08908" width="100%" height="100%" xlink:href="#glyph1-7"/>
<use x="97.083397" y="132.08908" width="100%" height="100%" xlink:href="#glyph1-19"/>
<use x="104.31844" y="132.08908" width="100%" height="100%" xlink:href="#glyph1-7"/>
<use x="111.54121" y="132.08908" width="100%" height="100%" xlink:href="#glyph1-18"/>
<use x="118.76398" y="132.08908" width="100%" height="100%" xlink:href="#glyph1-12"/>
<use x="125.98676" y="132.08908" width="100%" height="100%" xlink:href="#glyph1-17"/>
<use x="133.20953" y="132.08908" width="100%" height="100%" xlink:href="#glyph1-7"/>
<use x="140.43231" y="132.08908" width="100%" height="100%" xlink:href="#glyph1-17"/>
<use x="147.66734" y="132.08908" width="100%" height="100%" xlink:href="#glyph1-20"/>
<use x="154.89012" y="132.08908" width="100%" height="100%" xlink:href="#glyph1-21"/>
<use x="162.11288" y="132.08908" width="100%" height="100%" xlink:href="#glyph1-7"/>
<use x="169.35843" y="132.08908" width="100%" height="100%" xlink:href="#glyph1-22"/>
<use x="176.58121" y="132.08908" width="100%" height="100%" xlink:href="#glyph1-7"/>
<use x="183.80399" y="132.08908" width="100%" height="100%" xlink:href="#glyph1-11"/>
<use x="191.03902" y="132.08908" width="100%" height="100%" xlink:href="#glyph1-17"/>
<use x="198.2618" y="132.08908" width="100%" height="100%" xlink:href="#glyph1-14"/>
<use x="205.48457" y="132.08908" width="100%" height="100%" xlink:href="#glyph1-2"/>
<use x="212.70734" y="132.08908" width="100%" height="100%" xlink:href="#glyph1-1"/>
<use x="219.93011" y="132.08908" width="100%" height="100%" xlink:href="#glyph1-23"/>
<use x="227.16515" y="132.08908" width="100%" height="100%" xlink:href="#glyph1-3"/>
<use x="234.38792" y="132.08908" width="100%" height="100%" xlink:href="#glyph1-24"/>
<use x="241.6107" y="132.08908" width="100%" height="100%" xlink:href="#glyph1-7"/>
<use x="248.83348" y="132.08908" width="100%" height="100%" xlink:href="#glyph1-11"/>
<use x="256.05624" y="132.08908" width="100%" height="100%" xlink:href="#glyph1-25"/>
<use x="263.27902" y="132.08908" width="100%" height="100%" xlink:href="#glyph1-15"/>
<use x="270.51407" y="132.08908" width="100%" height="100%" xlink:href="#glyph1-4"/>
<use x="277.73685" y="132.08908" width="100%" height="100%" xlink:href="#glyph1-14"/>
<use x="284.95959" y="132.08908" width="100%" height="100%" xlink:href="#glyph1-15"/>
<use x="292.20514" y="132.08908" width="100%" height="100%" xlink:href="#glyph1-16"/>
<use x="299.42792" y="132.08908" width="100%" height="100%" xlink:href="#glyph1-3"/>
<use x="306.6507" y="132.08908" width="100%" height="100%" xlink:href="#glyph1-1"/>
<use x="313.88574" y="132.08908" width="100%" height="100%" xlink:href="#glyph1-4"/>
<use x="321.10852" y="132.08908" width="100%" height="100%" xlink:href="#glyph1-7"/>
<use x="328.3313" y="132.08908" width="100%" height="100%" xlink:href="#glyph1-26"/>
<use x="335.55405" y="132.08908" width="100%" height="100%" xlink:href="#glyph1-24"/>
<use x="342.77682" y="132.08908" width="100%" height="100%" xlink:href="#glyph1-7"/>
<use x="350.01187" y="132.08908" width="100%" height="100%" xlink:href="#glyph1-22"/>
<use x="357.23465" y="132.08908" width="100%" height="100%" xlink:href="#glyph1-7"/>
<use x="364.45743" y="132.08908" width="100%" height="100%" xlink:href="#glyph1-27"/>
<use x="371.68018" y="132.08908" width="100%" height="100%" xlink:href="#glyph1-24"/>
<use x="378.90295" y="132.08908" width="100%" height="100%" xlink:href="#glyph1-7"/>
<use x="386.12573" y="132.08908" width="100%" height="100%" xlink:href="#glyph1-11"/>
<use x="393.36078" y="132.08908" width="100%" height="100%" xlink:href="#glyph1-1"/>
<use x="400.58356" y="132.08908" width="100%" height="100%" xlink:href="#glyph1-2"/>
<use x="407.80634" y="132.08908" width="100%" height="100%" xlink:href="#glyph1-3"/>
<use x="415.05188" y="132.08908" width="100%" height="100%" xlink:href="#glyph1-4"/>
<use x="422.27463" y="132.08908" width="100%" height="100%" xlink:href="#glyph1-5"/>
<use x="429.49741" y="132.08908" width="100%" height="100%" xlink:href="#glyph1-7"/>
<use x="436.73245" y="132.08908" width="100%" height="100%" xlink:href="#glyph1-26"/>
<use x="46.511719" y="145.2258" width="100%" height="100%" xlink:href="#glyph1-7"/>
<use x="53.734493" y="145.2258" width="100%" height="100%" xlink:href="#glyph1-8"/>
<use x="60.957268" y="145.2258" width="100%" height="100%" xlink:href="#glyph1-4"/>
<use x="68.192307" y="145.2258" width="100%" height="100%" xlink:href="#glyph1-7"/>
<use x="75.415077" y="145.2258" width="100%" height="100%" xlink:href="#glyph1-9"/>
<use x="82.637848" y="145.2258" width="100%" height="100%" xlink:href="#glyph1-10"/>
<use x="89.860626" y="145.2258" width="100%" height="100%" xlink:href="#glyph1-8"/>
<use x="97.083397" y="145.2258" width="100%" height="100%" xlink:href="#glyph1-1"/>
<use x="104.31844" y="145.2258" width="100%" height="100%" xlink:href="#glyph1-9"/>
<use x="111.54121" y="145.2258" width="100%" height="100%" xlink:href="#glyph1-7"/>
<use x="118.76398" y="145.2258" width="100%" height="100%" xlink:href="#glyph1-11"/>
<use x="125.98676" y="145.2258" width="100%" height="100%" xlink:href="#glyph1-12"/>
<use x="133.20953" y="145.2258" width="100%" height="100%" xlink:href="#glyph1-1"/>
<use x="140.43231" y="145.2258" width="100%" height="100%" xlink:href="#glyph1-10"/>
<use x="147.66734" y="145.2258" width="100%" height="100%" xlink:href="#glyph1-13"/>
<use x="154.89012" y="145.2258" width="100%" height="100%" xlink:href="#glyph1-1"/>
<use x="162.11288" y="145.2258" width="100%" height="100%" xlink:href="#glyph1-4"/>
</g>
<g stroke-linejoin="round" stroke-miterlimit="10" stroke-width=".87591">
<path d="m209.34 37.461v23.285" fill="none" stroke="#000"/>
<path d="m212.41 60.859-3.0664 8.7617-3.0664-8.7617z" stroke="#000"/>
<path d="m116.93 254.45v-105.98h419.56v105.98z" fill="#b50c26" fill-opacity=".43922" stroke="#b50c26"/>
</g>
<g transform="translate(-36,-36)">
<use x="159.94141" y="197.78049" width="100%" height="100%" xlink:href="#glyph1-12"/>
<use x="167.16418" y="197.78049" width="100%" height="100%" xlink:href="#glyph1-1"/>
<use x="174.38695" y="197.78049" width="100%" height="100%" xlink:href="#glyph1-10"/>
<use x="181.62199" y="197.78049" width="100%" height="100%" xlink:href="#glyph1-13"/>
<use x="188.84476" y="197.78049" width="100%" height="100%" xlink:href="#glyph1-1"/>
<use x="196.06754" y="197.78049" width="100%" height="100%" xlink:href="#glyph1-4"/>
<use x="203.29031" y="197.78049" width="100%" height="100%" xlink:href="#glyph1-6"/>
<use x="210.51309" y="197.78049" width="100%" height="100%" xlink:href="#glyph1-7"/>
<use x="159.94141" y="210.92111" width="100%" height="100%" xlink:href="#glyph1-7"/>
<use x="167.16418" y="210.92111" width="100%" height="100%" xlink:href="#glyph1-11"/>
<use x="174.38695" y="210.92111" width="100%" height="100%" xlink:href="#glyph1-28"/>
<use x="181.62199" y="210.92111" width="100%" height="100%" xlink:href="#glyph1-7"/>
<use x="188.84476" y="210.92111" width="100%" height="100%" xlink:href="#glyph1-19"/>
<use x="196.06754" y="210.92111" width="100%" height="100%" xlink:href="#glyph1-7"/>
<use x="203.29031" y="210.92111" width="100%" height="100%" xlink:href="#glyph1-18"/>
<use x="210.51309" y="210.92111" width="100%" height="100%" xlink:href="#glyph1-12"/>
<use x="217.74812" y="210.92111" width="100%" height="100%" xlink:href="#glyph1-17"/>
<use x="224.9709" y="210.92111" width="100%" height="100%" xlink:href="#glyph1-7"/>
<use x="232.19366" y="210.92111" width="100%" height="100%" xlink:href="#glyph1-17"/>
<use x="239.41644" y="210.92111" width="100%" height="100%" xlink:href="#glyph1-20"/>
<use x="246.63922" y="210.92111" width="100%" height="100%" xlink:href="#glyph1-21"/>
<use x="253.862" y="210.92111" width="100%" height="100%" xlink:href="#glyph1-7"/>
<use x="261.09702" y="210.92111" width="100%" height="100%" xlink:href="#glyph1-22"/>
<use x="268.31979" y="210.92111" width="100%" height="100%" xlink:href="#glyph1-7"/>
<use x="275.54257" y="210.92111" width="100%" height="100%" xlink:href="#glyph1-11"/>
<use x="282.78812" y="210.92111" width="100%" height="100%" xlink:href="#glyph1-28"/>
<use x="290.01089" y="210.92111" width="100%" height="100%" xlink:href="#glyph1-14"/>
<use x="297.23367" y="210.92111" width="100%" height="100%" xlink:href="#glyph1-2"/>
<use x="304.46872" y="210.92111" width="100%" height="100%" xlink:href="#glyph1-1"/>
<use x="311.69147" y="210.92111" width="100%" height="100%" xlink:href="#glyph1-23"/>
<use x="318.91425" y="210.92111" width="100%" height="100%" xlink:href="#glyph1-3"/>
<use x="326.13702" y="210.92111" width="100%" height="100%" xlink:href="#glyph1-24"/>
<use x="333.3598" y="210.92111" width="100%" height="100%" xlink:href="#glyph1-7"/>
<use x="340.59485" y="210.92111" width="100%" height="100%" xlink:href="#glyph1-11"/>
<use x="347.81763" y="210.92111" width="100%" height="100%" xlink:href="#glyph1-12"/>
<use x="355.04037" y="210.92111" width="100%" height="100%" xlink:href="#glyph1-1"/>
<use x="362.26315" y="210.92111" width="100%" height="100%" xlink:href="#glyph1-10"/>
<use x="369.48593" y="210.92111" width="100%" height="100%" xlink:href="#glyph1-13"/>
<use x="376.70871" y="210.92111" width="100%" height="100%" xlink:href="#glyph1-1"/>
<use x="383.94376" y="210.92111" width="100%" height="100%" xlink:href="#glyph1-4"/>
<use x="391.1665" y="210.92111" width="100%" height="100%" xlink:href="#glyph1-7"/>
<use x="398.38928" y="210.92111" width="100%" height="100%" xlink:href="#glyph1-26"/>
<use x="405.63483" y="210.92111" width="100%" height="100%" xlink:href="#glyph1-24"/>
<use x="412.8576" y="210.92111" width="100%" height="100%" xlink:href="#glyph1-7"/>
<use x="420.08038" y="210.92111" width="100%" height="100%" xlink:href="#glyph1-22"/>
<use x="427.31543" y="210.92111" width="100%" height="100%" xlink:href="#glyph1-7"/>
<use x="434.53821" y="210.92111" width="100%" height="100%" xlink:href="#glyph1-27"/>
<use x="441.76096" y="210.92111" width="100%" height="100%" xlink:href="#glyph1-24"/>
<use x="448.98373" y="210.92111" width="100%" height="100%" xlink:href="#glyph1-7"/>
<use x="456.20651" y="210.92111" width="100%" height="100%" xlink:href="#glyph1-11"/>
<use x="463.44156" y="210.92111" width="100%" height="100%" xlink:href="#glyph1-12"/>
<use x="470.66434" y="210.92111" width="100%" height="100%" xlink:href="#glyph1-1"/>
<use x="477.88712" y="210.92111" width="100%" height="100%" xlink:href="#glyph1-10"/>
<use x="485.10986" y="210.92111" width="100%" height="100%" xlink:href="#glyph1-13"/>
<use x="492.33264" y="210.92111" width="100%" height="100%" xlink:href="#glyph1-1"/>
<use x="499.55542" y="210.92111" width="100%" height="100%" xlink:href="#glyph1-4"/>
<use x="506.79047" y="210.92111" width="100%" height="100%" xlink:href="#glyph1-14"/>
<use x="514.01324" y="210.92111" width="100%" height="100%" xlink:href="#glyph1-15"/>
<use x="521.23602" y="210.92111" width="100%" height="100%" xlink:href="#glyph1-16"/>
<use x="528.48157" y="210.92111" width="100%" height="100%" xlink:href="#glyph1-3"/>
<use x="535.70435" y="210.92111" width="100%" height="100%" xlink:href="#glyph1-1"/>
<use x="542.92712" y="210.92111" width="100%" height="100%" xlink:href="#glyph1-4"/>
<use x="550.16211" y="210.92111" width="100%" height="100%" xlink:href="#glyph1-7"/>
<use x="557.38489" y="210.92111" width="100%" height="100%" xlink:href="#glyph1-26"/>
<use x="159.94141" y="224.05783" width="100%" height="100%" xlink:href="#glyph1-7"/>
<use x="167.16418" y="224.05783" width="100%" height="100%" xlink:href="#glyph1-29"/>
<use x="174.38695" y="224.05783" width="100%" height="100%" xlink:href="#glyph1-10"/>
<use x="181.62199" y="224.05783" width="100%" height="100%" xlink:href="#glyph1-9"/>
<use x="188.84476" y="224.05783" width="100%" height="100%" xlink:href="#glyph1-9"/>
<use x="196.06754" y="224.05783" width="100%" height="100%" xlink:href="#glyph1-7"/>
<use x="203.29031" y="224.05783" width="100%" height="100%" xlink:href="#glyph1-30"/>
<use x="210.51309" y="224.05783" width="100%" height="100%" xlink:href="#glyph1-15"/>
<use x="217.74812" y="224.05783" width="100%" height="100%" xlink:href="#glyph1-17"/>
<use x="224.9709" y="224.05783" width="100%" height="100%" xlink:href="#glyph1-13"/>
<use x="232.19366" y="224.05783" width="100%" height="100%" xlink:href="#glyph1-7"/>
<use x="239.41644" y="224.05783" width="100%" height="100%" xlink:href="#glyph1-31"/>
<use x="246.63922" y="224.05783" width="100%" height="100%" xlink:href="#glyph1-17"/>
<use x="253.862" y="224.05783" width="100%" height="100%" xlink:href="#glyph1-20"/>
<use x="261.09702" y="224.05783" width="100%" height="100%" xlink:href="#glyph1-21"/>
<use x="268.31979" y="224.05783" width="100%" height="100%" xlink:href="#glyph1-24"/>
<use x="275.54257" y="224.05783" width="100%" height="100%" xlink:href="#glyph1-7"/>
<use x="282.78812" y="224.05783" width="100%" height="100%" xlink:href="#glyph1-14"/>
<use x="290.01089" y="224.05783" width="100%" height="100%" xlink:href="#glyph1-14"/>
<use x="297.23367" y="224.05783" width="100%" height="100%" xlink:href="#glyph1-14"/>
<use x="304.46872" y="224.05783" width="100%" height="100%" xlink:href="#glyph1-32"/>
<use x="311.69147" y="224.05783" width="100%" height="100%" xlink:href="#glyph1-7"/>
<use x="318.91425" y="224.05783" width="100%" height="100%" xlink:href="#glyph1-33"/>
<use x="326.13702" y="224.05783" width="100%" height="100%" xlink:href="#glyph1-8"/>
<use x="333.3598" y="224.05783" width="100%" height="100%" xlink:href="#glyph1-15"/>
<use x="340.59485" y="224.05783" width="100%" height="100%" xlink:href="#glyph1-13"/>
<use x="347.81763" y="224.05783" width="100%" height="100%" xlink:href="#glyph1-5"/>
<use x="355.04037" y="224.05783" width="100%" height="100%" xlink:href="#glyph1-31"/>
<use x="362.26315" y="224.05783" width="100%" height="100%" xlink:href="#glyph1-17"/>
<use x="369.48593" y="224.05783" width="100%" height="100%" xlink:href="#glyph1-20"/>
<use x="376.70871" y="224.05783" width="100%" height="100%" xlink:href="#glyph1-21"/>
<use x="383.94376" y="224.05783" width="100%" height="100%" xlink:href="#glyph1-7"/>
<use x="391.1665" y="224.05783" width="100%" height="100%" xlink:href="#glyph1-11"/>
<use x="398.38928" y="224.05783" width="100%" height="100%" xlink:href="#glyph1-17"/>
<use x="405.63483" y="224.05783" width="100%" height="100%" xlink:href="#glyph1-14"/>
<use x="412.8576" y="224.05783" width="100%" height="100%" xlink:href="#glyph1-18"/>
<use x="420.08038" y="224.05783" width="100%" height="100%" xlink:href="#glyph1-12"/>
<use x="427.31543" y="224.05783" width="100%" height="100%" xlink:href="#glyph1-24"/>
<use x="434.53821" y="224.05783" width="100%" height="100%" xlink:href="#glyph1-7"/>
<use x="441.76096" y="224.05783" width="100%" height="100%" xlink:href="#glyph1-17"/>
<use x="448.98373" y="224.05783" width="100%" height="100%" xlink:href="#glyph1-20"/>
<use x="456.20651" y="224.05783" width="100%" height="100%" xlink:href="#glyph1-21"/>
<use x="463.44156" y="224.05783" width="100%" height="100%" xlink:href="#glyph1-7"/>
<use x="470.66434" y="224.05783" width="100%" height="100%" xlink:href="#glyph1-11"/>
<use x="477.88712" y="224.05783" width="100%" height="100%" xlink:href="#glyph1-28"/>
<use x="485.10986" y="224.05783" width="100%" height="100%" xlink:href="#glyph1-32"/>
<use x="159.94141" y="237.19846" width="100%" height="100%" xlink:href="#glyph1-7"/>
<use x="167.16418" y="237.19846" width="100%" height="100%" xlink:href="#glyph1-11"/>
<use x="174.38695" y="237.19846" width="100%" height="100%" xlink:href="#glyph1-28"/>
<use x="181.62199" y="237.19846" width="100%" height="100%" xlink:href="#glyph1-14"/>
<use x="188.84476" y="237.19846" width="100%" height="100%" xlink:href="#glyph1-2"/>
<use x="196.06754" y="237.19846" width="100%" height="100%" xlink:href="#glyph1-1"/>
<use x="203.29031" y="237.19846" width="100%" height="100%" xlink:href="#glyph1-23"/>
<use x="210.51309" y="237.19846" width="100%" height="100%" xlink:href="#glyph1-3"/>
<use x="217.74812" y="237.19846" width="100%" height="100%" xlink:href="#glyph1-7"/>
<use x="224.9709" y="237.19846" width="100%" height="100%" xlink:href="#glyph1-19"/>
<use x="232.19366" y="237.19846" width="100%" height="100%" xlink:href="#glyph1-7"/>
<use x="239.41644" y="237.19846" width="100%" height="100%" xlink:href="#glyph1-10"/>
<use x="246.63922" y="237.19846" width="100%" height="100%" xlink:href="#glyph1-13"/>
<use x="253.862" y="237.19846" width="100%" height="100%" xlink:href="#glyph1-13"/>
<use x="261.09702" y="237.19846" width="100%" height="100%" xlink:href="#glyph1-7"/>
<use x="268.31979" y="237.19846" width="100%" height="100%" xlink:href="#glyph1-2"/>
<use x="275.54257" y="237.19846" width="100%" height="100%" xlink:href="#glyph1-34"/>
<use x="282.78812" y="237.19846" width="100%" height="100%" xlink:href="#glyph1-35"/>
<use x="290.01089" y="237.19846" width="100%" height="100%" xlink:href="#glyph1-7"/>
<use x="297.23367" y="237.19846" width="100%" height="100%" xlink:href="#glyph1-17"/>
<use x="304.46872" y="237.19846" width="100%" height="100%" xlink:href="#glyph1-20"/>
<use x="311.69147" y="237.19846" width="100%" height="100%" xlink:href="#glyph1-21"/>
<use x="318.91425" y="237.19846" width="100%" height="100%" xlink:href="#glyph1-7"/>
<use x="326.13702" y="237.19846" width="100%" height="100%" xlink:href="#glyph1-11"/>
<use x="333.3598" y="237.19846" width="100%" height="100%" xlink:href="#glyph1-28"/>
<use x="340.59485" y="237.19846" width="100%" height="100%" xlink:href="#glyph1-24"/>
<use x="347.81763" y="237.19846" width="100%" height="100%" xlink:href="#glyph1-7"/>
<use x="355.04037" y="237.19846" width="100%" height="100%" xlink:href="#glyph1-36"/>
<use x="159.94141" y="250.33517" width="100%" height="100%" xlink:href="#glyph1-7"/>
<use x="167.16418" y="250.33517" width="100%" height="100%" xlink:href="#glyph1-11"/>
<use x="174.38695" y="250.33517" width="100%" height="100%" xlink:href="#glyph1-17"/>
<use x="181.62199" y="250.33517" width="100%" height="100%" xlink:href="#glyph1-2"/>
<use x="188.84476" y="250.33517" width="100%" height="100%" xlink:href="#glyph1-2"/>
<use x="196.06754" y="250.33517" width="100%" height="100%" xlink:href="#glyph1-1"/>
<use x="203.29031" y="250.33517" width="100%" height="100%" xlink:href="#glyph1-4"/>
<use x="210.51309" y="250.33517" width="100%" height="100%" xlink:href="#glyph1-14"/>
<use x="217.74812" y="250.33517" width="100%" height="100%" xlink:href="#glyph1-29"/>
<use x="224.9709" y="250.33517" width="100%" height="100%" xlink:href="#glyph1-15"/>
<use x="232.19366" y="250.33517" width="100%" height="100%" xlink:href="#glyph1-2"/>
<use x="239.41644" y="250.33517" width="100%" height="100%" xlink:href="#glyph1-13"/>
<use x="246.63922" y="250.33517" width="100%" height="100%" xlink:href="#glyph1-7"/>
<use x="253.862" y="250.33517" width="100%" height="100%" xlink:href="#glyph1-19"/>
<use x="261.09702" y="250.33517" width="100%" height="100%" xlink:href="#glyph1-7"/>
<use x="268.31979" y="250.33517" width="100%" height="100%" xlink:href="#glyph1-17"/>
<use x="275.54257" y="250.33517" width="100%" height="100%" xlink:href="#glyph1-29"/>
<use x="282.78812" y="250.33517" width="100%" height="100%" xlink:href="#glyph1-37"/>
<use x="290.01089" y="250.33517" width="100%" height="100%" xlink:href="#glyph1-18"/>
<use x="297.23367" y="250.33517" width="100%" height="100%" xlink:href="#glyph1-7"/>
<use x="304.46872" y="250.33517" width="100%" height="100%" xlink:href="#glyph1-34"/>
<use x="311.69147" y="250.33517" width="100%" height="100%" xlink:href="#glyph1-9"/>
<use x="318.91425" y="250.33517" width="100%" height="100%" xlink:href="#glyph1-3"/>
<use x="326.13702" y="250.33517" width="100%" height="100%" xlink:href="#glyph1-7"/>
<use x="333.3598" y="250.33517" width="100%" height="100%" xlink:href="#glyph1-17"/>
<use x="340.59485" y="250.33517" width="100%" height="100%" xlink:href="#glyph1-20"/>
<use x="347.81763" y="250.33517" width="100%" height="100%" xlink:href="#glyph1-21"/>
<use x="355.04037" y="250.33517" width="100%" height="100%" xlink:href="#glyph1-7"/>
<use x="362.26315" y="250.33517" width="100%" height="100%" xlink:href="#glyph1-11"/>
<use x="369.48593" y="250.33517" width="100%" height="100%" xlink:href="#glyph1-28"/>
<use x="376.70871" y="250.33517" width="100%" height="100%" xlink:href="#glyph1-14"/>
<use x="383.94376" y="250.33517" width="100%" height="100%" xlink:href="#glyph1-2"/>
<use x="391.1665" y="250.33517" width="100%" height="100%" xlink:href="#glyph1-1"/>
<use x="398.38928" y="250.33517" width="100%" height="100%" xlink:href="#glyph1-23"/>
<use x="405.63483" y="250.33517" width="100%" height="100%" xlink:href="#glyph1-3"/>
<use x="412.8576" y="250.33517" width="100%" height="100%" xlink:href="#glyph1-24"/>
<use x="420.08038" y="250.33517" width="100%" height="100%" xlink:href="#glyph1-7"/>
<use x="427.31543" y="250.33517" width="100%" height="100%" xlink:href="#glyph1-36"/>
<use x="434.53821" y="250.33517" width="100%" height="100%" xlink:href="#glyph1-21"/>
<use x="441.76096" y="250.33517" width="100%" height="100%" xlink:href="#glyph1-38"/>
<use x="159.94141" y="263.4758" width="100%" height="100%" xlink:href="#glyph1-7"/>
<use x="167.16418" y="263.4758" width="100%" height="100%" xlink:href="#glyph1-8"/>
<use x="174.38695" y="263.4758" width="100%" height="100%" xlink:href="#glyph1-4"/>
<use x="181.62199" y="263.4758" width="100%" height="100%" xlink:href="#glyph1-7"/>
<use x="188.84476" y="263.4758" width="100%" height="100%" xlink:href="#glyph1-17"/>
<use x="196.06754" y="263.4758" width="100%" height="100%" xlink:href="#glyph1-36"/>
<use x="203.29031" y="263.4758" width="100%" height="100%" xlink:href="#glyph1-7"/>
<use x="210.51309" y="263.4758" width="100%" height="100%" xlink:href="#glyph1-11"/>
<use x="217.74812" y="263.4758" width="100%" height="100%" xlink:href="#glyph1-17"/>
<use x="224.9709" y="263.4758" width="100%" height="100%" xlink:href="#glyph1-2"/>
<use x="232.19366" y="263.4758" width="100%" height="100%" xlink:href="#glyph1-2"/>
<use x="239.41644" y="263.4758" width="100%" height="100%" xlink:href="#glyph1-1"/>
<use x="246.63922" y="263.4758" width="100%" height="100%" xlink:href="#glyph1-4"/>
<use x="253.862" y="263.4758" width="100%" height="100%" xlink:href="#glyph1-14"/>
<use x="261.09702" y="263.4758" width="100%" height="100%" xlink:href="#glyph1-29"/>
<use x="268.31979" y="263.4758" width="100%" height="100%" xlink:href="#glyph1-15"/>
<use x="275.54257" y="263.4758" width="100%" height="100%" xlink:href="#glyph1-2"/>
<use x="282.78812" y="263.4758" width="100%" height="100%" xlink:href="#glyph1-13"/>
<use x="290.01089" y="263.4758" width="100%" height="100%" xlink:href="#glyph1-24"/>
<use x="297.23367" y="263.4758" width="100%" height="100%" xlink:href="#glyph1-7"/>
<use x="304.46872" y="263.4758" width="100%" height="100%" xlink:href="#glyph1-9"/>
<use x="311.69147" y="263.4758" width="100%" height="100%" xlink:href="#glyph1-10"/>
<use x="318.91425" y="263.4758" width="100%" height="100%" xlink:href="#glyph1-8"/>
<use x="326.13702" y="263.4758" width="100%" height="100%" xlink:href="#glyph1-1"/>
<use x="333.3598" y="263.4758" width="100%" height="100%" xlink:href="#glyph1-9"/>
<use x="340.59485" y="263.4758" width="100%" height="100%" xlink:href="#glyph1-7"/>
<use x="347.81763" y="263.4758" width="100%" height="100%" xlink:href="#glyph1-11"/>
<use x="355.04037" y="263.4758" width="100%" height="100%" xlink:href="#glyph1-12"/>
<use x="362.26315" y="263.4758" width="100%" height="100%" xlink:href="#glyph1-1"/>
<use x="369.48593" y="263.4758" width="100%" height="100%" xlink:href="#glyph1-10"/>
<use x="376.70871" y="263.4758" width="100%" height="100%" xlink:href="#glyph1-13"/>
<use x="383.94376" y="263.4758" width="100%" height="100%" xlink:href="#glyph1-1"/>
<use x="391.1665" y="263.4758" width="100%" height="100%" xlink:href="#glyph1-4"/>
<use x="398.38928" y="263.4758" width="100%" height="100%" xlink:href="#glyph1-24"/>
<use x="405.63483" y="263.4758" width="100%" height="100%" xlink:href="#glyph1-7"/>
<use x="412.8576" y="263.4758" width="100%" height="100%" xlink:href="#glyph1-9"/>
<use x="420.08038" y="263.4758" width="100%" height="100%" xlink:href="#glyph1-10"/>
<use x="427.31543" y="263.4758" width="100%" height="100%" xlink:href="#glyph1-8"/>
<use x="434.53821" y="263.4758" width="100%" height="100%" xlink:href="#glyph1-1"/>
<use x="441.76096" y="263.4758" width="100%" height="100%" xlink:href="#glyph1-9"/>
<use x="448.98373" y="263.4758" width="100%" height="100%" xlink:href="#glyph1-7"/>
<use x="456.20651" y="263.4758" width="100%" height="100%" xlink:href="#glyph1-11"/>
<use x="463.44156" y="263.4758" width="100%" height="100%" xlink:href="#glyph1-25"/>
<use x="470.66434" y="263.4758" width="100%" height="100%" xlink:href="#glyph1-15"/>
<use x="477.88712" y="263.4758" width="100%" height="100%" xlink:href="#glyph1-4"/>
<use x="485.10986" y="263.4758" width="100%" height="100%" xlink:href="#glyph1-14"/>
<use x="492.33264" y="263.4758" width="100%" height="100%" xlink:href="#glyph1-15"/>
<use x="499.55542" y="263.4758" width="100%" height="100%" xlink:href="#glyph1-16"/>
<use x="506.79047" y="263.4758" width="100%" height="100%" xlink:href="#glyph1-3"/>
<use x="514.01324" y="263.4758" width="100%" height="100%" xlink:href="#glyph1-1"/>
<use x="521.23602" y="263.4758" width="100%" height="100%" xlink:href="#glyph1-4"/>
</g>
<path d="m116.93 234.3h419.56" fill="none" stroke="#b50c26" stroke-linejoin="round" stroke-miterlimit="10" stroke-width=".87591"/>
<g transform="translate(-36,-36)">
<use x="253.66406" y="283.62033" width="100%" height="100%" xlink:href="#glyph1-39"/>
</g>
<path d="m326.28 254.45v-20.148" fill="none" stroke="#b50c26" stroke-linejoin="round" stroke-miterlimit="10" stroke-width=".87591"/>
<g transform="translate(-36,-36)">
<use x="463.44531" y="283.62033" width="100%" height="100%" xlink:href="#glyph1-40"/>
</g>
<g stroke="#000" stroke-linejoin="round" stroke-miterlimit="10" stroke-width=".87591">
<path d="m233.95 116.12c8.4922 7.7305 18.441 16.789 28.609 26.047" fill="none"/>
<path d="m264.85 140.11 4.4141 8.1641-8.543-3.6289z"/>
<path d="m190.54 254.5c-56.406 15.992-89.375 9.9141-89.375-31.578 0-6.8242 2.9648-12.688 8.2656-17.656" fill="none"/>
<path d="m107.84 202.62 8.8516-2.7852-5.1836 7.6953z"/>
</g>
<path d="m110.36 366.57v-79.711h404.67v79.711z" fill="#f3c7b0" fill-opacity=".43922" stroke="#3a4fc2" stroke-linejoin="round" stroke-miterlimit="10" stroke-width=".87591"/>
<g transform="translate(-36,-36)">
<use x="153.37109" y="336.17502" width="100%" height="100%" xlink:href="#glyph1-25"/>
<use x="160.59387" y="336.17502" width="100%" height="100%" xlink:href="#glyph1-15"/>
<use x="167.81664" y="336.17502" width="100%" height="100%" xlink:href="#glyph1-4"/>
<use x="175.05168" y="336.17502" width="100%" height="100%" xlink:href="#glyph1-14"/>
<use x="182.27444" y="336.17502" width="100%" height="100%" xlink:href="#glyph1-15"/>
<use x="189.49722" y="336.17502" width="100%" height="100%" xlink:href="#glyph1-16"/>
<use x="196.72" y="336.17502" width="100%" height="100%" xlink:href="#glyph1-3"/>
<use x="203.94278" y="336.17502" width="100%" height="100%" xlink:href="#glyph1-1"/>
<use x="211.17781" y="336.17502" width="100%" height="100%" xlink:href="#glyph1-4"/>
<use x="218.40059" y="336.17502" width="100%" height="100%" xlink:href="#glyph1-6"/>
<use x="225.62335" y="336.17502" width="100%" height="100%" xlink:href="#glyph1-7"/>
<use x="153.37109" y="349.31564" width="100%" height="100%" xlink:href="#glyph1-7"/>
<use x="160.59387" y="349.31564" width="100%" height="100%" xlink:href="#glyph1-11"/>
<use x="167.81664" y="349.31564" width="100%" height="100%" xlink:href="#glyph1-17"/>
<use x="175.05168" y="349.31564" width="100%" height="100%" xlink:href="#glyph1-14"/>
<use x="182.27444" y="349.31564" width="100%" height="100%" xlink:href="#glyph1-2"/>
<use x="189.49722" y="349.31564" width="100%" height="100%" xlink:href="#glyph1-1"/>
<use x="196.72" y="349.31564" width="100%" height="100%" xlink:href="#glyph1-23"/>
<use x="203.94278" y="349.31564" width="100%" height="100%" xlink:href="#glyph1-3"/>
<use x="211.17781" y="349.31564" width="100%" height="100%" xlink:href="#glyph1-7"/>
<use x="218.40059" y="349.31564" width="100%" height="100%" xlink:href="#glyph1-19"/>
<use x="225.62335" y="349.31564" width="100%" height="100%" xlink:href="#glyph1-7"/>
<use x="232.84613" y="349.31564" width="100%" height="100%" xlink:href="#glyph1-10"/>
<use x="240.06891" y="349.31564" width="100%" height="100%" xlink:href="#glyph1-13"/>
<use x="247.29169" y="349.31564" width="100%" height="100%" xlink:href="#glyph1-13"/>
<use x="254.52672" y="349.31564" width="100%" height="100%" xlink:href="#glyph1-7"/>
<use x="261.74948" y="349.31564" width="100%" height="100%" xlink:href="#glyph1-2"/>
<use x="268.97226" y="349.31564" width="100%" height="100%" xlink:href="#glyph1-34"/>
<use x="276.2178" y="349.31564" width="100%" height="100%" xlink:href="#glyph1-35"/>
<use x="283.44058" y="349.31564" width="100%" height="100%" xlink:href="#glyph1-7"/>
<use x="290.66336" y="349.31564" width="100%" height="100%" xlink:href="#glyph1-17"/>
<use x="297.89841" y="349.31564" width="100%" height="100%" xlink:href="#glyph1-20"/>
<use x="305.12115" y="349.31564" width="100%" height="100%" xlink:href="#glyph1-21"/>
<use x="312.34393" y="349.31564" width="100%" height="100%" xlink:href="#glyph1-7"/>
<use x="319.56671" y="349.31564" width="100%" height="100%" xlink:href="#glyph1-11"/>
<use x="326.78949" y="349.31564" width="100%" height="100%" xlink:href="#glyph1-17"/>
<use x="334.02454" y="349.31564" width="100%" height="100%" xlink:href="#glyph1-14"/>
<use x="341.24731" y="349.31564" width="100%" height="100%" xlink:href="#glyph1-18"/>
<use x="348.47006" y="349.31564" width="100%" height="100%" xlink:href="#glyph1-12"/>
<use x="355.69284" y="349.31564" width="100%" height="100%" xlink:href="#glyph1-24"/>
<use x="362.91562" y="349.31564" width="100%" height="100%" xlink:href="#glyph1-7"/>
<use x="370.1384" y="349.31564" width="100%" height="100%" xlink:href="#glyph1-36"/>
<use x="153.37109" y="362.45236" width="100%" height="100%" xlink:href="#glyph1-7"/>
<use x="160.59387" y="362.45236" width="100%" height="100%" xlink:href="#glyph1-11"/>
<use x="167.81664" y="362.45236" width="100%" height="100%" xlink:href="#glyph1-15"/>
<use x="175.05168" y="362.45236" width="100%" height="100%" xlink:href="#glyph1-16"/>
<use x="182.27444" y="362.45236" width="100%" height="100%" xlink:href="#glyph1-3"/>
<use x="189.49722" y="362.45236" width="100%" height="100%" xlink:href="#glyph1-1"/>
<use x="196.72" y="362.45236" width="100%" height="100%" xlink:href="#glyph1-4"/>
<use x="203.94278" y="362.45236" width="100%" height="100%" xlink:href="#glyph1-14"/>
<use x="211.17781" y="362.45236" width="100%" height="100%" xlink:href="#glyph1-29"/>
<use x="218.40059" y="362.45236" width="100%" height="100%" xlink:href="#glyph1-15"/>
<use x="225.62335" y="362.45236" width="100%" height="100%" xlink:href="#glyph1-2"/>
<use x="232.84613" y="362.45236" width="100%" height="100%" xlink:href="#glyph1-13"/>
<use x="240.06891" y="362.45236" width="100%" height="100%" xlink:href="#glyph1-7"/>
<use x="247.29169" y="362.45236" width="100%" height="100%" xlink:href="#glyph1-19"/>
<use x="254.52672" y="362.45236" width="100%" height="100%" xlink:href="#glyph1-7"/>
<use x="261.74948" y="362.45236" width="100%" height="100%" xlink:href="#glyph1-17"/>
<use x="268.97226" y="362.45236" width="100%" height="100%" xlink:href="#glyph1-29"/>
<use x="276.2178" y="362.45236" width="100%" height="100%" xlink:href="#glyph1-37"/>
<use x="283.44058" y="362.45236" width="100%" height="100%" xlink:href="#glyph1-18"/>
<use x="290.66336" y="362.45236" width="100%" height="100%" xlink:href="#glyph1-7"/>
<use x="297.89841" y="362.45236" width="100%" height="100%" xlink:href="#glyph1-34"/>
<use x="305.12115" y="362.45236" width="100%" height="100%" xlink:href="#glyph1-9"/>
<use x="312.34393" y="362.45236" width="100%" height="100%" xlink:href="#glyph1-3"/>
<use x="319.56671" y="362.45236" width="100%" height="100%" xlink:href="#glyph1-7"/>
<use x="326.78949" y="362.45236" width="100%" height="100%" xlink:href="#glyph1-17"/>
<use x="334.02454" y="362.45236" width="100%" height="100%" xlink:href="#glyph1-20"/>
<use x="341.24731" y="362.45236" width="100%" height="100%" xlink:href="#glyph1-21"/>
<use x="348.47006" y="362.45236" width="100%" height="100%" xlink:href="#glyph1-7"/>
<use x="355.69284" y="362.45236" width="100%" height="100%" xlink:href="#glyph1-11"/>
<use x="362.91562" y="362.45236" width="100%" height="100%" xlink:href="#glyph1-17"/>
<use x="370.1384" y="362.45236" width="100%" height="100%" xlink:href="#glyph1-14"/>
<use x="377.37344" y="362.45236" width="100%" height="100%" xlink:href="#glyph1-2"/>
<use x="384.59622" y="362.45236" width="100%" height="100%" xlink:href="#glyph1-1"/>
<use x="391.81897" y="362.45236" width="100%" height="100%" xlink:href="#glyph1-23"/>
<use x="399.06451" y="362.45236" width="100%" height="100%" xlink:href="#glyph1-3"/>
<use x="406.28729" y="362.45236" width="100%" height="100%" xlink:href="#glyph1-24"/>
<use x="413.51007" y="362.45236" width="100%" height="100%" xlink:href="#glyph1-7"/>
<use x="420.74512" y="362.45236" width="100%" height="100%" xlink:href="#glyph1-36"/>
<use x="427.9679" y="362.45236" width="100%" height="100%" xlink:href="#glyph1-21"/>
<use x="435.19067" y="362.45236" width="100%" height="100%" xlink:href="#glyph1-38"/>
<use x="153.37109" y="375.59299" width="100%" height="100%" xlink:href="#glyph1-7"/>
<use x="160.59387" y="375.59299" width="100%" height="100%" xlink:href="#glyph1-8"/>
<use x="167.81664" y="375.59299" width="100%" height="100%" xlink:href="#glyph1-4"/>
<use x="175.05168" y="375.59299" width="100%" height="100%" xlink:href="#glyph1-7"/>
<use x="182.27444" y="375.59299" width="100%" height="100%" xlink:href="#glyph1-17"/>
<use x="189.49722" y="375.59299" width="100%" height="100%" xlink:href="#glyph1-36"/>
<use x="196.72" y="375.59299" width="100%" height="100%" xlink:href="#glyph1-7"/>
<use x="203.94278" y="375.59299" width="100%" height="100%" xlink:href="#glyph1-11"/>
<use x="211.17781" y="375.59299" width="100%" height="100%" xlink:href="#glyph1-15"/>
<use x="218.40059" y="375.59299" width="100%" height="100%" xlink:href="#glyph1-16"/>
<use x="225.62335" y="375.59299" width="100%" height="100%" xlink:href="#glyph1-3"/>
<use x="232.84613" y="375.59299" width="100%" height="100%" xlink:href="#glyph1-1"/>
<use x="240.06891" y="375.59299" width="100%" height="100%" xlink:href="#glyph1-4"/>
<use x="247.29169" y="375.59299" width="100%" height="100%" xlink:href="#glyph1-14"/>
<use x="254.52672" y="375.59299" width="100%" height="100%" xlink:href="#glyph1-29"/>
<use x="261.74948" y="375.59299" width="100%" height="100%" xlink:href="#glyph1-15"/>
<use x="268.97226" y="375.59299" width="100%" height="100%" xlink:href="#glyph1-2"/>
<use x="276.2178" y="375.59299" width="100%" height="100%" xlink:href="#glyph1-13"/>
<use x="283.44058" y="375.59299" width="100%" height="100%" xlink:href="#glyph1-24"/>
<use x="290.66336" y="375.59299" width="100%" height="100%" xlink:href="#glyph1-7"/>
<use x="297.89841" y="375.59299" width="100%" height="100%" xlink:href="#glyph1-9"/>
<use x="305.12115" y="375.59299" width="100%" height="100%" xlink:href="#glyph1-10"/>
<use x="312.34393" y="375.59299" width="100%" height="100%" xlink:href="#glyph1-8"/>
<use x="319.56671" y="375.59299" width="100%" height="100%" xlink:href="#glyph1-1"/>
<use x="326.78949" y="375.59299" width="100%" height="100%" xlink:href="#glyph1-9"/>
<use x="334.02454" y="375.59299" width="100%" height="100%" xlink:href="#glyph1-7"/>
<use x="341.24731" y="375.59299" width="100%" height="100%" xlink:href="#glyph1-11"/>
<use x="348.47006" y="375.59299" width="100%" height="100%" xlink:href="#glyph1-12"/>
<use x="355.69284" y="375.59299" width="100%" height="100%" xlink:href="#glyph1-1"/>
<use x="362.91562" y="375.59299" width="100%" height="100%" xlink:href="#glyph1-10"/>
<use x="370.1384" y="375.59299" width="100%" height="100%" xlink:href="#glyph1-13"/>
<use x="377.37344" y="375.59299" width="100%" height="100%" xlink:href="#glyph1-1"/>
<use x="384.59622" y="375.59299" width="100%" height="100%" xlink:href="#glyph1-4"/>
<use x="391.81897" y="375.59299" width="100%" height="100%" xlink:href="#glyph1-14"/>
<use x="399.06451" y="375.59299" width="100%" height="100%" xlink:href="#glyph1-15"/>
<use x="406.28729" y="375.59299" width="100%" height="100%" xlink:href="#glyph1-16"/>
<use x="413.51007" y="375.59299" width="100%" height="100%" xlink:href="#glyph1-3"/>
<use x="420.74512" y="375.59299" width="100%" height="100%" xlink:href="#glyph1-1"/>
<use x="427.9679" y="375.59299" width="100%" height="100%" xlink:href="#glyph1-4"/>
<use x="435.19067" y="375.59299" width="100%" height="100%" xlink:href="#glyph1-24"/>
<use x="442.41342" y="375.59299" width="100%" height="100%" xlink:href="#glyph1-7"/>
<use x="449.6362" y="375.59299" width="100%" height="100%" xlink:href="#glyph1-9"/>
<use x="456.87125" y="375.59299" width="100%" height="100%" xlink:href="#glyph1-10"/>
<use x="464.09402" y="375.59299" width="100%" height="100%" xlink:href="#glyph1-8"/>
<use x="471.3168" y="375.59299" width="100%" height="100%" xlink:href="#glyph1-1"/>
<use x="478.53955" y="375.59299" width="100%" height="100%" xlink:href="#glyph1-9"/>
<use x="485.76233" y="375.59299" width="100%" height="100%" xlink:href="#glyph1-7"/>
<use x="492.98511" y="375.59299" width="100%" height="100%" xlink:href="#glyph1-11"/>
<use x="500.22015" y="375.59299" width="100%" height="100%" xlink:href="#glyph1-4"/>
<use x="507.44293" y="375.59299" width="100%" height="100%" xlink:href="#glyph1-1"/>
<use x="514.66571" y="375.59299" width="100%" height="100%" xlink:href="#glyph1-3"/>
<use x="521.91125" y="375.59299" width="100%" height="100%" xlink:href="#glyph1-16"/>
<use x="529.13403" y="375.59299" width="100%" height="100%" xlink:href="#glyph1-4"/>
<use x="536.35681" y="375.59299" width="100%" height="100%" xlink:href="#glyph1-2"/>
</g>
<path d="m110.36 346.42h404.67" fill="none" stroke="#3a4fc2" stroke-linejoin="round" stroke-miterlimit="10" stroke-width=".87591"/>
<g transform="translate(-36,-36)">
<use x="243.58984" y="395.73752" width="100%" height="100%" xlink:href="#glyph1-39"/>
</g>
<path d="m312.7 366.57v-20.148" fill="none" stroke="#3a4fc2" stroke-linejoin="round" stroke-miterlimit="10" stroke-width=".87591"/>
<g transform="translate(-36,-36)">
<use x="445.92578" y="395.73752" width="100%" height="100%" xlink:href="#glyph1-40"/>
</g>
<g stroke="#000" stroke-linejoin="round" stroke-miterlimit="10" stroke-width=".87591">
<path d="m431.82 254.89c0 9.5664-2.8711 17.875-7.7227 25.082" fill="none"/>
<path d="m426.49 281.9-7.8672 4.9219 3.0781-8.7539z"/>
<path d="m109.49 356.5c-92.652 0-48.367-128.91-0.875-208.47 6.6172-11.086 16.371-20.047 27.238-27.242" fill="none"/>
<path d="m134.46 118.05 9.0703-1.9648-5.8672 7.1914z"/>
</g>
<path d="m374.45 432.26v-33.285h79.707v33.285z" fill="#87abfd" fill-opacity=".43922" stroke="#3a4fc2" stroke-linejoin="round" stroke-miterlimit="10" stroke-width=".87591"/>
<g transform="translate(-36,-36)">
<use x="417.46094" y="448.29221" width="100%" height="100%" xlink:href="#glyph1-4"/>
<use x="424.68372" y="448.29221" width="100%" height="100%" xlink:href="#glyph1-1"/>
<use x="431.90649" y="448.29221" width="100%" height="100%" xlink:href="#glyph1-3"/>
<use x="439.14151" y="448.29221" width="100%" height="100%" xlink:href="#glyph1-16"/>
<use x="446.36429" y="448.29221" width="100%" height="100%" xlink:href="#glyph1-4"/>
<use x="453.58707" y="448.29221" width="100%" height="100%" xlink:href="#glyph1-2"/>
<use x="460.80984" y="448.29221" width="100%" height="100%" xlink:href="#glyph1-6"/>
<use x="468.03262" y="448.29221" width="100%" height="100%" xlink:href="#glyph1-7"/>
<use x="417.46094" y="461.42892" width="100%" height="100%" xlink:href="#glyph1-7"/>
<use x="424.68372" y="461.42892" width="100%" height="100%" xlink:href="#glyph1-4"/>
<use x="431.90649" y="461.42892" width="100%" height="100%" xlink:href="#glyph1-1"/>
<use x="439.14151" y="461.42892" width="100%" height="100%" xlink:href="#glyph1-3"/>
<use x="446.36429" y="461.42892" width="100%" height="100%" xlink:href="#glyph1-7"/>
<use x="453.58707" y="461.42892" width="100%" height="100%" xlink:href="#glyph1-30"/>
<use x="460.80984" y="461.42892" width="100%" height="100%" xlink:href="#glyph1-15"/>
<use x="468.03262" y="461.42892" width="100%" height="100%" xlink:href="#glyph1-17"/>
<use x="475.26767" y="461.42892" width="100%" height="100%" xlink:href="#glyph1-13"/>
</g>
<path d="m414.3 367.01v22.961" fill="none" stroke="#000" stroke-linejoin="round" stroke-miterlimit="10" stroke-width=".87591"/>
<path d="m417.37 390.07-3.0664 8.7578-3.0625-8.7578z" stroke="#000" stroke-linejoin="round" stroke-miterlimit="10" stroke-width=".87591"/>
</svg>

After

Width:  |  Height:  |  Size: 91 KiB

338
docs/loop-single.svg Normal file
View File

@ -0,0 +1,338 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="131.403pt" height="98.374pt" viewBox="0 0 131.403 98.374" 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 0 2.546875 L 11.953125 2.546875 L 11.953125 1.28125 L 0 1.28125 Z M 0 2.546875 "/>
</symbol>
<symbol overflow="visible" id="glyph0-2">
<path style="stroke:none;" d="M 3.6875 7.609375 C 5.890625 7.609375 7.609375 5.96875 7.609375 4.046875 C 7.609375 2.0625 5.84375 0.46875 3.6875 0.46875 C 1.5 0.46875 -0.140625 2.125 -0.140625 4.03125 C -0.140625 5.984375 1.546875 7.609375 3.6875 7.609375 Z M 3.828125 6.296875 C 1.875 6.296875 0.9375 5.1875 0.9375 4.03125 C 0.9375 2.828125 1.953125 1.78125 3.828125 1.78125 C 5.8125 1.78125 6.546875 3 6.546875 4.03125 C 6.546875 5.140625 5.75 6.296875 3.828125 6.296875 Z M 3.828125 6.296875 "/>
</symbol>
<symbol overflow="visible" id="glyph0-3">
<path style="stroke:none;" d="M 3.71875 7.75 C 5.75 7.75 7.546875 6.71875 7.546875 5.234375 C 7.546875 4.375 7.234375 3.34375 6.609375 2.5625 L 7.40625 2.5625 L 7.40625 1.296875 L -3.359375 1.296875 L -3.359375 2.59375 L 0.78125 2.59375 C 0.21875 3.171875 -0.140625 3.9375 -0.140625 4.765625 C -0.140625 6.375 1.515625 7.75 3.71875 7.75 Z M 3.71875 6.4375 C 2.015625 6.4375 0.90625 5.265625 0.90625 4.109375 C 0.90625 3.765625 1 3.40625 1.296875 3.0625 C 1.703125 2.59375 1.96875 2.59375 2.203125 2.59375 L 5.59375 2.59375 C 5.796875 2.734375 6.453125 3.328125 6.453125 4.265625 C 6.453125 5.46875 5.21875 6.4375 3.71875 6.4375 Z M 3.71875 6.4375 "/>
</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 4.34375 0 L 4.34375 -2.96875 C 4.34375 -3.625 4.1875 -4.53125 2.96875 -4.53125 C 2.359375 -4.53125 1.875 -4.234375 1.5625 -3.8125 L 1.5625 -6.921875 L 0.8125 -6.921875 L 0.8125 0 L 1.578125 0 L 1.578125 -2.4375 C 1.578125 -3.09375 1.828125 -3.921875 2.59375 -3.921875 C 3.546875 -3.921875 3.5625 -3.21875 3.5625 -2.90625 L 3.5625 0 Z M 4.34375 0 "/>
</symbol>
<symbol overflow="visible" id="glyph1-2">
<path style="stroke:none;" d="M 4.125 -2.1875 C 4.125 -2.515625 4.109375 -3.265625 3.734375 -3.875 C 3.3125 -4.484375 2.71875 -4.59375 2.359375 -4.59375 C 1.25 -4.59375 0.34375 -3.53125 0.34375 -2.25 C 0.34375 -0.9375 1.3125 0.109375 2.5 0.109375 C 3.125 0.109375 3.703125 -0.125 4.09375 -0.40625 L 4.03125 -1.0625 C 3.40625 -0.53125 2.734375 -0.5 2.515625 -0.5 C 1.71875 -0.5 1.078125 -1.203125 1.046875 -2.1875 Z M 3.5625 -2.734375 L 1.09375 -2.734375 C 1.25 -3.484375 1.78125 -3.984375 2.359375 -3.984375 C 2.875 -3.984375 3.421875 -3.65625 3.5625 -2.734375 Z M 3.5625 -2.734375 "/>
</symbol>
<symbol overflow="visible" id="glyph1-3">
<path style="stroke:none;" d="M 4.078125 0 L 4.078125 -2.875 C 4.078125 -3.890625 3.34375 -4.59375 2.4375 -4.59375 C 1.78125 -4.59375 1.328125 -4.4375 0.875 -4.171875 L 0.921875 -3.515625 C 1.453125 -3.875 1.9375 -4 2.4375 -4 C 2.90625 -4 3.296875 -3.609375 3.296875 -2.875 L 3.296875 -2.4375 C 1.796875 -2.421875 0.53125 -2 0.53125 -1.125 C 0.53125 -0.703125 0.8125 0.109375 1.671875 0.109375 C 1.8125 0.109375 2.75 0.09375 3.328125 -0.359375 L 3.328125 0 Z M 3.296875 -1.3125 C 3.296875 -1.125 3.296875 -0.875 2.953125 -0.6875 C 2.671875 -0.515625 2.296875 -0.5 2.1875 -0.5 C 1.703125 -0.5 1.25 -0.734375 1.25 -1.140625 C 1.25 -1.84375 2.875 -1.90625 3.296875 -1.9375 Z M 3.296875 -1.3125 "/>
</symbol>
<symbol overflow="visible" id="glyph1-4">
<path style="stroke:none;" d="M 4.328125 0 L 4.328125 -6.921875 L 3.578125 -6.921875 L 3.578125 -3.984375 C 3.046875 -4.421875 2.5 -4.53125 2.125 -4.53125 C 1.140625 -4.53125 0.359375 -3.5 0.359375 -2.21875 C 0.359375 -0.90625 1.125 0.109375 2.078125 0.109375 C 2.40625 0.109375 2.984375 0.015625 3.546875 -0.515625 L 3.546875 0 Z M 3.546875 -1.390625 C 3.546875 -1.25 3.53125 -1.0625 3.21875 -0.78125 C 2.984375 -0.578125 2.734375 -0.5 2.484375 -0.5 C 1.859375 -0.5 1.140625 -0.96875 1.140625 -2.203125 C 1.140625 -3.515625 2 -3.921875 2.578125 -3.921875 C 3.03125 -3.921875 3.328125 -3.703125 3.546875 -3.375 Z M 3.546875 -1.390625 "/>
</symbol>
<symbol overflow="visible" id="glyph1-5">
<path style="stroke:none;" d="M 3.265625 -3.875 L 3.265625 -4.53125 C 2.375 -4.53125 1.828125 -4.03125 1.515625 -3.578125 L 1.515625 -4.484375 L 0.8125 -4.484375 L 0.8125 0 L 1.5625 0 L 1.5625 -2.140625 C 1.5625 -3.125 2.28125 -3.84375 3.265625 -3.875 Z M 3.265625 -3.875 "/>
</symbol>
<symbol overflow="visible" id="glyph1-6">
<path style="stroke:none;" d="M 4.421875 -7.28125 C 4.421875 -7.390625 4.328125 -7.484375 4.21875 -7.484375 C 4.078125 -7.484375 4.03125 -7.375 4 -7.28125 L 0.609375 2.109375 C 0.5625 2.25 0.5625 2.296875 0.5625 2.296875 C 0.5625 2.40625 0.640625 2.5 0.75 2.5 C 0.890625 2.5 0.9375 2.390625 0.96875 2.296875 L 4.359375 -7.09375 C 4.421875 -7.234375 4.421875 -7.28125 4.421875 -7.28125 Z M 4.421875 -7.28125 "/>
</symbol>
<symbol overflow="visible" id="glyph1-7">
<path style="stroke:none;" d="M 4.578125 0 L 2.59375 -2.28125 L 4.421875 -4.421875 L 3.59375 -4.421875 L 2.265625 -2.78125 L 0.890625 -4.421875 L 0.0625 -4.421875 L 1.9375 -2.28125 L 0 0 L 0.8125 0 L 2.265625 -1.875 L 3.765625 0 Z M 4.578125 0 "/>
</symbol>
<symbol overflow="visible" id="glyph1-8">
<path style="stroke:none;" d="M 1.5625 0 L 1.5625 -4.421875 L 0.8125 -4.421875 L 0.8125 0 Z M 1.640625 -5.640625 L 1.640625 -6.53125 L 0.75 -6.53125 L 0.75 -5.640625 Z M 1.640625 -5.640625 "/>
</symbol>
<symbol overflow="visible" id="glyph1-9">
<path style="stroke:none;" d="M 3.3125 -0.265625 L 3.15625 -0.859375 C 2.890625 -0.640625 2.578125 -0.53125 2.25 -0.53125 C 1.890625 -0.53125 1.75 -0.828125 1.75 -1.359375 L 1.75 -3.84375 L 3.15625 -3.84375 L 3.15625 -4.421875 L 1.75 -4.421875 L 1.75 -5.6875 L 1.0625 -5.6875 L 1.0625 -4.421875 L 0.1875 -4.421875 L 0.1875 -3.84375 L 1.03125 -3.84375 L 1.03125 -1.1875 C 1.03125 -0.59375 1.171875 0.109375 1.859375 0.109375 C 2.546875 0.109375 3.0625 -0.140625 3.3125 -0.265625 Z M 3.3125 -0.265625 "/>
</symbol>
<symbol overflow="visible" id="glyph1-10">
<path style="stroke:none;" d="M 4.34375 0 L 4.34375 -2.96875 C 4.34375 -3.625 4.1875 -4.53125 2.96875 -4.53125 C 2.078125 -4.53125 1.578125 -3.859375 1.53125 -3.78125 L 1.53125 -4.484375 L 0.8125 -4.484375 L 0.8125 0 L 1.578125 0 L 1.578125 -2.4375 C 1.578125 -3.09375 1.828125 -3.921875 2.59375 -3.921875 C 3.546875 -3.921875 3.5625 -3.21875 3.5625 -2.90625 L 3.5625 0 Z M 4.34375 0 "/>
</symbol>
<symbol overflow="visible" id="glyph1-11">
<path style="stroke:none;" d="M 4.828125 -3.90625 L 4.71875 -4.53125 C 4.03125 -4.53125 3.453125 -4.34375 3.15625 -4.21875 C 2.9375 -4.390625 2.609375 -4.53125 2.203125 -4.53125 C 1.34375 -4.53125 0.625 -3.8125 0.625 -2.90625 C 0.625 -2.546875 0.75 -2.1875 0.953125 -1.921875 C 0.65625 -1.515625 0.65625 -1.125 0.65625 -1.078125 C 0.65625 -0.8125 0.75 -0.53125 0.921875 -0.3125 C 0.40625 -0.015625 0.28125 0.453125 0.28125 0.703125 C 0.28125 1.453125 1.265625 2.046875 2.484375 2.046875 C 3.703125 2.046875 4.6875 1.46875 4.6875 0.703125 C 4.6875 -0.6875 3.03125 -0.6875 2.640625 -0.6875 L 1.765625 -0.6875 C 1.640625 -0.6875 1.1875 -0.6875 1.1875 -1.21875 C 1.1875 -1.328125 1.21875 -1.484375 1.296875 -1.578125 C 1.5 -1.421875 1.828125 -1.28125 2.203125 -1.28125 C 3.09375 -1.28125 3.796875 -2.03125 3.796875 -2.90625 C 3.796875 -3.390625 3.578125 -3.765625 3.46875 -3.90625 L 3.515625 -3.890625 C 3.734375 -3.890625 4 -3.9375 4.25 -3.9375 C 4.421875 -3.9375 4.828125 -3.90625 4.828125 -3.90625 Z M 3.09375 -2.90625 C 3.09375 -2.140625 2.625 -1.859375 2.203125 -1.859375 C 1.828125 -1.859375 1.3125 -2.078125 1.3125 -2.90625 C 1.3125 -3.734375 1.828125 -3.96875 2.203125 -3.96875 C 2.625 -3.96875 3.09375 -3.6875 3.09375 -2.90625 Z M 4 0.71875 C 4 1.15625 3.3125 1.484375 2.5 1.484375 C 1.6875 1.484375 0.984375 1.171875 0.984375 0.703125 C 0.984375 0.671875 0.984375 0.03125 1.75 0.03125 L 2.65625 0.03125 C 2.875 0.03125 4 0.03125 4 0.71875 Z M 4 0.71875 "/>
</symbol>
<symbol overflow="visible" id="glyph1-12">
<path style="stroke:none;" d="M 1.5625 0 L 1.5625 -6.921875 L 0.8125 -6.921875 L 0.8125 0 Z M 1.5625 0 "/>
</symbol>
<symbol overflow="visible" id="glyph1-13">
<path style="stroke:none;" d="M 4.140625 -0.40625 L 4.078125 -1.0625 C 3.5625 -0.671875 3.03125 -0.53125 2.515625 -0.53125 C 1.6875 -0.53125 1.140625 -1.25 1.140625 -2.21875 C 1.140625 -3 1.5 -3.953125 2.5625 -3.953125 C 3.078125 -3.953125 3.421875 -3.875 3.96875 -3.515625 L 4.09375 -4.171875 C 3.5 -4.5 3.15625 -4.59375 2.546875 -4.59375 C 1.171875 -4.59375 0.359375 -3.390625 0.359375 -2.21875 C 0.359375 -0.984375 1.265625 0.109375 2.515625 0.109375 C 3.046875 0.109375 3.59375 -0.03125 4.140625 -0.40625 Z M 4.140625 -0.40625 "/>
</symbol>
</g>
<clipPath id="clip1">
<path d="M 0 3 L 131.402344 3 L 131.402344 95 L 0 95 Z M 0 3 "/>
</clipPath>
<clipPath id="clip2">
<path d="M 4 40 L 97 40 L 97 58 L 4 58 Z M 4 40 "/>
</clipPath>
<clipPath id="clip3">
<path d="M 92.53125 40.886719 L 8.699219 40.886719 C 6.5 40.886719 4.714844 42.667969 4.714844 44.871094 L 4.714844 53.503906 C 4.714844 55.703125 6.5 57.488281 8.699219 57.488281 L 92.53125 57.488281 C 94.734375 57.488281 96.515625 55.703125 96.515625 53.503906 L 96.515625 44.871094 C 96.515625 42.667969 94.734375 40.886719 92.53125 40.886719 Z M 92.53125 40.886719 "/>
</clipPath>
<clipPath id="clip4">
<path d="M -14.042969 100.019531 L 132.027344 60.878906 L 115.273438 -1.644531 L -30.796875 37.492188 Z M -14.042969 100.019531 "/>
</clipPath>
<linearGradient id="linear0" gradientUnits="userSpaceOnUse" x1="0" y1="19.259206" x2="0" y2="80.740794" gradientTransform="matrix(1.460699,-0.391393,-0.167539,-0.625266,-14.041965,100.019929)">
<stop offset="0" style="stop-color:rgb(100%,100%,100%);stop-opacity:1;"/>
<stop offset="0.0625" style="stop-color:rgb(100%,100%,100%);stop-opacity:1;"/>
<stop offset="0.09375" style="stop-color:rgb(99.987793%,99.993896%,99.993896%);stop-opacity:1;"/>
<stop offset="0.0976563" style="stop-color:rgb(99.736023%,99.867249%,99.867249%);stop-opacity:1;"/>
<stop offset="0.101563" style="stop-color:rgb(99.49646%,99.74823%,99.74823%);stop-opacity:1;"/>
<stop offset="0.105469" style="stop-color:rgb(99.255371%,99.627686%,99.627686%);stop-opacity:1;"/>
<stop offset="0.109375" style="stop-color:rgb(99.015808%,99.507141%,99.507141%);stop-opacity:1;"/>
<stop offset="0.113281" style="stop-color:rgb(98.774719%,99.386597%,99.386597%);stop-opacity:1;"/>
<stop offset="0.117188" style="stop-color:rgb(98.535156%,99.267578%,99.267578%);stop-opacity:1;"/>
<stop offset="0.121094" style="stop-color:rgb(98.294067%,99.147034%,99.147034%);stop-opacity:1;"/>
<stop offset="0.125" style="stop-color:rgb(98.054504%,99.026489%,99.026489%);stop-opacity:1;"/>
<stop offset="0.128906" style="stop-color:rgb(97.814941%,98.905945%,98.905945%);stop-opacity:1;"/>
<stop offset="0.132812" style="stop-color:rgb(97.575378%,98.786926%,98.786926%);stop-opacity:1;"/>
<stop offset="0.136719" style="stop-color:rgb(97.33429%,98.666382%,98.666382%);stop-opacity:1;"/>
<stop offset="0.140625" style="stop-color:rgb(97.094727%,98.547363%,98.547363%);stop-opacity:1;"/>
<stop offset="0.144531" style="stop-color:rgb(96.853638%,98.426819%,98.426819%);stop-opacity:1;"/>
<stop offset="0.148438" style="stop-color:rgb(96.614075%,98.306274%,98.306274%);stop-opacity:1;"/>
<stop offset="0.152344" style="stop-color:rgb(96.372986%,98.18573%,98.18573%);stop-opacity:1;"/>
<stop offset="0.15625" style="stop-color:rgb(96.133423%,98.066711%,98.066711%);stop-opacity:1;"/>
<stop offset="0.160156" style="stop-color:rgb(95.89386%,97.946167%,97.946167%);stop-opacity:1;"/>
<stop offset="0.164063" style="stop-color:rgb(95.654297%,97.827148%,97.827148%);stop-opacity:1;"/>
<stop offset="0.167969" style="stop-color:rgb(95.413208%,97.706604%,97.706604%);stop-opacity:1;"/>
<stop offset="0.171875" style="stop-color:rgb(95.173645%,97.58606%,97.58606%);stop-opacity:1;"/>
<stop offset="0.175781" style="stop-color:rgb(94.932556%,97.465515%,97.465515%);stop-opacity:1;"/>
<stop offset="0.179687" style="stop-color:rgb(94.692993%,97.346497%,97.346497%);stop-opacity:1;"/>
<stop offset="0.183594" style="stop-color:rgb(94.451904%,97.225952%,97.225952%);stop-opacity:1;"/>
<stop offset="0.1875" style="stop-color:rgb(94.212341%,97.105408%,97.105408%);stop-opacity:1;"/>
<stop offset="0.191406" style="stop-color:rgb(93.971252%,96.984863%,96.984863%);stop-opacity:1;"/>
<stop offset="0.195313" style="stop-color:rgb(93.731689%,96.865845%,96.865845%);stop-opacity:1;"/>
<stop offset="0.199219" style="stop-color:rgb(93.492126%,96.7453%,96.7453%);stop-opacity:1;"/>
<stop offset="0.203125" style="stop-color:rgb(93.252563%,96.626282%,96.626282%);stop-opacity:1;"/>
<stop offset="0.207031" style="stop-color:rgb(93.011475%,96.505737%,96.505737%);stop-opacity:1;"/>
<stop offset="0.210938" style="stop-color:rgb(92.771912%,96.385193%,96.385193%);stop-opacity:1;"/>
<stop offset="0.214844" style="stop-color:rgb(92.530823%,96.264648%,96.264648%);stop-opacity:1;"/>
<stop offset="0.21875" style="stop-color:rgb(92.29126%,96.14563%,96.14563%);stop-opacity:1;"/>
<stop offset="0.222656" style="stop-color:rgb(92.050171%,96.025085%,96.025085%);stop-opacity:1;"/>
<stop offset="0.226562" style="stop-color:rgb(91.810608%,95.904541%,95.904541%);stop-opacity:1;"/>
<stop offset="0.230469" style="stop-color:rgb(91.569519%,95.783997%,95.783997%);stop-opacity:1;"/>
<stop offset="0.234375" style="stop-color:rgb(91.329956%,95.664978%,95.664978%);stop-opacity:1;"/>
<stop offset="0.238281" style="stop-color:rgb(91.090393%,95.544434%,95.544434%);stop-opacity:1;"/>
<stop offset="0.242188" style="stop-color:rgb(90.85083%,95.425415%,95.425415%);stop-opacity:1;"/>
<stop offset="0.246094" style="stop-color:rgb(90.609741%,95.304871%,95.304871%);stop-opacity:1;"/>
<stop offset="0.25" style="stop-color:rgb(90.370178%,95.184326%,95.184326%);stop-opacity:1;"/>
<stop offset="0.253906" style="stop-color:rgb(90.129089%,95.063782%,95.063782%);stop-opacity:1;"/>
<stop offset="0.257813" style="stop-color:rgb(89.889526%,94.944763%,94.944763%);stop-opacity:1;"/>
<stop offset="0.261719" style="stop-color:rgb(89.648438%,94.824219%,94.824219%);stop-opacity:1;"/>
<stop offset="0.265625" style="stop-color:rgb(89.408875%,94.703674%,94.703674%);stop-opacity:1;"/>
<stop offset="0.269531" style="stop-color:rgb(89.169312%,94.58313%,94.58313%);stop-opacity:1;"/>
<stop offset="0.273438" style="stop-color:rgb(88.929749%,94.464111%,94.464111%);stop-opacity:1;"/>
<stop offset="0.277344" style="stop-color:rgb(88.68866%,94.343567%,94.343567%);stop-opacity:1;"/>
<stop offset="0.28125" style="stop-color:rgb(88.449097%,94.224548%,94.224548%);stop-opacity:1;"/>
<stop offset="0.285156" style="stop-color:rgb(88.208008%,94.104004%,94.104004%);stop-opacity:1;"/>
<stop offset="0.289062" style="stop-color:rgb(87.968445%,93.983459%,93.983459%);stop-opacity:1;"/>
<stop offset="0.292969" style="stop-color:rgb(87.727356%,93.862915%,93.862915%);stop-opacity:1;"/>
<stop offset="0.296875" style="stop-color:rgb(87.487793%,93.743896%,93.743896%);stop-opacity:1;"/>
<stop offset="0.300781" style="stop-color:rgb(87.246704%,93.623352%,93.623352%);stop-opacity:1;"/>
<stop offset="0.304688" style="stop-color:rgb(87.007141%,93.502808%,93.502808%);stop-opacity:1;"/>
<stop offset="0.308594" style="stop-color:rgb(86.767578%,93.382263%,93.382263%);stop-opacity:1;"/>
<stop offset="0.3125" style="stop-color:rgb(86.528015%,93.263245%,93.263245%);stop-opacity:1;"/>
<stop offset="0.316406" style="stop-color:rgb(86.286926%,93.1427%,93.1427%);stop-opacity:1;"/>
<stop offset="0.320313" style="stop-color:rgb(86.047363%,93.023682%,93.023682%);stop-opacity:1;"/>
<stop offset="0.324219" style="stop-color:rgb(85.806274%,92.903137%,92.903137%);stop-opacity:1;"/>
<stop offset="0.328125" style="stop-color:rgb(85.566711%,92.782593%,92.782593%);stop-opacity:1;"/>
<stop offset="0.332031" style="stop-color:rgb(85.325623%,92.662048%,92.662048%);stop-opacity:1;"/>
<stop offset="0.335938" style="stop-color:rgb(85.08606%,92.54303%,92.54303%);stop-opacity:1;"/>
<stop offset="0.339844" style="stop-color:rgb(84.846497%,92.422485%,92.422485%);stop-opacity:1;"/>
<stop offset="0.34375" style="stop-color:rgb(84.606934%,92.303467%,92.303467%);stop-opacity:1;"/>
<stop offset="0.347656" style="stop-color:rgb(84.365845%,92.182922%,92.182922%);stop-opacity:1;"/>
<stop offset="0.351563" style="stop-color:rgb(84.126282%,92.062378%,92.062378%);stop-opacity:1;"/>
<stop offset="0.355469" style="stop-color:rgb(83.885193%,91.941833%,91.941833%);stop-opacity:1;"/>
<stop offset="0.359375" style="stop-color:rgb(83.64563%,91.822815%,91.822815%);stop-opacity:1;"/>
<stop offset="0.363281" style="stop-color:rgb(83.404541%,91.702271%,91.702271%);stop-opacity:1;"/>
<stop offset="0.367188" style="stop-color:rgb(83.164978%,91.581726%,91.581726%);stop-opacity:1;"/>
<stop offset="0.371094" style="stop-color:rgb(82.923889%,91.461182%,91.461182%);stop-opacity:1;"/>
<stop offset="0.375" style="stop-color:rgb(82.684326%,91.342163%,91.342163%);stop-opacity:1;"/>
<stop offset="0.378906" style="stop-color:rgb(82.444763%,91.221619%,91.221619%);stop-opacity:1;"/>
<stop offset="0.382812" style="stop-color:rgb(82.2052%,91.1026%,91.1026%);stop-opacity:1;"/>
<stop offset="0.386719" style="stop-color:rgb(81.964111%,90.982056%,90.982056%);stop-opacity:1;"/>
<stop offset="0.390625" style="stop-color:rgb(81.724548%,90.861511%,90.861511%);stop-opacity:1;"/>
<stop offset="0.394531" style="stop-color:rgb(81.483459%,90.740967%,90.740967%);stop-opacity:1;"/>
<stop offset="0.398438" style="stop-color:rgb(81.243896%,90.621948%,90.621948%);stop-opacity:1;"/>
<stop offset="0.402344" style="stop-color:rgb(81.002808%,90.501404%,90.501404%);stop-opacity:1;"/>
<stop offset="0.40625" style="stop-color:rgb(80.763245%,90.380859%,90.380859%);stop-opacity:1;"/>
<stop offset="0.410156" style="stop-color:rgb(80.523682%,90.260315%,90.260315%);stop-opacity:1;"/>
<stop offset="0.414063" style="stop-color:rgb(80.284119%,90.141296%,90.141296%);stop-opacity:1;"/>
<stop offset="0.417969" style="stop-color:rgb(80.04303%,90.020752%,90.020752%);stop-opacity:1;"/>
<stop offset="0.421875" style="stop-color:rgb(79.803467%,89.901733%,89.901733%);stop-opacity:1;"/>
<stop offset="0.425781" style="stop-color:rgb(79.562378%,89.781189%,89.781189%);stop-opacity:1;"/>
<stop offset="0.429687" style="stop-color:rgb(79.322815%,89.660645%,89.660645%);stop-opacity:1;"/>
<stop offset="0.433594" style="stop-color:rgb(79.081726%,89.5401%,89.5401%);stop-opacity:1;"/>
<stop offset="0.4375" style="stop-color:rgb(78.842163%,89.421082%,89.421082%);stop-opacity:1;"/>
<stop offset="0.441406" style="stop-color:rgb(78.601074%,89.300537%,89.300537%);stop-opacity:1;"/>
<stop offset="0.445312" style="stop-color:rgb(78.361511%,89.179993%,89.179993%);stop-opacity:1;"/>
<stop offset="0.449219" style="stop-color:rgb(78.121948%,89.059448%,89.059448%);stop-opacity:1;"/>
<stop offset="0.453125" style="stop-color:rgb(77.882385%,88.94043%,88.94043%);stop-opacity:1;"/>
<stop offset="0.457031" style="stop-color:rgb(77.641296%,88.819885%,88.819885%);stop-opacity:1;"/>
<stop offset="0.460938" style="stop-color:rgb(77.401733%,88.700867%,88.700867%);stop-opacity:1;"/>
<stop offset="0.464844" style="stop-color:rgb(77.160645%,88.580322%,88.580322%);stop-opacity:1;"/>
<stop offset="0.46875" style="stop-color:rgb(76.921082%,88.459778%,88.459778%);stop-opacity:1;"/>
<stop offset="0.472656" style="stop-color:rgb(76.679993%,88.339233%,88.339233%);stop-opacity:1;"/>
<stop offset="0.476562" style="stop-color:rgb(76.44043%,88.220215%,88.220215%);stop-opacity:1;"/>
<stop offset="0.480469" style="stop-color:rgb(76.199341%,88.09967%,88.09967%);stop-opacity:1;"/>
<stop offset="0.484375" style="stop-color:rgb(75.959778%,87.979126%,87.979126%);stop-opacity:1;"/>
<stop offset="0.488281" style="stop-color:rgb(75.720215%,87.858582%,87.858582%);stop-opacity:1;"/>
<stop offset="0.492187" style="stop-color:rgb(75.480652%,87.739563%,87.739563%);stop-opacity:1;"/>
<stop offset="0.496094" style="stop-color:rgb(75.239563%,87.619019%,87.619019%);stop-opacity:1;"/>
<stop offset="0.5" style="stop-color:rgb(75%,87.5%,87.5%);stop-opacity:1;"/>
<stop offset="0.503906" style="stop-color:rgb(74.758911%,87.379456%,87.379456%);stop-opacity:1;"/>
<stop offset="0.507812" style="stop-color:rgb(74.519348%,87.258911%,87.258911%);stop-opacity:1;"/>
<stop offset="0.511719" style="stop-color:rgb(74.278259%,87.138367%,87.138367%);stop-opacity:1;"/>
<stop offset="0.515625" style="stop-color:rgb(74.038696%,87.019348%,87.019348%);stop-opacity:1;"/>
<stop offset="0.519531" style="stop-color:rgb(73.799133%,86.898804%,86.898804%);stop-opacity:1;"/>
<stop offset="0.523437" style="stop-color:rgb(73.55957%,86.779785%,86.779785%);stop-opacity:1;"/>
<stop offset="0.527344" style="stop-color:rgb(73.318481%,86.659241%,86.659241%);stop-opacity:1;"/>
<stop offset="0.53125" style="stop-color:rgb(73.078918%,86.538696%,86.538696%);stop-opacity:1;"/>
<stop offset="0.535156" style="stop-color:rgb(72.83783%,86.418152%,86.418152%);stop-opacity:1;"/>
<stop offset="0.539062" style="stop-color:rgb(72.598267%,86.299133%,86.299133%);stop-opacity:1;"/>
<stop offset="0.542969" style="stop-color:rgb(72.357178%,86.178589%,86.178589%);stop-opacity:1;"/>
<stop offset="0.546875" style="stop-color:rgb(72.117615%,86.058044%,86.058044%);stop-opacity:1;"/>
<stop offset="0.550781" style="stop-color:rgb(71.876526%,85.9375%,85.9375%);stop-opacity:1;"/>
<stop offset="0.554688" style="stop-color:rgb(71.636963%,85.818481%,85.818481%);stop-opacity:1;"/>
<stop offset="0.558594" style="stop-color:rgb(71.3974%,85.697937%,85.697937%);stop-opacity:1;"/>
<stop offset="0.5625" style="stop-color:rgb(71.157837%,85.578918%,85.578918%);stop-opacity:1;"/>
<stop offset="0.566406" style="stop-color:rgb(70.916748%,85.458374%,85.458374%);stop-opacity:1;"/>
<stop offset="0.570313" style="stop-color:rgb(70.677185%,85.33783%,85.33783%);stop-opacity:1;"/>
<stop offset="0.574219" style="stop-color:rgb(70.436096%,85.217285%,85.217285%);stop-opacity:1;"/>
<stop offset="0.578125" style="stop-color:rgb(70.196533%,85.098267%,85.098267%);stop-opacity:1;"/>
<stop offset="0.582031" style="stop-color:rgb(69.955444%,84.977722%,84.977722%);stop-opacity:1;"/>
<stop offset="0.585938" style="stop-color:rgb(69.715881%,84.857178%,84.857178%);stop-opacity:1;"/>
<stop offset="0.589844" style="stop-color:rgb(69.476318%,84.736633%,84.736633%);stop-opacity:1;"/>
<stop offset="0.59375" style="stop-color:rgb(69.236755%,84.617615%,84.617615%);stop-opacity:1;"/>
<stop offset="0.597656" style="stop-color:rgb(68.995667%,84.49707%,84.49707%);stop-opacity:1;"/>
<stop offset="0.601562" style="stop-color:rgb(68.756104%,84.378052%,84.378052%);stop-opacity:1;"/>
<stop offset="0.605469" style="stop-color:rgb(68.515015%,84.257507%,84.257507%);stop-opacity:1;"/>
<stop offset="0.609375" style="stop-color:rgb(68.275452%,84.136963%,84.136963%);stop-opacity:1;"/>
<stop offset="0.613281" style="stop-color:rgb(68.034363%,84.016418%,84.016418%);stop-opacity:1;"/>
<stop offset="0.617187" style="stop-color:rgb(67.7948%,83.8974%,83.8974%);stop-opacity:1;"/>
<stop offset="0.621094" style="stop-color:rgb(67.553711%,83.776855%,83.776855%);stop-opacity:1;"/>
<stop offset="0.625" style="stop-color:rgb(67.314148%,83.656311%,83.656311%);stop-opacity:1;"/>
<stop offset="0.628906" style="stop-color:rgb(67.074585%,83.535767%,83.535767%);stop-opacity:1;"/>
<stop offset="0.632812" style="stop-color:rgb(66.835022%,83.416748%,83.416748%);stop-opacity:1;"/>
<stop offset="0.636719" style="stop-color:rgb(66.593933%,83.296204%,83.296204%);stop-opacity:1;"/>
<stop offset="0.640625" style="stop-color:rgb(66.35437%,83.177185%,83.177185%);stop-opacity:1;"/>
<stop offset="0.644531" style="stop-color:rgb(66.113281%,83.056641%,83.056641%);stop-opacity:1;"/>
<stop offset="0.648438" style="stop-color:rgb(65.873718%,82.936096%,82.936096%);stop-opacity:1;"/>
<stop offset="0.652344" style="stop-color:rgb(65.632629%,82.815552%,82.815552%);stop-opacity:1;"/>
<stop offset="0.65625" style="stop-color:rgb(65.393066%,82.696533%,82.696533%);stop-opacity:1;"/>
<stop offset="0.660156" style="stop-color:rgb(65.153503%,82.575989%,82.575989%);stop-opacity:1;"/>
<stop offset="0.664062" style="stop-color:rgb(64.91394%,82.45697%,82.45697%);stop-opacity:1;"/>
<stop offset="0.667969" style="stop-color:rgb(64.672852%,82.336426%,82.336426%);stop-opacity:1;"/>
<stop offset="0.671875" style="stop-color:rgb(64.433289%,82.215881%,82.215881%);stop-opacity:1;"/>
<stop offset="0.675781" style="stop-color:rgb(64.1922%,82.095337%,82.095337%);stop-opacity:1;"/>
<stop offset="0.679687" style="stop-color:rgb(63.952637%,81.976318%,81.976318%);stop-opacity:1;"/>
<stop offset="0.683594" style="stop-color:rgb(63.711548%,81.855774%,81.855774%);stop-opacity:1;"/>
<stop offset="0.6875" style="stop-color:rgb(63.471985%,81.735229%,81.735229%);stop-opacity:1;"/>
<stop offset="0.691406" style="stop-color:rgb(63.230896%,81.614685%,81.614685%);stop-opacity:1;"/>
<stop offset="0.695312" style="stop-color:rgb(62.991333%,81.495667%,81.495667%);stop-opacity:1;"/>
<stop offset="0.699219" style="stop-color:rgb(62.75177%,81.375122%,81.375122%);stop-opacity:1;"/>
<stop offset="0.703125" style="stop-color:rgb(62.512207%,81.256104%,81.256104%);stop-opacity:1;"/>
<stop offset="0.707031" style="stop-color:rgb(62.271118%,81.135559%,81.135559%);stop-opacity:1;"/>
<stop offset="0.710937" style="stop-color:rgb(62.031555%,81.015015%,81.015015%);stop-opacity:1;"/>
<stop offset="0.714844" style="stop-color:rgb(61.790466%,80.89447%,80.89447%);stop-opacity:1;"/>
<stop offset="0.71875" style="stop-color:rgb(61.550903%,80.775452%,80.775452%);stop-opacity:1;"/>
<stop offset="0.722656" style="stop-color:rgb(61.309814%,80.654907%,80.654907%);stop-opacity:1;"/>
<stop offset="0.726562" style="stop-color:rgb(61.070251%,80.534363%,80.534363%);stop-opacity:1;"/>
<stop offset="0.730469" style="stop-color:rgb(60.829163%,80.413818%,80.413818%);stop-opacity:1;"/>
<stop offset="0.734375" style="stop-color:rgb(60.5896%,80.2948%,80.2948%);stop-opacity:1;"/>
<stop offset="0.738281" style="stop-color:rgb(60.350037%,80.174255%,80.174255%);stop-opacity:1;"/>
<stop offset="0.742188" style="stop-color:rgb(60.110474%,80.055237%,80.055237%);stop-opacity:1;"/>
<stop offset="0.746094" style="stop-color:rgb(59.869385%,79.934692%,79.934692%);stop-opacity:1;"/>
<stop offset="0.75" style="stop-color:rgb(59.629822%,79.814148%,79.814148%);stop-opacity:1;"/>
<stop offset="0.753906" style="stop-color:rgb(59.388733%,79.693604%,79.693604%);stop-opacity:1;"/>
<stop offset="0.757812" style="stop-color:rgb(59.14917%,79.574585%,79.574585%);stop-opacity:1;"/>
<stop offset="0.761719" style="stop-color:rgb(58.908081%,79.454041%,79.454041%);stop-opacity:1;"/>
<stop offset="0.765625" style="stop-color:rgb(58.668518%,79.333496%,79.333496%);stop-opacity:1;"/>
<stop offset="0.769531" style="stop-color:rgb(58.428955%,79.212952%,79.212952%);stop-opacity:1;"/>
<stop offset="0.773438" style="stop-color:rgb(58.189392%,79.093933%,79.093933%);stop-opacity:1;"/>
<stop offset="0.777344" style="stop-color:rgb(57.948303%,78.973389%,78.973389%);stop-opacity:1;"/>
<stop offset="0.78125" style="stop-color:rgb(57.70874%,78.85437%,78.85437%);stop-opacity:1;"/>
<stop offset="0.785156" style="stop-color:rgb(57.467651%,78.733826%,78.733826%);stop-opacity:1;"/>
<stop offset="0.789063" style="stop-color:rgb(57.228088%,78.613281%,78.613281%);stop-opacity:1;"/>
<stop offset="0.792969" style="stop-color:rgb(56.987%,78.492737%,78.492737%);stop-opacity:1;"/>
<stop offset="0.796875" style="stop-color:rgb(56.747437%,78.373718%,78.373718%);stop-opacity:1;"/>
<stop offset="0.800781" style="stop-color:rgb(56.506348%,78.253174%,78.253174%);stop-opacity:1;"/>
<stop offset="0.804688" style="stop-color:rgb(56.266785%,78.132629%,78.132629%);stop-opacity:1;"/>
<stop offset="0.808594" style="stop-color:rgb(56.027222%,78.012085%,78.012085%);stop-opacity:1;"/>
<stop offset="0.8125" style="stop-color:rgb(55.787659%,77.893066%,77.893066%);stop-opacity:1;"/>
<stop offset="0.816406" style="stop-color:rgb(55.54657%,77.772522%,77.772522%);stop-opacity:1;"/>
<stop offset="0.820313" style="stop-color:rgb(55.307007%,77.653503%,77.653503%);stop-opacity:1;"/>
<stop offset="0.824219" style="stop-color:rgb(55.065918%,77.532959%,77.532959%);stop-opacity:1;"/>
<stop offset="0.828125" style="stop-color:rgb(54.826355%,77.412415%,77.412415%);stop-opacity:1;"/>
<stop offset="0.832031" style="stop-color:rgb(54.585266%,77.29187%,77.29187%);stop-opacity:1;"/>
<stop offset="0.835938" style="stop-color:rgb(54.345703%,77.172852%,77.172852%);stop-opacity:1;"/>
<stop offset="0.839844" style="stop-color:rgb(54.10614%,77.052307%,77.052307%);stop-opacity:1;"/>
<stop offset="0.84375" style="stop-color:rgb(53.866577%,76.933289%,76.933289%);stop-opacity:1;"/>
<stop offset="0.847656" style="stop-color:rgb(53.625488%,76.812744%,76.812744%);stop-opacity:1;"/>
<stop offset="0.851562" style="stop-color:rgb(53.385925%,76.6922%,76.6922%);stop-opacity:1;"/>
<stop offset="0.855469" style="stop-color:rgb(53.144836%,76.571655%,76.571655%);stop-opacity:1;"/>
<stop offset="0.859375" style="stop-color:rgb(52.905273%,76.452637%,76.452637%);stop-opacity:1;"/>
<stop offset="0.863281" style="stop-color:rgb(52.664185%,76.332092%,76.332092%);stop-opacity:1;"/>
<stop offset="0.867188" style="stop-color:rgb(52.424622%,76.211548%,76.211548%);stop-opacity:1;"/>
<stop offset="0.871094" style="stop-color:rgb(52.183533%,76.091003%,76.091003%);stop-opacity:1;"/>
<stop offset="0.875" style="stop-color:rgb(51.94397%,75.971985%,75.971985%);stop-opacity:1;"/>
<stop offset="0.878906" style="stop-color:rgb(51.704407%,75.85144%,75.85144%);stop-opacity:1;"/>
<stop offset="0.882813" style="stop-color:rgb(51.464844%,75.732422%,75.732422%);stop-opacity:1;"/>
<stop offset="0.886719" style="stop-color:rgb(51.223755%,75.611877%,75.611877%);stop-opacity:1;"/>
<stop offset="0.890625" style="stop-color:rgb(50.984192%,75.491333%,75.491333%);stop-opacity:1;"/>
<stop offset="0.894531" style="stop-color:rgb(50.743103%,75.370789%,75.370789%);stop-opacity:1;"/>
<stop offset="0.898438" style="stop-color:rgb(50.50354%,75.25177%,75.25177%);stop-opacity:1;"/>
<stop offset="0.902344" style="stop-color:rgb(50.262451%,75.131226%,75.131226%);stop-opacity:1;"/>
<stop offset="0.90625" style="stop-color:rgb(50.022888%,75.010681%,75.010681%);stop-opacity:1;"/>
<stop offset="0.9375" style="stop-color:rgb(50.010681%,75.004578%,75.004578%);stop-opacity:1;"/>
<stop offset="1" style="stop-color:rgb(50%,75%,75%);stop-opacity:1;"/>
</linearGradient>
</defs>
<g id="surface1">
<g clip-path="url(#clip1)" clip-rule="nonzero">
<path style="fill:none;stroke-width:1.59404;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(100%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 53.860563 -12.022281 L -45.83475 -12.022281 C -48.033969 -12.022281 -49.819125 -13.807438 -49.819125 -16.010563 L -49.819125 -54.186344 C -49.819125 -56.385563 -48.033969 -58.170719 -45.83475 -58.170719 L 53.860563 -58.170719 C 56.059781 -58.170719 57.844938 -56.385563 57.844938 -54.186344 L 57.844938 -16.010563 C 57.844938 -13.807438 56.059781 -12.022281 53.860563 -12.022281 Z M 53.860563 -12.022281 " transform="matrix(1,0,0,-1,50.616,14.091)"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-1" x="116.135" y="34.786"/>
<use xlink:href="#glyph0-2" x="116.135" y="38.625043"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-2" x="116.135" y="47.163901"/>
<use xlink:href="#glyph0-3" x="116.135" y="55.255158"/>
</g>
<path style="fill:none;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 0.0011875 -3.518375 L 0.0011875 -22.155094 " transform="matrix(1,0,0,-1,50.616,14.091)"/>
<path style="fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.208044 0.0011875 L 0.641638 2.091031 L 2.465856 0.0011875 L 0.641638 -2.092562 Z M 6.208044 0.0011875 " transform="matrix(0,1,1,0,50.616,33.8818)"/>
<path style="fill:none;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 0.0011875 -43.994938 L 0.0011875 -62.631656 " transform="matrix(1,0,0,-1,50.616,14.091)"/>
<path style="fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.207736 0.0011875 L 0.645236 2.091031 L 2.465549 0.0011875 L 0.645236 -2.092562 Z M 6.207736 0.0011875 " transform="matrix(0,1,1,0,50.616,74.35867)"/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(50%,50%,50%);fill-opacity:0.5;" d="M 94.679688 43.03125 L 10.847656 43.03125 C 8.644531 43.03125 6.863281 44.816406 6.863281 47.015625 L 6.863281 55.652344 C 6.863281 57.851562 8.644531 59.636719 10.847656 59.636719 L 94.679688 59.636719 C 96.878906 59.636719 98.664062 57.851562 98.664062 55.652344 L 98.664062 47.015625 C 98.664062 44.816406 96.878906 43.03125 94.679688 43.03125 Z M 94.679688 43.03125 "/>
<g clip-path="url(#clip2)" clip-rule="nonzero">
<g clip-path="url(#clip3)" clip-rule="nonzero">
<g clip-path="url(#clip4)" clip-rule="nonzero">
<path style=" stroke:none;fill-rule:nonzero;fill:url(#linear0);" d="M 10.863281 80.441406 L 0.5625 41.996094 L 90.367188 17.933594 L 100.667969 56.375 Z M 10.863281 80.441406 "/>
</g>
</g>
</g>
<path style="fill:none;stroke-width:1.19553;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,50%,50%);stroke-opacity:1;stroke-miterlimit:10;" d="M 41.91525 8.300281 L -41.916781 8.300281 C -44.116 8.300281 -45.901156 6.519031 -45.901156 4.315906 L -45.901156 -4.316906 C -45.901156 -6.516125 -44.116 -8.301281 -41.916781 -8.301281 L 41.91525 -8.301281 C 44.118375 -8.301281 45.899625 -6.516125 45.899625 -4.316906 L 45.899625 4.315906 C 45.899625 6.519031 44.118375 8.300281 41.91525 8.300281 Z M 41.91525 8.300281 " transform="matrix(1,0,0,-1,50.616,49.187)"/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-1" x="8.036" y="51.678"/>
<use xlink:href="#glyph1-2" x="13.186685" y="51.678"/>
<use xlink:href="#glyph1-3" x="17.610097" y="51.678"/>
<use xlink:href="#glyph1-4" x="22.402127" y="51.678"/>
<use xlink:href="#glyph1-2" x="27.552812" y="51.678"/>
<use xlink:href="#glyph1-5" x="31.976224" y="51.678"/>
<use xlink:href="#glyph1-6" x="35.383447" y="51.678"/>
<use xlink:href="#glyph1-2" x="40.364767" y="51.678"/>
<use xlink:href="#glyph1-7" x="44.788179" y="51.678"/>
<use xlink:href="#glyph1-8" x="49.380956" y="51.678"/>
<use xlink:href="#glyph1-9" x="51.762027" y="51.678"/>
<use xlink:href="#glyph1-8" x="55.35854" y="51.678"/>
<use xlink:href="#glyph1-10" x="57.739611" y="51.678"/>
<use xlink:href="#glyph1-11" x="62.890296" y="51.678"/>
<use xlink:href="#glyph1-6" x="67.871616" y="51.678"/>
<use xlink:href="#glyph1-12" x="72.852936" y="51.678"/>
<use xlink:href="#glyph1-3" x="75.234007" y="51.678"/>
<use xlink:href="#glyph1-9" x="80.026037" y="51.678"/>
<use xlink:href="#glyph1-13" x="83.62255" y="51.678"/>
<use xlink:href="#glyph1-1" x="88.045962" y="51.678"/>
</g>
<path style="fill:none;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 24.458219 -43.994938 C 63.532438 -83.069156 64.520719 9.020687 27.423063 -23.416813 " transform="matrix(1,0,0,-1,50.616,14.091)"/>
<path style="fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 6.208609 -0.00100906 L 0.641545 2.093317 L 2.46637 0.00123104 L 0.643004 -2.091004 Z M 6.208609 -0.00100906 " transform="matrix(-0.73027,0.6831,0.6831,0.73027,79.7534,35.91198)"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 35 KiB

2111
docs/loop-terminology.svg Normal file

File diff suppressed because it is too large Load Diff

After

Width:  |  Height:  |  Size: 116 KiB