[llvm] c3f12dd - [docs] Revise loop terminology reference.

Michael Kruse via llvm-commits llvm-commits at lists.llvm.org
Mon Oct 5 08:28:13 PDT 2020


Author: Michael Kruse
Date: 2020-10-05T10:28:04-05:00
New Revision: c3f12dd6069ebfc913953a4a29e9db5dd4749160

URL: https://github.com/llvm/llvm-project/commit/c3f12dd6069ebfc913953a4a29e9db5dd4749160
DIFF: https://github.com/llvm/llvm-project/commit/c3f12dd6069ebfc913953a4a29e9db5dd4749160.diff

LOG: [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

Added: 
    llvm/docs/loop-guard.svg
    llvm/docs/loop-irreducible.svg
    llvm/docs/loop-merge.svg
    llvm/docs/loop-nested.svg
    llvm/docs/loop-nonmaximal.svg
    llvm/docs/loop-separate.svg
    llvm/docs/loop-single.svg
    llvm/docs/loop-terminology.svg

Modified: 
    llvm/docs/LangRef.rst
    llvm/docs/LoopTerminology.rst

Removed: 
    


################################################################################
diff  --git a/llvm/docs/LangRef.rst b/llvm/docs/LangRef.rst
index a31b5304d66b..cd5c9e23b746 100644
--- a/llvm/docs/LangRef.rst
+++ b/llvm/docs/LangRef.rst
@@ -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
 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
 

diff  --git a/llvm/docs/LoopTerminology.rst b/llvm/docs/LoopTerminology.rst
index 0870ab9fcac1..ec925213c3d6 100644
--- a/llvm/docs/LoopTerminology.rst
+++ b/llvm/docs/LoopTerminology.rst
@@ -7,119 +7,241 @@ LLVM Loop Terminology (and Canonical Forms)
 .. contents::
    :local:
 
-Introduction
-============
+Loop Definition
+===============
 
-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.
+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.
 
-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.
+A loop is a subset of nodes from the control-flow graph (CFG; where
+nodes represent basic blocks) with the following properties:
 
-Note that there are some important implications of this definition:
+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).
 
-* Not all SCCs are loops.  There exist SCCs that do not meet the
-  dominance requirement and such are not considered loops.  
+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).
 
-* Loops can contain non-loop SCCs and non-loop SCCs may contain
-  loops.  Loops may also contain sub-loops.
+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.
 
-* 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.
+In computer science literature, this is often called a *natural loop*.
+In LLVM, this is the only definition of a loop.
 
-* 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.
+Terminology
+-----------
 
-* Any two loops are either fully disjoint (no intersecting blocks), or
-  one must be a sub-loop of the other.
+The definition of a loop comes with some additional terminology:
 
-* Loops in a function form a forest. One implication of this fact
-  is that a loop either has no parent or a single parent.
+* 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 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...
+* A **latch** is a loop node that has an edge to the header.
 
-Key Terminology
-===============
+* 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 
diff erent 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>
 
-**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.
-
-**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.  
-
-**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.
-
-**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.
-
-**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.  
-
-**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. 
-
-**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.
-
-**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.
-
-It's important to note that the same basic block can play multiple
-roles in the same loop, or in 
diff erent 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:
+
+* Loops can be nested inside each other. That is, a loop's node set can
+  be a subset of another loop with a 
diff erent 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
 ========
 
@@ -139,7 +261,7 @@ are important for working successfully with this interface.
   be removed from LoopInfo. If this can not be done for some reason,
   then the optimization is *required* to preserve the static
   reachability of the loop.
-  
+
 
 .. _loop-terminology-loop-simplify:
 

diff  --git a/llvm/docs/loop-guard.svg b/llvm/docs/loop-guard.svg
new file mode 100644
index 000000000000..dbb930f0573e
--- /dev/null
+++ b/llvm/docs/loop-guard.svg
@@ -0,0 +1,1079 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="198.434pt" height="192.824pt" viewBox="0 0 198.434 192.824" 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.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-2">
+<path style="stroke:none;" d="M 4.34375 0 L 4.34375 -4.421875 L 3.5625 -4.421875 L 3.5625 -1.53125 C 3.5625 -0.78125 3 -0.4375 2.359375 -0.4375 C 1.65625 -0.4375 1.578125 -0.703125 1.578125 -1.125 L 1.578125 -4.421875 L 0.8125 -4.421875 L 0.8125 -1.09375 C 0.8125 -0.375 1.03125 0.109375 1.859375 0.109375 C 2.390625 0.109375 3.09375 -0.046875 3.59375 -0.484375 L 3.59375 0 Z M 4.34375 0 "/>
+</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 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-5">
+<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-6">
+<path style="stroke:none;" d="M 4.78125 -2.21875 C 4.78125 -3.421875 4.15625 -4.53125 3.203125 -4.53125 C 2.609375 -4.53125 2.03125 -4.328125 1.5625 -3.9375 L 1.5625 -4.421875 L 0.8125 -4.421875 L 0.8125 1.9375 L 1.59375 1.9375 L 1.59375 -0.453125 C 1.90625 -0.171875 2.34375 0.109375 2.9375 0.109375 C 3.90625 0.109375 4.78125 -0.875 4.78125 -2.21875 Z M 4 -2.21875 C 4 -1.203125 3.296875 -0.5 2.546875 -0.5 C 2.15625 -0.5 1.890625 -0.703125 1.6875 -0.96875 C 1.59375 -1.109375 1.59375 -1.140625 1.59375 -1.3125 L 1.59375 -3.3125 C 1.828125 -3.671875 2.21875 -3.890625 2.65625 -3.890625 C 3.40625 -3.890625 4 -3.140625 4 -2.21875 Z M 4 -2.21875 "/>
+</symbol>
+<symbol overflow="visible" id="glyph1-7">
+<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-8">
+<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-9">
+<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-10">
+<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-11">
+<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-12">
+<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-13">
+<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-14">
+<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-15">
+<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 45 71 L 198.433594 71 L 198.433594 163 L 45 163 Z M 45 71 "/>
+</clipPath>
+<clipPath id="clip2">
+  <path d="M 102 30 L 133 30 L 133 46 L 102 46 Z M 102 30 "/>
+</clipPath>
+<clipPath id="clip3">
+  <path d="M 128.585938 30.113281 L 106.710938 30.113281 C 104.507812 30.113281 102.726562 31.898438 102.726562 34.101562 L 102.726562 41.738281 C 102.726562 43.9375 104.507812 45.722656 106.710938 45.722656 L 128.585938 45.722656 C 130.785156 45.722656 132.570312 43.9375 132.570312 41.738281 L 132.570312 34.101562 C 132.570312 31.898438 130.785156 30.113281 128.585938 30.113281 Z M 128.585938 30.113281 "/>
+</clipPath>
+<clipPath id="clip4">
+  <path d="M 96.628906 62.746094 L 148.265625 48.910156 L 138.667969 13.089844 L 87.027344 26.925781 Z M 96.628906 62.746094 "/>
+</clipPath>
+<linearGradient id="linear0" gradientUnits="userSpaceOnUse" x1="0" y1="19.259833" x2="0" y2="80.740167" gradientTransform="matrix(0.516377,-0.138363,-0.0959834,-0.358215,96.627344,62.747886)">
+<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.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.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.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.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.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.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.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.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.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.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.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.742187" 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.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.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.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.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.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.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="clip5">
+  <path d="M 94 69 L 141 69 L 141 86 L 94 86 Z M 94 69 "/>
+</clipPath>
+<clipPath id="clip6">
+  <path d="M 137.007812 69.597656 L 98.285156 69.597656 C 96.085938 69.597656 94.300781 71.378906 94.300781 73.582031 L 94.300781 81.097656 C 94.300781 83.300781 96.085938 85.085938 98.285156 85.085938 L 137.007812 85.085938 C 139.207031 85.085938 140.992188 83.300781 140.992188 81.097656 L 140.992188 73.582031 C 140.992188 71.378906 139.207031 69.597656 137.007812 69.597656 Z M 137.007812 69.597656 "/>
+</clipPath>
+<clipPath id="clip7">
+  <path d="M 84.761719 108.921875 L 161.917969 88.25 L 150.53125 45.757812 L 73.375 66.429688 Z M 84.761719 108.921875 "/>
+</clipPath>
+<linearGradient id="linear1" gradientUnits="userSpaceOnUse" x1="0" y1="19.260254" x2="0" y2="80.739746" gradientTransform="matrix(0.771556,-0.206738,-0.113855,-0.424913,84.761951,108.922513)">
+<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.253845%,99.62616%,99.62616%);stop-opacity:1;"/>
+<stop offset="0.109375" style="stop-color:rgb(99.014282%,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.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.332764%,98.666382%,98.666382%);stop-opacity:1;"/>
+<stop offset="0.140625" style="stop-color:rgb(97.093201%,98.545837%,98.545837%);stop-opacity:1;"/>
+<stop offset="0.144531" style="stop-color:rgb(96.853638%,98.425293%,98.425293%);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.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.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.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.009949%,96.504211%,96.504211%);stop-opacity:1;"/>
+<stop offset="0.210938" style="stop-color:rgb(92.770386%,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.088867%,95.544434%,95.544434%);stop-opacity:1;"/>
+<stop offset="0.242188" style="stop-color:rgb(90.849304%,95.423889%,95.423889%);stop-opacity:1;"/>
+<stop offset="0.246094" style="stop-color:rgb(90.609741%,95.303345%,95.303345%);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.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.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.766052%,93.382263%,93.382263%);stop-opacity:1;"/>
+<stop offset="0.3125" style="stop-color:rgb(86.526489%,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.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.443237%,91.221619%,91.221619%);stop-opacity:1;"/>
+<stop offset="0.382812" style="stop-color:rgb(82.203674%,91.101074%,91.101074%);stop-opacity:1;"/>
+<stop offset="0.386719" style="stop-color:rgb(81.964111%,90.98053%,90.98053%);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.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.878052%,85.9375%,85.9375%);stop-opacity:1;"/>
+<stop offset="0.554688" style="stop-color:rgb(71.638489%,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.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.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.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.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.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.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.31134%,80.654907%,80.654907%);stop-opacity:1;"/>
+<stop offset="0.726563" style="stop-color:rgb(61.071777%,80.535889%,80.535889%);stop-opacity:1;"/>
+<stop offset="0.730469" style="stop-color:rgb(60.830688%,80.415344%,80.415344%);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.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.988525%,78.492737%,78.492737%);stop-opacity:1;"/>
+<stop offset="0.796875" style="stop-color:rgb(56.748962%,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.820312" style="stop-color:rgb(55.307007%,77.653503%,77.653503%);stop-opacity:1;"/>
+<stop offset="0.824219" style="stop-color:rgb(55.067444%,77.532959%,77.532959%);stop-opacity:1;"/>
+<stop offset="0.828125" style="stop-color:rgb(54.827881%,77.41394%,77.41394%);stop-opacity:1;"/>
+<stop offset="0.832031" style="stop-color:rgb(54.586792%,77.293396%,77.293396%);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.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.66571%,76.332092%,76.332092%);stop-opacity:1;"/>
+<stop offset="0.867188" style="stop-color:rgb(52.426147%,76.213074%,76.213074%);stop-opacity:1;"/>
+<stop offset="0.871094" style="stop-color:rgb(52.185059%,76.092529%,76.092529%);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.744629%,75.370789%,75.370789%);stop-opacity:1;"/>
+<stop offset="0.898438" style="stop-color:rgb(50.505066%,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="clip8">
+  <path d="M 71 108 L 164 108 L 164 126 L 71 126 Z M 71 108 "/>
+</clipPath>
+<clipPath id="clip9">
+  <path d="M 159.5625 108.957031 L 75.730469 108.957031 C 73.53125 108.957031 71.746094 110.738281 71.746094 112.941406 L 71.746094 121.574219 C 71.746094 123.777344 73.53125 125.558594 75.730469 125.558594 L 159.5625 125.558594 C 161.765625 125.558594 163.546875 123.777344 163.546875 121.574219 L 163.546875 112.941406 C 163.546875 110.738281 161.765625 108.957031 159.5625 108.957031 Z M 159.5625 108.957031 "/>
+</clipPath>
+<clipPath id="clip10">
+  <path d="M 52.988281 168.089844 L 199.058594 128.953125 L 182.304688 66.425781 L 36.234375 105.5625 Z M 52.988281 168.089844 "/>
+</clipPath>
+<linearGradient id="linear2" gradientUnits="userSpaceOnUse" x1="0" y1="19.259206" x2="0" y2="80.740794" gradientTransform="matrix(1.460699,-0.391393,-0.167539,-0.625266,52.989035,168.090929)">
+<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.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.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.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.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.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.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.273437" 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.335937" 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.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.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.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.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.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.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.742187" 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.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.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.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="clip11">
+  <path d="M 106 149 L 129 149 L 129 163 L 106 163 Z M 106 149 "/>
+</clipPath>
+<clipPath id="clip12">
+  <path d="M 124.480469 149.433594 L 110.816406 149.433594 C 108.613281 149.433594 106.828125 151.21875 106.828125 153.417969 L 106.828125 158.722656 C 106.828125 160.925781 108.613281 162.710938 110.816406 162.710938 L 124.480469 162.710938 C 126.679688 162.710938 128.464844 160.925781 128.464844 158.722656 L 128.464844 153.417969 C 128.464844 151.21875 126.679688 149.433594 124.480469 149.433594 Z M 124.480469 149.433594 "/>
+</clipPath>
+<clipPath id="clip13">
+  <path d="M 102.410156 175.664062 L 140.640625 165.421875 L 132.886719 136.476562 L 94.652344 146.722656 Z M 102.410156 175.664062 "/>
+</clipPath>
+<linearGradient id="linear3" gradientUnits="userSpaceOnUse" x1="0" y1="19.258387" x2="0" y2="80.741613" gradientTransform="matrix(0.382315,-0.102441,-0.0775554,-0.289441,102.409016,175.665094)">
+<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.776245%,99.386597%,99.386597%);stop-opacity:1;"/>
+<stop offset="0.117188" style="stop-color:rgb(98.536682%,99.267578%,99.267578%);stop-opacity:1;"/>
+<stop offset="0.121094" style="stop-color:rgb(98.295593%,99.147034%,99.147034%);stop-opacity:1;"/>
+<stop offset="0.125" style="stop-color:rgb(98.05603%,99.028015%,99.028015%);stop-opacity:1;"/>
+<stop offset="0.128906" style="stop-color:rgb(97.814941%,98.907471%,98.907471%);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.148437" style="stop-color:rgb(96.614075%,98.306274%,98.306274%);stop-opacity:1;"/>
+<stop offset="0.152344" style="stop-color:rgb(96.374512%,98.18573%,98.18573%);stop-opacity:1;"/>
+<stop offset="0.15625" style="stop-color:rgb(96.134949%,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.179688" style="stop-color:rgb(94.692993%,97.346497%,97.346497%);stop-opacity:1;"/>
+<stop offset="0.183594" style="stop-color:rgb(94.45343%,97.225952%,97.225952%);stop-opacity:1;"/>
+<stop offset="0.1875" style="stop-color:rgb(94.213867%,97.106934%,97.106934%);stop-opacity:1;"/>
+<stop offset="0.191406" style="stop-color:rgb(93.972778%,96.986389%,96.986389%);stop-opacity:1;"/>
+<stop offset="0.195312" style="stop-color:rgb(93.733215%,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.051697%,96.025085%,96.025085%);stop-opacity:1;"/>
+<stop offset="0.226563" style="stop-color:rgb(91.812134%,95.906067%,95.906067%);stop-opacity:1;"/>
+<stop offset="0.230469" style="stop-color:rgb(91.571045%,95.785522%,95.785522%);stop-opacity:1;"/>
+<stop offset="0.234375" style="stop-color:rgb(91.331482%,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.257813" style="stop-color:rgb(89.889526%,94.944763%,94.944763%);stop-opacity:1;"/>
+<stop offset="0.261719" style="stop-color:rgb(89.649963%,94.824219%,94.824219%);stop-opacity:1;"/>
+<stop offset="0.265625" style="stop-color:rgb(89.4104%,94.7052%,94.7052%);stop-opacity:1;"/>
+<stop offset="0.269531" style="stop-color:rgb(89.169312%,94.584656%,94.584656%);stop-opacity:1;"/>
+<stop offset="0.273437" 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.24823%,93.623352%,93.623352%);stop-opacity:1;"/>
+<stop offset="0.304688" style="stop-color:rgb(87.008667%,93.504333%,93.504333%);stop-opacity:1;"/>
+<stop offset="0.308594" style="stop-color:rgb(86.767578%,93.383789%,93.383789%);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.327148%,92.662048%,92.662048%);stop-opacity:1;"/>
+<stop offset="0.335938" style="stop-color:rgb(85.087585%,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.367187" style="stop-color:rgb(83.164978%,91.581726%,91.581726%);stop-opacity:1;"/>
+<stop offset="0.371094" style="stop-color:rgb(82.925415%,91.461182%,91.461182%);stop-opacity:1;"/>
+<stop offset="0.375" style="stop-color:rgb(82.685852%,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.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.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.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.474792%,84.736633%,84.736633%);stop-opacity:1;"/>
+<stop offset="0.59375" style="stop-color:rgb(69.235229%,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.073059%,83.535767%,83.535767%);stop-opacity:1;"/>
+<stop offset="0.632812" style="stop-color:rgb(66.833496%,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.151978%,82.575989%,82.575989%);stop-opacity:1;"/>
+<stop offset="0.664062" style="stop-color:rgb(64.912415%,82.455444%,82.455444%);stop-opacity:1;"/>
+<stop offset="0.667969" style="stop-color:rgb(64.672852%,82.3349%,82.3349%);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.750244%,81.375122%,81.375122%);stop-opacity:1;"/>
+<stop offset="0.703125" style="stop-color:rgb(62.510681%,81.254578%,81.254578%);stop-opacity:1;"/>
+<stop offset="0.707031" style="stop-color:rgb(62.271118%,81.134033%,81.134033%);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.348511%,80.174255%,80.174255%);stop-opacity:1;"/>
+<stop offset="0.742188" style="stop-color:rgb(60.108948%,80.053711%,80.053711%);stop-opacity:1;"/>
+<stop offset="0.746094" style="stop-color:rgb(59.869385%,79.933167%,79.933167%);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.427429%,79.212952%,79.212952%);stop-opacity:1;"/>
+<stop offset="0.773438" style="stop-color:rgb(58.187866%,79.093933%,79.093933%);stop-opacity:1;"/>
+<stop offset="0.777344" style="stop-color:rgb(57.946777%,78.973389%,78.973389%);stop-opacity:1;"/>
+<stop offset="0.78125" style="stop-color:rgb(57.707214%,78.852844%,78.852844%);stop-opacity:1;"/>
+<stop offset="0.785156" style="stop-color:rgb(57.467651%,78.7323%,78.7323%);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.804687" style="stop-color:rgb(56.266785%,78.132629%,78.132629%);stop-opacity:1;"/>
+<stop offset="0.808594" style="stop-color:rgb(56.025696%,78.012085%,78.012085%);stop-opacity:1;"/>
+<stop offset="0.8125" style="stop-color:rgb(55.786133%,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.835938" style="stop-color:rgb(54.345703%,77.172852%,77.172852%);stop-opacity:1;"/>
+<stop offset="0.839844" style="stop-color:rgb(54.104614%,77.052307%,77.052307%);stop-opacity:1;"/>
+<stop offset="0.84375" style="stop-color:rgb(53.865051%,76.931763%,76.931763%);stop-opacity:1;"/>
+<stop offset="0.847656" style="stop-color:rgb(53.623962%,76.811218%,76.811218%);stop-opacity:1;"/>
+<stop offset="0.851563" style="stop-color:rgb(53.384399%,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.702881%,75.85144%,75.85144%);stop-opacity:1;"/>
+<stop offset="0.882812" style="stop-color:rgb(51.463318%,75.730896%,75.730896%);stop-opacity:1;"/>
+<stop offset="0.886719" style="stop-color:rgb(51.222229%,75.610352%,75.610352%);stop-opacity:1;"/>
+<stop offset="0.890625" style="stop-color:rgb(50.982666%,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.860812 -90.8665 L -45.8345 -90.8665 C -48.033719 -90.8665 -49.818875 -92.64775 -49.818875 -94.850875 L -49.818875 -133.026656 C -49.818875 -135.225875 -48.033719 -137.011031 -45.8345 -137.011031 L 53.860812 -137.011031 C 56.060031 -137.011031 57.845187 -135.225875 57.845187 -133.026656 L 57.845187 -94.850875 C 57.845187 -92.64775 56.060031 -90.8665 53.860812 -90.8665 Z M 53.860812 -90.8665 " transform="matrix(1,0,0,-1,117.647,3.321)"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph0-1" x="183.166" y="102.857"/>
+  <use xlink:href="#glyph0-2" x="183.166" y="106.696043"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph0-2" x="183.166" y="115.234901"/>
+  <use xlink:href="#glyph0-3" x="183.166" y="123.326158"/>
+</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.0014375 -3.518844 L 0.0014375 -22.155562 " transform="matrix(1,0,0,-1,117.647,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.208512 0.0014375 L 0.642106 2.091281 L 2.466325 0.0014375 L 0.642106 -2.092313 Z M 6.208512 0.0014375 " transform="matrix(0,1,1,0,117.647,23.1118)"/>
+<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.0014375 -42.999312 L 0.0014375 -61.636031 " transform="matrix(1,0,0,-1,117.647,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.208381 0.0014375 L 0.641975 2.091281 L 2.466194 0.0014375 L 0.641975 -2.092313 Z M 6.208381 0.0014375 " transform="matrix(0,1,1,0,117.647,62.5924)"/>
+<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.0014375 -82.362594 L 0.0014375 -100.999312 " transform="matrix(1,0,0,-1,117.647,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.206726 0.0014375 L 0.644226 2.091281 L 2.464539 0.0014375 L 0.644226 -2.092313 Z M 6.206726 0.0014375 " transform="matrix(0,1,1,0,117.647,101.95343)"/>
+<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.0014375 -122.839156 L 0.0014375 -141.475875 " transform="matrix(1,0,0,-1,117.647,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.206419 0.0014375 L 0.643919 2.091281 L 2.464231 0.0014375 L 0.643919 -2.092313 Z M 6.206419 0.0014375 " transform="matrix(0,1,1,0,117.647,142.4303)"/>
+<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.0014375 -159.987594 L 0.0014375 -178.624312 " transform="matrix(1,0,0,-1,117.647,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.205556 0.0014375 L 0.643056 2.091281 L 2.467275 0.0014375 L 0.643056 -2.092313 Z M 6.205556 0.0014375 " transform="matrix(0,1,1,0,117.647,179.5796)"/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(50%,50%,50%);fill-opacity:0.5;" d="M 130.730469 32.261719 L 108.855469 32.261719 C 106.65625 32.261719 104.871094 34.046875 104.871094 36.246094 L 104.871094 43.882812 C 104.871094 46.085938 106.65625 47.871094 108.855469 47.871094 L 130.730469 47.871094 C 132.933594 47.871094 134.714844 46.085938 134.714844 43.882812 L 134.714844 36.246094 C 134.714844 34.046875 132.933594 32.261719 130.730469 32.261719 Z M 130.730469 32.261719 "/>
+<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 104.722656 53.183594 L 98.824219 31.160156 L 130.570312 22.652344 L 136.472656 44.675781 Z M 104.722656 53.183594 "/>
+</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 10.938937 7.805719 L -10.936063 7.805719 C -13.139188 7.805719 -14.920438 6.020563 -14.920438 3.817438 L -14.920438 -3.819281 C -14.920438 -6.0185 -13.139188 -7.803656 -10.936063 -7.803656 L 10.938937 -7.803656 C 13.138156 -7.803656 14.923312 -6.0185 14.923312 -3.819281 L 14.923312 3.817438 C 14.923312 6.020563 13.138156 7.805719 10.938937 7.805719 Z M 10.938937 7.805719 " transform="matrix(1,0,0,-1,117.647,37.919)"/>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph1-1" x="106.046" y="40.35"/>
+  <use xlink:href="#glyph1-2" x="111.02732" y="40.35"/>
+  <use xlink:href="#glyph1-3" x="116.178005" y="40.35"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph1-4" x="120.691081" y="40.35"/>
+  <use xlink:href="#glyph1-5" x="124.098304" y="40.35"/>
+</g>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(50%,50%,50%);fill-opacity:0.5;" d="M 139.15625 71.742188 L 100.433594 71.742188 C 98.230469 71.742188 96.449219 73.527344 96.449219 75.726562 L 96.449219 83.246094 C 96.449219 85.445312 98.230469 87.230469 100.433594 87.230469 L 139.15625 87.230469 C 141.355469 87.230469 143.140625 85.445312 143.140625 83.246094 L 143.140625 75.726562 C 143.140625 73.527344 141.355469 71.742188 139.15625 71.742188 Z M 139.15625 71.742188 "/>
+<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 97.429688 96.757812 L 90.429688 70.632812 L 137.863281 57.921875 L 144.863281 84.046875 Z M 97.429688 96.757812 "/>
+</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 19.360812 7.742344 L -19.361844 7.742344 C -21.561063 7.742344 -23.346219 5.961094 -23.346219 3.757969 L -23.346219 -3.757656 C -23.346219 -5.960781 -21.561063 -7.745937 -19.361844 -7.745937 L 19.360812 -7.745937 C 21.560031 -7.745937 23.345187 -5.960781 23.345187 -3.757656 L 23.345187 3.757969 C 23.345187 5.961094 21.560031 7.742344 19.360812 7.742344 Z M 19.360812 7.742344 " transform="matrix(1,0,0,-1,117.647,77.34)"/>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph1-6" x="97.622" y="79.83"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph1-4" x="102.493731" y="79.83"/>
+  <use xlink:href="#glyph1-7" x="105.900954" y="79.83"/>
+  <use xlink:href="#glyph1-8" x="110.324366" y="79.83"/>
+  <use xlink:href="#glyph1-7" x="115.475051" y="79.83"/>
+  <use xlink:href="#glyph1-3" x="119.898463" y="79.83"/>
+  <use xlink:href="#glyph1-5" x="124.690493" y="79.83"/>
+  <use xlink:href="#glyph1-7" x="129.841178" y="79.83"/>
+  <use xlink:href="#glyph1-4" x="134.26459" y="79.83"/>
+</g>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(50%,50%,50%);fill-opacity:0.5;" d="M 161.710938 111.101562 L 77.878906 111.101562 C 75.675781 111.101562 73.890625 112.886719 73.890625 115.089844 L 73.890625 123.722656 C 73.890625 125.921875 75.675781 127.707031 77.878906 127.707031 L 161.710938 127.707031 C 163.910156 127.707031 165.695312 125.921875 165.695312 123.722656 L 165.695312 115.089844 C 165.695312 112.886719 163.910156 111.101562 161.710938 111.101562 Z M 161.710938 111.101562 "/>
+<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 77.894531 148.511719 L 67.59375 110.066406 L 157.398438 86.003906 L 167.699219 124.449219 Z M 77.894531 148.511719 "/>
+</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.9155 8.300969 L -41.916531 8.300969 C -44.11575 8.300969 -45.900906 6.519719 -45.900906 4.316594 L -45.900906 -4.316219 C -45.900906 -6.519344 -44.11575 -8.300594 -41.916531 -8.300594 L 41.9155 -8.300594 C 44.118625 -8.300594 45.899875 -6.519344 45.899875 -4.316219 L 45.899875 4.316594 C 45.899875 6.519719 44.118625 8.300969 41.9155 8.300969 Z M 41.9155 8.300969 " transform="matrix(1,0,0,-1,117.647,117.258)"/>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph1-8" x="75.067" y="119.749"/>
+  <use xlink:href="#glyph1-7" x="80.217685" y="119.749"/>
+  <use xlink:href="#glyph1-3" x="84.641097" y="119.749"/>
+  <use xlink:href="#glyph1-5" x="89.433127" y="119.749"/>
+  <use xlink:href="#glyph1-7" x="94.583812" y="119.749"/>
+  <use xlink:href="#glyph1-4" x="99.007224" y="119.749"/>
+  <use xlink:href="#glyph1-9" x="102.414447" y="119.749"/>
+  <use xlink:href="#glyph1-7" x="107.395767" y="119.749"/>
+  <use xlink:href="#glyph1-10" x="111.819179" y="119.749"/>
+  <use xlink:href="#glyph1-11" x="116.411956" y="119.749"/>
+  <use xlink:href="#glyph1-12" x="118.793027" y="119.749"/>
+  <use xlink:href="#glyph1-11" x="122.38954" y="119.749"/>
+  <use xlink:href="#glyph1-13" x="124.770611" y="119.749"/>
+  <use xlink:href="#glyph1-1" x="129.921296" y="119.749"/>
+  <use xlink:href="#glyph1-9" x="134.902616" y="119.749"/>
+  <use xlink:href="#glyph1-14" x="139.883936" y="119.749"/>
+  <use xlink:href="#glyph1-3" x="142.265007" y="119.749"/>
+  <use xlink:href="#glyph1-12" x="147.057037" y="119.749"/>
+  <use xlink:href="#glyph1-15" x="150.65355" y="119.749"/>
+  <use xlink:href="#glyph1-8" x="155.076962" y="119.749"/>
+</g>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(50%,50%,50%);fill-opacity:0.5;" d="M 126.625 151.578125 L 112.960938 151.578125 C 110.761719 151.578125 108.976562 153.363281 108.976562 155.566406 L 108.976562 160.871094 C 108.976562 163.070312 110.761719 164.855469 112.960938 164.855469 L 126.625 164.855469 C 128.828125 164.855469 130.613281 163.070312 130.613281 160.871094 L 130.613281 155.566406 C 130.613281 153.363281 128.828125 151.578125 126.625 151.578125 Z M 126.625 151.578125 "/>
+<g clip-path="url(#clip11)" clip-rule="nonzero">
+<g clip-path="url(#clip12)" clip-rule="nonzero">
+<g clip-path="url(#clip13)" clip-rule="nonzero">
+<path style=" stroke:none;fill-rule:nonzero;fill:url(#linear3);" d="M 108.277344 168.117188 L 103.511719 150.320312 L 127.015625 144.023438 L 131.785156 161.820312 Z M 108.277344 168.117188 "/>
+</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 6.833469 6.637406 L -6.830594 6.637406 C -9.033719 6.637406 -10.818875 4.85225 -10.818875 2.653031 L -10.818875 -2.651656 C -10.818875 -4.854781 -9.033719 -6.639937 -6.830594 -6.639937 L 6.833469 -6.639937 C 9.032687 -6.639937 10.817844 -4.854781 10.817844 -2.651656 L 10.817844 2.653031 C 10.817844 4.85225 9.032687 6.637406 6.833469 6.637406 Z M 6.833469 6.637406 " transform="matrix(1,0,0,-1,117.647,156.071)"/>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph1-7" x="110.15" y="159.279"/>
+  <use xlink:href="#glyph1-10" x="114.573412" y="159.279"/>
+  <use xlink:href="#glyph1-11" x="119.166189" y="159.279"/>
+  <use xlink:href="#glyph1-12" x="121.54726" y="159.279"/>
+</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.458469 -122.839156 C 63.532687 -161.913375 64.520969 -69.819625 27.423312 -102.257125 " transform="matrix(1,0,0,-1,117.647,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.207516 -0.00181079 L 0.643228 2.095421 L 2.465329 0.000483942 L 0.641957 -2.091696 Z M 6.207516 -0.00181079 " transform="matrix(-0.73027,0.68312,0.68312,0.73027,146.7844,103.9835)"/>
+<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 -8.397 -42.999312 C -38.119656 -72.718062 -115.420438 -140.694625 -15.424344 -151.3665 " transform="matrix(1,0,0,-1,117.647,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.208758 0.00188008 L 0.643636 2.09367 L 2.464707 -0.00155983 L 0.643196 -2.094276 Z M 6.208758 0.00188008 " transform="matrix(0.99524,0.0969,0.0969,-0.99524,99.85577,154.45493)"/>
+</g>
+</svg>

diff  --git a/llvm/docs/loop-irreducible.svg b/llvm/docs/loop-irreducible.svg
new file mode 100644
index 000000000000..f9e588916270
--- /dev/null
+++ b/llvm/docs/loop-irreducible.svg
@@ -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>

diff  --git a/llvm/docs/loop-merge.svg b/llvm/docs/loop-merge.svg
new file mode 100644
index 000000000000..ea5e574b2d51
--- /dev/null
+++ b/llvm/docs/loop-merge.svg
@@ -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>

diff  --git a/llvm/docs/loop-nested.svg b/llvm/docs/loop-nested.svg
new file mode 100644
index 000000000000..372a3b43ec48
--- /dev/null
+++ b/llvm/docs/loop-nested.svg
@@ -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>

diff  --git a/llvm/docs/loop-nonmaximal.svg b/llvm/docs/loop-nonmaximal.svg
new file mode 100644
index 000000000000..cb6e4d64b503
--- /dev/null
+++ b/llvm/docs/loop-nonmaximal.svg
@@ -0,0 +1,1280 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="107.298pt" height="168.892pt" viewBox="0 0 107.298 168.892" 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 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="glyph0-6">
+<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="glyph0-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="glyph0-8">
+<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="glyph0-9">
+<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-10">
+<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="glyph0-11">
+<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="glyph0-12">
+<path style="stroke:none;" d="M 3.453125 -6.25 L 3.453125 -6.921875 C 3.34375 -6.953125 3.03125 -7.03125 2.65625 -7.03125 C 1.71875 -7.03125 1 -6.3125 1 -5.328125 L 1 -4.421875 L 0.265625 -4.421875 L 0.265625 -3.84375 L 1 -3.84375 L 1 0 L 1.75 0 L 1.75 -3.84375 L 2.84375 -3.84375 L 2.84375 -4.421875 L 1.71875 -4.421875 L 1.71875 -5.609375 C 1.71875 -6.34375 2.390625 -6.421875 2.65625 -6.421875 C 2.84375 -6.421875 3.125 -6.40625 3.453125 -6.25 Z M 3.453125 -6.25 "/>
+</symbol>
+</g>
+<clipPath id="clip1">
+  <path d="M 7 35 L 107.296875 35 L 107.296875 138 L 7 138 Z M 7 35 "/>
+</clipPath>
+<clipPath id="clip2">
+  <path d="M 33 24 L 74 24 L 74 40 L 33 40 Z M 33 24 "/>
+</clipPath>
+<clipPath id="clip3">
+  <path d="M 69.742188 24.445312 L 37.554688 24.445312 C 35.355469 24.445312 33.570312 26.230469 33.570312 28.429688 L 33.570312 35.679688 C 33.570312 37.882812 35.355469 39.664062 37.554688 39.664062 L 69.742188 39.664062 C 71.941406 39.664062 73.726562 37.882812 73.726562 35.679688 L 73.726562 28.429688 C 73.726562 26.230469 71.941406 24.445312 69.742188 24.445312 Z M 69.742188 24.445312 "/>
+</clipPath>
+<clipPath id="clip4">
+  <path d="M 25.367188 60.761719 L 92.496094 42.773438 L 81.929688 3.351562 L 14.804688 21.335938 Z M 25.367188 60.761719 "/>
+</clipPath>
+<linearGradient id="linear0" gradientUnits="userSpaceOnUse" x1="0" y1="19.260251" x2="0" y2="80.739749" gradientTransform="matrix(0.671283,-0.17987,-0.10564,-0.394254,25.366863,60.762177)">
+<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.253845%,99.62616%,99.62616%);stop-opacity:1;"/>
+<stop offset="0.109375" style="stop-color:rgb(99.014282%,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.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.332764%,98.666382%,98.666382%);stop-opacity:1;"/>
+<stop offset="0.140625" style="stop-color:rgb(97.093201%,98.545837%,98.545837%);stop-opacity:1;"/>
+<stop offset="0.144531" style="stop-color:rgb(96.853638%,98.425293%,98.425293%);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.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.009949%,96.504211%,96.504211%);stop-opacity:1;"/>
+<stop offset="0.210938" style="stop-color:rgb(92.770386%,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.088867%,95.544434%,95.544434%);stop-opacity:1;"/>
+<stop offset="0.242188" style="stop-color:rgb(90.849304%,95.423889%,95.423889%);stop-opacity:1;"/>
+<stop offset="0.246094" style="stop-color:rgb(90.609741%,95.303345%,95.303345%);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.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.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.766052%,93.382263%,93.382263%);stop-opacity:1;"/>
+<stop offset="0.3125" style="stop-color:rgb(86.526489%,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.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.443237%,91.221619%,91.221619%);stop-opacity:1;"/>
+<stop offset="0.382812" style="stop-color:rgb(82.203674%,91.101074%,91.101074%);stop-opacity:1;"/>
+<stop offset="0.386719" style="stop-color:rgb(81.964111%,90.98053%,90.98053%);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.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.878052%,85.9375%,85.9375%);stop-opacity:1;"/>
+<stop offset="0.554688" style="stop-color:rgb(71.638489%,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.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.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.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.31134%,80.654907%,80.654907%);stop-opacity:1;"/>
+<stop offset="0.726562" style="stop-color:rgb(61.071777%,80.535889%,80.535889%);stop-opacity:1;"/>
+<stop offset="0.730469" style="stop-color:rgb(60.830688%,80.415344%,80.415344%);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.742187" 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.789062" style="stop-color:rgb(57.228088%,78.613281%,78.613281%);stop-opacity:1;"/>
+<stop offset="0.792969" style="stop-color:rgb(56.988525%,78.492737%,78.492737%);stop-opacity:1;"/>
+<stop offset="0.796875" style="stop-color:rgb(56.748962%,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.820312" style="stop-color:rgb(55.307007%,77.653503%,77.653503%);stop-opacity:1;"/>
+<stop offset="0.824219" style="stop-color:rgb(55.067444%,77.532959%,77.532959%);stop-opacity:1;"/>
+<stop offset="0.828125" style="stop-color:rgb(54.827881%,77.41394%,77.41394%);stop-opacity:1;"/>
+<stop offset="0.832031" style="stop-color:rgb(54.586792%,77.293396%,77.293396%);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.66571%,76.332092%,76.332092%);stop-opacity:1;"/>
+<stop offset="0.867187" style="stop-color:rgb(52.426147%,76.213074%,76.213074%);stop-opacity:1;"/>
+<stop offset="0.871094" style="stop-color:rgb(52.185059%,76.092529%,76.092529%);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.744629%,75.370789%,75.370789%);stop-opacity:1;"/>
+<stop offset="0.898438" style="stop-color:rgb(50.505066%,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="clip5">
+  <path d="M 42 130 L 65 130 L 65 144 L 42 144 Z M 42 130 "/>
+</clipPath>
+<clipPath id="clip6">
+  <path d="M 60.480469 130.585938 L 46.816406 130.585938 C 44.617188 130.585938 42.832031 132.371094 42.832031 134.570312 L 42.832031 139.878906 C 42.832031 142.078125 44.617188 143.863281 46.816406 143.863281 L 60.480469 143.863281 C 62.683594 143.863281 64.464844 142.078125 64.464844 139.878906 L 64.464844 134.570312 C 64.464844 132.371094 62.683594 130.585938 60.480469 130.585938 Z M 60.480469 130.585938 "/>
+</clipPath>
+<clipPath id="clip7">
+  <path d="M 38.410156 156.820312 L 76.640625 146.574219 L 68.886719 117.632812 L 30.65625 127.875 Z M 38.410156 156.820312 "/>
+</clipPath>
+<linearGradient id="linear1" gradientUnits="userSpaceOnUse" x1="0" y1="19.258387" x2="0" y2="80.741613" gradientTransform="matrix(0.382315,-0.102441,-0.0775554,-0.289441,38.411016,156.819094)">
+<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.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.776245%,99.386597%,99.386597%);stop-opacity:1;"/>
+<stop offset="0.117188" style="stop-color:rgb(98.536682%,99.267578%,99.267578%);stop-opacity:1;"/>
+<stop offset="0.121094" style="stop-color:rgb(98.295593%,99.147034%,99.147034%);stop-opacity:1;"/>
+<stop offset="0.125" style="stop-color:rgb(98.05603%,99.028015%,99.028015%);stop-opacity:1;"/>
+<stop offset="0.128906" style="stop-color:rgb(97.814941%,98.907471%,98.907471%);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.148437" style="stop-color:rgb(96.614075%,98.306274%,98.306274%);stop-opacity:1;"/>
+<stop offset="0.152344" style="stop-color:rgb(96.374512%,98.18573%,98.18573%);stop-opacity:1;"/>
+<stop offset="0.15625" style="stop-color:rgb(96.134949%,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.179688" style="stop-color:rgb(94.692993%,97.346497%,97.346497%);stop-opacity:1;"/>
+<stop offset="0.183594" style="stop-color:rgb(94.45343%,97.225952%,97.225952%);stop-opacity:1;"/>
+<stop offset="0.1875" style="stop-color:rgb(94.213867%,97.106934%,97.106934%);stop-opacity:1;"/>
+<stop offset="0.191406" style="stop-color:rgb(93.972778%,96.986389%,96.986389%);stop-opacity:1;"/>
+<stop offset="0.195312" style="stop-color:rgb(93.733215%,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.051697%,96.025085%,96.025085%);stop-opacity:1;"/>
+<stop offset="0.226563" style="stop-color:rgb(91.812134%,95.906067%,95.906067%);stop-opacity:1;"/>
+<stop offset="0.230469" style="stop-color:rgb(91.571045%,95.785522%,95.785522%);stop-opacity:1;"/>
+<stop offset="0.234375" style="stop-color:rgb(91.331482%,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.649963%,94.824219%,94.824219%);stop-opacity:1;"/>
+<stop offset="0.265625" style="stop-color:rgb(89.4104%,94.7052%,94.7052%);stop-opacity:1;"/>
+<stop offset="0.269531" style="stop-color:rgb(89.169312%,94.584656%,94.584656%);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.24823%,93.623352%,93.623352%);stop-opacity:1;"/>
+<stop offset="0.304687" style="stop-color:rgb(87.008667%,93.504333%,93.504333%);stop-opacity:1;"/>
+<stop offset="0.308594" style="stop-color:rgb(86.767578%,93.383789%,93.383789%);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.327148%,92.662048%,92.662048%);stop-opacity:1;"/>
+<stop offset="0.335938" style="stop-color:rgb(85.087585%,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.925415%,91.461182%,91.461182%);stop-opacity:1;"/>
+<stop offset="0.375" style="stop-color:rgb(82.685852%,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.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.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.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.474792%,84.736633%,84.736633%);stop-opacity:1;"/>
+<stop offset="0.59375" style="stop-color:rgb(69.235229%,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.073059%,83.535767%,83.535767%);stop-opacity:1;"/>
+<stop offset="0.632813" style="stop-color:rgb(66.833496%,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.151978%,82.575989%,82.575989%);stop-opacity:1;"/>
+<stop offset="0.664063" style="stop-color:rgb(64.912415%,82.455444%,82.455444%);stop-opacity:1;"/>
+<stop offset="0.667969" style="stop-color:rgb(64.672852%,82.3349%,82.3349%);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.750244%,81.375122%,81.375122%);stop-opacity:1;"/>
+<stop offset="0.703125" style="stop-color:rgb(62.510681%,81.254578%,81.254578%);stop-opacity:1;"/>
+<stop offset="0.707031" style="stop-color:rgb(62.271118%,81.134033%,81.134033%);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.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.348511%,80.174255%,80.174255%);stop-opacity:1;"/>
+<stop offset="0.742188" style="stop-color:rgb(60.108948%,80.053711%,80.053711%);stop-opacity:1;"/>
+<stop offset="0.746094" style="stop-color:rgb(59.869385%,79.933167%,79.933167%);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.427429%,79.212952%,79.212952%);stop-opacity:1;"/>
+<stop offset="0.773438" style="stop-color:rgb(58.187866%,79.093933%,79.093933%);stop-opacity:1;"/>
+<stop offset="0.777344" style="stop-color:rgb(57.946777%,78.973389%,78.973389%);stop-opacity:1;"/>
+<stop offset="0.78125" style="stop-color:rgb(57.707214%,78.852844%,78.852844%);stop-opacity:1;"/>
+<stop offset="0.785156" style="stop-color:rgb(57.467651%,78.7323%,78.7323%);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.025696%,78.012085%,78.012085%);stop-opacity:1;"/>
+<stop offset="0.8125" style="stop-color:rgb(55.786133%,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.835938" style="stop-color:rgb(54.345703%,77.172852%,77.172852%);stop-opacity:1;"/>
+<stop offset="0.839844" style="stop-color:rgb(54.104614%,77.052307%,77.052307%);stop-opacity:1;"/>
+<stop offset="0.84375" style="stop-color:rgb(53.865051%,76.931763%,76.931763%);stop-opacity:1;"/>
+<stop offset="0.847656" style="stop-color:rgb(53.623962%,76.811218%,76.811218%);stop-opacity:1;"/>
+<stop offset="0.851563" style="stop-color:rgb(53.384399%,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.702881%,75.85144%,75.85144%);stop-opacity:1;"/>
+<stop offset="0.882813" style="stop-color:rgb(51.463318%,75.730896%,75.730896%);stop-opacity:1;"/>
+<stop offset="0.886719" style="stop-color:rgb(51.222229%,75.610352%,75.610352%);stop-opacity:1;"/>
+<stop offset="0.890625" style="stop-color:rgb(50.982666%,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 33 61 L 68 61 L 68 76 L 33 76 Z M 33 61 "/>
+</clipPath>
+<clipPath id="clip9">
+  <path d="M 63.625 61.386719 L 37.605469 61.386719 C 35.40625 61.386719 33.621094 63.171875 33.621094 65.375 L 33.621094 71.066406 C 33.621094 73.269531 35.40625 75.054688 37.605469 75.054688 L 63.625 75.054688 C 65.824219 75.054688 67.609375 73.269531 67.609375 71.066406 L 67.609375 65.375 C 67.609375 63.171875 65.824219 61.386719 63.625 61.386719 Z M 63.625 61.386719 "/>
+</clipPath>
+<clipPath id="clip10">
+  <path d="M 26.675781 93.15625 L 83.8125 77.84375 L 74.554688 43.285156 L 17.417969 58.597656 Z M 26.675781 93.15625 "/>
+</clipPath>
+<linearGradient id="linear2" gradientUnits="userSpaceOnUse" x1="0" y1="19.259417" x2="0" y2="80.740583" gradientTransform="matrix(0.571367,-0.153097,-0.092598,-0.345581,26.676556,93.154899)">
+<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.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.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.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.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.169312%,94.58313%,94.58313%);stop-opacity:1;"/>
+<stop offset="0.273437" 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.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.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.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.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.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.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.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.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.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.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.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.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.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>
+<clipPath id="clip11">
+  <path d="M 4 94 L 25 94 L 25 108 L 4 108 Z M 4 94 "/>
+</clipPath>
+<clipPath id="clip12">
+  <path d="M 20.335938 94.171875 L 8.214844 94.171875 C 6.015625 94.171875 4.230469 95.957031 4.230469 98.15625 L 4.230469 103.960938 C 4.230469 106.164062 6.015625 107.945312 8.214844 107.945312 L 20.335938 107.945312 C 22.535156 107.945312 24.320312 106.164062 24.320312 103.960938 L 24.320312 98.15625 C 24.320312 95.957031 22.535156 94.171875 20.335938 94.171875 Z M 20.335938 94.171875 "/>
+</clipPath>
+<clipPath id="clip13">
+  <path d="M 0.125 120.429688 L 36.214844 110.761719 L 28.425781 81.6875 L -7.664062 91.359375 Z M 0.125 120.429688 "/>
+</clipPath>
+<linearGradient id="linear3" gradientUnits="userSpaceOnUse" x1="0" y1="19.258852" x2="0" y2="80.741148" gradientTransform="matrix(0.3609,-0.0967029,-0.0778996,-0.290726,0.124961,120.431426)">
+<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.117187" style="stop-color:rgb(98.535156%,99.267578%,99.267578%);stop-opacity:1;"/>
+<stop offset="0.121094" style="stop-color:rgb(98.295593%,99.147034%,99.147034%);stop-opacity:1;"/>
+<stop offset="0.125" style="stop-color:rgb(98.05603%,99.028015%,99.028015%);stop-opacity:1;"/>
+<stop offset="0.128906" style="stop-color:rgb(97.814941%,98.907471%,98.907471%);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.972778%,96.984863%,96.984863%);stop-opacity:1;"/>
+<stop offset="0.195313" style="stop-color:rgb(93.733215%,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.571045%,95.783997%,95.783997%);stop-opacity:1;"/>
+<stop offset="0.234375" style="stop-color:rgb(91.331482%,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.273437" 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.24823%,93.623352%,93.623352%);stop-opacity:1;"/>
+<stop offset="0.304688" style="stop-color:rgb(87.008667%,93.504333%,93.504333%);stop-opacity:1;"/>
+<stop offset="0.308594" style="stop-color:rgb(86.767578%,93.383789%,93.383789%);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.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.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.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.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.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.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.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.474792%,84.736633%,84.736633%);stop-opacity:1;"/>
+<stop offset="0.59375" style="stop-color:rgb(69.235229%,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.151978%,82.575989%,82.575989%);stop-opacity:1;"/>
+<stop offset="0.664062" style="stop-color:rgb(64.912415%,82.455444%,82.455444%);stop-opacity:1;"/>
+<stop offset="0.667969" style="stop-color:rgb(64.672852%,82.3349%,82.3349%);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.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.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.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.427429%,79.212952%,79.212952%);stop-opacity:1;"/>
+<stop offset="0.773437" style="stop-color:rgb(58.187866%,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.804687" 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.104614%,77.052307%,77.052307%);stop-opacity:1;"/>
+<stop offset="0.84375" style="stop-color:rgb(53.865051%,76.931763%,76.931763%);stop-opacity:1;"/>
+<stop offset="0.847656" style="stop-color:rgb(53.625488%,76.811218%,76.811218%);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.702881%,75.85144%,75.85144%);stop-opacity:1;"/>
+<stop offset="0.882812" style="stop-color:rgb(51.463318%,75.730896%,75.730896%);stop-opacity:1;"/>
+<stop offset="0.886719" style="stop-color:rgb(51.223755%,75.610352%,75.610352%);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="clip14">
+  <path d="M 76 93 L 104 93 L 104 109 L 76 109 Z M 76 93 "/>
+</clipPath>
+<clipPath id="clip15">
+  <path d="M 99.082031 93.257812 L 80.894531 93.257812 C 78.695312 93.257812 76.910156 95.039062 76.910156 97.242188 L 76.910156 104.878906 C 76.910156 107.078125 78.695312 108.863281 80.894531 108.863281 L 99.082031 108.863281 C 101.285156 108.863281 103.066406 107.078125 103.066406 104.878906 L 103.066406 97.242188 C 103.066406 95.039062 101.285156 93.257812 99.082031 93.257812 Z M 99.082031 93.257812 "/>
+</clipPath>
+<clipPath id="clip16">
+  <path d="M 71.566406 124.390625 L 117.609375 112.050781 L 108.414062 77.730469 L 62.371094 90.066406 Z M 71.566406 124.390625 "/>
+</clipPath>
+<linearGradient id="linear4" gradientUnits="userSpaceOnUse" x1="0" y1="19.259671" x2="0" y2="80.740329" gradientTransform="matrix(0.46043,-0.123372,-0.0919665,-0.343224,71.565833,124.389782)">
+<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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.742187" 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.898437" 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="clip17">
+  <path d="M 60 76 L 107.296875 76 L 107.296875 126 L 60 126 Z M 60 76 "/>
+</clipPath>
+</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 13.409594 -51.800094 L -48.86775 -51.800094 C -51.066969 -51.800094 -52.852125 -53.58525 -52.852125 -55.784469 L -52.852125 -104.073531 C -52.852125 -106.276656 -51.066969 -108.061812 -48.86775 -108.061812 L 13.409594 -108.061812 C 15.608812 -108.061812 17.393969 -106.276656 17.393969 -104.073531 L 17.393969 -55.784469 C 17.393969 -53.58525 15.608812 -51.800094 13.409594 -51.800094 Z M 13.409594 -51.800094 " transform="matrix(1,0,0,-1,53.649,3.321)"/>
+<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 48.866625 -54.636031 L -19.477125 -54.636031 C -21.676344 -54.636031 -23.4615 -56.421187 -23.4615 -58.620406 L -23.4615 -107.827437 C -23.4615 -110.026656 -21.676344 -111.811812 -19.477125 -111.811812 L 48.866625 -111.811812 C 51.06975 -111.811812 52.851 -110.026656 52.851 -107.827437 L 52.851 -58.620406 C 52.851 -56.421187 51.06975 -54.636031 48.866625 -54.636031 Z M 48.866625 -54.636031 " transform="matrix(1,0,0,-1,53.649,3.321)"/>
+</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.0005625 -3.518844 L -0.0005625 -16.487594 " transform="matrix(1,0,0,-1,53.649,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.205997 -0.0005625 L 0.643497 2.093187 L 2.46381 -0.0005625 L 0.643497 -2.094313 Z M 6.205997 -0.0005625 " transform="matrix(0,1,1,0,53.649,17.44244)"/>
+<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.688063 -36.940719 L -2.070875 -53.444625 " transform="matrix(1,0,0,-1,53.649,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.208214 -0.00127784 L 0.6425 2.091786 L 2.464523 -0.00163939 L 0.644718 -2.094724 Z M 6.208214 -0.00127784 " transform="matrix(-0.08357,0.99646,0.99646,0.08357,51.774,54.40762)"/>
+<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.0005625 -141.139937 L -0.0005625 -154.690719 " transform="matrix(1,0,0,-1,53.649,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.208119 -0.0005625 L 0.641712 2.093187 L 2.465931 -0.0005625 L 0.641712 -2.094313 Z M 6.208119 -0.0005625 " transform="matrix(0,1,1,0,53.649,155.64735)"/>
+<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 -31.590406 -104.889937 L -10.746656 -124.034469 " transform="matrix(1,0,0,-1,53.649,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.207878 0.000385614 L 0.642652 2.092056 L 2.464229 -0.000910523 L 0.641745 -2.093875 Z M 6.207878 0.000385614 " transform="matrix(0.73643,0.6764,0.6764,-0.73643,41.15854,125.7544)"/>
+<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 27.897875 -106.143844 L 10.116625 -123.839156 " transform="matrix(1,0,0,-1,53.649,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.207626 0.00180647 L 0.644965 2.093127 L 2.464819 0.00101514 L 0.644073 -2.094402 Z M 6.207626 0.00180647 " transform="matrix(-0.7088,0.70537,0.70537,0.7088,65.44166,125.49114)"/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(50%,50%,50%);fill-opacity:0.5;" d="M 71.890625 26.59375 L 39.703125 26.59375 C 37.503906 26.59375 35.71875 28.378906 35.71875 30.578125 L 35.71875 37.828125 C 35.71875 40.027344 37.503906 41.8125 39.703125 41.8125 L 71.890625 41.8125 C 74.089844 41.8125 75.875 40.027344 75.875 37.828125 L 75.875 30.578125 C 75.875 28.378906 74.089844 26.59375 71.890625 26.59375 Z M 71.890625 26.59375 "/>
+<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 36.261719 49.703125 L 29.765625 25.464844 L 71.035156 14.40625 L 77.53125 38.644531 Z M 36.261719 49.703125 "/>
+</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 16.093187 7.610688 L -16.094313 7.610688 C -18.293531 7.610688 -20.078688 5.825531 -20.078688 3.626313 L -20.078688 -3.623687 C -20.078688 -5.826812 -18.293531 -7.608062 -16.094313 -7.608062 L 16.093187 -7.608062 C 18.292406 -7.608062 20.077562 -5.826812 20.077562 -3.623687 L 20.077562 3.626313 C 20.077562 5.825531 18.292406 7.610688 16.093187 7.610688 Z M 16.093187 7.610688 " transform="matrix(1,0,0,-1,53.649,32.056)"/>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph0-1" x="36.892" y="34.292"/>
+  <use xlink:href="#glyph0-2" x="41.315412" y="34.292"/>
+  <use xlink:href="#glyph0-3" x="46.466097" y="34.292"/>
+  <use xlink:href="#glyph0-1" x="50.06261" y="34.292"/>
+  <use xlink:href="#glyph0-4" x="54.486022" y="34.292"/>
+  <use xlink:href="#glyph0-5" x="57.893245" y="34.292"/>
+  <use xlink:href="#glyph0-2" x="60.274316" y="34.292"/>
+  <use xlink:href="#glyph0-6" x="65.425001" y="34.292"/>
+</g>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(50%,50%,50%);fill-opacity:0.5;" d="M 62.628906 132.734375 L 48.964844 132.734375 C 46.761719 132.734375 44.976562 134.519531 44.976562 136.71875 L 44.976562 142.023438 C 44.976562 144.226562 46.761719 146.011719 48.964844 146.011719 L 62.628906 146.011719 C 64.828125 146.011719 66.613281 144.226562 66.613281 142.023438 L 66.613281 136.71875 C 66.613281 134.519531 64.828125 132.734375 62.628906 132.734375 Z M 62.628906 132.734375 "/>
+<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 44.28125 149.273438 L 39.511719 131.476562 L 63.015625 125.179688 L 67.785156 142.972656 Z M 44.28125 149.273438 "/>
+</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 6.831469 6.639063 L -6.832594 6.639063 C -9.031813 6.639063 -10.816969 4.853906 -10.816969 2.654688 L -10.816969 -2.653906 C -10.816969 -4.853125 -9.031813 -6.638281 -6.832594 -6.638281 L 6.831469 -6.638281 C 9.034594 -6.638281 10.815844 -4.853125 10.815844 -2.653906 L 10.815844 2.654688 C 10.815844 4.853906 9.034594 6.639063 6.831469 6.639063 Z M 6.831469 6.639063 " transform="matrix(1,0,0,-1,53.649,137.225)"/>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph0-1" x="46.152" y="140.433"/>
+  <use xlink:href="#glyph0-7" x="50.575412" y="140.433"/>
+  <use xlink:href="#glyph0-5" x="55.168189" y="140.433"/>
+  <use xlink:href="#glyph0-3" x="57.54926" y="140.433"/>
+</g>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(50%,50%,50%);fill-opacity:0.5;" d="M 65.769531 63.535156 L 39.753906 63.535156 C 37.550781 63.535156 35.765625 65.320312 35.765625 67.519531 L 35.765625 73.214844 C 35.765625 75.417969 37.550781 77.199219 39.753906 77.199219 L 65.769531 77.199219 C 67.972656 77.199219 69.757812 75.417969 69.757812 73.214844 L 69.757812 67.519531 C 69.757812 65.320312 67.972656 63.535156 65.769531 63.535156 Z M 65.769531 63.535156 "/>
+<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 35.898438 83.550781 L 30.203125 62.304688 L 65.332031 52.890625 L 71.027344 74.136719 Z M 35.898438 83.550781 "/>
+</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.01 6.834281 L -13.009531 6.834281 C -15.20875 6.834281 -16.993906 5.049125 -16.993906 2.846 L -16.993906 -2.845406 C -16.993906 -5.048531 -15.20875 -6.833687 -13.009531 -6.833687 L 13.01 -6.833687 C 15.209219 -6.833687 16.994375 -5.048531 16.994375 -2.845406 L 16.994375 2.846 C 16.994375 5.049125 15.209219 6.834281 13.01 6.834281 Z M 13.01 6.834281 " transform="matrix(1,0,0,-1,50.615,68.221)"/>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph0-8" x="36.941" y="71.623"/>
+  <use xlink:href="#glyph0-1" x="42.091685" y="71.623"/>
+  <use xlink:href="#glyph0-9" x="46.515097" y="71.623"/>
+  <use xlink:href="#glyph0-10" x="51.307127" y="71.623"/>
+  <use xlink:href="#glyph0-1" x="56.457812" y="71.623"/>
+  <use xlink:href="#glyph0-4" x="60.881224" y="71.623"/>
+</g>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(50%,50%,50%);fill-opacity:0.5;" d="M 22.480469 96.320312 L 10.363281 96.320312 C 8.160156 96.320312 6.375 98.105469 6.375 100.304688 L 6.375 106.109375 C 6.375 108.308594 8.160156 110.09375 10.363281 110.09375 L 22.480469 110.09375 C 24.683594 110.09375 26.46875 108.308594 26.46875 106.109375 L 26.46875 100.304688 C 26.46875 98.105469 24.683594 96.320312 22.480469 96.320312 Z M 22.480469 96.320312 "/>
+<g clip-path="url(#clip11)" clip-rule="nonzero">
+<g clip-path="url(#clip12)" clip-rule="nonzero">
+<g clip-path="url(#clip13)" clip-rule="nonzero">
+<path style=" stroke:none;fill-rule:nonzero;fill:url(#linear3);" d="M 5.574219 112.96875 L 0.785156 95.09375 L 22.972656 89.148438 L 27.765625 107.023438 Z M 5.574219 112.96875 "/>
+</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 6.060937 6.888125 L -6.060156 6.888125 C -8.259375 6.888125 -10.044531 5.102969 -10.044531 2.90375 L -10.044531 -2.900937 C -10.044531 -5.104062 -8.259375 -6.885312 -6.060156 -6.885312 L 6.060937 -6.885312 C 8.260156 -6.885312 10.045312 -5.104062 10.045312 -2.900937 L 10.045312 2.90375 C 10.045312 5.102969 8.260156 6.888125 6.060937 6.888125 Z M 6.060937 6.888125 " transform="matrix(1,0,0,-1,14.275,101.06)"/>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph0-11" x="7.55" y="104.517"/>
+  <use xlink:href="#glyph0-1" x="9.931071" y="104.517"/>
+  <use xlink:href="#glyph0-12" x="14.354483" y="104.517"/>
+  <use xlink:href="#glyph0-3" x="17.403051" y="104.517"/>
+</g>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(50%,50%,50%);fill-opacity:0.5;" d="M 101.230469 95.402344 L 83.042969 95.402344 C 80.839844 95.402344 79.058594 97.1875 79.058594 99.386719 L 79.058594 107.027344 C 79.058594 109.226562 80.839844 111.011719 83.042969 111.011719 L 101.230469 111.011719 C 103.429688 111.011719 105.214844 109.226562 105.214844 107.027344 L 105.214844 99.386719 C 105.214844 97.1875 103.429688 95.402344 101.230469 95.402344 Z M 101.230469 95.402344 "/>
+<g clip-path="url(#clip14)" clip-rule="nonzero">
+<g clip-path="url(#clip15)" clip-rule="nonzero">
+<g clip-path="url(#clip16)" clip-rule="nonzero">
+<path style=" stroke:none;fill-rule:nonzero;fill:url(#linear4);" d="M 78.664062 115.402344 L 73.007812 94.300781 L 101.316406 86.714844 L 106.96875 107.816406 Z M 78.664062 115.402344 "/>
+</g>
+</g>
+</g>
+<g clip-path="url(#clip17)" 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.093031 7.802188 L -9.094469 7.802188 C -11.293688 7.802188 -13.078844 6.020938 -13.078844 3.817813 L -13.078844 -3.818906 C -13.078844 -6.018125 -11.293688 -7.803281 -9.094469 -7.803281 L 9.093031 -7.803281 C 11.296156 -7.803281 13.077406 -6.018125 13.077406 -3.818906 L 13.077406 3.817813 C 13.077406 6.020938 11.296156 7.802188 9.093031 7.802188 Z M 9.093031 7.802188 " transform="matrix(1,0,0,-1,89.989,101.06)"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph0-4" x="80.231" y="103.491"/>
+  <use xlink:href="#glyph0-5" x="83.638223" y="103.491"/>
+  <use xlink:href="#glyph0-6" x="86.019294" y="103.491"/>
+  <use xlink:href="#glyph0-8" x="91.000614" y="103.491"/>
+  <use xlink:href="#glyph0-3" x="96.151299" y="103.491"/>
+</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 -36.957594 -90.257125 C -35.816969 -81.120406 -31.7115 -74.686812 -24.254469 -70.448531 " transform="matrix(1,0,0,-1,53.649,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.206109 -0.000642109 L 0.644509 2.094142 L 2.463895 -0.0013749 L 0.644113 -2.091834 Z M 6.206109 -0.000642109 " transform="matrix(0.89674,-0.44241,-0.44241,-0.89674,27.2782,74.8271)"/>
+<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 33.25725 -89.339156 C 31.374437 -79.807906 26.522875 -73.327437 18.300219 -69.452437 " transform="matrix(1,0,0,-1,53.649,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.208527 0.000907983 L 0.642925 2.094669 L 2.465442 0.000919234 L 0.642815 -2.095265 Z M 6.208527 0.000907983 " transform="matrix(-0.92671,-0.37569,-0.37569,0.92671,74.14447,73.67539)"/>
+<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.254469 -72.331344 C -12.18025 -73.167281 -10.973219 -75.432906 -11.895094 -76.264937 C -12.563063 -76.870406 -13.957594 -76.487594 -15.414625 -76.089156 C -16.871656 -75.686812 -18.262281 -75.304 -18.93025 -75.909469 C -19.598219 -76.514937 -19.359938 -77.936812 -19.109938 -79.429 C -18.856031 -80.917281 -18.61775 -82.339156 -19.285719 -82.944625 C -19.957594 -83.550094 -21.348219 -83.167281 -22.80525 -82.768844 C -24.262281 -82.3665 -25.652906 -81.983687 -26.320875 -82.589156 C -27.246656 -83.425094 -26.039625 -85.690719 -26.9615 -86.52275 L -28.094313 -87.546187 " transform="matrix(1,0,0,-1,53.649,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.207178 -0.00187558 L 0.644133 2.092001 L 2.464991 -0.000696342 L 0.643255 -2.092699 Z M 6.207178 -0.00187558 " transform="matrix(-0.74196,0.67038,0.67038,0.74196,27.30986,89.28163)"/>
+<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 5.874437 -72.331344 C 6.827562 -73.128219 8.901781 -71.612594 9.858812 -72.413375 C 10.550219 -72.987594 10.370531 -74.421187 10.175219 -75.921187 C 9.983812 -77.417281 9.800219 -78.850875 10.495531 -79.429 C 11.186937 -80.003219 12.561937 -79.569625 14.003344 -79.108687 C 15.440844 -78.651656 16.815844 -78.214156 17.511156 -78.792281 C 18.202562 -79.370406 18.018969 -80.800094 17.827562 -82.300094 C 17.636156 -83.800094 17.452562 -85.229781 18.143969 -85.807906 C 19.101 -86.604781 21.175219 -85.093062 22.13225 -85.889937 L 23.1635 -86.749312 " transform="matrix(1,0,0,-1,53.649,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.207498 0.00145017 L 0.644539 2.091835 L 2.465796 -0.000752671 L 0.645384 -2.09351 Z M 6.207498 0.00145017 " transform="matrix(0.76799,0.64041,0.64041,-0.76799,74.9974,88.55702)"/>
+</g>
+</svg>

diff  --git a/llvm/docs/loop-separate.svg b/llvm/docs/loop-separate.svg
new file mode 100644
index 000000000000..fafd3eb42aeb
--- /dev/null
+++ b/llvm/docs/loop-separate.svg
@@ -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>

diff  --git a/llvm/docs/loop-single.svg b/llvm/docs/loop-single.svg
new file mode 100644
index 000000000000..6f9720a0dcfd
--- /dev/null
+++ b/llvm/docs/loop-single.svg
@@ -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>

diff  --git a/llvm/docs/loop-terminology.svg b/llvm/docs/loop-terminology.svg
new file mode 100644
index 000000000000..6bed1733bb8a
--- /dev/null
+++ b/llvm/docs/loop-terminology.svg
@@ -0,0 +1,2111 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<svg width="178.23pt" height="181.52pt" version="1.2" viewBox="0 0 178.23 181.52" 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-1" overflow="visible">
+   <path d="m0 2.5469h11.953v-1.2656h-11.953z"/>
+  </symbol>
+  <symbol id="glyph0-2" overflow="visible">
+   <path d="m3.6875 7.6094c2.2031 0 3.9219-1.6406 3.9219-3.5625 0-1.9844-1.7656-3.5781-3.9219-3.5781-2.1875 0-3.8281 1.6562-3.8281 3.5625 0 1.9531 1.6875 3.5781 3.8281 3.5781zm0.14062-1.3125c-1.9531 0-2.8906-1.1094-2.8906-2.2656 0-1.2031 1.0156-2.25 2.8906-2.25 1.9844 0 2.7188 1.2188 2.7188 2.25 0 1.1094-0.79688 2.2656-2.7188 2.2656z"/>
+  </symbol>
+  <symbol id="glyph0-3" overflow="visible">
+   <path d="m3.7188 7.75c2.0312 0 3.8281-1.0312 3.8281-2.5156 0-0.85938-0.3125-1.8906-0.9375-2.6719h0.79688v-1.2656h-10.766v1.2969h4.1406c-0.5625 0.57812-0.92188 1.3438-0.92188 2.1719 0 1.6094 1.6562 2.9844 3.8594 2.9844zm0-1.3125c-1.7031 0-2.8125-1.1719-2.8125-2.3281 0-0.34375 0.09375-0.70312 0.39062-1.0469 0.40625-0.46875 0.67188-0.46875 0.90625-0.46875h3.3906c0.20312 0.14062 0.85938 0.73438 0.85938 1.6719 0 1.2031-1.2344 2.1719-2.7344 2.1719z"/>
+  </symbol>
+  <symbol id="glyph1-1" overflow="visible">
+   <path d="m4.125-2.1875c0-0.32812-0.015625-1.0781-0.39062-1.6875-0.42188-0.60938-1.0156-0.71875-1.375-0.71875-1.1094 0-2.0156 1.0625-2.0156 2.3438 0 1.3125 0.96875 2.3594 2.1562 2.3594 0.625 0 1.2031-0.23438 1.5938-0.51562l-0.0625-0.65625c-0.625 0.53125-1.2969 0.5625-1.5156 0.5625-0.79688 0-1.4375-0.70312-1.4688-1.6875zm-0.5625-0.54688h-2.4688c0.15625-0.75 0.6875-1.25 1.2656-1.25 0.51562 0 1.0625 0.32812 1.2031 1.25z"/>
+  </symbol>
+  <symbol id="glyph1-2" overflow="visible">
+   <path d="m4.3438 0v-2.9688c0-0.65625-0.15625-1.5625-1.375-1.5625-0.89062 0-1.3906 0.67188-1.4375 0.75v-0.70312h-0.71875v4.4844h0.76562v-2.4375c0-0.65625 0.25-1.4844 1.0156-1.4844 0.95312 0 0.96875 0.70312 0.96875 1.0156v2.9062z"/>
+  </symbol>
+  <symbol id="glyph1-3" overflow="visible">
+   <path d="m3.3125-0.26562-0.15625-0.59375c-0.26562 0.21875-0.57812 0.32812-0.90625 0.32812-0.35938 0-0.5-0.29688-0.5-0.82812v-2.4844h1.4062v-0.57812h-1.4062v-1.2656h-0.6875v1.2656h-0.875v0.57812h0.84375v2.6562c0 0.59375 0.14062 1.2969 0.82812 1.2969s1.2031-0.25 1.4531-0.375z"/>
+  </symbol>
+  <symbol id="glyph1-4" overflow="visible">
+   <path d="m3.2656-3.875v-0.65625c-0.89062 0-1.4375 0.5-1.75 0.95312v-0.90625h-0.70312v4.4844h0.75v-2.1406c0-0.98438 0.71875-1.7031 1.7031-1.7344z"/>
+  </symbol>
+  <symbol id="glyph1-5" overflow="visible">
+   <path d="m1.5625 0v-4.4219h-0.75v4.4219zm0.078125-5.6406v-0.89062h-0.89062v0.89062z"/>
+  </symbol>
+  <symbol id="glyph1-6" overflow="visible">
+   <path d="m4.8281-3.9062-0.10938-0.625c-0.6875 0-1.2656 0.1875-1.5625 0.3125-0.21875-0.17188-0.54688-0.3125-0.95312-0.3125-0.85938 0-1.5781 0.71875-1.5781 1.625 0 0.35938 0.125 0.71875 0.32812 0.98438-0.29688 0.40625-0.29688 0.79688-0.29688 0.84375 0 0.26562 0.09375 0.54688 0.26562 0.76562-0.51562 0.29688-0.64062 0.76562-0.64062 1.0156 0 0.75 0.98438 1.3438 2.2031 1.3438s2.2031-0.57812 2.2031-1.3438c0-1.3906-1.6562-1.3906-2.0469-1.3906h-0.875c-0.125 0-0.57812 0-0.57812-0.53125 0-0.10938 0.03125-0.26562 0.10938-0.35938 0.20312 0.15625 0.53125 0.29688 0.90625 0.29688 0.89062 0 1.5938-0.75 1.5938-1.625 0-0.48438-0.21875-0.85938-0.32812-1l0.046875 0.015625c0.21875 0 0.48438-0.046875 0.73438-0.046875 0.17188 0 0.57812 0.03125 0.57812 0.03125zm-1.7344 1c0 0.76562-0.46875 1.0469-0.89062 1.0469-0.375 0-0.89062-0.21875-0.89062-1.0469s0.51562-1.0625 0.89062-1.0625c0.42188 0 0.89062 0.28125 0.89062 1.0625zm0.90625 3.625c0 0.4375-0.6875 0.76562-1.5 0.76562s-1.5156-0.3125-1.5156-0.78125c0-0.03125 0-0.67188 0.76562-0.67188h0.90625c0.21875 0 1.3438 0 1.3438 0.6875z"/>
+  </symbol>
+  <symbol id="glyph1-7" overflow="visible">
+   <path d="m4.5781 0-1.9844-2.2812 1.8281-2.1406h-0.82812l-1.3281 1.6406-1.375-1.6406h-0.82812l1.875 2.1406-1.9375 2.2812h0.8125l1.4531-1.875 1.5 1.875z"/>
+  </symbol>
+  <symbol id="glyph1-8" overflow="visible">
+   <path d="m4.3438 0v-2.9688c0-0.65625-0.15625-1.5625-1.375-1.5625-0.60938 0-1.0938 0.29688-1.4062 0.71875v-3.1094h-0.75v6.9219h0.76562v-2.4375c0-0.65625 0.25-1.4844 1.0156-1.4844 0.95312 0 0.96875 0.70312 0.96875 1.0156v2.9062z"/>
+  </symbol>
+  <symbol id="glyph1-9" overflow="visible">
+   <path d="m4.0781 0v-2.875c0-1.0156-0.73438-1.7188-1.6406-1.7188-0.65625 0-1.1094 0.15625-1.5625 0.42188l0.046875 0.65625c0.53125-0.35938 1.0156-0.48438 1.5156-0.48438 0.46875 0 0.85938 0.39062 0.85938 1.125v0.4375c-1.5 0.015625-2.7656 0.4375-2.7656 1.3125 0 0.42188 0.28125 1.2344 1.1406 1.2344 0.14062 0 1.0781-0.015625 1.6562-0.46875v0.35938zm-0.78125-1.3125c0 0.1875 0 0.4375-0.34375 0.625-0.28125 0.17188-0.65625 0.1875-0.76562 0.1875-0.48438 0-0.9375-0.23438-0.9375-0.64062 0-0.70312 1.625-0.76562 2.0469-0.79688z"/>
+  </symbol>
+  <symbol id="glyph1-10" overflow="visible">
+   <path d="m4.3281 0v-6.9219h-0.75v2.9375c-0.53125-0.4375-1.0781-0.54688-1.4531-0.54688-0.98438 0-1.7656 1.0312-1.7656 2.3125 0 1.3125 0.76562 2.3281 1.7188 2.3281 0.32812 0 0.90625-0.09375 1.4688-0.625v0.51562zm-0.78125-1.3906c0 0.14062-0.015625 0.32812-0.32812 0.60938-0.23438 0.20312-0.48438 0.28125-0.73438 0.28125-0.625 0-1.3438-0.46875-1.3438-1.7031 0-1.3125 0.85938-1.7188 1.4375-1.7188 0.45312 0 0.75 0.21875 0.96875 0.54688z"/>
+  </symbol>
+  <symbol id="glyph1-11" overflow="visible">
+   <path d="m1.5625 0v-6.9219h-0.75v6.9219z"/>
+  </symbol>
+  <symbol id="glyph1-12" overflow="visible">
+   <path d="m4.1406-0.40625-0.0625-0.65625c-0.51562 0.39062-1.0469 0.53125-1.5625 0.53125-0.82812 0-1.375-0.71875-1.375-1.6875 0-0.78125 0.35938-1.7344 1.4219-1.7344 0.51562 0 0.85938 0.078125 1.4062 0.4375l0.125-0.65625c-0.59375-0.32812-0.9375-0.42188-1.5469-0.42188-1.375 0-2.1875 1.2031-2.1875 2.375 0 1.2344 0.90625 2.3281 2.1562 2.3281 0.53125 0 1.0781-0.14062 1.625-0.51562z"/>
+  </symbol>
+  <symbol id="glyph1-13" overflow="visible">
+   <path d="m4.4219-7.2812c0-0.10938-0.09375-0.20312-0.20312-0.20312-0.14062 0-0.1875 0.10938-0.21875 0.20312l-3.3906 9.3906c-0.046875 0.14062-0.046875 0.1875-0.046875 0.1875 0 0.10938 0.078125 0.20312 0.1875 0.20312 0.14062 0 0.1875-0.10938 0.21875-0.20312l3.3906-9.3906c0.0625-0.14062 0.0625-0.1875 0.0625-0.1875z"/>
+  </symbol>
+  <symbol id="glyph2-1" overflow="visible">
+   <path d="m0.39062-4.4375c-0.82812-0.45312-1.8594-0.39062-2.25 0.3125-0.23438 0.4375-0.32812 0.9375-0.26562 1.4375l-2.0938-1.1406-0.3125 0.57812 4.8594 2.6562 0.32812-0.60938-0.32812-0.1875c0.23438-0.078125 0.65625-0.26562 0.9375-0.78125 0.42188-0.75 0.046875-1.7656-0.875-2.2656zm-0.32812 0.60938c0.84375 0.46875 0.85938 1.2188 0.59375 1.7031-0.14062 0.26562-0.39062 0.45312-0.82812 0.46875l-1.375-0.75c-0.10938-0.0625-0.1875-0.10938-0.21875-0.45312-0.015625-0.125 0-0.35938 0.125-0.59375 0.25-0.46875 0.875-0.82812 1.7031-0.375z"/>
+  </symbol>
+  <symbol id="glyph3-1" overflow="visible">
+   <path d="m1.8594-2.9219-1.9375-1.2344c-0.6875-0.4375-1.4688-0.21875-1.8906 0.45312-0.26562 0.42188-0.40625 0.8125-0.4375 1.2969l0.51562 0.28125c0-0.32812 0-0.78125 0.34375-1.2969 0.1875-0.3125 0.60938-0.46875 1.125-0.14062l0.26562 0.15625c-0.60938 1.0156-1.0312 2.125-0.40625 2.5312 0.32812 0.20312 1 0.32812 1.375-0.26562 0.1875-0.28125 0.48438-0.84375 0.45312-1.3906l0.25 0.15625zm-1.3125-0.03125c0.14062 0.09375 0.3125 0.20312 0.29688 0.53125-0.015625 0.28125-0.17188 0.53125-0.23438 0.60938-0.23438 0.375-0.57812 0.5625-0.82812 0.39062-0.42188-0.26562 0.25-1.4375 0.4375-1.7344z"/>
+  </symbol>
+  <symbol id="glyph4-1" overflow="visible">
+   <path d="m1.8438-3.0156-0.5-0.29688c-0.015625 0.48438-0.15625 0.90625-0.45312 1.2969-0.4375 0.59375-1.1719 0.59375-1.75 0.17188-0.5-0.35938-0.89062-1.0312-0.375-1.7344 0.3125-0.4375 0.5625-0.57812 1.0156-0.75l-0.40625-0.42188c-0.46875 0.23438-0.6875 0.34375-1.0469 0.84375-0.70312 0.96875-0.32812 2.0781 0.42188 2.625 0.78125 0.57812 1.9375 0.48438 2.5781-0.40625 0.32812-0.4375 0.46875-0.9375 0.51562-1.3281z"/>
+  </symbol>
+  <symbol id="glyph5-1" overflow="visible">
+   <path d="m2.5625-3.0469-2.6875-0.15625-0.14062-1.9688-0.48438 0.59375 0.15625 2.3438-2.7812-2.3438-0.40625 0.48438 4.2344 3.5625 0.375-0.46875-0.84375-0.71875-0.0625-0.92188 2.1875 0.125z"/>
+  </symbol>
+  <symbol id="glyph6-1" overflow="visible">
+   <path d="m1.1719-3.7344c-0.25-0.25-0.65625-0.59375-1.2031-0.6875-0.48438-0.078125-0.9375 0.15625-1.2031 0.4375-0.67188 0.70312-0.57812 1.8281 0.14062 2.5312 0.75 0.71875 1.9062 0.71875 2.6406-0.03125 0.3125-0.32812 0.53125-0.76562 0.64062-1.2188l-0.4375-0.35938c-0.0625 0.54688-0.34375 0.96875-0.59375 1.2188-0.48438 0.5-1.25 0.48438-1.7969-0.015625zm-0.67188 0.015625-1.4375 1.4844c-0.34375-0.5625-0.1875-1.0938 0.078125-1.375 0.23438-0.25 0.71875-0.51562 1.3594-0.10938z"/>
+  </symbol>
+  <symbol id="glyph7-1" overflow="visible">
+   <path d="m2.75-2.4531-3.6875-4.125-0.5 0.4375 1.5469 1.7344c-0.60938 0.078125-1.0469 0.375-1.2188 0.53125-0.625 0.5625-0.54688 1.6094 0.14062 2.375 0.67188 0.75 1.7031 0.95312 2.3125 0.40625 0.375-0.32812 0.5625-0.8125 0.60938-1.2188l0.28125 0.3125zm-1.1719-0.28125c0.0625 0.39062-0.015625 0.71875-0.29688 0.98438-0.42188 0.375-1.1094 0.46875-1.7188-0.21875-0.65625-0.73438-0.39062-1.4531 0.015625-1.8125 0.23438-0.20312 0.53125-0.28125 0.85938-0.21875z"/>
+  </symbol>
+  <symbol id="glyph8-1" overflow="visible">
+   <path d="m1.3906-4.9375-0.40625-0.375c-0.15625 0.10938-0.57812 0.45312-0.89062 1l-0.015625 0.015625c-0.35938 0.015625-0.60938 0.14062-0.79688 0.28125-0.60938 0.46875-0.70312 1.3281-0.28125 1.875 0.15625 0.20312 0.42188 0.375 0.6875 0.4375 0.015625 0.17188 0.046875 0.42188 0.23438 0.67188 0.1875 0.23438 0.40625 0.32812 0.53125 0.35938-0.20312 0.45312-0.046875 0.8125 0.0625 0.96875 0.375 0.48438 1.3438 0.34375 2.1562-0.28125 0.82812-0.64062 1.1875-1.5156 0.8125-2-0.6875-0.89062-1.7812-0.046875-2.0625 0.15625l-0.59375 0.46875c-0.09375 0.0625-0.375 0.28125-0.60938-0.046875-0.09375-0.125-0.09375-0.25-0.10938-0.25 0.34375-0.03125 0.57812-0.15625 0.75-0.29688 0.625-0.46875 0.71875-1.3125 0.29688-1.8438-0.15625-0.20312-0.35938-0.34375-0.59375-0.42188-0.046875-0.03125-0.0625-0.03125-0.0625-0.03125-0.015625-0.03125 0.35938-0.32812 0.39062-0.34375 0 0 0.25-0.1875 0.5-0.34375zm-0.71875 1.5156c0.375 0.46875 0.1875 0.89062-0.09375 1.0938-0.32812 0.25-0.76562 0.23438-1.0938-0.1875-0.375-0.5-0.17188-0.90625 0.09375-1.1094 0.34375-0.25 0.76562-0.23438 1.0938 0.20312zm2.3438 1.8281c0.20312 0.26562-0.125 0.8125-0.65625 1.2188s-1.1406 0.57812-1.3438 0.3125c-0.03125-0.046875-0.3125-0.42188 0.1875-0.8125l0.60938-0.46875c0.15625-0.10938 0.89062-0.67188 1.2031-0.25z"/>
+  </symbol>
+  <symbol id="glyph9-1" overflow="visible">
+   <path d="m1.9531-3.3906c-0.20312-0.3125-0.51562-0.73438-1.0312-0.9375-0.46875-0.1875-0.9375-0.046875-1.2656 0.17188-0.8125 0.54688-0.96875 1.6562-0.42188 2.5 0.57812 0.85938 1.7188 1.125 2.5781 0.54688 0.39062-0.26562 0.70312-0.625 0.92188-1.0625l-0.35938-0.45312c-0.1875 0.51562-0.54688 0.875-0.84375 1.0625-0.57812 0.39062-1.3281 0.20312-1.75-0.375zm-0.65625-0.125-1.7188 1.1406c-0.21875-0.64062 0.03125-1.125 0.35938-1.3438 0.28125-0.1875 0.8125-0.34375 1.3594 0.20312z"/>
+  </symbol>
+  <symbol id="glyph10-1" overflow="visible">
+   <path d="m4.3594 0.90625c0.54688-0.78125 0.625-1.8281-0.03125-2.2812-0.40625-0.28125-0.90625-0.42188-1.4062-0.42188l1.3594-1.9375-0.54688-0.39062-3.1875 4.5156 0.57812 0.40625 0.21875-0.3125c0.046875 0.23438 0.17188 0.6875 0.65625 1.0312 0.70312 0.5 1.75 0.25 2.3594-0.60938zm-0.5625-0.40625c-0.5625 0.79688-1.3125 0.6875-1.7656 0.375-0.23438-0.17188-0.40625-0.42188-0.35938-0.84375l0.90625-1.2812c0.078125-0.10938 0.125-0.1875 0.46875-0.1875 0.10938 0.015625 0.35938 0.046875 0.57812 0.20312 0.42188 0.3125 0.71875 0.95312 0.17188 1.7344z"/>
+  </symbol>
+  <symbol id="glyph11-1" overflow="visible">
+   <path d="m2.6406 2.25 1.4844-1.75c0.53125-0.60938 0.42188-1.4219-0.1875-1.9375-0.375-0.32812-0.75-0.5-1.2188-0.59375l-0.34375 0.45312c0.3125 0.046875 0.75 0.125 1.2188 0.53125 0.28125 0.23438 0.39062 0.65625 0 1.125l-0.20312 0.23438c-0.92188-0.73438-1.9688-1.3125-2.4531-0.75-0.25 0.29688-0.45312 0.95312 0.078125 1.4062 0.26562 0.23438 0.78125 0.59375 1.3125 0.64062l-0.1875 0.21875zm0.20312-1.2969c-0.10938 0.125-0.23438 0.28125-0.54688 0.21875-0.28125-0.0625-0.53125-0.26562-0.59375-0.3125-0.34375-0.29688-0.46875-0.64062-0.26562-0.875 0.3125-0.39062 1.375 0.45312 1.6562 0.67188z"/>
+  </symbol>
+  <symbol id="glyph12-1" overflow="visible">
+   <path d="m2.6562 2.3125 0.39062-0.4375c-0.46875-0.10938-0.875-0.3125-1.2188-0.67188-0.51562-0.53125-0.375-1.25 0.125-1.75 0.4375-0.42188 1.1719-0.70312 1.7812-0.078125 0.375 0.39062 0.48438 0.65625 0.57812 1.125l0.46875-0.32812c-0.15625-0.51562-0.21875-0.75-0.65625-1.1875-0.84375-0.85938-2-0.65625-2.6562-0.015625-0.70312 0.67188-0.79688 1.8281-0.03125 2.6094 0.375 0.39062 0.84375 0.625 1.2188 0.73438z"/>
+  </symbol>
+  <symbol id="glyph13-1" overflow="visible">
+   <path d="m2.5 3.1094 0.67188-2.625 1.9531 0.25-0.46875-0.59375-2.3594-0.29688 2.8438-2.2812-0.39062-0.48438-4.3125 3.4688 0.375 0.46875 0.85938-0.6875 0.9375 0.09375-0.54688 2.1406z"/>
+  </symbol>
+  <symbol id="glyph14-1" overflow="visible">
+   <path d="m3.3594 2.0156c0.3125-0.20312 0.73438-0.51562 0.95312-1.0312 0.1875-0.45312 0.0625-0.9375-0.15625-1.2656-0.51562-0.8125-1.625-1-2.4844-0.45312-0.875 0.5625-1.1562 1.6875-0.59375 2.5625 0.26562 0.40625 0.625 0.71875 1.0469 0.9375l0.45312-0.35938c-0.51562-0.1875-0.85938-0.5625-1.0469-0.85938-0.375-0.59375-0.17188-1.3125 0.42188-1.7344zm0.14062-0.6875-1.1094-1.7344c0.625-0.1875 1.1094 0.078125 1.3125 0.40625 0.1875 0.28125 0.34375 0.8125-0.20312 1.3281z"/>
+  </symbol>
+  <symbol id="glyph15-1" overflow="visible">
+   <path d="m1.5938 3.3281 4.9844-2.3906-0.28125-0.60938-2.0938 1c0.10938-0.60938-0.078125-1.1094-0.17188-1.2969-0.35938-0.76562-1.4062-0.98438-2.3125-0.54688-0.92188 0.4375-1.3906 1.375-1.0469 2.1094 0.21875 0.45312 0.60938 0.76562 1 0.92188l-0.375 0.1875zm0.59375-1.0469c-0.375-0.046875-0.70312-0.23438-0.875-0.57812-0.23438-0.51562-0.125-1.1719 0.70312-1.5781 0.89062-0.42188 1.4844 0.03125 1.7188 0.51562 0.14062 0.28125 0.125 0.57812-0.015625 0.90625z"/>
+  </symbol>
+  <symbol id="glyph16-1" overflow="visible">
+   <path d="m4.1719 3 0.48438-0.25c-0.0625-0.17188-0.23438-0.6875-0.64062-1.2031v-0.015625c0.10938-0.3125 0.0625-0.59375 0-0.82812-0.23438-0.73438-1-1.1094-1.6562-0.90625-0.25 0.078125-0.5 0.25-0.65625 0.51562-0.17188-0.078125-0.40625-0.125-0.70312-0.046875-0.29688 0.09375-0.45312 0.28125-0.51562 0.39062-0.375-0.34375-0.76562-0.32812-0.9375-0.28125-0.59375 0.1875-0.78125 1.1406-0.48438 2.125 0.3125 1 1.0156 1.6406 1.6094 1.4531 1.0625-0.32812 0.65625-1.6562 0.54688-1.9844l-0.21875-0.70312c-0.046875-0.125-0.14062-0.45312 0.25-0.57812 0.15625-0.046875 0.25-0.015625 0.26562-0.015625-0.09375 0.32812-0.046875 0.60938 0.015625 0.8125 0.23438 0.75 0.98438 1.125 1.6406 0.92188 0.23438-0.078125 0.4375-0.23438 0.60938-0.4375 0.03125-0.046875 0.046875-0.046875 0.046875-0.046875 0.03125-0.015625 0.17188 0.45312 0.1875 0.48438 0 0 0.09375 0.29688 0.15625 0.59375zm-1.1875-1.1875c-0.57812 0.17188-0.875-0.15625-0.98438-0.48438-0.125-0.39062 0.046875-0.78125 0.54688-0.9375 0.59375-0.1875 0.89062 0.14062 1 0.45312 0.125 0.40625-0.03125 0.79688-0.5625 0.96875zm-2.5 1.5781c-0.32812 0.09375-0.75-0.39062-0.95312-1.0312-0.1875-0.64062-0.14062-1.2812 0.1875-1.375 0.046875-0.015625 0.48438-0.15625 0.67188 0.45312l0.23438 0.71875c0.0625 0.1875 0.34375 1.0781-0.14062 1.2344z"/>
+  </symbol>
+  <symbol id="glyph17-1" overflow="visible">
+   <path d="m2.2812 3.1719c0.34375-0.046875 0.875-0.17188 1.2812-0.54688 0.34375-0.32812 0.42188-0.84375 0.35938-1.2344-0.15625-0.95312-1.0938-1.5469-2.0938-1.3906-1.0312 0.15625-1.7344 1.0781-1.5781 2.1094 0.078125 0.46875 0.29688 0.90625 0.59375 1.2656l0.54688-0.14062c-0.375-0.35938-0.54688-0.85938-0.60938-1.2031-0.10938-0.6875 0.35938-1.2812 1.0938-1.4375zm0.375-0.53125-0.3125-2.0469c0.65625 0.0625 1 0.51562 1.0625 0.89062 0.0625 0.34375-0.015625 0.89062-0.75 1.1562z"/>
+  </symbol>
+  <clipPath id="clip1">
+   <path d="m0 28h178.23v126h-178.23z"/>
+  </clipPath>
+  <clipPath id="clip2">
+   <path d="m36 24h42v16h-42z"/>
+  </clipPath>
+  <clipPath id="clip3">
+   <path d="m73.133 24.059h-32.188c-2.1992 0-3.9844 1.7812-3.9844 3.9844v7.25c0 2.1992 1.7852 3.9844 3.9844 3.9844h32.188c2.1992 0 3.9844-1.7852 3.9844-3.9844v-7.25c0-2.2031-1.7852-3.9844-3.9844-3.9844z"/>
+  </clipPath>
+  <clipPath id="clip4">
+   <path d="m28.758 60.375 67.129-17.988-10.566-39.426-67.125 17.988z"/>
+  </clipPath>
+  <linearGradient id="linear0" x2="0" y1="19.26" y2="80.74" gradientTransform="matrix(.67128 -.17987 -.10564 -.39425 28.758 60.373)" gradientUnits="userSpaceOnUse">
+   <stop stop-color="#fff" offset="0"/>
+   <stop stop-color="#fff" offset=".0625"/>
+   <stop stop-color="#fefefe" offset=".09375"/>
+   <stop stop-color="#fefefe" offset=".097656"/>
+   <stop stop-color="#fdfefe" offset=".10156"/>
+   <stop stop-color="#fdfefe" offset=".10547"/>
+   <stop stop-color="#fcfdfd" offset=".10938"/>
+   <stop stop-color="#fbfdfd" offset=".11328"/>
+   <stop stop-color="#fbfdfd" offset=".11719"/>
+   <stop stop-color="#fafcfc" offset=".12109"/>
+   <stop stop-color="#fafcfc" offset=".125"/>
+   <stop stop-color="#f9fcfc" offset=".12891"/>
+   <stop stop-color="#f8fbfb" offset=".13281"/>
+   <stop stop-color="#f8fbfb" offset=".13672"/>
+   <stop stop-color="#f7fbfb" offset=".14062"/>
+   <stop stop-color="#f6fafa" offset=".14453"/>
+   <stop stop-color="#f6fafa" offset=".14844"/>
+   <stop stop-color="#f5fafa" offset=".15234"/>
+   <stop stop-color="#f5fafa" offset=".15625"/>
+   <stop stop-color="#f4f9f9" offset=".16016"/>
+   <stop stop-color="#f3f9f9" offset=".16406"/>
+   <stop stop-color="#f3f9f9" offset=".16797"/>
+   <stop stop-color="#f2f8f8" offset=".17188"/>
+   <stop stop-color="#f2f8f8" offset=".17578"/>
+   <stop stop-color="#f1f8f8" offset=".17969"/>
+   <stop stop-color="#f0f7f7" offset=".18359"/>
+   <stop stop-color="#f0f7f7" offset=".1875"/>
+   <stop stop-color="#eff7f7" offset=".19141"/>
+   <stop stop-color="#eff7f7" offset=".19531"/>
+   <stop stop-color="#eef6f6" offset=".19922"/>
+   <stop stop-color="#edf6f6" offset=".20312"/>
+   <stop stop-color="#edf6f6" offset=".20703"/>
+   <stop stop-color="#ecf5f5" offset=".21094"/>
+   <stop stop-color="#ebf5f5" offset=".21484"/>
+   <stop stop-color="#ebf5f5" offset=".21875"/>
+   <stop stop-color="#eaf4f4" offset=".22266"/>
+   <stop stop-color="#eaf4f4" offset=".22656"/>
+   <stop stop-color="#e9f4f4" offset=".23047"/>
+   <stop stop-color="#e8f3f3" offset=".23438"/>
+   <stop stop-color="#e8f3f3" offset=".23828"/>
+   <stop stop-color="#e7f3f3" offset=".24219"/>
+   <stop stop-color="#e7f3f3" offset=".24609"/>
+   <stop stop-color="#e6f2f2" offset=".25"/>
+   <stop stop-color="#e5f2f2" offset=".25391"/>
+   <stop stop-color="#e5f2f2" offset=".25781"/>
+   <stop stop-color="#e4f1f1" offset=".26172"/>
+   <stop stop-color="#e3f1f1" offset=".26562"/>
+   <stop stop-color="#e3f1f1" offset=".26953"/>
+   <stop stop-color="#e2f0f0" offset=".27344"/>
+   <stop stop-color="#e2f0f0" offset=".27734"/>
+   <stop stop-color="#e1f0f0" offset=".28125"/>
+   <stop stop-color="#e0efef" offset=".28516"/>
+   <stop stop-color="#e0efef" offset=".28906"/>
+   <stop stop-color="#dfefef" offset=".29297"/>
+   <stop stop-color="#dfefef" offset=".29688"/>
+   <stop stop-color="#deeeee" offset=".30078"/>
+   <stop stop-color="#dee" offset=".30469"/>
+   <stop stop-color="#dee" offset=".30859"/>
+   <stop stop-color="#dceded" offset=".3125"/>
+   <stop stop-color="#dceded" offset=".31641"/>
+   <stop stop-color="#dbeded" offset=".32031"/>
+   <stop stop-color="#daecec" offset=".32422"/>
+   <stop stop-color="#daecec" offset=".32812"/>
+   <stop stop-color="#d9ecec" offset=".33203"/>
+   <stop stop-color="#d8ebeb" offset=".33594"/>
+   <stop stop-color="#d8ebeb" offset=".33984"/>
+   <stop stop-color="#d7ebeb" offset=".34375"/>
+   <stop stop-color="#d7ebeb" offset=".34766"/>
+   <stop stop-color="#d6eaea" offset=".35156"/>
+   <stop stop-color="#d5eaea" offset=".35547"/>
+   <stop stop-color="#d5eaea" offset=".35938"/>
+   <stop stop-color="#d4e9e9" offset=".36328"/>
+   <stop stop-color="#d4e9e9" offset=".36719"/>
+   <stop stop-color="#d3e9e9" offset=".37109"/>
+   <stop stop-color="#d2e8e8" offset=".375"/>
+   <stop stop-color="#d2e8e8" offset=".37891"/>
+   <stop stop-color="#d1e8e8" offset=".38281"/>
+   <stop stop-color="#d1e8e8" offset=".38672"/>
+   <stop stop-color="#d0e7e7" offset=".39062"/>
+   <stop stop-color="#cfe7e7" offset=".39453"/>
+   <stop stop-color="#cfe7e7" offset=".39844"/>
+   <stop stop-color="#cee6e6" offset=".40234"/>
+   <stop stop-color="#cde6e6" offset=".40625"/>
+   <stop stop-color="#cde6e6" offset=".41016"/>
+   <stop stop-color="#cce5e5" offset=".41406"/>
+   <stop stop-color="#cce5e5" offset=".41797"/>
+   <stop stop-color="#cbe5e5" offset=".42188"/>
+   <stop stop-color="#cae4e4" offset=".42578"/>
+   <stop stop-color="#cae4e4" offset=".42969"/>
+   <stop stop-color="#c9e4e4" offset=".43359"/>
+   <stop stop-color="#c9e4e4" offset=".4375"/>
+   <stop stop-color="#c8e3e3" offset=".44141"/>
+   <stop stop-color="#c7e3e3" offset=".44531"/>
+   <stop stop-color="#c7e3e3" offset=".44922"/>
+   <stop stop-color="#c6e2e2" offset=".45312"/>
+   <stop stop-color="#c5e2e2" offset=".45703"/>
+   <stop stop-color="#c5e2e2" offset=".46094"/>
+   <stop stop-color="#c4e1e1" offset=".46484"/>
+   <stop stop-color="#c4e1e1" offset=".46875"/>
+   <stop stop-color="#c3e1e1" offset=".47266"/>
+   <stop stop-color="#c2e0e0" offset=".47656"/>
+   <stop stop-color="#c2e0e0" offset=".48047"/>
+   <stop stop-color="#c1e0e0" offset=".48438"/>
+   <stop stop-color="#c1e0e0" offset=".48828"/>
+   <stop stop-color="#c0dfdf" offset=".49219"/>
+   <stop stop-color="#bfdfdf" offset=".49609"/>
+   <stop stop-color="#bfdfdf" offset=".5"/>
+   <stop stop-color="#bedede" offset=".50391"/>
+   <stop stop-color="#bedede" offset=".50781"/>
+   <stop stop-color="#bddede" offset=".51172"/>
+   <stop stop-color="#bcdddd" offset=".51562"/>
+   <stop stop-color="#bcdddd" offset=".51953"/>
+   <stop stop-color="#bdd" offset=".52344"/>
+   <stop stop-color="#badcdc" offset=".52734"/>
+   <stop stop-color="#badcdc" offset=".53125"/>
+   <stop stop-color="#b9dcdc" offset=".53516"/>
+   <stop stop-color="#b9dcdc" offset=".53906"/>
+   <stop stop-color="#b8dbdb" offset=".54297"/>
+   <stop stop-color="#b7dbdb" offset=".54688"/>
+   <stop stop-color="#b7dbdb" offset=".55078"/>
+   <stop stop-color="#b6dada" offset=".55469"/>
+   <stop stop-color="#b6dada" offset=".55859"/>
+   <stop stop-color="#b5dada" offset=".5625"/>
+   <stop stop-color="#b4d9d9" offset=".56641"/>
+   <stop stop-color="#b4d9d9" offset=".57031"/>
+   <stop stop-color="#b3d9d9" offset=".57422"/>
+   <stop stop-color="#b3d9d9" offset=".57812"/>
+   <stop stop-color="#b2d8d8" offset=".58203"/>
+   <stop stop-color="#b1d8d8" offset=".58594"/>
+   <stop stop-color="#b1d8d8" offset=".58984"/>
+   <stop stop-color="#b0d7d7" offset=".59375"/>
+   <stop stop-color="#afd7d7" offset=".59766"/>
+   <stop stop-color="#afd7d7" offset=".60156"/>
+   <stop stop-color="#aed6d6" offset=".60547"/>
+   <stop stop-color="#aed6d6" offset=".60938"/>
+   <stop stop-color="#add6d6" offset=".61328"/>
+   <stop stop-color="#acd5d5" offset=".61719"/>
+   <stop stop-color="#acd5d5" offset=".62109"/>
+   <stop stop-color="#abd5d5" offset=".625"/>
+   <stop stop-color="#abd5d5" offset=".62891"/>
+   <stop stop-color="#aad4d4" offset=".63281"/>
+   <stop stop-color="#a9d4d4" offset=".63672"/>
+   <stop stop-color="#a9d4d4" offset=".64062"/>
+   <stop stop-color="#a8d3d3" offset=".64453"/>
+   <stop stop-color="#a7d3d3" offset=".64844"/>
+   <stop stop-color="#a7d3d3" offset=".65234"/>
+   <stop stop-color="#a6d2d2" offset=".65625"/>
+   <stop stop-color="#a6d2d2" offset=".66016"/>
+   <stop stop-color="#a5d2d2" offset=".66406"/>
+   <stop stop-color="#a4d1d1" offset=".66797"/>
+   <stop stop-color="#a4d1d1" offset=".67188"/>
+   <stop stop-color="#a3d1d1" offset=".67578"/>
+   <stop stop-color="#a3d1d1" offset=".67969"/>
+   <stop stop-color="#a2d0d0" offset=".68359"/>
+   <stop stop-color="#a1d0d0" offset=".6875"/>
+   <stop stop-color="#a1d0d0" offset=".69141"/>
+   <stop stop-color="#a0cfcf" offset=".69531"/>
+   <stop stop-color="#a0cfcf" offset=".69922"/>
+   <stop stop-color="#9fcfcf" offset=".70312"/>
+   <stop stop-color="#9ecece" offset=".70703"/>
+   <stop stop-color="#9ecece" offset=".71094"/>
+   <stop stop-color="#9dcece" offset=".71484"/>
+   <stop stop-color="#9ccdcd" offset=".71875"/>
+   <stop stop-color="#9ccdcd" offset=".72266"/>
+   <stop stop-color="#9bcdcd" offset=".72656"/>
+   <stop stop-color="#9bcdcd" offset=".73047"/>
+   <stop stop-color="#9acccc" offset=".73438"/>
+   <stop stop-color="#9cc" offset=".73828"/>
+   <stop stop-color="#9cc" offset=".74219"/>
+   <stop stop-color="#98cbcb" offset=".74609"/>
+   <stop stop-color="#98cbcb" offset=".75"/>
+   <stop stop-color="#97cbcb" offset=".75391"/>
+   <stop stop-color="#96caca" offset=".75781"/>
+   <stop stop-color="#96caca" offset=".76172"/>
+   <stop stop-color="#95caca" offset=".76562"/>
+   <stop stop-color="#94c9c9" offset=".76953"/>
+   <stop stop-color="#94c9c9" offset=".77344"/>
+   <stop stop-color="#93c9c9" offset=".77734"/>
+   <stop stop-color="#93c9c9" offset=".78125"/>
+   <stop stop-color="#92c8c8" offset=".78516"/>
+   <stop stop-color="#91c8c8" offset=".78906"/>
+   <stop stop-color="#91c8c8" offset=".79297"/>
+   <stop stop-color="#90c7c7" offset=".79688"/>
+   <stop stop-color="#90c7c7" offset=".80078"/>
+   <stop stop-color="#8fc7c7" offset=".80469"/>
+   <stop stop-color="#8ec6c6" offset=".80859"/>
+   <stop stop-color="#8ec6c6" offset=".8125"/>
+   <stop stop-color="#8dc6c6" offset=".81641"/>
+   <stop stop-color="#8dc6c6" offset=".82031"/>
+   <stop stop-color="#8cc5c5" offset=".82422"/>
+   <stop stop-color="#8bc5c5" offset=".82812"/>
+   <stop stop-color="#8bc5c5" offset=".83203"/>
+   <stop stop-color="#8ac4c4" offset=".83594"/>
+   <stop stop-color="#89c4c4" offset=".83984"/>
+   <stop stop-color="#89c4c4" offset=".84375"/>
+   <stop stop-color="#88c3c3" offset=".84766"/>
+   <stop stop-color="#88c3c3" offset=".85156"/>
+   <stop stop-color="#87c3c3" offset=".85547"/>
+   <stop stop-color="#86c2c2" offset=".85938"/>
+   <stop stop-color="#86c2c2" offset=".86328"/>
+   <stop stop-color="#85c2c2" offset=".86719"/>
+   <stop stop-color="#85c2c2" offset=".87109"/>
+   <stop stop-color="#84c1c1" offset=".875"/>
+   <stop stop-color="#83c1c1" offset=".87891"/>
+   <stop stop-color="#83c1c1" offset=".88281"/>
+   <stop stop-color="#82c0c0" offset=".88672"/>
+   <stop stop-color="#82c0c0" offset=".89062"/>
+   <stop stop-color="#81c0c0" offset=".89453"/>
+   <stop stop-color="#80bfbf" offset=".89844"/>
+   <stop stop-color="#80bfbf" offset=".90234"/>
+   <stop stop-color="#7fbfbf" offset=".90625"/>
+   <stop stop-color="#7fbfbf" offset=".9375"/>
+   <stop stop-color="#7fbfbf" offset="1"/>
+  </linearGradient>
+  <clipPath id="clip5">
+   <path d="m86 24h41v16h-41z"/>
+  </clipPath>
+  <clipPath id="clip6">
+   <path d="m122.99 24.059h-32.188c-2.1992 0-3.9844 1.7812-3.9844 3.9844v7.25c0 2.1992 1.7852 3.9844 3.9844 3.9844h32.188c2.1992 0 3.9844-1.7852 3.9844-3.9844v-7.25c0-2.2031-1.7852-3.9844-3.9844-3.9844z"/>
+  </clipPath>
+  <clipPath id="clip7">
+   <path d="m78.613 60.375 67.129-17.988-10.566-39.426-67.125 17.988z"/>
+  </clipPath>
+  <linearGradient id="linear1" x2="0" y1="19.26" y2="80.74" gradientTransform="matrix(.67128 -.17987 -.10564 -.39425 78.613 60.373)" gradientUnits="userSpaceOnUse">
+   <stop stop-color="#fff" offset="0"/>
+   <stop stop-color="#fff" offset=".0625"/>
+   <stop stop-color="#fefefe" offset=".09375"/>
+   <stop stop-color="#fefefe" offset=".097656"/>
+   <stop stop-color="#fdfefe" offset=".10156"/>
+   <stop stop-color="#fdfefe" offset=".10547"/>
+   <stop stop-color="#fcfdfd" offset=".10938"/>
+   <stop stop-color="#fbfdfd" offset=".11328"/>
+   <stop stop-color="#fbfdfd" offset=".11719"/>
+   <stop stop-color="#fafcfc" offset=".12109"/>
+   <stop stop-color="#fafcfc" offset=".125"/>
+   <stop stop-color="#f9fcfc" offset=".12891"/>
+   <stop stop-color="#f8fbfb" offset=".13281"/>
+   <stop stop-color="#f8fbfb" offset=".13672"/>
+   <stop stop-color="#f7fbfb" offset=".14062"/>
+   <stop stop-color="#f6fafa" offset=".14453"/>
+   <stop stop-color="#f6fafa" offset=".14844"/>
+   <stop stop-color="#f5fafa" offset=".15234"/>
+   <stop stop-color="#f5fafa" offset=".15625"/>
+   <stop stop-color="#f4f9f9" offset=".16016"/>
+   <stop stop-color="#f3f9f9" offset=".16406"/>
+   <stop stop-color="#f3f9f9" offset=".16797"/>
+   <stop stop-color="#f2f8f8" offset=".17188"/>
+   <stop stop-color="#f2f8f8" offset=".17578"/>
+   <stop stop-color="#f1f8f8" offset=".17969"/>
+   <stop stop-color="#f0f7f7" offset=".18359"/>
+   <stop stop-color="#f0f7f7" offset=".1875"/>
+   <stop stop-color="#eff7f7" offset=".19141"/>
+   <stop stop-color="#eff7f7" offset=".19531"/>
+   <stop stop-color="#eef6f6" offset=".19922"/>
+   <stop stop-color="#edf6f6" offset=".20312"/>
+   <stop stop-color="#edf6f6" offset=".20703"/>
+   <stop stop-color="#ecf5f5" offset=".21094"/>
+   <stop stop-color="#ebf5f5" offset=".21484"/>
+   <stop stop-color="#ebf5f5" offset=".21875"/>
+   <stop stop-color="#eaf4f4" offset=".22266"/>
+   <stop stop-color="#eaf4f4" offset=".22656"/>
+   <stop stop-color="#e9f4f4" offset=".23047"/>
+   <stop stop-color="#e8f3f3" offset=".23438"/>
+   <stop stop-color="#e8f3f3" offset=".23828"/>
+   <stop stop-color="#e7f3f3" offset=".24219"/>
+   <stop stop-color="#e7f3f3" offset=".24609"/>
+   <stop stop-color="#e6f2f2" offset=".25"/>
+   <stop stop-color="#e5f2f2" offset=".25391"/>
+   <stop stop-color="#e5f2f2" offset=".25781"/>
+   <stop stop-color="#e4f1f1" offset=".26172"/>
+   <stop stop-color="#e3f1f1" offset=".26562"/>
+   <stop stop-color="#e3f1f1" offset=".26953"/>
+   <stop stop-color="#e2f0f0" offset=".27344"/>
+   <stop stop-color="#e2f0f0" offset=".27734"/>
+   <stop stop-color="#e1f0f0" offset=".28125"/>
+   <stop stop-color="#e0efef" offset=".28516"/>
+   <stop stop-color="#e0efef" offset=".28906"/>
+   <stop stop-color="#dfefef" offset=".29297"/>
+   <stop stop-color="#dfefef" offset=".29688"/>
+   <stop stop-color="#deeeee" offset=".30078"/>
+   <stop stop-color="#dee" offset=".30469"/>
+   <stop stop-color="#dee" offset=".30859"/>
+   <stop stop-color="#dceded" offset=".3125"/>
+   <stop stop-color="#dceded" offset=".31641"/>
+   <stop stop-color="#dbeded" offset=".32031"/>
+   <stop stop-color="#daecec" offset=".32422"/>
+   <stop stop-color="#daecec" offset=".32812"/>
+   <stop stop-color="#d9ecec" offset=".33203"/>
+   <stop stop-color="#d8ebeb" offset=".33594"/>
+   <stop stop-color="#d8ebeb" offset=".33984"/>
+   <stop stop-color="#d7ebeb" offset=".34375"/>
+   <stop stop-color="#d7ebeb" offset=".34766"/>
+   <stop stop-color="#d6eaea" offset=".35156"/>
+   <stop stop-color="#d5eaea" offset=".35547"/>
+   <stop stop-color="#d5eaea" offset=".35938"/>
+   <stop stop-color="#d4e9e9" offset=".36328"/>
+   <stop stop-color="#d4e9e9" offset=".36719"/>
+   <stop stop-color="#d3e9e9" offset=".37109"/>
+   <stop stop-color="#d2e8e8" offset=".375"/>
+   <stop stop-color="#d2e8e8" offset=".37891"/>
+   <stop stop-color="#d1e8e8" offset=".38281"/>
+   <stop stop-color="#d1e8e8" offset=".38672"/>
+   <stop stop-color="#d0e7e7" offset=".39062"/>
+   <stop stop-color="#cfe7e7" offset=".39453"/>
+   <stop stop-color="#cfe7e7" offset=".39844"/>
+   <stop stop-color="#cee6e6" offset=".40234"/>
+   <stop stop-color="#cde6e6" offset=".40625"/>
+   <stop stop-color="#cde6e6" offset=".41016"/>
+   <stop stop-color="#cce5e5" offset=".41406"/>
+   <stop stop-color="#cce5e5" offset=".41797"/>
+   <stop stop-color="#cbe5e5" offset=".42188"/>
+   <stop stop-color="#cae4e4" offset=".42578"/>
+   <stop stop-color="#cae4e4" offset=".42969"/>
+   <stop stop-color="#c9e4e4" offset=".43359"/>
+   <stop stop-color="#c9e4e4" offset=".4375"/>
+   <stop stop-color="#c8e3e3" offset=".44141"/>
+   <stop stop-color="#c7e3e3" offset=".44531"/>
+   <stop stop-color="#c7e3e3" offset=".44922"/>
+   <stop stop-color="#c6e2e2" offset=".45312"/>
+   <stop stop-color="#c5e2e2" offset=".45703"/>
+   <stop stop-color="#c5e2e2" offset=".46094"/>
+   <stop stop-color="#c4e1e1" offset=".46484"/>
+   <stop stop-color="#c4e1e1" offset=".46875"/>
+   <stop stop-color="#c3e1e1" offset=".47266"/>
+   <stop stop-color="#c2e0e0" offset=".47656"/>
+   <stop stop-color="#c2e0e0" offset=".48047"/>
+   <stop stop-color="#c1e0e0" offset=".48438"/>
+   <stop stop-color="#c1e0e0" offset=".48828"/>
+   <stop stop-color="#c0dfdf" offset=".49219"/>
+   <stop stop-color="#bfdfdf" offset=".49609"/>
+   <stop stop-color="#bfdfdf" offset=".5"/>
+   <stop stop-color="#bedede" offset=".50391"/>
+   <stop stop-color="#bedede" offset=".50781"/>
+   <stop stop-color="#bddede" offset=".51172"/>
+   <stop stop-color="#bcdddd" offset=".51562"/>
+   <stop stop-color="#bcdddd" offset=".51953"/>
+   <stop stop-color="#bdd" offset=".52344"/>
+   <stop stop-color="#badcdc" offset=".52734"/>
+   <stop stop-color="#badcdc" offset=".53125"/>
+   <stop stop-color="#b9dcdc" offset=".53516"/>
+   <stop stop-color="#b9dcdc" offset=".53906"/>
+   <stop stop-color="#b8dbdb" offset=".54297"/>
+   <stop stop-color="#b7dbdb" offset=".54688"/>
+   <stop stop-color="#b7dbdb" offset=".55078"/>
+   <stop stop-color="#b6dada" offset=".55469"/>
+   <stop stop-color="#b6dada" offset=".55859"/>
+   <stop stop-color="#b5dada" offset=".5625"/>
+   <stop stop-color="#b4d9d9" offset=".56641"/>
+   <stop stop-color="#b4d9d9" offset=".57031"/>
+   <stop stop-color="#b3d9d9" offset=".57422"/>
+   <stop stop-color="#b3d9d9" offset=".57812"/>
+   <stop stop-color="#b2d8d8" offset=".58203"/>
+   <stop stop-color="#b1d8d8" offset=".58594"/>
+   <stop stop-color="#b1d8d8" offset=".58984"/>
+   <stop stop-color="#b0d7d7" offset=".59375"/>
+   <stop stop-color="#afd7d7" offset=".59766"/>
+   <stop stop-color="#afd7d7" offset=".60156"/>
+   <stop stop-color="#aed6d6" offset=".60547"/>
+   <stop stop-color="#aed6d6" offset=".60938"/>
+   <stop stop-color="#add6d6" offset=".61328"/>
+   <stop stop-color="#acd5d5" offset=".61719"/>
+   <stop stop-color="#acd5d5" offset=".62109"/>
+   <stop stop-color="#abd5d5" offset=".625"/>
+   <stop stop-color="#abd5d5" offset=".62891"/>
+   <stop stop-color="#aad4d4" offset=".63281"/>
+   <stop stop-color="#a9d4d4" offset=".63672"/>
+   <stop stop-color="#a9d4d4" offset=".64062"/>
+   <stop stop-color="#a8d3d3" offset=".64453"/>
+   <stop stop-color="#a7d3d3" offset=".64844"/>
+   <stop stop-color="#a7d3d3" offset=".65234"/>
+   <stop stop-color="#a6d2d2" offset=".65625"/>
+   <stop stop-color="#a6d2d2" offset=".66016"/>
+   <stop stop-color="#a5d2d2" offset=".66406"/>
+   <stop stop-color="#a4d1d1" offset=".66797"/>
+   <stop stop-color="#a4d1d1" offset=".67188"/>
+   <stop stop-color="#a3d1d1" offset=".67578"/>
+   <stop stop-color="#a3d1d1" offset=".67969"/>
+   <stop stop-color="#a2d0d0" offset=".68359"/>
+   <stop stop-color="#a1d0d0" offset=".6875"/>
+   <stop stop-color="#a1d0d0" offset=".69141"/>
+   <stop stop-color="#a0cfcf" offset=".69531"/>
+   <stop stop-color="#a0cfcf" offset=".69922"/>
+   <stop stop-color="#9fcfcf" offset=".70312"/>
+   <stop stop-color="#9ecece" offset=".70703"/>
+   <stop stop-color="#9ecece" offset=".71094"/>
+   <stop stop-color="#9dcece" offset=".71484"/>
+   <stop stop-color="#9ccdcd" offset=".71875"/>
+   <stop stop-color="#9ccdcd" offset=".72266"/>
+   <stop stop-color="#9bcdcd" offset=".72656"/>
+   <stop stop-color="#9bcdcd" offset=".73047"/>
+   <stop stop-color="#9acccc" offset=".73438"/>
+   <stop stop-color="#9cc" offset=".73828"/>
+   <stop stop-color="#9cc" offset=".74219"/>
+   <stop stop-color="#98cbcb" offset=".74609"/>
+   <stop stop-color="#98cbcb" offset=".75"/>
+   <stop stop-color="#97cbcb" offset=".75391"/>
+   <stop stop-color="#96caca" offset=".75781"/>
+   <stop stop-color="#96caca" offset=".76172"/>
+   <stop stop-color="#95caca" offset=".76562"/>
+   <stop stop-color="#94c9c9" offset=".76953"/>
+   <stop stop-color="#94c9c9" offset=".77344"/>
+   <stop stop-color="#93c9c9" offset=".77734"/>
+   <stop stop-color="#93c9c9" offset=".78125"/>
+   <stop stop-color="#92c8c8" offset=".78516"/>
+   <stop stop-color="#91c8c8" offset=".78906"/>
+   <stop stop-color="#91c8c8" offset=".79297"/>
+   <stop stop-color="#90c7c7" offset=".79688"/>
+   <stop stop-color="#90c7c7" offset=".80078"/>
+   <stop stop-color="#8fc7c7" offset=".80469"/>
+   <stop stop-color="#8ec6c6" offset=".80859"/>
+   <stop stop-color="#8ec6c6" offset=".8125"/>
+   <stop stop-color="#8dc6c6" offset=".81641"/>
+   <stop stop-color="#8dc6c6" offset=".82031"/>
+   <stop stop-color="#8cc5c5" offset=".82422"/>
+   <stop stop-color="#8bc5c5" offset=".82812"/>
+   <stop stop-color="#8bc5c5" offset=".83203"/>
+   <stop stop-color="#8ac4c4" offset=".83594"/>
+   <stop stop-color="#89c4c4" offset=".83984"/>
+   <stop stop-color="#89c4c4" offset=".84375"/>
+   <stop stop-color="#88c3c3" offset=".84766"/>
+   <stop stop-color="#88c3c3" offset=".85156"/>
+   <stop stop-color="#87c3c3" offset=".85547"/>
+   <stop stop-color="#86c2c2" offset=".85938"/>
+   <stop stop-color="#86c2c2" offset=".86328"/>
+   <stop stop-color="#85c2c2" offset=".86719"/>
+   <stop stop-color="#85c2c2" offset=".87109"/>
+   <stop stop-color="#84c1c1" offset=".875"/>
+   <stop stop-color="#83c1c1" offset=".87891"/>
+   <stop stop-color="#83c1c1" offset=".88281"/>
+   <stop stop-color="#82c0c0" offset=".88672"/>
+   <stop stop-color="#82c0c0" offset=".89062"/>
+   <stop stop-color="#81c0c0" offset=".89453"/>
+   <stop stop-color="#80bfbf" offset=".89844"/>
+   <stop stop-color="#80bfbf" offset=".90234"/>
+   <stop stop-color="#7fbfbf" offset=".90625"/>
+   <stop stop-color="#7fbfbf" offset=".9375"/>
+   <stop stop-color="#7fbfbf" offset="1"/>
+  </linearGradient>
+  <clipPath id="clip8">
+   <path d="m55 143h23v14h-23z"/>
+  </clipPath>
+  <clipPath id="clip9">
+   <path d="m73.133 143.21h-13.664c-2.1992 0-3.9844 1.7852-3.9844 3.9844v5.3086c0 2.1992 1.7852 3.9844 3.9844 3.9844h13.664c2.2031 0 3.9844-1.7852 3.9844-3.9844v-5.3086c0-2.1992-1.7812-3.9844-3.9844-3.9844z"/>
+  </clipPath>
+  <clipPath id="clip10">
+   <path d="m51.062 169.44 38.23-10.242-7.7539-28.945-38.23 10.246z"/>
+  </clipPath>
+  <linearGradient id="linear2" x2="0" y1="19.258" y2="80.742" gradientTransform="matrix(.38232 -.10244 -.077555 -.28944 51.063 169.44)" gradientUnits="userSpaceOnUse">
+   <stop stop-color="#fff" offset="0"/>
+   <stop stop-color="#fff" offset=".0625"/>
+   <stop stop-color="#fefefe" offset=".09375"/>
+   <stop stop-color="#fefefe" offset=".097656"/>
+   <stop stop-color="#fdfefe" offset=".10156"/>
+   <stop stop-color="#fdfefe" offset=".10547"/>
+   <stop stop-color="#fcfdfd" offset=".10938"/>
+   <stop stop-color="#fbfdfd" offset=".11328"/>
+   <stop stop-color="#fbfdfd" offset=".11719"/>
+   <stop stop-color="#fafcfc" offset=".12109"/>
+   <stop stop-color="#fafcfc" offset=".125"/>
+   <stop stop-color="#f9fcfc" offset=".12891"/>
+   <stop stop-color="#f8fbfb" offset=".13281"/>
+   <stop stop-color="#f8fbfb" offset=".13672"/>
+   <stop stop-color="#f7fbfb" offset=".14062"/>
+   <stop stop-color="#f6fafa" offset=".14453"/>
+   <stop stop-color="#f6fafa" offset=".14844"/>
+   <stop stop-color="#f5fafa" offset=".15234"/>
+   <stop stop-color="#f5fafa" offset=".15625"/>
+   <stop stop-color="#f4f9f9" offset=".16016"/>
+   <stop stop-color="#f3f9f9" offset=".16406"/>
+   <stop stop-color="#f3f9f9" offset=".16797"/>
+   <stop stop-color="#f2f8f8" offset=".17188"/>
+   <stop stop-color="#f2f8f8" offset=".17578"/>
+   <stop stop-color="#f1f8f8" offset=".17969"/>
+   <stop stop-color="#f0f7f7" offset=".18359"/>
+   <stop stop-color="#f0f7f7" offset=".1875"/>
+   <stop stop-color="#eff7f7" offset=".19141"/>
+   <stop stop-color="#eff7f7" offset=".19531"/>
+   <stop stop-color="#eef6f6" offset=".19922"/>
+   <stop stop-color="#edf6f6" offset=".20312"/>
+   <stop stop-color="#edf6f6" offset=".20703"/>
+   <stop stop-color="#ecf5f5" offset=".21094"/>
+   <stop stop-color="#ebf5f5" offset=".21484"/>
+   <stop stop-color="#ebf5f5" offset=".21875"/>
+   <stop stop-color="#eaf4f4" offset=".22266"/>
+   <stop stop-color="#eaf4f4" offset=".22656"/>
+   <stop stop-color="#e9f4f4" offset=".23047"/>
+   <stop stop-color="#e8f3f3" offset=".23438"/>
+   <stop stop-color="#e8f3f3" offset=".23828"/>
+   <stop stop-color="#e7f3f3" offset=".24219"/>
+   <stop stop-color="#e7f3f3" offset=".24609"/>
+   <stop stop-color="#e6f2f2" offset=".25"/>
+   <stop stop-color="#e5f2f2" offset=".25391"/>
+   <stop stop-color="#e5f2f2" offset=".25781"/>
+   <stop stop-color="#e4f1f1" offset=".26172"/>
+   <stop stop-color="#e3f1f1" offset=".26562"/>
+   <stop stop-color="#e3f1f1" offset=".26953"/>
+   <stop stop-color="#e2f0f0" offset=".27344"/>
+   <stop stop-color="#e2f0f0" offset=".27734"/>
+   <stop stop-color="#e1f0f0" offset=".28125"/>
+   <stop stop-color="#e0efef" offset=".28516"/>
+   <stop stop-color="#e0efef" offset=".28906"/>
+   <stop stop-color="#dfefef" offset=".29297"/>
+   <stop stop-color="#dfefef" offset=".29688"/>
+   <stop stop-color="#deeeee" offset=".30078"/>
+   <stop stop-color="#dee" offset=".30469"/>
+   <stop stop-color="#dee" offset=".30859"/>
+   <stop stop-color="#dceded" offset=".3125"/>
+   <stop stop-color="#dceded" offset=".31641"/>
+   <stop stop-color="#dbeded" offset=".32031"/>
+   <stop stop-color="#daecec" offset=".32422"/>
+   <stop stop-color="#daecec" offset=".32812"/>
+   <stop stop-color="#d9ecec" offset=".33203"/>
+   <stop stop-color="#d8ebeb" offset=".33594"/>
+   <stop stop-color="#d8ebeb" offset=".33984"/>
+   <stop stop-color="#d7ebeb" offset=".34375"/>
+   <stop stop-color="#d7ebeb" offset=".34766"/>
+   <stop stop-color="#d6eaea" offset=".35156"/>
+   <stop stop-color="#d5eaea" offset=".35547"/>
+   <stop stop-color="#d5eaea" offset=".35938"/>
+   <stop stop-color="#d4e9e9" offset=".36328"/>
+   <stop stop-color="#d4e9e9" offset=".36719"/>
+   <stop stop-color="#d3e9e9" offset=".37109"/>
+   <stop stop-color="#d2e8e8" offset=".375"/>
+   <stop stop-color="#d2e8e8" offset=".37891"/>
+   <stop stop-color="#d1e8e8" offset=".38281"/>
+   <stop stop-color="#d1e8e8" offset=".38672"/>
+   <stop stop-color="#d0e7e7" offset=".39062"/>
+   <stop stop-color="#cfe7e7" offset=".39453"/>
+   <stop stop-color="#cfe7e7" offset=".39844"/>
+   <stop stop-color="#cee6e6" offset=".40234"/>
+   <stop stop-color="#cde6e6" offset=".40625"/>
+   <stop stop-color="#cde6e6" offset=".41016"/>
+   <stop stop-color="#cce5e5" offset=".41406"/>
+   <stop stop-color="#cce5e5" offset=".41797"/>
+   <stop stop-color="#cbe5e5" offset=".42188"/>
+   <stop stop-color="#cae4e4" offset=".42578"/>
+   <stop stop-color="#cae4e4" offset=".42969"/>
+   <stop stop-color="#c9e4e4" offset=".43359"/>
+   <stop stop-color="#c9e4e4" offset=".4375"/>
+   <stop stop-color="#c8e3e3" offset=".44141"/>
+   <stop stop-color="#c7e3e3" offset=".44531"/>
+   <stop stop-color="#c7e3e3" offset=".44922"/>
+   <stop stop-color="#c6e2e2" offset=".45312"/>
+   <stop stop-color="#c5e2e2" offset=".45703"/>
+   <stop stop-color="#c5e2e2" offset=".46094"/>
+   <stop stop-color="#c4e1e1" offset=".46484"/>
+   <stop stop-color="#c4e1e1" offset=".46875"/>
+   <stop stop-color="#c3e1e1" offset=".47266"/>
+   <stop stop-color="#c2e0e0" offset=".47656"/>
+   <stop stop-color="#c2e0e0" offset=".48047"/>
+   <stop stop-color="#c1e0e0" offset=".48438"/>
+   <stop stop-color="#c1e0e0" offset=".48828"/>
+   <stop stop-color="#c0dfdf" offset=".49219"/>
+   <stop stop-color="#bfdfdf" offset=".49609"/>
+   <stop stop-color="#bfdfdf" offset=".5"/>
+   <stop stop-color="#bedede" offset=".50391"/>
+   <stop stop-color="#bedede" offset=".50781"/>
+   <stop stop-color="#bddede" offset=".51172"/>
+   <stop stop-color="#bcdddd" offset=".51562"/>
+   <stop stop-color="#bcdddd" offset=".51953"/>
+   <stop stop-color="#bdd" offset=".52344"/>
+   <stop stop-color="#badcdc" offset=".52734"/>
+   <stop stop-color="#badcdc" offset=".53125"/>
+   <stop stop-color="#b9dcdc" offset=".53516"/>
+   <stop stop-color="#b9dcdc" offset=".53906"/>
+   <stop stop-color="#b8dbdb" offset=".54297"/>
+   <stop stop-color="#b7dbdb" offset=".54688"/>
+   <stop stop-color="#b7dbdb" offset=".55078"/>
+   <stop stop-color="#b6dada" offset=".55469"/>
+   <stop stop-color="#b6dada" offset=".55859"/>
+   <stop stop-color="#b5dada" offset=".5625"/>
+   <stop stop-color="#b4d9d9" offset=".56641"/>
+   <stop stop-color="#b4d9d9" offset=".57031"/>
+   <stop stop-color="#b3d9d9" offset=".57422"/>
+   <stop stop-color="#b3d9d9" offset=".57812"/>
+   <stop stop-color="#b2d8d8" offset=".58203"/>
+   <stop stop-color="#b1d8d8" offset=".58594"/>
+   <stop stop-color="#b1d8d8" offset=".58984"/>
+   <stop stop-color="#b0d7d7" offset=".59375"/>
+   <stop stop-color="#afd7d7" offset=".59766"/>
+   <stop stop-color="#afd7d7" offset=".60156"/>
+   <stop stop-color="#aed6d6" offset=".60547"/>
+   <stop stop-color="#aed6d6" offset=".60938"/>
+   <stop stop-color="#add6d6" offset=".61328"/>
+   <stop stop-color="#acd5d5" offset=".61719"/>
+   <stop stop-color="#acd5d5" offset=".62109"/>
+   <stop stop-color="#abd5d5" offset=".625"/>
+   <stop stop-color="#abd5d5" offset=".62891"/>
+   <stop stop-color="#aad4d4" offset=".63281"/>
+   <stop stop-color="#a9d4d4" offset=".63672"/>
+   <stop stop-color="#a9d4d4" offset=".64062"/>
+   <stop stop-color="#a8d3d3" offset=".64453"/>
+   <stop stop-color="#a7d3d3" offset=".64844"/>
+   <stop stop-color="#a7d3d3" offset=".65234"/>
+   <stop stop-color="#a6d2d2" offset=".65625"/>
+   <stop stop-color="#a6d2d2" offset=".66016"/>
+   <stop stop-color="#a5d2d2" offset=".66406"/>
+   <stop stop-color="#a4d1d1" offset=".66797"/>
+   <stop stop-color="#a4d1d1" offset=".67188"/>
+   <stop stop-color="#a3d1d1" offset=".67578"/>
+   <stop stop-color="#a3d1d1" offset=".67969"/>
+   <stop stop-color="#a2d0d0" offset=".68359"/>
+   <stop stop-color="#a1d0d0" offset=".6875"/>
+   <stop stop-color="#a1d0d0" offset=".69141"/>
+   <stop stop-color="#a0cfcf" offset=".69531"/>
+   <stop stop-color="#a0cfcf" offset=".69922"/>
+   <stop stop-color="#9fcfcf" offset=".70312"/>
+   <stop stop-color="#9ecece" offset=".70703"/>
+   <stop stop-color="#9ecece" offset=".71094"/>
+   <stop stop-color="#9dcece" offset=".71484"/>
+   <stop stop-color="#9ccdcd" offset=".71875"/>
+   <stop stop-color="#9ccdcd" offset=".72266"/>
+   <stop stop-color="#9bcdcd" offset=".72656"/>
+   <stop stop-color="#9bcdcd" offset=".73047"/>
+   <stop stop-color="#9acccc" offset=".73438"/>
+   <stop stop-color="#9cc" offset=".73828"/>
+   <stop stop-color="#9cc" offset=".74219"/>
+   <stop stop-color="#98cbcb" offset=".74609"/>
+   <stop stop-color="#98cbcb" offset=".75"/>
+   <stop stop-color="#97cbcb" offset=".75391"/>
+   <stop stop-color="#96caca" offset=".75781"/>
+   <stop stop-color="#96caca" offset=".76172"/>
+   <stop stop-color="#95caca" offset=".76562"/>
+   <stop stop-color="#94c9c9" offset=".76953"/>
+   <stop stop-color="#94c9c9" offset=".77344"/>
+   <stop stop-color="#93c9c9" offset=".77734"/>
+   <stop stop-color="#93c9c9" offset=".78125"/>
+   <stop stop-color="#92c8c8" offset=".78516"/>
+   <stop stop-color="#91c8c8" offset=".78906"/>
+   <stop stop-color="#91c8c8" offset=".79297"/>
+   <stop stop-color="#90c7c7" offset=".79688"/>
+   <stop stop-color="#90c7c7" offset=".80078"/>
+   <stop stop-color="#8fc7c7" offset=".80469"/>
+   <stop stop-color="#8ec6c6" offset=".80859"/>
+   <stop stop-color="#8ec6c6" offset=".8125"/>
+   <stop stop-color="#8dc6c6" offset=".81641"/>
+   <stop stop-color="#8dc6c6" offset=".82031"/>
+   <stop stop-color="#8cc5c5" offset=".82422"/>
+   <stop stop-color="#8bc5c5" offset=".82812"/>
+   <stop stop-color="#8bc5c5" offset=".83203"/>
+   <stop stop-color="#8ac4c4" offset=".83594"/>
+   <stop stop-color="#89c4c4" offset=".83984"/>
+   <stop stop-color="#89c4c4" offset=".84375"/>
+   <stop stop-color="#88c3c3" offset=".84766"/>
+   <stop stop-color="#88c3c3" offset=".85156"/>
+   <stop stop-color="#87c3c3" offset=".85547"/>
+   <stop stop-color="#86c2c2" offset=".85938"/>
+   <stop stop-color="#86c2c2" offset=".86328"/>
+   <stop stop-color="#85c2c2" offset=".86719"/>
+   <stop stop-color="#85c2c2" offset=".87109"/>
+   <stop stop-color="#84c1c1" offset=".875"/>
+   <stop stop-color="#83c1c1" offset=".87891"/>
+   <stop stop-color="#83c1c1" offset=".88281"/>
+   <stop stop-color="#82c0c0" offset=".88672"/>
+   <stop stop-color="#82c0c0" offset=".89062"/>
+   <stop stop-color="#81c0c0" offset=".89453"/>
+   <stop stop-color="#80bfbf" offset=".89844"/>
+   <stop stop-color="#80bfbf" offset=".90234"/>
+   <stop stop-color="#7fbfbf" offset=".90625"/>
+   <stop stop-color="#7fbfbf" offset=".9375"/>
+   <stop stop-color="#7fbfbf" offset="1"/>
+  </linearGradient>
+  <clipPath id="clip11">
+   <path d="m86 143h23v14h-23z"/>
+  </clipPath>
+  <clipPath id="clip12">
+   <path d="m104.47 143.21h-13.668c-2.1992 0-3.9844 1.7852-3.9844 3.9844v5.3086c0 2.1992 1.7852 3.9844 3.9844 3.9844h13.668c2.1992 0 3.9844-1.7852 3.9844-3.9844v-5.3086c0-2.1992-1.7852-3.9844-3.9844-3.9844z"/>
+  </clipPath>
+  <clipPath id="clip13">
+   <path d="m82.398 169.44 38.23-10.242-7.7578-28.945-38.23 10.246z"/>
+  </clipPath>
+  <linearGradient id="linear3" x2="0" y1="19.258" y2="80.742" gradientTransform="matrix(.38232 -.10244 -.077555 -.28944 82.397 169.44)" gradientUnits="userSpaceOnUse">
+   <stop stop-color="#fff" offset="0"/>
+   <stop stop-color="#fff" offset=".0625"/>
+   <stop stop-color="#fefefe" offset=".09375"/>
+   <stop stop-color="#fefefe" offset=".097656"/>
+   <stop stop-color="#fdfefe" offset=".10156"/>
+   <stop stop-color="#fdfefe" offset=".10547"/>
+   <stop stop-color="#fcfdfd" offset=".10938"/>
+   <stop stop-color="#fbfdfd" offset=".11328"/>
+   <stop stop-color="#fbfdfd" offset=".11719"/>
+   <stop stop-color="#fafcfc" offset=".12109"/>
+   <stop stop-color="#fafcfc" offset=".125"/>
+   <stop stop-color="#f9fcfc" offset=".12891"/>
+   <stop stop-color="#f8fbfb" offset=".13281"/>
+   <stop stop-color="#f8fbfb" offset=".13672"/>
+   <stop stop-color="#f7fbfb" offset=".14062"/>
+   <stop stop-color="#f6fafa" offset=".14453"/>
+   <stop stop-color="#f6fafa" offset=".14844"/>
+   <stop stop-color="#f5fafa" offset=".15234"/>
+   <stop stop-color="#f5fafa" offset=".15625"/>
+   <stop stop-color="#f4f9f9" offset=".16016"/>
+   <stop stop-color="#f3f9f9" offset=".16406"/>
+   <stop stop-color="#f3f9f9" offset=".16797"/>
+   <stop stop-color="#f2f8f8" offset=".17188"/>
+   <stop stop-color="#f2f8f8" offset=".17578"/>
+   <stop stop-color="#f1f8f8" offset=".17969"/>
+   <stop stop-color="#f0f7f7" offset=".18359"/>
+   <stop stop-color="#f0f7f7" offset=".1875"/>
+   <stop stop-color="#eff7f7" offset=".19141"/>
+   <stop stop-color="#eff7f7" offset=".19531"/>
+   <stop stop-color="#eef6f6" offset=".19922"/>
+   <stop stop-color="#edf6f6" offset=".20312"/>
+   <stop stop-color="#edf6f6" offset=".20703"/>
+   <stop stop-color="#ecf5f5" offset=".21094"/>
+   <stop stop-color="#ebf5f5" offset=".21484"/>
+   <stop stop-color="#ebf5f5" offset=".21875"/>
+   <stop stop-color="#eaf4f4" offset=".22266"/>
+   <stop stop-color="#eaf4f4" offset=".22656"/>
+   <stop stop-color="#e9f4f4" offset=".23047"/>
+   <stop stop-color="#e8f3f3" offset=".23438"/>
+   <stop stop-color="#e8f3f3" offset=".23828"/>
+   <stop stop-color="#e7f3f3" offset=".24219"/>
+   <stop stop-color="#e7f3f3" offset=".24609"/>
+   <stop stop-color="#e6f2f2" offset=".25"/>
+   <stop stop-color="#e5f2f2" offset=".25391"/>
+   <stop stop-color="#e5f2f2" offset=".25781"/>
+   <stop stop-color="#e4f1f1" offset=".26172"/>
+   <stop stop-color="#e3f1f1" offset=".26562"/>
+   <stop stop-color="#e3f1f1" offset=".26953"/>
+   <stop stop-color="#e2f0f0" offset=".27344"/>
+   <stop stop-color="#e2f0f0" offset=".27734"/>
+   <stop stop-color="#e1f0f0" offset=".28125"/>
+   <stop stop-color="#e0efef" offset=".28516"/>
+   <stop stop-color="#e0efef" offset=".28906"/>
+   <stop stop-color="#dfefef" offset=".29297"/>
+   <stop stop-color="#dfefef" offset=".29688"/>
+   <stop stop-color="#deeeee" offset=".30078"/>
+   <stop stop-color="#dee" offset=".30469"/>
+   <stop stop-color="#dee" offset=".30859"/>
+   <stop stop-color="#dceded" offset=".3125"/>
+   <stop stop-color="#dceded" offset=".31641"/>
+   <stop stop-color="#dbeded" offset=".32031"/>
+   <stop stop-color="#daecec" offset=".32422"/>
+   <stop stop-color="#daecec" offset=".32812"/>
+   <stop stop-color="#d9ecec" offset=".33203"/>
+   <stop stop-color="#d8ebeb" offset=".33594"/>
+   <stop stop-color="#d8ebeb" offset=".33984"/>
+   <stop stop-color="#d7ebeb" offset=".34375"/>
+   <stop stop-color="#d7ebeb" offset=".34766"/>
+   <stop stop-color="#d6eaea" offset=".35156"/>
+   <stop stop-color="#d5eaea" offset=".35547"/>
+   <stop stop-color="#d5eaea" offset=".35938"/>
+   <stop stop-color="#d4e9e9" offset=".36328"/>
+   <stop stop-color="#d4e9e9" offset=".36719"/>
+   <stop stop-color="#d3e9e9" offset=".37109"/>
+   <stop stop-color="#d2e8e8" offset=".375"/>
+   <stop stop-color="#d2e8e8" offset=".37891"/>
+   <stop stop-color="#d1e8e8" offset=".38281"/>
+   <stop stop-color="#d1e8e8" offset=".38672"/>
+   <stop stop-color="#d0e7e7" offset=".39062"/>
+   <stop stop-color="#cfe7e7" offset=".39453"/>
+   <stop stop-color="#cfe7e7" offset=".39844"/>
+   <stop stop-color="#cee6e6" offset=".40234"/>
+   <stop stop-color="#cde6e6" offset=".40625"/>
+   <stop stop-color="#cde6e6" offset=".41016"/>
+   <stop stop-color="#cce5e5" offset=".41406"/>
+   <stop stop-color="#cce5e5" offset=".41797"/>
+   <stop stop-color="#cbe5e5" offset=".42188"/>
+   <stop stop-color="#cae4e4" offset=".42578"/>
+   <stop stop-color="#cae4e4" offset=".42969"/>
+   <stop stop-color="#c9e4e4" offset=".43359"/>
+   <stop stop-color="#c9e4e4" offset=".4375"/>
+   <stop stop-color="#c8e3e3" offset=".44141"/>
+   <stop stop-color="#c7e3e3" offset=".44531"/>
+   <stop stop-color="#c7e3e3" offset=".44922"/>
+   <stop stop-color="#c6e2e2" offset=".45312"/>
+   <stop stop-color="#c5e2e2" offset=".45703"/>
+   <stop stop-color="#c5e2e2" offset=".46094"/>
+   <stop stop-color="#c4e1e1" offset=".46484"/>
+   <stop stop-color="#c4e1e1" offset=".46875"/>
+   <stop stop-color="#c3e1e1" offset=".47266"/>
+   <stop stop-color="#c2e0e0" offset=".47656"/>
+   <stop stop-color="#c2e0e0" offset=".48047"/>
+   <stop stop-color="#c1e0e0" offset=".48438"/>
+   <stop stop-color="#c1e0e0" offset=".48828"/>
+   <stop stop-color="#c0dfdf" offset=".49219"/>
+   <stop stop-color="#bfdfdf" offset=".49609"/>
+   <stop stop-color="#bfdfdf" offset=".5"/>
+   <stop stop-color="#bedede" offset=".50391"/>
+   <stop stop-color="#bedede" offset=".50781"/>
+   <stop stop-color="#bddede" offset=".51172"/>
+   <stop stop-color="#bcdddd" offset=".51562"/>
+   <stop stop-color="#bcdddd" offset=".51953"/>
+   <stop stop-color="#bdd" offset=".52344"/>
+   <stop stop-color="#badcdc" offset=".52734"/>
+   <stop stop-color="#badcdc" offset=".53125"/>
+   <stop stop-color="#b9dcdc" offset=".53516"/>
+   <stop stop-color="#b9dcdc" offset=".53906"/>
+   <stop stop-color="#b8dbdb" offset=".54297"/>
+   <stop stop-color="#b7dbdb" offset=".54688"/>
+   <stop stop-color="#b7dbdb" offset=".55078"/>
+   <stop stop-color="#b6dada" offset=".55469"/>
+   <stop stop-color="#b6dada" offset=".55859"/>
+   <stop stop-color="#b5dada" offset=".5625"/>
+   <stop stop-color="#b4d9d9" offset=".56641"/>
+   <stop stop-color="#b4d9d9" offset=".57031"/>
+   <stop stop-color="#b3d9d9" offset=".57422"/>
+   <stop stop-color="#b3d9d9" offset=".57812"/>
+   <stop stop-color="#b2d8d8" offset=".58203"/>
+   <stop stop-color="#b1d8d8" offset=".58594"/>
+   <stop stop-color="#b1d8d8" offset=".58984"/>
+   <stop stop-color="#b0d7d7" offset=".59375"/>
+   <stop stop-color="#afd7d7" offset=".59766"/>
+   <stop stop-color="#afd7d7" offset=".60156"/>
+   <stop stop-color="#aed6d6" offset=".60547"/>
+   <stop stop-color="#aed6d6" offset=".60938"/>
+   <stop stop-color="#add6d6" offset=".61328"/>
+   <stop stop-color="#acd5d5" offset=".61719"/>
+   <stop stop-color="#acd5d5" offset=".62109"/>
+   <stop stop-color="#abd5d5" offset=".625"/>
+   <stop stop-color="#abd5d5" offset=".62891"/>
+   <stop stop-color="#aad4d4" offset=".63281"/>
+   <stop stop-color="#a9d4d4" offset=".63672"/>
+   <stop stop-color="#a9d4d4" offset=".64062"/>
+   <stop stop-color="#a8d3d3" offset=".64453"/>
+   <stop stop-color="#a7d3d3" offset=".64844"/>
+   <stop stop-color="#a7d3d3" offset=".65234"/>
+   <stop stop-color="#a6d2d2" offset=".65625"/>
+   <stop stop-color="#a6d2d2" offset=".66016"/>
+   <stop stop-color="#a5d2d2" offset=".66406"/>
+   <stop stop-color="#a4d1d1" offset=".66797"/>
+   <stop stop-color="#a4d1d1" offset=".67188"/>
+   <stop stop-color="#a3d1d1" offset=".67578"/>
+   <stop stop-color="#a3d1d1" offset=".67969"/>
+   <stop stop-color="#a2d0d0" offset=".68359"/>
+   <stop stop-color="#a1d0d0" offset=".6875"/>
+   <stop stop-color="#a1d0d0" offset=".69141"/>
+   <stop stop-color="#a0cfcf" offset=".69531"/>
+   <stop stop-color="#a0cfcf" offset=".69922"/>
+   <stop stop-color="#9fcfcf" offset=".70312"/>
+   <stop stop-color="#9ecece" offset=".70703"/>
+   <stop stop-color="#9ecece" offset=".71094"/>
+   <stop stop-color="#9dcece" offset=".71484"/>
+   <stop stop-color="#9ccdcd" offset=".71875"/>
+   <stop stop-color="#9ccdcd" offset=".72266"/>
+   <stop stop-color="#9bcdcd" offset=".72656"/>
+   <stop stop-color="#9bcdcd" offset=".73047"/>
+   <stop stop-color="#9acccc" offset=".73438"/>
+   <stop stop-color="#9cc" offset=".73828"/>
+   <stop stop-color="#9cc" offset=".74219"/>
+   <stop stop-color="#98cbcb" offset=".74609"/>
+   <stop stop-color="#98cbcb" offset=".75"/>
+   <stop stop-color="#97cbcb" offset=".75391"/>
+   <stop stop-color="#96caca" offset=".75781"/>
+   <stop stop-color="#96caca" offset=".76172"/>
+   <stop stop-color="#95caca" offset=".76562"/>
+   <stop stop-color="#94c9c9" offset=".76953"/>
+   <stop stop-color="#94c9c9" offset=".77344"/>
+   <stop stop-color="#93c9c9" offset=".77734"/>
+   <stop stop-color="#93c9c9" offset=".78125"/>
+   <stop stop-color="#92c8c8" offset=".78516"/>
+   <stop stop-color="#91c8c8" offset=".78906"/>
+   <stop stop-color="#91c8c8" offset=".79297"/>
+   <stop stop-color="#90c7c7" offset=".79688"/>
+   <stop stop-color="#90c7c7" offset=".80078"/>
+   <stop stop-color="#8fc7c7" offset=".80469"/>
+   <stop stop-color="#8ec6c6" offset=".80859"/>
+   <stop stop-color="#8ec6c6" offset=".8125"/>
+   <stop stop-color="#8dc6c6" offset=".81641"/>
+   <stop stop-color="#8dc6c6" offset=".82031"/>
+   <stop stop-color="#8cc5c5" offset=".82422"/>
+   <stop stop-color="#8bc5c5" offset=".82812"/>
+   <stop stop-color="#8bc5c5" offset=".83203"/>
+   <stop stop-color="#8ac4c4" offset=".83594"/>
+   <stop stop-color="#89c4c4" offset=".83984"/>
+   <stop stop-color="#89c4c4" offset=".84375"/>
+   <stop stop-color="#88c3c3" offset=".84766"/>
+   <stop stop-color="#88c3c3" offset=".85156"/>
+   <stop stop-color="#87c3c3" offset=".85547"/>
+   <stop stop-color="#86c2c2" offset=".85938"/>
+   <stop stop-color="#86c2c2" offset=".86328"/>
+   <stop stop-color="#85c2c2" offset=".86719"/>
+   <stop stop-color="#85c2c2" offset=".87109"/>
+   <stop stop-color="#84c1c1" offset=".875"/>
+   <stop stop-color="#83c1c1" offset=".87891"/>
+   <stop stop-color="#83c1c1" offset=".88281"/>
+   <stop stop-color="#82c0c0" offset=".88672"/>
+   <stop stop-color="#82c0c0" offset=".89062"/>
+   <stop stop-color="#81c0c0" offset=".89453"/>
+   <stop stop-color="#80bfbf" offset=".89844"/>
+   <stop stop-color="#80bfbf" offset=".90234"/>
+   <stop stop-color="#7fbfbf" offset=".90625"/>
+   <stop stop-color="#7fbfbf" offset=".9375"/>
+   <stop stop-color="#7fbfbf" offset="1"/>
+  </linearGradient>
+  <clipPath id="clip14">
+   <path d="m76 55h35v14h-35z"/>
+  </clipPath>
+  <clipPath id="clip15">
+   <path d="m106.99 55.328h-26.02c-2.1992 0-3.9844 1.7852-3.9844 3.9883v5.6914c0 2.2031 1.7852 3.9883 3.9844 3.9883h26.02c2.1992 0 3.9844-1.7852 3.9844-3.9883v-5.6914c0-2.2031-1.7852-3.9883-3.9844-3.9883z"/>
+  </clipPath>
+  <clipPath id="clip16">
+   <path d="m70.039 87.098 57.137-15.312-9.2578-34.559-57.137 15.312z"/>
+  </clipPath>
+  <linearGradient id="linear4" x2="0" y1="19.259" y2="80.741" gradientTransform="matrix(.57137 -.1531 -.092598 -.34558 70.041 87.096)" gradientUnits="userSpaceOnUse">
+   <stop stop-color="#fff" offset="0"/>
+   <stop stop-color="#fff" offset=".0625"/>
+   <stop stop-color="#fefefe" offset=".09375"/>
+   <stop stop-color="#fefefe" offset=".097656"/>
+   <stop stop-color="#fdfefe" offset=".10156"/>
+   <stop stop-color="#fdfefe" offset=".10547"/>
+   <stop stop-color="#fcfdfd" offset=".10938"/>
+   <stop stop-color="#fbfdfd" offset=".11328"/>
+   <stop stop-color="#fbfdfd" offset=".11719"/>
+   <stop stop-color="#fafcfc" offset=".12109"/>
+   <stop stop-color="#fafcfc" offset=".125"/>
+   <stop stop-color="#f9fcfc" offset=".12891"/>
+   <stop stop-color="#f8fbfb" offset=".13281"/>
+   <stop stop-color="#f8fbfb" offset=".13672"/>
+   <stop stop-color="#f7fbfb" offset=".14062"/>
+   <stop stop-color="#f6fafa" offset=".14453"/>
+   <stop stop-color="#f6fafa" offset=".14844"/>
+   <stop stop-color="#f5fafa" offset=".15234"/>
+   <stop stop-color="#f5fafa" offset=".15625"/>
+   <stop stop-color="#f4f9f9" offset=".16016"/>
+   <stop stop-color="#f3f9f9" offset=".16406"/>
+   <stop stop-color="#f3f9f9" offset=".16797"/>
+   <stop stop-color="#f2f8f8" offset=".17188"/>
+   <stop stop-color="#f2f8f8" offset=".17578"/>
+   <stop stop-color="#f1f8f8" offset=".17969"/>
+   <stop stop-color="#f0f7f7" offset=".18359"/>
+   <stop stop-color="#f0f7f7" offset=".1875"/>
+   <stop stop-color="#eff7f7" offset=".19141"/>
+   <stop stop-color="#eff7f7" offset=".19531"/>
+   <stop stop-color="#eef6f6" offset=".19922"/>
+   <stop stop-color="#edf6f6" offset=".20312"/>
+   <stop stop-color="#edf6f6" offset=".20703"/>
+   <stop stop-color="#ecf5f5" offset=".21094"/>
+   <stop stop-color="#ebf5f5" offset=".21484"/>
+   <stop stop-color="#ebf5f5" offset=".21875"/>
+   <stop stop-color="#eaf4f4" offset=".22266"/>
+   <stop stop-color="#eaf4f4" offset=".22656"/>
+   <stop stop-color="#e9f4f4" offset=".23047"/>
+   <stop stop-color="#e8f3f3" offset=".23438"/>
+   <stop stop-color="#e8f3f3" offset=".23828"/>
+   <stop stop-color="#e7f3f3" offset=".24219"/>
+   <stop stop-color="#e7f3f3" offset=".24609"/>
+   <stop stop-color="#e6f2f2" offset=".25"/>
+   <stop stop-color="#e5f2f2" offset=".25391"/>
+   <stop stop-color="#e5f2f2" offset=".25781"/>
+   <stop stop-color="#e4f1f1" offset=".26172"/>
+   <stop stop-color="#e3f1f1" offset=".26562"/>
+   <stop stop-color="#e3f1f1" offset=".26953"/>
+   <stop stop-color="#e2f0f0" offset=".27344"/>
+   <stop stop-color="#e2f0f0" offset=".27734"/>
+   <stop stop-color="#e1f0f0" offset=".28125"/>
+   <stop stop-color="#e0efef" offset=".28516"/>
+   <stop stop-color="#e0efef" offset=".28906"/>
+   <stop stop-color="#dfefef" offset=".29297"/>
+   <stop stop-color="#dfefef" offset=".29688"/>
+   <stop stop-color="#deeeee" offset=".30078"/>
+   <stop stop-color="#dee" offset=".30469"/>
+   <stop stop-color="#dee" offset=".30859"/>
+   <stop stop-color="#dceded" offset=".3125"/>
+   <stop stop-color="#dceded" offset=".31641"/>
+   <stop stop-color="#dbeded" offset=".32031"/>
+   <stop stop-color="#daecec" offset=".32422"/>
+   <stop stop-color="#daecec" offset=".32812"/>
+   <stop stop-color="#d9ecec" offset=".33203"/>
+   <stop stop-color="#d8ebeb" offset=".33594"/>
+   <stop stop-color="#d8ebeb" offset=".33984"/>
+   <stop stop-color="#d7ebeb" offset=".34375"/>
+   <stop stop-color="#d7ebeb" offset=".34766"/>
+   <stop stop-color="#d6eaea" offset=".35156"/>
+   <stop stop-color="#d5eaea" offset=".35547"/>
+   <stop stop-color="#d5eaea" offset=".35938"/>
+   <stop stop-color="#d4e9e9" offset=".36328"/>
+   <stop stop-color="#d4e9e9" offset=".36719"/>
+   <stop stop-color="#d3e9e9" offset=".37109"/>
+   <stop stop-color="#d2e8e8" offset=".375"/>
+   <stop stop-color="#d2e8e8" offset=".37891"/>
+   <stop stop-color="#d1e8e8" offset=".38281"/>
+   <stop stop-color="#d1e8e8" offset=".38672"/>
+   <stop stop-color="#d0e7e7" offset=".39062"/>
+   <stop stop-color="#cfe7e7" offset=".39453"/>
+   <stop stop-color="#cfe7e7" offset=".39844"/>
+   <stop stop-color="#cee6e6" offset=".40234"/>
+   <stop stop-color="#cde6e6" offset=".40625"/>
+   <stop stop-color="#cde6e6" offset=".41016"/>
+   <stop stop-color="#cce5e5" offset=".41406"/>
+   <stop stop-color="#cce5e5" offset=".41797"/>
+   <stop stop-color="#cbe5e5" offset=".42188"/>
+   <stop stop-color="#cae4e4" offset=".42578"/>
+   <stop stop-color="#cae4e4" offset=".42969"/>
+   <stop stop-color="#c9e4e4" offset=".43359"/>
+   <stop stop-color="#c9e4e4" offset=".4375"/>
+   <stop stop-color="#c8e3e3" offset=".44141"/>
+   <stop stop-color="#c7e3e3" offset=".44531"/>
+   <stop stop-color="#c7e3e3" offset=".44922"/>
+   <stop stop-color="#c6e2e2" offset=".45312"/>
+   <stop stop-color="#c5e2e2" offset=".45703"/>
+   <stop stop-color="#c5e2e2" offset=".46094"/>
+   <stop stop-color="#c4e1e1" offset=".46484"/>
+   <stop stop-color="#c4e1e1" offset=".46875"/>
+   <stop stop-color="#c3e1e1" offset=".47266"/>
+   <stop stop-color="#c2e0e0" offset=".47656"/>
+   <stop stop-color="#c2e0e0" offset=".48047"/>
+   <stop stop-color="#c1e0e0" offset=".48438"/>
+   <stop stop-color="#c1e0e0" offset=".48828"/>
+   <stop stop-color="#c0dfdf" offset=".49219"/>
+   <stop stop-color="#bfdfdf" offset=".49609"/>
+   <stop stop-color="#bfdfdf" offset=".5"/>
+   <stop stop-color="#bedede" offset=".50391"/>
+   <stop stop-color="#bedede" offset=".50781"/>
+   <stop stop-color="#bddede" offset=".51172"/>
+   <stop stop-color="#bcdddd" offset=".51562"/>
+   <stop stop-color="#bcdddd" offset=".51953"/>
+   <stop stop-color="#bdd" offset=".52344"/>
+   <stop stop-color="#badcdc" offset=".52734"/>
+   <stop stop-color="#badcdc" offset=".53125"/>
+   <stop stop-color="#b9dcdc" offset=".53516"/>
+   <stop stop-color="#b9dcdc" offset=".53906"/>
+   <stop stop-color="#b8dbdb" offset=".54297"/>
+   <stop stop-color="#b7dbdb" offset=".54688"/>
+   <stop stop-color="#b7dbdb" offset=".55078"/>
+   <stop stop-color="#b6dada" offset=".55469"/>
+   <stop stop-color="#b6dada" offset=".55859"/>
+   <stop stop-color="#b5dada" offset=".5625"/>
+   <stop stop-color="#b4d9d9" offset=".56641"/>
+   <stop stop-color="#b4d9d9" offset=".57031"/>
+   <stop stop-color="#b3d9d9" offset=".57422"/>
+   <stop stop-color="#b3d9d9" offset=".57812"/>
+   <stop stop-color="#b2d8d8" offset=".58203"/>
+   <stop stop-color="#b1d8d8" offset=".58594"/>
+   <stop stop-color="#b1d8d8" offset=".58984"/>
+   <stop stop-color="#b0d7d7" offset=".59375"/>
+   <stop stop-color="#afd7d7" offset=".59766"/>
+   <stop stop-color="#afd7d7" offset=".60156"/>
+   <stop stop-color="#aed6d6" offset=".60547"/>
+   <stop stop-color="#aed6d6" offset=".60938"/>
+   <stop stop-color="#add6d6" offset=".61328"/>
+   <stop stop-color="#acd5d5" offset=".61719"/>
+   <stop stop-color="#acd5d5" offset=".62109"/>
+   <stop stop-color="#abd5d5" offset=".625"/>
+   <stop stop-color="#abd5d5" offset=".62891"/>
+   <stop stop-color="#aad4d4" offset=".63281"/>
+   <stop stop-color="#a9d4d4" offset=".63672"/>
+   <stop stop-color="#a9d4d4" offset=".64062"/>
+   <stop stop-color="#a8d3d3" offset=".64453"/>
+   <stop stop-color="#a7d3d3" offset=".64844"/>
+   <stop stop-color="#a7d3d3" offset=".65234"/>
+   <stop stop-color="#a6d2d2" offset=".65625"/>
+   <stop stop-color="#a6d2d2" offset=".66016"/>
+   <stop stop-color="#a5d2d2" offset=".66406"/>
+   <stop stop-color="#a4d1d1" offset=".66797"/>
+   <stop stop-color="#a4d1d1" offset=".67188"/>
+   <stop stop-color="#a3d1d1" offset=".67578"/>
+   <stop stop-color="#a3d1d1" offset=".67969"/>
+   <stop stop-color="#a2d0d0" offset=".68359"/>
+   <stop stop-color="#a1d0d0" offset=".6875"/>
+   <stop stop-color="#a1d0d0" offset=".69141"/>
+   <stop stop-color="#a0cfcf" offset=".69531"/>
+   <stop stop-color="#a0cfcf" offset=".69922"/>
+   <stop stop-color="#9fcfcf" offset=".70312"/>
+   <stop stop-color="#9ecece" offset=".70703"/>
+   <stop stop-color="#9ecece" offset=".71094"/>
+   <stop stop-color="#9dcece" offset=".71484"/>
+   <stop stop-color="#9ccdcd" offset=".71875"/>
+   <stop stop-color="#9ccdcd" offset=".72266"/>
+   <stop stop-color="#9bcdcd" offset=".72656"/>
+   <stop stop-color="#9bcdcd" offset=".73047"/>
+   <stop stop-color="#9acccc" offset=".73438"/>
+   <stop stop-color="#9cc" offset=".73828"/>
+   <stop stop-color="#9cc" offset=".74219"/>
+   <stop stop-color="#98cbcb" offset=".74609"/>
+   <stop stop-color="#98cbcb" offset=".75"/>
+   <stop stop-color="#97cbcb" offset=".75391"/>
+   <stop stop-color="#96caca" offset=".75781"/>
+   <stop stop-color="#96caca" offset=".76172"/>
+   <stop stop-color="#95caca" offset=".76562"/>
+   <stop stop-color="#94c9c9" offset=".76953"/>
+   <stop stop-color="#94c9c9" offset=".77344"/>
+   <stop stop-color="#93c9c9" offset=".77734"/>
+   <stop stop-color="#93c9c9" offset=".78125"/>
+   <stop stop-color="#92c8c8" offset=".78516"/>
+   <stop stop-color="#91c8c8" offset=".78906"/>
+   <stop stop-color="#91c8c8" offset=".79297"/>
+   <stop stop-color="#90c7c7" offset=".79688"/>
+   <stop stop-color="#90c7c7" offset=".80078"/>
+   <stop stop-color="#8fc7c7" offset=".80469"/>
+   <stop stop-color="#8ec6c6" offset=".80859"/>
+   <stop stop-color="#8ec6c6" offset=".8125"/>
+   <stop stop-color="#8dc6c6" offset=".81641"/>
+   <stop stop-color="#8dc6c6" offset=".82031"/>
+   <stop stop-color="#8cc5c5" offset=".82422"/>
+   <stop stop-color="#8bc5c5" offset=".82812"/>
+   <stop stop-color="#8bc5c5" offset=".83203"/>
+   <stop stop-color="#8ac4c4" offset=".83594"/>
+   <stop stop-color="#89c4c4" offset=".83984"/>
+   <stop stop-color="#89c4c4" offset=".84375"/>
+   <stop stop-color="#88c3c3" offset=".84766"/>
+   <stop stop-color="#88c3c3" offset=".85156"/>
+   <stop stop-color="#87c3c3" offset=".85547"/>
+   <stop stop-color="#86c2c2" offset=".85938"/>
+   <stop stop-color="#86c2c2" offset=".86328"/>
+   <stop stop-color="#85c2c2" offset=".86719"/>
+   <stop stop-color="#85c2c2" offset=".87109"/>
+   <stop stop-color="#84c1c1" offset=".875"/>
+   <stop stop-color="#83c1c1" offset=".87891"/>
+   <stop stop-color="#83c1c1" offset=".88281"/>
+   <stop stop-color="#82c0c0" offset=".88672"/>
+   <stop stop-color="#82c0c0" offset=".89062"/>
+   <stop stop-color="#81c0c0" offset=".89453"/>
+   <stop stop-color="#80bfbf" offset=".89844"/>
+   <stop stop-color="#80bfbf" offset=".90234"/>
+   <stop stop-color="#7fbfbf" offset=".90625"/>
+   <stop stop-color="#7fbfbf" offset=".9375"/>
+   <stop stop-color="#7fbfbf" offset="1"/>
+  </linearGradient>
+  <clipPath id="clip17">
+   <path d="m11 112h28v14h-28z"/>
+  </clipPath>
+  <clipPath id="clip18">
+   <path d="m34.965 112.02h-19.016c-2.1992 0-3.9844 1.7852-3.9844 3.9844v5.6953c0 2.1992 1.7852 3.9844 3.9844 3.9844h19.016c2.2031 0 3.9844-1.7852 3.9844-3.9844v-5.6953c0-2.1992-1.7812-3.9844-3.9844-3.9844z"/>
+  </clipPath>
+  <clipPath id="clip19">
+   <path d="m6.4531 140.94 46.508-12.461-8.4961-31.711-46.508 12.461z"/>
+  </clipPath>
+  <linearGradient id="linear5" x2="0" y1="19.261" y2="80.739" gradientTransform="matrix(.46509 -.12462 -.084971 -.31712 6.4522 140.94)" gradientUnits="userSpaceOnUse">
+   <stop stop-color="#fff" offset="0"/>
+   <stop stop-color="#fff" offset=".0625"/>
+   <stop stop-color="#fefefe" offset=".09375"/>
+   <stop stop-color="#fefefe" offset=".097656"/>
+   <stop stop-color="#fdfefe" offset=".10156"/>
+   <stop stop-color="#fdfefe" offset=".10547"/>
+   <stop stop-color="#fcfdfd" offset=".10938"/>
+   <stop stop-color="#fbfdfd" offset=".11328"/>
+   <stop stop-color="#fbfdfd" offset=".11719"/>
+   <stop stop-color="#fafcfc" offset=".12109"/>
+   <stop stop-color="#fafcfc" offset=".125"/>
+   <stop stop-color="#f9fcfc" offset=".12891"/>
+   <stop stop-color="#f8fbfb" offset=".13281"/>
+   <stop stop-color="#f8fbfb" offset=".13672"/>
+   <stop stop-color="#f7fbfb" offset=".14062"/>
+   <stop stop-color="#f6fafa" offset=".14453"/>
+   <stop stop-color="#f6fafa" offset=".14844"/>
+   <stop stop-color="#f5fafa" offset=".15234"/>
+   <stop stop-color="#f5fafa" offset=".15625"/>
+   <stop stop-color="#f4f9f9" offset=".16016"/>
+   <stop stop-color="#f3f9f9" offset=".16406"/>
+   <stop stop-color="#f3f9f9" offset=".16797"/>
+   <stop stop-color="#f2f8f8" offset=".17188"/>
+   <stop stop-color="#f2f8f8" offset=".17578"/>
+   <stop stop-color="#f1f8f8" offset=".17969"/>
+   <stop stop-color="#f0f7f7" offset=".18359"/>
+   <stop stop-color="#f0f7f7" offset=".1875"/>
+   <stop stop-color="#eff7f7" offset=".19141"/>
+   <stop stop-color="#eff7f7" offset=".19531"/>
+   <stop stop-color="#eef6f6" offset=".19922"/>
+   <stop stop-color="#edf6f6" offset=".20312"/>
+   <stop stop-color="#edf6f6" offset=".20703"/>
+   <stop stop-color="#ecf5f5" offset=".21094"/>
+   <stop stop-color="#ebf5f5" offset=".21484"/>
+   <stop stop-color="#ebf5f5" offset=".21875"/>
+   <stop stop-color="#eaf4f4" offset=".22266"/>
+   <stop stop-color="#eaf4f4" offset=".22656"/>
+   <stop stop-color="#e9f4f4" offset=".23047"/>
+   <stop stop-color="#e8f3f3" offset=".23438"/>
+   <stop stop-color="#e8f3f3" offset=".23828"/>
+   <stop stop-color="#e7f3f3" offset=".24219"/>
+   <stop stop-color="#e7f3f3" offset=".24609"/>
+   <stop stop-color="#e6f2f2" offset=".25"/>
+   <stop stop-color="#e5f2f2" offset=".25391"/>
+   <stop stop-color="#e5f2f2" offset=".25781"/>
+   <stop stop-color="#e4f1f1" offset=".26172"/>
+   <stop stop-color="#e3f1f1" offset=".26562"/>
+   <stop stop-color="#e3f1f1" offset=".26953"/>
+   <stop stop-color="#e2f0f0" offset=".27344"/>
+   <stop stop-color="#e2f0f0" offset=".27734"/>
+   <stop stop-color="#e1f0f0" offset=".28125"/>
+   <stop stop-color="#e0efef" offset=".28516"/>
+   <stop stop-color="#e0efef" offset=".28906"/>
+   <stop stop-color="#dfefef" offset=".29297"/>
+   <stop stop-color="#dfefef" offset=".29688"/>
+   <stop stop-color="#deeeee" offset=".30078"/>
+   <stop stop-color="#dee" offset=".30469"/>
+   <stop stop-color="#dee" offset=".30859"/>
+   <stop stop-color="#dceded" offset=".3125"/>
+   <stop stop-color="#dceded" offset=".31641"/>
+   <stop stop-color="#dbeded" offset=".32031"/>
+   <stop stop-color="#daecec" offset=".32422"/>
+   <stop stop-color="#daecec" offset=".32812"/>
+   <stop stop-color="#d9ecec" offset=".33203"/>
+   <stop stop-color="#d8ebeb" offset=".33594"/>
+   <stop stop-color="#d8ebeb" offset=".33984"/>
+   <stop stop-color="#d7ebeb" offset=".34375"/>
+   <stop stop-color="#d7ebeb" offset=".34766"/>
+   <stop stop-color="#d6eaea" offset=".35156"/>
+   <stop stop-color="#d5eaea" offset=".35547"/>
+   <stop stop-color="#d5eaea" offset=".35938"/>
+   <stop stop-color="#d4e9e9" offset=".36328"/>
+   <stop stop-color="#d4e9e9" offset=".36719"/>
+   <stop stop-color="#d3e9e9" offset=".37109"/>
+   <stop stop-color="#d2e8e8" offset=".375"/>
+   <stop stop-color="#d2e8e8" offset=".37891"/>
+   <stop stop-color="#d1e8e8" offset=".38281"/>
+   <stop stop-color="#d1e8e8" offset=".38672"/>
+   <stop stop-color="#d0e7e7" offset=".39062"/>
+   <stop stop-color="#cfe7e7" offset=".39453"/>
+   <stop stop-color="#cfe7e7" offset=".39844"/>
+   <stop stop-color="#cee6e6" offset=".40234"/>
+   <stop stop-color="#cde6e6" offset=".40625"/>
+   <stop stop-color="#cde6e6" offset=".41016"/>
+   <stop stop-color="#cce5e5" offset=".41406"/>
+   <stop stop-color="#cce5e5" offset=".41797"/>
+   <stop stop-color="#cbe5e5" offset=".42188"/>
+   <stop stop-color="#cae4e4" offset=".42578"/>
+   <stop stop-color="#cae4e4" offset=".42969"/>
+   <stop stop-color="#c9e4e4" offset=".43359"/>
+   <stop stop-color="#c9e4e4" offset=".4375"/>
+   <stop stop-color="#c8e3e3" offset=".44141"/>
+   <stop stop-color="#c7e3e3" offset=".44531"/>
+   <stop stop-color="#c7e3e3" offset=".44922"/>
+   <stop stop-color="#c6e2e2" offset=".45312"/>
+   <stop stop-color="#c5e2e2" offset=".45703"/>
+   <stop stop-color="#c5e2e2" offset=".46094"/>
+   <stop stop-color="#c4e1e1" offset=".46484"/>
+   <stop stop-color="#c4e1e1" offset=".46875"/>
+   <stop stop-color="#c3e1e1" offset=".47266"/>
+   <stop stop-color="#c2e0e0" offset=".47656"/>
+   <stop stop-color="#c2e0e0" offset=".48047"/>
+   <stop stop-color="#c1e0e0" offset=".48438"/>
+   <stop stop-color="#c1e0e0" offset=".48828"/>
+   <stop stop-color="#c0dfdf" offset=".49219"/>
+   <stop stop-color="#bfdfdf" offset=".49609"/>
+   <stop stop-color="#bfdfdf" offset=".5"/>
+   <stop stop-color="#bedede" offset=".50391"/>
+   <stop stop-color="#bedede" offset=".50781"/>
+   <stop stop-color="#bddede" offset=".51172"/>
+   <stop stop-color="#bcdddd" offset=".51562"/>
+   <stop stop-color="#bcdddd" offset=".51953"/>
+   <stop stop-color="#bdd" offset=".52344"/>
+   <stop stop-color="#badcdc" offset=".52734"/>
+   <stop stop-color="#badcdc" offset=".53125"/>
+   <stop stop-color="#b9dcdc" offset=".53516"/>
+   <stop stop-color="#b9dcdc" offset=".53906"/>
+   <stop stop-color="#b8dbdb" offset=".54297"/>
+   <stop stop-color="#b7dbdb" offset=".54688"/>
+   <stop stop-color="#b7dbdb" offset=".55078"/>
+   <stop stop-color="#b6dada" offset=".55469"/>
+   <stop stop-color="#b6dada" offset=".55859"/>
+   <stop stop-color="#b5dada" offset=".5625"/>
+   <stop stop-color="#b4d9d9" offset=".56641"/>
+   <stop stop-color="#b4d9d9" offset=".57031"/>
+   <stop stop-color="#b3d9d9" offset=".57422"/>
+   <stop stop-color="#b3d9d9" offset=".57812"/>
+   <stop stop-color="#b2d8d8" offset=".58203"/>
+   <stop stop-color="#b1d8d8" offset=".58594"/>
+   <stop stop-color="#b1d8d8" offset=".58984"/>
+   <stop stop-color="#b0d7d7" offset=".59375"/>
+   <stop stop-color="#afd7d7" offset=".59766"/>
+   <stop stop-color="#afd7d7" offset=".60156"/>
+   <stop stop-color="#aed6d6" offset=".60547"/>
+   <stop stop-color="#aed6d6" offset=".60938"/>
+   <stop stop-color="#add6d6" offset=".61328"/>
+   <stop stop-color="#acd5d5" offset=".61719"/>
+   <stop stop-color="#acd5d5" offset=".62109"/>
+   <stop stop-color="#abd5d5" offset=".625"/>
+   <stop stop-color="#abd5d5" offset=".62891"/>
+   <stop stop-color="#aad4d4" offset=".63281"/>
+   <stop stop-color="#a9d4d4" offset=".63672"/>
+   <stop stop-color="#a9d4d4" offset=".64062"/>
+   <stop stop-color="#a8d3d3" offset=".64453"/>
+   <stop stop-color="#a7d3d3" offset=".64844"/>
+   <stop stop-color="#a7d3d3" offset=".65234"/>
+   <stop stop-color="#a6d2d2" offset=".65625"/>
+   <stop stop-color="#a6d2d2" offset=".66016"/>
+   <stop stop-color="#a5d2d2" offset=".66406"/>
+   <stop stop-color="#a4d1d1" offset=".66797"/>
+   <stop stop-color="#a4d1d1" offset=".67188"/>
+   <stop stop-color="#a3d1d1" offset=".67578"/>
+   <stop stop-color="#a3d1d1" offset=".67969"/>
+   <stop stop-color="#a2d0d0" offset=".68359"/>
+   <stop stop-color="#a1d0d0" offset=".6875"/>
+   <stop stop-color="#a1d0d0" offset=".69141"/>
+   <stop stop-color="#a0cfcf" offset=".69531"/>
+   <stop stop-color="#a0cfcf" offset=".69922"/>
+   <stop stop-color="#9fcfcf" offset=".70312"/>
+   <stop stop-color="#9ecece" offset=".70703"/>
+   <stop stop-color="#9ecece" offset=".71094"/>
+   <stop stop-color="#9dcece" offset=".71484"/>
+   <stop stop-color="#9ccdcd" offset=".71875"/>
+   <stop stop-color="#9ccdcd" offset=".72266"/>
+   <stop stop-color="#9bcdcd" offset=".72656"/>
+   <stop stop-color="#9bcdcd" offset=".73047"/>
+   <stop stop-color="#9acccc" offset=".73438"/>
+   <stop stop-color="#9cc" offset=".73828"/>
+   <stop stop-color="#9cc" offset=".74219"/>
+   <stop stop-color="#98cbcb" offset=".74609"/>
+   <stop stop-color="#98cbcb" offset=".75"/>
+   <stop stop-color="#97cbcb" offset=".75391"/>
+   <stop stop-color="#96caca" offset=".75781"/>
+   <stop stop-color="#96caca" offset=".76172"/>
+   <stop stop-color="#95caca" offset=".76562"/>
+   <stop stop-color="#94c9c9" offset=".76953"/>
+   <stop stop-color="#94c9c9" offset=".77344"/>
+   <stop stop-color="#93c9c9" offset=".77734"/>
+   <stop stop-color="#93c9c9" offset=".78125"/>
+   <stop stop-color="#92c8c8" offset=".78516"/>
+   <stop stop-color="#91c8c8" offset=".78906"/>
+   <stop stop-color="#91c8c8" offset=".79297"/>
+   <stop stop-color="#90c7c7" offset=".79688"/>
+   <stop stop-color="#90c7c7" offset=".80078"/>
+   <stop stop-color="#8fc7c7" offset=".80469"/>
+   <stop stop-color="#8ec6c6" offset=".80859"/>
+   <stop stop-color="#8ec6c6" offset=".8125"/>
+   <stop stop-color="#8dc6c6" offset=".81641"/>
+   <stop stop-color="#8dc6c6" offset=".82031"/>
+   <stop stop-color="#8cc5c5" offset=".82422"/>
+   <stop stop-color="#8bc5c5" offset=".82812"/>
+   <stop stop-color="#8bc5c5" offset=".83203"/>
+   <stop stop-color="#8ac4c4" offset=".83594"/>
+   <stop stop-color="#89c4c4" offset=".83984"/>
+   <stop stop-color="#89c4c4" offset=".84375"/>
+   <stop stop-color="#88c3c3" offset=".84766"/>
+   <stop stop-color="#88c3c3" offset=".85156"/>
+   <stop stop-color="#87c3c3" offset=".85547"/>
+   <stop stop-color="#86c2c2" offset=".85938"/>
+   <stop stop-color="#86c2c2" offset=".86328"/>
+   <stop stop-color="#85c2c2" offset=".86719"/>
+   <stop stop-color="#85c2c2" offset=".87109"/>
+   <stop stop-color="#84c1c1" offset=".875"/>
+   <stop stop-color="#83c1c1" offset=".87891"/>
+   <stop stop-color="#83c1c1" offset=".88281"/>
+   <stop stop-color="#82c0c0" offset=".88672"/>
+   <stop stop-color="#82c0c0" offset=".89062"/>
+   <stop stop-color="#81c0c0" offset=".89453"/>
+   <stop stop-color="#80bfbf" offset=".89844"/>
+   <stop stop-color="#80bfbf" offset=".90234"/>
+   <stop stop-color="#7fbfbf" offset=".90625"/>
+   <stop stop-color="#7fbfbf" offset=".9375"/>
+   <stop stop-color="#7fbfbf" offset="1"/>
+  </linearGradient>
+  <clipPath id="clip20">
+   <path d="m48 111h35v16h-35z"/>
+  </clipPath>
+  <clipPath id="clip21">
+   <path d="m78.812 111.25h-26.176c-2.2031 0-3.9883 1.7852-3.9883 3.9844v7.25c0 2.1992 1.7852 3.9844 3.9883 3.9844h26.176c2.2031 0 3.9844-1.7852 3.9844-3.9844v-7.25c0-2.1992-1.7812-3.9844-3.9844-3.9844z"/>
+  </clipPath>
+  <clipPath id="clip22">
+   <path d="m41.672 145.12 58.012-15.543-9.9102-36.98-58.008 15.543z"/>
+  </clipPath>
+  <linearGradient id="linear6" x2="0" y1="19.26" y2="80.74" gradientTransform="matrix(.58011 -.15544 -.099092 -.36982 41.673 145.12)" gradientUnits="userSpaceOnUse">
+   <stop stop-color="#fff" offset="0"/>
+   <stop stop-color="#fff" offset=".0625"/>
+   <stop stop-color="#fefefe" offset=".09375"/>
+   <stop stop-color="#fefefe" offset=".097656"/>
+   <stop stop-color="#fdfefe" offset=".10156"/>
+   <stop stop-color="#fdfefe" offset=".10547"/>
+   <stop stop-color="#fcfdfd" offset=".10938"/>
+   <stop stop-color="#fbfdfd" offset=".11328"/>
+   <stop stop-color="#fbfdfd" offset=".11719"/>
+   <stop stop-color="#fafcfc" offset=".12109"/>
+   <stop stop-color="#fafcfc" offset=".125"/>
+   <stop stop-color="#f9fcfc" offset=".12891"/>
+   <stop stop-color="#f8fbfb" offset=".13281"/>
+   <stop stop-color="#f8fbfb" offset=".13672"/>
+   <stop stop-color="#f7fbfb" offset=".14062"/>
+   <stop stop-color="#f6fafa" offset=".14453"/>
+   <stop stop-color="#f6fafa" offset=".14844"/>
+   <stop stop-color="#f5fafa" offset=".15234"/>
+   <stop stop-color="#f5fafa" offset=".15625"/>
+   <stop stop-color="#f4f9f9" offset=".16016"/>
+   <stop stop-color="#f3f9f9" offset=".16406"/>
+   <stop stop-color="#f3f9f9" offset=".16797"/>
+   <stop stop-color="#f2f8f8" offset=".17188"/>
+   <stop stop-color="#f2f8f8" offset=".17578"/>
+   <stop stop-color="#f1f8f8" offset=".17969"/>
+   <stop stop-color="#f0f7f7" offset=".18359"/>
+   <stop stop-color="#f0f7f7" offset=".1875"/>
+   <stop stop-color="#eff7f7" offset=".19141"/>
+   <stop stop-color="#eff7f7" offset=".19531"/>
+   <stop stop-color="#eef6f6" offset=".19922"/>
+   <stop stop-color="#edf6f6" offset=".20312"/>
+   <stop stop-color="#edf6f6" offset=".20703"/>
+   <stop stop-color="#ecf5f5" offset=".21094"/>
+   <stop stop-color="#ebf5f5" offset=".21484"/>
+   <stop stop-color="#ebf5f5" offset=".21875"/>
+   <stop stop-color="#eaf4f4" offset=".22266"/>
+   <stop stop-color="#eaf4f4" offset=".22656"/>
+   <stop stop-color="#e9f4f4" offset=".23047"/>
+   <stop stop-color="#e8f3f3" offset=".23438"/>
+   <stop stop-color="#e8f3f3" offset=".23828"/>
+   <stop stop-color="#e7f3f3" offset=".24219"/>
+   <stop stop-color="#e7f3f3" offset=".24609"/>
+   <stop stop-color="#e6f2f2" offset=".25"/>
+   <stop stop-color="#e5f2f2" offset=".25391"/>
+   <stop stop-color="#e5f2f2" offset=".25781"/>
+   <stop stop-color="#e4f1f1" offset=".26172"/>
+   <stop stop-color="#e3f1f1" offset=".26562"/>
+   <stop stop-color="#e3f1f1" offset=".26953"/>
+   <stop stop-color="#e2f0f0" offset=".27344"/>
+   <stop stop-color="#e2f0f0" offset=".27734"/>
+   <stop stop-color="#e1f0f0" offset=".28125"/>
+   <stop stop-color="#e0efef" offset=".28516"/>
+   <stop stop-color="#e0efef" offset=".28906"/>
+   <stop stop-color="#dfefef" offset=".29297"/>
+   <stop stop-color="#dfefef" offset=".29688"/>
+   <stop stop-color="#deeeee" offset=".30078"/>
+   <stop stop-color="#dee" offset=".30469"/>
+   <stop stop-color="#dee" offset=".30859"/>
+   <stop stop-color="#dceded" offset=".3125"/>
+   <stop stop-color="#dceded" offset=".31641"/>
+   <stop stop-color="#dbeded" offset=".32031"/>
+   <stop stop-color="#daecec" offset=".32422"/>
+   <stop stop-color="#daecec" offset=".32812"/>
+   <stop stop-color="#d9ecec" offset=".33203"/>
+   <stop stop-color="#d8ebeb" offset=".33594"/>
+   <stop stop-color="#d8ebeb" offset=".33984"/>
+   <stop stop-color="#d7ebeb" offset=".34375"/>
+   <stop stop-color="#d7ebeb" offset=".34766"/>
+   <stop stop-color="#d6eaea" offset=".35156"/>
+   <stop stop-color="#d5eaea" offset=".35547"/>
+   <stop stop-color="#d5eaea" offset=".35938"/>
+   <stop stop-color="#d4e9e9" offset=".36328"/>
+   <stop stop-color="#d4e9e9" offset=".36719"/>
+   <stop stop-color="#d3e9e9" offset=".37109"/>
+   <stop stop-color="#d2e8e8" offset=".375"/>
+   <stop stop-color="#d2e8e8" offset=".37891"/>
+   <stop stop-color="#d1e8e8" offset=".38281"/>
+   <stop stop-color="#d1e8e8" offset=".38672"/>
+   <stop stop-color="#d0e7e7" offset=".39062"/>
+   <stop stop-color="#cfe7e7" offset=".39453"/>
+   <stop stop-color="#cfe7e7" offset=".39844"/>
+   <stop stop-color="#cee6e6" offset=".40234"/>
+   <stop stop-color="#cde6e6" offset=".40625"/>
+   <stop stop-color="#cde6e6" offset=".41016"/>
+   <stop stop-color="#cce5e5" offset=".41406"/>
+   <stop stop-color="#cce5e5" offset=".41797"/>
+   <stop stop-color="#cbe5e5" offset=".42188"/>
+   <stop stop-color="#cae4e4" offset=".42578"/>
+   <stop stop-color="#cae4e4" offset=".42969"/>
+   <stop stop-color="#c9e4e4" offset=".43359"/>
+   <stop stop-color="#c9e4e4" offset=".4375"/>
+   <stop stop-color="#c8e3e3" offset=".44141"/>
+   <stop stop-color="#c7e3e3" offset=".44531"/>
+   <stop stop-color="#c7e3e3" offset=".44922"/>
+   <stop stop-color="#c6e2e2" offset=".45312"/>
+   <stop stop-color="#c5e2e2" offset=".45703"/>
+   <stop stop-color="#c5e2e2" offset=".46094"/>
+   <stop stop-color="#c4e1e1" offset=".46484"/>
+   <stop stop-color="#c4e1e1" offset=".46875"/>
+   <stop stop-color="#c3e1e1" offset=".47266"/>
+   <stop stop-color="#c2e0e0" offset=".47656"/>
+   <stop stop-color="#c2e0e0" offset=".48047"/>
+   <stop stop-color="#c1e0e0" offset=".48438"/>
+   <stop stop-color="#c1e0e0" offset=".48828"/>
+   <stop stop-color="#c0dfdf" offset=".49219"/>
+   <stop stop-color="#bfdfdf" offset=".49609"/>
+   <stop stop-color="#bfdfdf" offset=".5"/>
+   <stop stop-color="#bedede" offset=".50391"/>
+   <stop stop-color="#bedede" offset=".50781"/>
+   <stop stop-color="#bddede" offset=".51172"/>
+   <stop stop-color="#bcdddd" offset=".51562"/>
+   <stop stop-color="#bcdddd" offset=".51953"/>
+   <stop stop-color="#bdd" offset=".52344"/>
+   <stop stop-color="#badcdc" offset=".52734"/>
+   <stop stop-color="#badcdc" offset=".53125"/>
+   <stop stop-color="#b9dcdc" offset=".53516"/>
+   <stop stop-color="#b9dcdc" offset=".53906"/>
+   <stop stop-color="#b8dbdb" offset=".54297"/>
+   <stop stop-color="#b7dbdb" offset=".54688"/>
+   <stop stop-color="#b7dbdb" offset=".55078"/>
+   <stop stop-color="#b6dada" offset=".55469"/>
+   <stop stop-color="#b6dada" offset=".55859"/>
+   <stop stop-color="#b5dada" offset=".5625"/>
+   <stop stop-color="#b4d9d9" offset=".56641"/>
+   <stop stop-color="#b4d9d9" offset=".57031"/>
+   <stop stop-color="#b3d9d9" offset=".57422"/>
+   <stop stop-color="#b3d9d9" offset=".57812"/>
+   <stop stop-color="#b2d8d8" offset=".58203"/>
+   <stop stop-color="#b1d8d8" offset=".58594"/>
+   <stop stop-color="#b1d8d8" offset=".58984"/>
+   <stop stop-color="#b0d7d7" offset=".59375"/>
+   <stop stop-color="#afd7d7" offset=".59766"/>
+   <stop stop-color="#afd7d7" offset=".60156"/>
+   <stop stop-color="#aed6d6" offset=".60547"/>
+   <stop stop-color="#aed6d6" offset=".60938"/>
+   <stop stop-color="#add6d6" offset=".61328"/>
+   <stop stop-color="#acd5d5" offset=".61719"/>
+   <stop stop-color="#acd5d5" offset=".62109"/>
+   <stop stop-color="#abd5d5" offset=".625"/>
+   <stop stop-color="#abd5d5" offset=".62891"/>
+   <stop stop-color="#aad4d4" offset=".63281"/>
+   <stop stop-color="#a9d4d4" offset=".63672"/>
+   <stop stop-color="#a9d4d4" offset=".64062"/>
+   <stop stop-color="#a8d3d3" offset=".64453"/>
+   <stop stop-color="#a7d3d3" offset=".64844"/>
+   <stop stop-color="#a7d3d3" offset=".65234"/>
+   <stop stop-color="#a6d2d2" offset=".65625"/>
+   <stop stop-color="#a6d2d2" offset=".66016"/>
+   <stop stop-color="#a5d2d2" offset=".66406"/>
+   <stop stop-color="#a4d1d1" offset=".66797"/>
+   <stop stop-color="#a4d1d1" offset=".67188"/>
+   <stop stop-color="#a3d1d1" offset=".67578"/>
+   <stop stop-color="#a3d1d1" offset=".67969"/>
+   <stop stop-color="#a2d0d0" offset=".68359"/>
+   <stop stop-color="#a1d0d0" offset=".6875"/>
+   <stop stop-color="#a1d0d0" offset=".69141"/>
+   <stop stop-color="#a0cfcf" offset=".69531"/>
+   <stop stop-color="#a0cfcf" offset=".69922"/>
+   <stop stop-color="#9fcfcf" offset=".70312"/>
+   <stop stop-color="#9ecece" offset=".70703"/>
+   <stop stop-color="#9ecece" offset=".71094"/>
+   <stop stop-color="#9dcece" offset=".71484"/>
+   <stop stop-color="#9ccdcd" offset=".71875"/>
+   <stop stop-color="#9ccdcd" offset=".72266"/>
+   <stop stop-color="#9bcdcd" offset=".72656"/>
+   <stop stop-color="#9bcdcd" offset=".73047"/>
+   <stop stop-color="#9acccc" offset=".73438"/>
+   <stop stop-color="#9cc" offset=".73828"/>
+   <stop stop-color="#9cc" offset=".74219"/>
+   <stop stop-color="#98cbcb" offset=".74609"/>
+   <stop stop-color="#98cbcb" offset=".75"/>
+   <stop stop-color="#97cbcb" offset=".75391"/>
+   <stop stop-color="#96caca" offset=".75781"/>
+   <stop stop-color="#96caca" offset=".76172"/>
+   <stop stop-color="#95caca" offset=".76562"/>
+   <stop stop-color="#94c9c9" offset=".76953"/>
+   <stop stop-color="#94c9c9" offset=".77344"/>
+   <stop stop-color="#93c9c9" offset=".77734"/>
+   <stop stop-color="#93c9c9" offset=".78125"/>
+   <stop stop-color="#92c8c8" offset=".78516"/>
+   <stop stop-color="#91c8c8" offset=".78906"/>
+   <stop stop-color="#91c8c8" offset=".79297"/>
+   <stop stop-color="#90c7c7" offset=".79688"/>
+   <stop stop-color="#90c7c7" offset=".80078"/>
+   <stop stop-color="#8fc7c7" offset=".80469"/>
+   <stop stop-color="#8ec6c6" offset=".80859"/>
+   <stop stop-color="#8ec6c6" offset=".8125"/>
+   <stop stop-color="#8dc6c6" offset=".81641"/>
+   <stop stop-color="#8dc6c6" offset=".82031"/>
+   <stop stop-color="#8cc5c5" offset=".82422"/>
+   <stop stop-color="#8bc5c5" offset=".82812"/>
+   <stop stop-color="#8bc5c5" offset=".83203"/>
+   <stop stop-color="#8ac4c4" offset=".83594"/>
+   <stop stop-color="#89c4c4" offset=".83984"/>
+   <stop stop-color="#89c4c4" offset=".84375"/>
+   <stop stop-color="#88c3c3" offset=".84766"/>
+   <stop stop-color="#88c3c3" offset=".85156"/>
+   <stop stop-color="#87c3c3" offset=".85547"/>
+   <stop stop-color="#86c2c2" offset=".85938"/>
+   <stop stop-color="#86c2c2" offset=".86328"/>
+   <stop stop-color="#85c2c2" offset=".86719"/>
+   <stop stop-color="#85c2c2" offset=".87109"/>
+   <stop stop-color="#84c1c1" offset=".875"/>
+   <stop stop-color="#83c1c1" offset=".87891"/>
+   <stop stop-color="#83c1c1" offset=".88281"/>
+   <stop stop-color="#82c0c0" offset=".88672"/>
+   <stop stop-color="#82c0c0" offset=".89062"/>
+   <stop stop-color="#81c0c0" offset=".89453"/>
+   <stop stop-color="#80bfbf" offset=".89844"/>
+   <stop stop-color="#80bfbf" offset=".90234"/>
+   <stop stop-color="#7fbfbf" offset=".90625"/>
+   <stop stop-color="#7fbfbf" offset=".9375"/>
+   <stop stop-color="#7fbfbf" offset="1"/>
+  </linearGradient>
+  <clipPath id="clip23">
+   <path d="m92 110h60v18h-60z"/>
+  </clipPath>
+  <clipPath id="clip24">
+   <path d="m147.98 110.55h-51.504c-2.1992 0-3.9844 1.7812-3.9844 3.9844v8.6328c0 2.1992 1.7852 3.9844 3.9844 3.9844h51.504c2.2031 0 3.9883-1.7852 3.9883-3.9844v-8.6328c0-2.2031-1.7852-3.9844-3.9883-3.9844z"/>
+  </clipPath>
+  <clipPath id="clip25">
+   <path d="m80.348 156.54 97.008-25.992-13.234-49.383-97.008 25.992z"/>
+  </clipPath>
+  <linearGradient id="linear7" x2="0" y1="19.26" y2="80.74" gradientTransform="matrix(.97007 -.25993 -.13232 -.49381 80.346 156.54)" gradientUnits="userSpaceOnUse">
+   <stop stop-color="#fff" offset="0"/>
+   <stop stop-color="#fff" offset=".0625"/>
+   <stop stop-color="#fefefe" offset=".09375"/>
+   <stop stop-color="#fefefe" offset=".097656"/>
+   <stop stop-color="#fdfefe" offset=".10156"/>
+   <stop stop-color="#fdfefe" offset=".10547"/>
+   <stop stop-color="#fcfdfd" offset=".10938"/>
+   <stop stop-color="#fbfdfd" offset=".11328"/>
+   <stop stop-color="#fbfdfd" offset=".11719"/>
+   <stop stop-color="#fafcfc" offset=".12109"/>
+   <stop stop-color="#fafcfc" offset=".125"/>
+   <stop stop-color="#f9fcfc" offset=".12891"/>
+   <stop stop-color="#f8fbfb" offset=".13281"/>
+   <stop stop-color="#f8fbfb" offset=".13672"/>
+   <stop stop-color="#f7fbfb" offset=".14062"/>
+   <stop stop-color="#f6fafa" offset=".14453"/>
+   <stop stop-color="#f6fafa" offset=".14844"/>
+   <stop stop-color="#f5fafa" offset=".15234"/>
+   <stop stop-color="#f5fafa" offset=".15625"/>
+   <stop stop-color="#f4f9f9" offset=".16016"/>
+   <stop stop-color="#f3f9f9" offset=".16406"/>
+   <stop stop-color="#f3f9f9" offset=".16797"/>
+   <stop stop-color="#f2f8f8" offset=".17188"/>
+   <stop stop-color="#f2f8f8" offset=".17578"/>
+   <stop stop-color="#f1f8f8" offset=".17969"/>
+   <stop stop-color="#f0f7f7" offset=".18359"/>
+   <stop stop-color="#f0f7f7" offset=".1875"/>
+   <stop stop-color="#eff7f7" offset=".19141"/>
+   <stop stop-color="#eff7f7" offset=".19531"/>
+   <stop stop-color="#eef6f6" offset=".19922"/>
+   <stop stop-color="#edf6f6" offset=".20312"/>
+   <stop stop-color="#edf6f6" offset=".20703"/>
+   <stop stop-color="#ecf5f5" offset=".21094"/>
+   <stop stop-color="#ebf5f5" offset=".21484"/>
+   <stop stop-color="#ebf5f5" offset=".21875"/>
+   <stop stop-color="#eaf4f4" offset=".22266"/>
+   <stop stop-color="#eaf4f4" offset=".22656"/>
+   <stop stop-color="#e9f4f4" offset=".23047"/>
+   <stop stop-color="#e8f3f3" offset=".23438"/>
+   <stop stop-color="#e8f3f3" offset=".23828"/>
+   <stop stop-color="#e7f3f3" offset=".24219"/>
+   <stop stop-color="#e7f3f3" offset=".24609"/>
+   <stop stop-color="#e6f2f2" offset=".25"/>
+   <stop stop-color="#e5f2f2" offset=".25391"/>
+   <stop stop-color="#e5f2f2" offset=".25781"/>
+   <stop stop-color="#e4f1f1" offset=".26172"/>
+   <stop stop-color="#e3f1f1" offset=".26562"/>
+   <stop stop-color="#e3f1f1" offset=".26953"/>
+   <stop stop-color="#e2f0f0" offset=".27344"/>
+   <stop stop-color="#e2f0f0" offset=".27734"/>
+   <stop stop-color="#e1f0f0" offset=".28125"/>
+   <stop stop-color="#e0efef" offset=".28516"/>
+   <stop stop-color="#e0efef" offset=".28906"/>
+   <stop stop-color="#dfefef" offset=".29297"/>
+   <stop stop-color="#dfefef" offset=".29688"/>
+   <stop stop-color="#deeeee" offset=".30078"/>
+   <stop stop-color="#dee" offset=".30469"/>
+   <stop stop-color="#dee" offset=".30859"/>
+   <stop stop-color="#dceded" offset=".3125"/>
+   <stop stop-color="#dceded" offset=".31641"/>
+   <stop stop-color="#dbeded" offset=".32031"/>
+   <stop stop-color="#daecec" offset=".32422"/>
+   <stop stop-color="#daecec" offset=".32812"/>
+   <stop stop-color="#d9ecec" offset=".33203"/>
+   <stop stop-color="#d8ebeb" offset=".33594"/>
+   <stop stop-color="#d8ebeb" offset=".33984"/>
+   <stop stop-color="#d7ebeb" offset=".34375"/>
+   <stop stop-color="#d7ebeb" offset=".34766"/>
+   <stop stop-color="#d6eaea" offset=".35156"/>
+   <stop stop-color="#d5eaea" offset=".35547"/>
+   <stop stop-color="#d5eaea" offset=".35938"/>
+   <stop stop-color="#d4e9e9" offset=".36328"/>
+   <stop stop-color="#d4e9e9" offset=".36719"/>
+   <stop stop-color="#d3e9e9" offset=".37109"/>
+   <stop stop-color="#d2e8e8" offset=".375"/>
+   <stop stop-color="#d2e8e8" offset=".37891"/>
+   <stop stop-color="#d1e8e8" offset=".38281"/>
+   <stop stop-color="#d1e8e8" offset=".38672"/>
+   <stop stop-color="#d0e7e7" offset=".39062"/>
+   <stop stop-color="#cfe7e7" offset=".39453"/>
+   <stop stop-color="#cfe7e7" offset=".39844"/>
+   <stop stop-color="#cee6e6" offset=".40234"/>
+   <stop stop-color="#cde6e6" offset=".40625"/>
+   <stop stop-color="#cde6e6" offset=".41016"/>
+   <stop stop-color="#cce5e5" offset=".41406"/>
+   <stop stop-color="#cce5e5" offset=".41797"/>
+   <stop stop-color="#cbe5e5" offset=".42188"/>
+   <stop stop-color="#cae4e4" offset=".42578"/>
+   <stop stop-color="#cae4e4" offset=".42969"/>
+   <stop stop-color="#c9e4e4" offset=".43359"/>
+   <stop stop-color="#c9e4e4" offset=".4375"/>
+   <stop stop-color="#c8e3e3" offset=".44141"/>
+   <stop stop-color="#c7e3e3" offset=".44531"/>
+   <stop stop-color="#c7e3e3" offset=".44922"/>
+   <stop stop-color="#c6e2e2" offset=".45312"/>
+   <stop stop-color="#c5e2e2" offset=".45703"/>
+   <stop stop-color="#c5e2e2" offset=".46094"/>
+   <stop stop-color="#c4e1e1" offset=".46484"/>
+   <stop stop-color="#c4e1e1" offset=".46875"/>
+   <stop stop-color="#c3e1e1" offset=".47266"/>
+   <stop stop-color="#c2e0e0" offset=".47656"/>
+   <stop stop-color="#c2e0e0" offset=".48047"/>
+   <stop stop-color="#c1e0e0" offset=".48438"/>
+   <stop stop-color="#c1e0e0" offset=".48828"/>
+   <stop stop-color="#c0dfdf" offset=".49219"/>
+   <stop stop-color="#bfdfdf" offset=".49609"/>
+   <stop stop-color="#bfdfdf" offset=".5"/>
+   <stop stop-color="#bedede" offset=".50391"/>
+   <stop stop-color="#bedede" offset=".50781"/>
+   <stop stop-color="#bddede" offset=".51172"/>
+   <stop stop-color="#bcdddd" offset=".51562"/>
+   <stop stop-color="#bcdddd" offset=".51953"/>
+   <stop stop-color="#bdd" offset=".52344"/>
+   <stop stop-color="#badcdc" offset=".52734"/>
+   <stop stop-color="#badcdc" offset=".53125"/>
+   <stop stop-color="#b9dcdc" offset=".53516"/>
+   <stop stop-color="#b9dcdc" offset=".53906"/>
+   <stop stop-color="#b8dbdb" offset=".54297"/>
+   <stop stop-color="#b7dbdb" offset=".54688"/>
+   <stop stop-color="#b7dbdb" offset=".55078"/>
+   <stop stop-color="#b6dada" offset=".55469"/>
+   <stop stop-color="#b6dada" offset=".55859"/>
+   <stop stop-color="#b5dada" offset=".5625"/>
+   <stop stop-color="#b4d9d9" offset=".56641"/>
+   <stop stop-color="#b4d9d9" offset=".57031"/>
+   <stop stop-color="#b3d9d9" offset=".57422"/>
+   <stop stop-color="#b3d9d9" offset=".57812"/>
+   <stop stop-color="#b2d8d8" offset=".58203"/>
+   <stop stop-color="#b1d8d8" offset=".58594"/>
+   <stop stop-color="#b1d8d8" offset=".58984"/>
+   <stop stop-color="#b0d7d7" offset=".59375"/>
+   <stop stop-color="#afd7d7" offset=".59766"/>
+   <stop stop-color="#afd7d7" offset=".60156"/>
+   <stop stop-color="#aed6d6" offset=".60547"/>
+   <stop stop-color="#aed6d6" offset=".60938"/>
+   <stop stop-color="#add6d6" offset=".61328"/>
+   <stop stop-color="#acd5d5" offset=".61719"/>
+   <stop stop-color="#acd5d5" offset=".62109"/>
+   <stop stop-color="#abd5d5" offset=".625"/>
+   <stop stop-color="#abd5d5" offset=".62891"/>
+   <stop stop-color="#aad4d4" offset=".63281"/>
+   <stop stop-color="#a9d4d4" offset=".63672"/>
+   <stop stop-color="#a9d4d4" offset=".64062"/>
+   <stop stop-color="#a8d3d3" offset=".64453"/>
+   <stop stop-color="#a7d3d3" offset=".64844"/>
+   <stop stop-color="#a7d3d3" offset=".65234"/>
+   <stop stop-color="#a6d2d2" offset=".65625"/>
+   <stop stop-color="#a6d2d2" offset=".66016"/>
+   <stop stop-color="#a5d2d2" offset=".66406"/>
+   <stop stop-color="#a4d1d1" offset=".66797"/>
+   <stop stop-color="#a4d1d1" offset=".67188"/>
+   <stop stop-color="#a3d1d1" offset=".67578"/>
+   <stop stop-color="#a3d1d1" offset=".67969"/>
+   <stop stop-color="#a2d0d0" offset=".68359"/>
+   <stop stop-color="#a1d0d0" offset=".6875"/>
+   <stop stop-color="#a1d0d0" offset=".69141"/>
+   <stop stop-color="#a0cfcf" offset=".69531"/>
+   <stop stop-color="#a0cfcf" offset=".69922"/>
+   <stop stop-color="#9fcfcf" offset=".70312"/>
+   <stop stop-color="#9ecece" offset=".70703"/>
+   <stop stop-color="#9ecece" offset=".71094"/>
+   <stop stop-color="#9dcece" offset=".71484"/>
+   <stop stop-color="#9ccdcd" offset=".71875"/>
+   <stop stop-color="#9ccdcd" offset=".72266"/>
+   <stop stop-color="#9bcdcd" offset=".72656"/>
+   <stop stop-color="#9bcdcd" offset=".73047"/>
+   <stop stop-color="#9acccc" offset=".73438"/>
+   <stop stop-color="#9cc" offset=".73828"/>
+   <stop stop-color="#9cc" offset=".74219"/>
+   <stop stop-color="#98cbcb" offset=".74609"/>
+   <stop stop-color="#98cbcb" offset=".75"/>
+   <stop stop-color="#97cbcb" offset=".75391"/>
+   <stop stop-color="#96caca" offset=".75781"/>
+   <stop stop-color="#96caca" offset=".76172"/>
+   <stop stop-color="#95caca" offset=".76562"/>
+   <stop stop-color="#94c9c9" offset=".76953"/>
+   <stop stop-color="#94c9c9" offset=".77344"/>
+   <stop stop-color="#93c9c9" offset=".77734"/>
+   <stop stop-color="#93c9c9" offset=".78125"/>
+   <stop stop-color="#92c8c8" offset=".78516"/>
+   <stop stop-color="#91c8c8" offset=".78906"/>
+   <stop stop-color="#91c8c8" offset=".79297"/>
+   <stop stop-color="#90c7c7" offset=".79688"/>
+   <stop stop-color="#90c7c7" offset=".80078"/>
+   <stop stop-color="#8fc7c7" offset=".80469"/>
+   <stop stop-color="#8ec6c6" offset=".80859"/>
+   <stop stop-color="#8ec6c6" offset=".8125"/>
+   <stop stop-color="#8dc6c6" offset=".81641"/>
+   <stop stop-color="#8dc6c6" offset=".82031"/>
+   <stop stop-color="#8cc5c5" offset=".82422"/>
+   <stop stop-color="#8bc5c5" offset=".82812"/>
+   <stop stop-color="#8bc5c5" offset=".83203"/>
+   <stop stop-color="#8ac4c4" offset=".83594"/>
+   <stop stop-color="#89c4c4" offset=".83984"/>
+   <stop stop-color="#89c4c4" offset=".84375"/>
+   <stop stop-color="#88c3c3" offset=".84766"/>
+   <stop stop-color="#88c3c3" offset=".85156"/>
+   <stop stop-color="#87c3c3" offset=".85547"/>
+   <stop stop-color="#86c2c2" offset=".85938"/>
+   <stop stop-color="#86c2c2" offset=".86328"/>
+   <stop stop-color="#85c2c2" offset=".86719"/>
+   <stop stop-color="#85c2c2" offset=".87109"/>
+   <stop stop-color="#84c1c1" offset=".875"/>
+   <stop stop-color="#83c1c1" offset=".87891"/>
+   <stop stop-color="#83c1c1" offset=".88281"/>
+   <stop stop-color="#82c0c0" offset=".88672"/>
+   <stop stop-color="#82c0c0" offset=".89062"/>
+   <stop stop-color="#81c0c0" offset=".89453"/>
+   <stop stop-color="#80bfbf" offset=".89844"/>
+   <stop stop-color="#80bfbf" offset=".90234"/>
+   <stop stop-color="#7fbfbf" offset=".90625"/>
+   <stop stop-color="#7fbfbf" offset=".9375"/>
+   <stop stop-color="#7fbfbf" offset="1"/>
+  </linearGradient>
+ </defs>
+ <g clip-path="url(#clip1)">
+  <path transform="matrix(1,0,0,-1,57.04,3.32)" d="m95.062-47.891h-140.27c-2.1992 0-3.9844-1.7852-3.9844-3.9883v-72.09c0-2.2031 1.7852-3.9883 3.9844-3.9883h140.27c2.2031 0 3.9883 1.7852 3.9883 3.9883v72.09c0 2.2031-1.7852 3.9883-3.9883 3.9883z" fill="none" stroke="#f00" stroke-miterlimit="10" stroke-width="1.594"/>
+ </g>
+ <g>
+  <use x="162.964" y="76.843" xlink:href="#glyph0-1"/>
+  <use x="162.964" y="80.682043" xlink:href="#glyph0-2"/>
+  <use x="162.964" y="89.220901" xlink:href="#glyph0-2"/>
+  <use x="162.964" y="97.312158" xlink:href="#glyph0-3"/>
+ </g>
+ <g stroke="#000" stroke-miterlimit="10" stroke-width=".3985">
+  <path transform="matrix(1,0,0,-1,57.04,3.32)" d="m-9.375e-4 -3.5198v-12.578" fill="none"/>
+  <path transform="matrix(0 1 1 0 57.04 17.053)" d="m6.2087-9.375e-4 -5.5664 2.0938 1.8242-2.0938-1.8242-2.0937z" stroke-linejoin="round"/>
+  <path transform="matrix(1,0,0,-1,57.04,3.32)" d="m49.855-3.5198v-12.578" fill="none"/>
+  <path transform="matrix(0 1 1 0 106.9 17.053)" d="m6.2087-8.7875e-4 -5.5664 2.0937 1.8242-2.0937-1.8242-2.0938z" stroke-linejoin="round"/>
+  <path transform="matrix(1,0,0,-1,57.04,3.32)" d="m9.9405-36.555 14.883-12.285" fill="none"/>
+  <path transform="matrix(.7711 .63661 .63661 -.7711 80.039 50.654)" d="m6.2063-3.4477e-4 -5.5634 2.0938 1.8231-2.0916-1.8233-2.0929z" stroke-linejoin="round"/>
+  <path transform="matrix(1,0,0,-1,57.04,3.32)" d="m46.378-36.555-4.7148-11.137" fill="none"/>
+  <path transform="matrix(-.38998 .92079 .92079 .38998 99.624 48.834)" d="m6.2088 3.1515e-4 -5.5657 2.0929 1.8233-2.0913-1.8232-2.0958z" stroke-linejoin="round"/>
+  <path transform="matrix(1,0,0,-1,57.04,3.32)" d="m9.2608-153.77v-13.551" fill="none"/>
+  <path transform="matrix(0 1 1 0 66.3 168.27)" d="m6.2054 3.9125e-4 -5.5625 2.0937 1.8242-2.0937-1.8242-2.0938z" stroke-linejoin="round"/>
+  <path transform="matrix(1,0,0,-1,57.04,3.32)" d="m40.597-153.77v-13.551" fill="none"/>
+  <path transform="matrix(0 1 1 0 97.635 168.27)" d="m6.2054 0.0016988-5.5625 2.0898 1.8242-2.0898-1.8242-2.0937z" stroke-linejoin="round"/>
+  <path transform="matrix(1,0,0,-1,57.04,3.32)" d="m-8.9892-115.54h-4.4609" fill="none"/>
+  <path transform="matrix(-1 0 0 1 45.954 118.86)" d="m6.2078-9.5125e-4 -5.5625 2.0938 1.8203-2.0938-1.8203-2.0937z" stroke-linejoin="round"/>
+  <path transform="matrix(1,0,0,-1,57.04,3.32)" d="m8.835-123.74 0.21484-11.512" fill="none"/>
+  <path transform="matrix(.0186 .9998 .9998 -.0186 66.047 136.21)" d="m6.2058-0.0018012-5.5637 2.0961 1.8247-2.093-1.8245-2.0954z" stroke-linejoin="round"/>
+  <path transform="matrix(1,0,0,-1,57.04,3.32)" d="m58.132-124.44-9.2812-11.691" fill="none"/>
+  <path transform="matrix(-.62163 .78323 .78323 .62163 107.36 137.6)" d="m6.207-0.0023386-5.5621 2.094 1.8198-2.0917-1.8201-2.0929z" stroke-linejoin="round"/>
+ </g>
+ <path d="m75.281 26.203h-32.188c-2.1992 0-3.9844 1.7852-3.9844 3.9883v7.2461c0 2.2031 1.7852 3.9844 3.9844 3.9844h32.188c2.1992 0 3.9844-1.7812 3.9844-3.9844v-7.2461c0-2.2031-1.7852-3.9883-3.9844-3.9883z" fill="#7f7f7f" fill-opacity=".5"/>
+ <g clip-path="url(#clip2)">
+  <g clip-path="url(#clip3)">
+   <g clip-path="url(#clip4)">
+    <path d="m39.652 49.316-6.4961-24.238 41.273-11.059 6.4922 24.238z" fill="url(#linear0)"/>
+   </g>
+  </g>
+ </g>
+ <path transform="matrix(1,0,0,-1,57.04,31.667)" d="m16.093 7.6084h-32.188c-2.1992 0-3.9844-1.7812-3.9844-3.9844v-7.25c0-2.1992 1.7852-3.9844 3.9844-3.9844h32.188c2.1992 0 3.9844 1.7852 3.9844 3.9844v7.25c0 2.2031-1.7852 3.9844-3.9844 3.9844z" fill="none" stroke="#007f7f" stroke-miterlimit="10" stroke-width="1.1955"/>
+ <g>
+  <use x="40.283" y="33.903" xlink:href="#glyph1-1"/>
+  <use x="44.706412" y="33.903" xlink:href="#glyph1-2"/>
+  <use x="49.857097" y="33.903" xlink:href="#glyph1-3"/>
+  <use x="53.45361" y="33.903" xlink:href="#glyph1-1"/>
+  <use x="57.877022" y="33.903" xlink:href="#glyph1-4"/>
+  <use x="61.284245" y="33.903" xlink:href="#glyph1-5"/>
+  <use x="63.665316" y="33.903" xlink:href="#glyph1-2"/>
+  <use x="68.816001" y="33.903" xlink:href="#glyph1-6"/>
+ </g>
+ <path d="m125.14 26.203h-32.188c-2.1992 0-3.9844 1.7852-3.9844 3.9883v7.2461c0 2.2031 1.7852 3.9844 3.9844 3.9844h32.188c2.1992 0 3.9844-1.7812 3.9844-3.9844v-7.2461c0-2.2031-1.7852-3.9883-3.9844-3.9883z" fill="#7f7f7f" fill-opacity=".5"/>
+ <g clip-path="url(#clip5)">
+  <g clip-path="url(#clip6)">
+   <g clip-path="url(#clip7)">
+    <path d="m89.508 49.316-6.4961-24.238 41.27-11.059 6.4961 24.238z" fill="url(#linear1)"/>
+   </g>
+  </g>
+ </g>
+ <path transform="matrix(1 0 0 -1 106.9 31.667)" d="m16.093 7.6084h-32.188c-2.1992 0-3.9844-1.7812-3.9844-3.9844v-7.25c0-2.1992 1.7852-3.9844 3.9844-3.9844h32.188c2.1992 0 3.9844 1.7852 3.9844 3.9844v7.25c0 2.2031-1.7852 3.9844-3.9844 3.9844z" fill="none" stroke="#007f7f" stroke-miterlimit="10" stroke-width="1.1955"/>
+ <g>
+  <use x="90.138" y="33.903" xlink:href="#glyph1-1"/>
+  <use x="94.561412" y="33.903" xlink:href="#glyph1-2"/>
+  <use x="99.712097" y="33.903" xlink:href="#glyph1-3"/>
+  <use x="103.30861" y="33.903" xlink:href="#glyph1-1"/>
+  <use x="107.732022" y="33.903" xlink:href="#glyph1-4"/>
+  <use x="111.139245" y="33.903" xlink:href="#glyph1-5"/>
+  <use x="113.520316" y="33.903" xlink:href="#glyph1-2"/>
+  <use x="118.671001" y="33.903" xlink:href="#glyph1-6"/>
+ </g>
+ <path d="m75.281 145.36h-13.664c-2.2031 0-3.9883 1.7812-3.9883 3.9844v5.3047c0 2.2031 1.7852 3.9844 3.9883 3.9844h13.664c2.1992 0 3.9844-1.7812 3.9844-3.9844v-5.3047c0-2.2031-1.7852-3.9844-3.9844-3.9844z" fill="#7f7f7f" fill-opacity=".5"/>
+ <g clip-path="url(#clip8)">
+  <g clip-path="url(#clip9)">
+   <g clip-path="url(#clip10)">
+    <path d="m56.934 161.89-4.7695-17.793 23.504-6.3008 4.7695 17.797z" fill="url(#linear2)"/>
+   </g>
+  </g>
+ </g>
+ <path transform="matrix(1 0 0 -1 66.301 149.85)" d="m6.8318 6.6381h-13.664c-2.1992 0-3.9844-1.7852-3.9844-3.9844v-5.3086c0-2.1992 1.7852-3.9844 3.9844-3.9844h13.664c2.2031 0 3.9844 1.7852 3.9844 3.9844v5.3086c0 2.1992-1.7812 3.9844-3.9844 3.9844z" fill="none" stroke="#007f7f" stroke-miterlimit="10" stroke-width="1.1955"/>
+ <g>
+  <use x="58.804" y="153.057" xlink:href="#glyph1-1"/>
+  <use x="63.227412" y="153.057" xlink:href="#glyph1-7"/>
+  <use x="67.820189" y="153.057" xlink:href="#glyph1-5"/>
+  <use x="70.20126" y="153.057" xlink:href="#glyph1-3"/>
+ </g>
+ <path d="m106.61 145.36h-13.664c-2.1992 0-3.9844 1.7812-3.9844 3.9844v5.3047c0 2.2031 1.7852 3.9844 3.9844 3.9844h13.664c2.2031 0 3.9844-1.7812 3.9844-3.9844v-5.3047c0-2.2031-1.7812-3.9844-3.9844-3.9844z" fill="#7f7f7f" fill-opacity=".5"/>
+ <g clip-path="url(#clip11)">
+  <g clip-path="url(#clip12)">
+   <g clip-path="url(#clip13)">
+    <path d="m88.266 161.89-4.7656-17.793 23.504-6.3008 4.7695 17.797z" fill="url(#linear3)"/>
+   </g>
+  </g>
+ </g>
+ <path transform="matrix(1 0 0 -1 97.635 149.85)" d="m6.8338 6.6381h-13.668c-2.1992 0-3.9844-1.7852-3.9844-3.9844v-5.3086c0-2.1992 1.7852-3.9844 3.9844-3.9844h13.668c2.1992 0 3.9844 1.7852 3.9844 3.9844v5.3086c0 2.1992-1.7852 3.9844-3.9844 3.9844z" fill="none" stroke="#007f7f" stroke-miterlimit="10" stroke-width="1.1955"/>
+ <g>
+  <use x="90.138" y="153.057" xlink:href="#glyph1-1"/>
+  <use x="94.561412" y="153.057" xlink:href="#glyph1-7"/>
+  <use x="99.154189" y="153.057" xlink:href="#glyph1-5"/>
+  <use x="101.53526" y="153.057" xlink:href="#glyph1-3"/>
+ </g>
+ <path d="m109.14 57.477h-26.02c-2.2031 0-3.9844 1.7852-3.9844 3.9844v5.6953c0 2.1992 1.7812 3.9844 3.9844 3.9844h26.02c2.1992 0 3.9844-1.7852 3.9844-3.9844v-5.6953c0-2.1992-1.7852-3.9844-3.9844-3.9844z" fill="#7f7f7f" fill-opacity=".5"/>
+ <g clip-path="url(#clip14)">
+  <g clip-path="url(#clip15)">
+   <g clip-path="url(#clip16)">
+    <path d="m79.262 77.492-5.6953-21.246 35.129-9.4141 5.6953 21.246z" fill="url(#linear4)"/>
+   </g>
+  </g>
+ </g>
+ <path transform="matrix(1,0,0,-1,93.979,62.162)" d="m13.009 6.8339h-26.02c-2.1992 0-3.9844-1.7852-3.9844-3.9883v-5.6914c0-2.2031 1.7852-3.9883 3.9844-3.9883h26.02c2.1992 0 3.9844 1.7852 3.9844 3.9883v5.6914c0 2.2031-1.7852 3.9883-3.9844 3.9883z" fill="none" stroke="#007f7f" stroke-miterlimit="10" stroke-width="1.1955"/>
+ <g>
+  <use x="80.305" y="65.565" xlink:href="#glyph1-8"/>
+  <use x="85.455685" y="65.565" xlink:href="#glyph1-1"/>
+  <use x="89.879097" y="65.565" xlink:href="#glyph1-9"/>
+  <use x="94.671127" y="65.565" xlink:href="#glyph1-10"/>
+  <use x="99.821812" y="65.565" xlink:href="#glyph1-1"/>
+  <use x="104.245224" y="65.565" xlink:href="#glyph1-4"/>
+ </g>
+ <path d="m37.113 114.17h-19.016c-2.1992 0-3.9844 1.7852-3.9844 3.9883v5.6914c0 2.2031 1.7852 3.9883 3.9844 3.9883h19.016c2.1992 0 3.9844-1.7852 3.9844-3.9883v-5.6914c0-2.2031-1.7852-3.9883-3.9844-3.9883z" fill="#7f7f7f" fill-opacity=".5"/>
+ <g clip-path="url(#clip17)">
+  <g clip-path="url(#clip18)">
+   <g clip-path="url(#clip19)">
+    <path d="m13.773 132.43-5.2227-19.496 28.594-7.6602 5.2227 19.496z" fill="url(#linear5)"/>
+   </g>
+  </g>
+ </g>
+ <path transform="matrix(1 0 0 -1 25.458 118.86)" d="m9.5068 6.8316h-19.016c-2.1992 0-3.9844-1.7852-3.9844-3.9844v-5.6953c0-2.1992 1.7852-3.9844 3.9844-3.9844h19.016c2.2031 0 3.9844 1.7852 3.9844 3.9844v5.6953c0 2.1992-1.7812 3.9844-3.9844 3.9844z" fill="none" stroke="#007f7f" stroke-miterlimit="10" stroke-width="1.1955"/>
+ <g>
+  <use x="15.286" y="122.257" xlink:href="#glyph1-11"/>
+  <use x="17.667071" y="122.257" xlink:href="#glyph1-9"/>
+  <use x="22.459101" y="122.257" xlink:href="#glyph1-3"/>
+  <use x="26.055614" y="122.257" xlink:href="#glyph1-12"/>
+  <use x="30.479026" y="122.257" xlink:href="#glyph1-8"/>
+ </g>
+ <path d="m80.961 113.39h-26.18c-2.1992 0-3.9844 1.7852-3.9844 3.9883v7.2461c0 2.2031 1.7852 3.9883 3.9844 3.9883h26.18c2.1992 0 3.9844-1.7852 3.9844-3.9883v-7.2461c0-2.2031-1.7852-3.9883-3.9844-3.9883z" fill="#7f7f7f" fill-opacity=".5"/>
+ <g clip-path="url(#clip20)">
+  <g clip-path="url(#clip21)">
+   <g clip-path="url(#clip22)">
+    <path d="m50.938 135-6.0938-22.734 35.668-9.5586 6.0898 22.738z" fill="url(#linear6)"/>
+   </g>
+  </g>
+ </g>
+ <path transform="matrix(1 0 0 -1 65.724 118.86)" d="m13.088 7.6089h-26.176c-2.2031 0-3.9883-1.7852-3.9883-3.9844v-7.25c0-2.1992 1.7852-3.9844 3.9883-3.9844h26.176c2.2031 0 3.9844 1.7852 3.9844 3.9844v7.25c0 2.1992-1.7812 3.9844-3.9844 3.9844z" fill="none" stroke="#007f7f" stroke-miterlimit="10" stroke-width="1.1955"/>
+ <g>
+  <use x="51.97" y="121.092" xlink:href="#glyph1-1"/>
+  <use x="56.393412" y="121.092" xlink:href="#glyph1-7"/>
+  <use x="60.986189" y="121.092" xlink:href="#glyph1-5"/>
+  <use x="63.36726" y="121.092" xlink:href="#glyph1-3"/>
+  <use x="66.963773" y="121.092" xlink:href="#glyph1-5"/>
+  <use x="69.344844" y="121.092" xlink:href="#glyph1-2"/>
+  <use x="74.495529" y="121.092" xlink:href="#glyph1-6"/>
+ </g>
+ <path d="m150.13 112.7h-51.504c-2.1992 0-3.9844 1.7852-3.9844 3.9844v8.6367c0 2.1992 1.7852 3.9844 3.9844 3.9844h51.504c2.1992 0 3.9844-1.7852 3.9844-3.9844v-8.6367c0-2.1992-1.7852-3.9844-3.9844-3.9844z" fill="#7f7f7f" fill-opacity=".5"/>
+ <g clip-path="url(#clip23)">
+  <g clip-path="url(#clip24)">
+   <g clip-path="url(#clip25)">
+    <path d="m96.48 142.02-8.1328-30.359 59.641-15.98 8.1328 30.359z" fill="url(#linear7)"/>
+   </g>
+  </g>
+ </g>
+ <path transform="matrix(1 0 0 -1 122.23 118.86)" d="m25.75 8.3003h-51.504c-2.1992 0-3.9844-1.7812-3.9844-3.9844v-8.6328c0-2.1992 1.7852-3.9844 3.9844-3.9844h51.504c2.2031 0 3.9883 1.7852 3.9883 3.9844v8.6328c0 2.2031-1.7852 3.9844-3.9883 3.9844z" fill="none" stroke="#007f7f" stroke-miterlimit="10" stroke-width="1.1955"/>
+ <g>
+  <use x="95.818" y="121.346" xlink:href="#glyph1-1"/>
+  <use x="100.241412" y="121.346" xlink:href="#glyph1-7"/>
+  <use x="104.834189" y="121.346" xlink:href="#glyph1-5"/>
+  <use x="107.21526" y="121.346" xlink:href="#glyph1-3"/>
+  <use x="110.811773" y="121.346" xlink:href="#glyph1-5"/>
+  <use x="113.192844" y="121.346" xlink:href="#glyph1-2"/>
+  <use x="118.343529" y="121.346" xlink:href="#glyph1-6"/>
+  <use x="123.324849" y="121.346" xlink:href="#glyph1-13"/>
+  <use x="128.306169" y="121.346" xlink:href="#glyph1-11"/>
+  <use x="130.68724" y="121.346" xlink:href="#glyph1-9"/>
+  <use x="135.47927" y="121.346" xlink:href="#glyph1-3"/>
+  <use x="139.075783" y="121.346" xlink:href="#glyph1-12"/>
+  <use x="143.499195" y="121.346" xlink:href="#glyph1-8"/>
+ </g>
+ <g stroke="#000" stroke-miterlimit="10" stroke-width=".3985">
+  <path transform="matrix(1,0,0,-1,57.04,3.32)" d="m-20.677-35.578-32.203-11.277" fill="none"/>
+  <path transform="matrix(-.94379 .33044 .33044 .94379 6.3927 49.393)" d="m6.207 0.0017695-5.5627 2.0925 1.8205-2.0943-1.8216-2.0939z" stroke-linejoin="round"/>
+  <path transform="matrix(1,0,0,-1,57.04,3.32)" d="m-28.821-108.11c6.875 23.754 21.227 38.441 44.27 45.234" fill="none"/>
+  <path transform="matrix(.96509 -.26178 -.26178 -.96509 70.204 66.814)" d="m6.2087 0.0013838-5.5645 2.0922 1.8204-2.0926-1.8222-2.0921z" stroke-linejoin="round"/>
+ </g>
+ <g>
+  <use x="32.081" y="96.673" xlink:href="#glyph2-1"/>
+  <use x="34.243" y="92.739" xlink:href="#glyph3-1"/>
+  <use x="36.491" y="89.22" xlink:href="#glyph4-1"/>
+  <use x="38.778" y="86.087" xlink:href="#glyph5-1"/>
+  <use x="41.524" y="82.836" xlink:href="#glyph6-1"/>
+  <use x="44.221" y="80.038" xlink:href="#glyph7-1"/>
+  <use x="47.585" y="77.04" xlink:href="#glyph8-1"/>
+  <use x="51.046" y="74.404" xlink:href="#glyph9-1"/>
+ </g>
+ <path transform="matrix(1,0,0,-1,57.04,3.32)" d="m58.386-64.766c18.039-6.5273 32.434-23.906 25.895-41.871" fill="none" stroke="#000" stroke-miterlimit="10" stroke-width=".3985"/>
+ <path transform="matrix(-.95335 -.3017 -.3017 .95335 117.68 68.807)" d="m6.2067-0.0013702-5.5635 2.095 1.8225-2.0948-1.8209-2.0923z" stroke="#000" stroke-linejoin="round" stroke-miterlimit="10" stroke-width=".3985"/>
+ <g>
+  <use x="126.2" y="71.46" xlink:href="#glyph10-1"/>
+  <use x="129.894" y="74.087" xlink:href="#glyph11-1"/>
+  <use x="133.097" y="76.835" xlink:href="#glyph12-1"/>
+  <use x="135.85" y="79.642" xlink:href="#glyph13-1"/>
+  <use x="138.547" y="83.021" xlink:href="#glyph14-1"/>
+  <use x="140.702" y="86.364" xlink:href="#glyph15-1"/>
+  <use x="142.691" y="90.544" xlink:href="#glyph16-1"/>
+  <use x="144.004" y="94.836" xlink:href="#glyph17-1"/>
+ </g>
+ <g stroke="#000" stroke-miterlimit="10" stroke-width=".3985">
+  <path transform="matrix(1,0,0,-1,57.04,3.32)" d="m33.237-66.274c-0.55469-1.1133 1.3945-2.7812 0.83984-3.8984-0.40234-0.80469-1.8359-0.95703-3.3398-1.1172-1.5039-0.15625-2.9375-0.30859-3.3398-1.1172-0.40234-0.80469 0.33984-2.043 1.1172-3.3398 0.77734-1.2969 1.5195-2.5312 1.1172-3.3398s-1.8359-0.96094-3.3398-1.1172c-1.5039-0.16016-2.9375-0.3125-3.3398-1.1172-0.40234-0.80859 0.33984-2.0469 1.1172-3.3398 0.78125-1.2969 1.5195-2.5352 1.1211-3.3398-0.40234-0.80859-1.8398-0.96094-3.3438-1.1211-1.5-0.15625-2.9375-0.30859-3.3398-1.1172-0.40234-0.80469 0.33984-2.043 1.1211-3.3398 0.77734-1.2969 1.5195-2.5312 1.1172-3.3398-0.40234-0.80859-1.8359-0.96094-3.3398-1.1172-1.5039-0.16016-2.9375-0.3125-3.3398-1.1172-0.55859-1.1172 1.3945-2.7852 0.83984-3.8984l-0.33203-0.66016" fill="none"/>
+  <path transform="matrix(-.44618 .89487 .89487 .44618 72.67 104.92)" d="m6.2098-8.2974e-4 -5.5655 2.0922 1.8198-2.0915-1.821-2.0909z" stroke-linejoin="round"/>
+  <path transform="matrix(1,0,0,-1,57.04,3.32)" d="m40.644-66.274c0.55469-1.1133 3.0586-0.55859 3.6172-1.6758 0.40234-0.80469-0.33984-2.043-1.1211-3.3398-0.77734-1.293-1.5195-2.5312-1.1172-3.3398 0.40234-0.80469 1.8359-0.96094 3.3398-1.1172s2.9375-0.3125 3.3398-1.1172c0.40234-0.80859-0.33594-2.0469-1.1172-3.3398-0.77734-1.2969-1.5195-2.5352-1.1172-3.3398 0.40234-0.80859 1.8359-0.96094 3.3398-1.1211 1.5039-0.15625 2.9375-0.30859 3.3398-1.1172 0.40234-0.80469-0.33984-2.043-1.1172-3.3398-0.78125-1.293-1.5195-2.5312-1.1172-3.3398 0.40234-0.80469 1.8359-0.96094 3.3398-1.1172 1.5-0.15625 2.9375-0.3125 3.3398-1.1172 0.40234-0.80859-0.33984-2.0469-1.1211-3.3398-0.77734-1.2969-1.5195-2.5352-1.1172-3.3398 0.55469-1.1172 3.0625-0.5625 3.6172-1.6758l-0.015625 0.03125" fill="none"/>
+  <path transform="matrix(.44624 .89484 .89484 -.44624 114.94 104.22)" d="m6.2057-6.1862e-4 -5.5613 2.0923 1.8209-2.091-1.8217-2.0949z" stroke-linejoin="round"/>
+ </g>
+</svg>


        


More information about the llvm-commits mailing list