\(\text{www.the}\beta\text{etafunction.com}\)
Home
Login
Questions: Algebra BusinessCalculus

Please login to create an exam or a quiz.

Algebra
functions
New Random

Graph the function \(\displaystyle f(x)=\begin{cases} \frac{x}{5} - 6,& x \leq -5\\ 7 - \frac{x^{2}}{5},& -5 < x < 2\\ \frac{4 x}{5} - 4,& x \geq 2 \\ \end{cases}\)


The graph has three parts. It is a line on \(\displaystyle (-\infty, -5]\), a parabola on \(\displaystyle (-5,2)\), and a line on \(\displaystyle [2, \infty)\). Graphing each part gives:

Download Tikz \( \LaTeX \)

\begin{tikzpicture}[font=\Large, scale=.4]
	\draw[very thick, color=blue, opacity=0.3, xstep=1, ystep=1] (-10,-10) grid (10,10);
	\draw[latex-latex, very thick] (-10.4,0)--(10.4,0) node[right]{$x$};
	\draw[latex-latex, very thick] (0,-10.4)--(0,10.4) node[above]{$y$};
	\foreach \x in { -10,-8,...,10 }{
		\pgfmathsetmacro{\xtick}{\x != 0 ? "\x" : ""}
		\draw (\x, .2) -- (\x,-.2) node[below]{$\xtick$};
		}
	\foreach \y in { -10,-8,...,10 }{
		\pgfmathsetmacro{\ytick}{\y != 0 ? "\y" : ""}
		\draw (.2, \y) -- (-.2, \y) node[left]{$\ytick$};
		}
	\draw[thick, color=blue, domain={-10.0}:{-5.0}, latex-, samples =350] plot(\x, {(\x)/5 - 6});
	\draw[thick, color=blue, domain={-5.0}:{2.0}, samples =350] plot(\x, {7 - (\x)^2/5});
	\draw[thick, color=blue, domain={2.0}:{10.0}, -latex, samples =350] plot(\x, {4*(\x)/5 - 4});
		\draw[fill=black] (-5,-7) circle (5pt);
		\draw[fill=white] (-5,2) circle (5pt);
		\draw[fill=white] (2,31/5) circle (5pt);
		\draw[fill=black] (2,-12/5) circle (5pt);
\end{tikzpicture}

Download \(\LaTeX\)

\begin{question}Graph the function $f(x)=\begin{cases} \frac{x}{5} - 6,& x \leq -5\\ 7 - \frac{x^{2}}{5},& -5 < x < 2\\ \frac{4 x}{5} - 4,& x \geq 2 \\ \end{cases}$\newline
\begin{tikzpicture}[font=\Large, scale=.4]
	\draw[very thick, color=blue, opacity=0.3, xstep=1, ystep=1] (-10,-10) grid (10,10);
	\draw[latex-latex, very thick] (-10.4,0)--(10.4,0) node[right]{$x$};
	\draw[latex-latex, very thick] (0,-10.4)--(0,10.4) node[above]{$y$};
	\foreach \x in { -10,-8,...,10 }{
		\pgfmathsetmacro{\xtick}{\x != 0 ? "\x" : ""}
		\draw (\x, .2) -- (\x,-.2) node[below]{$\xtick$};
		}
	\foreach \y in { -10,-8,...,10 }{
		\pgfmathsetmacro{\ytick}{\y != 0 ? "\y" : ""}
		\draw (.2, \y) -- (-.2, \y) node[left]{$\ytick$};
		}
\end{tikzpicture}

    \soln{0cm}{The graph has three parts. It is a line on $(-\infty, -5]$, a parabola on $(-5,2)$, and a line on $[2, \infty)$.  Graphing each part gives:\newline
\begin{tikzpicture}[font=\Large, scale=.4]
	\draw[very thick, color=blue, opacity=0.3, xstep=1, ystep=1] (-10,-10) grid (10,10);
	\draw[latex-latex, very thick] (-10.4,0)--(10.4,0) node[right]{$x$};
	\draw[latex-latex, very thick] (0,-10.4)--(0,10.4) node[above]{$y$};
	\foreach \x in { -10,-8,...,10 }{
		\pgfmathsetmacro{\xtick}{\x != 0 ? "\x" : ""}
		\draw (\x, .2) -- (\x,-.2) node[below]{$\xtick$};
		}
	\foreach \y in { -10,-8,...,10 }{
		\pgfmathsetmacro{\ytick}{\y != 0 ? "\y" : ""}
		\draw (.2, \y) -- (-.2, \y) node[left]{$\ytick$};
		}
	\draw[thick, color=blue, domain={-10.0}:{-5.0}, latex-, samples =350] plot(\x, {(\x)/5 - 6});
	\draw[thick, color=blue, domain={-5.0}:{2.0}, samples =350] plot(\x, {7 - (\x)^2/5});
	\draw[thick, color=blue, domain={2.0}:{10.0}, -latex, samples =350] plot(\x, {4*(\x)/5 - 4});
		\draw[fill=black] (-5,-7) circle (5pt);
		\draw[fill=white] (-5,2) circle (5pt);
		\draw[fill=white] (2,31/5) circle (5pt);
		\draw[fill=black] (2,-12/5) circle (5pt);
\end{tikzpicture}
}

\end{question}

Download Question and Solution Environment\(\LaTeX\)
\documentclass{article}
\usepackage{tikz}
\usepackage{amsmath}
\usepackage[margin=2cm]{geometry}
\usepackage{tcolorbox}

\newcounter{ExamNumber}
\newcounter{questioncount}
\stepcounter{questioncount}

\newenvironment{question}{{\noindent\bfseries Question \arabic{questioncount}.}}{\stepcounter{questioncount}}
\renewcommand{\labelenumi}{{\bfseries (\alph{enumi})}}

\newif\ifShowSolution
\newcommand{\soln}[2]{%
\ifShowSolution%
\noindent\begin{tcolorbox}[colframe=blue,title=Solution]#2\end{tcolorbox}\else%
\vspace{#1}%
\fi%
}%
\newcommand{\hideifShowSolution}[1]{%
\ifShowSolution%
%
\else%
#1%
\fi%
}%
\everymath{\displaystyle}
\ShowSolutiontrue

\begin{document}\begin{question}(10pts) The question goes here!
    \soln{9cm}{The solution goes here.}

\end{question}\end{document}
HTML for Canvas
<p> <p>Graph the function  <img class="equation_image" title=" \displaystyle f(x)=\begin{cases} \frac{x}{5} - 6,& x \leq -5\\ 7 - \frac{x^{2}}{5},& -5 < x < 2\\ \frac{4 x}{5} - 4,& x \geq 2 \\ \end{cases} " src="/equation_images/%20%5Cdisplaystyle%20f%28x%29%3D%5Cbegin%7Bcases%7D%20%5Cfrac%7Bx%7D%7B5%7D%20-%206%2C%26%20x%20%5Cleq%20-5%5C%5C%207%20-%20%5Cfrac%7Bx%5E%7B2%7D%7D%7B5%7D%2C%26%20-5%20%3C%20x%20%3C%202%5C%5C%20%5Cfrac%7B4%20x%7D%7B5%7D%20-%204%2C%26%20x%20%5Cgeq%202%20%5C%5C%20%5Cend%7Bcases%7D%20" alt="LaTeX:  \displaystyle f(x)=\begin{cases} \frac{x}{5} - 6,& x \leq -5\\ 7 - \frac{x^{2}}{5},& -5 < x < 2\\ \frac{4 x}{5} - 4,& x \geq 2 \\ \end{cases} " data-equation-content=" \displaystyle f(x)=\begin{cases} \frac{x}{5} - 6,& x \leq -5\\ 7 - \frac{x^{2}}{5},& -5 < x < 2\\ \frac{4 x}{5} - 4,& x \geq 2 \\ \end{cases} " /> <br>
<?xml version="1.0" encoding="UTF-8"?>
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="262.448pt" height="256.049pt" viewBox="0 0 262.448 256.049" 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 6.796875 -5.859375 C 6.34375 -5.765625 6.171875 -5.421875 6.171875 -5.15625 C 6.171875 -4.8125 6.4375 -4.6875 6.640625 -4.6875 C 7.078125 -4.6875 7.375 -5.0625 7.375 -5.453125 C 7.375 -6.046875 6.6875 -6.328125 6.078125 -6.328125 C 5.203125 -6.328125 4.71875 -5.46875 4.59375 -5.1875 C 4.265625 -6.265625 3.375 -6.328125 3.109375 -6.328125 C 1.65625 -6.328125 0.875 -4.453125 0.875 -4.125 C 0.875 -4.078125 0.9375 -4 1.03125 -4 C 1.140625 -4 1.171875 -4.09375 1.203125 -4.140625 C 1.6875 -5.734375 2.65625 -6.03125 3.0625 -6.03125 C 3.71875 -6.03125 3.84375 -5.4375 3.84375 -5.09375 C 3.84375 -4.78125 3.765625 -4.453125 3.578125 -3.765625 L 3.09375 -1.796875 C 2.890625 -0.9375 2.46875 -0.140625 1.703125 -0.140625 C 1.640625 -0.140625 1.28125 -0.140625 0.96875 -0.328125 C 1.484375 -0.4375 1.609375 -0.859375 1.609375 -1.03125 C 1.609375 -1.3125 1.390625 -1.484375 1.125 -1.484375 C 0.78125 -1.484375 0.40625 -1.1875 0.40625 -0.734375 C 0.40625 -0.125 1.078125 0.140625 1.6875 0.140625 C 2.375 0.140625 2.875 -0.40625 3.171875 -0.984375 C 3.40625 -0.140625 4.109375 0.140625 4.640625 0.140625 C 6.109375 0.140625 6.890625 -1.734375 6.890625 -2.046875 C 6.890625 -2.125 6.828125 -2.1875 6.734375 -2.1875 C 6.609375 -2.1875 6.59375 -2.109375 6.5625 -2 C 6.171875 -0.734375 5.328125 -0.140625 4.6875 -0.140625 C 4.1875 -0.140625 3.921875 -0.515625 3.921875 -1.109375 C 3.921875 -1.421875 3.96875 -1.65625 4.203125 -2.59375 L 4.703125 -4.546875 C 4.921875 -5.40625 5.40625 -6.03125 6.0625 -6.03125 C 6.09375 -6.03125 6.5 -6.03125 6.796875 -5.859375 Z M 6.796875 -5.859375 "/>
</symbol>
<symbol overflow="visible" id="glyph0-2">
<path style="stroke:none;" d="M 3.765625 1.609375 C 3.390625 2.15625 2.828125 2.640625 2.125 2.640625 C 1.953125 2.640625 1.265625 2.609375 1.046875 1.953125 C 1.09375 1.96875 1.15625 1.96875 1.1875 1.96875 C 1.625 1.96875 1.90625 1.59375 1.90625 1.265625 C 1.90625 0.9375 1.640625 0.8125 1.421875 0.8125 C 1.1875 0.8125 0.6875 0.984375 0.6875 1.6875 C 0.6875 2.421875 1.3125 2.921875 2.125 2.921875 C 3.5625 2.921875 5 1.609375 5.40625 0.015625 L 6.8125 -5.578125 C 6.828125 -5.65625 6.859375 -5.734375 6.859375 -5.828125 C 6.859375 -6.03125 6.6875 -6.1875 6.46875 -6.1875 C 6.34375 -6.1875 6.03125 -6.125 5.921875 -5.6875 L 4.859375 -1.484375 C 4.796875 -1.21875 4.796875 -1.1875 4.671875 -1.03125 C 4.390625 -0.625 3.921875 -0.140625 3.234375 -0.140625 C 2.421875 -0.140625 2.359375 -0.9375 2.359375 -1.3125 C 2.359375 -2.140625 2.734375 -3.234375 3.125 -4.28125 C 3.28125 -4.6875 3.375 -4.890625 3.375 -5.171875 C 3.375 -5.78125 2.9375 -6.328125 2.234375 -6.328125 C 0.921875 -6.328125 0.390625 -4.25 0.390625 -4.125 C 0.390625 -4.078125 0.4375 -4 0.546875 -4 C 0.671875 -4 0.6875 -4.0625 0.75 -4.265625 C 1.09375 -5.46875 1.640625 -6.03125 2.1875 -6.03125 C 2.328125 -6.03125 2.5625 -6.03125 2.5625 -5.5625 C 2.5625 -5.1875 2.40625 -4.78125 2.1875 -4.234375 C 1.484375 -2.359375 1.484375 -1.875 1.484375 -1.53125 C 1.484375 -0.171875 2.46875 0.140625 3.1875 0.140625 C 3.59375 0.140625 4.109375 0.015625 4.625 -0.515625 L 4.640625 -0.5 C 4.421875 0.34375 4.28125 0.90625 3.765625 1.609375 Z M 3.765625 1.609375 "/>
</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 9.453125 -3.296875 C 9.703125 -3.296875 9.953125 -3.296875 9.953125 -3.578125 C 9.953125 -3.875 9.703125 -3.875 9.453125 -3.875 L 1.6875 -3.875 C 1.453125 -3.875 1.1875 -3.875 1.1875 -3.578125 C 1.1875 -3.296875 1.453125 -3.296875 1.6875 -3.296875 Z M 9.453125 -3.296875 "/>
</symbol>
<symbol overflow="visible" id="glyph2-0">
<path style="stroke:none;" d=""/>
</symbol>
<symbol overflow="visible" id="glyph2-1">
<path style="stroke:none;" d="M 4.125 -9.1875 C 4.125 -9.53125 4.125 -9.53125 3.84375 -9.53125 C 3.5 -9.15625 2.78125 -8.625 1.3125 -8.625 L 1.3125 -8.203125 C 1.640625 -8.203125 2.359375 -8.203125 3.140625 -8.578125 L 3.140625 -1.109375 C 3.140625 -0.59375 3.09375 -0.421875 1.84375 -0.421875 L 1.390625 -0.421875 L 1.390625 0 C 1.78125 -0.03125 3.171875 -0.03125 3.640625 -0.03125 C 4.109375 -0.03125 5.5 -0.03125 5.875 0 L 5.875 -0.421875 L 5.4375 -0.421875 C 4.171875 -0.421875 4.125 -0.59375 4.125 -1.109375 Z M 4.125 -9.1875 "/>
</symbol>
<symbol overflow="visible" id="glyph2-2">
<path style="stroke:none;" d="M 6.421875 -4.59375 C 6.421875 -5.78125 6.359375 -6.9375 5.84375 -8.03125 C 5.25 -9.21875 4.21875 -9.53125 3.515625 -9.53125 C 2.6875 -9.53125 1.65625 -9.125 1.140625 -7.9375 C 0.734375 -7.03125 0.59375 -6.140625 0.59375 -4.59375 C 0.59375 -3.203125 0.6875 -2.15625 1.203125 -1.140625 C 1.765625 -0.046875 2.75 0.296875 3.5 0.296875 C 4.75 0.296875 5.46875 -0.4375 5.875 -1.28125 C 6.390625 -2.359375 6.421875 -3.765625 6.421875 -4.59375 Z M 3.5 0.015625 C 3.046875 0.015625 2.109375 -0.25 1.84375 -1.8125 C 1.671875 -2.671875 1.671875 -3.765625 1.671875 -4.765625 C 1.671875 -5.9375 1.671875 -7 1.90625 -7.84375 C 2.15625 -8.8125 2.890625 -9.25 3.5 -9.25 C 4.046875 -9.25 4.875 -8.921875 5.15625 -7.6875 C 5.328125 -6.875 5.328125 -5.734375 5.328125 -4.765625 C 5.328125 -3.796875 5.328125 -2.71875 5.171875 -1.84375 C 4.90625 -0.265625 4 0.015625 3.5 0.015625 Z M 3.5 0.015625 "/>
</symbol>
<symbol overflow="visible" id="glyph2-3">
<path style="stroke:none;" d="M 4.28125 -5.171875 C 4.984375 -5.5625 6.03125 -6.21875 6.03125 -7.4375 C 6.03125 -8.671875 4.828125 -9.53125 3.515625 -9.53125 C 2.09375 -9.53125 0.96875 -8.484375 0.96875 -7.1875 C 0.96875 -6.703125 1.125 -6.203125 1.515625 -5.71875 C 1.671875 -5.53125 1.6875 -5.515625 2.703125 -4.8125 C 1.3125 -4.171875 0.59375 -3.21875 0.59375 -2.171875 C 0.59375 -0.640625 2.03125 0.296875 3.5 0.296875 C 5.09375 0.296875 6.421875 -0.875 6.421875 -2.375 C 6.421875 -3.84375 5.390625 -4.484375 4.28125 -5.171875 Z M 2.328125 -6.46875 C 2.140625 -6.59375 1.5625 -6.96875 1.5625 -7.671875 C 1.5625 -8.609375 2.53125 -9.1875 3.5 -9.1875 C 4.53125 -9.1875 5.453125 -8.453125 5.453125 -7.421875 C 5.453125 -6.546875 4.8125 -5.84375 3.984375 -5.375 Z M 3 -4.625 L 4.734375 -3.484375 C 5.109375 -3.234375 5.765625 -2.796875 5.765625 -1.921875 C 5.765625 -0.828125 4.65625 -0.09375 3.515625 -0.09375 C 2.296875 -0.09375 1.25 -0.96875 1.25 -2.171875 C 1.25 -3.28125 2.0625 -4.1875 3 -4.625 Z M 3 -4.625 "/>
</symbol>
<symbol overflow="visible" id="glyph2-4">
<path style="stroke:none;" d="M 1.765625 -4.984375 C 1.765625 -8.625 3.53125 -9.1875 4.296875 -9.1875 C 4.8125 -9.1875 5.328125 -9.03125 5.609375 -8.609375 C 5.4375 -8.609375 4.890625 -8.609375 4.890625 -8.015625 C 4.890625 -7.703125 5.109375 -7.4375 5.484375 -7.4375 C 5.84375 -7.4375 6.078125 -7.640625 6.078125 -8.0625 C 6.078125 -8.8125 5.53125 -9.53125 4.28125 -9.53125 C 2.484375 -9.53125 0.59375 -7.6875 0.59375 -4.53125 C 0.59375 -0.59375 2.3125 0.296875 3.53125 0.296875 C 5.09375 0.296875 6.421875 -1.0625 6.421875 -2.921875 C 6.421875 -4.828125 5.09375 -6.109375 3.65625 -6.109375 C 2.375 -6.109375 1.90625 -5 1.765625 -4.609375 Z M 3.53125 -0.09375 C 2.625 -0.09375 2.1875 -0.890625 2.0625 -1.1875 C 1.9375 -1.5625 1.796875 -2.265625 1.796875 -3.265625 C 1.796875 -4.40625 2.3125 -5.828125 3.59375 -5.828125 C 4.390625 -5.828125 4.8125 -5.296875 5.015625 -4.8125 C 5.25 -4.28125 5.25 -3.5625 5.25 -2.9375 C 5.25 -2.203125 5.25 -1.5625 4.984375 -1.015625 C 4.625 -0.328125 4.109375 -0.09375 3.53125 -0.09375 Z M 3.53125 -0.09375 "/>
</symbol>
<symbol overflow="visible" id="glyph2-5">
<path style="stroke:none;" d="M 5.171875 -9.34375 C 5.171875 -9.609375 5.171875 -9.6875 4.984375 -9.6875 C 4.859375 -9.6875 4.8125 -9.6875 4.703125 -9.515625 L 0.390625 -2.8125 L 0.390625 -2.390625 L 4.15625 -2.390625 L 4.15625 -1.09375 C 4.15625 -0.5625 4.125 -0.421875 3.078125 -0.421875 L 2.796875 -0.421875 L 2.796875 0 C 3.125 -0.03125 4.265625 -0.03125 4.65625 -0.03125 C 5.0625 -0.03125 6.203125 -0.03125 6.546875 0 L 6.546875 -0.421875 L 6.25 -0.421875 C 5.21875 -0.421875 5.171875 -0.5625 5.171875 -1.09375 L 5.171875 -2.390625 L 6.625 -2.390625 L 6.625 -2.8125 L 5.171875 -2.8125 Z M 4.234375 -8.21875 L 4.234375 -2.8125 L 0.75 -2.8125 Z M 4.234375 -8.21875 "/>
</symbol>
<symbol overflow="visible" id="glyph2-6">
<path style="stroke:none;" d="M 6.3125 -2.40625 L 6 -2.40625 C 5.953125 -2.171875 5.84375 -1.375 5.6875 -1.140625 C 5.59375 -1.015625 4.78125 -1.015625 4.34375 -1.015625 L 1.6875 -1.015625 C 2.078125 -1.34375 2.953125 -2.265625 3.328125 -2.609375 C 5.515625 -4.625 6.3125 -5.359375 6.3125 -6.78125 C 6.3125 -8.4375 5 -9.53125 3.34375 -9.53125 C 1.671875 -9.53125 0.703125 -8.125 0.703125 -6.890625 C 0.703125 -6.15625 1.328125 -6.15625 1.375 -6.15625 C 1.671875 -6.15625 2.046875 -6.375 2.046875 -6.828125 C 2.046875 -7.234375 1.78125 -7.5 1.375 -7.5 C 1.25 -7.5 1.21875 -7.5 1.171875 -7.484375 C 1.453125 -8.46875 2.21875 -9.125 3.15625 -9.125 C 4.375 -9.125 5.125 -8.109375 5.125 -6.78125 C 5.125 -5.5625 4.421875 -4.5 3.59375 -3.578125 L 0.703125 -0.34375 L 0.703125 0 L 5.9375 0 Z M 6.3125 -2.40625 "/>
</symbol>
</g>
</defs>
<g id="surface1">
<path style="fill:none;stroke-width:1.19553;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,100%);stroke-opacity:0.3;stroke-miterlimit:10;" d="M -113.385125 -113.383812 L 113.384406 -113.383812 M -113.385125 -102.047875 L 113.384406 -102.047875 M -113.385125 -90.708031 L 113.384406 -90.708031 M -113.385125 -79.368187 L 113.384406 -79.368187 M -113.385125 -68.03225 L 113.384406 -68.03225 M -113.385125 -56.692406 L 113.384406 -56.692406 M -113.385125 -45.352562 L 113.384406 -45.352562 M -113.385125 -34.016625 L 113.384406 -34.016625 M -113.385125 -22.676781 L 113.384406 -22.676781 M -113.385125 -11.336937 L 113.384406 -11.336937 M -113.385125 -0.001 L 113.384406 -0.001 M -113.385125 11.338844 L 113.384406 11.338844 M -113.385125 22.678688 L 113.384406 22.678688 M -113.385125 34.014625 L 113.384406 34.014625 M -113.385125 45.354469 L 113.384406 45.354469 M -113.385125 56.694313 L 113.384406 56.694313 M -113.385125 68.03025 L 113.384406 68.03025 M -113.385125 79.370094 L 113.384406 79.370094 M -113.385125 90.709938 L 113.384406 90.709938 M -113.385125 102.045875 L 113.384406 102.045875 M -113.385125 113.381813 L 113.384406 113.381813 M -113.385125 -113.383812 L -113.385125 113.385719 M -102.045281 -113.383812 L -102.045281 113.385719 M -90.709344 -113.383812 L -90.709344 113.385719 M -79.3695 -113.383812 L -79.3695 113.385719 M -68.029656 -113.383812 L -68.029656 113.385719 M -56.693719 -113.383812 L -56.693719 113.385719 M -45.353875 -113.383812 L -45.353875 113.385719 M -34.014031 -113.383812 L -34.014031 113.385719 M -22.678094 -113.383812 L -22.678094 113.385719 M -11.33825 -113.383812 L -11.33825 113.385719 M 0.00159375 -113.383812 L 0.00159375 113.385719 M 11.337531 -113.383812 L 11.337531 113.385719 M 22.677375 -113.383812 L 22.677375 113.385719 M 34.017219 -113.383812 L 34.017219 113.385719 M 45.353156 -113.383812 L 45.353156 113.385719 M 56.693 -113.383812 L 56.693 113.385719 M 68.032844 -113.383812 L 68.032844 113.385719 M 79.368781 -113.383812 L 79.368781 113.385719 M 90.708625 -113.383812 L 90.708625 113.385719 M 102.048469 -113.383812 L 102.048469 113.385719 M 113.3805 -113.383812 L 113.3805 113.385719 " transform="matrix(1,0,0,-1,129.307,134.124)"/>
<path style="fill:none;stroke-width:1.19553;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -112.182 -0.001 L 112.181281 -0.001 " transform="matrix(1,0,0,-1,129.307,134.124)"/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 11.386719 134.125 C 13.085938 134.441406 15.847656 135.398438 17.761719 136.515625 L 17.761719 131.734375 C 15.847656 132.847656 13.085938 133.804688 11.386719 134.125 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 247.226562 134.125 C 245.527344 133.804688 242.765625 132.847656 240.851562 131.734375 L 240.851562 136.515625 C 242.765625 135.398438 245.527344 134.441406 247.226562 134.125 "/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
  <use xlink:href="#glyph0-1" x="251.145" y="137.212"/>
</g>
<path style="fill:none;stroke-width:1.19553;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 0.00159375 -112.180687 L 0.00159375 112.182594 " transform="matrix(1,0,0,-1,129.307,134.124)"/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 129.308594 252.042969 C 129.625 250.34375 130.582031 247.582031 131.699219 245.667969 L 126.914062 245.667969 C 128.03125 247.582031 128.988281 250.34375 129.308594 252.042969 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 129.308594 16.203125 C 128.988281 17.902344 128.03125 20.667969 126.914062 22.578125 L 131.699219 22.578125 C 130.582031 20.667969 129.625 17.902344 129.308594 16.203125 "/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
  <use xlink:href="#glyph0-2" x="125.625" y="9.497"/>
</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 -113.385125 2.268531 L -113.385125 -2.266625 " transform="matrix(1,0,0,-1,129.307,134.124)"/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
  <use xlink:href="#glyph1-1" x="3.32" y="149.157"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
  <use xlink:href="#glyph2-1" x="14.479" y="149.157"/>
  <use xlink:href="#glyph2-2" x="21.5029" y="149.157"/>
</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 -90.709344 2.268531 L -90.709344 -2.266625 " transform="matrix(1,0,0,-1,129.307,134.124)"/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
  <use xlink:href="#glyph1-1" x="29.509" y="149.157"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
  <use xlink:href="#glyph2-3" x="40.667" y="149.157"/>
</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 -68.029656 2.268531 L -68.029656 -2.266625 " transform="matrix(1,0,0,-1,129.307,134.124)"/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
  <use xlink:href="#glyph1-1" x="52.186" y="149.157"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
  <use xlink:href="#glyph2-4" x="63.344" y="149.157"/>
</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 -45.353875 2.268531 L -45.353875 -2.266625 " transform="matrix(1,0,0,-1,129.307,134.124)"/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
  <use xlink:href="#glyph1-1" x="74.863" y="149.157"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
  <use xlink:href="#glyph2-5" x="86.021" y="149.157"/>
</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 -22.678094 2.268531 L -22.678094 -2.266625 " transform="matrix(1,0,0,-1,129.307,134.124)"/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
  <use xlink:href="#glyph1-1" x="97.54" y="149.157"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
  <use xlink:href="#glyph2-6" x="108.698" y="149.157"/>
</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.00159375 2.268531 L 0.00159375 -2.266625 " transform="matrix(1,0,0,-1,129.307,134.124)"/>
<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 22.677375 2.268531 L 22.677375 -2.266625 " transform="matrix(1,0,0,-1,129.307,134.124)"/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
  <use xlink:href="#glyph2-6" x="148.472" y="149.157"/>
</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 45.353156 2.268531 L 45.353156 -2.266625 " transform="matrix(1,0,0,-1,129.307,134.124)"/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
  <use xlink:href="#glyph2-5" x="171.149" y="149.157"/>
</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 68.032844 2.268531 L 68.032844 -2.266625 " transform="matrix(1,0,0,-1,129.307,134.124)"/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
  <use xlink:href="#glyph2-4" x="193.826" y="149.157"/>
</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 90.708625 2.268531 L 90.708625 -2.266625 " transform="matrix(1,0,0,-1,129.307,134.124)"/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
  <use xlink:href="#glyph2-3" x="216.503" y="149.157"/>
</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 113.384406 2.268531 L 113.384406 -2.266625 " transform="matrix(1,0,0,-1,129.307,134.124)"/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
  <use xlink:href="#glyph2-1" x="235.668" y="149.157"/>
  <use xlink:href="#glyph2-2" x="242.6919" y="149.157"/>
</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 2.267219 -113.383812 L -2.267938 -113.383812 " transform="matrix(1,0,0,-1,129.307,134.124)"/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
  <use xlink:href="#glyph1-1" x="98.314" y="251.533"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
  <use xlink:href="#glyph2-1" x="109.473" y="251.533"/>
  <use xlink:href="#glyph2-2" x="116.4969" y="251.533"/>
</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 2.267219 -90.708031 L -2.267938 -90.708031 " transform="matrix(1,0,0,-1,129.307,134.124)"/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
  <use xlink:href="#glyph1-1" x="105.338" y="228.856"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
  <use xlink:href="#glyph2-3" x="116.496" y="228.856"/>
</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 2.267219 -68.03225 L -2.267938 -68.03225 " transform="matrix(1,0,0,-1,129.307,134.124)"/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
  <use xlink:href="#glyph1-1" x="105.338" y="206.179"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
  <use xlink:href="#glyph2-4" x="116.496" y="206.179"/>
</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 2.267219 -45.352562 L -2.267938 -45.352562 " transform="matrix(1,0,0,-1,129.307,134.124)"/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
  <use xlink:href="#glyph1-1" x="105.338" y="183.503"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
  <use xlink:href="#glyph2-5" x="116.496" y="183.503"/>
</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 2.267219 -22.676781 L -2.267938 -22.676781 " transform="matrix(1,0,0,-1,129.307,134.124)"/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
  <use xlink:href="#glyph1-1" x="105.338" y="160.826"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
  <use xlink:href="#glyph2-6" x="116.496" y="160.826"/>
</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 2.267219 -0.001 L -2.267938 -0.001 " transform="matrix(1,0,0,-1,129.307,134.124)"/>
<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 2.267219 22.678688 L -2.267938 22.678688 " transform="matrix(1,0,0,-1,129.307,134.124)"/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
  <use xlink:href="#glyph2-6" x="116.496" y="116.07"/>
</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 2.267219 45.354469 L -2.267938 45.354469 " transform="matrix(1,0,0,-1,129.307,134.124)"/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
  <use xlink:href="#glyph2-5" x="116.496" y="93.393"/>
</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 2.267219 68.03025 L -2.267938 68.03025 " transform="matrix(1,0,0,-1,129.307,134.124)"/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
  <use xlink:href="#glyph2-4" x="116.496" y="70.716"/>
</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 2.267219 90.709938 L -2.267938 90.709938 " transform="matrix(1,0,0,-1,129.307,134.124)"/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
  <use xlink:href="#glyph2-3" x="116.496" y="48.039"/>
</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 2.267219 113.385719 L -2.267938 113.385719 " transform="matrix(1,0,0,-1,129.307,134.124)"/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
  <use xlink:href="#glyph2-1" x="109.473" y="25.363"/>
  <use xlink:href="#glyph2-2" x="116.4969" y="25.363"/>
</g>
</g>
</svg>
</p> </p>
HTML for Canvas
<p> <p>The graph has three parts. It is a line on  <img class="equation_image" title=" \displaystyle (-\infty, -5] " src="/equation_images/%20%5Cdisplaystyle%20%28-%5Cinfty%2C%20-5%5D%20" alt="LaTeX:  \displaystyle (-\infty, -5] " data-equation-content=" \displaystyle (-\infty, -5] " /> , a parabola on  <img class="equation_image" title=" \displaystyle (-5,2) " src="/equation_images/%20%5Cdisplaystyle%20%28-5%2C2%29%20" alt="LaTeX:  \displaystyle (-5,2) " data-equation-content=" \displaystyle (-5,2) " /> , and a line on  <img class="equation_image" title=" \displaystyle [2, \infty) " src="/equation_images/%20%5Cdisplaystyle%20%5B2%2C%20%5Cinfty%29%20" alt="LaTeX:  \displaystyle [2, \infty) " data-equation-content=" \displaystyle [2, \infty) " /> .  Graphing each part gives:<br>
<?xml version="1.0" encoding="UTF-8"?>
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="262.448pt" height="256.049pt" viewBox="0 0 262.448 256.049" 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 6.796875 -5.859375 C 6.34375 -5.765625 6.171875 -5.421875 6.171875 -5.15625 C 6.171875 -4.8125 6.4375 -4.6875 6.640625 -4.6875 C 7.078125 -4.6875 7.375 -5.0625 7.375 -5.453125 C 7.375 -6.046875 6.6875 -6.328125 6.078125 -6.328125 C 5.203125 -6.328125 4.71875 -5.46875 4.59375 -5.1875 C 4.265625 -6.265625 3.375 -6.328125 3.109375 -6.328125 C 1.65625 -6.328125 0.875 -4.453125 0.875 -4.125 C 0.875 -4.078125 0.9375 -4 1.03125 -4 C 1.140625 -4 1.171875 -4.09375 1.203125 -4.140625 C 1.6875 -5.734375 2.65625 -6.03125 3.0625 -6.03125 C 3.71875 -6.03125 3.84375 -5.4375 3.84375 -5.09375 C 3.84375 -4.78125 3.765625 -4.453125 3.578125 -3.765625 L 3.09375 -1.796875 C 2.890625 -0.9375 2.46875 -0.140625 1.703125 -0.140625 C 1.640625 -0.140625 1.28125 -0.140625 0.96875 -0.328125 C 1.484375 -0.4375 1.609375 -0.859375 1.609375 -1.03125 C 1.609375 -1.3125 1.390625 -1.484375 1.125 -1.484375 C 0.78125 -1.484375 0.40625 -1.1875 0.40625 -0.734375 C 0.40625 -0.125 1.078125 0.140625 1.6875 0.140625 C 2.375 0.140625 2.875 -0.40625 3.171875 -0.984375 C 3.40625 -0.140625 4.109375 0.140625 4.640625 0.140625 C 6.109375 0.140625 6.890625 -1.734375 6.890625 -2.046875 C 6.890625 -2.125 6.828125 -2.1875 6.734375 -2.1875 C 6.609375 -2.1875 6.59375 -2.109375 6.5625 -2 C 6.171875 -0.734375 5.328125 -0.140625 4.6875 -0.140625 C 4.1875 -0.140625 3.921875 -0.515625 3.921875 -1.109375 C 3.921875 -1.421875 3.96875 -1.65625 4.203125 -2.59375 L 4.703125 -4.546875 C 4.921875 -5.40625 5.40625 -6.03125 6.0625 -6.03125 C 6.09375 -6.03125 6.5 -6.03125 6.796875 -5.859375 Z M 6.796875 -5.859375 "/>
</symbol>
<symbol overflow="visible" id="glyph0-2">
<path style="stroke:none;" d="M 3.765625 1.609375 C 3.390625 2.15625 2.828125 2.640625 2.125 2.640625 C 1.953125 2.640625 1.265625 2.609375 1.046875 1.953125 C 1.09375 1.96875 1.15625 1.96875 1.1875 1.96875 C 1.625 1.96875 1.90625 1.59375 1.90625 1.265625 C 1.90625 0.9375 1.640625 0.8125 1.421875 0.8125 C 1.1875 0.8125 0.6875 0.984375 0.6875 1.6875 C 0.6875 2.421875 1.3125 2.921875 2.125 2.921875 C 3.5625 2.921875 5 1.609375 5.40625 0.015625 L 6.8125 -5.578125 C 6.828125 -5.65625 6.859375 -5.734375 6.859375 -5.828125 C 6.859375 -6.03125 6.6875 -6.1875 6.46875 -6.1875 C 6.34375 -6.1875 6.03125 -6.125 5.921875 -5.6875 L 4.859375 -1.484375 C 4.796875 -1.21875 4.796875 -1.1875 4.671875 -1.03125 C 4.390625 -0.625 3.921875 -0.140625 3.234375 -0.140625 C 2.421875 -0.140625 2.359375 -0.9375 2.359375 -1.3125 C 2.359375 -2.140625 2.734375 -3.234375 3.125 -4.28125 C 3.28125 -4.6875 3.375 -4.890625 3.375 -5.171875 C 3.375 -5.78125 2.9375 -6.328125 2.234375 -6.328125 C 0.921875 -6.328125 0.390625 -4.25 0.390625 -4.125 C 0.390625 -4.078125 0.4375 -4 0.546875 -4 C 0.671875 -4 0.6875 -4.0625 0.75 -4.265625 C 1.09375 -5.46875 1.640625 -6.03125 2.1875 -6.03125 C 2.328125 -6.03125 2.5625 -6.03125 2.5625 -5.5625 C 2.5625 -5.1875 2.40625 -4.78125 2.1875 -4.234375 C 1.484375 -2.359375 1.484375 -1.875 1.484375 -1.53125 C 1.484375 -0.171875 2.46875 0.140625 3.1875 0.140625 C 3.59375 0.140625 4.109375 0.015625 4.625 -0.515625 L 4.640625 -0.5 C 4.421875 0.34375 4.28125 0.90625 3.765625 1.609375 Z M 3.765625 1.609375 "/>
</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 9.453125 -3.296875 C 9.703125 -3.296875 9.953125 -3.296875 9.953125 -3.578125 C 9.953125 -3.875 9.703125 -3.875 9.453125 -3.875 L 1.6875 -3.875 C 1.453125 -3.875 1.1875 -3.875 1.1875 -3.578125 C 1.1875 -3.296875 1.453125 -3.296875 1.6875 -3.296875 Z M 9.453125 -3.296875 "/>
</symbol>
<symbol overflow="visible" id="glyph2-0">
<path style="stroke:none;" d=""/>
</symbol>
<symbol overflow="visible" id="glyph2-1">
<path style="stroke:none;" d="M 4.125 -9.1875 C 4.125 -9.53125 4.125 -9.53125 3.84375 -9.53125 C 3.5 -9.15625 2.78125 -8.625 1.3125 -8.625 L 1.3125 -8.203125 C 1.640625 -8.203125 2.359375 -8.203125 3.140625 -8.578125 L 3.140625 -1.109375 C 3.140625 -0.59375 3.09375 -0.421875 1.84375 -0.421875 L 1.390625 -0.421875 L 1.390625 0 C 1.78125 -0.03125 3.171875 -0.03125 3.640625 -0.03125 C 4.109375 -0.03125 5.5 -0.03125 5.875 0 L 5.875 -0.421875 L 5.4375 -0.421875 C 4.171875 -0.421875 4.125 -0.59375 4.125 -1.109375 Z M 4.125 -9.1875 "/>
</symbol>
<symbol overflow="visible" id="glyph2-2">
<path style="stroke:none;" d="M 6.421875 -4.59375 C 6.421875 -5.78125 6.359375 -6.9375 5.84375 -8.03125 C 5.25 -9.21875 4.21875 -9.53125 3.515625 -9.53125 C 2.6875 -9.53125 1.65625 -9.125 1.140625 -7.9375 C 0.734375 -7.03125 0.59375 -6.140625 0.59375 -4.59375 C 0.59375 -3.203125 0.6875 -2.15625 1.203125 -1.140625 C 1.765625 -0.046875 2.75 0.296875 3.5 0.296875 C 4.75 0.296875 5.46875 -0.4375 5.875 -1.28125 C 6.390625 -2.359375 6.421875 -3.765625 6.421875 -4.59375 Z M 3.5 0.015625 C 3.046875 0.015625 2.109375 -0.25 1.84375 -1.8125 C 1.671875 -2.671875 1.671875 -3.765625 1.671875 -4.765625 C 1.671875 -5.9375 1.671875 -7 1.90625 -7.84375 C 2.15625 -8.8125 2.890625 -9.25 3.5 -9.25 C 4.046875 -9.25 4.875 -8.921875 5.15625 -7.6875 C 5.328125 -6.875 5.328125 -5.734375 5.328125 -4.765625 C 5.328125 -3.796875 5.328125 -2.71875 5.171875 -1.84375 C 4.90625 -0.265625 4 0.015625 3.5 0.015625 Z M 3.5 0.015625 "/>
</symbol>
<symbol overflow="visible" id="glyph2-3">
<path style="stroke:none;" d="M 4.28125 -5.171875 C 4.984375 -5.5625 6.03125 -6.21875 6.03125 -7.4375 C 6.03125 -8.671875 4.828125 -9.53125 3.515625 -9.53125 C 2.09375 -9.53125 0.96875 -8.484375 0.96875 -7.1875 C 0.96875 -6.703125 1.125 -6.203125 1.515625 -5.71875 C 1.671875 -5.53125 1.6875 -5.515625 2.703125 -4.8125 C 1.3125 -4.171875 0.59375 -3.21875 0.59375 -2.171875 C 0.59375 -0.640625 2.03125 0.296875 3.5 0.296875 C 5.09375 0.296875 6.421875 -0.875 6.421875 -2.375 C 6.421875 -3.84375 5.390625 -4.484375 4.28125 -5.171875 Z M 2.328125 -6.46875 C 2.140625 -6.59375 1.5625 -6.96875 1.5625 -7.671875 C 1.5625 -8.609375 2.53125 -9.1875 3.5 -9.1875 C 4.53125 -9.1875 5.453125 -8.453125 5.453125 -7.421875 C 5.453125 -6.546875 4.8125 -5.84375 3.984375 -5.375 Z M 3 -4.625 L 4.734375 -3.484375 C 5.109375 -3.234375 5.765625 -2.796875 5.765625 -1.921875 C 5.765625 -0.828125 4.65625 -0.09375 3.515625 -0.09375 C 2.296875 -0.09375 1.25 -0.96875 1.25 -2.171875 C 1.25 -3.28125 2.0625 -4.1875 3 -4.625 Z M 3 -4.625 "/>
</symbol>
<symbol overflow="visible" id="glyph2-4">
<path style="stroke:none;" d="M 1.765625 -4.984375 C 1.765625 -8.625 3.53125 -9.1875 4.296875 -9.1875 C 4.8125 -9.1875 5.328125 -9.03125 5.609375 -8.609375 C 5.4375 -8.609375 4.890625 -8.609375 4.890625 -8.015625 C 4.890625 -7.703125 5.109375 -7.4375 5.484375 -7.4375 C 5.84375 -7.4375 6.078125 -7.640625 6.078125 -8.0625 C 6.078125 -8.8125 5.53125 -9.53125 4.28125 -9.53125 C 2.484375 -9.53125 0.59375 -7.6875 0.59375 -4.53125 C 0.59375 -0.59375 2.3125 0.296875 3.53125 0.296875 C 5.09375 0.296875 6.421875 -1.0625 6.421875 -2.921875 C 6.421875 -4.828125 5.09375 -6.109375 3.65625 -6.109375 C 2.375 -6.109375 1.90625 -5 1.765625 -4.609375 Z M 3.53125 -0.09375 C 2.625 -0.09375 2.1875 -0.890625 2.0625 -1.1875 C 1.9375 -1.5625 1.796875 -2.265625 1.796875 -3.265625 C 1.796875 -4.40625 2.3125 -5.828125 3.59375 -5.828125 C 4.390625 -5.828125 4.8125 -5.296875 5.015625 -4.8125 C 5.25 -4.28125 5.25 -3.5625 5.25 -2.9375 C 5.25 -2.203125 5.25 -1.5625 4.984375 -1.015625 C 4.625 -0.328125 4.109375 -0.09375 3.53125 -0.09375 Z M 3.53125 -0.09375 "/>
</symbol>
<symbol overflow="visible" id="glyph2-5">
<path style="stroke:none;" d="M 5.171875 -9.34375 C 5.171875 -9.609375 5.171875 -9.6875 4.984375 -9.6875 C 4.859375 -9.6875 4.8125 -9.6875 4.703125 -9.515625 L 0.390625 -2.8125 L 0.390625 -2.390625 L 4.15625 -2.390625 L 4.15625 -1.09375 C 4.15625 -0.5625 4.125 -0.421875 3.078125 -0.421875 L 2.796875 -0.421875 L 2.796875 0 C 3.125 -0.03125 4.265625 -0.03125 4.65625 -0.03125 C 5.0625 -0.03125 6.203125 -0.03125 6.546875 0 L 6.546875 -0.421875 L 6.25 -0.421875 C 5.21875 -0.421875 5.171875 -0.5625 5.171875 -1.09375 L 5.171875 -2.390625 L 6.625 -2.390625 L 6.625 -2.8125 L 5.171875 -2.8125 Z M 4.234375 -8.21875 L 4.234375 -2.8125 L 0.75 -2.8125 Z M 4.234375 -8.21875 "/>
</symbol>
<symbol overflow="visible" id="glyph2-6">
<path style="stroke:none;" d="M 6.3125 -2.40625 L 6 -2.40625 C 5.953125 -2.171875 5.84375 -1.375 5.6875 -1.140625 C 5.59375 -1.015625 4.78125 -1.015625 4.34375 -1.015625 L 1.6875 -1.015625 C 2.078125 -1.34375 2.953125 -2.265625 3.328125 -2.609375 C 5.515625 -4.625 6.3125 -5.359375 6.3125 -6.78125 C 6.3125 -8.4375 5 -9.53125 3.34375 -9.53125 C 1.671875 -9.53125 0.703125 -8.125 0.703125 -6.890625 C 0.703125 -6.15625 1.328125 -6.15625 1.375 -6.15625 C 1.671875 -6.15625 2.046875 -6.375 2.046875 -6.828125 C 2.046875 -7.234375 1.78125 -7.5 1.375 -7.5 C 1.25 -7.5 1.21875 -7.5 1.171875 -7.484375 C 1.453125 -8.46875 2.21875 -9.125 3.15625 -9.125 C 4.375 -9.125 5.125 -8.109375 5.125 -6.78125 C 5.125 -5.5625 4.421875 -4.5 3.59375 -3.578125 L 0.703125 -0.34375 L 0.703125 0 L 5.9375 0 Z M 6.3125 -2.40625 "/>
</symbol>
</g>
</defs>
<g id="surface1">
<path style="fill:none;stroke-width:1.19553;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,100%);stroke-opacity:0.3;stroke-miterlimit:10;" d="M -113.385125 -113.383812 L 113.384406 -113.383812 M -113.385125 -102.047875 L 113.384406 -102.047875 M -113.385125 -90.708031 L 113.384406 -90.708031 M -113.385125 -79.368187 L 113.384406 -79.368187 M -113.385125 -68.03225 L 113.384406 -68.03225 M -113.385125 -56.692406 L 113.384406 -56.692406 M -113.385125 -45.352562 L 113.384406 -45.352562 M -113.385125 -34.016625 L 113.384406 -34.016625 M -113.385125 -22.676781 L 113.384406 -22.676781 M -113.385125 -11.336937 L 113.384406 -11.336937 M -113.385125 -0.001 L 113.384406 -0.001 M -113.385125 11.338844 L 113.384406 11.338844 M -113.385125 22.678688 L 113.384406 22.678688 M -113.385125 34.014625 L 113.384406 34.014625 M -113.385125 45.354469 L 113.384406 45.354469 M -113.385125 56.694313 L 113.384406 56.694313 M -113.385125 68.03025 L 113.384406 68.03025 M -113.385125 79.370094 L 113.384406 79.370094 M -113.385125 90.709938 L 113.384406 90.709938 M -113.385125 102.045875 L 113.384406 102.045875 M -113.385125 113.381813 L 113.384406 113.381813 M -113.385125 -113.383812 L -113.385125 113.385719 M -102.045281 -113.383812 L -102.045281 113.385719 M -90.709344 -113.383812 L -90.709344 113.385719 M -79.3695 -113.383812 L -79.3695 113.385719 M -68.029656 -113.383812 L -68.029656 113.385719 M -56.693719 -113.383812 L -56.693719 113.385719 M -45.353875 -113.383812 L -45.353875 113.385719 M -34.014031 -113.383812 L -34.014031 113.385719 M -22.678094 -113.383812 L -22.678094 113.385719 M -11.33825 -113.383812 L -11.33825 113.385719 M 0.00159375 -113.383812 L 0.00159375 113.385719 M 11.337531 -113.383812 L 11.337531 113.385719 M 22.677375 -113.383812 L 22.677375 113.385719 M 34.017219 -113.383812 L 34.017219 113.385719 M 45.353156 -113.383812 L 45.353156 113.385719 M 56.693 -113.383812 L 56.693 113.385719 M 68.032844 -113.383812 L 68.032844 113.385719 M 79.368781 -113.383812 L 79.368781 113.385719 M 90.708625 -113.383812 L 90.708625 113.385719 M 102.048469 -113.383812 L 102.048469 113.385719 M 113.3805 -113.383812 L 113.3805 113.385719 " transform="matrix(1,0,0,-1,129.307,134.124)"/>
<path style="fill:none;stroke-width:1.19553;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -112.182 -0.001 L 112.181281 -0.001 " transform="matrix(1,0,0,-1,129.307,134.124)"/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 11.386719 134.125 C 13.085938 134.441406 15.847656 135.398438 17.761719 136.515625 L 17.761719 131.734375 C 15.847656 132.847656 13.085938 133.804688 11.386719 134.125 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 247.226562 134.125 C 245.527344 133.804688 242.765625 132.847656 240.851562 131.734375 L 240.851562 136.515625 C 242.765625 135.398438 245.527344 134.441406 247.226562 134.125 "/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
  <use xlink:href="#glyph0-1" x="251.145" y="137.212"/>
</g>
<path style="fill:none;stroke-width:1.19553;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 0.00159375 -112.180687 L 0.00159375 112.182594 " transform="matrix(1,0,0,-1,129.307,134.124)"/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 129.308594 252.042969 C 129.625 250.34375 130.582031 247.582031 131.699219 245.667969 L 126.914062 245.667969 C 128.03125 247.582031 128.988281 250.34375 129.308594 252.042969 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 129.308594 16.203125 C 128.988281 17.902344 128.03125 20.667969 126.914062 22.578125 L 131.699219 22.578125 C 130.582031 20.667969 129.625 17.902344 129.308594 16.203125 "/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
  <use xlink:href="#glyph0-2" x="125.625" y="9.497"/>
</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 -113.385125 2.268531 L -113.385125 -2.266625 " transform="matrix(1,0,0,-1,129.307,134.124)"/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
  <use xlink:href="#glyph1-1" x="3.32" y="149.157"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
  <use xlink:href="#glyph2-1" x="14.479" y="149.157"/>
  <use xlink:href="#glyph2-2" x="21.5029" y="149.157"/>
</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 -90.709344 2.268531 L -90.709344 -2.266625 " transform="matrix(1,0,0,-1,129.307,134.124)"/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
  <use xlink:href="#glyph1-1" x="29.509" y="149.157"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
  <use xlink:href="#glyph2-3" x="40.667" y="149.157"/>
</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 -68.029656 2.268531 L -68.029656 -2.266625 " transform="matrix(1,0,0,-1,129.307,134.124)"/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
  <use xlink:href="#glyph1-1" x="52.186" y="149.157"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
  <use xlink:href="#glyph2-4" x="63.344" y="149.157"/>
</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 -45.353875 2.268531 L -45.353875 -2.266625 " transform="matrix(1,0,0,-1,129.307,134.124)"/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
  <use xlink:href="#glyph1-1" x="74.863" y="149.157"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
  <use xlink:href="#glyph2-5" x="86.021" y="149.157"/>
</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 -22.678094 2.268531 L -22.678094 -2.266625 " transform="matrix(1,0,0,-1,129.307,134.124)"/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
  <use xlink:href="#glyph1-1" x="97.54" y="149.157"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
  <use xlink:href="#glyph2-6" x="108.698" y="149.157"/>
</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.00159375 2.268531 L 0.00159375 -2.266625 " transform="matrix(1,0,0,-1,129.307,134.124)"/>
<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 22.677375 2.268531 L 22.677375 -2.266625 " transform="matrix(1,0,0,-1,129.307,134.124)"/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
  <use xlink:href="#glyph2-6" x="148.472" y="149.157"/>
</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 45.353156 2.268531 L 45.353156 -2.266625 " transform="matrix(1,0,0,-1,129.307,134.124)"/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
  <use xlink:href="#glyph2-5" x="171.149" y="149.157"/>
</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 68.032844 2.268531 L 68.032844 -2.266625 " transform="matrix(1,0,0,-1,129.307,134.124)"/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
  <use xlink:href="#glyph2-4" x="193.826" y="149.157"/>
</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 90.708625 2.268531 L 90.708625 -2.266625 " transform="matrix(1,0,0,-1,129.307,134.124)"/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
  <use xlink:href="#glyph2-3" x="216.503" y="149.157"/>
</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 113.384406 2.268531 L 113.384406 -2.266625 " transform="matrix(1,0,0,-1,129.307,134.124)"/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
  <use xlink:href="#glyph2-1" x="235.668" y="149.157"/>
  <use xlink:href="#glyph2-2" x="242.6919" y="149.157"/>
</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 2.267219 -113.383812 L -2.267938 -113.383812 " transform="matrix(1,0,0,-1,129.307,134.124)"/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
  <use xlink:href="#glyph1-1" x="98.314" y="251.533"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
  <use xlink:href="#glyph2-1" x="109.473" y="251.533"/>
  <use xlink:href="#glyph2-2" x="116.4969" y="251.533"/>
</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 2.267219 -90.708031 L -2.267938 -90.708031 " transform="matrix(1,0,0,-1,129.307,134.124)"/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
  <use xlink:href="#glyph1-1" x="105.338" y="228.856"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
  <use xlink:href="#glyph2-3" x="116.496" y="228.856"/>
</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 2.267219 -68.03225 L -2.267938 -68.03225 " transform="matrix(1,0,0,-1,129.307,134.124)"/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
  <use xlink:href="#glyph1-1" x="105.338" y="206.179"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
  <use xlink:href="#glyph2-4" x="116.496" y="206.179"/>
</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 2.267219 -45.352562 L -2.267938 -45.352562 " transform="matrix(1,0,0,-1,129.307,134.124)"/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
  <use xlink:href="#glyph1-1" x="105.338" y="183.503"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
  <use xlink:href="#glyph2-5" x="116.496" y="183.503"/>
</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 2.267219 -22.676781 L -2.267938 -22.676781 " transform="matrix(1,0,0,-1,129.307,134.124)"/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
  <use xlink:href="#glyph1-1" x="105.338" y="160.826"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
  <use xlink:href="#glyph2-6" x="116.496" y="160.826"/>
</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 2.267219 -0.001 L -2.267938 -0.001 " transform="matrix(1,0,0,-1,129.307,134.124)"/>
<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 2.267219 22.678688 L -2.267938 22.678688 " transform="matrix(1,0,0,-1,129.307,134.124)"/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
  <use xlink:href="#glyph2-6" x="116.496" y="116.07"/>
</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 2.267219 45.354469 L -2.267938 45.354469 " transform="matrix(1,0,0,-1,129.307,134.124)"/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
  <use xlink:href="#glyph2-5" x="116.496" y="93.393"/>
</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 2.267219 68.03025 L -2.267938 68.03025 " transform="matrix(1,0,0,-1,129.307,134.124)"/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
  <use xlink:href="#glyph2-4" x="116.496" y="70.716"/>
</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 2.267219 90.709938 L -2.267938 90.709938 " transform="matrix(1,0,0,-1,129.307,134.124)"/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
  <use xlink:href="#glyph2-3" x="116.496" y="48.039"/>
</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 2.267219 113.385719 L -2.267938 113.385719 " transform="matrix(1,0,0,-1,129.307,134.124)"/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
  <use xlink:href="#glyph2-1" x="109.473" y="25.363"/>
  <use xlink:href="#glyph2-2" x="116.4969" y="25.363"/>
</g>
<path style="fill:none;stroke-width:0.79701;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M -108.814813 -89.793969 L -113.224969 -90.676781 L -113.060906 -90.641625 L -112.896844 -90.610375 L -112.736688 -90.579125 L -112.572625 -90.547875 L -112.412469 -90.512719 L -112.248406 -90.481469 L -112.08825 -90.450219 L -111.924188 -90.415062 L -111.764031 -90.383812 L -111.599969 -90.352562 L -111.439813 -90.317406 L -111.111688 -90.254906 L -110.951531 -90.21975 L -110.787469 -90.1885 L -110.627313 -90.15725 L -110.46325 -90.126 L -110.303094 -90.090844 L -110.139031 -90.059594 L -109.978875 -90.028344 L -109.814813 -89.993187 L -109.654656 -89.961937 L -109.490594 -89.930687 L -109.326531 -89.895531 L -109.166375 -89.864281 L -109.002313 -89.833031 L -108.842156 -89.797875 L -108.678094 -89.766625 L -108.517938 -89.735375 L -108.353875 -89.700219 L -108.193719 -89.668969 L -108.029656 -89.637719 L -107.8695 -89.606469 L -107.705438 -89.571312 L -107.541375 -89.540062 L -107.381219 -89.508812 L -107.217156 -89.473656 L -107.057 -89.442406 L -106.892938 -89.411156 L -106.732781 -89.376 L -106.568719 -89.34475 L -106.408563 -89.3135 L -106.2445 -89.278344 L -106.084344 -89.247094 L -105.756219 -89.184594 L -105.596063 -89.149437 L -105.432 -89.118187 L -105.271844 -89.086937 L -105.107781 -89.051781 L -104.947625 -89.020531 L -104.783563 -88.989281 L -104.623406 -88.954125 L -104.459344 -88.922875 L -104.299188 -88.891625 L -104.135125 -88.856469 L -103.971063 -88.825219 L -103.810906 -88.793969 L -103.646844 -88.762719 L -103.486688 -88.727562 L -103.322625 -88.696312 L -103.162469 -88.665062 L -102.998406 -88.629906 L -102.83825 -88.598656 L -102.674188 -88.567406 L -102.514031 -88.53225 L -102.185906 -88.46975 L -102.02575 -88.434594 L -101.861688 -88.403344 L -101.701531 -88.372094 L -101.537469 -88.340844 L -101.377313 -88.305687 L -101.21325 -88.274437 L -101.053094 -88.243187 L -100.889031 -88.208031 L -100.728875 -88.176781 L -100.564813 -88.145531 L -100.40075 -88.110375 L -100.240594 -88.079125 L -100.076531 -88.047875 L -99.916375 -88.012719 L -99.752313 -87.981469 L -99.592156 -87.950219 L -99.428094 -87.915062 L -99.267938 -87.883812 L -99.103875 -87.852562 L -98.943719 -87.821312 L -98.779656 -87.786156 L -98.615594 -87.754906 L -98.455438 -87.723656 L -98.291375 -87.6885 L -98.131219 -87.65725 L -97.967156 -87.626 L -97.807 -87.590844 L -97.642938 -87.559594 L -97.482781 -87.528344 L -97.318719 -87.493187 L -97.158563 -87.461937 L -96.830438 -87.399437 L -96.670281 -87.364281 L -96.506219 -87.333031 L -96.346063 -87.301781 L -96.182 -87.266625 L -96.021844 -87.235375 L -95.857781 -87.204125 L -95.697625 -87.168969 L -95.533563 -87.137719 L -95.373406 -87.106469 L -95.209344 -87.071312 L -95.045281 -87.040062 L -94.885125 -87.008812 L -94.721063 -86.977562 L -94.560906 -86.942406 L -94.396844 -86.911156 L -94.236688 -86.879906 L -94.072625 -86.84475 L -93.912469 -86.8135 L -93.748406 -86.78225 L -93.58825 -86.747094 L -93.260125 -86.684594 L -93.099969 -86.649437 L -92.935906 -86.618187 L -92.77575 -86.586937 L -92.611688 -86.555687 L -92.451531 -86.520531 L -92.287469 -86.489281 L -92.127313 -86.458031 L -91.96325 -86.422875 L -91.803094 -86.391625 L -91.639031 -86.360375 L -91.474969 -86.325219 L -91.314813 -86.293969 L -91.15075 -86.262719 L -90.990594 -86.227562 L -90.826531 -86.196312 L -90.666375 -86.165062 L -90.502313 -86.133812 L -90.342156 -86.098656 L -90.178094 -86.067406 L -90.017938 -86.036156 L -89.853875 -86.001 L -89.693719 -85.96975 L -89.529656 -85.9385 L -89.365594 -85.903344 L -89.205438 -85.872094 L -89.041375 -85.840844 L -88.881219 -85.805687 L -88.717156 -85.774437 L -88.557 -85.743187 L -88.392938 -85.708031 L -88.232781 -85.676781 L -88.068719 -85.645531 L -87.908563 -85.614281 L -87.7445 -85.579125 L -87.580438 -85.547875 L -87.420281 -85.516625 L -87.256219 -85.481469 L -87.096063 -85.450219 L -86.932 -85.418969 L -86.771844 -85.383812 L -86.607781 -85.352562 L -86.447625 -85.321312 L -86.283563 -85.286156 L -86.123406 -85.254906 L -85.795281 -85.192406 L -85.635125 -85.15725 L -85.471063 -85.126 L -85.310906 -85.09475 L -85.146844 -85.059594 L -84.986688 -85.028344 L -84.822625 -84.997094 L -84.662469 -84.961937 L -84.498406 -84.930687 L -84.33825 -84.899437 L -84.174188 -84.864281 L -84.010125 -84.833031 L -83.849969 -84.801781 L -83.685906 -84.770531 L -83.52575 -84.735375 L -83.361688 -84.704125 L -83.201531 -84.672875 L -83.037469 -84.637719 L -82.877313 -84.606469 L -82.71325 -84.575219 L -82.553094 -84.540062 L -82.224969 -84.477562 L -82.064813 -84.442406 L -81.90075 -84.411156 L -81.740594 -84.379906 L -81.576531 -84.348656 L -81.416375 -84.3135 L -81.252313 -84.28225 L -81.092156 -84.251 L -80.928094 -84.215844 L -80.767938 -84.184594 L -80.603875 -84.153344 L -80.439813 -84.118187 L -80.279656 -84.086937 L -80.115594 -84.055687 L -79.955438 -84.020531 L -79.791375 -83.989281 L -79.631219 -83.958031 L -79.467156 -83.922875 L -79.307 -83.891625 L -79.142938 -83.860375 L -78.982781 -83.829125 L -78.818719 -83.793969 L -78.654656 -83.762719 L -78.4945 -83.731469 L -78.330438 -83.696312 L -78.170281 -83.665062 L -78.006219 -83.633812 L -77.846063 -83.598656 L -77.682 -83.567406 L -77.521844 -83.536156 L -77.357781 -83.501 L -77.197625 -83.46975 L -76.8695 -83.40725 L -76.709344 -83.372094 L -76.545281 -83.340844 L -76.385125 -83.309594 L -76.221063 -83.274437 L -76.060906 -83.243187 L -75.896844 -83.211937 L -75.736688 -83.176781 L -75.572625 -83.145531 L -75.412469 -83.114281 L -75.248406 -83.079125 L -75.084344 -83.047875 L -74.924188 -83.016625 L -74.760125 -82.985375 L -74.599969 -82.950219 L -74.435906 -82.918969 L -74.27575 -82.887719 L -74.111688 -82.852562 L -73.951531 -82.821312 L -73.787469 -82.790062 L -73.627313 -82.754906 L -73.299188 -82.692406 L -73.139031 -82.65725 L -72.974969 -82.626 L -72.814813 -82.59475 L -72.65075 -82.5635 L -72.490594 -82.528344 L -72.326531 -82.497094 L -72.166375 -82.465844 L -72.002313 -82.430687 L -71.842156 -82.399437 L -71.678094 -82.368187 L -71.514031 -82.333031 L -71.353875 -82.301781 L -71.189813 -82.270531 L -71.029656 -82.235375 L -70.865594 -82.204125 L -70.705438 -82.172875 L -70.541375 -82.137719 L -70.381219 -82.106469 L -70.217156 -82.075219 L -70.057 -82.043969 L -69.892938 -82.008812 L -69.728875 -81.977562 L -69.568719 -81.946312 L -69.404656 -81.911156 L -69.2445 -81.879906 L -69.080438 -81.848656 L -68.920281 -81.8135 L -68.756219 -81.78225 L -68.596063 -81.751 L -68.432 -81.715844 L -68.271844 -81.684594 L -67.943719 -81.622094 L -67.783563 -81.586937 L -67.6195 -81.555687 L -67.459344 -81.524437 L -67.295281 -81.489281 L -67.135125 -81.458031 L -66.971063 -81.426781 L -66.810906 -81.391625 L -66.646844 -81.360375 L -66.486688 -81.329125 L -66.322625 -81.293969 L -66.158563 -81.262719 L -65.998406 -81.231469 L -65.834344 -81.200219 L -65.674188 -81.165062 L -65.510125 -81.133812 L -65.349969 -81.102562 L -65.185906 -81.067406 L -65.02575 -81.036156 L -64.861688 -81.004906 L -64.701531 -80.96975 L -64.373406 -80.90725 L -64.21325 -80.872094 L -64.049188 -80.840844 L -63.889031 -80.809594 L -63.724969 -80.778344 L -63.564813 -80.743187 L -63.40075 -80.711937 L -63.240594 -80.680687 L -63.076531 -80.645531 L -62.916375 -80.614281 L -62.752313 -80.583031 L -62.58825 -80.547875 L -62.428094 -80.516625 L -62.264031 -80.485375 L -62.103875 -80.450219 L -61.939813 -80.418969 L -61.779656 -80.387719 L -61.615594 -80.352562 L -61.455438 -80.321312 L -61.291375 -80.290062 L -61.131219 -80.258812 L -60.967156 -80.223656 L -60.803094 -80.192406 L -60.642938 -80.161156 L -60.478875 -80.126 L -60.318719 -80.09475 L -60.154656 -80.0635 L -59.9945 -80.028344 L -59.830438 -79.997094 L -59.670281 -79.965844 L -59.506219 -79.930687 L -59.346063 -79.899437 L -59.017938 -79.836937 L -58.857781 -79.801781 L -58.693719 -79.770531 L -58.533563 -79.739281 L -58.3695 -79.704125 L -58.209344 -79.672875 L -58.045281 -79.641625 L -57.885125 -79.606469 L -57.721063 -79.575219 L -57.560906 -79.543969 L -57.396844 -79.508812 L -57.232781 -79.477562 L -57.072625 -79.446312 L -56.908563 -79.415062 L -56.748406 -79.379906 " transform="matrix(1,0,0,-1,129.307,134.124)"/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 15.921875 224.832031 C 17.328125 224.816406 19.679688 225.136719 21.382812 225.71875 L 20.617188 221.910156 C 19.273438 223.105469 17.226562 224.308594 15.921875 224.832031 "/>
<path style="fill:none;stroke-width:0.79701;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M -56.693719 22.678688 L -56.467156 23.131813 L -56.236688 23.581031 L -56.010125 24.034156 L -55.783563 24.479469 L -55.557 24.928688 L -55.330438 25.374 L -55.099969 25.815406 L -54.873406 26.256813 L -54.193719 27.569313 L -53.96325 28.002906 L -53.283563 29.291969 L -53.057 29.71775 L -52.826531 30.143531 L -52.373406 30.987281 L -51.920281 31.823219 L -51.689813 32.237281 L -51.236688 33.065406 L -51.010125 33.475563 L -50.783563 33.881813 L -50.553094 34.288063 L -50.326531 34.694313 L -50.099969 35.096656 L -49.873406 35.495094 L -49.646844 35.897438 L -49.416375 36.291969 L -49.189813 36.690406 L -48.96325 37.081031 L -48.736688 37.475563 L -48.510125 37.862281 L -48.279656 38.252906 L -48.053094 38.639625 L -47.373406 39.788063 L -47.142938 40.166969 L -46.46325 41.291969 L -46.236688 41.663063 L -46.006219 42.034156 L -45.553094 42.768531 L -45.099969 43.495094 L -44.8695 43.854469 L -44.416375 44.573219 L -44.189813 44.924781 L -43.96325 45.28025 L -43.732781 45.631813 L -43.506219 45.983375 L -43.279656 46.331031 L -42.826531 47.018531 L -42.596063 47.362281 L -42.142938 48.041969 L -41.689813 48.713844 L -41.459344 49.049781 L -41.232781 49.377906 L -41.006219 49.709938 L -40.779656 50.038063 L -40.553094 50.362281 L -40.322625 50.6865 L -40.096063 51.010719 L -39.642938 51.651344 L -39.416375 51.96775 L -39.185906 52.284156 L -38.732781 52.909156 L -38.279656 53.526344 L -38.049188 53.831031 L -37.822625 54.135719 L -37.142938 55.038063 L -36.912469 55.334938 L -36.232781 56.213844 L -36.006219 56.502906 L -35.77575 56.791969 L -35.322625 57.362281 L -34.8695 57.924781 L -34.639031 58.202125 L -34.185906 58.756813 L -33.959344 59.03025 L -33.732781 59.299781 L -33.502313 59.569313 L -33.27575 59.838844 L -33.049188 60.104469 L -32.596063 60.627906 L -32.365594 60.889625 L -31.912469 61.40525 L -31.232781 62.166969 L -31.002313 62.416969 L -30.549188 62.909156 L -30.096063 63.393531 L -29.865594 63.635719 L -29.412469 64.112281 L -29.185906 64.346656 L -28.959344 64.577125 L -28.728875 64.8115 L -28.502313 65.038063 L -28.27575 65.268531 L -28.049188 65.495094 L -27.822625 65.71775 L -27.592156 65.940406 L -26.912469 66.596656 L -26.685906 66.8115 L -26.455438 67.022438 L -26.002313 67.444313 L -25.549188 67.858375 L -25.318719 68.0615 L -25.092156 68.264625 L -24.639031 68.663063 L -24.412469 68.858375 L -24.182 69.053688 L -23.502313 69.627906 L -23.27575 69.815406 L -23.045281 70.002906 L -22.818719 70.1865 L -22.139031 70.725563 L -21.908563 70.901344 L -21.682 71.077125 L -21.228875 71.420875 L -21.002313 71.588844 L -20.771844 71.756813 L -20.545281 71.924781 L -20.318719 72.088844 L -19.865594 72.409156 L -19.635125 72.569313 L -19.408563 72.725563 L -19.182 72.877906 L -18.955438 73.034156 L -18.728875 73.182594 L -18.498406 73.334938 L -18.271844 73.479469 L -18.045281 73.627906 L -17.818719 73.768531 L -17.592156 73.913063 L -17.361688 74.053688 L -16.908563 74.327125 L -16.455438 74.59275 L -16.224969 74.725563 L -15.771844 74.983375 L -15.318719 75.233375 L -15.08825 75.354469 L -14.861688 75.471656 L -14.635125 75.59275 L -14.408563 75.709938 L -14.182 75.823219 L -13.951531 75.9365 L -13.271844 76.264625 L -13.045281 76.370094 L -12.814813 76.471656 L -12.361688 76.674781 L -11.908563 76.870094 L -11.678094 76.963844 L -11.451531 77.057594 L -10.998406 77.237281 L -10.771844 77.323219 L -10.541375 77.409156 L -9.861688 77.65525 L -9.635125 77.733375 L -9.404656 77.807594 L -9.178094 77.885719 L -8.498406 78.096656 L -8.267938 78.163063 L -8.041375 78.229469 L -7.58825 78.354469 L -7.361688 78.413063 L -7.131219 78.471656 L -6.904656 78.53025 L -6.678094 78.584938 L -6.224969 78.6865 L -5.9945 78.737281 L -5.767938 78.784156 L -5.08825 78.913063 L -4.857781 78.952125 L -4.631219 78.991188 L -3.951531 79.096656 L -3.721063 79.124 L -3.4945 79.15525 L -3.267938 79.182594 L -2.814813 79.229469 L -2.584344 79.252906 L -2.357781 79.272438 L -2.131219 79.288063 L -1.904656 79.307594 L -1.678094 79.319313 L -1.447625 79.331031 L -0.9945 79.354469 L -0.767938 79.358375 L -0.541375 79.366188 L -0.310906 79.370094 L 0.142219 79.370094 L 0.595344 79.362281 L 0.825812 79.358375 L 1.278937 79.34275 L 1.5055 79.331031 L 1.732062 79.315406 L 1.958625 79.303688 L 2.189094 79.284156 L 2.415656 79.268531 L 2.642219 79.245094 L 2.868781 79.225563 L 3.095344 79.202125 L 3.325812 79.174781 L 3.552375 79.147438 L 4.232062 79.053688 L 4.462531 79.018531 L 4.689094 78.983375 L 4.915656 78.944313 L 5.142219 78.901344 L 5.368781 78.862281 L 5.59925 78.815406 L 5.825812 78.772438 L 6.052375 78.725563 L 6.5055 78.624 L 6.735969 78.569313 L 7.189094 78.459938 L 7.415656 78.401344 L 7.642219 78.338844 L 7.872687 78.276344 L 8.09925 78.213844 L 8.552375 78.081031 L 8.778937 78.010719 L 9.009406 77.940406 L 9.462531 77.791969 L 9.915656 77.635719 L 10.146125 77.553688 L 10.59925 77.389625 L 10.825812 77.303688 L 11.052375 77.213844 L 11.282844 77.124 L 11.509406 77.034156 L 11.962531 76.846656 L 12.189094 76.749 L 12.419562 76.651344 L 12.872687 76.448219 L 13.325812 76.237281 L 13.556281 76.127906 L 14.009406 75.909156 L 14.235969 75.795875 L 14.462531 75.678688 L 14.693 75.5615 L 14.919562 75.444313 L 15.372687 75.202125 L 15.59925 75.077125 L 15.829719 74.952125 L 16.282844 74.694313 L 16.735969 74.428688 L 16.966437 74.291969 L 17.419562 74.018531 L 17.646125 73.877906 L 17.872687 73.733375 L 18.103156 73.588844 L 18.329719 73.444313 L 18.782844 73.147438 L 19.009406 72.995094 L 19.239875 72.84275 L 19.693 72.53025 L 20.146125 72.209938 L 20.376594 72.045875 L 20.829719 71.71775 L 21.056281 71.549781 L 21.282844 71.377906 L 21.513312 71.206031 L 21.739875 71.034156 L 22.193 70.682594 L 22.419562 70.502906 L 22.650031 70.323219 " transform="matrix(1,0,0,-1,129.307,134.124)"/>
<path style="fill:none;stroke-width:0.79701;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 22.677375 -27.211937 L 22.935187 -27.004906 L 23.458625 -26.590844 L 23.716437 -26.379906 L 23.978156 -26.172875 L 24.235969 -25.965844 L 24.497687 -25.758812 L 24.7555 -25.547875 L 25.017219 -25.340844 L 25.275031 -25.133812 L 25.53675 -24.926781 L 25.794562 -24.71975 L 26.056281 -24.508812 L 26.314094 -24.301781 L 26.575812 -24.09475 L 26.833625 -23.887719 L 27.095344 -23.676781 L 27.353156 -23.46975 L 27.614875 -23.262719 L 27.872687 -23.055687 L 28.134406 -22.848656 L 28.392219 -22.637719 L 28.915656 -22.223656 L 29.173469 -22.016625 L 29.435187 -21.805687 L 29.693 -21.598656 L 29.954719 -21.391625 L 30.212531 -21.184594 L 30.47425 -20.977562 L 30.732062 -20.766625 L 30.993781 -20.559594 L 31.251594 -20.352562 L 31.513312 -20.145531 L 31.771125 -19.934594 L 32.032844 -19.727562 L 32.290656 -19.520531 L 32.552375 -19.3135 L 32.810187 -19.106469 L 33.071906 -18.895531 L 33.329719 -18.6885 L 33.853156 -18.274437 L 34.110969 -18.0635 L 34.372687 -17.856469 L 34.6305 -17.649437 L 34.892219 -17.442406 L 35.150031 -17.235375 L 35.41175 -17.024437 L 35.669562 -16.817406 L 35.931281 -16.610375 L 36.189094 -16.403344 L 36.450812 -16.192406 L 36.708625 -15.985375 L 36.970344 -15.778344 L 37.228156 -15.571312 L 37.489875 -15.364281 L 37.747687 -15.153344 L 38.009406 -14.946312 L 38.267219 -14.739281 L 38.790656 -14.325219 L 39.048469 -14.114281 L 39.310187 -13.90725 L 39.568 -13.700219 L 39.829719 -13.493187 L 40.087531 -13.28225 L 40.34925 -13.075219 L 40.607062 -12.868187 L 40.868781 -12.661156 L 41.126594 -12.454125 L 41.388312 -12.243187 L 41.646125 -12.036156 L 41.907844 -11.829125 L 42.165656 -11.622094 L 42.427375 -11.411156 L 42.685187 -11.204125 L 42.946906 -10.997094 L 43.204719 -10.790062 L 43.466437 -10.583031 L 43.72425 -10.372094 L 44.247687 -9.958031 L 44.5055 -9.751 L 44.767219 -9.540062 L 45.025031 -9.333031 L 45.28675 -9.126 L 45.544562 -8.918969 L 45.806281 -8.711937 L 46.064094 -8.501 L 46.325812 -8.293969 L 46.583625 -8.086937 L 46.845344 -7.879906 L 47.103156 -7.668969 L 47.364875 -7.461937 L 47.622687 -7.254906 L 47.884406 -7.047875 L 48.142219 -6.840844 L 48.403937 -6.629906 L 48.66175 -6.422875 L 49.185187 -6.008812 L 49.443 -5.797875 L 49.704719 -5.590844 L 49.962531 -5.383812 L 50.22425 -5.176781 L 50.482062 -4.96975 L 50.743781 -4.758812 L 51.001594 -4.551781 L 51.263312 -4.34475 L 51.521125 -4.137719 L 51.782844 -3.930687 L 52.040656 -3.71975 L 52.302375 -3.512719 L 52.560187 -3.305687 L 52.821906 -3.098656 L 53.079719 -2.887719 L 53.341437 -2.680687 L 53.59925 -2.473656 L 53.860969 -2.266625 L 54.122687 -2.055687 L 54.3805 -1.848656 L 54.642219 -1.641625 L 54.900031 -1.434594 L 55.16175 -1.227562 L 55.419562 -1.016625 L 55.681281 -0.809594 L 55.939094 -0.602562 L 56.200812 -0.395531 L 56.458625 -0.1885 L 56.720344 0.0224375 L 56.978156 0.229469 L 57.239875 0.4365 L 57.497687 0.643531 L 57.759406 0.854469 L 58.017219 1.0615 L 58.278937 1.268531 L 58.53675 1.475563 L 58.798469 1.682594 L 59.056281 1.893531 L 59.579719 2.307594 L 59.837531 2.514625 L 60.09925 2.725563 L 60.357062 2.932594 L 60.618781 3.139625 L 60.876594 3.346656 L 61.138312 3.553688 L 61.396125 3.764625 L 61.657844 3.971656 L 61.915656 4.178688 L 62.177375 4.385719 L 62.435187 4.596656 L 62.696906 4.803688 L 62.954719 5.010719 L 63.216437 5.21775 L 63.47425 5.424781 L 63.735969 5.635719 L 63.993781 5.84275 L 64.517219 6.256813 L 64.775031 6.46775 L 65.03675 6.674781 L 65.294562 6.881813 L 65.556281 7.088844 L 65.814094 7.295875 L 66.075812 7.506813 L 66.333625 7.713844 L 66.595344 7.920875 L 66.853156 8.127906 L 67.114875 8.338844 L 67.372687 8.545875 L 67.634406 8.752906 L 67.892219 8.959938 L 68.153937 9.166969 L 68.41175 9.377906 L 68.673469 9.584938 L 68.931281 9.791969 L 69.193 9.999 L 69.450812 10.206031 L 69.712531 10.416969 L 69.97425 10.624 L 70.232062 10.831031 L 70.493781 11.038063 L 70.751594 11.249 L 71.013312 11.456031 L 71.271125 11.663063 L 71.532844 11.870094 L 71.790656 12.077125 L 72.052375 12.288063 L 72.310187 12.495094 L 72.571906 12.702125 L 72.829719 12.909156 L 73.091437 13.120094 L 73.34925 13.327125 L 73.610969 13.534156 L 73.868781 13.741188 L 74.1305 13.948219 L 74.388312 14.159156 L 74.91175 14.573219 L 75.169562 14.78025 L 75.431281 14.991188 L 75.689094 15.198219 L 75.950812 15.40525 L 76.208625 15.612281 L 76.470344 15.819313 L 76.728156 16.03025 L 76.989875 16.237281 L 77.247687 16.444313 L 77.509406 16.651344 L 77.767219 16.862281 L 78.028937 17.069313 L 78.28675 17.276344 L 78.548469 17.483375 L 78.806281 17.690406 L 79.068 17.901344 L 79.325812 18.108375 L 79.84925 18.522438 L 80.107062 18.733375 L 80.368781 18.940406 L 80.626594 19.147438 L 80.888312 19.354469 L 81.146125 19.5615 L 81.407844 19.772438 L 81.665656 19.979469 L 81.927375 20.1865 L 82.185187 20.393531 L 82.446906 20.600563 L 82.704719 20.8115 L 82.966437 21.018531 L 83.22425 21.225563 L 83.485969 21.432594 L 83.743781 21.643531 L 84.0055 21.850563 L 84.263312 22.057594 L 84.525031 22.264625 L 84.782844 22.475563 L 85.306281 22.889625 L 85.564094 23.096656 L 85.825812 23.303688 L 86.083625 23.514625 L 86.345344 23.721656 L 86.603156 23.928688 L 86.864875 24.135719 L 87.122687 24.34275 L 87.384406 24.553688 L 87.642219 24.760719 L 87.903937 24.96775 L 88.16175 25.174781 L 88.423469 25.385719 L 88.681281 25.59275 L 88.943 25.799781 L 89.200812 26.006813 L 89.462531 26.213844 L 89.720344 26.424781 L 90.243781 26.838844 L 90.501594 27.045875 L 90.763312 27.256813 L 91.021125 27.463844 L 91.282844 27.670875 L 91.540656 27.877906 L 91.802375 28.084938 L 92.060187 28.295875 L 92.321906 28.502906 L 92.579719 28.709938 L 92.841437 28.916969 L 93.09925 29.127906 L 93.360969 29.334938 L 93.618781 29.541969 L 93.8805 29.749 L 94.138312 29.956031 L 94.400031 30.166969 L 94.657844 30.374 L 95.181281 30.788063 L 95.439094 30.999 L 95.700812 31.206031 L 95.958625 31.413063 L 96.220344 31.620094 L 96.478156 31.827125 L 96.739875 32.038063 L 96.997687 32.245094 L 97.259406 32.452125 L 97.517219 32.659156 L 97.778937 32.870094 L 98.03675 33.077125 L 98.298469 33.284156 L 98.556281 33.491188 L 98.818 33.698219 L 99.075812 33.909156 L 99.337531 34.116188 L 99.595344 34.323219 L 99.857062 34.53025 L 100.114875 34.737281 L 100.376594 34.948219 L 100.638312 35.15525 L 100.896125 35.362281 L 101.157844 35.569313 L 101.415656 35.78025 L 101.677375 35.987281 L 101.935187 36.194313 L 102.196906 36.401344 L 102.454719 36.608375 L 102.716437 36.819313 L 102.97425 37.026344 L 103.235969 37.233375 L 103.493781 37.440406 L 103.7555 37.651344 L 104.013312 37.858375 L 104.275031 38.065406 L 104.532844 38.272438 L 104.794562 38.479469 L 105.052375 38.690406 L 105.575812 39.104469 L 105.833625 39.3115 L 106.095344 39.522438 L 106.353156 39.729469 L 106.614875 39.9365 L 106.872687 40.143531 L 107.134406 40.350563 L 107.392219 40.5615 L 107.653937 40.768531 L 107.91175 40.975563 L 108.173469 41.182594 L 108.431281 41.393531 L 108.693 41.600563 L 108.950812 41.807594 L 109.212531 42.014625 L 109.470344 42.221656 L 109.732062 42.432594 L 109.989875 42.639625 L 110.513312 43.053688 L 110.771125 43.264625 L 111.032844 43.471656 L 111.290656 43.678688 L 111.552375 43.885719 L 111.810187 44.09275 L 112.071906 44.303688 L 112.329719 44.510719 L 112.591437 44.71775 L 112.84925 44.924781 L 113.110969 45.135719 L 109.728156 42.428688 " transform="matrix(1,0,0,-1,129.307,134.124)"/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 242.675781 88.78125 C 241.4375 89.441406 239.199219 90.238281 237.417969 90.503906 L 239.847656 93.535156 C 240.492188 91.855469 241.761719 89.847656 242.675781 88.78125 "/>
<path style="fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -54.701531 -79.368187 C -54.701531 -78.270531 -55.592156 -77.376 -56.693719 -77.376 C -57.791375 -77.376 -58.685906 -78.270531 -58.685906 -79.368187 C -58.685906 -80.46975 -57.791375 -81.364281 -56.693719 -81.364281 C -55.592156 -81.364281 -54.701531 -80.46975 -54.701531 -79.368187 Z M -54.701531 -79.368187 " transform="matrix(1,0,0,-1,129.307,134.124)"/>
<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -54.701531 22.678688 C -54.701531 23.776344 -55.592156 24.670875 -56.693719 24.670875 C -57.791375 24.670875 -58.685906 23.776344 -58.685906 22.678688 C -58.685906 21.577125 -57.791375 20.6865 -56.693719 20.6865 C -55.592156 20.6865 -54.701531 21.577125 -54.701531 22.678688 Z M -54.701531 22.678688 " transform="matrix(1,0,0,-1,129.307,134.124)"/>
<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 24.669562 70.299781 C 24.669562 71.401344 23.778937 72.291969 22.677375 72.291969 C 21.575812 72.291969 20.685187 71.401344 20.685187 70.299781 C 20.685187 69.198219 21.575812 68.307594 22.677375 68.307594 C 23.778937 68.307594 24.669562 69.198219 24.669562 70.299781 Z M 24.669562 70.299781 " transform="matrix(1,0,0,-1,129.307,134.124)"/>
<path style="fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 24.669562 -27.211937 C 24.669562 -26.110375 23.778937 -25.21975 22.677375 -25.21975 C 21.575812 -25.21975 20.685187 -26.110375 20.685187 -27.211937 C 20.685187 -28.3135 21.575812 -29.204125 22.677375 -29.204125 C 23.778937 -29.204125 24.669562 -28.3135 24.669562 -27.211937 Z M 24.669562 -27.211937 " transform="matrix(1,0,0,-1,129.307,134.124)"/>
</g>
</svg>
</p> </p>