\(\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{3 x}{5} + 7,& x \leq -2\\ \frac{4 \left(x - 2\right)^{2}}{5} - 8,& -2 < x < 4\\ \frac{3 x}{5} + 1,& x \geq 4 \\ \end{cases}\)


The graph has three parts. It is a line on \(\displaystyle (-\infty, -2]\), a parabola on \(\displaystyle (-2,4)\), and a line on \(\displaystyle [4, \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}:{-2.0}, latex-, samples =350] plot(\x, {3*(\x)/5 + 7});
	\draw[thick, color=blue, domain={-2.0}:{4.0}, samples =350] plot(\x, {4*((\x) - 2)^2/5 - 8});
	\draw[thick, color=blue, domain={4.0}:{10.0}, -latex, samples =350] plot(\x, {3*(\x)/5 + 1});
		\draw[fill=black] (-2,29/5) circle (5pt);
		\draw[fill=white] (-2,24/5) circle (5pt);
		\draw[fill=white] (4,-24/5) circle (5pt);
		\draw[fill=black] (4,17/5) circle (5pt);
\end{tikzpicture}

Download \(\LaTeX\)

\begin{question}Graph the function $f(x)=\begin{cases} \frac{3 x}{5} + 7,& x \leq -2\\ \frac{4 \left(x - 2\right)^{2}}{5} - 8,& -2 < x < 4\\ \frac{3 x}{5} + 1,& x \geq 4 \\ \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, -2]$, a parabola on $(-2,4)$, and a line on $[4, \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}:{-2.0}, latex-, samples =350] plot(\x, {3*(\x)/5 + 7});
	\draw[thick, color=blue, domain={-2.0}:{4.0}, samples =350] plot(\x, {4*((\x) - 2)^2/5 - 8});
	\draw[thick, color=blue, domain={4.0}:{10.0}, -latex, samples =350] plot(\x, {3*(\x)/5 + 1});
		\draw[fill=black] (-2,29/5) circle (5pt);
		\draw[fill=white] (-2,24/5) circle (5pt);
		\draw[fill=white] (4,-24/5) circle (5pt);
		\draw[fill=black] (4,17/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{3 x}{5} + 7,& x \leq -2\\ \frac{4 \left(x - 2\right)^{2}}{5} - 8,& -2 < x < 4\\ \frac{3 x}{5} + 1,& x \geq 4 \\ \end{cases} " src="/equation_images/%20%5Cdisplaystyle%20f%28x%29%3D%5Cbegin%7Bcases%7D%20%5Cfrac%7B3%20x%7D%7B5%7D%20%2B%207%2C%26%20x%20%5Cleq%20-2%5C%5C%20%5Cfrac%7B4%20%5Cleft%28x%20-%202%5Cright%29%5E%7B2%7D%7D%7B5%7D%20-%208%2C%26%20-2%20%3C%20x%20%3C%204%5C%5C%20%5Cfrac%7B3%20x%7D%7B5%7D%20%2B%201%2C%26%20x%20%5Cgeq%204%20%5C%5C%20%5Cend%7Bcases%7D%20" alt="LaTeX:  \displaystyle f(x)=\begin{cases} \frac{3 x}{5} + 7,& x \leq -2\\ \frac{4 \left(x - 2\right)^{2}}{5} - 8,& -2 < x < 4\\ \frac{3 x}{5} + 1,& x \geq 4 \\ \end{cases} " data-equation-content=" \displaystyle f(x)=\begin{cases} \frac{3 x}{5} + 7,& x \leq -2\\ \frac{4 \left(x - 2\right)^{2}}{5} - 8,& -2 < x < 4\\ \frac{3 x}{5} + 1,& x \geq 4 \\ \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, -2] " src="/equation_images/%20%5Cdisplaystyle%20%28-%5Cinfty%2C%20-2%5D%20" alt="LaTeX:  \displaystyle (-\infty, -2] " data-equation-content=" \displaystyle (-\infty, -2] " /> , a parabola on  <img class="equation_image" title=" \displaystyle (-2,4) " src="/equation_images/%20%5Cdisplaystyle%20%28-2%2C4%29%20" alt="LaTeX:  \displaystyle (-2,4) " data-equation-content=" \displaystyle (-2,4) " /> , and a line on  <img class="equation_image" title=" \displaystyle [4, \infty) " src="/equation_images/%20%5Cdisplaystyle%20%5B4%2C%20%5Cinfty%29%20" alt="LaTeX:  \displaystyle [4, \infty) " data-equation-content=" \displaystyle [4, \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 -109.389031 13.737281 L -113.127313 11.495094 L -112.865594 11.651344 L -112.607781 11.807594 L -112.346063 11.963844 L -112.084344 12.116188 L -111.826531 12.272438 L -111.564813 12.428688 L -111.307 12.584938 L -111.045281 12.741188 L -110.787469 12.897438 L -110.52575 13.053688 L -110.267938 13.209938 L -110.006219 13.366188 L -109.748406 13.522438 L -109.486688 13.678688 L -109.228875 13.834938 L -108.967156 13.991188 L -108.709344 14.143531 L -108.447625 14.299781 L -108.189813 14.456031 L -107.928094 14.612281 L -107.670281 14.768531 L -107.146844 15.081031 L -106.889031 15.237281 L -106.627313 15.393531 L -106.3695 15.549781 L -106.107781 15.706031 L -105.849969 15.858375 L -105.58825 16.014625 L -105.330438 16.170875 L -105.068719 16.327125 L -104.810906 16.483375 L -104.549188 16.639625 L -104.291375 16.795875 L -104.029656 16.952125 L -103.771844 17.108375 L -103.510125 17.264625 L -103.252313 17.420875 L -102.990594 17.577125 L -102.732781 17.729469 L -102.471063 17.885719 L -102.21325 18.041969 L -101.689813 18.354469 L -101.432 18.510719 L -101.170281 18.666969 L -100.912469 18.823219 L -100.65075 18.979469 L -100.392938 19.135719 L -100.131219 19.291969 L -99.873406 19.448219 L -99.611688 19.600563 L -99.353875 19.756813 L -99.092156 19.913063 L -98.834344 20.069313 L -98.572625 20.225563 L -98.314813 20.381813 L -98.053094 20.538063 L -97.795281 20.694313 L -97.533563 20.850563 L -97.27575 21.006813 L -96.752313 21.319313 L -96.4945 21.471656 L -96.232781 21.627906 L -95.974969 21.784156 L -95.71325 21.940406 L -95.455438 22.096656 L -95.193719 22.252906 L -94.935906 22.409156 L -94.674188 22.565406 L -94.416375 22.721656 L -94.154656 22.877906 L -93.896844 23.034156 L -93.635125 23.190406 L -93.377313 23.34275 L -93.115594 23.499 L -92.857781 23.65525 L -92.596063 23.8115 L -92.33825 23.96775 L -91.814813 24.28025 L -91.557 24.4365 L -91.295281 24.59275 L -91.037469 24.749 L -90.77575 24.90525 L -90.517938 25.057594 L -90.256219 25.213844 L -89.998406 25.370094 L -89.736688 25.526344 L -89.478875 25.682594 L -89.217156 25.838844 L -88.959344 25.995094 L -88.697625 26.151344 L -88.439813 26.307594 L -88.178094 26.463844 L -87.920281 26.620094 L -87.658563 26.776344 L -87.40075 26.928688 L -87.139031 27.084938 L -86.881219 27.241188 L -86.357781 27.553688 L -86.099969 27.709938 L -85.83825 27.866188 L -85.580438 28.022438 L -85.318719 28.178688 L -85.060906 28.334938 L -84.799188 28.491188 L -84.541375 28.647438 L -84.279656 28.799781 L -84.021844 28.956031 L -83.760125 29.112281 L -83.502313 29.268531 L -83.240594 29.424781 L -82.982781 29.581031 L -82.721063 29.737281 L -82.46325 29.893531 L -82.201531 30.049781 L -81.943719 30.206031 L -81.420281 30.518531 L -81.162469 30.670875 L -80.90075 30.827125 L -80.642938 30.983375 L -80.381219 31.139625 L -80.123406 31.295875 L -79.861688 31.452125 L -79.603875 31.608375 L -79.342156 31.764625 L -79.084344 31.920875 L -78.822625 32.077125 L -78.564813 32.233375 L -78.303094 32.385719 L -78.045281 32.541969 L -77.783563 32.698219 L -77.52575 32.854469 L -77.264031 33.010719 L -77.006219 33.166969 L -76.482781 33.479469 L -76.224969 33.635719 L -75.96325 33.791969 L -75.705438 33.948219 L -75.443719 34.104469 L -75.185906 34.256813 L -74.924188 34.413063 L -74.666375 34.569313 L -74.404656 34.725563 L -74.146844 34.881813 L -73.885125 35.038063 L -73.627313 35.194313 L -73.365594 35.350563 L -73.107781 35.506813 L -72.846063 35.663063 L -72.58825 35.819313 L -72.326531 35.975563 L -72.068719 36.127906 L -71.807 36.284156 L -71.549188 36.440406 L -71.02575 36.752906 L -70.767938 36.909156 L -70.506219 37.065406 L -70.248406 37.221656 L -69.986688 37.377906 L -69.728875 37.534156 L -69.467156 37.690406 L -69.209344 37.846656 L -68.947625 37.999 L -68.689813 38.15525 L -68.428094 38.3115 L -68.170281 38.46775 L -67.908563 38.624 L -67.65075 38.78025 L -67.389031 38.9365 L -67.131219 39.09275 L -66.8695 39.249 L -66.611688 39.40525 L -66.08825 39.71775 L -65.830438 39.870094 L -65.568719 40.026344 L -65.310906 40.182594 L -65.049188 40.338844 L -64.791375 40.495094 L -64.529656 40.651344 L -64.271844 40.807594 L -64.010125 40.963844 L -63.752313 41.120094 L -63.490594 41.276344 L -63.232781 41.432594 L -62.971063 41.584938 L -62.71325 41.741188 L -62.451531 41.897438 L -62.193719 42.053688 L -61.932 42.209938 L -61.674188 42.366188 L -61.15075 42.678688 L -60.892938 42.834938 L -60.631219 42.991188 L -60.373406 43.147438 L -60.111688 43.303688 L -59.853875 43.456031 L -59.592156 43.612281 L -59.334344 43.768531 L -59.072625 43.924781 L -58.814813 44.081031 L -58.553094 44.237281 L -58.295281 44.393531 L -58.033563 44.549781 L -57.77575 44.706031 L -57.514031 44.862281 L -57.256219 45.018531 L -56.9945 45.174781 L -56.736688 45.327125 L -56.474969 45.483375 L -56.217156 45.639625 L -55.693719 45.952125 L -55.435906 46.108375 L -55.174188 46.264625 L -54.916375 46.420875 L -54.654656 46.577125 L -54.396844 46.733375 L -54.135125 46.889625 L -53.877313 47.045875 L -53.615594 47.198219 L -53.357781 47.354469 L -53.096063 47.510719 L -52.83825 47.666969 L -52.576531 47.823219 L -52.318719 47.979469 L -52.057 48.135719 L -51.799188 48.291969 L -51.537469 48.448219 L -51.279656 48.604469 L -50.756219 48.916969 L -50.498406 49.069313 L -50.236688 49.225563 L -49.978875 49.381813 L -49.717156 49.538063 L -49.459344 49.694313 L -49.197625 49.850563 L -48.939813 50.006813 L -48.678094 50.163063 L -48.420281 50.319313 L -48.158563 50.475563 L -47.90075 50.631813 L -47.639031 50.784156 L -47.381219 50.940406 L -47.1195 51.096656 L -46.861688 51.252906 L -46.599969 51.409156 L -46.342156 51.565406 L -45.818719 51.877906 L -45.560906 52.034156 L -45.299188 52.190406 L -45.041375 52.346656 L -44.779656 52.502906 L -44.521844 52.65525 L -44.260125 52.8115 L -44.002313 52.96775 L -43.740594 53.124 L -43.482781 53.28025 L -43.221063 53.4365 L -42.96325 53.59275 L -42.701531 53.749 L -42.443719 53.90525 L -42.182 54.0615 L -41.924188 54.21775 L -41.662469 54.374 L -41.404656 54.526344 L -41.142938 54.682594 L -40.885125 54.838844 L -40.361688 55.151344 L -40.103875 55.307594 L -39.842156 55.463844 L -39.584344 55.620094 L -39.322625 55.776344 L -39.064813 55.932594 L -38.803094 56.088844 L -38.545281 56.245094 L -38.283563 56.397438 L -38.02575 56.553688 L -37.764031 56.709938 L -37.506219 56.866188 L -37.2445 57.022438 L -36.986688 57.178688 L -36.724969 57.334938 L -36.467156 57.491188 L -36.205438 57.647438 L -35.947625 57.803688 L -35.685906 57.959938 L -35.424188 58.112281 L -35.166375 58.268531 L -34.904656 58.424781 L -34.646844 58.581031 L -34.385125 58.737281 L -34.127313 58.893531 L -33.865594 59.049781 L -33.607781 59.206031 L -33.346063 59.362281 L -33.08825 59.518531 L -32.826531 59.674781 L -32.568719 59.831031 L -32.307 59.987281 L -32.049188 60.139625 L -31.787469 60.295875 L -31.529656 60.452125 L -31.267938 60.608375 L -31.010125 60.764625 L -30.486688 61.077125 L -30.228875 61.233375 L -29.967156 61.389625 L -29.709344 61.545875 L -29.447625 61.702125 L -29.189813 61.854469 L -28.928094 62.010719 L -28.670281 62.166969 L -28.408563 62.323219 L -28.15075 62.479469 L -27.889031 62.635719 L -27.631219 62.791969 L -27.3695 62.948219 L -27.111688 63.104469 L -26.849969 63.260719 L -26.592156 63.416969 L -26.330438 63.573219 L -26.072625 63.725563 L -25.810906 63.881813 L -25.553094 64.038063 L -25.029656 64.350563 L -24.771844 64.506813 L -24.510125 64.663063 L -24.252313 64.819313 L -23.990594 64.975563 L -23.732781 65.131813 L -23.471063 65.288063 L -23.21325 65.444313 L -22.951531 65.596656 L -22.693719 65.752906 " 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 122.785156 C 17.238281 122.296875 19.5625 121.808594 21.363281 121.785156 L 19.363281 118.453125 C 18.496094 120.03125 16.972656 121.851562 15.921875 122.785156 "/>
<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.678094 54.424781 L -22.287469 51.940406 L -21.896844 49.479469 L -21.701531 48.256813 L -21.510125 47.041969 L -21.314813 45.827125 L -21.1195 44.620094 L -20.924188 43.420875 L -20.728875 42.225563 L -20.533563 41.034156 L -20.33825 39.850563 L -20.142938 38.670875 L -19.951531 37.495094 L -19.756219 36.327125 L -19.560906 35.163063 L -19.365594 34.002906 L -19.170281 32.850563 L -18.974969 31.702125 L -18.779656 30.5615 L -18.584344 29.424781 L -18.392938 28.291969 L -18.197625 27.166969 L -18.002313 26.045875 L -17.807 24.928688 L -17.611688 23.819313 L -17.416375 22.713844 L -17.221063 21.612281 L -17.02575 20.518531 L -16.834344 19.432594 L -16.639031 18.346656 L -16.443719 17.268531 L -16.053094 15.127906 L -15.857781 14.065406 L -15.662469 13.010719 L -15.467156 11.959938 L -15.27575 10.913063 L -15.080438 9.874 L -14.885125 8.838844 L -14.689813 7.807594 L -14.4945 6.784156 L -14.299188 5.764625 L -14.103875 4.749 L -13.912469 3.741188 L -13.717156 2.737281 L -13.521844 1.741188 L -13.326531 0.749 L -13.131219 -0.239281 L -12.935906 -1.21975 L -12.740594 -2.196312 L -12.545281 -3.168969 L -12.353875 -4.133812 L -12.158563 -5.09475 L -11.96325 -6.047875 L -11.767938 -6.997094 L -11.572625 -7.942406 L -11.377313 -8.879906 L -11.182 -9.8135 L -10.986688 -10.743187 L -10.795281 -11.665062 L -10.599969 -12.583031 L -10.404656 -13.497094 L -10.209344 -14.403344 L -9.818719 -16.200219 L -9.623406 -17.090844 L -9.428094 -17.973656 L -9.236688 -18.856469 L -9.041375 -19.731469 L -8.846063 -20.598656 L -8.65075 -21.461937 L -8.455438 -22.321312 L -8.260125 -23.176781 L -8.064813 -24.024437 L -7.8695 -24.864281 L -7.678094 -25.704125 L -7.287469 -27.360375 L -7.092156 -28.180687 L -6.896844 -28.997094 L -6.506219 -30.614281 L -6.310906 -31.411156 L -6.1195 -32.208031 L -5.924188 -32.997094 L -5.728875 -33.778344 L -5.533563 -34.555687 L -5.33825 -35.329125 L -5.142938 -36.098656 L -4.947625 -36.860375 L -4.756219 -37.618187 L -4.560906 -38.368187 L -4.365594 -39.114281 L -3.974969 -40.590844 L -3.779656 -41.321312 L -3.584344 -42.043969 L -3.389031 -42.762719 L -3.197625 -43.477562 L -3.002313 -44.184594 L -2.807 -44.887719 L -2.611688 -45.586937 L -2.416375 -46.278344 L -2.221063 -46.965844 L -2.02575 -47.649437 L -1.830438 -48.325219 L -1.639031 -48.997094 L -1.443719 -49.661156 L -1.248406 -50.321312 L -1.053094 -50.977562 L -0.857781 -51.626 L -0.662469 -52.270531 L -0.467156 -52.911156 L -0.271844 -53.543969 L -0.0804375 -54.172875 L 0.114875 -54.793969 L 0.310187 -55.411156 L 0.5055 -56.024437 L 0.700812 -56.629906 L 0.896125 -57.231469 L 1.091437 -57.829125 L 1.282844 -58.418969 L 1.478156 -59.004906 L 1.673469 -59.586937 L 1.868781 -60.161156 L 2.259406 -61.293969 L 2.454719 -61.852562 L 2.650031 -62.40725 L 2.841437 -62.954125 L 3.03675 -63.497094 L 3.232062 -64.03225 L 3.427375 -64.5635 L 3.622687 -65.090844 L 3.818 -65.614281 L 4.013312 -66.129906 L 4.208625 -66.637719 L 4.400031 -67.145531 L 4.790656 -68.137719 L 4.985969 -68.626 L 5.181281 -69.110375 L 5.376594 -69.590844 L 5.571906 -70.0635 L 5.767219 -70.528344 L 5.958625 -70.993187 L 6.153937 -71.450219 L 6.34925 -71.899437 L 6.544562 -72.34475 L 6.739875 -72.786156 L 6.935187 -73.223656 L 7.1305 -73.653344 L 7.325812 -74.079125 L 7.517219 -74.497094 L 7.712531 -74.911156 L 8.103156 -75.723656 L 8.298469 -76.122094 L 8.493781 -76.512719 L 8.689094 -76.899437 L 8.8805 -77.28225 L 9.075812 -77.65725 L 9.271125 -78.028344 L 9.466437 -78.395531 L 9.66175 -78.754906 L 9.857062 -79.110375 L 10.052375 -79.461937 L 10.247687 -79.805687 L 10.439094 -80.145531 L 10.634406 -80.477562 L 10.829719 -80.805687 L 11.025031 -81.129906 L 11.220344 -81.446312 L 11.415656 -81.758812 L 11.610969 -82.067406 L 11.806281 -82.368187 L 11.997687 -82.665062 L 12.193 -82.954125 L 12.388312 -83.239281 L 12.583625 -83.520531 L 12.778937 -83.793969 L 12.97425 -84.0635 L 13.169562 -84.329125 L 13.364875 -84.586937 L 13.556281 -84.840844 L 13.751594 -85.090844 L 13.946906 -85.333031 L 14.337531 -85.801781 L 14.532844 -86.028344 L 14.923469 -86.465844 L 15.114875 -86.676781 L 15.310187 -86.879906 L 15.5055 -87.079125 L 15.700812 -87.274437 L 15.896125 -87.465844 L 16.091437 -87.649437 L 16.28675 -87.825219 L 16.482062 -87.997094 L 16.673469 -88.165062 L 16.868781 -88.329125 L 17.064094 -88.485375 L 17.259406 -88.637719 L 17.454719 -88.78225 L 17.650031 -88.922875 L 17.845344 -89.059594 L 18.03675 -89.192406 L 18.427375 -89.434594 L 18.622687 -89.547875 L 18.818 -89.65725 L 19.013312 -89.762719 L 19.208625 -89.860375 L 19.403937 -89.950219 L 19.595344 -90.040062 L 19.790656 -90.122094 L 20.181281 -90.270531 L 20.376594 -90.336937 L 20.571906 -90.395531 L 20.767219 -90.450219 L 20.962531 -90.501 L 21.153937 -90.543969 L 21.34925 -90.583031 L 21.544562 -90.618187 L 21.739875 -90.645531 L 21.935187 -90.668969 L 22.1305 -90.6885 L 22.325812 -90.700219 L 22.521125 -90.708031 L 22.712531 -90.708031 L 22.907844 -90.704125 L 23.103156 -90.696312 L 23.298469 -90.680687 L 23.493781 -90.661156 L 23.689094 -90.637719 L 23.884406 -90.606469 L 24.079719 -90.571312 L 24.271125 -90.528344 L 24.466437 -90.481469 L 24.66175 -90.430687 L 24.857062 -90.372094 L 25.052375 -90.309594 L 25.247687 -90.243187 L 25.443 -90.168969 L 25.634406 -90.090844 L 26.025031 -89.918969 L 26.415656 -89.723656 L 26.610969 -89.618187 L 27.001594 -89.391625 L 27.193 -89.266625 L 27.388312 -89.141625 L 27.583625 -89.008812 L 27.778937 -88.872094 L 27.97425 -88.727562 L 28.169562 -88.579125 L 28.364875 -88.426781 L 28.560187 -88.266625 L 28.751594 -88.102562 L 28.946906 -87.934594 L 29.142219 -87.758812 L 29.337531 -87.579125 L 29.532844 -87.391625 L 29.728156 -87.200219 L 29.923469 -87.004906 L 30.118781 -86.801781 L 30.310187 -86.59475 L 30.5055 -86.383812 L 30.700812 -86.165062 L 30.896125 -85.942406 L 31.28675 -85.481469 L 31.677375 -84.997094 L 31.868781 -84.747094 L 32.064094 -84.489281 L 32.259406 -84.227562 L 32.454719 -83.961937 L 32.650031 -83.692406 L 32.845344 -83.415062 L 33.040656 -83.133812 L 33.232062 -82.84475 L 33.427375 -82.551781 L 33.622687 -82.254906 L 33.818 -81.950219 L 34.013312 -81.641625 L 34.208625 -81.329125 L 34.403937 -81.008812 L 34.59925 -80.684594 L 34.790656 -80.352562 L 34.985969 -80.016625 L 35.181281 -79.676781 L 35.376594 -79.329125 L 35.571906 -78.977562 L 35.962531 -78.258812 L 36.157844 -77.887719 L 36.34925 -77.516625 L 36.544562 -77.137719 L 36.739875 -76.754906 L 36.935187 -76.364281 L 37.1305 -75.96975 L 37.325812 -75.571312 L 37.521125 -75.165062 L 37.716437 -74.754906 L 37.907844 -74.336937 L 38.103156 -73.915062 L 38.298469 -73.489281 L 38.493781 -73.055687 L 38.689094 -72.618187 L 38.884406 -72.176781 L 39.079719 -71.727562 L 39.275031 -71.274437 L 39.466437 -70.817406 L 39.66175 -70.352562 L 39.857062 -69.883812 L 40.052375 -69.40725 L 40.247687 -68.926781 L 40.443 -68.442406 L 40.638312 -67.950219 L 40.829719 -67.454125 L 41.025031 -66.954125 L 41.220344 -66.446312 L 41.415656 -65.934594 L 41.610969 -65.415062 L 41.806281 -64.891625 L 42.001594 -64.364281 L 42.196906 -63.829125 L 42.388312 -63.290062 L 42.583625 -62.747094 L 42.778937 -62.196312 L 42.97425 -61.641625 L 43.169562 -61.079125 L 43.364875 -60.512719 L 43.560187 -59.942406 L 43.7555 -59.364281 L 43.946906 -58.78225 L 44.142219 -58.196312 L 44.337531 -57.602562 L 44.532844 -57.004906 L 44.728156 -56.403344 L 44.923469 -55.793969 L 45.314094 -54.559594 " 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 45.353156 38.549781 L 46.329719 39.135719 L 46.521125 39.252906 L 47.302375 39.721656 L 47.497687 39.834938 L 47.888312 40.069313 L 48.079719 40.1865 L 49.446906 41.006813 L 49.638312 41.124 L 49.833625 41.241188 L 50.028937 41.354469 L 51.0055 41.940406 L 51.196906 42.057594 L 52.368781 42.760719 L 52.564094 42.874 L 52.7555 42.991188 L 54.122687 43.8115 L 54.314094 43.928688 L 54.900031 44.28025 L 55.095344 44.393531 L 55.485969 44.627906 L 55.677375 44.745094 L 57.044562 45.565406 L 57.235969 45.682594 L 57.431281 45.799781 L 57.626594 45.913063 L 58.603156 46.499 L 58.794562 46.616188 L 59.966437 47.319313 L 60.16175 47.432594 L 60.353156 47.549781 L 61.720344 48.370094 L 61.91175 48.487281 L 62.497687 48.838844 L 62.693 48.952125 L 63.083625 49.1865 L 63.275031 49.303688 L 64.642219 50.124 L 64.833625 50.241188 L 65.028937 50.358375 L 65.22425 50.471656 L 66.200812 51.057594 L 66.392219 51.174781 L 67.564094 51.877906 L 67.759406 51.991188 L 67.950812 52.108375 L 69.318 52.928688 L 69.509406 53.045875 L 70.095344 53.397438 L 70.290656 53.510719 L 70.681281 53.745094 L 70.872687 53.862281 L 72.239875 54.682594 L 72.431281 54.799781 L 72.626594 54.916969 L 72.821906 55.03025 L 73.798469 55.616188 L 73.989875 55.733375 L 75.16175 56.4365 L 75.357062 56.549781 L 75.548469 56.666969 L 76.915656 57.487281 L 77.107062 57.604469 L 77.693 57.956031 L 77.888312 58.069313 L 78.278937 58.303688 L 78.470344 58.420875 L 79.837531 59.241188 L 80.028937 59.358375 L 80.22425 59.475563 L 80.419562 59.588844 L 81.396125 60.174781 L 81.587531 60.291969 L 82.759406 60.995094 L 82.954719 61.108375 L 83.146125 61.225563 L 84.513312 62.045875 L 84.704719 62.163063 L 85.290656 62.514625 L 85.485969 62.627906 L 85.876594 62.862281 L 86.068 62.979469 L 87.435187 63.799781 L 87.626594 63.916969 L 87.821906 64.034156 L 88.017219 64.147438 L 88.993781 64.733375 L 89.185187 64.850563 L 90.357062 65.553688 L 90.552375 65.666969 L 90.743781 65.784156 L 92.110969 66.604469 L 92.302375 66.721656 L 92.888312 67.073219 L 93.083625 67.1865 L 93.47425 67.420875 L 93.665656 67.538063 L 95.032844 68.358375 L 95.22425 68.475563 L 95.419562 68.59275 L 95.614875 68.706031 L 96.591437 69.291969 L 96.782844 69.409156 L 97.954719 70.112281 L 98.150031 70.225563 L 98.341437 70.34275 L 99.708625 71.163063 L 99.900031 71.28025 L 100.485969 71.631813 L 100.681281 71.745094 L 101.071906 71.979469 L 101.263312 72.096656 L 102.6305 72.916969 L 102.821906 73.034156 L 103.017219 73.151344 L 103.212531 73.264625 L 104.189094 73.850563 L 104.3805 73.96775 L 105.552375 74.670875 L 105.747687 74.784156 L 105.939094 74.901344 L 107.306281 75.721656 L 107.497687 75.838844 L 108.083625 76.190406 L 108.278937 76.303688 L 108.864875 76.65525 L 109.056281 76.772438 L 110.228156 77.475563 L 110.419562 77.59275 L 110.810187 77.827125 L 111.0055 77.940406 L 111.78675 78.409156 L 111.978156 78.526344 L 113.150031 79.229469 L 109.345344 76.948219 " 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.652344 54.78125 C 241.332031 55.265625 239.007812 55.753906 237.207031 55.777344 L 239.207031 59.109375 C 240.074219 57.53125 241.597656 55.710938 242.652344 54.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 -20.685906 65.764625 C -20.685906 66.862281 -21.576531 67.756813 -22.678094 67.756813 C -23.77575 67.756813 -24.670281 66.862281 -24.670281 65.764625 C -24.670281 64.663063 -23.77575 63.772438 -22.678094 63.772438 C -21.576531 63.772438 -20.685906 64.663063 -20.685906 65.764625 Z M -20.685906 65.764625 " 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 -20.685906 54.424781 C -20.685906 55.526344 -21.576531 56.416969 -22.678094 56.416969 C -23.77575 56.416969 -24.670281 55.526344 -24.670281 54.424781 C -24.670281 53.323219 -23.77575 52.432594 -22.678094 52.432594 C -21.576531 52.432594 -20.685906 53.323219 -20.685906 54.424781 Z M -20.685906 54.424781 " 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 47.345344 -54.426781 C 47.345344 -53.325219 46.454719 -52.430687 45.353156 -52.430687 C 44.2555 -52.430687 43.360969 -53.325219 43.360969 -54.426781 C 43.360969 -55.524437 44.2555 -56.418969 45.353156 -56.418969 C 46.454719 -56.418969 47.345344 -55.524437 47.345344 -54.426781 Z M 47.345344 -54.426781 " 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 47.345344 38.549781 C 47.345344 39.651344 46.454719 40.541969 45.353156 40.541969 C 44.2555 40.541969 43.360969 39.651344 43.360969 38.549781 C 43.360969 37.452125 44.2555 36.557594 45.353156 36.557594 C 46.454719 36.557594 47.345344 37.452125 47.345344 38.549781 Z M 47.345344 38.549781 " transform="matrix(1,0,0,-1,129.307,134.124)"/>
</g>
</svg>
</p> </p>