Commit things
authorSam Moore <[email protected]>
Tue, 21 Oct 2014 08:11:15 +0000 (16:11 +0800)
committerSam Moore <[email protected]>
Tue, 21 Oct 2014 08:11:15 +0000 (16:11 +0800)
34 files changed:
chapters/Background.tex
chapters/Background/CoordinateSystems.tex
chapters/Background/FixedPoint.tex
chapters/Background/FloatingPointOnTheGPU.tex
chapters/Background/Floats.tex
chapters/Background/Floats/Definition.tex
chapters/Background/Floats/Operations.tex
chapters/Background/Floats/Visualisation.tex
chapters/Background/Overview.tex
chapters/Background/Rendering.tex
chapters/Introduction.tex
chapters/Process.tex
chapters/Progress.tex [deleted file]
chapters/Progress/Progress.tex [deleted file]
chapters/Results.tex
figures/gpufloats.pdf
figures/gpufloats.svg
figures/loss_of_precision_grid_0.5.pdf
figures/memory.pdf [new file with mode: 0644]
figures/time.pdf [new file with mode: 0644]
figures/view_transformation.pdf
figures/view_transformation.svg [new file with mode: 0644]
figures/view_transformation_fail.pdf
figures/view_transformation_fail.svg
figures/view_transformation_minimal.pdf [new file with mode: 0644]
presentation/example_uwa_eng.nav [deleted file]
presentation/example_uwa_eng.snm [deleted file]
presentation/presentation.nav [deleted file]
presentation/presentation.pdf
presentation/presentation.snm [deleted file]
presentation/presentation.tex
presentation/presentationWORKINADOBE.pdf [new file with mode: 0644]
thesis.pdf
thesis.tex

index 6a7b3a5..67d1cd3 100644 (file)
@@ -9,7 +9,8 @@
 \section{Coordinate Systems and Transformations}
 \input{chapters/Background/CoordinateSystems}
 \section{Precision Specified by Document Standards}
-\input{chapters/Background/Standards}
+
+\input{chapters/Background/Standards/Precision}
 
 
 
index 3a61cb3..ab3fbcd 100644 (file)
@@ -1,53 +1,51 @@
 Basic vector primitives composed of B{\'e}ziers may be rendered using only integer operations, once the starting and ending positions are rounded to the nearest pixel.
 
-However, a complete document will contain many such primitives which in general cannot all be shown on a display at once. A ``View'' rectangle can be defined to represent the size of the display relative to the document. To interact with the document a user can change this view through scaling or translating with the mouse\cite{}.
+However, a complete document will contain many such primitives which in general cannot all be shown on a display at once. A ``View'' rectangle can be defined to represent the size of the display relative to the document. To interact with the document a user can change this view through scaling or translating with the mouse.
 
-Primitives which are contained within the view rectangle will be visible on the display. This involves the transformation from coordinates within the document to relative coordinates within the view rectangle as illustrated in Figure \ref{}. A point $(X,Y)$ in the document will transform to a point $(x,y)$ in the view by:
+Primitives which are contained within the view rectangle will be visible on the display. This involves the transformation from coordinates within the document to relative coordinates within the view rectangle as illustrated in Figure \ref{view_transformation_minimal.pdf}. A point $(X,Y)$ in the document will transform to a point $(S_X,S_Y)$ in the display by:
 \begin{align}
-       X = \frac{x - v_x}{v_w} &\quad\quad Y = \frac{y - v_y}{v_h}\label{view-transformation}
+       S_X = \frac{X - V_x}{V_w} &\quad\quad S_Y = \frac{Y - V_y}{V_h}\label{view-transformation}
 \end{align}
-Where $(v_x,v_y)$ are the coordinates of the top left corner and $(v_w,v_h)$ are the dimensions of the view rectangle.
+Where $(V_x,V_y)$ are the coordinates of the top left corner and $(V_w,V_h)$ are the dimensions of the view rectangle.
 
 
-The transformation may also be written as a 3x3 matrix $\matx{V}$ if we introduce a third coordinate $Z = 1$
+The transformation may also be written as a 3x3 matrix $\matx{V}$ if we introduce a third coordinate $z = 1$
 \begin{align}
-       \matx{X} &= \matx{V} \matx{x} \\
-       \left( \begin{array}{c} X \\ Y \\ 1 \end{array}\right) &= 
+       \left( \begin{array}{c} S_X \\ S_Y \\ 1 \end{array}\right) &= 
        \left( \begin{array}{ccc} 
-               \frac{1}{v_w} & 0 & \frac{v_x}{v_w} \\
-               0 & \frac{1}{v_h} & \frac{v_y}{v_h} \\
+               \frac{1}{V_w} & 0 & \frac{V_x}{V_w} \\
+               0 & \frac{1}{V_h} & \frac{V_y}{V_h} \\
                0 & 0 & 1 
        \end{array}\right) 
-       \left( \begin{array}{c} x \\ y \\ 1 \end{array}\right)\label{view-transformation-matrix}
+       \left( \begin{array}{c} X \\ Y \\ 1 \end{array}\right)\label{view-transformation-matrix}
 \end{align}
 
 
+\begin{figure}[H]
+       \centering
+       \includegraphics[width=0.7\textwidth]{figures/view_transformation_minimal.pdf}
+       \caption{Illustration of view transformation \eqref{view-transformation}}\label{view_transformation_minimal.pdf}
+\end{figure}
+
+\subsection{View Transformations}
 
 Moving the mouse\footnote{or on a touch screen, swiping the screen} by a distance $(\Delta x, \Delta y)$ relative to the size of the view should translate it by the same amount\cite{}:
 \begin{align}
-       v_x \to v_x + \Delta x \\
-       v_y \to v_y + \Delta y
+       V_x \to V_x + \Delta x \\
+       V_y \to V_y + \Delta y
 \end{align}
 
 The document can be scaled by a factor of $s$ about a point $(x_0,y_0)$ specified relative to the view (such as the position of the mouse cursor)\cite{}:
 \begin{align}
-       v_x \to v_x + x_0 v_w(1 - s) \\
-       v_y \to v_y + y_0 v_h(1 - s) \\
-       v_w \to s v_w \\
-       v_h \to s v_h
+       V_x \to V_x + x_0 V_w(1 - s) \\
+       V_y \to V_y + y_0 V_h(1 - s) \\
+       V_w \to s V_w \\
+       V_h \to s V_h
 \end{align}
 
 The effect of this transformation is that, measured relative to the view rectangle, the distance of primitives with coordinates $(x, y)$ to the point $(x_0, y_0)$ will decrease by a factor of $s$. For $s < 1$ the operation is ``zooming out'' and for $s > 1$, ``zooming in''.
 
 
-{\bf TODO}
-\begin{itemize}
-       \item Intermediate coordinate systems...
-       \item Write Matrix operations properly
-       \item Link with the results where applying \eqref{view-transformation} directly leads to disaster
-       \item This is because for $v_w << 1$, an error of $1 ulp$ in $x - v_x$ is comparable with $v_w$, ie: Can increase to the order of the size of the display (or more)
-\end{itemize}
-
 %TODO List
 % Mention that these transformations affect precision more than eg: drawing a line
 % Discuss floating point errors that could occur?
index 352e9d3..4ef2f6c 100644 (file)
@@ -1,8 +1,8 @@
-A positive real number $z$ may be written as the sum of smaller integers ``digits'' $d_i < z$ multiplied by powers of a base $\beta$. 
+A positive real number $z$ may be written as the sum of smaller integers ``digits'' $d_i$ multiplied by powers of a base $\beta$. 
 \begin{align}
-       z &= \displaystyle\sum_{i=-\infty}^{\infty} d_i \beta^{i}\label{fixedpointZ}
+       z &= d_0 \beta^0 + d_1 \beta^1 + d_2 \beta^2 + \text{ ...} = \displaystyle\sum_{i=-\infty}^{\infty} d_i \beta^{i}\label{fixedpointZ}
 \end{align}
-Where each digit $d_i < \beta$ the base. A set of $\beta$ unique symbols are used to represent values of $d_i$.
+Where each digit $d_i < \beta$. A set of $\beta$ unique symbols are used to represent values of $d_i$.
 A seperate sign '-' can be used to represent negative reals using equation \eqref{fixedpointZ}.
 
 To express a real number using equation \eqref{fixedpointZ} in practice we are limited to a finite number of terms between $i = -m$ and $i = n$. Fixed point representations are capable of representing a discrete set of numbers $0 \leq |z| \leq \beta^{n+1}-\beta^{-m}$ seperated by $\Delta z = \beta^{-m} \leq 1$. In the case $m = 0$, only integers can be represented.
@@ -13,7 +13,7 @@ Example integer representation in base 10 (decimal) and base 2 (binary):
        1011000110010_2 &= 1\times2^{12} + 0\times2^{11} + \text{ ...} + 0\times2^0
 \end{align*}
 
-{\bf FIXME} Add Maths reference (Cantor's Diagonal argument) without going into all the Pure maths details
+%{\bf FIXME} Add Maths reference (Cantor's Diagonal argument) without going into all the Pure maths details
 
 
 
index 0d40fb1..d85bade 100644 (file)
@@ -4,15 +4,7 @@
 
 Traditionally, vector images have been rasterized by the CPU before being sent to a specialised Graphics Processing Unit (GPU) for drawing\cite{computergraphics2}. Rasterisation of simple primitives such as lines and triangles have been supported directly by GPUs for some time through the OpenGL standard\cite{openglspec}. However complex shapes (including those based on B{\'e}zier curves such as font glyphs) must either be rasterised entirely by the CPU or decomposed into simpler primitives that the GPU itself can directly rasterise. There is a significant body of research devoted to improving the performance of rendering such primitives using the latter approach, mostly based around the OpenGL\cite{openglspec} API\cite{robart2009openvg, leymarie1992fast, frisken2000adaptively, green2007improved, loop2005resolution, loop2007rendering}. Recently Mark Kilgard of the NVIDIA Corporation described an extension to OpenGL for NVIDIA GPUs capable of drawing and shading vector paths\cite{kilgard2012gpu,kilgard300programming}. From this development it seems that rasterization of vector graphics may eventually become possible upon the GPU.
 
-It is not entirely clear how well supported the IEEE-754 standard for floating point computation is amongst GPUs\footnote{Informal technical articles are abundant on the internet --- Eg: Regarding the Dolphin Wii GPU Emulator: \url{https://dolphin-emu.org/blog} (accessed 2014-05-22)}. Although the OpenGL API does use IEEE-754 number representations, research by Hillesland and Lastra in 2004 suggested that many GPUs were not internally compliant with the standard\cite{hillesland2004paranoia}. 
+It is not entirely clear how well supported the IEEE-754 standard for floating point computation is amongst GPUs\footnote{Informal technical articles are abundant on the internet --- Eg: Regarding the Dolphin Wii GPU Emulator: \url{https://dolphin-emu.org/blog} (accessed 2014-05-22)}. Although the OpenGL API does use IEEE-754 number representations, research by Hillesland and Lastra in 2004 suggested that many GPUs were not internally compliant with the standard\cite{hillesland2004paranoia}. In Section \ref{} we illustrate how the use of 
 
-In order to explore this, we implemented a simple fragment shader to render a circle. Points $x^2 + y^2 < 1$ should be black. When scaled to bounds of width $\approx 10^{-6}$ the edges of the circle become jagged due to imprecision. However, the behaviour is quite different depending on GPU model. A CPU renderer was also implemented to evaluate the same function using IEEE-754 singles.
-
-\begin{figure}[H]
-       \centering
-       \includegraphics[width=0.7\textwidth]{figures/gpufloats.pdf}
-       \caption{Difference in evaluating $x^2 + y^2 < 1$ for the x86\_64 and various GPUs\\
-       The view bounds are identical}
-\end{figure}
 
 %Arbitrary precision arithmetic, is provided by many software libraries for CPU based calculations
index 65a99e4..1be1113 100644 (file)
@@ -4,7 +4,6 @@
 
 
 \subsection{Floating Point Operations}
-{\bf FIXME:} Appendix?
 \input{chapters/Background/Floats/Operations}
 
 
@@ -12,4 +11,4 @@
 
 Arbitrary precision floating point numbers are implemented in a variety of software libraries which will dynamically allocate extra bits for the exponent or mantissa as required. An example is the GNU MPFR library discussed by Fousse in 2007\cite{fousse2007mpfr}. Although many arbitrary precision libraries already existed, MPFR intends to be fully compliant with some of the more obscure IEEE-754 requirements such as rounding rules and exceptions. 
 
-As we have seen, it is trivial to find real numbers that would require an infinite number of bits to represent exactly. Implementations of ``arbitrary'' precision must carefully determine at what point rounding should occur so as to balance performance with memory usage.
+It is trivial to find real numbers that would require an infinite number of bits to represent exactly (for example, $\frac{1}{3} = 0.333333\text{...}$). The GMP and MPFR libraries require a fixed (but arbitrarily large) precision be set; although it is possible to increase or decrease the precision of individual numbers as desired.
index 33f1a15..d8fa885 100644 (file)
@@ -1,16 +1,15 @@
 Whilst a Fixed Point representation keeps the ``point'' (the location considered to be $i = 0$ in \eqref{fixedpointZ}) at the same position in a string of bits, Floating point representations can be thought of as scientific notation; an ``exponent'' and fixed point value are encoded, with multiplication by the exponent moving the position of the point.
 
 
-{\bf FIXME: Cite properly} The use of floating point arithmetic in computer systems was pioneered by Knuth\cite{}, Goldberg\cite{goldbern1967twentyseven}, Dekker\cite{}, and others, but modern systems are largely compatable with the IEEE-754 standard pioneered by William Kahan in 1985 \cite{ieee754std1985} and revised (also with contributions from Kahan) in 2008\cite{ieee754std2008}.
+The use of floating point arithmetic in computer systems was pioneered by Knuth, Goldberg{goldbern1967twentyseven}, Dekker, and others\cite{HFP}, but modern systems are largely compatable with the IEEE-754 standard pioneered by William Kahan in 1985 \cite{ieee754std1985} and revised (also with contributions from Kahan) in 2008\cite{ieee754std2008}.
 
 A floating point number $x$ is commonly represented by a tuple of values $(s, e, m)$ in base $B$ as\cite{HFP, ieee2008-754}: $x = (-1)^{s} \times m \times B^{e}$
 
-Where $s$ is the sign and may be zero or one, $m$ is commonly called the ``mantissa'' and $e$ is the exponent. Whilst $e$ is an integer in some range $\pm e_max$, the mantissa $m$ is a fixed point value in the range $0 < m < B$. 
+Where $s$ is the sign and may be zero or one, $m$ is commonly called the ``mantissa'' and $e$ is the exponent. Whilst $e$ is an integer in some range $\pm e_max$, the mantissa $m$ is a fixed point value in the range $0 < m < B$. The choice of base $B = 2$ in the original IEEE-754 standard matches the nature of modern hardware. It has also been found that this base in general gives the smallest rounding errors\cite{HFP}. 
 
-
-The choice of base $B = 2$ in the original IEEE-754 standard matches the nature of modern hardware. It has also been found that this base in general gives the smallest rounding errors\cite{HFP}. Early computers had in fact used a variety of representations including $B=3$ or even $B=7$\cite{goldman1991whatevery}, and the revised IEEE-754 standard specifies a decimal representation $B = 10$ intended for use in financial applications\cite{ieee754std2008}\footnote{Eg: The smallest valid unit of currency \$0.01 could not be represented exactly in base 2}. From now on we will restrict ourselves to considering base 2 floats.
+%Early computers had in fact used a variety of representations including $B=3$ or even $B=7$\cite{goldman1991whatevery}, and the revised IEEE-754 standard specifies a decimal representation $B = 10$ intended for use in financial applications\cite{ieee754std2008}\footnote{Eg: The smallest valid unit of currency \$0.01 could not be represented exactly in base 2}. From now on we will restrict ourselves to considering base 2 floats.
 
 The IEEE-754 encoding of $s$, $e$ and $m$ requires a fixed number of continuous bits dedicated to each value. Originally two encodings were defined: binary32 and binary64. $s$ is always encoded in a single leading bit, whilst (8,23) and (11,53) bits are used for the (exponent, mantissa) encodings respectively. 
 
-The encoding of $m$ in the IEEE-754 standard is not exactly equivelant to a fixed point value. By assuming an implicit leading bit (ie: restricting $1 \leq m < 2$) except for when $e = 0$, floating point values are gauranteed to have a unique representations; these representations are said to be ``normalised''. When $e = 0$ the leading bit is not implied; these representations are called ``denormals'' because multiple representations may map to the same real value. The idea of using an implicit bit appears to have been considered by Goldberg as early as 1967\cite{goldbern1967twentyseven}.
+The encoding of $m$ in the IEEE-754 standard is not exactly equivelant to a fixed point value. By assuming an implicit leading bit (ie: restricting $1 \leq m < 2$) except for when $e = 0$, floating point values are gauranteed to have a unique representations; these representations are said to be ``normalised''. When $e = 0$ the leading bit is not implied; these representations are called ``denormals'' because multiple representations may map to the same real value. The idea of using an implicit bit appears to have been considered by Goldberg as early as 1967\cite{goldbern1967twentyseven}, and it leads to an increase of precision near the origin.
 
index 5624892..a527c39 100644 (file)
@@ -1,6 +1,11 @@
 
-Real values which cannot be represented exactly in a floating point representation must be rounded to the nearest floating point value. The results of a floating point operation will in general be such values and thus there is a rounding error possible in any floating point operation. Referring to Figure \ref{floats.pdf} it can be seen that the largest possible rounding error is half the distance between successive floats; this means that rounding errors increase as the value to be represented increases. For the result of a particular operation, the maximum possible rounding error can be determined and is commonly expressed in ``units in the last place'' (ulp), with 1 ulp equivelant to half the distance between successive floats\cite{goldberg1991whatevery}.
+Real values which cannot be represented exactly in a floating point representation must be rounded to the nearest floating point value. The results of a floating point operation will in general be such values and thus there is a rounding error possible in any floating point operation\cite{HFP}. 
 
+Referring to Figure \ref{floats.pdf} it can be seen that the largest possible rounding error is half the distance between successive floats; this means that rounding errors increase as the value to be represented increases. For the result of a particular operation, the maximum possible rounding error can be determined and is commonly expressed in ``units in the last place'' (ulp), with 1 ulp equivelant to half the distance between successive floats\cite{goldberg1991whatevery}.
+
+
+\begin{comment}
+Floating point operations can in principle be performed using integer operations, but specialised Floating Point Units (FPUs) are an almost universal component of modern processors\cite{kelley1997acmos}. The improvement of FPUs remains highly active in several areas including: efficiency\cite{seidel2001onthe}; accuracy of operations\cite{dieter2007lowcost}; and even the adaptation of algorithms originally used in software, such as Kahan's Fast2Sum algorithm\cite{kadric2013accurate}. 
 
 
 {\bf Put this stuff in an Appendix?}
@@ -25,4 +30,4 @@ This is equivelant to shifting the fixed point in $m_2$ by $e_2 - e_1$ to the le
 
 Multiplication and Division are not inverses.
 
-Floating point operations can in principle be performed using integer operations, but specialised Floating Point Units (FPUs) are an almost universal component of modern processors\cite{kelley1997acmos}. The improvement of FPUs remains highly active in several areas including: efficiency\cite{seidel2001onthe}; accuracy of operations\cite{dieter2007lowcost}; and even the adaptation of algorithms originally used in software, such as Kahan's Fast2Sum algorithm\cite{kadric2013accurate}. 
+\end{comment}
index 1588b03..41bbda3 100644 (file)
@@ -1,5 +1,5 @@
 
-Figure \ref{floats.pdf} shows the positive real numbers which can be represented exactly by an 8 bit floating point number encoded in the IEEE-754 format. We show two encodings using (1,2,5) and (1,3,4) bits to encode (sign, exponent, mantissa) respectively. For each distinct value of the exponent, the successive floating point representations lie on a straight line with constant slope. As the exponent increases, larger values are represented, but the distance between successive values increases; this can be seen in Figure\ref{}. The marked single point discontinuity at \verb/0x10/ and \verb/0x20/ occur when $e$ leaves the denormalised region and the encoding of $m$ changes. We have also plotted a fixed point representation for comparison; fixed point and integer representations appear as straight lines - the distance between points is always constant.
+Figure \ref{floats.pdf} shows the positive real numbers which can be represented exactly by an 8 bit floating point number encoded in the IEEE-754 format. We show two encodings using (1,2,5) and (1,3,4) bits to encode (sign, exponent, mantissa) respectively. For each distinct value of the exponent, the successive floating point representations lie on a straight line with constant slope. As the exponent increases, larger values are represented, but the distance between successive values increases; this can be seen in Figure\ref{}. The marked single point discontinuity at \verb/0x10/ and \verb/0x20/ occur when $e$ leaves the denormalised region and the encoding of $m$ changes. We have also plotted a fixed point representation for comparison; fixed point and integer representations appear on straight lines.
 
 \begin{comment}
 The earlier example $7.25$ would be converted to a (1,3,4) floating point representation as follows:
index 9a9bbdb..ce9d13a 100644 (file)
@@ -4,10 +4,6 @@
 \input{chapters/Background/Rendering/StraightLines}
 \subsection{B\'{e}zier Splines}
 \input{chapters/Background/Rendering/BezierSplines}
-\subsection{Filled Paths}
-\subsection{Compositing}
-{\bf FIXME} Really won't have time to mention these?
-They are important, but we didn't end up implementing them anyway.
 \subsection{Fonts}
 \input{chapters/Background/Rendering/Fonts}
 
index 1d31e79..005853a 100644 (file)
@@ -2,10 +2,10 @@
 
 Early electronic document formats such as PostScript were motivated by a need to print documents onto a paper medium. In the PostScript standard, this lead to a model of the document as a program; a series of instructions to be executed by an interpreter which would result in ``ink'' being placed on ``pages'' of a fixed size\cite{plrm}. The ubiquitous Portable Document Format (PDF) standard provides many enhancements to PostScript taking into account desktop publishing requirements\cite{cheng2002portable}, but it is still fundamentally based on the same imaging model\cite{pdfref17}. This idea of a document as a static ``page'' has lead to limitations on what could be achieved with a digital document viewers \cite{hayes2012pixels}.
 
-%The emergence of the internet, web browsers, XML/HTML, JavaScript and related technologies has seen a revolution in the ways in which information can be presented digitally, and the PDF standard itself has begun to move beyond static text and figures\cite{hayes2012pixels, barnes2013embedding}. However, the popular document formats are still designed with the intention of showing information at either a single, fixed level of detail, or a small range of levels.
+The emergence of the internet, web browsers, XML/HTML, JavaScript and related technologies has seen a revolution in the ways in which information can be presented digitally, and the PDF standard itself has begun to move beyond static text and figures\cite{hayes2012pixels, barnes2013embedding}. However, the popular document formats are still designed with the intention of showing information at either a single, fixed level of detail, or a small range of levels.
 
 As most digital display devices are smaller than physical paper medium, all useful viewers are able to ``zoom'' to a subset of the document. Vector graphics formats including PostScript, PDF and SVG support rasterisation at different zoom levels\cite{plrm, pdfref17, svg2011-1.1}, but the use of fixed precision floating point numbers causes problems due to imprecision either far from the origin, or at a high level of detail\cite{goldberg1991whatevery, goldberg1992thedesign}.
 
 There are many possible applications for documents in which precision is unlimited. Several areas of use include: visualisation of extremely large or infinite data sets; visualisation of high precision numerical computations; digital artwork; computer aided design; and maps.
 
-We have implemented a proof of concept document viewer compatable with a subset of the SVG standard, which has allowed us to explore the limitations of floating point arithmetic and possible approaches to achieving arbitrary precision document formats. Using the Rational representation of the GNU Multiple Precision (GMP) library\cite{granlund2014GMP} we are able to implement correct rendering of SVG test images seperated by arbitrary distances. We demonstrate the trade off between performance cost and the accuracy of rendering
+In collaboration with Gow\cite{} we have implemented a proof of concept document viewer compatable with a subset of the SVG standard, which has allowed us to explore the limitations of floating point arithmetic and possible approaches to achieving arbitrary precision document formats. Using the Rational representation of the GNU Multiple Precision (GMP) library\cite{granlund2004GMP} we are able to implement correct rendering of SVG test images seperated by arbitrary distances. We present measurements of rendering accuracy and performance for our implementation.
index 3e64319..934e708 100644 (file)
 \chapter{Methods and Design}
 
-{\bf TODO} Write most of this section. I suspect I will have to be very selective about what to fit in considering the word limit.
-
-\section{Collaborative Process}
-\begin{itemize}
-       \item Collaborated with David Gow on the design and implementation of the SVG viewer
-       \item Individual work: Applying GMP Rationals (Sam), Quadtree (David)
-       \begin{itemize}
-               \item CPU renderer, SVG parsing, Control Panel, Python Scripts - Sam
-               \item Most of the OpenGL stuff, Scaling/Translating controls - David
-               \item Other parts were worked on by everyone
-       \end{itemize}
-       \item Used git to collaborate \url{https://git.ucc.asn.au}
-       \item Used preprocessor defines to not interfere with each other's code too much
-       \item David used a \verb/goto/ letting the team down
-\end{itemize}
 
 \section{Structure of Software}
-\begin{itemize}
-       \item CPU and GPU renderer supported
-       \begin{itemize}
-               \item See figure in ``Floating Point Operations on the CPU and GPU''
-       \end{itemize}
-       \item Rendering of Cubic B\'{e}ziers (no antialiasing)
-       \item Partial implementation of shading Paths on CPU (abandoned)
-       \item Ability to move the view around the document with the mouse
-       \item Ability to insert an SVG into the view location
-       \item \verb/typedef/ for number representations
-       \item Ability to control program through scripts or stdio
-       \item Hacky python scripts to produce plots by abusing this
-\end{itemize}
+
+A custom vector graphics viewer called IPDF\footnote{The original name ``Infinite Precision Document Format'' stuck, although the word ``Infinite'' is highly misleading} was implemented for this project in collaboration with David Gow\cite{}. We will give a brief overview of the features and limitations of this software.
+
+\subsection{Document Structure}
+
+IPDF is built around Objects which can be rendered either on the CPU (directly altering a bitmap and then uploading to the GPU) or the GPU (via the use of OpenGL GLSL shader programs).
+
+Initially only very simple shapes (Rectangles and Circles) were supported, but in order to produce a meaningful demonstration of arbitrary precision viewing, Paths formed from Quadratic or Cubic B\'{e}ziers as specified by the SVG standard were added. Shading of paths is partially implemented.
+
+\subsection{Rendering Process}
+
+As discussed in Section \ref{} it is not clear to what extend GPUs comply with the IEEE-754 standard, and arbitrary precision arithmetic is most easily implemented on the CPU; for this reason a CPU renderer and GPU renderer were implemented.
+
+All Objects are represented by their bounding rectangles; in the case of B\'{e}zier curves the control points are stored relative to the bounding rectangle. The rendering process involves converting the bounding rectangle coordinates from Document to Screen space as discussed in Section \ref{}. For both GPU and CPU rendering a B\'{e}zier in screen space is decomposed into straight lines; the CPU renders these lines using Bresenham's algorithm.
+
+
+
+\subsection{Interactivity}
+
+There are two ways to control the IPDF software; manually through use of keyboard and mouse and a Qt4\cite{} based control panel, or automatically through a script containing a sequence of commands to transform the view or insert SVGs. In both cases SVGs can be inserted scaled to the current View rectangle. 
+
+\subsection{Version Control}
+
+The Git version control system was used to collaborate on this project; the main repository may be viewed at \url{http://git.ucc.asn.au/?p=ipdf/code.git}
 
 \section{Approaches to Arbitrary Precision}
-\begin{itemize}
-       \item Replace \emph{all} operations with arbitrary precision (ie: Rationals) - Horrendously slow
-       \item Change approach to applying coordinate transform \eqref{view-transformation}
-       \item Apply view transformations directly to objects as the view is transformed, rather than just before rendering
-       \begin{itemize}
-               \item Allows much better precision and range with just regular IEEE-754 floats
-               \item But there is an accumulated rounding error, particularly when zooming out and back in, which is bad
-       \end{itemize}
-       \item As above, but introduce intermediate coordinate system; use the Path elements
-       \begin{itemize}
-               \item Rendering of individual paths is consistent but overall they drift apart
-       \end{itemize}
-       \item As above, but specify Path coordinates with arbitrary precision rationals
-       \begin{itemize}
-               \item Works well, rationals slow down though
-       \end{itemize}
-\end{itemize}
 
-\section{Number Representations Trialed}
-\begin{itemize}
-       \item IEEE-754 single, double, extended
-       \item Custom implementation of Rationals with \verb/int64_t/
-       \begin{itemize}
-               \item Very limited since the integers grow exponentially and overflow
-       \end{itemize}
-       \item Custom implementation of Rationals with custom Arbitrary precision integers
-       \begin{itemize}
-               \item Actually works
-               \item Implementation of division is too slow to be feasible
-       \end{itemize}
-       \item Custom rationals but with GMP arbitrary precision integers
-       \begin{itemize}
-               \item Our implementation of GCD is not feasible
-       \end{itemize}
-       \item Paranoid Numbers; store a operation tree of IEEE-754 floats and simplify the tree wherever \verb/FE_INEXACT/ is \emph{not} raised
-       \begin{itemize}
-               \item This was a really, really, really, bad idea
-       \end{itemize}
-       \item Just use GMP rationals already
-       \begin{itemize}
-               \item Works
-       \end{itemize}
-       
-       \item MPFR floats
-       \begin{itemize}
-               \item They work, but they don't truly give arbitrary precision
-               \item Because you have to specify the maximum precision
-               \item However, this can be changed at runtime
-               \item Future work: Trial MPFR floats changing the precision as needed
-       \end{itemize}
-       
-\end{itemize}
+\subsection{Na\"{i}ve Approach}
+
+A na\"{i}ve approach would be to replace all floating point operations with arbitrary precision operations, and this was in fact tried in early experiments. This approach requires use of the CPU renderer, as GLSL is restricted to floating point representations. A type definition \texttt{Real} on the CPU can be selected at compile time.
+
+Unfortunately truly arbitrary precision number representations were found to be far too inefficient for practical purposes --- for example, rendering a frame with GMP Rationals could take up to 60 seconds at the default view.
+
+
+\begin{comment}
+\subsubsection{Number Representations Trialed}
+
+\begin{enumerate}
+       \item IEEE-754 single, double, extended (control)
+       \item Custom implementation of Rationals with 64 bit integers
+       \item Custom implementation of Rationals with custom Arbitrary Precision Integers       
+       \item Custom implementation of Rationals but with GMP integers
+       \item GMP Rationals
+       \item MPFR Arbitrary Precision Floats
+       \item iRRAM ``exact'' real arithmetic\cite{}    
+\end{enumerate}
+\end{comment}
+
+\subsection{Intermediate Coordinate Systems}
+
+When an object is visible on the screen it is only necessary to render it accurately to within the nearest pixel.
+As shown in the Results Section \ref{}, introducing an intermediate coordinate system for a large number of objects and applying transformations to this coordinate system instead of individual objects produces the best results both in terms of reduced rounding errors using floating point arithmetic, and reduced number of required arbitrary precision operations.
+
+\subsection{Quadtree Document Division}
+
+An approach identified by Gow\cite{} is to construct intermediate coordinate systems as the user manipulates the view. 
+
+
 
 \section{Libraries Used}
+
+The libraries used to compile the IPDF software are:
 \begin{itemize}
        \item SDL2 - Simple Direct media Library
        \begin{itemize}
                \item Used for window management and to obtain an OpenGL context
-               \item Also provides BMP handling which is useful
-       \end{itemize}
-       \item Qt4 (optional)
-       \begin{itemize}
-               \item Open source toolkit for Dialog based applications
-               \item We can optionally compile with a Qt4 based control panel
-               \item This is useful for interacting with the document
-               \item Has way more features than we actually use it for
-       \end{itemize}
-       \item OpenGL - Standard API for rendering on GPUs
-       \begin{itemize}
-               \item Using GLSL shaders
-               \item B\'{e}ziers are rendered using a Geometry shader which produces line segments
-       \end{itemize}
-       \item PugiXML - Open source XML parsing library
-       \begin{itemize}
-               \item Used to parse SVGs
+               \item Provides Bitmap handling functions
        \end{itemize}
+       \item Qt4 (optional) --- Open source toolkit for Dialog based applications
+       \item OpenGL (4.4) --- The standard API for controlling GPUs
+       \item PugiXML --- Open source XML parsing library used to implement parsing of SVGs
        \item GNU Multiple Precision (GMP)
        \begin{itemize}
                \item Implements arbitrary precision integers, floats, and rationals
-               \item We can use the arbitrary precision integers with a custom rational type
-               \item Or just use the GMP rational type (much better)
-               \item We don't use the floats, because they are hardware dependent
-       \end{itemize}
-       \item MPFR
-       \begin{itemize}
-               \item MPFR is built on GMP but ensures IEEE-754 consistent rounding behaviour
-               \item (Not hardware dependent)
-               \item We can compile with MPFR floats but the precision is currently fixed at compile time
+               \item Highly optimised using CPU specific assembly instructions
        \end{itemize}
+       \item MPFR --- built on GMP but ensures IEEE-754 consistent rounding behaviour
 \end{itemize}
 
 
-\section{Design of Performance Tests}
-\begin{itemize}
-       \item This is mostly covered in the Results chapter
-       \item Control the program through stdin using a python script   
-       \item Results plotted with matplotlib
-\end{itemize}
-
diff --git a/chapters/Progress.tex b/chapters/Progress.tex
deleted file mode 100644 (file)
index e37865d..0000000
+++ /dev/null
@@ -1,106 +0,0 @@
-\chapter{Progress Report}\label{Progress}
-
-We describe the current state of our project in relation to the aims outlined in Chapter \ref{Introduction}. At this stage work on the project has been done in collaboration with David Gow; however the Project Proposals and Literature Reviews were produced individually.
-
-\section{Literature Review}
-The literature examined in Chapter\ref{Background} can broadly classed into three different areas (with major references indicated):
-\begin{enumerate}
-       \item Rendering Vector Graphics \cite{computergraphics2, knuth1983metafont, kilgard2012gpu}
-       \begin{itemize}
-               \item Rasterisation of Vector Graphics is non-trivial but well understood
-               \item Traditionally most rasterisation has been performed on the CPU and drawing on a dedicated GPU; current interest is in techniques for utilising the GPU directly to rasterise vector graphics
-       \end{itemize}
-       \item Representations of Vector Documents \cite{hayes2012pixels, plrm, knuth1984texbook, svg2011-1.1, pdfref17}
-       \begin{itemize}
-               \item Traditional approaches are be based on a programmatic model (PostScript, {\TeX}, DVI)
-               \item The Document Object Model (DOM) used by web technologies is a powerful way to produce dynamic documents (HTML5, SVG, Javascript)
-               \item These approaches can overlap (PDF)
-       \end{itemize}
-       \item Number Representations \cite{ieee754std2008, HFP, goldberg1991whatevery, fousse2007mpfr}
-       \begin{itemize}
-               \item Most document standards either specify, suggest, or imply a IEEE-754 floating point representation ({\TeX} is an exception)
-               \item IEEE-754 is widely used, although there are instances of languages or processors which do not conform exactly to the standard
-               \item Some GPUs in particular may not conform to IEEE-754, possibly trading some accuracy for performance
-               \item Arbitrary precision floating point arithmetic is possible through several libraries
-       \end{itemize}
-\end{enumerate}
-
-To improve the Literature Review we could consider the following topics in more detail:
-\begin{enumerate}
-       \item Additional approaches to arbitrary precision possibly including symbolic computation
-       \begin{itemize}
-               \item The Mathematica computational package claims to use symbolic computation, but we have yet to explore this field
-       \end{itemize}
-       \item Floating point errors in the context of computing B\'{e}zier Curves or similar
-       \item Algorithms for reducing overall error other than Fast2Sum
-       \item Alternative number representations such as rationals (eg: $\frac{1}{3}$)
-       \item How well GPUs conform or do not conform to IEEE-754 in more detail
-       \item Additional aspects of rendering vector documents including shading
-\end{enumerate}
-
-
-\section{Development of Testbed Software}
-
-We have produced a basic Document Viewer capable of rendering simple primitives under translation and scaling. The OpenGL 3.1 API is used to interface with graphics hardware. This software has the following features:
-\begin{enumerate}
-       \item A type name \verb/Real/ is used in place of the standard floating point types \verb/float/, \verb/double/ or \verb/long double/. This type name can be redefined to refer to one of the standard types or a custom real number representation, allowing us to easily recompile and test our software for different representations.
-       \item Screenshots can be overlaid on top of each other to get a pixel comparison of the graphical output of different versions of the program
-       \item Test documents can be loaded and saved so that we can compare different versions of the program on identical inputs
-       \item The time for rendering can be measured
-       \item Coordinate transformations may be performed on either the GPU or CPU 
-\end{enumerate}
-
-We have noticed the CPU produces more precise coordinate transformations at large ``zoom'' levels, but is significantly slower than the GPU. We have yet to quantitatively measure this difference.
-
-\section{Floating Point Arithmetic}
-
-Algorithms for floating point arithmetic may be implemented in software (CPU) or on dedicated hardware (FPU). We have made progress towards both approaches. 
-
-An open source Virtual FPU implemented in the VHDL language has been successfully compiled and can be substituted into our testbed software in place of native arithmetic running on the CPU. The timing diagram for this FPU throughout the execution of test programs can be extracted. Currently the virtual FPU is restricted to 32 bit floats and the square root operation is unimplemented.
-
-Mainly motivated by producing Figure \ref{floats.pdf} we have also implemented functions to convert an arbitrary \verb/Real/ type (which may be IEEE-754 floats) to and from a fixed size floating point representation of our choosing. We have not implemented any operations for floating point arithmetic using these representations.
-
-By using the functions to convert real numbers to variable precision floats as an interface for the virtual FPU, we hope to illustrate the limitations of floating point arithmetic more clearly than would be possible using IEEE-754 binary32 as is native to the C and C++ languages. Using the virtual FPU instead of a CPU based software library will prove useful for determining the exact performance of floating point operations.
-
-\section{Prototype Document Formats}
-
-Our testbed software is capable of reading primitive attributes from either a binary file or XML plain text file. Our format is conceptually similar to the Document Object Model, although there is currently only one generation in the tree as no primitives can contain other elements as of yet.
-
-If time permits, we plan to extend our XML format to cover a subset of the SVG standard. This may allow us to compare the rasterisation of an SVG using our own software and traditional software relying on IEEE-754 floats.
-
-Some of the figures produced for Chapter \ref{Background} may prove useful as standard test images for comparing the qualitative performance of versions of our software.
-
-\section{Version Control and Backup of Work}
-
-Git is a distributed version control system widely used in the development of open source software. All rescources created for or used by this project have been placed in git repositories on several servers. The repositories are publically accessable at \url{http://git.ucc.asn.au}, \url{http://szmoore.net/ipdf}.
-
-\section{Timeline}
-
-Deadlines enforced by the faculty of Engineering Computing and Mathematics are \emph{italicised}.\footnote{David Gow is being assessed under the 2014 rules for a BEng (Software) Final Year Project, whilst the author is being assessed under the 2014 rules for a BEng (Mechatronics) Final Year Project; deadlines and requirements as shown in Gow's proposal\cite{proposalGow} may differ}.
-
-\begin{center}
-\begin{tabular}{l|p{0.5\textwidth}}
-       {\bf Date} & {\bf Milestone} \\
-       \hline
-       $1^{\text{st}}$ May & Testbed Software (basic document format and viewer) completed and approaches for extending to allow infinite precision identified. \\
-       \hline
-       $17^{\text{th}}$ May & Draft Progress Report and Literature Review \\
-       \hline
-       $26^{\text{th}}$ May & \emph{Progress Report and Literature Review due.}\\
-       \hline
-       $9^{\text{th}}$ June & Demonstrations of limitations of floating point precision in the Testbed software. \\
-       $1^{\text{st}}$ July & At least one implementation of arbitrary precision for basic primitives (lines, polygons, curves) completed. Other implementations, advanced features, and areas for more detailed research identified. \\
-       \hline
-       $1^{\text{st}}$ August & Experiments and comparison of various arbitrary precision implementations completed. \\
-       \hline
-       $1^{\text{st}}$ September & Advanced features implemented and tested, work underway on Final Report. \\
-       \hline
-       TBA & \emph{Conference Abstract and Presentation due.} \\
-       \hline
-       $10^{\text{th}}$ October & \emph{Draft of Final Report due.} \\
-       \hline
-       $27^{\text{th}}$ October & \emph{Final Report due.}\\
-       \hline
-\end{tabular}
-\end{center}
-
diff --git a/chapters/Progress/Progress.tex b/chapters/Progress/Progress.tex
deleted file mode 100644 (file)
index e37865d..0000000
+++ /dev/null
@@ -1,106 +0,0 @@
-\chapter{Progress Report}\label{Progress}
-
-We describe the current state of our project in relation to the aims outlined in Chapter \ref{Introduction}. At this stage work on the project has been done in collaboration with David Gow; however the Project Proposals and Literature Reviews were produced individually.
-
-\section{Literature Review}
-The literature examined in Chapter\ref{Background} can broadly classed into three different areas (with major references indicated):
-\begin{enumerate}
-       \item Rendering Vector Graphics \cite{computergraphics2, knuth1983metafont, kilgard2012gpu}
-       \begin{itemize}
-               \item Rasterisation of Vector Graphics is non-trivial but well understood
-               \item Traditionally most rasterisation has been performed on the CPU and drawing on a dedicated GPU; current interest is in techniques for utilising the GPU directly to rasterise vector graphics
-       \end{itemize}
-       \item Representations of Vector Documents \cite{hayes2012pixels, plrm, knuth1984texbook, svg2011-1.1, pdfref17}
-       \begin{itemize}
-               \item Traditional approaches are be based on a programmatic model (PostScript, {\TeX}, DVI)
-               \item The Document Object Model (DOM) used by web technologies is a powerful way to produce dynamic documents (HTML5, SVG, Javascript)
-               \item These approaches can overlap (PDF)
-       \end{itemize}
-       \item Number Representations \cite{ieee754std2008, HFP, goldberg1991whatevery, fousse2007mpfr}
-       \begin{itemize}
-               \item Most document standards either specify, suggest, or imply a IEEE-754 floating point representation ({\TeX} is an exception)
-               \item IEEE-754 is widely used, although there are instances of languages or processors which do not conform exactly to the standard
-               \item Some GPUs in particular may not conform to IEEE-754, possibly trading some accuracy for performance
-               \item Arbitrary precision floating point arithmetic is possible through several libraries
-       \end{itemize}
-\end{enumerate}
-
-To improve the Literature Review we could consider the following topics in more detail:
-\begin{enumerate}
-       \item Additional approaches to arbitrary precision possibly including symbolic computation
-       \begin{itemize}
-               \item The Mathematica computational package claims to use symbolic computation, but we have yet to explore this field
-       \end{itemize}
-       \item Floating point errors in the context of computing B\'{e}zier Curves or similar
-       \item Algorithms for reducing overall error other than Fast2Sum
-       \item Alternative number representations such as rationals (eg: $\frac{1}{3}$)
-       \item How well GPUs conform or do not conform to IEEE-754 in more detail
-       \item Additional aspects of rendering vector documents including shading
-\end{enumerate}
-
-
-\section{Development of Testbed Software}
-
-We have produced a basic Document Viewer capable of rendering simple primitives under translation and scaling. The OpenGL 3.1 API is used to interface with graphics hardware. This software has the following features:
-\begin{enumerate}
-       \item A type name \verb/Real/ is used in place of the standard floating point types \verb/float/, \verb/double/ or \verb/long double/. This type name can be redefined to refer to one of the standard types or a custom real number representation, allowing us to easily recompile and test our software for different representations.
-       \item Screenshots can be overlaid on top of each other to get a pixel comparison of the graphical output of different versions of the program
-       \item Test documents can be loaded and saved so that we can compare different versions of the program on identical inputs
-       \item The time for rendering can be measured
-       \item Coordinate transformations may be performed on either the GPU or CPU 
-\end{enumerate}
-
-We have noticed the CPU produces more precise coordinate transformations at large ``zoom'' levels, but is significantly slower than the GPU. We have yet to quantitatively measure this difference.
-
-\section{Floating Point Arithmetic}
-
-Algorithms for floating point arithmetic may be implemented in software (CPU) or on dedicated hardware (FPU). We have made progress towards both approaches. 
-
-An open source Virtual FPU implemented in the VHDL language has been successfully compiled and can be substituted into our testbed software in place of native arithmetic running on the CPU. The timing diagram for this FPU throughout the execution of test programs can be extracted. Currently the virtual FPU is restricted to 32 bit floats and the square root operation is unimplemented.
-
-Mainly motivated by producing Figure \ref{floats.pdf} we have also implemented functions to convert an arbitrary \verb/Real/ type (which may be IEEE-754 floats) to and from a fixed size floating point representation of our choosing. We have not implemented any operations for floating point arithmetic using these representations.
-
-By using the functions to convert real numbers to variable precision floats as an interface for the virtual FPU, we hope to illustrate the limitations of floating point arithmetic more clearly than would be possible using IEEE-754 binary32 as is native to the C and C++ languages. Using the virtual FPU instead of a CPU based software library will prove useful for determining the exact performance of floating point operations.
-
-\section{Prototype Document Formats}
-
-Our testbed software is capable of reading primitive attributes from either a binary file or XML plain text file. Our format is conceptually similar to the Document Object Model, although there is currently only one generation in the tree as no primitives can contain other elements as of yet.
-
-If time permits, we plan to extend our XML format to cover a subset of the SVG standard. This may allow us to compare the rasterisation of an SVG using our own software and traditional software relying on IEEE-754 floats.
-
-Some of the figures produced for Chapter \ref{Background} may prove useful as standard test images for comparing the qualitative performance of versions of our software.
-
-\section{Version Control and Backup of Work}
-
-Git is a distributed version control system widely used in the development of open source software. All rescources created for or used by this project have been placed in git repositories on several servers. The repositories are publically accessable at \url{http://git.ucc.asn.au}, \url{http://szmoore.net/ipdf}.
-
-\section{Timeline}
-
-Deadlines enforced by the faculty of Engineering Computing and Mathematics are \emph{italicised}.\footnote{David Gow is being assessed under the 2014 rules for a BEng (Software) Final Year Project, whilst the author is being assessed under the 2014 rules for a BEng (Mechatronics) Final Year Project; deadlines and requirements as shown in Gow's proposal\cite{proposalGow} may differ}.
-
-\begin{center}
-\begin{tabular}{l|p{0.5\textwidth}}
-       {\bf Date} & {\bf Milestone} \\
-       \hline
-       $1^{\text{st}}$ May & Testbed Software (basic document format and viewer) completed and approaches for extending to allow infinite precision identified. \\
-       \hline
-       $17^{\text{th}}$ May & Draft Progress Report and Literature Review \\
-       \hline
-       $26^{\text{th}}$ May & \emph{Progress Report and Literature Review due.}\\
-       \hline
-       $9^{\text{th}}$ June & Demonstrations of limitations of floating point precision in the Testbed software. \\
-       $1^{\text{st}}$ July & At least one implementation of arbitrary precision for basic primitives (lines, polygons, curves) completed. Other implementations, advanced features, and areas for more detailed research identified. \\
-       \hline
-       $1^{\text{st}}$ August & Experiments and comparison of various arbitrary precision implementations completed. \\
-       \hline
-       $1^{\text{st}}$ September & Advanced features implemented and tested, work underway on Final Report. \\
-       \hline
-       TBA & \emph{Conference Abstract and Presentation due.} \\
-       \hline
-       $10^{\text{th}}$ October & \emph{Draft of Final Report due.} \\
-       \hline
-       $27^{\text{th}}$ October & \emph{Final Report due.}\\
-       \hline
-\end{tabular}
-\end{center}
-
index 1d4d939..6f07e3d 100644 (file)
@@ -1,7 +1,5 @@
 \chapter{Results and Discussion}
 
-{\bf Note: Need to be more consistent, I often refer to B\'{e}ziers and Objects interchangably (since the original design was based around an Object and B\'{e}zier was just one possible Object, but we have moved on to pretty much only caring about B\'{e}ziers now)}
-
 \section{Qualitative Rendering Accuracy}
        
 Our ultimate goal is to be able to insert detail at an arbitrary point in the document. Therefore, we are interested in how the same test SVG would appear when scaled to the view coordinates, as the view coordinates are varied. 
@@ -119,8 +117,19 @@ By considering Figure \ref{loss_of_precision_grid_0.5.pdf} and \ref{cumulative_e
 \section{Performance Measurements whilst Rendering}
        
 As discussed above, we succeeded in preserving rendering accuracy as defined above for an arbitrary view.
-However this comes at a performance cost, as the size of the number representation must grow accordingly.
+However this comes at a performance cost, as the size of the Rational number representation must grow accordingly. Figures \ref{memory.pdf} and \ref{time.pdf} were obtained by repeatedly clearing the document, scaling, and adding a fixed number of B\'{e}zier curves.
+
+\begin{figure}[H]
+       \centering
+       \includegraphics[width=0.8\textwidth]{figures/memory.pdf}
+       \label{memory.pdf}
+       \caption{Memory used per Rational whilst zooming in}
+\end{figure}
 
-{\bf TODO: Insert performance measurements here}
+\begin{figure}[H]
+       \centering
+       \includegraphics[width=0.8\textwidth]{figures/time.pdf}
+       \label{time.pdf}
+       \caption{Time taken to scale about the fixed point}
+\end{figure}
 
-{\bf TODO: Also, would be nice to show a graph (log scale) where something goes past $10^{\pm320}$ (absolute limit for doubles, previous figures are all within range of representable floats}
index 70b0eff..afde44d 100644 (file)
Binary files a/figures/gpufloats.pdf and b/figures/gpufloats.pdf differ
index 76eb9ae..492c50f 100644 (file)
@@ -14,8 +14,8 @@
    height="1182.4047"
    id="svg2"
    version="1.1"
-   inkscape:version="0.48.4 r9939"
-   sodipodi:docname="comparison.svg">
+   inkscape:version="0.48.5 r10040"
+   sodipodi:docname="gpufloats.pdf">
   <defs
      id="defs4">
     <clipPath
      inkscape:pageshadow="2"
      inkscape:zoom="0.49497475"
      inkscape:cx="287.57773"
-     inkscape:cy="673.34823"
+     inkscape:cy="430.91162"
      inkscape:document-units="px"
-     inkscape:current-layer="layer1"
+     inkscape:current-layer="g3094"
      showgrid="false"
      fit-margin-top="0"
      fit-margin-left="0"
      fit-margin-right="0"
      fit-margin-bottom="0"
-     inkscape:window-width="1280"
-     inkscape:window-height="996"
-     inkscape:window-x="0"
-     inkscape:window-y="0"
+     inkscape:window-width="1366"
+     inkscape:window-height="692"
+     inkscape:window-x="1280"
+     inkscape:window-y="280"
      inkscape:window-maximized="1" />
   <metadata
      id="metadata7">
@@ -82,7 +82,7 @@
         <dc:format>image/svg+xml</dc:format>
         <dc:type
            rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
-        <dc:title />
+        <dc:title></dc:title>
       </cc:Work>
     </rdf:RDF>
   </metadata>
       <image
          width="802"
          height="629"
-         xlink:href="data:image/png;base64,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
-7LPP2CuvvNIj/eOPP9ZJf/PNN1lsbCz7r//6L3bmzBm2evVqFhgYqDNbC5+WlhajZuwSqnd9fT1L
-TExk0dHRLDs7W2e/tWvXsqNHj7LIyEiWnp7OpZeUlLCVK1eyjRs3srlz57LvvvtOMFZFRQXbvn07
-O3r0KAsLC2M7d+7UKScrK4t98sknOmld652UlMRWrFghGIuv7OLiYrZx40YWFBTEtmzZolMG3z76
-6i2Xy5lMJmOOjo4sOjqayWQyVllZKVgHT09P9ssvvzB9+OoRHx/P5Tl8+DC7efMmY4wxmUzGPD09
-2XPPPcdkMhmTy+UGj0kfoX2qqqrYu+++y+Li4lh+fj63D1+6p6cnKykpYYwxtnPnTnblyhXBsrtz
-c3NjxcXFPdInTpzIrl27Jrivk5OTwfj64tTX1zOJRNIjL1/6/PnzWXJyMgsLC9NbBl8dusrMzGQJ
-CQksIiKCHTt2jEVFRXH7CJ2ffHbv3s22b98umEd7XBqNhg0bNoxLnzlzJissLDSqnJs3bzIPDw+d
-NH3tcenSJTZr1izuc3BwMHdedMXXr/rS9ZXNx8PDg+Xm5vZI1/c75Nq1a+y5557jjZWZmcm6zrzY
-NRZttNFGG220CW0rV65kggsadiWXy1FSUoJx48ZxaQcOHOC2W7ducekZGRkICQlBSEiIwcegesPP
-zw/Z2dn4xz/+gfnz5/f4Od9x9Ub3eoeFhWHkyJHYunUrNm3ahNu3b3N5U1JSUFtbi+3btyMhIQFt
-bW1gjCE4OBjR0dGYMWOGzt0bvlgNDQ3Yt28fcnNz8dFHH8HPz0/nmFpbW3n/Oq9Wq5Gdnc09+sUX
-i6/st99+Gy+88AJOnjypcxdBaB999ZZKpdi/fz+GDh2KDz/8kPs3Xx3u3r0LhULB+ygWXz2OHDnC
-5cnOzsadO3cAAPv370dYWBiWLFmC/fv3c3/9FTomfYT2mTt3LqRSKVasWIHIyEju0Se+dK21a9ei
-paUFXl5egmVrHThwAIsWLcL06dPh5uam8zOFQoGmpiaDs0qp1WoMHjwYc+bMQUZGRo+fGxtHyOHD
-h+Hr66t3AVOhOnRXWlqK1tZW+Pj44ODBg3jppZe4fhY6P/nI5fIe64TwHVdRUREGDRqE0tJS/PDD
-D3B3d++x2CGflJQUxMTEcJ/52sPe3h4tLS3c55aWlh6LxvL1B19697INSU9P535HVlZW6vys6++Q
-8ePHo7y8HHFxccjOzu4RZ9KkSbh8+bLR5RJCCCFaIpEIBh94z8nJgVQqRV5eHr766iujVkk/ceIE
-tm7dCg8PD6xduxadnZ0wM+u79+LNzMwwatQoFBcXY8iQIX0Wtyt99VYoFGhsbERHRwfkcjnc3Nxw
-6tQpboVisViM2NhYiMVi+Pj4IDc3F9bW1nB1deWe29Y+FmMoVmtrK7Zt2wZzc3Pui9uRI0dw4sQJ
-VFdXo6GhAVevXoWnpyfi4+MBAF5eXujo6IC/vz+io6O5unSPJVS2lZUVvvzyS1hbW+tcAAnto6/e
-3VeR1uKrw6xZswyeW/ra5Ndy9+5dMMYwd+5cAEBgYCAuXLgAqVSqN127uF9sbCzs7OxMfq7e0tIS
-SqUSSqUSVlZWAAClUolly5YhKSkJNjY2gvsXFxfD2dkZV65cQXh4OCoqKmBtbW1yHD4PHjxAcnIy
-zp49i8zMTKPrwGfChAlwcnJCTU0NJkyYgC+++AIAeM9PIUVFRXB1deX9edfjqq6uhqOjI7Kzs1FY
-WAgHB4ceq7Lro1arkZaWBrlcDkC4PcaPHw+NRoO33noLarUaVVVVuHv3Lvdzvv7gS+9e9qPo/jvE
-0tIS169fx/79+/Haa6/BxsYGX3/9Nbd44aBBg1BdXQ2NRgNzc/NHLp8QQsifi8GV1adNm4bMzExc
-vXoVL7/8MmbMmMF9gZHJZD3yNzc345tvvkFcXBzMzc1RW1uLS5cuGf2lwVivv/467t27p/dn+o7L
-VPrqXV5eDhsbG9TV1QEAvL29MX78eG6fgQMHci+22tnZQaVSoaGhAY6Ojjp5ABiMNXXq1B7/Yw8I
-CMCYMWOQnZ2NkpISLF++XOfFf74vIt1jCZX9+eef49ixY5DJZHBycuKeExfaR1+9+fDV4ZlnnkFV
-VRXa2trQr18/o+rRXfc7D49TdXU1nJycuM9OTk6oqqrCkCFD9KZrhYSEIDU1FRcvXsSzzz5rVFky
-mQwymQzPP/88srKy8Pzzz0Oj0WDp0qVYsGABwsPDDcZwdnYG8LDfJk+ejG+//RbBwcEmx+Fz8OBB
-dHR04NVXX8WtW7dQUFCApKQk7gVtfXUQYmNjA7FYDGtra4jFYu684zs/hQwYMAANDQ16f9b9uHx9
-fVFWVsbdXVi8eLFRv09Onz6NKVOmcO+kGWqPy5cvIyMjA4wxVFZWwt/fHwB4+0Oon7qXbYwFCxZw
-q7B3pe93iEQiwTvvvIN33nkHMTExOHnyJJYtWwYA6OjogIWFBV2EEEIIMZlIJDJ8IaLl6emJwMBA
-7Nu3D2+++SZvvszMTMyfPx+HDx8GAO5l8r6+EHnmmWfwzDPPIC8vr0/jdte13hs3boRKpcKyZcu4
-L8tdH7HQx8/PD+vWrYNKpYJKpcLVq1cBAL6+voKx9P2PfejQoRg6dCju3LnDPf5kjO6xDJUdExOD
-RYsWYfz48WhsbIS9vb3BffgMGTJE50u7UB38/f2RlpaG1atXA3j4V+WuF3H62kT7mEu/fv3w/fff
-Y9WqVSYfkzG67zNp0iSUlZWhra0NVlZW+P777yGTyTB8+HC96VqRkZEICQnBwoULkZOTgwEDBvCW
-2dDQgP79+3N3E8vLy7mZjFavXo0pU6Zwd9C6OnPmDO7cuYPly5cDePiydv/+/QEAjY2NKCgo4O5Y
-CcUxhfZiHXj4iFxzczNCQ0MF69Bb+s5PIWPHjkVJSQmmTZvGpfEd14ABA2BpaYnS0lI4OztDLpdj
-//793H7d21YrOTkZK1eu5D7ztUdXYWFhKCwsRH5+PvfoGF9/CPVT97L70v379wH8+w8oKpVKZ0z+
-8ssvGDNmzGMpmxBCyB9bj1mzDHnrrbeQmJjI/eXZy8uL27TTSJ46dQrBwcHcPiEhITh16hT3OTQ0
-lNun63SW+kybNg07duzAiRMn4OXlhZKSEqOOU99xPQptvZVKJTZv3oyIiAjuPYCLFy8K7mtra4vY
-2Fj4+fnBx8cHo0aNAvDw8TJTY2l5eHj0+FJjCqGyg4ODERERgcjISCxatIj7ktfb412/fj1iY2N7
-9J++OuzatQs///wzfH19MXbsWHz77bcG4y9fvhy+vr4ICQkx+gsR3zGZso9IJMKmTZswe/ZsBAQE
-4Nlnn8WIESN407vy8PBAbGxsj6mmu8vLy4Orqyu8vLwwZswYzJkzBx4eHrh06RJSU1Nx/Phx7jy/
-cOECt98333yD9PR07nN+fj6GDRsGLy8v+Pr6IiEhARKJxGCcrVu3YsaMGWhuboaXlxeSk5N507vO
-wjR69GhIJBKMHj2atw69xXd+Cpk3bx7++c9/GtW2APDxxx9j+fLlCA0NxZYtW3QuFru3LfBwlj25
-XK5zp4KvPbTmzp0LLy8vrF27Fp9++inMzMx4+0Oon/SV3Zfu3buHqVOnwt/fH56enujs7NS5m5WZ
-mYl58+Y9lrIJIYT8CchkMm6mk4ULF7I33niD/fzzz0bNvvJ7olAo2N69e42aNcsY1dXVTKlUGp2/
-oaGhz2L1JX1lKxQKweN53Md7//59k+I3NjYyjUbz2I5HiEajYa2trUan90ZZWVmfxCkqKuqTOL3R
-V3VgzPD5qc/MmTNZdXV1j3Sh42prazP52Exx+/btxxq/LykUCqZSqXTSNBoNmzp1Kmtubu6RH7+B
-2Vhoo4022mj7bW8ymYyJ1qxZwz799FMAwLlz51BWVoZp06Zh0qRJ+COpqqrC6dOnYW9vj6ioqF/7
-cAghT1B+fj7EYvEjzQpGdNXV1eGnn35CYGBgj58Z+8gvIYSQP681a9ZA50KEEEIIeVR0IUIIIcSQ
-NWvWwOh1RAghhBBCCCGkL3DriKSkpGDs2LHczFYKhQIHDhzAe++9B+DhlI4nTpzABx980OcHoVar
-ERERobPQ3+MWHx+PqKgobtG/xxE/Pz8fR48ehZ2dHQDg+PHjqKqqwpo1a7ipboXw5a+srERaWhpa
-Wlowb948TJkyhftZfn4+UlJS4ODggM2bNwN4uN7FoUOH4OjoiJiYGIjFYrS3t2PPnj0oLS2Fu7s7
-Fi1ahOHDhxuMz1dGb5jaHvrKFqqH1uHDh1FXV8dNjFBYWIizZ8+itLQUiYmJXD597dRd91imaG9v
-R2pqKuRyOSZMmICFCxdi8ODBfVpvoTL46rdhwwZu8gkXFxduzPdW937Ny8vrMWHEkiVLuHV1TNHb
-NtR3zv5R2nD58uWws7PDtm3b4ODg8EjlEkIIIU+amUgkQkdHB1JTU7nE//u//9NZbXfIkCGYOXPm
-YzkAxthjn4K3u7KyMjQ3Nz+W2Hl5ebh69SpOnTrFXYS89NJLOH/+PDo6OuDl5YWH73LyE8r/wgsv
-YMiQIfDz88O8efO49RH++te/4vXXX0doaCj3ZZwxhmeffRZDhgyBWCzmYqnVaojFYshkMtjZ2SEk
-JASdnZ2C8fnK6A1T24OvbKF6AA/7edu2bThz5gyXlpqaCoVCgUOHDnFpfO3Ulb5Yprhz5w5u3LiB
-xYsXQ61WIygoqM/rzVeGUP1SU1O52Z20i232lr5+lUgkXHypVIqMjAxuXJiqN23Id87+Udrw0KFD
-sLe3R0ZGxiOVSwghhDxpIpEIiIuLYxUVFWz06NHcjCdRUVHsH//4B2OMsb179zKZTMaSk5N1ZkWp
-r69niYmJLDo6mmVnZ3Ppr776ao8ZVLZu3cru37+vdzaWjo4ONmqdTyEAACAASURBVGLECJaYmMgi
-IyPZ999/z/2sqqqKvfvuuywuLo7l5+dz6fHx8dy/Dx8+zG7evMl9Xrt2LTt69CiLjIxk6enpXHpJ
-SQlbuXIl27hxI5s7dy777rvvGGOMFRcXs40bN7KgoCC2ZcsWnWPLzc3l8hnryy+/ZK+88gr3WaPR
-sGHDhnGfZ86cyQoLC3n3F8r/4MED5uzszDo7OxljjIWEhLBz584xxhgbP348U6vVOrEuXbrEZs2a
-xX0ODg5mJSUlPcp0c3NjxcXFgvH5yjCVqe1hStnaemjNnz+fJScns7CwMJ189fX1TCKRcJ+NaSe+
-WL01ceJEdu3aNYP5elPv7mUI1c/JyYk3Lt8Y18eYfr158ybz8PAQjGMKY9rQ2HP2cbShKe3HWO/b
-8LPPPmObN282GP9Jwm9gNhbaaKONNtp+21tcXBwzA4ARI0ZALBajvLwcjDF899133Fog69atQ1RU
-FLKystBVWFgYRo4cia1bt2LTpk24ffs2AKCkpAQVFRU6eVNTU3UWweru1q1baGxsxPvvvw+ZTIay
-sjIA4NarWLFiBSIjI7nHH44cOcLtm52djTt37nCfU1JSUFtbi+3btyMhIQFtbW1gjCE4OBjR0dGY
-MWOGzmNgb7/9Nl544QWcPHkSQUFBOsd15MgR7Nixg/e49amtrdVZd6CoqAiDBg1CaWkpfvjhB7i7
-u+PKlSu8+wvld3BwwOrVq7F+/Xps3boVDg4OmD59OsrLy2Fra4vw8HB4e3tzx6xd7E+rpaUFP/74
-I/f5wIEDWLRoEaZPnw43Nzfe+AB4yzCVqe1hTNnd6wE8fIzK19cXLi4uBo/JUDuZEssYCoUCTU1N
-Bmdw6k299ZUhVD+1Wo3Bgwdjzpw5Pf6qzjfG9TGmX1NSUrgVyx+VMW1ozDn7ONvQlPYDet+GdnZ2
-uHfvnmBsQggh5LeIW1l9zpw5yMrKglQqhZubGyQSCe9OCoUCjY2N6OjogFwuh5ubG06dOoW4uDj4
-+PhALpcjMzMTV69eRUJCgsEvXGZmZti4cSPs7OwQGRmJs2fPIjIyEowxzJ07FwAQGBiICxcu6Cym
-pY9YLEZsbCzEYjF8fHyQm5sLa2truLq6cs+ld318wsrKCl9++SWsra17rP6+bt067uLHGHv37sUX
-X3yBv/3tb1xadXU1HB0dkZ2djcLCQjg4OKC6upo3hqH8zc3NaGhogJmZGUQiEVpaWlBWVga5XI78
-/Hw8/fTTCA4ORlhYGDw8PKDRaPDWW29BrVajqqoKd+/e1SnP0tISSqUSSqUSVlZWeuNbWloKlmEK
-U9sDgFFld61HS0sLkpOTcfbsWWRmZho8pvHjx/O204MHD0yKZYhSqcSyZcuQlJQEGxsbwbym1tvK
-ykpvGUL1Ky4uhrOzM65cuYLw8HBUVFTA2tpacIw3NzcjJycHwMNVy4cNG2awX9VqNdLS0iCXy59Y
-Gxp7zj6ONrx//z5v+wHo0zYMCAjAp59+is2bN2PTpk2wtrZ+5DYmhBBCHjeRSPTvWbPCwsJw9uxZ
-ZGVlISQkRHDH8vJy2NjYoK6uDnV1dfD29ubWHZk2bRrkcjlyc3MhEolw5coVTJs2TTCetbU194Vi
-4MCBuHv3Lqqrq+Hk5MTlcXJyQlVVVY99u18oDBw4kHuJ1M7ODiqVCjU1NTp3ZAYOHMj9+/PPP4dU
-KoVMJuvxHszQoUP/v/buPsrrsk78/2uGm+FeuXEtLBaHUFHRYBAWR7lxRU1KMc3jqQw7GhDqlJkd
-3SJ1XdOzixYcis3dyoo6HbOSvFnTQlzEKG5S8HiTgogCKuZwOzAzMNfvD798fo7MfXANK4/HOe9z
-mM/N+31d12eAec7n5l3vbMjNOfbYY6OoqCg2bdpUuGz48OGxZs2amDx5ctx2222xevXqGD58eKP7
-aOr2q1atiieeeCJ++tOfxuzZs6NHjx7x61//OoYPHx7HHHNMDBkyJLp16xZjx46N3//+9xER8ec/
-/znGjx8fZ555ZgwfPjzGjBlTONaUKVNi3rx58be//S0WLFjQ6P73jquxY7RGa9ejJcd+7zx+9KMf
-RU1NTVx55ZUxZ86cBt/s+16NrVNb9tWYPXv2xGc/+9m46KKLWnQm7NbOu6ljNDa/I444IiIiTjnl
-lDj55JMLZ7Nv6u/4li1b4pe//GX88pe/jNWrVxfG2tTj+sADD8SwYcPiyCOPbNPa7dWaNWzJ9+yB
-WsOm1i9i/67hrl27orKyMk488cTo2LFja5cUANpFUVFRxFVXXZVSeue9GoMGDUof+9jH0sqVK+u9
-3nfBggXp05/+dOHrPXv2pOHDh9c7c/Tes+v+7W9/S+PHj08VFRVp9uzZ6fzzz0+PPPJIo68lrqmp
-SRGRli9fnlJK6ZOf/GRavHhxqqurS4MHD05VVVVpz549ady4cemVV15JKb3zuu3t27enPXv2pMGD
-B9d7H8eAAQMKf/7iF7+YFi1alLZv354GDx6campq0o4dO1KvXr0K99m1a1dKKaWqqqo0cODAemdA
-/5//+Z/0ox/9qIWvin7Hj3/843T11VfXu2zIkCHppZdeSlu2bEmlpaWpsrKyyWM0dvvVq1en0tLS
-wns4LrroosL7YI477ri0efPmlFJK55133j6vSX/uuefScccdl/bs2ZM2b95c70zkxx13XFq5cmWT
-+2/uGI899liaO3dui9aotevR2LEbm8fGjRvTsmXL0rJly9J3vvOddNppp9V7H9F73yPS2DqllJrd
-V2vm/fnPfz7deuutDV63P+bd3DHeO7+tW7cWLt+yZUs66qijCsdq6u94Y5p6XCdOnJh+9atf7XOf
-1qxfc/NraA0b+5490GvYlvVLqW1rOG/evPTlL3+52X3nFAfBa49tNpvNdnBvV111VYp3/9A8adKk
-dPTRRxe+3rRpUyorK0vHHHNM6tOnTyorK0v/9V//lVJ6503ZZ511VvrEJz6Rhg8fXi82jj322PSz
-n/0svfDCC6m4uLjwg0BDampqUr9+/dLo0aPT6NGj05QpU1JtbW1KKaW77747lZeXp9NOOy39y7/8
-S+E+M2fOTEOHDk1nnnlm+vjHP95siKSU0h133JFOOeWUdOKJJ6aPfvSjhcvHjBmTzj///HT22Wen
-r33ta/XGdv3117f6zcn33Xdfuvzyy+td9thjj6XTTjstjR49Ov34xz9u9hhN3f66665Lw4YNS6ef
-fnq64IILCmv18MMPp7POOiuddtpp6XOf+1zhh6xPfOITqaysLI0bNy4tXLgwpZTSokWL0sCBAwuP
-7Ve+8pVm99/UMVJK6ZZbbmnxWrV2PRo7dlPz2OuBBx6ot78bb7wxffSjH00dOnSo9/3c0Do1t6/W
-zPvJJ59MHTt2TGVlZYXtscce26/zbuoYDc3vj3/8YzrqqKNSWVlZOv7449N3v/vdesdu6u94Qxp7
-XF999dV05JFHpurq6n3u05rvm7asYWPfsznWsLXr19Y1vOuuu9I3v/nNFq1hLu39n5vNZrPZDv7t
-6quvTlFRUfF3/YezcePGBv9zbIt3Pxux1549e+r9VnGvrVu31vtBuK37Tyml9evX77c5rF69Oo0a
-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
-AQP2y+S++tWvxtixY2P69OkNjunMM8+M2traOPvss2Pz5s1x4okn1rv/5MmTY/r06fHv//7vMW/e
-vDjuuOMaPdZRRx0VRx11VKPXtVT37t1j2rRpUV5eHjt37ozS0tLCdU2t1WWXXRajR4+OI488sl74
-9OvXL6666qqIiBg6dGiMHDmyyfm15rEDAIC2atGZ1b/0pS/FkCFDYtq0aRHxzm/ZhwwZEq+88kps
-3bo1evXq1eD9Xn/99ejTp0907ty52YHU1dVFdXV14TfxB0pDY6qsrIzDDz/8oPotZlPr2thabdu2
-Lbp37x7Fxfuep7Kp/TWkNY8dUN/B9G8JAByMKioqmn6PyM6dO2Py5Mnx8ssvx6233trgbZr64fYD
-H/hAiwdTXFx8wCMkouEx9e7d+4Aft7WaWtfG1qpnz55t2l9DWvPYAQBAazUZIp07d44bb7yx3ic3
-RbzzBugHHnjggA4MAAB4/9r3NTzv0qFDh30iJOKd38gPHTr0gA0KAAB4fyuOeOeM6VOnTo25c+fG
-22+/3eI7L1u2LL7xjW8csMHldv3118dTTz1V+Hp/zu/ZZ5+N3bt3H3T7aq0tW7bElVdeGSNGjIjf
-//737TKGv1dD63fOOefs92Nce+218a1vfSu2bNkSERFTp06NqVOnxpw5c+K1116LiIgXXngh7rzz
-zsL97r333nj00Uf361gAAA5GxRER69atiz/+8Y+xffv2uOCCC1p8Arv+/fvHGWeccUAHmNOaNWti
-+/btha/35/wuueSS2Lx580G3r9Z68MEHo1evXrFs2bI488wz22UMf6+G1m/lypX7bf9f+tKX4tpr
-r41zzz03evToEU8//XRERNx1111RVlYWu3btirFjx8Zjjz0WGzZsqPcyxyVLluzXsQAAHKw6jBo1
-6qZBgwbFiy++GN/97nfj85//fFx11VUxefLk6Nq1a2zcuDFmzpwZ9957bxx99NFxxBFHRETEnDlz
-4p577onu3bvX+1jfiIjp06fHtm3b4pvf/GZ07NixcFK8l156Kb761a/GokWL4q9//Wv06dOn3sn7
-3quuri4effTRmDFjRtx3330xYsSIOOywwxodU0Q0et26deti7ty58dprr8X1118f69evj/Ly8li9
-enVcd9118fjjj8emTZuivLw8BgwY0Oj8GptbRMQdd9wR//Zv/xa/+c1vokePHjF48OBYvnx53Hzz
-zfGnP/0p1q5dGw8//HAMHz48evXqFVu2bInvf//7MXfu3PiHf/iHZj+2uKl9NTa/hsbU1DxefPHF
-uPXWW2PmzJmxZs2aGDduXOH4U6dOjV/96lexcePG+NOf/hT9+/cvnHumpWu+Y8eO+OEPfxhz5syJ
-oqKiuPXWW+Pkk0+ud+LGhjR2jKYej9as3x133BFHHHFE3HjjjVFcXFzvJYmteZyqq6tj6tSpsXz5
-8igtLY1Ro0bFP/7jP0ZExM033xz3339/nHrqqdGxY8d4+OGH4+STT47//d//jcmTJ0dExCOPPBI9
-e/aMU089tcn14OB28803t/cQAOCgNmrUqIiKior0wAMPpIkTJ6a9Lr744nTPPfeklFIaMWJEmj9/
-flq6dGk65phjUlVVVeF2CxYsSJ/+9KfTe3Xu3DnNnj07Pf/884X71NXVpdLS0vSHP/whPfTQQ6lz
-585p0aJF+9z33ebMmZM++9nPpjVr1qRnnnkmPf/8882OqbHrVq5cmT70oQ+lG264If31r39Nixcv
-Loxp4cKFaf78+am4uLjemBqaX0Nz22v+/Plp06ZN6bnnnkuDBw9OL7/8cuG6oUOHpk2bNtXbV3l5
-ebrvvvvSmjVr0tixY9O6deuaXI+m9tXQ/JoaU2PzOP/889OCBQvSjh07Gnx8ZsyYkb73ve/Vu6w1
-a/69730vffnLX0633XZbOvvss9P8+fPTTTfd1OycGztGU49Ha9avU6dO6c4770zPPfdcGjhwYNq+
-fXvhutY8Tr///e/ThAkTGrwuIlJKKdXW1qZLLrkkzZo1Ky1YsCCNHz++cJtrr702zZw5s9k5cHCL
-CJvNZrPZbE1sFRUVqcE3q3/wgx+M1atXx5tvvhkppTjvvPNixIgRMX78+Fi4cGFDd6mnU6dOMW3a
-tDj22GNj1KhRsXLlynj66aejtLQ0zjjjjPjYxz7W5G+u97rnnnvipptuiqOPPjpOOOGEOPbYY5sc
-U3PjraqqiltuuSUGDx4cp556aqxcuTIGDRoUY8eOjfPOO6/BN+a3ZG57lZWVxf333x933313dO3a
-NV566aVG97N+/frYunVr1NTUxLJly2Lw4MFx//33N3v8prx3fk2NqbF5lJSUxG9+85t4+umno7y8
-vNljtnbNIyJOOOGEOO6442LIkCFxwgknNLlOzR2jqcejNTp27BhXXnllHHfccTFy5MhYtmxZRLT+
-cXr55Zfjgx/8YERE/Pd//3eMGDEivvOd7xSuHzFiRAwfPjz69u0bn/vc59o0VgCA94MGQ2Tp0qUx
-YcKE2LhxY/Tr169web9+/WLDhg3N7rRv377RqVOniIjo0aNH1NbWxltvvRWHH3544TaHHXZYs/tZ
-v379PuezaGpMzY135MiR0aFDh8LXb7zxRr2XhjX38qDG5hYRUVNTE+eee2707NkzLr/88jj66KOj
-urq60f2sXbs2unXrFpWVlVFZWRmnnHJKnHTSSc0evynvnV9TY2psHj/5yU+irKwspkyZ0qL3x7R2
-zSMiunXrFp06dYouXbpEp06dorKyss3HaGwerXX44YcXTt7YtWvXwjq19nE644wz4i9/+UtERFxx
-xRVx+eWXF96YHvHOByCsXLky5syZE4cffnh069Yt6urq6u2jW7dubZoDAMD/JfVCpK6uLh588MF4
-9dVXY9iwYXHSSSfFmjVrYufOnVFXVxeLFy+OCRMmtOlAp59+ejz11FOxdevWqKysjOXLlzd7n0mT
-JtV7I29VVVWTY2puvO/9gbi8vDxWrFgRtbW1UVVVFStWrGjT3CIinnnmmRg0aFBcdNFFMWDAgFi6
-dGm96/e+l2Kv0aNHR21tbVx66aUxZcqUmDJlSgwbNqxFx3rvvvZ67/yaG1NjJk+eHH/+859j7dq1
-sXXr1iZv29o1b4v9+X0Y0fj6NaS1j1NpaWlUV1e36Pv73WPZ+yleDcX3ww8/HHfffXeL9gcA8H9F
-4YSGTzzxRAwbNiwmTpwYDz30UBQXv9MoX//612PChAlRVFQUY8aMiQEDBsRbb70V55xzTmzbti3e
-euutGDFiREybNi2uuOKKRg9UUlISN910U4wbNy569uwZJ598cuE32Y256qqrYsaMGfHDH/4wdu3a
-FbfddluceuqpDY4pIqKoqKjR6xrSvXv3mDZtWpSXl8fOnTujtLQ0IqJN8xs2bFjU1tbG2WefHZs3
-b44TTzyx3vVXX311TJs2Laqrq+MXv/hFfOQjH4kZM2bEpEmToqSkJNavXx+33357i37AbmhfbRlT
-Q84666zo3bt37Nq1Ky6++OJmz8je2jVvi/19jJauX8Q758xp7eP085//PP7jP/4jXn311XjzzTfj
-29/+dqO3/fCHPxyTJk2K448/Po444ojo2bNnfPzjH693m8cffzxWrVoVl112WavnCgBwsCqqqKhI
-s2bNavJGdXV1UV1dHV27dt1vBx42bFgsWbIkSkpKmr3tli1bomPHjtG9e/cWjam14926dWuzP3C3
-VGVlZRx++OFRVFTU4vu8/vrr0adPn8JLg/a31o5pw4YN0a9fv1aN50B8j7THMZrS2sfp7bffbvJT
-4d6tqqoqqqqq6r0Ejf+7WvP3HwAORRUVFf//MyJNKS4u3i8//E2ePDm6dOkSr7/+elx44YUtipCI
-ht9P0tSYWjve/RUhERG9e/du9X3e+1Kc/a21Y+rfv3+rj7G/vkfa+xhNae3j1NIIiXjnfSHeGwIA
-HEpaFCL7yw9+8IN4+umn4/jjj2/XHygBAID2lTVEOnbsGGVlZTkPCQAAHISKIyJWrVoVU6dOjblz
-58bbb7/d4jsvW7YsvvGNbxywwR0o119/fTz11FNtvv/BOu8c43r99ddjxowZ8bWvfS3Wrl0bEe+c
-cX3q1KkxZ86cwkfVvvDCC3HnnXcW7nfvvffGo48+ekDHBgDA/x3FERHr1q2LP/7xj7F9+/a44IIL
-Yvr06S26c//+/Vt0romDzZo1a2L79u1tvv/BOu8DPa65c+fGBRdcEMOHD4+ysrJ48cUXIyLirrvu
-irKysti1a1eMHTs2HnvssdiwYUO9j15esmRJm082CADA+0/hpVkDBgyI6667Lq677ro4+uijo7Ky
-Mnr37h0bN26M//zP/4y33norrrzyysIZ0efMmROrVq2KkSNH7rPT6dOnx5gxY+Kee+6Jz3zmM3Hh
-hRdGRMRLL70U3/rWt6JPnz4xcODAOOecc5r86NR169bFz3/+8xg4cGDMmzcvxo4dG9ddd11s2bIl
-7r777lixYkVMmTKl3hnAGzv26tWr41vf+lYcdthh9U402Ni+Gjt2jnnfcMMNcdttt0XEOx8FO3Lk
-yMLtX3zxxZg7d26sWrUqysvL46abbmry8dhfY4p450zhv/rVr2LgwIH7XDdlypSIeOdkgD/96U/j
-0ksvbXJfAAAc4ioqKtIDDzyQJk6cmPa6+OKL0z333JNSSmnEiBFp/vz5aenSpemYY45JVVVVhdst
-WLAgffrTn07v1blz5zR79uz0/PPPF+5TV1eXSktL0x/+8If00EMPpc6dO6dFixbtc993W7lyZfrQ
-hz6UbrjhhvTXv/41LV68OKWUUnl5ebrvvvvSmjVr0tixY9O6detadOyFCxem+fPnp+Li4sKxG9tX
-Y8fOMe8BAwYU/vzFL36x3u3PP//8tGDBgrRjx4599tPQIpY3fQAAEbNJREFUuPbXmN5444105JFH
-NnhdRKSUUqqtrU2XXHJJmjVrVlqwYEEaP3584TbXXnttmjlzZpPHgPeLiLDZbDabzdbEVlFRkRp8
-s/oHP/jBWL16dbz55puRUorzzjsvIiLGjx8fCxcujI997GMN3a2gU6dOMW3atOjUqVOMGjUqVq5c
-GSUlJVFaWlp46dDeZ1aaU1VVFbfcckt06NAhBg8eHOvXr4+tW7dGTU1NLFu2LAYPHhz3339/4eVk
-DR27S5cuMWjQoBg7dmxERJxwwgkREc3u673Hbs7+nHdjSkpK4je/+U106dKl3jNBB3pMr7zySpMf
-XztixIioqamJMWPGxOc+97n4y1/+0vJJAQBwyGkwRJYuXRqzZ8+OjRs31jvBWr9+/WLDhg3N7rRv
-376Fs6b36NEjamtrY9u2bXH44YcXbtPQuUEaMnLkyOjQoUPh67Vr10a3bt2isrIyIiJOOeWUej9I
-N3TsLVu21DunQ9++fVu0r/ceO+e899q5c2e9r3/yk5/EL37xi5gyZUr069cvHnvssSxjGj58eGzY
-sCF27tzZ4EcvL1u2rN7X3bp1i7q6un0uAwCAiP/3ZvW96urq4sEHH4xXX301hg0bFieddFKsWbMm
-du7cGXV1dbF48eKYMGFCmw50+umnx1NPPRVbt26NysrKWL58eYvu994QGD16dNTW1sall14aU6ZM
-iSlTpsSwYcOa3Ed5eXmsWLEiamtro6qqKlasWNGifbUmQhrTlnn36tUrduzYUVjz95o8eXL8+c9/
-jrVr18bWrVuzjKlDhw4xZsyYmDdvXuGypj5hrX///rFx48bYvXt3RLzz7NO7n1F5+OGH4+677271
-2AEAeH8oPCPyxBNPxLBhw2LixInx0EMPRXHxO43y9a9/PSZMmBBFRUUxZsyYGDBgQLz11ltxzjnn
-xLZt2+Ktt96KESNGxLRp0+KKK65o9EAlJSVx0003xbhx46Jnz55x8sknF35T3xrFxcUxY8aMmDRp
-UpSUlMT69evj9ttvbzKQunfvHtOmTYvy8vLYuXNnlJaWtmlfueZ92WWXxejRo+PII4+MY489tt51
-Z511VvTu3Tt27doVF198cfTq1avV42rrYzFz5syYOXNmjB49OiorK+P222+PSZMmNXjbD3/4wzFp
-0qQ4/vjj44gjjoiePXvGxz/+8cL1jz/+eKxatSouu+yyZo8LAMD7T1FFRUWaNWtWkzeqq6uL6urq
-/Xo29GHDhsWSJUuipKSkzft4/fXXo0+fPtG5c+cW3X7r1q3Rq1ev/bKvtmrpvLdt2xbdu3cvBOG7
-bdiwIfr167ffxtrax+Ltt9+OHj16tOj4VVVVUVVVVe8lfvB+V1RU1N5DAICDWkVFRcvOrF5cXLxf
-ImTy5MnRpUuXeP311+PCCy/8uyIkIpp883RDGouQtuyrNdoy7549ezZ6Xf/+/dtlTHu9+/02zenW
-rZv3hgAAsI8Whcj+8oMf/CCefvrpOP744/frsysHu4Nx3gfjmAAAOHRkDZGOHTtGWVlZzkMeFA7G
-eR+MYwIA4NCx7xsQAAAADjAhAgAAZJf1pVkAufjkKgA4uHlGBAAAyE6IAAAA2QkRAAAgOyECAABk
-J0QAAIDshAgAAJCdEAEAALITIgAAQHZCBAAAyE6IAAAA2QkRAAAgOyECAABkJ0QAAIDshAgAAJBd
-x/YeAPD+U1RU1N5DAAAOcp4RAQAAshMiAABAdkIEAADITogAAADZCREAACA7IQIAAGQnRAAAgOyE
-CAAAkJ0QAQAAshMiAABAdkIEAADITogAAADZCREAACA7IQIAAGQnRAAAgOyECAAAkJ0QAQAAshMi
-AABAdkIEAADITogAAADZCREAACA7IQIAAGQnRAAAgOyECAAAkJ0QAQAAshMiAABAdkIEAADITogA
-AADZCREAACA7IQIAAGQnRAAAgOyECAAAkJ0QAQAAshMiAABAdkIEAADITogAAADZCREAACA7IQIA
-AGQnRAAAgOyECAAAkJ0QAQAAshMiAABAdkIEAADITogAAADZCREAACA7IQIAAGQnRAAAgOyECAAA
-kJ0QAQAAshMiAABAdkIEAADITogAAADZCREAACA7IQIAAGQnRAAAgOyECAAAkJ0QAQAAshMiAABA
-dkIEAADITogAAADZCREAACA7IQIAAGQnRAAAgOw6tvcAgAOjqKiovYcAANAoz4gAAADZCREAACA7
-IQIAAGQnRAAAgOyECAAAkJ0QAQAAshMiAABAdkIEAADITogAAADZCREAACA7IQIAAGQnRAAAgOyE
-CAAAkJ0QAQAAshMiAABAdkIEAADIrmN7DwDej4qKitp7CAAABzXPiAAAANkJEQAAIDshAgAAZCdE
-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
-IQIAAGQnRAAAgOyECAAAkJ0QAQAAshMiAABAdkIEAADITogAAADZCREAACA7IQIAAGQnRAAAgOyE
-CAAAkJ0QAQAAshMiAABAdkIEAADIrmNERFFRUXuPAwAAOIR4RgQAAMhOiAAAANkJEQAAIDshAgAA
-ZCdEAACA7IQIAACQnRABAACyEyIAAEB2QgQAAMhOiAAAANkJEQAAIDshAgAAZCdEAACA7IQIAACQ
-nRABAACyEyIAAEB2QgQAAMhOiAAAANkJEQAAIDshAgAAZCdEAACA7IQIAACQnRABAACyEyIAAEB2
-QgQAAMhOiAAAANkJEQAAIDshAgAAZCdEAACA7IQIAACQnRABAACyEyIAAEB2QgQAAMhOiAAAANkJ
-EQAAIDshAgAAZCdEAACA7IQIAACQnRABAACyEyIAAEB2QgQAAMhOiAAAANkJEQAAIDshAgAAZCdE
-AACA7IQIAACQnRABAACyEyIAAEB2QgQAAMhOiAAAANkJEQAAIDshAgAAZCdEAACA7IQIAACQnRAB
-AACyEyIAAEB2QgQAAMhOiAAAANkJEQAAIDshAgAAZCdEAACA7IQIAACQnRABAACyEyIAAEB2QgQA
-AMhOiAAAANkJEQAAIDshAgAAZCdEAACA7IQIAACQnRABAACyEyIAAEB2QgQAAMhOiAAAANkJEQAA
-IDshAgAAZCdEAACA7IQIAACQnRABAACyEyIAAEB2QgQAAMhOiAAAANkJEQAAIDshAgAAZCdEAACA
-7IQIAACQnRABAACyEyIAAEB2QgQAAMhOiAAAANkJEQAAIDshAgAAZCdEAACA7IQIAACQnRABAACy
-EyIAAEB2QgQAAMhOiAAAANkJEQAAIDshAgAAZCdEAACA7IQIAACQnRABAACyEyIAAEB2QgQAAMhO
-iAAAANkJEQAAIDshAgAAZCdEAACA7IQIAACQnRABAACyEyIAAEB2QgQAAMhOiAAAANkJEQAAIDsh
-AgAAZCdEAACA7IQIAACQnRABAACyEyIAAEB2QgQAAMhOiAAAANkJEQAAIDshAgAAZCdEAACA7IQI
-AACQnRABAACyEyIAAEB2QgQAAMhOiAAAANkJEQAAIDshAgAAZCdEAACA7IQIAACQnRABAACyEyIA
-AEB2QgQAAMhOiAAAANkJEQAAIDshAgAAZCdEAACA7IQIAACQnRABAACyEyIAAEB2QgQAAMiuY0RE
-RUVFe48DAAA4hPx/uMxqnRhMWTgAAAAASUVORK5CYII=
-"
+         xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAyIAAAJ1CAYAAAAlsUSlAAAABHNCSVQICAgIfAhkiAAAIABJREFU eJzs3XlYFMe+P/73AAMIyAhCxDVGBFf0yIBIiCCKQIQYcCVGwSWOSDTRbA9fPEYTc69ej7lBxSQa uPoEXM4J12iUXDl60CREiU40AUFAIKAMiKjsyzAz1O8Pf9OHgemeGUSzfV7P00+covpTXVVdZJru rhJBj9DQUKYvnRBCCCGEEEJMdebMGVH3NJ0E7QXIwYMHn9QxEUIIIYQQQv7gVqxYAUD3goT7R2ho KPuf//mfX+GwCCGEEEIIIX8GK1eu5C5GRMDDi5CUlJRf96gIIYQQQgghf3irVq3CmTNnRBbaBMbo tRBCCCGEEELIkyEKDQ1lycnJv/ZxEEIIIYQQ8oemVqvR1NSE5uZmqNVqdHZ2wszMDBYWFrCzs0P/ /v1hYWFhONAfIP4rr7wCC4DuhhBCCCGEEPK4MMZQV1eHhoYGdHZ2cmkA0NnZCY1GA6VSibq6Okgk Ejg4OEAk6jHJ1B8uPl2IEEIIIYQQ8phoNBrU1taira0NjDE4OTlh4MCBsLW1hbm5OTQaDVpaWnD/ /n3cu3cP9fX1UCqVeOqpp2BmZvaHjk8XIoQQQgghhDwGnZ2dqK2tRXt7O8RiMdzc3GBra6uTx8LC AhKJBBKJBE899RRKSkrQ3t6Ou3fvwtnZWfDL/O89Pl2IEELIb1x4eDgA4PTp0zqftSwtLfHUU08h MDAQ8+fP557P1eYTiUQQi8Wwt7fH008/jYCAAMyYMUPnfw7dY3alLZcQQohpmpqa0NHRAXNzc4wf Px4WFhbco0362NjYYPz48cjPz0dHRweam5vRv3//P2z83r+tQggh5FeVl5cHAKitrcXOnTuRmpqK pqYmvPLKKzr5cnNz0dzcjIqKChw+fBgfffQRzp8/j82bN8PS0lJvzK4qKioeXyUIIeQPSqPRoL29 HWq1GmPHjoVIJIJGozG4n0gkwqhRo1BUVIS2tjbY2NjA3Nz8DxcfoDsihBDyu9H9d3V5eTkAwNzc HBs2bMCZM2fw3XffYdWqVT3ymZmZwcHBAQkJCbC1tcWxY8fw97//HUuXLtUbkxBCyKPRfomXSCSw srISvJPQnbW1Nezt7dHe3g6lUol+/fr9ZuJ//vnnGD16NJ599lku78WLF1FaWoply5YZHR+gCxFC CPnd6P67WvtZrVajubkZwMO/ROnLp9FouBcOw8PDcezYMXzzzTd4+eWXBcsghBDSO2q1GiqVCi4u Ljp3Ei5fvoynn34agwYN4tJqampQUVGBqVOncmkDBgzA7du3oVar9f5u5ouvpVQqsX//fsTGxva4 +/0o8d3d3fHpp5+ipaUFM2fORFZWFg4fPoy1a9fq5DMUH+jFhQhjDGq1Gm1tbVAqlQAAKysr9OvX DxYWFiZNBUYIIcR4fBcidXV1OHjwIAAgNDSUN5+WnZ0dAOD+/fs9fjZ37twe5Z48efLRDpwQQv6k VCoVrK2tdaa8lcvlOHbsGN5++20MGjQINTU1+Nvf/gY3NzdIpVLuu7SVlRXUajW3nzHxtTQaDZKS klBQUIC9e/fitdde6/F4VG/j+/n5QSwWY+/evSgsLMSPP/6I9evXY+rUqWhvbzcpvsnviGj/8tav Xz88/fTTAIDq6mo0NzfDzs4OYrHY1JCEEEJ64cUXXwTw8GV1FxcXrFu3DvPnz0djY6PgfpWVlQAA Z2fnHj/T945IWVlZHxwtIYT8uXS9Q931TsGbb76JTz75BNu3b8fSpUuRlpYGT09PrF27Vuf3t0gk Enzcii++SqXCxx9/jHv37mHHjh3YtWsXdu/ejbi4OJ3v6b2N39LSAi8vL/j7++PChQuYMWMGvLy8 0NLS0mN/Q4+LmXxHpLW1FdbW1hg7diyXJpFIcOPGDbS2tsLe3t7oWIQQQozX/Xe19qJBe6e6qakJ 9fX1Bu+IfP311wCAOXPm9PhZaWlpXx82IYT8KZmbm0MkEqGjo0NntfG6ujrIZDLs2rUL+/fvx+TJ kyGTyVBXV6ezv1qthkgkgrm5ud7v6vriM8aQkpKC6upqbNu2DdbW1tiyZQs2b96MlJQUvPLKK9wd l97E1zp16hS+/fZbzJ49G//617+4mRtNOX6gFxci7e3tGDJkCHerRcvJyQllZWWCU3QRQgjpve6/ q0tKSozer62tDdXV1cjIyEBWVhZ8fX0RFRWFpqYmwTIIIYT0jpmZGczNzdHa2so9EqvV0NCAN954 g3tsqqGhocfv39bWVlhYWMDMzEzv72a++NOnT8eqVatgYWGB9vZ2WFhYYNu2bSgqKgJjjIvV2/gX LlzA//7v/2L9+vWYNm0axo0bh6SkJDDGMGPGDKOPH+jlOyKdnZ09LkQ6Ozt1KkcIIaRvGbrTwWfe vHkQi8Xo378/Ro0ahQ8++ACzZs3CnTt3eh2TEEKIMDMzM9ja2qK+vl7vrFHai5F79+7pfYSprq4O NjY2ghcK+uJPmjQJHR0d3LvcGo0GYrEYkydP1nl8qrfxa2pqsGbNGkyePBm1tbX4y1/+AplMhoKC Ap1HuAzFB3pxIWJpaYmqqqoeqypWVVXB0tKS/idGCCF9TPsIVnFxsd7PhvYD/j1zVkdHBxobG1FV VSVYBiGEkEdnb2+PW7duca82dNXZ2Yk7d+7o3a+9vR2tra0YPnw4AP7v6vrid7/TDTycQUt7YfKo 8desWQOlUsm9z9LY2IipU6di+vTpqK2tNSm+yS+r9+vXD42NjSgqKuJedKytrYVarab3Qwgh5DHo fnFg7MWCKRcVdAFCCCF9z9zcHE899RSqqqowbNgw3oX9utJoNFAoFHjqqadgYWEhuIjgrxFf38VT 1/dbTIlv8h0Rc3Nz9O/fH21tbVAoFAAe3iXp37+/4MsohBBCCCGE/JloNBr0798fKpUKt27dgouL C6ysrHjzt7e3o6amBo6Ojtx+f+T4vVrQ0MLCgveldLoQIYQQQggh5CGVSoWBAwdCLBajuroaVlZW sLW1hZWVFSwsLKBWq6FUKtHS0gKlUonBgwfD3t4eSqXSqO/Vv+f4tLI6IYQQQgghjwljDO3t7ejf vz8cHBzw4MED1NfX4969e1CpVBCLxejXrx8GDBgABwcHaDQatLW1/Sni04UIIYQQQgghj1l7eztE IhHs7e0xcOBAmJmZcYsGdnZ2QqVSobW1tdffy3+P8U1+WZ0QQgghhBBiOu3dhfb2dooPuiNCCCGE EEII+RXQhQghhBBCCCHkiaMLEUIIIYQQQsgTZwEAHh4ev/ZxEEIIIX1GJBL92odACCFEQGhoKMx+ 7YMghBBCCCGE/PmY0V+NCCGEEEIIIU+SSCSiOyKEEEIIIYSQJ89CJBKhoKAAu3fvhpWVFYKCgjBr 1izY2tr2SQHx8fGIiorCX/7ylz6J9yjxGxoakJCQgB9++AE7duxAUFDQYzkmYxUWFuLs2bMoLS1F YmIiACAvLw9JSUk6+ZYsWYKAgADefQBgw4YN3CqWLi4ueO+9955QLQghhBBCCDGNSCR6+GhWZWUl srOzMXHiRFy8eBEeHh7o7Ozsk0LKysrQ3NzcJ7EeNX5GRgbs7e0hl8t/9YsQAEhNTYVCocChQ4e4 NIlEAqlUym0ZGRmws7MT3Eebrt1nwoQJT6gGhBBCCCGEmE4kEv17ZfVhw4ZBJpMBALKysvDNN98g MDAQDQ0NOHToEK5evQqZTAY/Pz8AQFxcHPz9/fGPf/wDL7/8MubPn88FLi0txX/+539CIpFAqVRy 6Xyxbt26hSNHjmDkyJFIS0tDQEAA3n77bd78fPGFrFmzBnK5HDY2NlizZg1kMhmkUilv2R9++CH+ 9a9/wcbGBitXrsScOXPwz3/+E9988w0KCgoQFRWFEydO4P3334ebm5tg/fj8x3/8BxoaGvDpp59y aSNGjOD6oaSkBElJSZBKpYL7AICZmRm3HyGE/Jro3UNCCCFGCQ8PZ5mZmSw4OJgxxtiVK1eYg4MD q66uZowx5ufnx06cOMHKyspYQEAAu3XrFmOMMUtLS7Znzx5WWFjI3N3dWWtrK2OMsc7OTjZq1Ch2 4cIFdvLkSWZmZsa+++47wVi5ubls2LBh7P/9v//HiouL2ffff8+bXyi+IZs3b2Yff/yxThpf2SdP nmS1tbXsxo0bzM3Njf3yyy/s448/Zhs2bGDbt29nISEh7OTJk2zr1q1cLL76Camvr2cSiUTvz+Lj 49muXbuM2mfAgAHMxcWFPf/88+z06dMGyyWEkMcFAG200UYbbbQJbuHh4cxC+5ernJwcSKVS5OXl 4auvvoKLiwsUCgUaGxvR0dEBuVwONzc3nDp1CnFxcRCLxYiNjYVYLIaPjw9yc3O5/7q6unLvNGgf ExKKBQCtra3Ytm0bzM3N4ebmxpvfz89Pb/xH0b1sAJBKpTh16hSKiorQr18/lJSUcOU5OTmhpqYG EyZMwBdffGFU/UylVquRlpYGuVxuVP7i4mI4OzvjypUrCA8PR0VFBaytrXtVNiGEEEIIIY+TzqxZ 06ZNw48//oicnBxs3LgR7e3tKC8vh42NDerq6lBXVwdvb29MmjQJADBw4ECIxWIAgJ2dHVQqFQCg pqYGjo6OXCEDBw4EAMFYADB16lSYm5tzn/ny88V/FN3L7ujowJw5c9C/f3+sWrUKzzzzDPcImI2N DcRiMaytrSEWi1FXV2dU/Ux1+vRpTJkyBYMGDTIqv7OzMwDA29sbkydPxrffftvrsgkhhBBCCHnc LLo/y+vp6YnAwEDs27cPGzduhEqlwrJly9CvXz8AQEtLi2BAPz8/rFu3DiqVCiqVClevXgUA+Pr6 CsbqeiFgKL+++I+ie9nXr1+Hq6srFixYAKVSiStXrmD16tWCMQzVz1TJyclYuXKlUXmbmprQv39/ AEBjYyMKCgrg4+PT67IJIYQQQgh5nHjXEXnrrbeQmJgIpVKJzZs3IyIiAnPnzoVUKsXFixcFg9ra 2iI2NhZ+fn7w8fHBqFGjADx8mdqUWHz5+eL3pSlTpkClUiEkJAT+/v6YOHGiwX1MrR8AbN26FTNm zEBzczO8vLyQnJwMAKisrIRcLkd4eLhR++Tn52PYsGHw8vKCr68vEhISIJFIeld5QgghhBBCngDR iy++yE6cOGEw4507d+Do6AhLS0ujAjc2NsLe3r5PYunLLxS/r9TV1WHAgAEmzwBjav36SnFxMdzd 3Z9omYQQ0h3NmkUIIcSQF198seejWXxcXFxMCi50kWBqLH35H/dFCAA4ODj0aj9T69dX6CKEEEII IYT8HvA+mkUIIYQQQgghj5MZ3UInhBBCCCGEPEkikUj30az4+HjcunULK1aswOzZs7n0O3fuYN++ fVAqlYiLi8PIkSOxZs0aAICHhwciIiIwbNgwAEBRUREyMjLwxhtvAADS09MhkUgwe/ZsFBUVYdeu XaitrYWh91IKCgqwe/duWFlZISgoCLNmzYKtrW2fVDw+Ph5RUVH4y1/+0ifxuiooKIC7uzssLCwM Z+axdOlS7Nixg2tTQ9rb27Fnzx6UlpbC3d0dixYtwvDhwwEAd+/exaFDh+Do6IiYmBhuymU+Qvkr KyuRlpaGlpYWzJs3D1OmTEFeXh6SkpJ0YixZsoRb5yU/Px8pKSlwcHDA5s2bAQCFhYU4e/YsSktL kZiYyO3Hl/4k7dmzB76+vvD29gbwsG1TU1Mhl8sxYcIELFy4EIMHDwYAbNiwAW1tbQAePo733nvv GYx//PhxVFVVYc2aNTptqy+dr20dHR0F2xwADh8+jLq6Oqxbt45L09cXQt5//30oFAruc0BAAJYs WcI79mtqapCeno7c3FyMGzcO69atg4WFBRoaGhAfH49PPvnEYJndde8PwPQxZkp+hUKB999/HyUl Jdi9e7fBiSqEzg8tfX0hpHs/CZXRmzEpNM5MPUcIIYSQ3urxaFZZWRlWr16tcxHyySefIDIyEp6e npBKpbh58yYA4MCBA5BKpWhvb0dAQADOnz8PAKiqqsLp06e5/XNycpCbmwsAGDNmDHbv3o3r168b PLjKykpkZ2dj4sSJuHjxIjw8PNDZ2fnotf7/69nc3NwnsbqLiopCfX39I8W4ceMGt26JMdRqNcRi MWQyGezs7BASEoLOzk4wxvDss89iyJAhEIvF8PLywsNFj/UzlP+FF17AkCFD4Ofnh3nz5qGhoQES iQRSqZTbMjIyYGdnBwD461//itdffx2hoaHchREApKamQqFQ4NChQzrl86U/KU1NTUhLS4NUKuXS 7ty5gxs3bmDx4sVQq9UICgri2iQ1NZWrtzELa7700ks4f/48Ojo6dNqWL52vbYXaHHh4fm/btg1n zpzh0vj6Qkh6ejpcXFy4ckaMGAGAf+wHBwfDxsYGMpkM9fX13BiTSCS4d+8efvrpJ6PK1dLXH4Dp Y8yU/EOHDsX+/fvRr18/o6bfFjo/AP19IURfPwmVYeqYBPjHWW/OEUIIIeSRzJ8/n2ktXLiQZWVl sa48PT3ZL7/8wroDwP07KSmJrVixgjHGWFZWFgsMDOR+9uabb7Jdu3Zxn1taWpirq2uPeN1lZmay 4OBg7rO3tzd3bPX19SwxMZFFR0ez7Oxsnf3Wrl3Ljh49yiIjI1l6ejqXXlJSwlauXMk2btzI5s6d y7777jvBWBUVFWz79u3s6NGjLCwsjO3cuVPweOVyOZPJZMzR0ZFFR0czmUzGKisrGWOMVVVVsXff fZfFxcWx/Px8bh++dE9PT1ZSUsIYY2znzp3sypUrBturKzc3N1ZcXMwuXbrEZs2axaUHBwdzcfUR yv/gwQPm7OzMOjs7GWOMhYSEsHPnzunsf/PmTebh4cF9Hj9+PFOr1XrLqq+vZxKJxOh0fTIzM1lC QgKLiIhgx44dY1FRUay4uJgxxlhxcTHbuHEjCwoKYlu2bDEq3u7du9n27dsF80ycOJFdu3aNMcaY k5OTUXEZY0yj0bBhw4Zxn2fOnMkKCwt507vr3rZC6fPnz2fJycksLCyMSxPqCz4eHh4sNze3R7q+ sX/t2jX23HPP8cbKzMxk0dHRJpXfvT9MHWNC+RljbNeuXez5559n8+fPZxkZGTplh4WFsZycHJOO lzHd84Mx/X0hxJh+0pbRmzGppW+cmXqOCI0xALTRRhtttNEmuM2fP58JviNy9+5dKBQKjBw5kjeP Wq1Gdnb2Y3nMSUsul6OkpATjxo0DAISFhWHkyJHYunUrNm3ahNu3b3N5U1JSUFtbi+3btyMhIQFt bW1gjCE4OBjR0dGYMWOGzh0bvlgNDQ3Yt28fcnNz8dFHH8HPz0/wGKVSKfbv34+hQ4fiww8/5P4N gFtXZMWKFYiMjOQe5+FL11q7di1aWlrg5eVlVDsdOHAAixYtwvTp0+Hm5gZ7e3udv+q2tLTgxx9/ 5N1fKL+DgwNWr16N9evXY+vWrXBwcMD06dN19k9JSUFMTAyAhyvN29raIjw8HN7e3tixY4dRdTBF aWkpWltb4ePjg4MHD+Kll17CkSNHAABvv/02XnjhBZw8eRJBQUFGxZPL5YKP4igUCjQ1NXGzk6nV agwePBhz5sxBRkaGYOyioiIMGjQIpaWl+OGHH+Du7o4rV67wpnfXtW2F0g8fPgxfX1+dmdsepS/S 09Nx4MABHDhwAJWVlTo/6zr2x48fj/LycsTFxSE7O7tHnEmTJuHy5ctGlwv07A9Tx5hQfgBwc3PD 559/jg8++AAbNmxAeXm5ScfXXffzQ19fCDGmn7qWYeqYfNSyu+vNGCOEEEK0RCIRBB+arqioEPyf qJeXFzo6OuDv74/o6Og+P8CcnBxIpVLk5eXhq6++gouLCxQKBRobG9HR0QG5XA43NzecOnUKcXFx AACxWIzY2FiIxWL4+PggNzcX1tbWcHV15Z6R1j5GYyhWa2srtm3bBnNzc7i5ufWqDnfv3gVjDHPn zgUABAYG4sKFC5BKpXrTn3/+eQBAbGws7OzsTH6u3tLSEkqlEkqlEuPHj4dGo8Fbb70FtVqNqqoq 3L17l3dfQ/mbm5vR0NAAMzMziEQitLS0cGulqNVqpKWlQS6XA3j4SIpcLkd+fj6efvppBAcHIyws DB4eHibVx5AJEybAyckJNTU1mDBhAr744gsAgJWVFb788ktYW1sbvIjUKioqgqurq96fKZVKLFu2 DElJSbCxsQHwcN0WZ2dnXLlyBeHh4aioqIC1tbXe/aurq+Ho6Ijs7GwUFhbCwcEB1dXVvOlddW9b vvQHDx4gOTkZZ8+eRWZmJpfvcfRF97FvaWmJ69evY//+/XjttddgY2ODr7/+mptme9CgQaiuroZG o4G5ublRZQj1R1d8Y0w7lvhIpVKcOnUKRUVF6NevH0pKSgT/6CKk+/nB1xdCDPWTvnPQlDH5KGXr 05sxRgghhHQleEfE09MTVVVVPf5SryWXy5Gbm4ukpCQMGDAAAGBjY9PjXQ7t/zRNNW3aNPz444/I ycnBxo0b0d7ejvLyctjY2KCurg51dXXw9vbGpEmTuH0GDhzIvexrZ2cHlUqFmpoaODo66uQBYDDW 1KlTjf7SxKe6uhpOTk7cZycnJ1RVVfGma4WEhKCsrMzg6uxdyWQypKWl4f79+8jKygIAXL58GYGB gQgKCoKnpyf8/f0FY/Dlz8vLQ3Z2NlJTU7Fnzx7Y2dnh+PHj3H6nT5/GlClTMGjQIAAPzx13d3eM GzcONjY2CAgIwLlz54yui7FsbGwgFothbW0NsViMuro6AMDnn38OqVQKmUyGmTNnGhVrwIABaGho 6JGu0WiwdOlSLFiwQGe1e2dnZwCAt7c3Jk+ejG+//ZY3tqenJ8rKyhATE4Pt27ejtLQUnp6evOld dW9bvvSDBw+io6MDr776KpKSkriXlh+lLxYsWACZTAaZTKYzeYK+sS+RSPDOO+/g6tWrcHV1xcmT J7n8HR0dsLCwMGk88fVHd4bGkj4dHR2YM2cO+vfvj1WrVuGZZ54x6b2srvSdH3x9IUSon/SVYeqY 7G3ZfHozxgghhBAtg+uImJubw9/fH2lpaVzagwcPBIMOGTIE1dXVUKvVAB7edXjUBf48PT0RGBiI ffv2wdfXFyqVCsuWLeO+IE2ZMkVwfz8/P1y9ehUqlQqtra24evUqABiM1ZuLEG39tSZNmoSysjK0 tbWhs7MT33//PWbPns2brhUZGYm0tDSsXLnS4Iu2DQ0NOhd/5eXlOl8aw8LCMHr0aOTn5+s86nLm zBm9L4bry29ra4v6+nruJVntqvNaycnJWL58OfdZuyK99ovk9evXMXXqVMF69LWYmBhcvnwZ5eXl aGxsNJh/7NixKCkp6ZG+evVqTJkyhbtTBjx8kVqrsbERBQUF8PHx4dK6t+2AAQNgaWmJ0tJSNDY2 Qi6XQyqV8qZ31b1t+dJffvll7NmzBzKZDKGhoRgxYgRCQ0OfSF/cv38f9+/f5z6rVCqdi/9ffvkF Y8aMMSkmX38YO8b48gMP28DV1RULFizAiBEjejwON3HiRFRUVBh1nPrOD76+6ErfOcLXT/rKMHVM CuntOWLqGCOEEEK6MriOyK5du/Dzzz/D19cXY8eOFfyrLwAMHz4cERERGD9+PPz8/FBXV6fzV+Te euutt5CYmAilUonNmzcjIiKCey7c0F0DW1tbxMbGws/PDz4+Phg1ahQAwMzMzORYhqxfvx6xsbHw 8vJCSUkJRCIRNm3ahNmzZyMgIADPPvssRowYwZvelYeHB2JjY7npUvnk5eXB1dUVXl5eGDNmDObM mcM9UjF37lx4eXlh7dq1+PTTT2Fm9u9rz2+++Qbp6ek6sfjyjxo1CvPnz4dUKoW/vz80Gg1efPFF AA9nOJPL5T36OTExkXtnZcCAAfD19QUAbN26FTNmzEBzczO8vLyQnJwsmN4bwcHBiIiIQGRkJBYt WsQ9IiRk3rx5+Oc//6mTdunSJaSmpuL48ePw8vKCl5cXLly4gPz8fAwbNgxeXl7w9fVFQkICJBIJ t5++tv3444+xfPlyhIaGYsuWLdyXRr50gL9t9aV3neFq9OjRkEgkGD16NAD+vugr9+7dw9SpU+Hv 7w9PT090dnbqPBqVmZmJefPmmRRTX38Axo8xvvwAMGXKFKhUKoSEhMDf37/Hu0ExMTH45JNP4OXl hcLCQt5j5Ds/hPpCS985oq+f+MrozZgE+MeZqedIb8YYIYQQoiUSiYDFixdzM50sXLiQvfHGG+zn n3/uMUPK/fv3mVKpNHpGlZaWFlZbW6uTplAo2N69e42aNcsY1dXVJh1TQ0NDn8UylUajYa2trUan 90ZZWZne9Nu3b5sURyi/RqNhTU1NJsVraWkxKX9fUSgUJvfpzJkzWXV1tdH5i4qKTD0s1tbWZlJ6 X3rcfaFQKJhKpdJJ02g0bOrUqay5udnkeKb0R2/G0oMHD7hZp35LTOmn3ozJviqbb4zhNzAbC220 0UYbbb/tbfHixUy0ePFiduzYMQDAuXPnUFZWhmnTpum8K9FXtGuM2NvbIyoqqs/jE/Ko8vPzIRaL uZmPyKOrq6vDTz/9hMDAQJP3pf74fTJ0p50QQghZvHgxRFFRUezo0aO/9rEQQgj5g6ALEUIIIYZE RUUZfkeEEEIIIYQQQvpSj3VE4uPjcevWLaxYsUJn1pmCggKkpKRg4MCBePXVVyGRSLgXqD08PBAR EcHN0lRUVISMjAy88cYbAB4uiCaRSDB79mwUFRVh165dqK2txYkTJwQPrqCgALt374aVlRWCgoIw a9Ys2Nra9knF4+PjERUV9VgWYSwoKIC7uzssLASXaBG0dOlS7NixQ2fmK0MKCwtx9uxZlJaWIjEx kUvfsGEDN/2yi4sL3nvvPd4Y7e3tSE1NhVwux4QJE7Bw4UIMHjzYYKzKykqkpaWhpaUF8+bNw5Qp U3hjmZr+pO3Zswe+vr7w9vbWSc/Pz0dKSgocHBywefNmAKa1LV/+9vZau7vgAAAgAElEQVR27Nmz B6WlpXB3d8eiRYswfPhwbh99bdvV4cOHUVdXh3Xr1hmMpa8OQt5//30oFAruc0BAAJYsWcI79mtq apCeno7c3FyMGzcO69atg4WFBRoaGhAfH2/ymjiA/v4wdYyZkl+hUOD9999HSUkJdu/eLbjApVZf jD0Agv1nyrmjb6rgJUuWICAgwOA4O378OKqqqrBmzRpuGnRCCCHkcdG5I1JWVobVq1frXIS8/vrr ePPNNzFnzhzY2dnh559/BvBwFW+pVIr29nYEBATg/PnzAP79HohWTk4OcnNzAQBjxozB7t27cf36 dYMHVllZiezsbEycOBEXL16Eh4dHj/VJequsrAzNzc19Equ7qKgog9PtGnLjxg2T1zRITU2FQqHo MR1vamoqN3uPdiFHPnfu3MGNGzewePFiqNVqBAUFcVODCsV64YUXMGTIEPj5+WHevHloaGjgjWVq +pPU1NSEtLS0HtPn/vWvf8Xrr7+O0NBQnS/2prQtX361Wg2xWAyZTAY7OzuEhITonOf62larrKwM 27Ztw5kzZwzG4quDkPT0dJ3Zn7QzUfGN/eDgYNjY2EAmk6G+vp4bYxKJBPfu3cNPP/1kVLlafP1h 6hgzJf/QoUOxf/9+9OvXDy0tLUbt0xdjDxDuP1POHYlEwuWVSqXIyMiAnZ0dAOEx/tJLL+H8+fPo 6OiAl5fXEx9/hBBC/lxEIhGwZMkSbqaThQsXsqysLO5ze3s7GzJkiN5ZZQBw/05KSmIrVqxgjDGW lZXFAgMDuZ+9+eabbNeuXTozshgza1ZmZiYLDg7mPnt7e3PHVl9fzxITE1l0dDTLzs7W2W/t2rXs 6NGjLDIykqWnp3PpJSUlbOXKlWzjxo1s7ty57LvvvhOMVVFRwbZv386OHj3KwsLC2M6dOwWPVy6X M5lMxhwdHVl0dDSTyWSssrKSMcZYVVUVe/fdd1lcXBzLz8/n9uFL9/T0ZCUlJYwxxnbu3MmuXLli sL20dZFIJDppTk5ORu2rz8SJE9m1a9cEYz148IA5Oztz50hISAg7d+6cwVi9Te8qMzOTJSQksIiI CHbs2DEWFRXFiouLGWOMFRcXs40bN7KgoCC2ZcsWwThau3fvZtu3b++RPn78eKZWq3ukm9q2xuR3 c3Pj6mCobefPn8+Sk5NZWFiYwVh8dRDi4eHBcnNze6TrG/vXrl1jzz33HG+szMxMFh0dbVL53fvD 1DEmlJ8xxnbt2sWef/55Nn/+fJaRkaFTdlhYGMvJyTH6WPt67DGm23+mnjtaN2/eZB4eHrz7aMeZ RqNhw4YN49JnzpzJCgsLBcsTGmP4DczGQhtttNFG2297W7JkCRN8RyQ7OxsTJkwQfPFQrVYjOzv7 sTzmpCWXy1FSUoJx48YBeLjg3siRI7F161Zs2rQJt2/f5vKmpKSgtrYW27dvR0JCAtra2sAYQ3Bw MKKjozFjxgydOzZ8sRoaGrBv3z7k5ubio48+gp+fn+AxSqVS7N+/H0OHDsWHH37I/RsAt0bJihUr EBkZyT1iwZeutXbtWrS0tMDLy6vXbadWqzF48GDMmTMHGRkZRu+nUCjQ1NSkM1uRvlgODg5YvXo1 1q9fj61bt8LBwQHTp083GKs36d2VlpaitbUVPj4+OHjwIF566SUcOXIEAPD222/jhRdewMmTJxEU FGRUneVyeY9HccrLy2Fra4vw8HB4e3tjx44dgu0hRCj/gQMHuDUc3NzcAAi37eHDh+Hr66t3sdDu sYTqYEh6ejoOHDiAAwcOoLKyskd9tGN//PjxKC8vR1xcHLKzs3vEmTRpEi5fvmx0uUDP/jB1jAnl BwA3Nzd8/vnn+OCDD7BhwwaUl5ebdHyG9Hbs6TsXTD13tFJSUhATE6O3nK7jrKioCIMGDUJpaSl+ +OEHuLu791jksbvejDFCCCFESyQSwULoIuOXX37hnh9OTk7Gp59+iqVLl2LDhg0AAC8vL3R0dMDf 3x/R0dF9foA5OTmQSqXIy8vDV199BRcXFygUCjQ2NqKjowNyuRxubm44deoUt+KwWCxGbGwsxGIx fHx8kJubC2tra7i6uiIgIAAAuEcbDMVqbW3Ftm3bYG5u3uN/8Ma6e/cuGGOYO3cuACAwMBAXLlyA VCrVm65dBC42NhZ2dna9eq6+q+LiYjg7O+PKlSsIDw9HRUUFrK2tBfdRKpVYtmwZkpKSYGNjYzBW c3MzGhoaYGZmBpFIhJaWFlhaWgrGMjWdz4QJE+Dk5ISamhpMmDABX3zxBQDAysoKX375JaytrQ1e RGoVFRXB1dVVJ62srAxyuRz5+fl4+umnERwcjLCwMHh4eJjctobyW1paQqlUQqlUwsrKCgD0tm1z czOSk5Nx9uxZZGZm6i2rayyhOvRW97FvaWmJ69evY//+/XjttddgY2ODr7/+mlvkbtCgQaiuroZG o4G5ublRZejrD334xljXBRX1kUqlOHXqFIqKitCvXz+UlJRg5MiRRh2bMXoz9rS6nwu9OXfUajXS 0tIgl8t7xO8+zqqrq+Ho6Ijs7GwUFhbCwcGhx2r03fVmjBFCCCFaIpEIZkIZZs6ciWvXrgEAXnnl FaxatUrnr6JyuRy5ublISkriVoO2sbHp8S6HMV8o9Zk2bRp+/PFH5OTkYOPGjWhvb0d5eTlsbGxQ V1eHuro6eHt766x5MnDgQO4lSzs7O6hUKtTU1MDR0VEnDwCDsaZOnWr0lyY+1dXVcHJy4j47OTmh qqqKN10rJCQEZWVlj7zSu7OzMwDA29sbkydPxrfffiuYX6PRYOnSpViwYEGPVZn1xcrLy0N2djZS U1OxZ88e2NnZ4fjx44KxTE0XYmNjA7FYDGtra4jFYtTV1QEAPv/8c0ilUshkMsycOdOoWAMGDNB5 BwMAPD094e7ujnHjxsHGxgYBAQE4d+4cb3sIEcovk8mQlpaG+/fvIysrCwB42/bgwYPo6OjAq6++ iqSkpB4vJ3ePJVQHQxYsWACZTAaZTKYzeYK+sS+RSPDOO+/g6tWrcHV1xcmTJ7n8HR0dsLCwMGk8 6esPfQyNJX06OjowZ84c9O/fH6tWrcIzzzxj8ntZhph6fmjpOxdMPXcA4PTp05gyZQoGDRqkE1/f OPP09ERZWRliYmKwfft2lJaWwtPTU/A4ezPGCCGEkK4EH80aNWoUlEolfvzxR6MDDhkyBNXV1VCr 1QAe3nXQ9/iIKTw9PREYGIh9+/bB19cXKpUKy5Yt474gdZ9JqDs/Pz9cvXoVKpUKra2tuHr1KgAY jNWbixBt/bUmTZqEsrIytLW1obOzE99//z1mz57Nm64VGRmJtLQ0rFy5stcvvzc1NXH/bmxsREFB AXx8fLi0M2fO9HjBdvXq1ZgyZQp3V8hQLFtbW9TX13MvttbV1XFfTPlimZreWzExMbh8+TLKy8vR 2NhoMP/YsWNRUlKikzZgwACIRCLuC/H169cxdepUk9uWL39DQ4POhXt5eTn3hZ+vbV9++WXs2bMH MpkMoaGhGDFiBEJDQ3lj8dWhL92/fx/379/nPqtUKp2L/19++QVjxowxKaa+/gCMH2N8+YGHbeDq 6ooFCxZgxIgRPR5DmjhxIioqKkw63q4MnR9Az3OEr/96c+4AD+9iL1++vMex6RtnAwYMgKWlJUpL S9HY2Ai5XN5jkgB9TB1jhBBCiJbBR7MA4MiRI/jb3/6G27dv4+7du/joo48E8w8fPhwREREYP348 nJ2d0b9/f6P/ui3krbfeQkBAAOLi4rB582ZERETAysoKCoUCO3bs0Pni0Z2trS1iY2Ph5+eHtrY2 jBo1CgBgZmZmcixD1q9fj9jYWCiVShw7dgyjR4/Gpk2bMHv2bIhEIvj7+3OzD/Gla3l4eCA2NhZr 1qzB3//+d8Fyt27dipMnT6K5uRleXl6IjY3FxIkTsWDBAri4uKCtrQ0JCQmQSCTcPt988w3y8vK4 LyuXLl1CamoqJk+ezN3V2LVrF2bMmIH8/Hy9sSQSCebPnw+pVAo7Ozs4OTnhxRdf5I1lZWVlUvqM GTN61Q/BwcFwcHBAe3s7Fi1axD0iJGTevHlISUnB0qVLddITExOxaNEitLa2YtSoUfD19cXly5dN alu+9svOzsayZcswcOBANDU1ITw8nHtkatSoUXrb1sLCgru4v3PnDiQSCUaPHi0YS18d+tK9e/cw Z84cDB06FM3NzXB3d9d5NCozMxPz5s0zKSZff5gyxvjyT5kyBSqVCiEhIaivr+/xblBMTAzi4uKw c+dOpKWlYezYsbzH2ZuxB/Q8R/Ly8vT2X05OjsnnTmVlJeRyOTeWtITG+Mcff4zly5dDo9Fgy5Yt 3B8U+PRmjBFCCCFaIpEI6DqTzcKFC9kbb7zBfv755x4zpNy/f19wBpXuWlpaWG1trU6aQqFge/fu NWrWLGNUV1czpVJpdP6GhoY+i2UqjUbDWltbjU7vS0VFRY89lkajYU1NTX1WTl9QKBQm9+nMmTNZ dXW13p+1tLT0SDO1bfnyl5WV8e5jatsKxdJXh76kUCiYSqXSSdNoNGzq1KmsubnZ5HhC/dFdb8bS gwcP9M4K2Fd6M/b4+q83505vtLW1GZ2Xb4zhNzAbC2200UYbbb/tLTo6moliYmKY9vGAc+fOoays DNOmTdN5V6KvaNcYsbe3R1RUVJ/HJ+RR5efnQywWG5yxixivrq4OP/30EwIDA03el/rj98nQnXZC CCEkJiYGouXLl7ODBw/+2sdCCCHkD4IuRAghhBiyfPly4VmzCCGEEEIIIeRx0HlZPT4+Hrdu3cKK FSswe/ZsFBQUYPfu3bCyskJQUBBmzZoFW1tbAMCaNWt0Ai1YsEDnJe+///3vqKiowDvvvMOlvfPO O9i0aZPOS5v//d//jaKiIp1YlpaW2Lt3L+Li4qDRaLj0d999F5cuXcLPP/+Mbdu2AQA+++wzNDU1 4Y033hA8rqKiIuzatQu1tbU4ceKEYKMI1ftRxcfHIyoqqs8XgNTW28PDAxERETqz5/yaCgoK4O7u DgsLC6Py37lzB/v27YNSqURcXNwjrevQ0NCAhIQE/PDDD9ixYwe36Jqpx9TbfbpbunQpduzYYXTf tLe3Y8+ePSgtLYW7uzsWLVqE4cOHo729HampqZDL5ZgwYQIWLlzIrffDZ8OGDdyCmS4uLnjvvfcM xiksLMTZs2dRWlqKxMREg+lahw8fRl1dHdatW8dbhydtz5498PX1hbe3NwD+ttU6fvw4qqqqsGbN Gm46cH26T50MAEuWLOHWLAJ020Pr7t27OHToEBwdHRETEwOxWMzbH3zpxpStz/vvvw+FQsF9DggI wJIlS3h/h9TU1CA9PR25ubkYN24c1q1bBwsLCzQ0NCA+Pv6R1zoihBDy59RjHZGysjKsXr2au6Co rKxEdnY2Jk6ciIsXL8LDw4ObLvLAgQOQSqXc1n2u+l27dmH//v1obm7m0tLS0tDa2qqTz93dHVKp FG1tbSgoKIBUKuWm0PX09ERzczOX3q9fP+Tk5OCzzz5DeXk51Go1PvzwQ52V0vmOa8yYMdi9ezeu X79usGGE6v2oysrKdNqkr2jr3d7ejoCAAJw/f77Py+iNqKgoo6cf/uSTTxAZGQlPT09IpVLcvHnz kcrOyMiAvb095HK5zsrPphzTo+zT3Y0bN0xaq0KtVkMsFkMmk8HOzg4hISHo7OzEnTt3cOPGDSxe vBhqtRpBQUHcFL98UlNTuTGhXdDTUJzU1FQoFIoeUzzzpQMPz+9t27bhzJkzgnV4kpqampCWlqYz Ha3Qcb300ks4f/48Ojo64OXlJdi2EolE5/dNRkYG7OzsuJ93bw8AYIzh2WefxZAhQyAWi7ky+PqD L91Q2XzS09Ph4uLC7aedYYzvd0hwcDBsbGwgk8lQX1/P/f6SSCS4d+8efvrpJxN6gxBCCOli5cqV 3EwnCxcuZFlZWdznzMxMFhwczH329vbmfg6AdyaViooKNm3aNLZu3Tr25ZdfcumDBw9mVVVVevf5 7LPP2CuvvNIj/eOPP9ZJf/PNN1lsbCz7r//6L3bmzBm2evVqFhgYqDNbC5+WlhajZuwSqnd9fT1L TExk0dHRLDs7W2e/tWvXsqNHj7LIyEiWnp7OpZeUlLCVK1eyjRs3srlz57LvvvtOMFZFRQXbvn07 O3r0KAsLC2M7d+7UKScrK4t98sknOmld652UlMRWrFghGIuv7OLiYrZx40YWFBTEtmzZolMG3z76 6i2Xy5lMJmOOjo4sOjqayWQyVllZKVgHT09P9ssvvzB9+OoRHx/P5Tl8+DC7efMmY4wxmUzGPD09 2XPPPcdkMhmTy+UGj0kfoX2qqqrYu+++y+Li4lh+fj63D1+6p6cnKykpYYwxtnPnTnblyhXBsrtz c3NjxcXFPdInTpzIrl27Jrivk5OTwfj64tTX1zOJRNIjL1/6/PnzWXJyMgsLC9NbBl8dusrMzGQJ CQksIiKCHTt2jEVFRXH7CJ2ffHbv3s22b98umEd7XBqNhg0bNoxLnzlzJissLDSqnJs3bzIPDw+d NH3tcenSJTZr1izuc3BwMHdedMXXr/rS9ZXNx8PDg+Xm5vZI1/c75Nq1a+y5557jjZWZmcm6zrzY NRZttNFGG220CW0rV65kggsadiWXy1FSUoJx48ZxaQcOHOC2W7ducekZGRkICQlBSEiIwcegesPP zw/Z2dn4xz/+gfnz5/f4Od9x9Ub3eoeFhWHkyJHYunUrNm3ahNu3b3N5U1JSUFtbi+3btyMhIQFt bW1gjCE4OBjR0dGYMWOGzt0bvlgNDQ3Yt28fcnNz8dFHH8HPz0/nmFpbW3n/Oq9Wq5Gdnc09+sUX i6/st99+Gy+88AJOnjypcxdBaB999ZZKpdi/fz+GDh2KDz/8kPs3Xx3u3r0LhULB+ygWXz2OHDnC 5cnOzsadO3cAAPv370dYWBiWLFmC/fv3c3/9FTomfYT2mTt3LqRSKVasWIHIyEju0Se+dK21a9ei paUFXl5egmVrHThwAIsWLcL06dPh5uam8zOFQoGmpiaDs0qp1WoMHjwYc+bMQUZGRo+fGxtHyOHD h+Hr66t3AVOhOnRXWlqK1tZW+Pj44ODBg3jppZe4fhY6P/nI5fIe64TwHVdRUREGDRqE0tJS/PDD D3B3d++x2CGflJQUxMTEcJ/52sPe3h4tLS3c55aWlh6LxvL1B19697INSU9P535HVlZW6vys6++Q 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 SRGRli9fnlJK6ZOf/GRavHhxqqurS4MHD05VVVVpz549ady4cemVV15JKb3zuu3t27enPXv2pMGD B9d7H8eAAQMKf/7iF7+YFi1alLZv354GDx6campq0o4dO1KvXr0K99m1a1dKKaWqqqo0cODAemdA /5//+Z/0ox/9qIWvin7Hj3/843T11VfXu2zIkCHppZdeSlu2bEmlpaWpsrKyyWM0dvvVq1en0tLS wns4LrroosL7YI477ri0efPmlFJK55133j6vSX/uuefScccdl/bs2ZM2b95c70zkxx13XFq5cmWT +2/uGI899liaO3dui9aotevR2LEbm8fGjRvTsmXL0rJly9J3vvOddNppp9V7H9F73yPS2DqllJrd V2vm/fnPfz7deuutDV63P+bd3DHeO7+tW7cWLt+yZUs66qijCsdq6u94Y5p6XCdOnJh+9atf7XOf 1qxfc/NraA0b+5490GvYlvVLqW1rOG/evPTlL3+52X3nFAfBa49tNpvNdnBvV111VYp3/9A8adKk dPTRRxe+3rRpUyorK0vHHHNM6tOnTyorK0v/9V//lVJ6503ZZ511VvrEJz6Rhg8fXi82jj322PSz n/0svfDCC6m4uLjwg0BDampqUr9+/dLo0aPT6NGj05QpU1JtbW1KKaW77747lZeXp9NOOy39y7/8 S+E+M2fOTEOHDk1nnnlm+vjHP95siKSU0h133JFOOeWUdOKJJ6aPfvSjhcvHjBmTzj///HT22Wen r33ta/XGdv3117f6zcn33Xdfuvzyy+td9thjj6XTTjstjR49Ov34xz9u9hhN3f66665Lw4YNS6ef fnq64IILCmv18MMPp7POOiuddtpp6XOf+1zhh6xPfOITqaysLI0bNy4tXLgwpZTSokWL0sCBAwuP 7Ve+8pVm99/UMVJK6ZZbbmnxWrV2PRo7dlPz2OuBBx6ot78bb7wxffSjH00dOnSo9/3c0Do1t6/W zPvJJ59MHTt2TGVlZYXtscce26/zbuoYDc3vj3/8YzrqqKNSWVlZOv7449N3v/vdesdu6u94Qxp7 XF999dV05JFHpurq6n3u05rvm7asYWPfsznWsLXr19Y1vOuuu9I3v/nNFq1hLu39n5vNZrPZDv7t 6quvTlFRUfF3/YezcePGBv9zbIt3Pxux1549e+r9VnGvrVu31vtBuK37Tyml9evX77c5rF69Oo0a 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 AQP2y+S++tWvxtixY2P69OkNjunMM8+M2traOPvss2Pz5s1x4okn1rv/5MmTY/r06fHv//7vMW/e vDjuuOMaPdZRRx0VRx11VKPXtVT37t1j2rRpUV5eHjt37ozS0tLCdU2t1WWXXRajR4+OI488sl74 9OvXL6666qqIiBg6dGiMHDmyyfm15rEDAIC2atGZ1b/0pS/FkCFDYtq0aRHxzm/ZhwwZEq+88kps 3bo1evXq1eD9Xn/99ejTp0907ty52YHU1dVFdXV14TfxB0pDY6qsrIzDDz/8oPotZlPr2thabdu2 Lbp37x7Fxfuep7Kp/TWkNY8dUN/B9G8JAByMKioqmn6PyM6dO2Py5Mnx8ssvx6233trgbZr64fYD H/hAiwdTXFx8wCMkouEx9e7d+4Aft7WaWtfG1qpnz55t2l9DWvPYAQBAazUZIp07d44bb7yx3ic3 RbzzBugHHnjggA4MAAB4/9r3NTzv0qFDh30iJOKd38gPHTr0gA0KAAB4fyuOeOeM6VOnTo25c+fG 22+/3eI7L1u2LL7xjW8csMHldv3118dTTz1V+Hp/zu/ZZ5+N3bt3H3T7aq0tW7bElVdeGSNGjIjf //737TKGv1dD63fOOefs92Nce+218a1vfSu2bNkSERFTp06NqVOnxpw5c+K1116LiIgXXngh7rzz zsL97r333nj00Uf361gAAA5GxRER69atiz/+8Y+xffv2uOCCC1p8Arv+/fvHGWeccUAHmNOaNWti +/btha/35/wuueSS2Lx580G3r9Z68MEHo1evXrFs2bI488wz22UMf6+G1m/lypX7bf9f+tKX4tpr r41zzz03evToEU8//XRERNx1111RVlYWu3btirFjx8Zjjz0WGzZsqPcyxyVLluzXsQAAHKw6jBo1 6qZBgwbFiy++GN/97nfj85//fFx11VUxefLk6Nq1a2zcuDFmzpwZ9957bxx99NFxxBFHRETEnDlz 4p577onu3bvX+1jfiIjp06fHtm3b4pvf/GZ07NixcFK8l156Kb761a/GokWL4q9//Wv06dOn3sn7 3quuri4effTRmDFjRtx3330xYsSIOOywwxodU0Q0et26deti7ty58dprr8X1118f69evj/Ly8li9 enVcd9118fjjj8emTZuivLw8BgwY0Oj8GptbRMQdd9wR//Zv/xa/+c1vokePHjF48OBYvnx53Hzz zfGnP/0p1q5dGw8//HAMHz48evXqFVu2bInvf//7MXfu3PiHf/iHZj+2uKl9NTa/hsbU1DxefPHF uPXWW2PmzJmxZs2aGDduXOH4U6dOjV/96lexcePG+NOf/hT9+/cvnHumpWu+Y8eO+OEPfxhz5syJ oqKiuPXWW+Pkk0+ud+LGhjR2jKYej9as3x133BFHHHFE3HjjjVFcXFzvJYmteZyqq6tj6tSpsXz5 8igtLY1Ro0bFP/7jP0ZExM033xz3339/nHrqqdGxY8d4+OGH4+STT47//d//jcmTJ0dExCOPPBI9 e/aMU089tcn14OB28803t/cQAOCgNmrUqIiKior0wAMPpIkTJ6a9Lr744nTPPfeklFIaMWJEmj9/ flq6dGk65phjUlVVVeF2CxYsSJ/+9KfTe3Xu3DnNnj07Pf/884X71NXVpdLS0vSHP/whPfTQQ6lz 585p0aJF+9z33ebMmZM++9nPpjVr1qRnnnkmPf/8882OqbHrVq5cmT70oQ+lG264If31r39Nixcv Loxp4cKFaf78+am4uLjemBqaX0Nz22v+/Plp06ZN6bnnnkuDBw9OL7/8cuG6oUOHpk2bNtXbV3l5 ebrvvvvSmjVr0tixY9O6deuaXI+m9tXQ/JoaU2PzOP/889OCBQvSjh07Gnx8ZsyYkb73ve/Vu6w1 a/69730vffnLX0633XZbOvvss9P8+fPTTTfd1OycGztGU49Ha9avU6dO6c4770zPPfdcGjhwYNq+ fXvhutY8Tr///e/ThAkTGrwuIlJKKdXW1qZLLrkkzZo1Ky1YsCCNHz++cJtrr702zZw5s9k5cHCL CJvNZrPZbE1sFRUVqcE3q3/wgx+M1atXx5tvvhkppTjvvPNixIgRMX78+Fi4cGFDd6mnU6dOMW3a tDj22GNj1KhRsXLlynj66aejtLQ0zjjjjPjYxz7W5G+u97rnnnvipptuiqOPPjpOOOGEOPbYY5sc U3PjraqqiltuuSUGDx4cp556aqxcuTIGDRoUY8eOjfPOO6/BN+a3ZG57lZWVxf333x933313dO3a NV566aVG97N+/frYunVr1NTUxLJly2Lw4MFx//33N3v8prx3fk2NqbF5lJSUxG9+85t4+umno7y8 vNljtnbNIyJOOOGEOO6442LIkCFxwgknNLlOzR2jqcejNTp27BhXXnllHHfccTFy5MhYtmxZRLT+ cXr55Zfjgx/8YERE/Pd//3eMGDEivvOd7xSuHzFiRAwfPjz69u0bn/vc59o0VgCA94MGQ2Tp0qUx YcKE2LhxY/Tr169web9+/WLDhg3N7rRv377RqVOniIjo0aNH1NbWxltvvRWHH3544TaHHXZYs/tZ v379PuezaGpMzY135MiR0aFDh8LXb7zxRr2XhjX38qDG5hYRUVNTE+eee2707NkzLr/88jj66KOj urq60f2sXbs2unXrFpWVlVFZWRmnnHJKnHTSSc0evynvnV9TY2psHj/5yU+irKwspkyZ0qL3x7R2 zSMiunXrFp06dYouXbpEp06dorKyss3HaGwerXX44YcXTt7YtWvXwjq19nE644wz4i9/+UtERFxx xRVx+eWXF96YHvHOByCsXLky5syZE4cffnh069Yt6urq6u2jW7dubZoDAMD/JfVCpK6uLh588MF4 9dVXY9iwYXHSSSfFmjVrYufOnVFXVxeLFy+OCRMmtOlAp59+ejz11FOxdevWqKysjOXLlzd7n0mT JtV7I29VVVWTY2puvO/9gbi8vDxWrFgRtbW1UVVVFStWrGjT3CIinnnmmRg0aFBcdNFFMWDAgFi6 dGm96/e+l2Kv0aNHR21tbVx66aUxZcqUmDJlSgwbNqxFx3rvvvZ67/yaG1NjJk+eHH/+859j7dq1 sXXr1iZv29o1b4v9+X0Y0fj6NaS1j1NpaWlUV1e36Pv73WPZ+yleDcX3ww8/HHfffXeL9gcA8H9F 4YSGTzzxRAwbNiwmTpwYDz30UBQXv9MoX//612PChAlRVFQUY8aMiQEDBsRbb70V55xzTmzbti3e euutGDFiREybNi2uuOKKRg9UUlISN910U4wbNy569uwZJ598cuE32Y256qqrYsaMGfHDH/4wdu3a FbfddluceuqpDY4pIqKoqKjR6xrSvXv3mDZtWpSXl8fOnTujtLQ0IqJN8xs2bFjU1tbG2WefHZs3 b44TTzyx3vVXX311TJs2Laqrq+MXv/hFfOQjH4kZM2bEpEmToqSkJNavXx+33357i37AbmhfbRlT Q84666zo3bt37Nq1Ky6++OJmz8je2jVvi/19jJauX8Q758xp7eP085//PP7jP/4jXn311XjzzTfj 29/+dqO3/fCHPxyTJk2K448/Po444ojo2bNnfPzjH693m8cffzxWrVoVl112WavnCgBwsCqqqKhI s2bNavJGdXV1UV1dHV27dt1vBx42bFgsWbIkSkpKmr3tli1bomPHjtG9e/cWjam14926dWuzP3C3 VGVlZRx++OFRVFTU4vu8/vrr0adPn8JLg/a31o5pw4YN0a9fv1aN50B8j7THMZrS2sfp7bffbvJT 4d6tqqoqqqqq6r0Ejf+7WvP3HwAORRUVFf//MyJNKS4u3i8//E2ePDm6dOkSr7/+elx44YUtipCI ht9P0tSYWjve/RUhERG9e/du9X3e+1Kc/a21Y+rfv3+rj7G/vkfa+xhNae3j1NIIiXjnfSHeGwIA HEpaFCL7yw9+8IN4+umn4/jjj2/XHygBAID2lTVEOnbsGGVlZTkPCQAAHISKIyJWrVoVU6dOjblz 58bbb7/d4jsvW7YsvvGNbxywwR0o119/fTz11FNtvv/BOu8c43r99ddjxowZ8bWvfS3Wrl0bEe+c cX3q1KkxZ86cwkfVvvDCC3HnnXcW7nfvvffGo48+ekDHBgDA/x3FERHr1q2LP/7xj7F9+/a44IIL Yvr06S26c//+/Vt0romDzZo1a2L79u1tvv/BOu8DPa65c+fGBRdcEMOHD4+ysrJ48cUXIyLirrvu irKysti1a1eMHTs2HnvssdiwYUO9j15esmRJm082CADA+0/hpVkDBgyI6667Lq677ro4+uijo7Ky Mnr37h0bN26M//zP/4y33norrrzyysIZ0efMmROrVq2KkSNH7rPT6dOnx5gxY+Kee+6Jz3zmM3Hh hRdGRMRLL70U3/rWt6JPnz4xcODAOOecc5r86NR169bFz3/+8xg4cGDMmzcvxo4dG9ddd11s2bIl 7r777lixYkVMmTKl3hnAGzv26tWr41vf+lYcdthh9U402Ni+Gjt2jnnfcMMNcdttt0XEOx8FO3Lk yMLtX3zxxZg7d26sWrUqysvL46abbmry8dhfY4p450zhv/rVr2LgwIH7XDdlypSIeOdkgD/96U/j 0ksvbXJfAAAc4ioqKtIDDzyQJk6cmPa6+OKL0z333JNSSmnEiBFp/vz5aenSpemYY45JVVVVhdst WLAgffrTn07v1blz5zR79uz0/PPPF+5TV1eXSktL0x/+8If00EMPpc6dO6dFixbtc993W7lyZfrQ hz6UbrjhhvTXv/41LV68OKWUUnl5ebrvvvvSmjVr0tixY9O6detadOyFCxem+fPnp+Li4sKxG9tX Y8fOMe8BAwYU/vzFL36x3u3PP//8tGDBgrRjx4599tPQIpY3fQAAEbNJREFUuPbXmN5444105JFH NnhdRKSUUqqtrU2XXHJJmjVrVlqwYEEaP3584TbXXnttmjlzZpPHgPeLiLDZbDabzdbEVlFRkRp8 s/oHP/jBWL16dbz55puRUorzzjsvIiLGjx8fCxcujI997GMN3a2gU6dOMW3atOjUqVOMGjUqVq5c GSUlJVFaWlp46dDeZ1aaU1VVFbfcckt06NAhBg8eHOvXr4+tW7dGTU1NLFu2LAYPHhz3339/4eVk DR27S5cuMWjQoBg7dmxERJxwwgkREc3u673Hbs7+nHdjSkpK4je/+U106dKl3jNBB3pMr7zySpMf XztixIioqamJMWPGxOc+97n4y1/+0vJJAQBwyGkwRJYuXRqzZ8+OjRs31jvBWr9+/WLDhg3N7rRv 376Fs6b36NEjamtrY9u2bXH44YcXbtPQuUEaMnLkyOjQoUPh67Vr10a3bt2isrIyIiJOOeWUej9I N3TsLVu21DunQ9++fVu0r/ceO+e899q5c2e9r3/yk5/EL37xi5gyZUr069cvHnvssSxjGj58eGzY sCF27tzZ4EcvL1u2rN7X3bp1i7q6un0uAwCAiP/3ZvW96urq4sEHH4xXX301hg0bFieddFKsWbMm du7cGXV1dbF48eKYMGFCmw50+umnx1NPPRVbt26NysrKWL58eYvu994QGD16dNTW1sall14aU6ZM iSlTpsSwYcOa3Ed5eXmsWLEiamtro6qqKlasWNGifbUmQhrTlnn36tUrduzYUVjz95o8eXL8+c9/ jrVr18bWrVuzjKlDhw4xZsyYmDdvXuGypj5hrX///rFx48bYvXt3RLzz7NO7n1F5+OGH4+677271 2AEAeH8oPCPyxBNPxLBhw2LixInx0EMPRXHxO43y9a9/PSZMmBBFRUUxZsyYGDBgQLz11ltxzjnn xLZt2+Ktt96KESNGxLRp0+KKK65o9EAlJSVx0003xbhx46Jnz55x8sknF35T3xrFxcUxY8aMmDRp UpSUlMT69evj9ttvbzKQunfvHtOmTYvy8vLYuXNnlJaWtmlfueZ92WWXxejRo+PII4+MY489tt51 Z511VvTu3Tt27doVF198cfTq1avV42rrYzFz5syYOXNmjB49OiorK+P222+PSZMmNXjbD3/4wzFp 0qQ4/vjj44gjjoiePXvGxz/+8cL1jz/+eKxatSouu+yyZo8LAMD7T1FFRUWaNWtWkzeqq6uL6urq /Xo29GHDhsWSJUuipKSkzft4/fXXo0+fPtG5c+cW3X7r1q3Rq1ev/bKvtmrpvLdt2xbdu3cvBOG7 bdiwIfr167ffxtrax+Ltt9+OHj16tOj4VVVVUVVVVe8lfvB+V1RU1N5DAICDWkVFRcvOrF5cXLxf ImTy5MnRpUuXeP311+PCCy/8uyIkIpp883RDGouQtuyrNdoy7549ezZ6Xf/+/dtlTHu9+/02zenW rZv3hgAAsI8Whcj+8oMf/CCefvrpOP744/frsysHu4Nx3gfjmAAAOHRkDZGOHTtGWVlZzkMeFA7G eR+MYwIA4NCx7xsQAAAADjAhAgAAZJf1pVkAufjkKgA4uHlGBAAAyE6IAAAA2QkRAAAgOyECAABk J0QAAIDshAgAAJCdEAEAALITIgAAQHZCBAAAyE6IAAAA2QkRAAAgOyECAABkJ0QAAIDshAgAAJBd x/YeAPD+U1RU1N5DAAAOcp4RAQAAshMiAABAdkIEAADITogAAADZCREAACA7IQIAAGQnRAAAgOyE CAAAkJ0QAQAAshMiAABAdkIEAADITogAAADZCREAACA7IQIAAGQnRAAAgOyECAAAkJ0QAQAAshMi AABAdkIEAADITogAAADZCREAACA7IQIAAGQnRAAAgOyECAAAkJ0QAQAAshMiAABAdkIEAADITogA AADZCREAACA7IQIAAGQnRAAAgOyECAAAkJ0QAQAAshMiAABAdkIEAADITogAAADZCREAACA7IQIA AGQnRAAAgOyECAAAkJ0QAQAAshMiAABAdkIEAADITogAAADZCREAACA7IQIAAGQnRAAAgOyECAAA kJ0QAQAAshMiAABAdkIEAADITogAAADZCREAACA7IQIAAGQnRAAAgOyECAAAkJ0QAQAAshMiAABA dkIEAADITogAAADZCREAACA7IQIAAGQnRAAAgOw6tvcAgAOjqKiovYcAANAoz4gAAADZCREAACA7 IQIAAGQnRAAAgOyECAAAkJ0QAQAAshMiAABAdkIEAADITogAAADZCREAACA7IQIAAGQnRAAAgOyE CAAAkJ0QAQAAshMiAABAdkIEAADIrmN7DwDej4qKitp7CAAABzXPiAAAANkJEQAAIDshAgAAZCdE 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 IQIAAGQnRAAAgOyECAAAkJ0QAQAAshMiAABAdkIEAADITogAAADZCREAACA7IQIAAGQnRAAAgOyE CAAAkJ0QAQAAshMiAABAdkIEAADIrmNERFFRUXuPAwAAOIR4RgQAAMhOiAAAANkJEQAAIDshAgAA ZCdEAACA7IQIAACQnRABAACyEyIAAEB2QgQAAMhOiAAAANkJEQAAIDshAgAAZCdEAACA7IQIAACQ nRABAACyEyIAAEB2QgQAAMhOiAAAANkJEQAAIDshAgAAZCdEAACA7IQIAACQnRABAACyEyIAAEB2 QgQAAMhOiAAAANkJEQAAIDshAgAAZCdEAACA7IQIAACQnRABAACyEyIAAEB2QgQAAMhOiAAAANkJ EQAAIDshAgAAZCdEAACA7IQIAACQnRABAACyEyIAAEB2QgQAAMhOiAAAANkJEQAAIDshAgAAZCdE AACA7IQIAACQnRABAACyEyIAAEB2QgQAAMhOiAAAANkJEQAAIDshAgAAZCdEAACA7IQIAACQnRAB AACyEyIAAEB2QgQAAMhOiAAAANkJEQAAIDshAgAAZCdEAACA7IQIAACQnRABAACyEyIAAEB2QgQA AMhOiAAAANkJEQAAIDshAgAAZCdEAACA7IQIAACQnRABAACyEyIAAEB2QgQAAMhOiAAAANkJEQAA IDshAgAAZCdEAACA7IQIAACQnRABAACyEyIAAEB2QgQAAMhOiAAAANkJEQAAIDshAgAAZCdEAACA 7IQIAACQnRABAACyEyIAAEB2QgQAAMhOiAAAANkJEQAAIDshAgAAZCdEAACA7IQIAACQnRABAACy EyIAAEB2QgQAAMhOiAAAANkJEQAAIDshAgAAZCdEAACA7IQIAACQnRABAACyEyIAAEB2QgQAAMhO iAAAANkJEQAAIDshAgAAZCdEAACA7IQIAACQnRABAACyEyIAAEB2QgQAAMhOiAAAANkJEQAAIDsh AgAAZCdEAACA7IQIAACQnRABAACyEyIAAEB2QgQAAMhOiAAAANkJEQAAIDshAgAAZCdEAACA7IQI AACQnRABAACyEyIAAEB2QgQAAMhOiAAAANkJEQAAIDshAgAAZCdEAACA7IQIAACQnRABAACyEyIA AEB2QgQAAMhOiAAAANkJEQAAIDshAgAAZCdEAACA7IQIAACQnRABAACyEyIAAEB2QgQAAMiuY0RE RUVFe48DAAA4hPx/uMxqnRhMWTgAAAAASUVORK5CYII= "
          id="image3089"
          x="-73.443863"
          y="-91.990829" />
@@ -657,7 +144,7 @@ RUVFe48DAAA4hPx/uMxqnRhMWTgAAAAASUVORK5CYII=
            y="471.46744"
            x="488.59012"
            id="tspan3350-7"
-           sodipodi:role="line">nVidia shader</tspan></text>
+           sodipodi:role="line">nVidia</tspan></text>
       <text
          sodipodi:linespacing="125%"
          id="text3348-4-1"
@@ -668,7 +155,11 @@ RUVFe48DAAA4hPx/uMxqnRhMWTgAAAAASUVORK5CYII=
            y="1079.5792"
            x="98.994942"
            id="tspan3350-7-9"
-           sodipodi:role="line">fglrx shader</tspan></text>
+           sodipodi:role="line">AMD/ATI</tspan><tspan
+           y="1147.9756"
+           x="98.994942"
+           sodipodi:role="line"
+           id="tspan3001" /></text>
       <text
          sodipodi:linespacing="125%"
          id="text3348-4-5"
@@ -679,7 +170,7 @@ RUVFe48DAAA4hPx/uMxqnRhMWTgAAAAASUVORK5CYII=
            y="1078.8218"
            x="477.67682"
            id="tspan3350-7-1"
-           sodipodi:role="line">intel shader</tspan></text>
+           sodipodi:role="line">intel</tspan></text>
     </g>
   </g>
 </svg>
index f2a3f41..d72dbed 100644 (file)
Binary files a/figures/loss_of_precision_grid_0.5.pdf and b/figures/loss_of_precision_grid_0.5.pdf differ
diff --git a/figures/memory.pdf b/figures/memory.pdf
new file mode 100644 (file)
index 0000000..37852a4
Binary files /dev/null and b/figures/memory.pdf differ
diff --git a/figures/time.pdf b/figures/time.pdf
new file mode 100644 (file)
index 0000000..5b56ecc
Binary files /dev/null and b/figures/time.pdf differ
index b46b55c..78896c3 100644 (file)
Binary files a/figures/view_transformation.pdf and b/figures/view_transformation.pdf differ
diff --git a/figures/view_transformation.svg b/figures/view_transformation.svg
new file mode 100644 (file)
index 0000000..9f2223f
--- /dev/null
@@ -0,0 +1,492 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+
+<svg
+   xmlns:dc="http://purl.org/dc/elements/1.1/"
+   xmlns:cc="http://creativecommons.org/ns#"
+   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+   xmlns:svg="http://www.w3.org/2000/svg"
+   xmlns="http://www.w3.org/2000/svg"
+   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+   id="svg2985"
+   version="1.1"
+   inkscape:version="0.48.5 r10040"
+   width="467.71683"
+   height="253.34606"
+   xml:space="preserve"
+   sodipodi:docname="view_transformation.pdf"><sodipodi:namedview
+     pagecolor="#ffffff"
+     bordercolor="#666666"
+     borderopacity="1"
+     objecttolerance="10"
+     gridtolerance="10"
+     guidetolerance="10"
+     inkscape:pageopacity="0"
+     inkscape:pageshadow="2"
+     inkscape:window-width="1366"
+     inkscape:window-height="692"
+     id="namedview2987"
+     showgrid="false"
+     inkscape:zoom="1.0696831"
+     inkscape:cx="27.677981"
+     inkscape:cy="106.16254"
+     inkscape:window-x="0"
+     inkscape:window-y="24"
+     inkscape:window-maximized="1"
+     inkscape:current-layer="g2993" /><metadata
+     id="metadata2991"><rdf:RDF><cc:Work
+         rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type
+           rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs
+     id="defs2989"><clipPath
+       id="clipPath3051"
+       clipPathUnits="userSpaceOnUse"><path
+         id="path3053"
+         d="m 9,116.67685 144,0 0,75 -144,0 0,-75 z" /></clipPath><mask
+       id="mask3055"
+       height="1"
+       width="1"
+       y="0"
+       x="0"
+       maskUnits="userSpaceOnUse"><g
+         id="g3057"><g
+           id="g3059"
+           clip-path="url(#clipPath3051)"><path
+             id="path3061"
+             style="fill:#000000;fill-opacity:0.652893;fill-rule:nonzero;stroke:none"
+             d="m 9,116.67685 144,0 0,75 -144,0 0,-75 z" /></g></g></mask><clipPath
+       id="clipPath3067"
+       clipPathUnits="userSpaceOnUse"><path
+         id="path3069"
+         d="m 9,116.67685 144,0 0,75 -144,0 0,-75 z" /></clipPath><clipPath
+       id="clipPath3071"
+       clipPathUnits="userSpaceOnUse"><path
+         id="path3073"
+         d="m 9,117 144,0 0,75 -144,0 0,-75 z" /></clipPath><clipPath
+       id="clipPath3117"
+       clipPathUnits="userSpaceOnUse"><path
+         id="path3119"
+         d="m 16.844,110.942 123.973,0 0,-97.48 -123.973,0 0,97.48 z" /></clipPath><clipPath
+       id="clipPath3125"
+       clipPathUnits="userSpaceOnUse"><path
+         id="path3127"
+         d="M 0,0 140,0 140,113 0,113 0,0 z" /></clipPath></defs><g
+     transform="matrix(1.25,0,0,-1.25,0,253.34606)"
+     inkscape:label="view_transformation"
+     inkscape:groupmode="layer"
+     id="g2993"><g
+       id="g2997"
+       transform="matrix(1,0,0,-1,0,202.67685)"><path
+         inkscape:connector-curvature="0"
+         d="m 115.527,12.168 36.77,0 0,28.914 -36.77,0 0,-28.914 z"
+         style="fill:#00ffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.62221301;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
+         id="path2999" /></g><path
+       inkscape:connector-curvature="0"
+       d="m 133.238,190.95 c 0.024,-0.004 0.051,-0.011 0.074,-0.023 0.184,-0.074 0.309,-0.402 0.309,-0.781 0,-0.602 0.195,-1.211 1.211,-3.75 0.195,-0.496 0.527,-1.375 0.742,-1.957 0.219,-0.594 0.586,-1.153 0.84,-1.278 0.246,-0.125 0.813,-0.594 1.254,-1.031 0.437,-0.438 0.883,-0.797 0.996,-0.797 0.227,0 2.094,-2.418 2.094,-2.707 0,-0.098 0.32,-0.711 0.711,-1.371 0.394,-0.656 0.687,-1.305 0.648,-1.43 -0.058,-0.191 1.918,-1.687 2.231,-1.687 0.058,0 0.398,-0.235 0.754,-0.528 0.359,-0.289 1.207,-0.773 1.878,-1.066 0.676,-0.289 1.364,-0.629 1.532,-0.762 0.168,-0.129 0.625,-0.429 1.019,-0.668 0.805,-0.484 1.965,-1.812 2.274,-2.586 0.218,-0.554 0.191,-0.664 -0.223,-0.949 -0.285,-0.199 -0.363,-0.457 -0.297,-0.961 0.094,-0.758 -0.242,-1.308 -1.223,-2.004 -0.781,-0.558 -2.503,-0.343 -3.558,0.446 -0.52,0.386 -0.918,0.527 -1.297,0.445 -0.512,-0.113 -3.555,0.621 -5,1.207 -0.484,0.195 -1.105,0.203 -2.371,0.035 -1.586,-0.215 -3.777,-0.07 -4.684,0.317 -0.328,0.136 -0.34,0.121 -2.867,-3.739 -0.691,-1.058 -1.586,-2.324 -1.996,-2.812 -3.187,-3.813 -4.551,-5.821 -6.246,-9.293 -0.402,-0.817 -0.84,-1.641 -0.977,-1.828 -0.308,-0.41 -1.312,-3.746 -1.316,-4.379 -0.004,-0.254 -0.133,-0.867 -0.289,-1.36 -0.152,-0.496 -0.34,-1.961 -0.414,-3.257 -0.07,-1.301 -0.231,-3.063 -0.352,-3.914 -0.226,-1.618 -0.215,-1.692 0.66,-6.329 0.235,-1.234 0.442,-2.363 0.469,-2.507 0.024,-0.141 0.145,-0.395 0.266,-0.563 0.117,-0.164 0.305,-0.601 0.414,-0.973 0.16,-0.558 0.332,-0.699 0.996,-0.808 0.441,-0.067 1.156,-0.391 1.594,-0.723 0.437,-0.332 0.855,-0.609 0.926,-0.609 0.07,0 0.351,-0.457 0.625,-1.008 0.578,-1.172 0.417,-1.562 -0.668,-1.617 -0.36,-0.02 -1.297,-0.141 -2.082,-0.27 -4.696,-0.789 -6.274,0.36 -7.743,5.598 -0.191,0.684 -0.738,1.992 -1.211,2.918 -0.773,1.512 -1.148,2.441 -1.964,4.898 -0.137,0.399 -0.325,0.668 -0.426,0.598 -0.102,-0.07 -0.129,-0.223 -0.063,-0.34 0.063,-0.117 -0.23,-0.707 -0.66,-1.312 -0.43,-0.606 -1.207,-1.856 -1.73,-2.789 -0.524,-0.93 -1.196,-1.871 -1.489,-2.086 -0.605,-0.434 -2.687,-0.5 -3.355,-0.106 -0.223,0.133 -0.703,0.238 -1.074,0.235 -0.992,0 -5.703,1.785 -6.215,2.355 -0.633,0.715 -0.75,1.359 -0.391,2.121 0.508,1.082 1.453,1.688 2.75,1.746 1.071,0.051 1.188,-0.004 1.953,-0.82 0.903,-0.953 2.133,-1.426 3.125,-1.207 0.786,0.172 1.246,1.078 1.848,3.633 0.719,3.066 1.215,2.761 -4.516,2.73 -2.718,-0.015 -5.586,0.031 -6.371,0.094 -3.238,0.262 -4.457,0.391 -4.621,0.504 -0.094,0.066 -0.812,0.16 -1.594,0.211 -0.875,0.054 -1.726,0.261 -2.218,0.539 -0.442,0.246 -0.832,0.406 -0.883,0.351 -0.047,-0.054 -0.848,0.258 -1.774,0.692 -0.925,0.429 -1.82,0.785 -1.984,0.785 -0.164,0 -0.656,0.191 -1.086,0.434 l -0.773,0.433 -0.735,-0.738 c -1.183,-1.199 -2.816,-2.496 -3.992,-3.188 -0.605,-0.355 -1.226,-0.879 -1.391,-1.16 -0.183,-0.304 -0.515,-0.515 -0.82,-0.515 -0.277,0 -1.019,-0.352 -1.656,-0.786 -1.449,-0.988 -3.277,-1.441 -6.383,-1.582 -2.082,-0.093 -2.547,-0.183 -3.676,-0.761 -1.207,-0.618 -2.812,-2.035 -2.812,-2.473 0,-0.105 -0.137,-0.309 -0.301,-0.457 -0.363,-0.332 -0.605,-1.469 -0.391,-1.852 0.086,-0.152 0.168,-0.445 0.18,-0.632 0.043,-0.629 0.766,-2.473 0.965,-2.473 0.113,0 0.156,-0.281 0.098,-0.621 -0.133,-0.762 0.273,-1.672 0.902,-2.012 0.262,-0.144 1.078,-0.308 1.805,-0.351 0.73,-0.043 1.597,-0.231 1.933,-0.411 0.567,-0.304 0.61,-0.41 0.574,-1.406 -0.019,-0.594 -0.171,-1.312 -0.339,-1.594 -0.293,-0.496 -0.411,-0.507 -3.473,-0.515 -2.152,-0.008 -3.23,0.07 -3.356,0.246 -0.105,0.141 -0.523,0.961 -0.945,1.828 -0.422,0.863 -0.926,1.777 -1.117,2.027 -0.535,0.692 -1.73,2.973 -2.465,4.719 -0.363,0.863 -0.695,1.617 -0.73,1.664 -0.039,0.051 -0.637,-0.222 -1.34,-0.597 -0.703,-0.375 -1.606,-0.848 -1.996,-1.055 -0.395,-0.199 -1.262,-0.922 -1.934,-1.606 -1.07,-1.086 -1.301,-1.222 -1.836,-1.101 -0.34,0.078 -1,0.195 -1.469,0.258 -1.054,0.148 -1.835,0.949 -1.527,1.57 0.113,0.23 0.719,0.965 1.348,1.629 0.75,0.793 1.109,1.332 1.043,1.57 -0.106,0.367 1.258,1.668 2.504,2.379 0.308,0.18 1.07,1.004 1.679,1.828 0.61,0.828 1.352,1.813 1.645,2.203 0.293,0.387 0.859,1.289 1.266,1.992 0.406,0.704 0.839,1.34 0.957,1.418 0.113,0.079 0.519,0.688 0.902,1.348 0.383,0.66 1.109,1.68 1.613,2.262 1.016,1.168 1.86,2.933 2.219,4.648 0.129,0.617 0.344,1.168 0.469,1.219 0.164,0.07 0.136,0.523 -0.106,1.605 -0.515,2.305 -0.285,6.129 0.371,6.129 0.313,0 0.418,-0.89 0.192,-1.617 -0.325,-1.027 -0.047,-4.32 0.531,-6.269 0.664,-2.239 1,-4.364 0.828,-5.235 -0.129,-0.652 -1.277,-3.484 -1.519,-3.75 -0.055,-0.062 -0.54,-1.101 -1.071,-2.308 -0.535,-1.207 -1.277,-2.571 -1.648,-3.035 -0.371,-0.465 -1.02,-1.352 -1.446,-1.969 -0.761,-1.11 -0.765,-1.145 -0.679,-2.813 0.086,-1.617 0.828,-4.011 1.351,-4.371 0.106,-0.07 0.387,-0.562 0.637,-1.09 0.246,-0.523 0.723,-1.394 1.051,-1.929 0.328,-0.539 0.777,-1.364 1,-1.84 0.219,-0.481 0.527,-0.957 0.687,-1.055 0.317,-0.199 5.516,-0.035 5.703,0.176 0.067,0.07 0.172,0.422 0.235,0.785 0.101,0.559 0.027,0.719 -0.488,1.055 -0.75,0.484 -1.489,0.504 -2.293,0.047 -0.563,-0.321 -0.672,-0.332 -1.125,0 -0.278,0.195 -0.45,0.449 -0.395,0.55 0.133,0.235 -0.57,1.75 -1.094,2.364 -0.254,0.3 -0.367,0.652 -0.297,0.949 0.063,0.277 -0.117,1.012 -0.437,1.758 -0.691,1.621 -0.609,2.968 0.258,3.937 0.308,0.348 0.789,0.961 1.058,1.36 0.274,0.398 0.965,1.066 1.532,1.464 1.164,0.817 2.418,1.067 5.195,1.043 2.844,-0.023 5.109,0.813 7.019,2.59 0.434,0.403 1.082,0.793 1.434,0.879 0.352,0.082 1.043,0.414 1.531,0.727 1.223,0.785 4.094,3.312 4.735,4.172 0.933,1.25 1.804,3.554 2.168,5.714 0.281,1.668 0.422,2.075 0.703,2.075 0.465,0 0.668,-0.391 0.39,-0.762 -0.25,-0.332 -0.722,-2.039 -0.933,-3.387 -0.149,-0.937 -1.18,-3.367 -1.531,-3.605 -0.778,-0.535 0.8,-1.289 2.859,-1.371 0.84,-0.035 1.797,-0.184 2.133,-0.328 0.808,-0.352 3.144,-0.625 3.218,-0.375 0.032,0.105 0.301,0.078 0.606,-0.047 0.648,-0.274 6.457,-0.063 6.809,0.246 0.125,0.105 0.761,0.179 1.421,0.164 0.661,-0.016 1.801,0.133 2.532,0.328 0.726,0.191 2.652,0.66 4.277,1.043 1.629,0.383 3.121,0.793 3.316,0.914 0.196,0.117 0.493,0.211 0.668,0.211 0.254,0 0.293,0.168 0.192,0.844 -0.071,0.461 -0.254,1.148 -0.403,1.519 -0.148,0.371 -0.293,1.078 -0.332,1.571 -0.05,0.699 0,0.917 0.266,0.972 0.27,0.059 0.379,-0.16 0.488,-1.008 0.082,-0.593 0.239,-1.339 0.34,-1.652 0.285,-0.828 0.59,-2.5 0.574,-3.113 -0.007,-0.297 0.164,-0.86 0.371,-1.242 0.239,-0.434 0.438,-1.368 0.524,-2.45 0.074,-0.965 0.363,-2.484 0.637,-3.375 0.273,-0.89 0.496,-1.847 0.5,-2.109 0,-0.266 0.136,-0.598 0.304,-0.75 0.172,-0.152 0.309,-0.574 0.309,-0.926 0,-0.789 0.277,-1.512 1.266,-3.269 0.425,-0.754 0.773,-1.461 0.773,-1.582 0,-0.246 0.727,-2.047 1.031,-2.555 0.114,-0.184 0.262,-0.516 0.328,-0.75 0.36,-1.195 1.25,-2.754 1.7,-2.984 0.281,-0.145 0.761,-0.387 1.062,-0.54 0.727,-0.367 4.016,-0.164 4.324,0.27 0.121,0.164 0.352,0.293 0.512,0.293 0.156,0 0.324,0.125 0.371,0.281 0.09,0.297 -0.394,0.395 -0.637,0.129 -0.199,-0.219 -1.754,-0.25 -1.754,-0.035 0,0.254 0.727,0.645 1.211,0.645 0.5,0 0.551,0.496 0.094,0.914 -0.265,0.242 -0.433,0.226 -0.996,-0.106 -0.371,-0.223 -0.836,-0.375 -1.043,-0.328 -0.41,0.086 -0.73,1.184 -0.699,2.387 0.008,0.402 -0.086,0.929 -0.203,1.172 -0.293,0.609 -1.442,6.882 -1.465,7.992 -0.027,1.398 0.723,8.16 1.051,9.457 0.093,0.371 0.316,1.226 0.488,1.906 0.176,0.684 0.418,1.641 0.543,2.133 0.125,0.496 0.305,1.101 0.402,1.348 0.282,0.714 0.871,5.062 0.86,6.363 -0.004,0.879 0.062,1.183 0.277,1.183 0.172,0 0.289,-0.226 0.289,-0.55 0,-0.676 0.289,-0.907 0.656,-0.528 0.328,0.336 0.621,0.446 1.625,0.574 0.621,0.079 0.953,0.352 1.934,1.583 0.652,0.816 1.453,1.734 1.773,2.05 0.606,0.598 2.493,3.293 3.411,4.864 0.554,0.949 0.867,2.132 0.562,2.132 -0.16,0 -0.859,0.645 -1.859,1.719 -0.211,0.231 -0.278,0.469 -0.168,0.586 0.027,0.031 0.05,0.051 0.086,0.07 -0.164,1.024 0.05,3.504 0.656,3.914 1.223,0.836 2.789,0.454 6.012,-1.453 2.16,-1.273 4.496,-2.297 6.703,-2.929 0.656,-0.188 1.461,-0.493 1.785,-0.68 0.652,-0.371 1.305,-0.441 1.305,-0.141 0,0.11 -0.305,0.321 -0.668,0.469 -0.368,0.152 -0.801,0.367 -0.969,0.481 -0.168,0.117 -0.535,0.308 -0.817,0.433 -0.281,0.125 -0.863,0.434 -1.296,0.68 -0.43,0.246 -0.903,0.445 -1.063,0.445 -0.156,0 -0.285,0.102 -0.285,0.223 0,0.32 0.746,0.285 1.496,-0.082 0.355,-0.168 1.008,-0.489 1.457,-0.703 0.449,-0.211 1.336,-0.684 1.977,-1.043 0.636,-0.356 1.273,-0.645 1.41,-0.645 0.136,0 0.422,-0.168 0.629,-0.375 0.199,-0.199 0.441,-0.484 0.625,-0.746 0.093,0.207 0.285,0.402 0.554,0.512 0.336,0.14 0.614,0.324 0.614,0.398 0,0.188 -1.918,1.621 -3.059,2.285 -0.504,0.297 -1.332,0.836 -1.836,1.196 -0.508,0.363 -1.07,0.765 -1.254,0.89 -1.64,1.133 -2.418,1.856 -2.433,2.25 -0.024,0.68 -1.879,4.055 -2.231,4.055 -0.199,0 -0.336,-0.309 -0.402,-0.902 -0.125,-1.082 -0.469,-1.223 -1.563,-0.61 -0.879,0.492 -1.308,0.563 -3.718,0.551 -2.36,-0.012 -3.219,-0.336 -4.79,-1.793 -1.601,-1.484 -1.796,-2.019 -1.828,-4.98 -0.027,-3.02 0.379,-4.332 1.817,-5.903 1.183,-1.289 1.336,-1.672 0.722,-1.886 -0.449,-0.161 -3.504,1.742 -4.289,2.671 -0.609,0.715 -0.945,0.743 -1.254,0.082 -0.382,-0.824 -1.671,-2.191 -2.062,-2.191 -0.25,0 -0.422,0.273 -0.57,0.949 -0.368,1.633 -0.914,3.539 -1.02,3.535 -0.125,-0.003 -2.242,-2.242 -2.625,-2.773 -0.152,-0.211 -0.418,-0.359 -0.605,-0.316 -0.293,0.062 -0.34,0.445 -0.34,2.878 0,1.68 -0.078,2.836 -0.203,2.872 -0.11,0.035 -0.801,-0.399 -1.528,-0.961 -2.472,-1.899 -3.371,-2.473 -4.293,-2.797 -0.504,-0.18 -1.09,-0.461 -1.316,-0.61 -0.535,-0.363 -2.559,-0.75 -3.867,-0.75 -0.575,0 -1.231,-0.148 -1.465,-0.328 -0.231,-0.179 -0.594,-0.324 -0.809,-0.316 -0.211,0.008 -1.906,-0.141 -3.758,-0.328 -1.851,-0.188 -3.496,-0.352 -3.664,-0.364 -0.57,-0.046 -8.058,-0.296 -8.574,-0.281 -1.359,0.031 -4.972,0.485 -6.508,0.809 -1.07,0.222 -1.793,0.281 -1.914,0.152 -0.117,-0.133 -0.386,-0.137 -0.722,0.012 -0.832,0.363 -2.602,0.859 -4.653,1.301 -1.609,0.343 -2.312,0.375 -4.98,0.199 -1.731,-0.117 -3.336,-0.344 -3.633,-0.504 -0.289,-0.16 -0.961,-0.418 -1.484,-0.574 -1.086,-0.324 -2.778,-2.012 -3.442,-3.434 -0.258,-0.547 -0.547,-0.844 -0.808,-0.844 -0.223,0 -0.403,-0.121 -0.403,-0.257 0,-0.317 -0.886,-0.09 -1.371,0.351 -0.195,0.176 -0.758,0.684 -1.242,1.125 -0.488,0.438 -0.973,0.797 -1.074,0.797 -0.102,0 -1.559,1.523 -3.238,3.387 -2.946,3.258 -3.981,4.265 -5.653,5.48 -0.426,0.313 -1.156,0.86 -1.613,1.219 -2.305,1.805 -5.785,3.086 -9.328,3.434 -1.367,0.132 -2.844,0.226 -3.289,0.21 -1.032,-0.031 -4.254,-0.851 -4.973,-1.265 -0.301,-0.172 -0.723,-0.317 -0.945,-0.317 -0.426,0 -2.5,-0.808 -2.856,-1.113 -0.113,-0.094 -0.457,-0.238 -0.754,-0.316 -0.773,-0.203 -3.746,-2.25 -4.355,-3 -0.77,-0.942 -0.977,-1.465 -2.094,-5.129 -1.41,-4.629 -1.465,-5.11 -0.637,-6.481 l 0.657,-1.089 0.597,1.043 c 0.786,1.398 1.192,1.304 1.582,-0.387 0.352,-1.539 0.567,-1.602 1.817,-0.504 0.492,0.43 0.961,0.785 1.039,0.785 0.355,0 0.801,-0.836 0.691,-1.301 -0.148,-0.633 0.102,-0.633 1.082,0 0.977,0.629 1.184,0.813 1.86,1.617 1.191,1.415 6.394,4.629 7.488,4.629 0.187,0 1.113,0.168 2.062,0.375 1.594,0.344 1.832,0.348 3.196,0.012 2.457,-0.609 4.719,-1.055 5.289,-1.055 0.301,0 0.801,-0.129 1.117,-0.269 0.316,-0.145 0.734,-0.285 0.934,-0.328 0.199,-0.043 0.734,-0.289 1.179,-0.539 0.446,-0.254 1.703,-0.797 2.793,-1.207 1.09,-0.414 2.446,-0.961 3.008,-1.219 0.559,-0.258 1.566,-0.695 2.238,-0.973 1.184,-0.492 2.938,-1.707 2.953,-2.051 0.016,-0.332 -0.542,-0.16 -1.199,0.375 -0.367,0.301 -1.601,0.926 -2.742,1.383 -1.137,0.457 -2.16,0.903 -2.273,0.996 -0.11,0.09 -0.989,0.442 -1.942,0.786 -0.953,0.343 -2.289,0.921 -2.972,1.277 -0.711,0.367 -1.59,0.633 -2.051,0.633 -0.446,0 -0.895,0.097 -1,0.211 -0.106,0.113 -0.93,0.328 -1.828,0.48 -0.895,0.149 -2.133,0.414 -2.75,0.598 -0.618,0.179 -1.356,0.336 -1.637,0.34 -1.09,0.007 -4.152,-0.493 -4.352,-0.715 -0.117,-0.129 -0.449,-0.235 -0.734,-0.235 -0.512,0 -2.172,-0.839 -3.801,-1.922 -0.465,-0.308 -1.558,-1.257 -2.433,-2.121 -0.879,-0.863 -1.907,-1.691 -2.286,-1.828 -0.546,-0.199 -0.652,-0.328 -0.55,-0.679 0.101,-0.36 -0.035,-0.516 -0.711,-0.809 -0.461,-0.199 -0.828,-0.457 -0.828,-0.574 0,-0.117 -0.196,-0.481 -0.426,-0.809 -0.235,-0.328 -0.715,-1.09 -1.074,-1.699 -0.356,-0.609 -0.735,-1.27 -0.848,-1.465 -0.117,-0.195 -0.469,-0.812 -0.785,-1.371 -0.32,-0.555 -1.012,-1.723 -1.531,-2.59 -0.52,-0.867 -1.047,-1.777 -1.168,-2.023 -0.121,-0.25 -0.457,-0.481 -0.743,-0.516 -0.675,-0.09 -0.886,0.57 -0.531,1.649 0.199,0.617 0.203,1.003 0.02,1.746 -0.348,1.418 -0.184,11.113 0.222,12.879 0.719,3.121 1.368,5.558 1.657,6.171 0.171,0.364 0.32,0.766 0.32,0.891 0,0.555 0.891,2.785 1.359,3.398 0.461,0.606 2.485,2.239 2.774,2.239 0.062,0 1.097,0.535 2.312,1.172 1.996,1.05 2.938,1.406 5.176,1.98 4.039,1.039 4.984,1.109 7.953,0.598 2.445,-0.422 4.867,-0.996 5.399,-1.266 3.195,-1.625 4.14,-2.148 4.449,-2.508 0.199,-0.234 1.168,-1.078 2.144,-1.875 0.977,-0.797 2.871,-2.675 4.219,-4.183 2.617,-2.926 5.422,-5.496 6.234,-5.715 0.403,-0.109 0.555,-0.004 0.84,0.551 0.188,0.375 0.489,0.679 0.657,0.679 0.171,0 0.421,0.223 0.55,0.504 0.274,0.571 1.618,1.887 1.852,1.805 0.082,-0.031 0.586,0.211 1.125,0.539 2.215,1.344 8.535,1.758 11.789,0.773 0.449,-0.136 1.406,-0.308 2.137,-0.375 0.726,-0.07 1.605,-0.207 1.941,-0.316 2.527,-0.828 3.813,-0.996 8.254,-1.078 4.535,-0.086 12.504,0.258 14.551,0.633 0.582,0.105 2.109,0.359 3.398,0.562 1.289,0.199 2.504,0.457 2.699,0.574 0.196,0.114 0.536,0.211 0.766,0.211 0.227,0 0.578,0.082 0.773,0.184 2.493,1.336 3.672,2.055 4.293,2.637 0.407,0.386 1.055,0.883 1.422,1.09 0.368,0.21 1.59,1.355 2.719,2.554 1.129,1.203 2.129,2.223 2.231,2.262 0.101,0.043 0.191,0.203 0.191,0.363 0,0.406 1.531,1.906 2.324,2.274 1.18,0.543 1.192,0.703 0.192,2.965 -0.684,1.55 -0.977,2.542 -1.168,3.984 -0.254,1.93 -0.168,2.379 0.425,2.379 0.145,0 0.371,-0.211 0.512,-0.457 0.137,-0.25 0.336,-0.446 0.434,-0.446 0.523,0 2.855,-1.859 4.047,-3.234 1.296,-1.496 1.386,-1.562 1.742,-1.207 0.375,0.375 1.25,0.664 2.242,0.832 0.012,0.481 0.113,1.184 0.168,1.641 0.238,1.933 0.543,3.062 0.926,3.445 0.215,0.215 0.39,0.508 0.39,0.656 0,0.375 0.59,0.926 0.969,0.957 0.027,0.004 0.047,0.008 0.074,0 z m -0.34,-1.332 c -0.199,0.02 -0.386,-0.289 -0.679,-0.785 -0.332,-0.566 -0.5,-1.23 -0.543,-2.133 -0.043,-0.894 -0.196,-1.804 -0.403,-2.379 1.329,0.153 2.731,0.094 3.368,-0.281 0.566,-0.336 0.535,-0.019 -0.215,2.145 -0.848,2.445 -1.199,3.394 -1.528,3.433 z m -10.73,-2.203 c -0.137,0 -0.16,-0.48 -0.063,-1.406 0.153,-1.473 1.727,-5.395 2.551,-6.363 0.422,-0.496 0.535,-1.34 0.211,-1.559 -0.238,-0.164 -0.828,0.48 -0.828,0.902 0,0.407 -0.246,0.403 -1.148,-0.011 -1.071,-0.493 -1.512,-0.946 -3.621,-3.668 l -1.911,-2.485 -0.148,-2.508 c -0.082,-1.378 -0.098,-2.562 -0.035,-2.632 0.066,-0.075 0.433,0.175 0.82,0.55 0.387,0.372 0.781,0.715 0.883,0.762 0.098,0.043 0.441,0.465 0.762,0.934 0.785,1.148 1.191,1.023 1.277,-0.375 0.035,-0.598 0.152,-1.27 0.266,-1.496 0.109,-0.231 0.199,-0.614 0.199,-0.856 0,-0.242 0.172,-0.664 0.371,-0.937 l 0.375,-0.504 0.57,0.75 c 0.317,0.414 0.711,1.074 0.883,1.476 0.172,0.399 0.434,0.782 0.574,0.844 0.141,0.059 0.688,-0.441 1.211,-1.113 0.52,-0.676 1.059,-1.231 1.199,-1.231 0.145,0 0.426,-0.199 0.629,-0.445 0.203,-0.25 0.559,-0.457 0.785,-0.457 0.348,0 0.305,0.121 -0.328,0.82 -0.945,1.043 -1.363,2.563 -1.519,5.61 -0.098,1.855 -0.047,2.527 0.222,3.293 0.321,0.925 1.153,2.203 1.434,2.203 0.074,0 0.574,0.383 1.113,0.855 1.43,1.246 3.352,1.711 5.875,1.418 1.032,-0.121 2.071,-0.328 2.305,-0.469 0.234,-0.14 0.609,-0.195 0.828,-0.117 0.293,0.102 0.406,0.348 0.406,0.891 0,0.594 -0.179,0.914 -0.871,1.582 -1.101,1.062 -2.195,1.613 -3.707,1.875 -1.285,0.223 -3.066,0.117 -3.625,-0.211 -0.187,-0.113 -0.519,-0.199 -0.73,-0.199 -0.215,0 -0.383,-0.156 -0.383,-0.34 0,-0.188 0.141,-0.34 0.316,-0.34 0.582,-0.008 0.965,-0.391 0.692,-0.691 -0.442,-0.489 -2.356,0.769 -3.781,2.496 -0.907,1.094 -1.618,1.726 -2.442,2.144 -0.644,0.325 -1.223,0.68 -1.285,0.797 -0.066,0.113 -0.215,0.211 -0.332,0.211 z m 1.234,-2.519 c 0.055,0.004 0.121,0 0.192,-0.012 0.078,-0.016 0.164,-0.047 0.265,-0.082 0.262,-0.098 0.547,-0.164 0.625,-0.141 0.082,0.024 0.411,-0.308 0.723,-0.738 0.313,-0.434 0.672,-0.785 0.809,-0.785 0.136,0 0.339,-0.176 0.445,-0.399 0.199,-0.414 0.727,-0.781 1.711,-1.172 0.719,-0.285 0.785,-1.015 0.074,-0.82 -0.492,0.137 -0.582,0 -1.019,-1.5 -0.188,-0.644 -0.723,-0.715 -1.254,-0.164 -0.27,0.277 -0.825,1.281 -1.243,2.227 -0.421,0.945 -0.996,2.05 -1.273,2.461 -0.445,0.652 -0.441,1.089 -0.055,1.125 z m 1.02,-1.313 c -0.11,-0.023 -0.102,-0.199 0.094,-0.504 0.179,-0.277 0.5,-0.91 0.714,-1.406 0.211,-0.496 0.532,-1.102 0.711,-1.348 0.313,-0.437 0.321,-0.441 0.329,0.164 0.003,0.34 0.101,0.621 0.21,0.621 0.379,0 0.211,0.411 -0.433,1.055 -0.352,0.352 -0.809,0.813 -1.02,1.031 -0.277,0.286 -0.496,0.411 -0.605,0.387 z m 9.558,-5.098 c 0.125,-0.019 0.282,-0.085 0.458,-0.187 0.324,-0.184 0.843,-0.34 1.156,-0.34 0.496,0 1.629,-0.258 2.465,-0.562 0.14,-0.051 0.257,-0.243 0.257,-0.434 0,-0.379 -0.918,-0.496 -1.117,-0.141 -0.066,0.118 -0.64,0.336 -1.285,0.481 -1.367,0.312 -2.359,0.82 -2.187,1.125 0.035,0.062 0.128,0.082 0.253,0.058 z m 0.161,-1.582 c 0.273,0.004 0.683,-0.074 1.402,-0.211 1.098,-0.21 1.773,-0.464 2.09,-0.796 0.457,-0.473 0.64,-1.399 0.32,-1.618 -0.086,-0.058 -0.879,-0.011 -1.754,0.094 -2.426,0.301 -3.617,1.344 -2.633,2.297 0.161,0.152 0.297,0.231 0.575,0.234 z m 0.371,-0.785 c -0.028,0.012 -0.055,0.012 -0.086,0 -0.121,-0.043 -0.223,-0.176 -0.223,-0.293 0,-0.117 0.102,-0.246 0.223,-0.293 0.121,-0.043 0.215,0.086 0.215,0.293 0,0.157 -0.051,0.266 -0.129,0.293 z m 1.347,-0.199 c -0.058,0.004 -0.14,-0.008 -0.23,-0.023 -0.582,-0.09 -0.649,-0.75 -0.074,-0.75 0.23,0 0.433,0.187 0.476,0.421 0.043,0.243 0.008,0.34 -0.172,0.352 z m 5.801,-1.336 c 0.156,0.008 0.293,-0.043 0.395,-0.152 0.222,-0.246 0.062,-0.528 -0.532,-0.926 -0.429,-0.285 -0.609,-0.301 -0.796,-0.094 -0.192,0.211 -0.165,0.375 0.125,0.727 0.234,0.285 0.546,0.437 0.808,0.445 z m -9.484,-0.75 c -0.102,0 -0.188,-0.012 -0.254,-0.035 -1.367,-0.422 -1.563,-0.594 -1.563,-1.371 0,-0.453 -0.101,-1.348 -0.222,-1.899 0.379,-0.011 0.859,-0.328 1.179,-0.855 0.473,-0.777 2.059,-2.027 2.801,-2.199 1.172,-0.278 2.582,-0.258 3.688,0.047 1.152,0.312 1.316,0.296 2.527,-0.129 0.715,-0.254 1.426,-0.446 1.582,-0.446 0.16,0 0.672,-0.211 1.137,-0.457 0.933,-0.5 1.168,-0.547 1.168,-0.246 0,0.11 -0.317,0.367 -0.711,0.574 -0.738,0.383 -0.946,0.797 -0.403,0.797 0.168,0 0.465,-0.089 0.657,-0.199 1.25,-0.723 3.457,-1.617 4.039,-1.64 1.019,-0.043 2.031,1.414 1.219,1.757 -0.067,0.028 -0.122,0.059 -0.168,0.106 -0.536,0.039 -3.864,1.152 -6.247,1.871 -1.058,0.32 -2.039,0.574 -2.175,0.574 -0.313,0 -2.996,1.356 -3.137,1.582 -0.164,0.27 -1.699,1.125 -2.016,1.125 -0.16,0 -0.441,0.137 -0.617,0.305 -0.383,0.367 -1.781,0.758 -2.484,0.738 z m 17.937,-5.34 c -0.316,-0.015 -0.582,-0.222 -0.582,-0.527 0,-0.363 0.352,-0.445 0.903,-0.211 0.406,0.172 0.41,0.508 0.011,0.68 -0.109,0.043 -0.222,0.062 -0.328,0.058 l -0.004,0 z m 0.129,-1.547 c -0.168,0 -0.308,-0.14 -0.308,-0.304 0,-0.168 -0.27,-0.539 -0.606,-0.821 -0.336,-0.285 -0.613,-0.601 -0.613,-0.703 0,-0.308 1.062,0.227 1.465,0.739 0.453,0.574 0.48,1.089 0.062,1.089 z M 14.32,160.419 c -0.195,0 -0.484,-8.457 -0.297,-8.789 0.165,-0.293 0.344,-2.168 0.329,-3.457 -0.012,-0.973 -0.024,-0.969 1.093,0.773 0.438,0.684 0.844,1.289 0.903,1.348 0.058,0.063 0.246,0.414 0.414,0.785 0.172,0.371 0.476,0.879 0.679,1.125 0.207,0.25 0.809,1.207 1.329,2.133 0.523,0.93 1.246,2.125 1.613,2.66 0.672,0.981 0.875,2.129 0.437,2.426 -0.125,0.086 -0.754,-0.273 -1.414,-0.785 -1.328,-1.035 -1.422,-0.992 -1.699,0.703 -0.074,0.461 -0.238,0.898 -0.359,0.984 -0.27,0.184 -0.985,-0.758 -0.989,-1.312 -0.007,-0.707 -0.742,-0.43 -1.328,0.504 -0.312,0.496 -0.629,0.902 -0.711,0.902 z m 109.625,-3.445 c -0.215,0.031 -0.586,-0.278 -1.383,-1.125 -0.207,-0.219 -0.464,-0.344 -0.574,-0.27 -0.113,0.078 -0.195,-0.269 -0.199,-0.832 -0.008,-0.531 -0.148,-1.367 -0.309,-1.863 -0.355,-1.082 -0.343,-1.02 -0.085,-1.02 0.117,0 0.265,0.184 0.339,0.399 0.075,0.219 0.422,0.851 0.766,1.406 0.344,0.559 0.781,1.387 0.977,1.852 0.195,0.464 0.437,0.843 0.55,0.843 0.274,0 0.278,0.387 0,0.575 -0.023,0.015 -0.054,0.031 -0.082,0.035 z m -66.777,-7.36 c -0.102,0 -0.141,-0.187 -0.086,-0.422 0.09,-0.382 -0.102,-0.929 -1.402,-4.015 -0.223,-0.527 -0.469,-0.961 -0.543,-0.961 -0.075,-0.004 -0.356,-0.383 -0.637,-0.844 -0.547,-0.906 -0.723,-1.133 -2.102,-2.859 -0.496,-0.621 -1.015,-1.36 -1.148,-1.641 -0.133,-0.281 -0.328,-0.457 -0.434,-0.387 -0.105,0.071 -0.132,-0.019 -0.066,-0.21 0.242,-0.688 -3.535,-5.45 -4.992,-6.293 -0.617,-0.36 -3.75,-4.415 -3.641,-4.723 0.094,-0.27 1.156,-0.578 2.008,-0.586 0.289,0 1.809,1.199 2.887,2.273 0.203,0.204 0.98,0.641 1.73,0.973 2.207,0.977 2.387,1.106 2.453,1.77 0.039,0.347 0.188,0.609 0.352,0.609 0.16,0 0.297,0.195 0.297,0.434 0,0.242 0.121,0.562 0.265,0.726 0.149,0.164 0.664,0.91 1.161,1.652 0.492,0.743 1.023,1.493 1.175,1.665 0.157,0.171 0.707,1.285 1.223,2.472 0.52,1.188 1.105,2.418 1.297,2.731 0.191,0.308 0.539,1.211 0.773,2.004 0.239,0.793 0.41,1.496 0.395,1.57 -0.117,0.531 -0.75,3.765 -0.766,3.898 -0.008,0.094 -0.097,0.164 -0.199,0.164 z m 51.363,-5.164 c -0.375,0.02 -1.136,-0.086 -1.371,-0.222 -0.191,-0.118 -1.086,-0.36 -1.984,-0.551 -0.899,-0.195 -2.414,-0.567 -3.367,-0.82 -2.645,-0.711 -3.657,-0.856 -7.848,-1.125 -3.547,-0.231 -4.781,-0.211 -8.063,0.14 -1.605,0.172 -1.035,-0.23 0.817,-0.574 0.84,-0.156 1.621,-0.356 1.73,-0.445 0.2,-0.164 2.047,-0.403 4.496,-0.575 0.672,-0.046 1.887,-0.175 2.707,-0.281 3.653,-0.472 9.809,0.172 12.641,1.336 1.176,0.481 1.227,0.641 0.754,2.098 -0.164,0.492 -0.297,0.929 -0.297,0.961 -0.004,0.035 -0.09,0.05 -0.215,0.058 z m -24.035,-2.273 c -0.043,0.004 -0.086,0 -0.137,0 -0.238,-0.012 -0.293,-0.07 -0.129,-0.141 0.149,-0.066 0.325,-0.051 0.395,0.024 0.051,0.054 -0.008,0.101 -0.129,0.117 z m 24.641,-1.336 c -0.203,0 -0.414,-0.09 -0.477,-0.199 -0.062,-0.11 -0.437,-0.27 -0.828,-0.352 -0.394,-0.082 -0.723,-0.281 -0.723,-0.445 0,-0.164 -0.16,-0.539 -0.363,-0.832 -0.199,-0.297 -0.492,-1.09 -0.637,-1.77 -0.359,-1.691 -1.214,-4.773 -1.433,-5.156 -0.137,-0.242 -0.477,-0.281 -1.477,-0.164 -2.652,0.312 -2.668,0.316 -3.472,1.289 -0.75,0.906 -0.797,0.922 -1.743,0.773 -0.535,-0.082 -1.082,-0.312 -1.222,-0.515 -0.504,-0.719 -0.168,-2.297 0.488,-2.297 0.18,0 0.887,-0.305 1.574,-0.68 1.379,-0.742 5.696,-1.715 6.563,-1.476 0.715,0.199 2.086,1.621 2.57,2.672 0.227,0.492 0.605,1.109 0.828,1.371 0.227,0.257 0.621,0.84 0.883,1.289 0.629,1.082 0.762,2.14 0.394,3.222 -0.167,0.489 -0.367,1.418 -0.437,2.075 -0.102,0.949 -0.195,1.195 -0.488,1.195 z"
+       style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+       id="path3001" /><path
+       inkscape:connector-curvature="0"
+       d="m 15.289,148.81 c 0.395,0.601 0.992,1.558 1.324,2.129 0.336,0.57 1.422,2.371 2.414,4 1.59,2.597 1.817,3.039 1.868,3.609 0.035,0.41 0.003,0.684 -0.086,0.746 -0.079,0.051 -0.645,-0.242 -1.278,-0.664 -0.625,-0.418 -1.238,-0.738 -1.355,-0.715 -0.16,0.035 -0.293,0.336 -0.485,1.098 -0.144,0.574 -0.312,1.101 -0.375,1.172 -0.16,0.175 -0.628,-0.422 -0.824,-1.039 -0.25,-0.817 -0.566,-0.766 -1.402,0.214 -0.383,0.454 -0.731,0.77 -0.77,0.7 -0.039,-0.067 -0.132,-1.848 -0.215,-3.957 -0.113,-3.075 -0.113,-3.973 0.008,-4.536 0.086,-0.386 0.184,-1.414 0.223,-2.277 0.035,-0.867 0.102,-1.574 0.148,-1.574 0.047,0 0.407,0.492 0.801,1.094 l 0.004,0 z"
+       style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
+       id="path3003" /><path
+       inkscape:connector-curvature="0"
+       d="m 122.469,153.775 c 0.519,0.976 1.051,1.972 1.179,2.21 0.125,0.239 0.282,0.434 0.344,0.434 0.063,0 0.11,0.09 0.11,0.203 0,0.367 -0.379,0.207 -1.114,-0.469 -0.402,-0.371 -0.8,-0.671 -0.89,-0.671 -0.106,0 -0.192,-0.258 -0.243,-0.77 -0.078,-0.723 -0.339,-2.051 -0.5,-2.504 -0.039,-0.113 -0.019,-0.207 0.047,-0.207 0.067,0 0.543,0.797 1.067,1.774 z"
+       style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
+       id="path3005" /><path
+       inkscape:connector-curvature="0"
+       d="m 102.07,140.099 c 3.485,0.359 6.973,1.328 7.16,1.988 0.04,0.129 -0.07,0.68 -0.238,1.223 -0.168,0.547 -0.304,1.007 -0.304,1.027 -0.004,0.113 -1.02,0 -1.465,-0.168 -0.821,-0.305 -6.805,-1.754 -8.246,-1.996 -3.098,-0.52 -8.868,-0.758 -11.778,-0.488 -1.929,0.183 -2.433,0.132 -1.254,-0.125 0.391,-0.082 1.254,-0.301 1.922,-0.485 1.75,-0.48 8.164,-1.125 10.988,-1.105 1.168,0.008 2.614,0.066 3.215,0.129 z"
+       style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
+       id="path3007" /><path
+       inkscape:connector-curvature="0"
+       d="m 134.566,175.65 c 0.036,0.058 0.067,0.14 0.067,0.179 0,0.09 -0.121,0.285 -0.176,0.285 -0.078,0 -0.211,-0.191 -0.211,-0.304 0,-0.067 0.039,-0.149 0.094,-0.192 0.125,-0.093 0.144,-0.093 0.226,0.032 z"
+       style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
+       id="path3009" /><path
+       inkscape:connector-curvature="0"
+       d="m 62.297,121.942 c -0.246,0.434 -0.992,0.598 -1.66,0.364 -1.578,-0.555 -2.672,0.957 -3.867,5.34 l -0.961,3.527 2.222,2.445 c 1.805,1.981 2.973,2.539 6.215,2.953 7.676,0.989 15.414,6.93 16.961,13.028 0.613,2.418 1.09,3.215 1.598,2.656 0.507,-0.563 0.297,-1.914 -0.7,-4.516 l -1.421,-3.718 3.082,-0.508 c 5.371,-0.891 13.664,-0.555 19.046,0.765 l 5.2,1.278 -0.438,2.57 c -0.262,1.527 -0.16,2.57 0.25,2.57 0.375,0 1.367,-3.324 2.199,-7.386 1.969,-9.582 6.493,-20.504 8.75,-21.129 1.817,-0.504 3,0.265 1.735,1.129 -0.449,0.304 -1.305,3.101 -1.906,6.207 -1.164,6.05 -0.95,11.804 0.691,18.527 0.508,2.086 1.125,5.199 1.375,6.922 0.379,2.641 0.664,3.074 1.801,2.746 0.957,-0.277 2.148,0.539 4.109,2.809 l 2.758,3.199 -2.512,1.488 c -2.273,1.344 -2.625,1.375 -3.687,0.313 -1.387,-1.383 -2.801,-0.313 -2.801,2.125 0,1.445 -0.055,1.437 -1.59,-0.153 -2.156,-2.234 -2.531,-2.09 -2.531,1.004 0,1.457 -0.16,2.653 -0.356,2.653 -0.195,0 -1.64,-0.895 -3.211,-1.989 -4.941,-3.441 -22.222,-5.125 -33.168,-3.23 -11.898,2.054 -16.507,1.551 -18.644,-2.047 -1.805,-3.039 -3.715,-2.289 -9.738,3.828 -8.957,9.102 -14.524,11.348 -22.66,9.148 -8.782,-2.375 -12.067,-5.785 -13,-13.503 -0.356,-2.965 -0.301,-3.114 0.808,-2.106 1.039,0.945 1.274,0.945 1.805,0 1.047,-1.867 4.273,-1.34 8.316,1.367 2.137,1.43 5.063,2.891 6.5,3.246 4.477,1.114 15.387,-1.945 22.406,-6.281 2.387,-1.476 2.575,-1.844 2.579,-5.051 0.003,-1.902 0.328,-4.734 0.718,-6.297 0.817,-3.238 -0.367,-6.996 -4.082,-12.949 -2.379,-3.816 -2.242,-5.508 0.887,-10.976 1.633,-2.856 2.07,-3.157 4.582,-3.157 1.75,0 2.617,0.293 2.34,0.789 z"
+       style="fill:#ff7f2a;fill-opacity:1;fill-rule:nonzero;stroke:none"
+       id="path3011" /><path
+       inkscape:connector-curvature="0"
+       d="m 45.77,128.079 c 0.875,0.711 2.382,1.696 3.347,2.188 1.051,0.535 1.848,1.125 1.985,1.468 0.328,0.832 0.679,1.418 2.125,3.516 1.644,2.387 4.66,8.961 4.644,10.129 -0.004,0.469 -0.148,1.578 -0.316,2.461 -0.282,1.473 -0.321,1.539 -0.461,0.781 -0.321,-1.715 -1.727,-4.367 -3.891,-7.344 -1.234,-1.691 -2.402,-3.441 -2.598,-3.882 -0.199,-0.442 -1.953,-2.551 -3.906,-4.688 -3.269,-3.582 -4.562,-5.215 -4.328,-5.473 0.051,-0.058 0.481,-0.183 0.949,-0.277 0.758,-0.156 1.032,-0.031 2.45,1.121 z"
+       style="fill:#ff7f2a;fill-opacity:1;fill-rule:nonzero;stroke:none"
+       id="path3013" /><path
+       inkscape:connector-curvature="0"
+       d="m 106.477,130.071 c 1.359,1.368 3.601,5.2 3.601,6.149 0,0.637 -0.672,4.195 -0.844,4.453 -0.019,0.035 -0.484,-0.129 -1.031,-0.363 -1.156,-0.504 -1.402,-1.008 -2.515,-5.192 -0.411,-1.543 -0.864,-2.965 -1.008,-3.156 -0.25,-0.332 -0.832,-0.312 -3.266,0.098 -0.43,0.074 -1.215,0.535 -1.746,1.027 -0.746,0.688 -1.129,0.863 -1.652,0.758 -0.969,-0.195 -1.289,-0.551 -1.289,-1.445 0,-0.668 0.156,-0.856 1.082,-1.293 1.968,-0.93 4.332,-1.625 6.066,-1.782 1.687,-0.152 1.727,-0.14 2.602,0.746 z"
+       style="fill:#ff7f2a;fill-opacity:1;fill-rule:nonzero;stroke:none"
+       id="path3015" /><path
+       inkscape:connector-curvature="0"
+       d="m 130.664,165.497 c 1.18,2.012 1.18,2.125 -0.019,3.344 -1.055,1.07 -1.063,1.094 -0.965,2.625 0.258,4.055 1.5,4.281 7.367,1.348 3.406,-1.707 7.426,-3.325 7.644,-3.082 0.063,0.066 -0.683,0.519 -1.652,1.007 -2.086,1.047 -2.039,1.008 -1.738,1.34 0.148,0.164 0.508,0.168 0.957,0.016 0.957,-0.324 5.281,-2.512 6.019,-3.047 0.489,-0.352 0.664,-0.363 1.016,-0.078 0.383,0.305 0.203,0.496 -1.684,1.793 -1.16,0.797 -2.808,1.945 -3.66,2.551 -1.16,0.82 -1.586,1.007 -1.683,0.734 -0.204,-0.594 -1.313,-1.051 -1.645,-0.684 -0.332,0.364 0.379,1.391 0.965,1.391 0.273,0 0.293,0.086 0.078,0.367 -0.148,0.203 -0.602,1.086 -1,1.969 -0.398,0.879 -0.93,1.805 -1.18,2.055 -0.437,0.437 -0.468,0.421 -0.718,-0.36 -0.297,-0.945 -0.743,-1.023 -2.129,-0.386 -1.246,0.574 -5.199,0.417 -6.344,-0.25 -1.121,-0.653 -2.453,-2.004 -2.883,-2.918 -0.441,-0.942 -0.508,-4.676 -0.113,-6.297 0.152,-0.618 0.73,-1.66 1.328,-2.395 0.586,-0.715 1.109,-1.539 1.164,-1.832 0.086,-0.433 0.246,-0.285 0.875,0.789 z m 3.957,9.168 c -0.918,0.324 -1.281,0.606 -1.383,1.055 -0.207,0.91 0.063,1.18 1.196,1.176 2.117,-0.004 3.808,-0.954 3.808,-2.141 0,-0.461 -0.164,-0.535 -1.187,-0.535 -0.653,0 -1.746,0.199 -2.434,0.445 z m 1.191,2.492 c -2.964,1.051 -3.015,1.61 -0.085,0.953 2.55,-0.574 2.757,-0.652 2.757,-1.074 0,-0.394 -0.464,-0.687 -0.851,-0.535 -0.133,0.055 -0.953,0.348 -1.821,0.656 z"
+       style="fill:#ff7f2a;fill-opacity:1;fill-rule:nonzero;stroke:none"
+       id="path3017" /><path
+       inkscape:connector-curvature="0"
+       d="m 127.504,166.388 c -0.992,1.25 -1.25,2.308 -1.336,5.554 -0.082,2.965 -0.047,3.297 0.469,4.262 0.64,1.203 2.742,2.899 4.187,3.379 1.172,0.387 4.246,0.387 5.828,-0.004 1.75,-0.433 2.078,0.117 0.953,1.594 -1.367,1.793 -4.406,2.727 -6.949,2.133 -1.449,-0.332 -1.75,-0.621 -0.914,-0.864 0.563,-0.16 0.645,-0.675 0.145,-0.886 -0.52,-0.219 -1.727,0.578 -3.325,2.195 -1.269,1.289 -3.847,3.324 -4.21,3.324 -0.622,0 0.796,-4.625 2.046,-6.695 0.782,-1.293 0.961,-2.41 0.383,-2.41 -0.191,0 -0.523,0.269 -0.73,0.597 l -0.383,0.602 -1.027,-0.605 c -0.879,-0.516 -4.5,-4.657 -5.106,-5.836 -0.105,-0.207 -0.16,-1.371 -0.121,-2.59 l 0.07,-2.211 1.387,1.437 c 0.774,0.797 1.535,1.375 1.719,1.297 0.187,-0.078 0.461,-0.953 0.633,-2.023 0.257,-1.594 0.8,-2.813 1.082,-2.426 0.043,0.059 0.429,0.68 0.855,1.379 0.43,0.699 0.899,1.273 1.039,1.273 0.145,0 0.91,-0.664 1.703,-1.472 1.348,-1.379 2.446,-2.067 1.602,-1.004 z m -1.617,12.621 c -0.426,0.469 -2.469,4.402 -2.832,5.453 -0.133,0.387 -0.024,0.469 0.617,0.469 0.59,0 1.14,-0.344 2.273,-1.418 0.821,-0.781 1.793,-1.563 2.16,-1.735 0.762,-0.363 0.899,-1.132 0.2,-1.132 -0.317,0 -0.555,-0.293 -0.743,-0.918 -0.246,-0.836 -0.511,-1.141 -1.035,-1.203 -0.101,-0.012 -0.386,0.207 -0.64,0.484 z"
+       style="fill:#ff0000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+       id="path3019" /><path
+       inkscape:connector-curvature="0"
+       d="m 134.988,184.048 c 0.051,0.137 -0.34,1.414 -0.929,3.062 -0.707,1.973 -0.938,2.454 -1.176,2.454 -0.137,0 -0.547,-0.547 -0.754,-1 -0.231,-0.504 -0.336,-0.993 -0.43,-1.981 -0.086,-0.926 -0.211,-1.719 -0.32,-2.043 l -0.059,-0.168 1.254,0 c 1.281,-0.004 1.555,-0.047 2.149,-0.328 0.211,-0.102 0.23,-0.102 0.265,0 l 0,0.004 z"
+       style="fill:#ff0000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+       id="path3021" /><path
+       inkscape:connector-curvature="0"
+       d="m 15.098,148.626 c 0.933,1.375 5.211,8.402 5.531,9.094 0.309,0.66 0.379,1.574 0.125,1.574 -0.086,0 -0.625,-0.309 -1.192,-0.68 -0.57,-0.375 -1.167,-0.652 -1.335,-0.617 -0.192,0.043 -0.387,0.379 -0.524,0.918 -0.371,1.418 -0.359,1.402 -0.68,1.11 -0.156,-0.145 -0.386,-0.536 -0.515,-0.875 -0.129,-0.336 -0.34,-0.614 -0.469,-0.614 -0.129,0 -0.547,0.352 -0.93,0.785 l -0.695,0.789 -0.113,-0.679 c -0.184,-1.071 -0.176,-7.992 0.008,-9.949 l 0.168,-1.766 0.621,0.91 z"
+       style="fill:#ffccaa;fill-opacity:1;fill-rule:nonzero;stroke:none"
+       id="path3023" /><path
+       inkscape:connector-curvature="0"
+       d="m 102.324,140.181 c 3.735,0.437 6.684,1.281 6.797,1.949 0.098,0.539 -0.336,2.035 -0.621,2.152 -0.137,0.063 -1.266,-0.156 -2.504,-0.484 -7.019,-1.84 -9.473,-2.184 -15.859,-2.199 -2.293,-0.004 -4.106,-0.032 -4.035,-0.055 3.429,-1.113 12.113,-1.84 16.222,-1.363 z"
+       style="fill:#ffccaa;fill-opacity:1;fill-rule:nonzero;stroke:none"
+       id="path3025" /><path
+       inkscape:connector-curvature="0"
+       d="m 122.684,154.232 c 0.586,1.105 1.14,2.062 1.234,2.128 0.25,0.172 0.203,0.528 -0.055,0.415 -0.125,-0.051 -0.629,-0.422 -1.117,-0.825 -0.726,-0.593 -0.891,-0.832 -0.891,-1.297 -0.003,-0.312 -0.085,-0.894 -0.183,-1.289 -0.352,-1.39 -0.047,-1.129 1.012,0.868 z"
+       style="fill:#ffccaa;fill-opacity:1;fill-rule:nonzero;stroke:none"
+       id="path3027" /><path
+       inkscape:connector-curvature="0"
+       d="m 148.68,166.294 c 0.707,0.617 0.617,1.086 -0.258,1.332 -0.402,0.113 -1.656,0.496 -2.793,0.848 -1.133,0.351 -2.867,0.863 -3.856,1.14 -1.804,0.5 -3.863,1.434 -4.8,2.168 -0.653,0.512 -2.809,1.516 -3.793,1.762 -0.43,0.109 -1.059,0.141 -1.403,0.07 -0.965,-0.199 -1.293,-0.629 -1.41,-1.824 l -0.097,-1.043 1.277,-1.23 c 1.672,-1.61 2.586,-2.075 4.082,-2.078 0.633,-0.004 1.68,0.097 2.324,0.218 1.055,0.2 1.309,0.18 2.621,-0.211 0.797,-0.238 1.864,-0.601 2.364,-0.808 1.07,-0.442 1.3,-0.379 0.453,0.125 -0.649,0.387 -0.789,0.863 -0.254,0.863 0.187,0 1.133,-0.351 2.097,-0.781 2.239,-0.996 2.825,-1.09 3.446,-0.551 z"
+       style="fill:#ffccaa;fill-opacity:1;fill-rule:nonzero;stroke:none"
+       id="path3029" /><path
+       inkscape:connector-curvature="0"
+       d="m 149.441,165.341 c 0.664,0.383 1.2,1.219 0.954,1.488 -0.141,0.16 -0.344,0.02 -0.473,-0.328 -0.067,-0.176 -0.34,-0.523 -0.606,-0.773 -0.687,-0.649 -0.632,-0.821 0.125,-0.387 z"
+       style="fill:#ffccaa;fill-opacity:1;fill-rule:nonzero;stroke:none"
+       id="path3031" /><path
+       inkscape:connector-curvature="0"
+       d="m 126.258,180.583 c 0,0.317 0.043,0.453 0.18,0.559 0.246,0.187 0.167,0.324 -0.715,1.261 -0.758,0.801 -1.153,1.133 -1.235,1.043 -0.027,-0.027 0.231,-0.621 0.574,-1.312 0.762,-1.543 1.004,-1.973 1.114,-1.973 0.047,0 0.082,0.192 0.082,0.422 z"
+       style="fill:#550000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+       id="path3033" /><path
+       inkscape:connector-curvature="0"
+       d="m 135.855,175.353 c 0.118,0.129 0.141,0.547 0.032,0.547 -0.367,0 -0.774,-0.36 -0.653,-0.575 0.071,-0.125 0.5,-0.105 0.621,0.028 z"
+       style="fill:#808000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+       id="path3035" /><path
+       inkscape:connector-curvature="0"
+       d="m 150.289,167.767 c 0.387,0.172 0.453,0.281 0.293,0.476 -0.289,0.356 -0.977,0.149 -0.977,-0.293 0,-0.273 0.297,-0.351 0.684,-0.183 z"
+       style="fill:#1a1a1a;fill-opacity:1;fill-rule:nonzero;stroke:none"
+       id="path3037" /><path
+       inkscape:connector-curvature="0"
+       d="m 127.293,166.345 c 0,0.055 -0.188,0.472 -0.418,0.93 -0.547,1.082 -0.781,2.757 -0.777,5.562 0.004,1.797 0.066,2.434 0.316,3.039 0.414,1.008 2.004,2.547 3.43,3.328 1.117,0.617 1.187,0.629 3.457,0.633 1.277,0.004 2.879,-0.066 3.562,-0.16 1.215,-0.16 1.246,-0.156 1.246,0.25 0,0.68 -1.652,2.348 -2.839,2.859 -0.848,0.371 -1.344,0.446 -2.911,0.453 -1.214,0.004 -2.074,-0.086 -2.406,-0.25 l -0.512,-0.25 0.395,-0.203 c 0.512,-0.261 0.445,-0.965 -0.102,-1.051 -0.535,-0.082 -1.578,0.625 -3.308,2.243 -1.887,1.761 -3.992,3.324 -4.082,3.027 -0.039,-0.125 0.07,-0.793 0.242,-1.488 0.254,-1.032 0.328,-1.172 0.414,-0.785 0.109,0.507 0.477,0.671 1.109,0.496 0.215,-0.059 1.145,-0.75 2.071,-1.532 0.925,-0.785 1.73,-1.425 1.793,-1.425 0.222,0 0.867,-0.778 0.867,-1.043 0,-0.153 -0.188,-0.325 -0.414,-0.387 -0.242,-0.07 -0.504,-0.352 -0.625,-0.676 -0.313,-0.824 -0.836,-1.492 -1.176,-1.492 -0.48,0 -1.145,0.918 -2.336,3.219 -1.406,2.718 -1.453,2.297 -0.078,-0.664 0.57,-1.231 1.016,-2.411 0.988,-2.629 -0.078,-0.61 -0.566,-0.574 -1.125,0.086 l -0.508,0.597 -0.754,-0.519 c -0.851,-0.586 -3.492,-3.457 -4.582,-4.981 l -0.722,-1.011 0,-4.352 1.062,1.043 c 1.223,1.199 1.731,1.543 2.082,1.395 0.137,-0.059 0.379,-0.715 0.551,-1.493 0.363,-1.664 0.766,-2.847 0.942,-2.769 0.07,0.031 0.503,0.601 0.964,1.273 0.461,0.668 0.926,1.25 1.039,1.289 0.168,0.059 1.024,-0.66 2.844,-2.379 0.168,-0.156 0.301,-0.238 0.301,-0.183 z"
+       style="fill:#aa0000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+       id="path3039" /><path
+       inkscape:connector-curvature="0"
+       d="m 134.777,184.579 c -0.215,0.946 -1.484,4.348 -1.718,4.61 -0.414,0.461 -0.954,-0.711 -1.282,-2.797 l -0.3,-1.871 1.386,-0.082 c 0.762,-0.043 1.532,-0.153 1.711,-0.239 0.289,-0.14 0.313,-0.097 0.203,0.379 z"
+       style="fill:#aa0000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+       id="path3041" /><g
+       id="g3043"
+       transform="matrix(1,0,0,-1,0,202.67685)"><path
+         inkscape:connector-curvature="0"
+         d="m 130.758,30.75 0.637,-0.352 0.085,0.442"
+         style="fill:none;stroke:#000000;stroke-width:0.0004075;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
+         id="path3045" /></g><g
+       id="g3047"><g
+         id="g3049" /><g
+         id="g3063"
+         mask="url(#mask3055)"><g
+           id="g3065" /><g
+           id="g3075"><g
+             clip-path="url(#clipPath3067)"
+             id="g3077"><g
+               transform="translate(0,-0.323151)"
+               id="g3079"><g
+                 id="g3081" /><g
+                 id="g3083"><g
+                   clip-path="url(#clipPath3071)"
+                   id="g3085"><g
+                     id="g3087"><g
+                       transform="matrix(1,0,0,-1,0,203)"
+                       id="g3089"><path
+                         inkscape:connector-curvature="0"
+                         d="m 9.633,84.582 0,-73.137 105.664,0 0,29.7 37.172,0 0,43.839 L 9.633,84.582 z"
+                         style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#ffffff;stroke-width:0.80000001;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
+                         id="path3091" /></g></g></g></g></g></g></g></g></g><g
+       id="g3101"
+       transform="matrix(1,0,0,-1,0,202.67685)"><path
+         inkscape:connector-curvature="0"
+         d="m 16.867,89.785 123.68,0 0,99.598 -123.68,0 0,-99.598 z"
+         style="fill:#00ffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:3.830688;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
+         id="path3103" /></g><text
+       transform="scale(1,-1)"
+       id="text3105"
+       x="51.989697"
+       y="-1.495319"><tspan
+         style="font-size:9.60000038px;font-variant:normal;font-weight:normal;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:DejaVu Serif;-inkscape-font-specification:DejaVuSerif"
+         x="51.989697 59.679298 62.741695 67.666496 73.810501 76.901695 82.623299 88.037697 91.080902 94.824898 101.4009"
+         y="-1.495319"
+         sodipodi:role="line"
+         id="tspan3107">Display (S)</tspan></text>
+<g
+       id="g3109"
+       transform="matrix(1,0,0,-1,0,202.67685)"><path
+         inkscape:connector-curvature="0"
+         d="M 115.699,40.539 15.492,190.043"
+         style="fill:none;stroke:#000000;stroke-width:0.80000001;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:0.8, 0.8;stroke-dashoffset:0"
+         id="path3111" /></g><path
+       style="fill:#ffffff;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;opacity:0.68181818"
+       d="m 143.03301,15.425129 -126.205597,0 0,88.811351 146.305007,0 0,-53.286812 -19.16455,0 z"
+       id="path3544"
+       inkscape:connector-curvature="0"
+       transform="matrix(0.8,0,0,-0.8,0,202.67685)" /><text
+       y="-194.15356"
+       x="20.51808"
+       transform="scale(1,-1)"
+       id="text3093"><tspan
+         style="font-size:9.60000038px;font-variant:normal;font-weight:normal;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:DejaVu Serif;-inkscape-font-specification:DejaVuSerif"
+         x="20.51808 28.20768 33.986881 39.362881 45.54528 54.64608 60.319683 66.530876"
+         y="-194.15356"
+         sodipodi:role="line"
+         id="tspan3095">Document</tspan><tspan
+         style="font-size:9.60000038px;font-variant:normal;font-weight:normal;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:DejaVu Serif;-inkscape-font-specification:DejaVuSerif"
+         x="37.861835 41.605835 49.295433"
+         y="-182.15356"
+         sodipodi:role="line"
+         id="tspan3097">(D)</tspan><tspan
+         style="font-size:9.60000038px;font-variant:normal;font-weight:normal;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:DejaVu Serif;-inkscape-font-specification:DejaVuSerif"
+         x="113.01389 119.78189 122.84429 128.51788 136.72589 139.76909 143.51309 150.44429"
+         y="-193.88733"
+         sodipodi:role="line"
+         id="tspan3099">View (V)</tspan></text>
+<g
+       id="g3113"><g
+         clip-path="url(#clipPath3117)"
+         id="g3115"><g
+           transform="translate(0,-0.323151)"
+           id="g3121"><g
+             id="g3123" /><g
+             id="g3129"><g
+               id="g3131"
+               clip-path="url(#clipPath3125)"><g
+                 id="g3133"><path
+                   id="path3135"
+                   style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+                   d="m 76.555,112.766 c 0.086,-0.016 0.179,-0.051 0.25,-0.082 0.617,-0.258 1.039,-1.364 1.039,-2.645 0,-2.023 0.668,-4.074 4.082,-12.641 0.668,-1.671 1.789,-4.636 2.508,-6.597 0.73,-1.996 1.98,-3.883 2.828,-4.309 0.836,-0.418 2.742,-1.996 4.226,-3.476 1.485,-1.477 2.985,-2.684 3.367,-2.684 0.754,0 7.055,-8.148 7.055,-9.129 0,-0.332 1.074,-2.398 2.399,-4.621 1.324,-2.219 2.312,-4.394 2.183,-4.82 -0.195,-0.649 6.465,-5.688 7.524,-5.688 0.191,0 1.336,-0.797 2.543,-1.777 1.203,-0.981 4.066,-2.617 6.336,-3.594 2.269,-0.98 4.589,-2.129 5.156,-2.57 0.57,-0.442 2.117,-1.453 3.441,-2.25 2.707,-1.633 6.629,-6.113 7.66,-8.731 0.739,-1.867 0.645,-2.238 -0.75,-3.199 -0.961,-0.664 -1.218,-1.535 -1.004,-3.242 0.325,-2.547 -0.816,-4.402 -4.117,-6.754 -2.636,-1.875 -8.441,-1.16 -11.996,1.5 -1.746,1.309 -3.101,1.781 -4.371,1.504 -1.723,-0.383 -11.98,2.09 -16.867,4.066 -1.625,0.661 -3.723,0.696 -7.985,0.121 C 86.711,30.426 79.32,30.922 76.27,32.215 75.156,32.684 75.129,32.629 66.598,19.613 64.266,16.047 61.246,11.781 59.867,10.129 49.117,-2.719 44.531,-9.496 38.809,-21.195 c -1.352,-2.762 -2.825,-5.539 -3.293,-6.164 -1.047,-1.387 -4.43,-12.637 -4.442,-14.774 -0.012,-0.847 -0.449,-2.914 -0.969,-4.586 -0.519,-1.668 -1.152,-6.601 -1.394,-10.98 -0.246,-4.379 -0.777,-10.328 -1.184,-13.196 -0.769,-5.457 -0.73,-5.699 2.219,-21.332 0.789,-4.168 1.492,-7.976 1.578,-8.453 0.086,-0.472 0.488,-1.332 0.895,-1.898 0.406,-0.563 1.031,-2.031 1.398,-3.277 0.551,-1.891 1.125,-2.372 3.363,-2.727 1.485,-0.234 3.903,-1.328 5.375,-2.449 1.469,-1.121 2.875,-2.055 3.114,-2.055 0.238,0 1.187,-1.531 2.113,-3.398 1.949,-3.938 1.414,-5.258 -2.254,-5.45 -1.211,-0.058 -4.375,-0.464 -7.019,-0.91 -15.829,-2.656 -21.157,1.219 -26.11,18.883 -0.64,2.297 -2.48,6.707 -4.082,9.84 -2.609,5.086 -3.871,8.23 -6.625,16.512 -0.449,1.347 -1.094,2.246 -1.433,2.015 -0.34,-0.238 -0.438,-0.75 -0.215,-1.148 0.222,-0.391 -0.774,-2.383 -2.219,-4.422 -1.445,-2.039 -4.07,-6.262 -5.84,-9.402 -1.765,-3.141 -4.023,-6.317 -5.012,-7.032 -2.039,-1.472 -9.058,-1.687 -11.316,-0.355 -0.746,0.437 -2.363,0.789 -3.617,0.789 -3.356,0 -19.235,6.012 -20.949,7.941 -2.145,2.411 -2.536,4.575 -1.329,7.149 1.711,3.648 4.911,5.683 9.278,5.886 3.601,0.172 4,-0.015 6.59,-2.765 3.031,-3.219 7.179,-4.809 10.527,-4.07 2.648,0.585 4.207,3.636 6.231,12.246 2.433,10.343 4.097,9.316 -15.219,9.207 -9.172,-0.055 -18.84,0.101 -21.489,0.316 -10.918,0.887 -15.019,1.316 -15.578,1.699 -0.324,0.219 -2.738,0.543 -5.371,0.711 -2.949,0.184 -5.824,0.883 -7.484,1.817 -1.481,0.832 -2.805,1.367 -2.973,1.183 -0.168,-0.183 -2.855,0.879 -5.98,2.332 -3.125,1.453 -6.145,2.649 -6.696,2.649 -0.554,0 -2.21,0.648 -3.656,1.461 l -2.613,1.461 -2.469,-2.489 c -3.996,-4.039 -9.5,-8.41 -13.469,-10.746 -2.031,-1.195 -4.125,-2.961 -4.691,-3.91 -0.609,-1.027 -1.738,-1.738 -2.754,-1.738 -0.941,0 -3.441,-1.184 -5.59,-2.649 -4.883,-3.324 -11.047,-4.855 -21.523,-5.332 -7.024,-0.32 -8.586,-0.621 -12.391,-2.566 -4.066,-2.078 -9.488,-6.863 -9.488,-8.336 0,-0.355 -0.461,-1.047 -1.004,-1.543 -1.227,-1.117 -2.043,-4.957 -1.324,-6.242 0.293,-0.516 0.566,-1.5 0.609,-2.133 0.149,-2.129 2.578,-8.336 3.258,-8.336 0.371,0 0.519,-0.953 0.324,-2.094 -0.449,-2.574 0.922,-5.636 3.043,-6.793 0.883,-0.48 3.629,-1.035 6.086,-1.187 2.461,-0.145 5.383,-0.77 6.52,-1.379 1.902,-1.02 2.05,-1.375 1.933,-4.742 -0.07,-2.004 -0.582,-4.426 -1.144,-5.371 -0.993,-1.664 -1.383,-1.703 -11.711,-1.739 -7.262,-0.027 -10.891,0.235 -11.317,0.828 -0.347,0.481 -1.765,3.243 -3.187,6.165 -1.426,2.921 -3.117,6 -3.762,6.832 -1.805,2.336 -5.832,10.031 -8.308,15.921 -1.227,2.911 -2.344,5.446 -2.473,5.61 -0.125,0.164 -2.141,-0.75 -4.512,-2.016 -2.367,-1.265 -5.406,-2.863 -6.73,-3.554 -1.325,-0.684 -4.25,-3.11 -6.52,-5.415 -3.613,-3.664 -4.387,-4.125 -6.195,-3.71 -1.133,0.257 -3.367,0.648 -4.942,0.867 -3.566,0.5 -6.191,3.191 -5.156,5.293 0.379,0.773 2.426,3.246 4.547,5.492 2.527,2.676 3.742,4.488 3.512,5.293 -0.356,1.238 4.242,5.617 8.449,8.019 1.043,0.602 3.602,3.379 5.66,6.164 2.059,2.789 4.559,6.118 5.551,7.426 0.988,1.313 2.891,4.348 4.262,6.719 1.367,2.371 2.836,4.516 3.222,4.777 0.387,0.266 1.75,2.317 3.043,4.543 1.293,2.231 3.739,5.664 5.446,7.625 3.418,3.938 6.273,9.891 7.484,15.684 0.434,2.078 1.148,3.93 1.574,4.109 0.559,0.235 0.457,1.758 -0.359,5.41 -1.731,7.774 -0.957,20.664 1.254,20.664 1.058,0 1.414,-3.007 0.644,-5.453 -1.093,-3.461 -0.152,-14.566 1.793,-21.136 2.235,-7.551 3.379,-14.719 2.793,-17.657 -0.437,-2.191 -4.308,-11.746 -5.121,-12.64 -0.187,-0.211 -1.82,-3.715 -3.617,-7.785 -1.797,-4.067 -4.297,-8.668 -5.551,-10.231 -1.258,-1.566 -3.441,-4.555 -4.871,-6.637 -2.566,-3.746 -2.59,-3.867 -2.293,-9.48 0.289,-5.453 2.785,-13.535 4.551,-14.738 0.359,-0.243 1.312,-1.899 2.148,-3.672 0.836,-1.774 2.442,-4.707 3.543,-6.52 1.106,-1.808 2.621,-4.59 3.367,-6.203 0.747,-1.609 1.789,-3.219 2.329,-3.555 1.066,-0.664 18.589,-0.117 19.23,0.594 0.215,0.246 0.57,1.426 0.789,2.649 0.34,1.882 0.09,2.425 -1.648,3.554 -2.532,1.641 -5.02,1.703 -7.735,0.157 -1.894,-1.079 -2.258,-1.11 -3.797,0 -0.929,0.664 -1.511,1.519 -1.324,1.859 0.442,0.789 -1.918,5.902 -3.687,7.976 -0.864,1.012 -1.242,2.2 -1.004,3.204 0.219,0.925 -0.387,3.402 -1.469,5.925 -2.34,5.454 -2.059,10.004 0.859,13.274 1.043,1.164 2.661,3.234 3.582,4.582 0.918,1.348 3.239,3.59 5.157,4.937 3.922,2.758 8.152,3.598 17.511,3.516 9.586,-0.086 17.227,2.746 23.672,8.73 1.461,1.36 3.653,2.68 4.836,2.961 1.184,0.282 3.508,1.395 5.156,2.454 4.129,2.648 13.813,11.167 15.973,14.062 3.145,4.215 6.078,11.988 7.305,19.277 0.945,5.618 1.418,6.993 2.363,6.993 1.574,0 2.266,-1.317 1.324,-2.567 -0.843,-1.129 -2.441,-6.875 -3.148,-11.418 -0.496,-3.16 -3.973,-11.359 -5.16,-12.168 -2.629,-1.793 2.699,-4.344 9.636,-4.621 2.836,-0.113 6.063,-0.609 7.196,-1.105 2.719,-1.188 10.601,-2.098 10.851,-1.266 0.11,0.359 1.016,0.273 2.043,-0.156 2.176,-0.914 21.762,-0.203 22.953,0.828 0.422,0.363 2.575,0.605 4.801,0.555 2.227,-0.055 6.067,0.453 8.524,1.105 2.457,0.652 8.949,2.223 14.433,3.516 5.485,1.289 10.516,2.679 11.172,3.082 0.656,0.398 1.668,0.711 2.258,0.711 0.855,0 0.992,0.566 0.644,2.843 -0.242,1.563 -0.859,3.883 -1.363,5.137 -0.5,1.25 -0.984,3.629 -1.109,5.293 -0.18,2.352 0,3.086 0.894,3.277 0.899,0.192 1.27,-0.546 1.649,-3.398 0.269,-2.004 0.793,-4.523 1.144,-5.57 0.953,-2.801 1.981,-8.438 1.934,-10.508 -0.024,-0.992 0.547,-2.887 1.254,-4.188 0.797,-1.461 1.472,-4.609 1.758,-8.254 0.25,-3.25 1.222,-8.371 2.148,-11.378 0.926,-3.008 1.68,-6.223 1.68,-7.11 0.004,-0.894 0.472,-2.012 1.039,-2.531 0.57,-0.516 1.039,-1.938 1.039,-3.117 0,-2.668 0.933,-5.098 4.262,-11.024 1.433,-2.539 2.613,-4.933 2.613,-5.332 0,-0.828 2.445,-6.902 3.476,-8.613 0.375,-0.629 0.875,-1.75 1.11,-2.527 1.211,-4.039 4.207,-9.297 5.73,-10.075 0.946,-0.484 2.559,-1.3 3.582,-1.816 2.45,-1.238 13.539,-0.551 14.574,0.906 0.403,0.559 1.184,0.989 1.719,0.989 0.535,0 1.098,0.425 1.254,0.949 0.301,1.004 -1.328,1.34 -2.148,0.433 -0.668,-0.734 -5.91,-0.843 -5.91,-0.117 0,0.863 2.453,2.172 4.082,2.172 1.683,0 1.851,1.68 0.324,3.082 -0.906,0.824 -1.473,0.774 -3.367,-0.355 -1.254,-0.743 -2.821,-1.254 -3.512,-1.106 -1.379,0.289 -2.465,3.996 -2.363,8.059 0.035,1.355 -0.282,3.129 -0.68,3.949 -0.992,2.047 -4.867,23.199 -4.941,26.941 -0.09,4.711 2.437,27.512 3.546,31.883 0.317,1.25 1.059,4.145 1.645,6.438 0.59,2.293 1.406,5.519 1.828,7.191 0.418,1.668 1.031,3.707 1.359,4.543 0.954,2.406 2.938,17.063 2.903,21.449 -0.024,2.957 0.211,3.992 0.929,3.992 0.579,0 0.969,-0.765 0.969,-1.859 0,-2.269 0.977,-3.055 2.219,-1.777 1.105,1.133 2.09,1.5 5.48,1.937 2.098,0.27 3.207,1.184 6.52,5.332 2.199,2.754 4.902,5.848 5.98,6.914 2.04,2.012 8.399,11.102 11.493,16.395 1.875,3.207 2.921,7.187 1.898,7.187 -0.535,0 -2.891,2.184 -6.266,5.809 -0.714,0.77 -0.937,1.574 -0.574,1.977 0.094,0.101 0.18,0.164 0.289,0.234 -0.55,3.453 0.18,11.805 2.219,13.195 4.129,2.813 9.398,1.531 20.27,-4.898 7.277,-4.301 15.156,-7.75 22.597,-9.875 2.219,-0.637 4.93,-1.668 6.016,-2.293 2.199,-1.262 4.406,-1.496 4.406,-0.473 0,0.367 -1.027,1.078 -2.258,1.578 -1.226,0.504 -2.691,1.239 -3.258,1.621 -0.566,0.383 -1.812,1.039 -2.757,1.461 -0.946,0.422 -2.914,1.465 -4.368,2.293 -1.453,0.828 -3.05,1.5 -3.582,1.5 -0.531,0 -0.968,0.332 -0.968,0.75 0,1.082 2.515,0.953 5.05,-0.277 1.192,-0.574 3.395,-1.652 4.907,-2.367 1.511,-0.719 4.504,-2.305 6.66,-3.516 2.16,-1.211 4.305,-2.176 4.766,-2.176 0.457,0 1.421,-0.57 2.113,-1.261 0.676,-0.676 1.496,-1.641 2.109,-2.528 0.317,0.696 0.957,1.36 1.863,1.739 1.137,0.468 2.079,1.086 2.079,1.339 0,0.629 -6.473,5.457 -10.313,7.704 -1.703,0.996 -4.496,2.812 -6.195,4.031 -1.703,1.219 -3.61,2.578 -4.227,3.004 -5.527,3.808 -8.156,6.246 -8.203,7.582 -0.078,2.293 -6.34,13.672 -7.519,13.672 -0.68,0 -1.133,-1.036 -1.36,-3.043 C 94.621,68.738 93.461,68.27 89.77,70.336 86.797,72 85.359,72.234 77.234,72.191 69.27,72.148 66.375,71.055 61.082,66.148 55.68,61.137 55.02,59.344 54.926,49.359 c -0.098,-10.191 1.262,-14.617 6.121,-19.91 3.98,-4.34 4.504,-5.637 2.437,-6.363 -1.523,-0.531 -11.82,5.879 -14.468,9.008 -2.047,2.422 -3.192,2.504 -4.227,0.277 -1.285,-2.766 -5.641,-7.387 -6.949,-7.387 -0.848,0 -1.426,0.93 -1.934,3.2 -1.234,5.515 -3.078,11.941 -3.437,11.929 -0.418,-0.011 -7.559,-7.562 -8.844,-9.363 -0.508,-0.707 -1.414,-1.199 -2.043,-1.066 -0.988,0.214 -1.144,1.507 -1.144,9.718 0,5.664 -0.27,9.551 -0.68,9.68 -0.379,0.117 -2.699,-1.348 -5.16,-3.238 C 6.27,39.438 3.234,37.492 0.133,36.402 -1.57,35.801 -3.555,34.859 -4.309,34.348 -6.117,33.125 -12.941,31.82 -17.344,31.82 c -1.945,0 -4.152,-0.496 -4.945,-1.109 -0.781,-0.602 -2,-1.094 -2.719,-1.066 -0.722,0.027 -6.437,-0.473 -12.68,-1.106 -6.238,-0.633 -11.785,-1.176 -12.355,-1.223 -1.918,-0.16 -27.168,-0.992 -28.898,-0.949 -4.59,0.113 -16.774,1.637 -21.954,2.727 -3.609,0.758 -6.046,0.953 -6.445,0.511 -0.402,-0.441 -1.312,-0.449 -2.437,0.04 -2.813,1.23 -8.774,2.91 -15.684,4.386 -5.434,1.16 -7.809,1.27 -16.797,0.672 -5.836,-0.391 -11.258,-1.156 -12.246,-1.699 -0.98,-0.539 -3.246,-1.406 -5.016,-1.938 -3.656,-1.089 -9.359,-6.781 -11.601,-11.574 -0.859,-1.832 -1.844,-2.844 -2.723,-2.844 -0.75,0 -1.363,-0.406 -1.363,-0.867 0,-1.058 -2.977,-0.297 -4.617,1.184 -0.656,0.59 -2.547,2.308 -4.192,3.793 -1.64,1.484 -3.277,2.683 -3.617,2.683 -0.34,0 -5.25,5.137 -10.922,11.418 -9.925,10.989 -13.418,14.387 -19.05,18.489 -1.438,1.047 -3.899,2.898 -5.446,4.109 -7.769,6.082 -19.5,10.406 -31.441,11.574 -4.613,0.453 -9.59,0.758 -11.102,0.711 -3.468,-0.109 -14.332,-2.867 -16.761,-4.265 -1.008,-0.579 -2.43,-1.063 -3.188,-1.067 -1.434,-0.008 -8.437,-2.73 -9.633,-3.754 -0.379,-0.32 -1.531,-0.801 -2.543,-1.066 -2.593,-0.684 -12.617,-7.586 -14.683,-10.113 -2.582,-3.18 -3.289,-4.938 -7.055,-17.301 -4.754,-15.598 -4.934,-17.223 -2.148,-21.848 l 2.218,-3.676 2.008,3.516 c 2.652,4.719 4.027,4.398 5.336,-1.301 1.191,-5.187 1.91,-5.398 6.121,-1.699 1.664,1.457 3.246,2.644 3.512,2.644 1.195,0 2.699,-2.82 2.328,-4.382 -0.504,-2.129 0.344,-2.133 3.652,0 3.293,2.121 3.985,2.734 6.266,5.449 4.008,4.769 21.559,15.605 25.25,15.605 0.625,0 3.75,0.571 6.945,1.266 5.379,1.164 6.184,1.172 10.781,0.039 8.29,-2.047 15.903,-3.555 17.836,-3.555 1.004,0 2.7,-0.425 3.758,-0.91 1.067,-0.48 2.477,-0.961 3.153,-1.105 0.675,-0.145 2.468,-0.973 3.976,-1.817 1.504,-0.847 5.738,-2.679 9.418,-4.07 3.68,-1.391 8.242,-3.242 10.133,-4.109 1.891,-0.864 5.289,-2.336 7.559,-3.278 3.992,-1.656 9.898,-5.754 9.953,-6.914 0.054,-1.121 -1.828,-0.539 -4.047,1.266 -1.239,1.008 -5.395,3.113 -9.239,4.66 -3.843,1.547 -7.285,3.051 -7.664,3.359 -0.378,0.309 -3.339,1.489 -6.554,2.645 -3.211,1.16 -7.719,3.117 -10.028,4.309 -2.394,1.238 -5.359,2.132 -6.91,2.132 -1.496,0 -3.008,0.328 -3.367,0.711 -0.359,0.379 -3.133,1.114 -6.16,1.617 -3.024,0.508 -7.195,1.403 -9.274,2.016 -2.082,0.617 -4.57,1.137 -5.515,1.145 -3.68,0.039 -14,-1.657 -14.684,-2.407 -0.394,-0.437 -1.508,-0.793 -2.468,-0.793 -1.735,0 -7.321,-2.832 -12.825,-6.476 -1.554,-1.031 -5.242,-4.238 -8.199,-7.153 -2.957,-2.91 -6.434,-5.699 -7.699,-6.16 -1.844,-0.672 -2.203,-1.105 -1.863,-2.293 0.347,-1.207 -0.118,-1.738 -2.399,-2.726 -1.547,-0.668 -2.793,-1.543 -2.793,-1.934 0,-0.394 -0.648,-1.617 -1.433,-2.726 -0.789,-1.11 -2.415,-3.676 -3.618,-5.731 -1.203,-2.054 -2.48,-4.281 -2.863,-4.937 -0.391,-0.657 -1.578,-2.746 -2.652,-4.621 -1.074,-1.879 -3.399,-5.809 -5.156,-8.731 -1.747,-2.922 -3.524,-6.004 -3.938,-6.836 -0.414,-0.828 -1.539,-1.609 -2.508,-1.738 -2.269,-0.301 -2.984,1.926 -1.793,5.57 0.68,2.074 0.692,3.383 0.074,5.887 -1.175,4.777 -0.617,37.473 0.754,43.418 2.418,10.531 4.614,18.742 5.586,20.816 0.571,1.223 1.075,2.582 1.075,3.004 0,1.871 3,9.391 4.582,11.457 1.558,2.039 8.382,7.543 9.347,7.543 0.211,0 3.711,1.801 7.809,3.953 6.73,3.535 9.894,4.739 17.437,6.676 13.621,3.5 16.821,3.738 26.825,2.016 8.238,-1.422 16.406,-3.36 18.195,-4.27 10.777,-5.476 13.961,-7.246 15.004,-8.453 0.679,-0.785 3.941,-3.633 7.234,-6.32 3.289,-2.684 9.68,-9.028 14.219,-14.102 8.824,-9.871 18.281,-18.543 21.019,-19.281 1.364,-0.367 1.879,-0.008 2.829,1.859 0.644,1.262 1.648,2.289 2.222,2.289 0.57,0 1.418,0.762 1.86,1.7 0.91,1.925 5.449,6.363 6.234,6.086 0.281,-0.102 1.984,0.718 3.797,1.816 7.465,4.531 28.777,5.926 39.75,2.605 1.511,-0.457 4.738,-1.035 7.199,-1.261 2.457,-0.231 5.418,-0.696 6.551,-1.067 8.519,-2.785 12.851,-3.355 27.828,-3.636 15.289,-0.286 42.164,0.878 49.062,2.132 1.957,0.36 7.11,1.215 11.461,1.899 4.348,0.68 8.438,1.551 9.094,1.933 0.656,0.383 1.813,0.711 2.578,0.711 0.77,0 1.961,0.282 2.617,0.633 8.395,4.496 12.375,6.926 14.469,8.891 1.379,1.293 3.555,2.969 4.797,3.672 1.242,0.703 5.363,4.562 9.168,8.613 3.805,4.047 7.18,7.484 7.52,7.625 0.343,0.137 0.644,0.68 0.644,1.223 0,1.371 5.164,6.429 7.844,7.664 3.972,1.832 4.012,2.375 0.644,9.996 -2.308,5.226 -3.297,8.57 -3.937,13.429 -0.863,6.508 -0.574,8.02 1.43,8.02 0.488,0 1.246,-0.707 1.718,-1.539 0.473,-0.836 1.137,-1.5 1.469,-1.5 1.77,0 9.625,-6.27 13.645,-10.906 4.371,-5.035 4.675,-5.266 5.875,-4.067 1.265,1.262 4.214,2.242 7.554,2.805 0.051,1.621 0.387,3.992 0.574,5.531 0.805,6.524 1.829,10.328 3.118,11.613 0.722,0.727 1.324,1.715 1.324,2.211 0,1.274 1.988,3.129 3.258,3.239 0.09,0.008 0.168,0.015 0.25,0 l 0,0.004 z m -1.145,-4.504 c -0.672,0.078 -1.305,-0.965 -2.293,-2.649 -1.121,-1.91 -1.676,-4.14 -1.828,-7.191 -0.148,-3.004 -0.652,-6.078 -1.359,-8.02 4.48,0.524 9.207,0.321 11.351,-0.945 1.914,-1.133 1.817,-0.062 -0.715,7.227 -2.863,8.25 -4.043,11.449 -5.156,11.578 z m -36.172,-7.43 c -0.472,0 -0.539,-1.617 -0.215,-4.738 0.516,-4.965 5.817,-18.192 8.594,-21.453 1.426,-1.672 1.805,-4.512 0.719,-5.254 -0.809,-0.547 -2.797,1.617 -2.797,3.043 0,1.371 -0.832,1.359 -3.867,-0.039 -3.606,-1.664 -5.106,-3.184 -12.211,-12.368 l -6.445,-8.375 -0.504,-8.453 c -0.274,-4.648 -0.324,-8.644 -0.106,-8.886 0.219,-0.243 1.457,0.597 2.758,1.855 1.297,1.258 2.637,2.414 2.973,2.566 0.336,0.153 1.496,1.579 2.578,3.161 2.64,3.867 4.019,3.449 4.297,-1.262 0.121,-2.02 0.523,-4.293 0.894,-5.059 0.371,-0.765 0.68,-2.066 0.68,-2.882 0,-0.817 0.57,-2.231 1.254,-3.161 l 1.254,-1.699 1.933,2.527 c 1.063,1.399 2.391,3.629 2.973,4.981 0.586,1.348 1.457,2.641 1.934,2.844 0.48,0.203 2.324,-1.485 4.082,-3.754 1.757,-2.27 3.57,-4.149 4.046,-4.149 0.481,0 1.43,-0.668 2.114,-1.5 0.683,-0.836 1.89,-1.543 2.652,-1.543 1.18,0 1.024,0.414 -1.109,2.766 -3.188,3.516 -4.594,8.641 -5.125,18.926 -0.321,6.254 -0.145,8.508 0.754,11.097 1.082,3.122 3.882,7.43 4.836,7.43 0.25,0 1.933,1.289 3.757,2.883 4.817,4.199 11.297,5.769 19.805,4.781 3.477,-0.406 6.981,-1.113 7.774,-1.582 0.792,-0.469 2.05,-0.652 2.792,-0.394 0.981,0.343 1.36,1.175 1.36,3.004 0,2.003 -0.602,3.078 -2.938,5.332 -3.707,3.582 -7.398,5.437 -12.496,6.32 -4.328,0.75 -10.328,0.394 -12.215,-0.711 -0.636,-0.375 -1.75,-0.672 -2.468,-0.672 -0.719,0 -1.289,-0.519 -1.289,-1.144 0,-0.625 0.476,-1.141 1.074,-1.145 1.949,-0.023 3.25,-1.316 2.328,-2.332 -1.492,-1.645 -7.941,2.602 -12.75,8.414 -3.059,3.695 -5.449,5.82 -8.238,7.231 -2.164,1.093 -4.114,2.292 -4.332,2.683 -0.219,0.391 -0.719,0.711 -1.11,0.711 z m 4.153,-8.492 c 0.187,0.015 0.41,0 0.644,-0.039 0.27,-0.047 0.563,-0.153 0.899,-0.278 0.886,-0.332 1.839,-0.55 2.113,-0.472 0.269,0.078 1.379,-1.035 2.433,-2.489 1.051,-1.457 2.262,-2.648 2.723,-2.648 0.457,0 1.141,-0.598 1.504,-1.344 0.676,-1.394 2.449,-2.625 5.766,-3.949 2.418,-0.969 2.644,-3.43 0.25,-2.766 -1.657,0.457 -1.961,0.004 -3.438,-5.054 -0.637,-2.18 -2.437,-2.406 -4.226,-0.555 -0.903,0.934 -2.774,4.32 -4.192,7.504 -1.414,3.188 -3.359,6.922 -4.297,8.297 -1.496,2.199 -1.476,3.676 -0.175,3.793 l -0.004,0 z m 3.441,-4.426 c -0.363,-0.078 -0.34,-0.672 0.32,-1.699 0.606,-0.938 1.676,-3.07 2.399,-4.738 0.722,-1.668 1.801,-3.711 2.398,-4.543 1.063,-1.481 1.09,-1.485 1.113,0.55 0.008,1.149 0.336,2.094 0.715,2.094 1.274,0 0.7,1.391 -1.468,3.559 -1.184,1.183 -2.731,2.746 -3.438,3.476 -0.937,0.965 -1.676,1.383 -2.043,1.301 l 0.004,0 z M 79.062,70.73 c 0.418,-0.07 0.946,-0.292 1.54,-0.632 1.093,-0.625 2.843,-1.141 3.902,-1.145 1.668,-0.004 5.492,-0.867 8.308,-1.894 0.473,-0.176 0.86,-0.825 0.86,-1.465 0,-1.278 -3.09,-1.672 -3.758,-0.473 -0.219,0.391 -2.168,1.125 -4.336,1.621 -4.609,1.047 -7.953,2.766 -7.375,3.793 0.121,0.215 0.438,0.27 0.859,0.195 z m 0.536,-5.332 c 0.929,0.016 2.312,-0.246 4.726,-0.71 3.699,-0.711 5.977,-1.571 7.055,-2.688 1.539,-1.594 2.16,-4.715 1.074,-5.453 -0.289,-0.195 -2.957,-0.047 -5.906,0.316 -8.184,1.012 -12.203,4.524 -8.883,7.746 0.531,0.516 1.008,0.774 1.934,0.789 z m 1.254,-2.648 c -0.09,0.031 -0.184,0.039 -0.286,0 -0.406,-0.148 -0.754,-0.59 -0.754,-0.988 0,-0.395 0.348,-0.836 0.754,-0.985 0.407,-0.152 0.715,0.289 0.715,0.985 0,0.523 -0.164,0.894 -0.429,0.988 z m 4.546,-0.672 C 85.199,62.094 84.922,62.047 84.613,62 82.66,61.695 82.438,59.473 84.359,59.473 c 0.778,0 1.477,0.632 1.614,1.422 0.14,0.808 0.027,1.144 -0.575,1.183 z m 19.555,-4.504 c 0.531,0.02 0.988,-0.14 1.324,-0.512 0.754,-0.828 0.211,-1.781 -1.789,-3.121 -1.445,-0.964 -2.047,-1.019 -2.687,-0.316 -0.637,0.703 -0.547,1.258 0.429,2.449 0.786,0.957 1.84,1.469 2.723,1.5 z M 72.973,55.047 C 72.633,55.039 72.34,55 72.113,54.93 c -4.609,-1.426 -5.265,-2.004 -5.265,-4.621 0,-1.539 -0.34,-4.551 -0.75,-6.403 1.281,-0.051 2.898,-1.117 3.976,-2.883 1.602,-2.628 6.949,-6.835 9.453,-7.425 3.946,-0.934 8.7,-0.864 12.426,0.156 3.887,1.062 4.434,1.008 8.524,-0.434 2.402,-0.847 4.8,-1.5 5.335,-1.5 0.54,0 2.266,-0.707 3.833,-1.543 3.14,-1.675 3.941,-1.832 3.941,-0.828 0,0.367 -1.078,1.242 -2.402,1.934 -2.485,1.301 -3.188,2.687 -1.36,2.687 0.571,0 1.563,-0.293 2.219,-0.672 4.215,-2.425 11.648,-5.449 13.609,-5.531 3.438,-0.14 6.856,4.77 4.118,5.926 -0.227,0.098 -0.418,0.211 -0.571,0.355 -1.804,0.145 -13.019,3.895 -21.058,6.321 -3.575,1.082 -6.875,1.937 -7.34,1.937 -1.051,0 -10.094,4.567 -10.567,5.332 -0.558,0.907 -5.734,3.793 -6.804,3.793 -0.543,0 -1.481,0.457 -2.078,1.028 -1.297,1.23 -6.004,2.554 -8.379,2.488 z m 60.488,-18.012 c -1.078,-0.043 -1.969,-0.75 -1.969,-1.781 0,-1.211 1.188,-1.492 3.043,-0.711 1.371,0.582 1.379,1.723 0.035,2.293 -0.363,0.152 -0.75,0.211 -1.109,0.199 z m 0.43,-5.215 c -0.567,0 -1.039,-0.465 -1.039,-1.027 0,-0.566 -0.907,-1.809 -2.043,-2.766 -1.133,-0.961 -2.075,-2.027 -2.075,-2.371 0,-1.035 3.586,0.762 4.942,2.489 1.527,1.941 1.621,3.675 0.215,3.675 z M -324.398,9.812 c -0.661,0 -1.625,-28.515 -1.004,-29.624 0.554,-0.989 1.156,-7.309 1.109,-11.657 -0.031,-3.281 -0.074,-3.265 3.691,2.61 1.473,2.293 2.84,4.332 3.043,4.543 0.2,0.207 0.829,1.394 1.395,2.644 0.578,1.254 1.605,2.961 2.293,3.793 0.695,0.836 2.719,4.063 4.476,7.191 1.758,3.129 4.204,7.161 5.446,8.965 2.258,3.305 2.941,7.172 1.469,8.18 -0.426,0.285 -2.547,-0.926 -4.766,-2.648 -4.484,-3.493 -4.793,-3.348 -5.731,2.371 -0.25,1.55 -0.8,3.035 -1.214,3.32 -0.911,0.617 -3.313,-2.555 -3.332,-4.426 -0.024,-2.383 -2.497,-1.449 -4.477,1.699 -1.051,1.668 -2.125,3.039 -2.398,3.039 z M 45.219,-1.801 c -0.723,0.102 -1.973,-0.941 -4.657,-3.793 -0.703,-0.742 -1.57,-1.156 -1.933,-0.906 -0.383,0.262 -0.664,-0.91 -0.68,-2.805 -0.019,-1.8 -0.492,-4.613 -1.039,-6.281 -1.191,-3.656 -1.156,-3.437 -0.285,-3.437 0.387,0 0.895,0.613 1.145,1.343 0.246,0.731 1.418,2.864 2.578,4.739 1.16,1.879 2.64,4.679 3.293,6.242 0.656,1.566 1.48,2.844 1.863,2.844 0.922,0 0.93,1.304 0,1.937 -0.086,0.059 -0.184,0.102 -0.285,0.117 z m -225.153,-24.808 c -0.343,0 -0.472,-0.637 -0.285,-1.422 0.305,-1.293 -0.336,-3.137 -4.726,-13.551 -0.75,-1.773 -1.578,-3.234 -1.828,-3.238 -0.25,-0.004 -1.204,-1.285 -2.149,-2.844 -1.848,-3.047 -2.437,-3.82 -7.09,-9.641 -1.668,-2.086 -3.418,-4.578 -3.867,-5.531 -0.453,-0.949 -1.113,-1.543 -1.469,-1.301 -0.355,0.239 -0.441,-0.066 -0.214,-0.715 0.804,-2.32 -11.93,-18.371 -16.833,-21.21 -2.089,-1.211 -12.644,-14.883 -12.285,-15.922 0.317,-0.918 3.907,-1.954 6.77,-1.977 0.972,-0.008 6.098,4.035 9.742,7.664 0.68,0.684 3.301,2.16 5.836,3.281 7.434,3.286 8.035,3.727 8.273,5.965 0.121,1.168 0.621,2.055 1.18,2.055 0.543,0 1.004,0.656 1.004,1.461 0,0.808 0.402,1.898 0.895,2.449 0.492,0.547 2.242,3.066 3.902,5.57 1.664,2.504 3.457,5.028 3.976,5.61 0.52,0.582 2.375,4.328 4.118,8.336 1.746,4.008 3.722,8.156 4.371,9.203 0.648,1.047 1.82,4.086 2.613,6.758 0.797,2.671 1.379,5.047 1.324,5.293 -0.398,1.796 -2.531,12.703 -2.578,13.156 -0.027,0.312 -0.336,0.551 -0.68,0.551 z M -6.746,-44.031 c -1.262,0.07 -3.84,-0.285 -4.617,-0.75 -0.66,-0.391 -3.672,-1.207 -6.699,-1.856 -3.024,-0.648 -8.137,-1.906 -11.352,-2.765 -8.922,-2.391 -12.32,-2.883 -26.465,-3.793 -11.949,-0.77 -16.109,-0.707 -27.183,0.472 -5.407,0.578 -3.485,-0.769 2.757,-1.933 2.836,-0.532 5.461,-1.192 5.84,-1.504 0.672,-0.555 6.895,-1.348 15.149,-1.934 2.269,-0.16 6.367,-0.59 9.132,-0.949 12.313,-1.598 33.067,0.586 42.614,4.504 3.972,1.629 4.144,2.168 2.543,7.07 -0.543,1.672 -0.996,3.137 -1,3.242 -0.012,0.129 -0.297,0.172 -0.719,0.196 z m -81.043,-7.664 c -0.137,0.015 -0.281,0.007 -0.465,0 -0.801,-0.035 -0.976,-0.231 -0.43,-0.473 0.496,-0.219 1.098,-0.172 1.325,0.078 0.171,0.188 -0.016,0.348 -0.43,0.395 z m 83.086,-4.504 c -0.684,0 -1.406,-0.301 -1.613,-0.672 -0.207,-0.367 -1.465,-0.91 -2.793,-1.184 -1.329,-0.273 -2.434,-0.949 -2.434,-1.5 0,-0.55 -0.539,-1.812 -1.219,-2.804 -0.679,-0.996 -1.66,-3.672 -2.148,-5.965 -1.215,-5.711 -4.098,-16.09 -4.836,-17.383 -0.465,-0.82 -1.602,-0.945 -4.977,-0.555 -8.945,1.047 -8.996,1.071 -11.711,4.348 -2.531,3.059 -2.683,3.109 -5.871,2.605 -1.8,-0.281 -3.648,-1.062 -4.121,-1.738 -1.699,-2.43 -0.574,-7.742 1.649,-7.742 0.601,0 2.984,-1.035 5.3,-2.293 4.645,-2.512 19.207,-5.785 22.133,-4.977 2.403,0.664 7.024,5.457 8.664,9.008 0.766,1.656 2.032,3.742 2.793,4.621 0.762,0.875 2.094,2.836 2.973,4.348 2.121,3.644 2.566,7.211 1.324,10.863 -0.555,1.645 -1.23,4.778 -1.465,6.992 -0.343,3.2 -0.664,4.028 -1.648,4.028 z" /><path
+                   id="path3137"
+                   style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
+                   d="m 81.031,61.172 c 0.121,0.195 0.223,0.465 0.223,0.601 0,0.305 -0.399,0.961 -0.586,0.961 -0.266,0 -0.715,-0.644 -0.715,-1.031 0,-0.223 0.141,-0.496 0.32,-0.637 0.422,-0.324 0.489,-0.316 0.758,0.106 z" /><path
+                   id="path3139"
+                   style="fill:#ff7f2a;fill-opacity:1;fill-rule:nonzero;stroke:none"
+                   d="m -162.641,-119.914 c -0.82,1.461 -3.339,2.012 -5.597,1.219 -5.313,-1.86 -9,3.238 -13.028,18.004 l -3.25,11.902 7.496,8.238 c 6.082,6.684 10.024,8.563 20.958,9.965 25.878,3.328 51.964,23.363 57.183,43.926 2.07,8.152 3.684,10.828 5.395,8.945 1.707,-1.887 1,-6.445 -2.36,-15.223 l -4.801,-12.531 10.399,-1.719 c 18.105,-2.996 46.066,-1.871 64.211,2.583 l 17.535,4.304 -1.477,8.668 c -0.875,5.153 -0.535,8.668 0.84,8.668 1.27,0 4.614,-11.207 7.426,-24.902 6.633,-32.313 21.883,-69.137 29.5,-71.246 6.125,-1.696 10.113,0.898 5.848,3.808 -1.516,1.032 -4.407,10.453 -6.422,20.93 -3.93,20.398 -3.207,39.805 2.316,62.469 1.715,7.023 3.801,17.527 4.637,23.34 1.281,8.898 2.242,10.363 6.074,9.257 3.235,-0.933 7.25,1.813 13.856,9.473 l 9.3,10.785 -8.468,5.012 c -7.668,4.531 -8.848,4.633 -12.426,1.062 -4.676,-4.668 -9.449,-1.054 -9.449,7.153 0,4.875 -0.18,4.859 -5.356,-0.508 -7.277,-7.539 -8.535,-7.039 -8.535,3.383 0,4.918 -0.539,8.941 -1.203,8.941 -0.66,0 -5.535,-3.015 -10.824,-6.703 -16.664,-11.601 -74.934,-17.277 -111.836,-10.894 -40.113,6.937 -55.66,5.23 -62.863,-6.895 -6.086,-10.246 -12.528,-7.715 -32.825,12.902 -30.215,30.688 -48.976,38.266 -76.41,30.852 -29.609,-8.008 -40.683,-19.512 -43.828,-45.535 -1.211,-9.996 -1.016,-10.5 2.723,-7.094 3.496,3.187 4.293,3.187 6.078,0 3.531,-6.305 14.41,-4.52 28.051,4.605 7.203,4.817 17.062,9.747 21.91,10.95 15.09,3.758 51.875,-6.559 75.551,-21.184 8.05,-4.973 8.683,-6.211 8.695,-17.023 0.008,-6.414 1.097,-15.973 2.422,-21.239 2.75,-10.922 -1.243,-23.582 -13.766,-43.664 -8.027,-12.867 -7.566,-18.562 2.984,-37 5.508,-9.625 6.981,-10.64 15.457,-10.64 5.899,0 8.817,0.984 7.879,2.656 z" /><path
+                   id="path3141"
+                   style="fill:#ff7f2a;fill-opacity:1;fill-rule:nonzero;stroke:none"
+                   d="m 67.883,26.938 c 3.969,6.781 3.969,7.164 -0.067,11.269 -3.558,3.617 -3.586,3.688 -3.257,8.863 0.867,13.664 5.05,14.426 24.836,4.532 11.484,-5.747 25.043,-11.207 25.785,-10.387 0.203,0.223 -2.309,1.75 -5.578,3.39 -7.032,3.532 -6.872,3.407 -5.856,4.524 0.496,0.551 1.703,0.574 3.219,0.059 3.234,-1.098 17.805,-8.469 20.301,-10.274 1.64,-1.184 2.234,-1.23 3.422,-0.273 1.285,1.039 0.683,1.679 -5.672,6.047 -3.911,2.687 -9.469,6.558 -12.348,8.605 -3.906,2.769 -5.348,3.398 -5.668,2.473 -0.695,-1.996 -4.43,-3.547 -5.555,-2.305 -1.117,1.23 1.285,4.691 3.258,4.691 0.926,0 0.988,0.286 0.27,1.239 -0.512,0.679 -2.032,3.664 -3.375,6.632 -1.344,2.969 -3.137,6.09 -3.985,6.934 -1.472,1.469 -1.582,1.414 -2.414,-1.215 -1.004,-3.18 -2.511,-3.453 -7.179,-1.301 -4.204,1.938 -17.528,1.411 -21.391,-0.843 -3.781,-2.207 -8.281,-6.758 -9.723,-9.84 -1.488,-3.172 -1.711,-15.762 -0.375,-21.227 0.508,-2.082 2.457,-5.597 4.477,-8.074 1.965,-2.414 3.73,-5.191 3.922,-6.18 0.281,-1.457 0.832,-0.965 2.953,2.661 z m 13.34,30.906 c -3.094,1.105 -4.328,2.043 -4.672,3.562 -0.699,3.067 0.222,3.973 4.031,3.965 7.141,-0.012 12.844,-3.215 12.844,-7.219 0,-1.558 -0.547,-1.804 -4,-1.804 -2.199,0 -5.891,0.672 -8.203,1.496 z m 4.015,8.406 c -9.992,3.543 -10.164,5.43 -0.289,3.211 8.598,-1.93 9.293,-2.199 9.293,-3.617 0,-1.332 -1.562,-2.313 -2.863,-1.801 -0.449,0.18 -3.215,1.172 -6.141,2.207 z" /><path
+                   id="path3143"
+                   style="fill:#ff0000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+                   d="m 57.227,29.934 c -3.356,4.222 -4.215,7.789 -4.512,18.738 -0.274,9.996 -0.149,11.109 1.586,14.367 2.156,4.051 9.246,9.77 14.113,11.387 3.957,1.312 14.324,1.308 19.66,-0.012 5.891,-1.457 6.996,0.402 3.203,5.379 -4.605,6.039 -14.855,9.187 -23.433,7.195 -4.875,-1.129 -5.891,-2.097 -3.067,-2.91 1.891,-0.547 2.168,-2.281 0.481,-2.996 -1.754,-0.742 -5.828,1.945 -11.207,7.402 -4.289,4.352 -12.977,11.204 -14.203,11.204 -2.086,0 2.683,-15.594 6.91,-22.575 2.633,-4.351 3.23,-8.125 1.285,-8.125 -0.652,0 -1.762,0.91 -2.469,2.024 L 44.289,73.035 40.82,70.996 C 37.863,69.258 25.652,55.297 23.609,51.316 23.254,50.621 23.07,46.695 23.199,42.59 l 0.239,-7.465 4.683,4.848 c 2.602,2.691 5.176,4.64 5.789,4.379 0.629,-0.266 1.551,-3.215 2.137,-6.829 0.871,-5.375 2.703,-9.476 3.648,-8.168 0.141,0.196 1.442,2.282 2.887,4.641 1.445,2.359 3.02,4.289 3.5,4.289 0.484,0 3.063,-2.234 5.738,-4.965 4.543,-4.636 8.242,-6.957 5.407,-3.386 z m -5.454,42.562 c -1.437,1.586 -8.324,14.848 -9.546,18.391 -0.45,1.301 -0.082,1.578 2.074,1.578 1.988,0 3.844,-1.16 7.66,-4.781 2.773,-2.633 6.051,-5.266 7.289,-5.852 2.574,-1.219 3.035,-3.812 0.676,-3.812 -1.067,0 -1.871,-1 -2.5,-3.106 -0.84,-2.809 -1.735,-3.844 -3.496,-4.047 -0.336,-0.043 -1.309,0.692 -2.157,1.629 z" /><path
+                   id="path3145"
+                   style="fill:#ff0000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+                   d="m 82.461,89.48 c 0.16,0.469 -1.145,4.774 -3.141,10.329 -2.386,6.66 -3.16,8.269 -3.968,8.269 -0.45,0 -1.84,-1.844 -2.54,-3.375 -0.777,-1.691 -1.132,-3.34 -1.441,-6.672 -0.285,-3.113 -0.711,-5.793 -1.086,-6.89 l -0.195,-0.559 4.222,-0.008 c 4.333,-0.012 5.25,-0.148 7.247,-1.101 0.714,-0.344 0.781,-0.344 0.902,0.004 l 0,0.003 z" /><path
+                   id="path3147"
+                   style="fill:#ffccaa;fill-opacity:1;fill-rule:nonzero;stroke:none"
+                   d="m 128.613,29.625 c 2.395,2.082 2.09,3.656 -0.867,4.496 -1.351,0.383 -5.586,1.664 -9.406,2.852 -3.82,1.187 -9.676,2.918 -13.012,3.843 -6.074,1.696 -13.023,4.832 -16.176,7.309 -2.203,1.727 -9.472,5.109 -12.793,5.949 -1.441,0.364 -3.574,0.465 -4.734,0.227 -3.242,-0.672 -4.355,-2.117 -4.742,-6.145 l -0.34,-3.511 4.309,-4.149 c 5.644,-5.434 8.722,-7.004 13.761,-7.016 2.145,-0.003 5.668,0.329 7.836,0.739 3.559,0.672 4.414,0.601 8.836,-0.711 2.695,-0.801 6.285,-2.028 7.981,-2.723 3.609,-1.488 4.379,-1.273 1.527,0.422 -2.195,1.301 -2.668,2.902 -0.855,2.902 0.628,0 3.808,-1.183 7.062,-2.632 7.547,-3.356 9.523,-3.668 11.613,-1.852 z" /><path
+                   id="path3149"
+                   style="fill:#ffccaa;fill-opacity:1;fill-rule:nonzero;stroke:none"
+                   d="m 131.191,26.414 c 2.231,1.281 4.039,4.109 3.215,5.02 -0.48,0.531 -1.16,0.058 -1.601,-1.11 -0.223,-0.59 -1.141,-1.762 -2.035,-2.605 -2.321,-2.188 -2.133,-2.774 0.421,-1.305 z" /><path
+                   id="path3151"
+                   style="fill:#550000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+                   d="m 53.027,77.801 c 0,1.074 0.145,1.531 0.602,1.883 0.824,0.636 0.559,1.097 -2.418,4.254 -2.551,2.699 -3.879,3.828 -4.152,3.523 -0.09,-0.098 0.777,-2.094 1.929,-4.434 2.567,-5.203 3.383,-6.644 3.75,-6.644 0.16,0 0.289,0.637 0.289,1.418 z" /><path
+                   id="path3153"
+                   style="fill:#808000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+                   d="m 85.383,60.164 c 0.394,0.438 0.472,1.852 0.097,1.852 -1.23,0 -2.605,-1.219 -2.195,-1.946 0.235,-0.422 1.688,-0.355 2.098,0.094 z" /><path
+                   id="path3155"
+                   style="fill:#1a1a1a;fill-opacity:1;fill-rule:nonzero;stroke:none"
+                   d="m 134.043,34.594 c 1.309,0.574 1.535,0.945 0.992,1.609 -0.976,1.188 -3.289,0.488 -3.289,-0.992 0,-0.926 0.992,-1.195 2.297,-0.617 z" /><path
+                   id="path3157"
+                   style="fill:#aa0000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+                   d="m 56.516,29.801 c 0,0.183 -0.637,1.594 -1.414,3.129 -1.84,3.64 -2.633,9.297 -2.622,18.758 0.008,6.058 0.231,8.203 1.071,10.246 1.398,3.39 6.75,8.589 11.558,11.226 3.774,2.07 4,2.11 11.664,2.129 4.297,0.012 9.704,-0.23 12.008,-0.539 4.09,-0.547 4.199,-0.523 4.199,0.84 0,2.293 -5.578,7.91 -9.57,9.644 -2.867,1.243 -4.535,1.5 -9.82,1.52 -4.094,0.012 -6.988,-0.285 -8.106,-0.832 L 63.75,85.07 65.078,84.391 C 66.816,83.5 66.59,81.141 64.742,80.852 62.945,80.57 59.418,82.957 53.586,88.406 47.23,94.344 40.125,99.609 39.82,98.605 c -0.125,-0.421 0.242,-2.671 0.821,-5.003 0.859,-3.477 1.109,-3.957 1.394,-2.649 0.375,1.703 1.61,2.254 3.735,1.664 0.726,-0.199 3.871,-2.523 6.988,-5.164 3.117,-2.641 5.84,-4.797 6.051,-4.797 0.746,0 2.914,-2.621 2.914,-3.527 0,-0.504 -0.629,-1.094 -1.399,-1.305 -0.812,-0.226 -1.691,-1.176 -2.105,-2.273 -1.043,-2.785 -2.809,-5.028 -3.953,-5.028 -1.621,0 -3.864,3.09 -7.883,10.856 -4.735,9.156 -4.899,7.742 -0.258,-2.246 1.926,-4.145 3.422,-8.133 3.328,-8.863 -0.269,-2.059 -1.91,-1.934 -3.793,0.285 l -1.707,2.019 -2.547,-1.75 C 38.527,68.848 29.629,59.168 25.957,54.023 l -2.434,-3.41 0,-14.672 3.579,3.52 c 4.117,4.047 5.839,5.199 7.015,4.699 0.469,-0.195 1.281,-2.402 1.856,-5.031 1.226,-5.609 2.582,-9.59 3.175,-9.336 0.239,0.102 1.704,2.035 3.258,4.293 1.551,2.262 3.125,4.219 3.496,4.348 0.567,0.199 3.461,-2.219 9.598,-8.016 0.559,-0.527 1.016,-0.805 1.016,-0.617 z" /><path
+                   id="path3159"
+                   style="fill:#aa0000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+                   d="m 81.742,91.281 c -0.722,3.184 -5,14.649 -5.793,15.531 -1.394,1.555 -3.207,-2.386 -4.324,-9.421 l -1.004,-6.313 4.668,-0.273 c 2.566,-0.149 5.16,-0.512 5.766,-0.805 0.98,-0.473 1.054,-0.332 0.687,1.281 z" /><g
+                   id="g3161"
+                   transform="matrix(1,0,0,-1,0,203)"><path
+                     id="path3163"
+                     style="fill:none;stroke:#000000;stroke-opacity:1;stroke-width:0.00137397;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none"
+                     d="m 68.188,154.383 2.16,-1.184 0.289,1.485" /></g></g></g></g></g></g></g><g
+       id="g3165"><g
+         transform="matrix(1,0,0,-1,0,202.67685)"
+         id="g3167"><path
+           id="path3169"
+           style="fill:none;stroke:#000000;stroke-opacity:1;stroke-width:2.4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:2.4,2.4;stroke-dashoffset:0"
+           d="M 152.066,41.348 141.559,190.043" /></g><g
+         transform="matrix(1,0,0,-1,0,202.67685)"
+         id="g3171"><path
+           id="path3173"
+           style="fill:none;stroke:#000000;stroke-opacity:1;stroke-width:1.2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:1.2,1.2;stroke-dashoffset:0"
+           d="M 115.875,11.691 17.02,88.836" /></g><g
+         transform="matrix(1,0,0,-1,0,202.67685)"
+         id="g3175"><path
+           id="path3177"
+           style="fill:none;stroke:#000000;stroke-opacity:1;stroke-width:1.6;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:1.6,1.6;stroke-dashoffset:0"
+           d="M 151.875,11.691 140.16,89.121" /></g><text
+         id="text3179"
+         transform="matrix(1,0,0,-1,-0.632812,115.26704)"><tspan
+           id="tspan3181"
+           sodipodi:role="line"
+           y="0"
+           x="0 6.1056 9.1488"
+           style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:DejaVu Serif;font-variant:normal;font-weight:normal;font-size:9.6;writing-mode:lr;-inkscape-font-specification:DejaVuSerif">0,0</tspan><tspan
+           id="tspan3183"
+           sodipodi:role="line"
+           y="113.94519"
+           x="138.1888704 144.2944704 147.3376704"
+           style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:DejaVu Serif;font-variant:normal;font-weight:normal;font-size:9.6;writing-mode:lr;-inkscape-font-specification:DejaVuSerif">1,1</tspan></text>
+<path
+         id="path3185"
+         style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+         d="m 170.57909,74.302725 0,0.019 -0.004,0.008 0,0.016 -0.004,0.007 0,0.008 -0.008,0.016 -0.004,0.012 -0.016,0.031 -0.011,0.008 -0.008,0.007 -0.004,0.008 -0.023,0.024 -0.012,0.007 -0.008,0.004 -0.012,0.008 -0.008,0.004 -0.015,0.004 -0.008,0.004 -0.004,0 -0.008,0.004 -0.011,0 -0.008,0.004 -0.051,0 c -0.102,0 -0.125,-0.016 -0.367,-0.309 l -0.985,-1.164 c -0.531,0.961 -1.597,1.473 -2.925,1.473 -2.602,0 -5.055,-2.352 -5.055,-4.832 0,-1.653 1.09,-2.598 2.129,-2.899 l 2.184,-0.578 c 0.761,-0.183 1.89,-0.488 1.89,-2.168 0,-1.847 -1.683,-3.765 -3.683,-3.765 -1.313,0 -3.583,0.453 -3.583,2.988 0,0.492 0.102,0.98 0.122,1.105 0.019,0.082 0.039,0.102 0.039,0.141 0,0.207 -0.141,0.226 -0.243,0.226 -0.105,0 -0.144,-0.019 -0.207,-0.082 -0.085,-0.082 -1.226,-4.746 -1.226,-4.804 0,-0.125 0.101,-0.207 0.226,-0.207 0.102,0 0.122,0.019 0.364,0.308 l 1.008,1.16 c 0.878,-1.187 2.265,-1.468 3.453,-1.468 2.785,0 5.199,2.718 5.199,5.254 0,1.414 -0.692,2.113 -1,2.394 -0.469,0.477 -0.777,0.551 -2.602,1.028 -0.445,0.125 -1.187,0.328 -1.371,0.367 -0.554,0.183 -1.246,0.777 -1.246,1.859 0,1.664 1.637,3.402 3.578,3.402 1.707,0 2.949,-0.878 2.949,-3.175 0,-0.653 -0.085,-1.024 -0.085,-1.141 0,-0.023 0,-0.207 0.25,-0.207 0.207,0 0.226,0.062 0.304,0.41 l 1.11,4.481 z"
+         inkscape:connector-curvature="0" /><path
+         id="path3187"
+         style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+         d="m 177.90709,62.489725 1.359,1.363 c 1.828,1.805 2.387,2.364 3.676,2.434 0.191,0.012 0.363,0.012 0.363,0.301 0,0.168 -0.16,0.211 -0.207,0.211 -0.41,0 -0.91,-0.055 -1.344,-0.055 -0.367,0 -1.289,0.055 -1.66,0.055 -0.117,0 -0.289,-0.043 -0.289,-0.317 0,-0.011 0,-0.183 0.219,-0.195 0.125,-0.012 0.488,-0.047 0.488,-0.363 0,-0.207 -0.219,-0.438 -0.363,-0.582 -0.113,-0.102 -1.93,-1.871 -2.465,-2.418 l -1.441,2.804 c -0.024,0.043 -0.071,0.141 -0.071,0.196 0,0.105 0.27,0.332 0.758,0.363 0.102,0 0.305,0.012 0.305,0.312 0,0.016 -0.02,0.2 -0.246,0.2 -0.301,0 -0.656,-0.043 -0.957,-0.043 -0.301,0 -0.629,-0.012 -0.93,-0.012 -0.246,0 -0.594,0 -0.848,0.012 -0.246,0.019 -0.543,0.043 -0.769,0.043 -0.07,0 -0.301,0 -0.301,-0.317 0,-0.195 0.184,-0.195 0.414,-0.195 0.828,0 0.899,-0.145 1.039,-0.43 l 2.008,-3.953 -0.801,-0.797 c -0.273,-0.261 -0.945,-0.902 -1.207,-1.175 -1.746,-1.735 -2.328,-2.336 -3.617,-2.395 -0.199,-0.012 -0.355,-0.012 -0.355,-0.313 0,-0.058 0.039,-0.199 0.203,-0.199 0.41,0 0.894,0.055 1.324,0.055 0.242,0 0.605,0 0.848,-0.012 0.257,-0.019 0.57,-0.043 0.816,-0.043 0.07,0 0.301,0 0.301,0.301 0,0.199 -0.172,0.211 -0.262,0.211 -0.141,0.02 -0.445,0.059 -0.445,0.363 0,0.231 0.191,0.414 0.5,0.731 l 2.91,2.851 1.734,-3.398 c 0.071,-0.141 0.082,-0.172 0.082,-0.184 0,-0.086 -0.254,-0.316 -0.758,-0.363 -0.128,-0.012 -0.316,-0.012 -0.316,-0.313 0,-0.015 0.012,-0.199 0.246,-0.199 0.301,0 0.66,0.043 0.953,0.043 0.305,0 0.637,0.012 0.934,0.012 0.242,0 0.594,0 0.848,-0.012 0.242,-0.019 0.546,-0.043 0.769,-0.043 0.07,0 0.301,0 0.301,0.317 0,0.195 -0.184,0.195 -0.41,0.195 -0.832,0 -0.903,0.16 -1.032,0.406 l -2.304,4.547 z"
+         inkscape:connector-curvature="0" /><path
+         id="path3189"
+         style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+         d="m 205.25009,66.774725 0.18,0 0.031,0.004 0.028,0 0.031,0.004 0.027,0.004 0.032,0.004 0.054,0.008 0.032,0.011 0.07,0.024 0.027,0.012 0.024,0.011 0.019,0.016 0.024,0.016 0.035,0.035 0.015,0.019 0.008,0.012 0.008,0.016 0.008,0.007 0.008,0.012 0.004,0.012 0.007,0.015 0.004,0.012 0.016,0.063 0,0.015 0.004,0.016 0,0.055 c 0,0.41 -0.391,0.41 -0.672,0.41 l -12.258,0 c -0.293,0 -0.676,0 -0.676,-0.41 0,-0.403 0.383,-0.403 0.692,-0.403 l 12.218,0 z"
+         inkscape:connector-curvature="0" /><path
+         id="path3191"
+         style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+         d="m 205.27409,62.798725 0.051,0 0.058,0.004 0.086,0 0.031,0.004 0.028,0.003 0.027,0 0.028,0.004 0.027,0.012 0.027,0.004 0.055,0.016 0.023,0.007 0.028,0.008 0.023,0.012 0.02,0.012 0.019,0.015 0.024,0.02 0.019,0.015 0.016,0.02 0.008,0.008 0.007,0.011 0.008,0.008 0.008,0.016 0.016,0.023 0.004,0.012 0.007,0.012 0.02,0.078 0,0.016 0.004,0.019 0,0.051 c 0,0.41 -0.391,0.41 -0.696,0.41 l -12.218,0 c -0.309,0 -0.692,0 -0.692,-0.41 0,-0.41 0.383,-0.41 0.676,-0.41 l 12.258,0 z"
+         inkscape:connector-curvature="0" /><path
+         id="path3193"
+         style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+         d="m 223.20409,73.927725 1.363,1.363 c 1.828,1.805 2.387,2.363 3.676,2.433 0.183,0.012 0.359,0.012 0.359,0.297 0,0.168 -0.16,0.215 -0.207,0.215 -0.41,0 -0.906,-0.058 -1.34,-0.058 -0.371,0 -1.289,0.058 -1.664,0.058 -0.113,0 -0.285,-0.047 -0.285,-0.316 0,-0.012 0,-0.184 0.215,-0.196 0.129,-0.015 0.492,-0.046 0.492,-0.363 0,-0.211 -0.219,-0.441 -0.363,-0.582 -0.114,-0.105 -1.93,-1.875 -2.465,-2.422 l -1.442,2.809 c -0.027,0.043 -0.074,0.137 -0.074,0.195 0,0.102 0.27,0.328 0.762,0.363 0.102,0 0.297,0.012 0.297,0.309 0,0.02 -0.012,0.203 -0.242,0.203 -0.301,0 -0.653,-0.047 -0.957,-0.047 -0.297,0 -0.629,-0.011 -0.926,-0.011 -0.246,0 -0.594,0 -0.852,0.011 -0.242,0.024 -0.539,0.047 -0.769,0.047 -0.071,0 -0.301,0 -0.301,-0.316 0,-0.196 0.187,-0.196 0.418,-0.196 0.824,0 0.898,-0.144 1.039,-0.433 l 2.008,-3.949 -0.801,-0.801 c -0.273,-0.262 -0.945,-0.902 -1.207,-1.172 -1.746,-1.734 -2.328,-2.34 -3.621,-2.395 -0.199,-0.011 -0.352,-0.011 -0.352,-0.312 0,-0.059 0.035,-0.203 0.196,-0.203 0.414,0 0.902,0.058 1.332,0.058 0.242,0 0.605,0 0.847,-0.011 0.254,-0.02 0.571,-0.047 0.813,-0.047 0.074,0 0.304,0 0.304,0.305 0,0.199 -0.171,0.21 -0.261,0.21 -0.145,0.02 -0.446,0.055 -0.446,0.36 0,0.23 0.184,0.414 0.5,0.73 l 2.911,2.852 1.734,-3.395 c 0.066,-0.14 0.082,-0.175 0.082,-0.187 0,-0.086 -0.262,-0.317 -0.762,-0.36 -0.129,-0.011 -0.312,-0.011 -0.312,-0.312 0,-0.016 0.012,-0.203 0.242,-0.203 0.305,0 0.66,0.047 0.957,0.047 0.305,0 0.637,0.011 0.934,0.011 0.242,0 0.586,0 0.843,-0.011 0.246,-0.02 0.547,-0.047 0.77,-0.047 0.074,0 0.305,0 0.305,0.316 0,0.199 -0.184,0.199 -0.411,0.199 -0.836,0 -0.906,0.161 -1.035,0.407 l -2.304,4.547 z"
+         inkscape:connector-curvature="0" /><path
+         id="path3195"
+         style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+         d="m 240.43409,71.696725 0.141,0 0.019,0.004 0.028,0 0.023,0.004 0.023,0 0.024,0.004 0.027,0.004 0.02,0.004 0.023,0.007 0.024,0.004 0.019,0.008 0.024,0.012 0.019,0.012 0.02,0.007 0.019,0.012 0.016,0.016 0.015,0.012 0.016,0.019 0.004,0.008 0.012,0.008 0.007,0.011 0.004,0.008 0.008,0.008 0.008,0.023 0.004,0.008 0.004,0.016 0.012,0.035 0,0.016 0.003,0.011 0,0.02 0.004,0.012 0,0.031 c 0,0.355 -0.328,0.355 -0.57,0.355 l -8.531,0 c -0.231,0 -0.57,0 -0.57,-0.343 0,-0.356 0.328,-0.356 0.57,-0.356 l 8.531,0 z"
+         inkscape:connector-curvature="0" /><path
+         id="path3197"
+         style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+         d="m 252.78209,76.536725 0.051,0.07 0.046,0.067 0.051,0.066 0.051,0.063 0.047,0.062 0.051,0.063 0.05,0.054 0.043,0.055 0.051,0.055 0.098,0.097 0.051,0.043 0.046,0.047 0.055,0.039 0.047,0.039 0.055,0.035 0.05,0.04 0.051,0.031 0.059,0.035 0.055,0.027 0.058,0.024 0.055,0.027 0.058,0.023 0.059,0.02 0.063,0.02 0.058,0.019 0.066,0.016 0.063,0.011 0.07,0.012 0.133,0.016 0.074,0.008 c 0.176,0.015 0.332,0.027 0.332,0.312 0,0.047 -0.031,0.203 -0.203,0.203 -0.343,0 -0.789,-0.058 -1.148,-0.058 -0.457,0 -1.059,0.058 -1.485,0.058 -0.132,0 -0.289,-0.047 -0.289,-0.316 0,-0.184 0.203,-0.199 0.262,-0.199 0.453,-0.032 0.582,-0.2 0.582,-0.418 0,-0.196 -0.098,-0.34 -0.258,-0.571 l -4.691,-6.925 -1.305,7.312 c -0.023,0.129 -0.023,0.16 -0.023,0.219 0,0.383 0.793,0.383 0.894,0.383 0.246,0 0.434,0 0.434,0.312 0,0.02 -0.012,0.203 -0.242,0.203 -0.422,0 -1.434,-0.058 -1.848,-0.058 -0.355,0 -1.23,0.058 -1.586,0.058 -0.129,0 -0.293,-0.047 -0.293,-0.316 0,-0.199 0.199,-0.199 0.36,-0.199 0.804,0 0.816,-0.09 0.89,-0.461 l 1.555,-8.7 c 0.058,-0.296 0.07,-0.386 0.351,-0.386 0.266,0 0.336,0.101 0.485,0.308 l 5.461,8.055 z"
+         inkscape:connector-curvature="0" /><path
+         id="path3199"
+         style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+         d="m 258.57109,70.399725 -0.024,-0.004 -0.023,-0.011 -0.02,-0.008 -0.015,-0.008 -0.059,-0.023 -0.015,-0.012 -0.016,-0.008 -0.016,-0.012 -0.019,-0.011 -0.012,-0.012 -0.016,-0.008 -0.062,-0.062 -0.059,-0.071 -0.015,-0.027 -0.016,-0.024 -0.012,-0.023 -0.011,-0.027 -0.012,-0.024 -0.008,-0.023 -0.012,-0.028 -0.004,-0.019 -0.007,-0.023 -0.012,-0.059 0,-0.016 -0.004,-0.011 0,-0.047 c 0,-0.176 0.121,-0.418 0.457,-0.418 0.285,0 0.633,0.242 0.633,0.695 0,0.602 -0.676,0.836 -1.215,0.836 -0.668,0 -1.094,-0.426 -1.301,-0.699 -0.34,0.586 -0.992,0.699 -1.359,0.699 -1.277,0 -2.004,-1.203 -2.004,-1.586 0,-0.144 0.16,-0.144 0.215,-0.144 0.086,0 0.172,0.015 0.215,0.121 0.3,1.011 1.144,1.257 1.535,1.257 0.332,0 0.726,-0.14 0.726,-0.679 0,-0.258 -0.191,-0.965 -0.535,-2.324 -0.152,-0.583 -0.625,-0.93 -1.062,-0.93 -0.074,0 -0.367,0 -0.614,0.16 0.457,0.164 0.457,0.551 0.457,0.598 0,0.297 -0.226,0.429 -0.449,0.429 -0.258,0 -0.636,-0.203 -0.636,-0.703 0,-0.617 0.699,-0.836 1.218,-0.836 0.563,0 1.02,0.324 1.27,0.699 0.406,-0.617 1.062,-0.699 1.383,-0.699 1.289,0 2.015,1.219 2.015,1.59 0,0.145 -0.172,0.145 -0.215,0.145 -0.175,0 -0.195,-0.067 -0.23,-0.157 -0.293,-0.925 -1.082,-1.226 -1.531,-1.226 -0.309,0 -0.727,0.109 -0.727,0.68 0,0.128 0,0.199 0.082,0.546 0.176,0.719 0.453,1.856 0.535,2.032 0.125,0.273 0.469,0.675 0.989,0.675 0.035,0 0.379,0 0.617,-0.16 z"
+         inkscape:connector-curvature="0" /><path
+         id="path3201"
+         style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+         d="m 215.08309,64.927725 46.136,0 0,0.836 -46.136,0"
+         inkscape:connector-curvature="0" /><path
+         id="path3203"
+         style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+         d="m 237.89909,61.106725 0.051,0.071 0.05,0.066 0.047,0.066 0.051,0.063 0.043,0.062 0.051,0.063 0.051,0.055 0.047,0.054 0.05,0.055 0.047,0.051 0.051,0.043 0.051,0.051 0.047,0.039 0.05,0.043 0.055,0.039 0.047,0.039 0.109,0.07 0.051,0.027 0.059,0.028 0.054,0.031 0.055,0.023 0.059,0.024 0.062,0.023 0.063,0.02 0.058,0.015 0.063,0.016 0.133,0.023 0.07,0.012 0.07,0.008 0.067,0.008 c 0.179,0.012 0.332,0.023 0.332,0.312 0,0.043 -0.028,0.2 -0.2,0.2 -0.347,0 -0.793,-0.055 -1.148,-0.055 -0.457,0 -1.062,0.055 -1.484,0.055 -0.137,0 -0.289,-0.043 -0.289,-0.317 0,-0.183 0.199,-0.195 0.257,-0.195 0.454,-0.035 0.582,-0.203 0.582,-0.418 0,-0.199 -0.093,-0.344 -0.254,-0.574 l -4.691,-6.926 -1.305,7.312 c -0.027,0.129 -0.027,0.16 -0.027,0.219 0,0.387 0.797,0.387 0.899,0.387 0.242,0 0.433,0 0.433,0.312 0,0.012 -0.012,0.2 -0.246,0.2 -0.414,0 -1.43,-0.055 -1.848,-0.055 -0.355,0 -1.226,0.055 -1.586,0.055 -0.129,0 -0.289,-0.043 -0.289,-0.317 0,-0.195 0.203,-0.195 0.364,-0.195 0.8,0 0.812,-0.09 0.882,-0.465 l 1.559,-8.695 c 0.059,-0.305 0.07,-0.391 0.348,-0.391 0.269,0 0.34,0.102 0.488,0.313 l 5.461,8.05 z"
+         inkscape:connector-curvature="0" /><path
+         id="path3205"
+         style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+         d="m 242.61809,51.583725 0.015,-0.027 0.016,-0.024 0.019,-0.031 0.016,-0.028 0.027,-0.027 0.024,-0.031 0.023,-0.027 0.032,-0.032 0.027,-0.031 0.035,-0.027 0.031,-0.035 0.035,-0.028 0.043,-0.031 0.039,-0.031 0.047,-0.028 0.051,-0.027 0.047,-0.031 0.051,-0.028 0.058,-0.023 0.055,-0.027 0.063,-0.024 0.132,-0.039 0.071,-0.023 0.148,-0.032 0.078,-0.011 0.172,-0.024 0.09,-0.008 0.094,-0.003 0.097,0 c 1.946,0 2.469,3.277 2.469,3.769 0,0.703 -0.41,0.879 -0.582,0.879 -0.32,0 -0.601,-0.328 -0.601,-0.594 0,-0.191 0.128,-0.289 0.191,-0.343 0.289,-0.219 0.398,-0.481 0.398,-0.786 0,-0.261 -0.515,-2.57 -1.82,-2.57 -0.387,0 -0.988,0.121 -0.988,0.926 0,0.023 0,0.215 0.074,0.523 0.098,0.41 0.391,1.586 0.531,2.133 0.047,0.16 0.047,0.176 0.047,0.231 0,0.222 -0.187,0.355 -0.379,0.355 -0.168,0 -0.355,-0.086 -0.449,-0.262 -0.043,-0.07 -0.133,-0.449 -0.199,-0.679 -0.141,-0.579 -0.141,-0.602 -0.297,-1.172 -0.082,-0.332 -0.172,-0.715 -0.184,-0.996 0.032,-0.161 0,-0.215 -0.09,-0.387 -0.39,-0.672 -0.824,-0.672 -0.984,-0.672 -0.152,0 -0.547,0.016 -0.808,0.242 -0.262,0.239 -0.262,0.617 -0.262,0.727 0,0.414 0.125,0.836 0.558,1.883 0.082,0.203 0.149,0.355 0.149,0.527 0,0.5 -0.481,0.91 -1.117,0.91 -1.078,0 -1.649,-1.312 -1.649,-1.586 0,-0.148 0.164,-0.148 0.219,-0.148 0.172,0 0.18,0.047 0.23,0.203 0.215,0.707 0.696,1.176 1.153,1.176 0.203,0 0.308,-0.11 0.308,-0.387 0,-0.203 -0.039,-0.32 -0.172,-0.613 -0.539,-1.332 -0.539,-1.594 -0.539,-1.848 0,-1.168 1.051,-1.441 1.883,-1.441 0.203,0 0.774,0 1.274,0.742 l 0,-0.004 z"
+         inkscape:connector-curvature="0" /><path
+         id="path3207"
+         style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+         d="m 289.21109,74.251725 0,0.015 -0.004,0.008 0,0.016 -0.003,0.008 0,0.008 -0.004,0.003 -0.024,0.047 -0.011,0.012 -0.004,0.008 -0.016,0.015 -0.008,0.004 -0.012,0.008 -0.007,0.004 -0.008,0.008 -0.008,0.004 -0.012,0 -0.007,0.004 -0.004,0 -0.008,0.004 -0.012,0 -0.004,0.004 -0.047,0 c -0.09,0 -0.109,-0.012 -0.328,-0.274 l -0.871,-1.035 c -0.473,0.855 -1.414,1.309 -2.598,1.309 -2.304,0 -4.48,-2.086 -4.48,-4.286 0,-1.468 0.965,-2.308 1.887,-2.574 l 1.937,-0.512 c 0.676,-0.16 1.676,-0.433 1.676,-1.925 0,-1.637 -1.492,-3.34 -3.266,-3.34 -1.164,0 -3.179,0.402 -3.179,2.652 0,0.438 0.089,0.871 0.109,0.981 0.016,0.07 0.031,0.089 0.031,0.125 0,0.183 -0.121,0.203 -0.215,0.203 -0.089,0 -0.125,-0.02 -0.179,-0.074 -0.078,-0.075 -1.09,-4.215 -1.09,-4.266 0,-0.109 0.09,-0.18 0.199,-0.18 0.09,0 0.109,0.012 0.324,0.274 l 0.895,1.027 c 0.777,-1.055 2.012,-1.301 3.062,-1.301 2.473,0 4.614,2.41 4.614,4.66 0,1.254 -0.614,1.875 -0.887,2.125 -0.418,0.422 -0.692,0.489 -2.309,0.911 -0.394,0.109 -1.05,0.292 -1.215,0.324 -0.492,0.164 -1.105,0.691 -1.105,1.652 0,1.477 1.449,3.02 3.176,3.02 1.511,0 2.613,-0.782 2.613,-2.821 0,-0.578 -0.074,-0.906 -0.074,-1.011 0,-0.02 0,-0.184 0.222,-0.184 0.18,0 0.2,0.055 0.27,0.367 l 0.984,3.973 z"
+         inkscape:connector-curvature="0" /><path
+         id="path3209"
+         style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+         d="m 297.26209,66.075725 0.086,0.09 0.094,0.09 0.051,0.047 0.043,0.043 0.05,0.043 0.047,0.043 0.047,0.039 0.047,0.043 0.051,0.043 0.051,0.035 0.05,0.043 0.055,0.039 0.102,0.07 c 0.515,0.355 0.988,0.383 1.152,0.395 0.141,0.011 0.293,0.011 0.293,0.277 0,0.09 -0.074,0.18 -0.18,0.18 -0.316,0 -0.699,-0.051 -1.027,-0.051 -0.402,0 -0.941,0.051 -1.32,0.051 -0.063,0 -0.254,0 -0.254,-0.282 0,-0.164 0.168,-0.175 0.23,-0.175 0.371,-0.028 0.371,-0.165 0.371,-0.243 0,-0.117 -0.078,-0.211 -0.168,-0.332 -0.078,-0.113 -0.14,-0.199 -0.215,-0.281 l -3.175,-3.312 -1.676,3.722 c -0.09,0.176 -0.09,0.203 -0.09,0.215 0,0.231 0.609,0.231 0.688,0.231 0.164,0 0.328,0 0.328,0.277 0,0.016 0,0.18 -0.203,0.18 -0.383,0 -1.321,-0.051 -1.704,-0.051 -0.32,0 -1.129,0.051 -1.445,0.051 -0.101,0 -0.254,-0.039 -0.254,-0.282 0,-0.175 0.164,-0.175 0.344,-0.175 0.738,0 0.789,-0.114 0.91,-0.395 l 1.973,-4.344 -0.574,-2.324 c -0.168,-0.648 -0.18,-0.68 -1.172,-0.699 -0.215,0 -0.379,0 -0.379,-0.266 0,-0.129 0.094,-0.191 0.203,-0.191 0.242,0 0.539,0.043 0.789,0.043 0.246,0 0.609,0.008 0.836,0.008 0.258,0 0.547,-0.008 0.816,-0.008 0.266,0 0.586,-0.043 0.852,-0.043 0.074,0 0.281,0 0.281,0.281 0,0.176 -0.152,0.176 -0.433,0.176 -0.204,0 -0.254,0 -0.485,0.027 -0.238,0.024 -0.277,0.051 -0.277,0.176 0,0.078 0.152,0.687 0.234,1.031 0.106,0.406 0.375,1.508 0.402,1.563 0.043,0.187 0.043,0.215 0.176,0.34 l 3.379,3.562 z"
+         inkscape:connector-curvature="0" /><path
+         id="path3211"
+         style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+         d="m 318.75409,67.571725 0.153,0 0.031,0.004 0.023,0 0.028,0.004 0.023,0.004 0.028,0.004 0.023,0.004 0.027,0.004 0.047,0.015 0.024,0.004 0.019,0.008 0.024,0.012 0.019,0.011 0.02,0.016 0.019,0.008 0.016,0.019 0.015,0.016 0.016,0.019 0.008,0.008 0.008,0.012 0,0.008 0.008,0.012 0.003,0.011 0.008,0.012 0.004,0.012 0.004,0.015 0.008,0.024 0.004,0.015 0,0.016 0.004,0.016 0,0.047 c 0,0.363 -0.348,0.363 -0.598,0.363 l -10.875,0 c -0.258,0 -0.602,0 -0.602,-0.363 0,-0.36 0.344,-0.36 0.618,-0.36 l 10.843,0 z"
+         inkscape:connector-curvature="0" /><path
+         id="path3213"
+         style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+         d="m 318.77009,64.044725 0.047,0 0.051,0.004 0.074,0 0.055,0.008 0.023,0 0.027,0.003 0.02,0.008 0.027,0.004 0.02,0.004 0.027,0.008 0.02,0.008 0.023,0.007 0.023,0.012 0.016,0.012 0.02,0.012 0.019,0.015 0.016,0.016 0.015,0.019 0.008,0.004 0.008,0.012 0.008,0.008 0.008,0.012 0,0.011 0.008,0.008 0.003,0.012 0.008,0.012 0.004,0.015 0.008,0.024 0.008,0.031 0,0.015 0.004,0.012 0,0.047 c 0,0.367 -0.348,0.367 -0.614,0.367 l -10.843,0 c -0.274,0 -0.618,0 -0.618,-0.367 0,-0.363 0.344,-0.363 0.602,-0.363 l 10.875,0 z"
+         inkscape:connector-curvature="0" /><path
+         id="path3215"
+         style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+         d="m 336.22709,77.966725 0.09,0.097 0.098,0.09 0.042,0.043 0.094,0.086 0.051,0.043 0.047,0.043 0.047,0.039 0.051,0.039 0.05,0.043 0.051,0.039 0.051,0.035 0.055,0.043 0.05,0.035 c 0.516,0.352 0.989,0.379 1.153,0.395 0.14,0.008 0.293,0.008 0.293,0.277 0,0.09 -0.078,0.176 -0.18,0.176 -0.316,0 -0.699,-0.055 -1.027,-0.055 -0.403,0 -0.938,0.055 -1.321,0.055 -0.062,0 -0.254,0 -0.254,-0.281 0,-0.164 0.168,-0.172 0.231,-0.172 0.367,-0.031 0.367,-0.168 0.367,-0.25 0,-0.113 -0.078,-0.207 -0.164,-0.328 -0.078,-0.117 -0.141,-0.199 -0.215,-0.281 l -3.176,-3.313 -1.679,3.727 c -0.09,0.175 -0.09,0.195 -0.09,0.215 0,0.23 0.613,0.23 0.687,0.23 0.168,0 0.332,0 0.332,0.277 0,0.008 0,0.176 -0.203,0.176 -0.383,0 -1.324,-0.055 -1.703,-0.055 -0.32,0 -1.129,0.055 -1.445,0.055 -0.102,0 -0.258,-0.039 -0.258,-0.281 0,-0.172 0.168,-0.172 0.348,-0.172 0.734,0 0.785,-0.117 0.91,-0.395 l 1.969,-4.343 -0.571,-2.328 c -0.168,-0.649 -0.179,-0.68 -1.172,-0.7 -0.214,0 -0.379,0 -0.379,-0.269 0,-0.121 0.094,-0.184 0.208,-0.184 0.234,0 0.535,0.039 0.781,0.039 0.25,0 0.613,0.012 0.84,0.012 0.254,0 0.547,-0.012 0.816,-0.012 0.266,0 0.586,-0.039 0.852,-0.039 0.074,0 0.281,0 0.281,0.278 0,0.175 -0.156,0.175 -0.434,0.175 -0.203,0 -0.258,0 -0.484,0.032 -0.242,0.019 -0.281,0.05 -0.281,0.175 0,0.071 0.156,0.684 0.242,1.032 0.101,0.402 0.371,1.507 0.394,1.558 0.047,0.188 0.047,0.215 0.18,0.344 l 3.375,3.555 z"
+         inkscape:connector-curvature="0" /><path
+         id="path3217"
+         style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+         d="m 348.70009,73.684725 0.078,0 0.047,0.004 0.015,0 0.024,0.004 0.019,0 0.047,0.008 0.078,0.016 0.024,0.007 0.015,0.008 0.02,0.008 0.031,0.024 0.016,0.007 0.031,0.032 0.008,0.015 0.008,0.004 0.004,0.012 0.007,0.008 0.004,0.011 0.004,0.008 0.004,0.012 0.004,0.008 0.016,0.047 0,0.066 c 0,0.316 -0.289,0.316 -0.504,0.316 l -7.571,0 c -0.203,0 -0.507,0 -0.507,-0.304 0,-0.321 0.293,-0.321 0.507,-0.321 l 7.571,0 z"
+         inkscape:connector-curvature="0" /><path
+         id="path3219"
+         style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+         d="m 359.65309,77.977725 0.047,0.067 0.043,0.058 0.043,0.063 0.086,0.109 0.046,0.055 0.043,0.047 0.039,0.051 0.043,0.046 0.047,0.043 0.043,0.04 0.043,0.046 0.043,0.036 0.047,0.035 0.043,0.039 0.051,0.031 0.043,0.031 0.047,0.032 0.05,0.023 0.047,0.027 0.153,0.071 0.05,0.015 0.055,0.016 0.055,0.019 0.058,0.012 0.055,0.012 0.063,0.012 0.058,0.007 0.063,0.008 0.066,0.008 c 0.152,0.008 0.285,0.02 0.285,0.277 0,0.039 -0.019,0.176 -0.172,0.176 -0.308,0 -0.703,-0.055 -1.023,-0.055 -0.398,0 -0.934,0.055 -1.313,0.055 -0.117,0 -0.257,-0.039 -0.257,-0.281 0,-0.164 0.179,-0.172 0.23,-0.172 0.406,-0.031 0.52,-0.18 0.52,-0.371 0,-0.176 -0.09,-0.305 -0.231,-0.508 l -4.164,-6.144 -1.156,6.488 c -0.02,0.109 -0.02,0.14 -0.02,0.191 0,0.344 0.707,0.344 0.797,0.344 0.215,0 0.379,0 0.379,0.277 0,0.008 -0.012,0.176 -0.215,0.176 -0.371,0 -1.269,-0.055 -1.64,-0.055 -0.313,0 -1.09,0.055 -1.407,0.055 -0.113,0 -0.257,-0.039 -0.257,-0.281 0,-0.172 0.179,-0.172 0.32,-0.172 0.711,0 0.726,-0.082 0.789,-0.414 l 1.379,-7.715 c 0.051,-0.269 0.062,-0.348 0.308,-0.348 0.239,0 0.301,0.094 0.434,0.278 l 4.844,7.14 z"
+         inkscape:connector-curvature="0" /><path
+         id="path3221"
+         style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+         d="m 365.15709,72.411725 0.008,0.023 0.003,0.016 0.004,0.008 0.004,0.012 0,0.011 0.004,0.008 0.004,0.012 0,0.012 0.004,0.003 0,0.008 0.004,0.012 0,0.016 0.004,0.007 0,0.02 0.004,0.004 0,0.035 c 0,0.199 -0.164,0.316 -0.336,0.316 -0.364,0 -0.438,-0.316 -0.504,-0.562 l -0.188,-0.75 -0.281,-1.133 c -0.035,-0.121 -0.082,-0.316 -0.094,-0.367 -0.007,-0.035 -0.496,-0.887 -1.269,-0.887 -0.418,0 -0.746,0.199 -0.746,0.778 0,0.496 0.273,1.164 0.539,1.816 0.043,0.109 0.109,0.25 0.109,0.406 0,0.442 -0.426,0.805 -0.988,0.805 -0.957,0 -1.465,-1.164 -1.465,-1.406 0,-0.133 0.148,-0.133 0.191,-0.133 0.157,0 0.161,0.043 0.207,0.183 0.196,0.625 0.622,1.043 1.024,1.043 0.18,0 0.273,-0.101 0.273,-0.343 0,-0.184 -0.05,-0.305 -0.117,-0.473 -0.445,-1.086 -0.523,-1.41 -0.523,-1.773 0,-1.004 0.843,-1.219 1.453,-1.219 0.515,0 0.898,0.258 1.125,0.449 -0.133,-0.508 -0.227,-0.91 -0.653,-1.34 -0.21,-0.211 -0.636,-0.562 -1.195,-0.562 -0.168,0 -0.504,0.031 -0.715,0.222 0.41,0.098 0.457,0.453 0.457,0.543 0,0.266 -0.214,0.375 -0.398,0.375 -0.262,0 -0.578,-0.222 -0.578,-0.636 0,-0.457 0.469,-0.809 1.234,-0.809 1.028,0 2.258,0.687 2.551,1.852 l 0.844,3.398 z"
+         inkscape:connector-curvature="0" /><path
+         id="path3223"
+         style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+         d="m 327.60209,65.931725 39.453,0 0,0.746 -39.453,0"
+         inkscape:connector-curvature="0" /><path
+         id="path3225"
+         style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+         d="m 347.89509,62.544725 0.043,0.062 0.043,0.055 0.043,0.062 0.043,0.055 0.047,0.055 0.039,0.055 0.043,0.046 0.043,0.055 0.043,0.047 0.047,0.043 0.043,0.039 0.043,0.043 0.042,0.039 0.043,0.035 0.051,0.035 0.043,0.036 0.094,0.062 0.047,0.023 0.051,0.028 0.047,0.023 0.05,0.024 0.051,0.019 0.109,0.039 0.055,0.012 0.055,0.016 0.117,0.023 0.063,0.008 0.062,0.004 0.066,0.008 c 0.153,0.011 0.286,0.023 0.286,0.277 0,0.043 -0.02,0.18 -0.172,0.18 -0.313,0 -0.703,-0.051 -1.024,-0.051 -0.402,0 -0.937,0.051 -1.312,0.051 -0.121,0 -0.258,-0.039 -0.258,-0.282 0,-0.164 0.176,-0.175 0.226,-0.175 0.407,-0.028 0.524,-0.176 0.524,-0.372 0,-0.175 -0.09,-0.3 -0.231,-0.507 l -4.164,-6.145 -1.152,6.488 c -0.027,0.114 -0.027,0.145 -0.027,0.196 0,0.34 0.707,0.34 0.797,0.34 0.218,0 0.382,0 0.382,0.277 0,0.012 -0.011,0.18 -0.218,0.18 -0.368,0 -1.266,-0.051 -1.641,-0.051 -0.309,0 -1.086,0.051 -1.402,0.051 -0.118,0 -0.258,-0.039 -0.258,-0.282 0,-0.175 0.18,-0.175 0.32,-0.175 0.711,0 0.723,-0.079 0.785,-0.411 l 1.383,-7.714 c 0.051,-0.27 0.063,-0.348 0.309,-0.348 0.238,0 0.301,0.09 0.433,0.277 l 4.848,7.145 z"
+         inkscape:connector-curvature="0" /><path
+         id="path3227"
+         style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+         d="m 350.72709,59.411725 0.004,0.004 0,0.008 0.004,0.004 0,0.011 0.004,0.004 0,0.008 0.004,0.012 0.004,0.008 0,0.007 0.003,0.008 0,0.008 0.004,0.008 0,0.012 0.004,0.003 0,0.012 0.004,0.008 0,0.023 0.004,0.008 0,0.031 c 0,0.153 -0.141,0.153 -0.281,0.149 l -1.117,-0.086 c -0.161,-0.004 -0.176,-0.016 -0.219,-0.051 -0.035,-0.047 -0.063,-0.156 -0.063,-0.215 0,-0.152 0.145,-0.152 0.274,-0.152 0.008,0 0.172,0 0.305,-0.012 0.171,-0.019 0.183,-0.05 0.183,-0.121 0,-0.031 0,-0.047 -0.047,-0.207 l -1.25,-5.012 c -0.035,-0.136 -0.035,-0.156 -0.035,-0.21 0,-0.211 0.156,-0.329 0.34,-0.329 0.184,0 0.383,0.137 0.441,0.356 0.024,0.09 0.063,0.219 0.196,0.797 l 0.168,0.629 c 0.132,0.547 0.132,0.562 0.386,0.949 0.368,0.566 0.91,1.074 1.629,1.074 0.461,0 0.629,-0.266 0.629,-0.648 0,-0.516 -0.383,-1.485 -0.515,-1.801 -0.137,-0.324 -0.161,-0.399 -0.161,-0.555 0,-0.472 0.454,-0.801 0.985,-0.801 0.965,0 1.465,1.184 1.465,1.414 0,0.122 -0.153,0.122 -0.192,0.122 -0.156,0 -0.164,-0.032 -0.219,-0.211 -0.156,-0.496 -0.562,-1.012 -1.015,-1.012 -0.207,0 -0.274,0.141 -0.274,0.344 0,0.179 0.11,0.441 0.192,0.664 0.101,0.246 0.5,1.23 0.5,1.715 0,0.625 -0.43,1.082 -1.356,1.082 -0.894,0 -1.422,-0.579 -1.695,-0.872 l 0.707,2.813 z"
+         inkscape:connector-curvature="0" /><text
+         id="text3229"
+         transform="scale(1,-1)"
+         x="172.06654"
+         y="-153.69397"><tspan
+           id="tspan3231"
+           sodipodi:role="line"
+           y="-153.69397"
+           x="172.06654 180.7673 187.30644 193.38937 200.38474 210.68227 217.10193 224.12987 228.48569 231.92905 238.05542 241.52052 247.99449 251.43787 259.10669 262.57178 268.99146 278.27878 281.72214 286.07794 292.6171 296.06046 304.76123 308.22632 313.8313 320.7832 324.24832 330.72229 336.84866 340.29202 344.52835 351.96909"
+           style="font-size:10.86236668px;font-variant:normal;font-weight:normal;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:DejaVu Serif;-inkscape-font-specification:DejaVuSerif">Document via View to Display (S)</tspan></text>
+<path
+         id="path3233"
+         style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+         d="m 180.172,112.271 0,0.035 -0.004,0.008 -0.004,0.003 -0.004,0.008 0,0.004 -0.008,0.012 -0.004,0.004 -0.003,0.008 -0.008,0.011 -0.008,0.008 -0.004,0.008 -0.012,0.012 -0.004,0.008 -0.004,0.003 -0.003,0.008 -0.008,0.004 -0.004,0.008 -0.02,0.019 -0.004,0.008 -0.011,0.008 -0.004,0.008 -0.008,0.008 -0.012,0.008 -0.004,0.011 -0.007,0.008 -0.012,0.008 -0.008,0.008 -0.008,0.011 -0.031,0.032 -0.012,0.007 -0.023,0.024 c -1.828,1.848 -2.293,4.613 -2.293,6.851 0,2.547 0.555,5.098 2.351,6.926 0.188,0.18 0.188,0.207 0.188,0.25 0,0.106 -0.051,0.145 -0.141,0.145 -0.144,0 -1.461,-0.992 -2.328,-2.852 -0.746,-1.613 -0.922,-3.238 -0.922,-4.469 0,-1.144 0.16,-2.91 0.965,-4.566 0.875,-1.801 2.141,-2.75 2.285,-2.75 0.09,0 0.141,0.039 0.141,0.145 z" /><path
+         id="path3235"
+         style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+         d="m 186.895,121.435 2.007,2.945 c 0.321,0.469 0.817,0.937 2.121,0.949 l 0,0.457 c -0.57,-0.015 -1.257,-0.047 -1.628,-0.047 -0.579,0 -1.29,0 -1.872,0.047 l 0,-0.457 c 0.582,-0.012 0.911,-0.336 0.911,-0.672 0,-0.148 -0.036,-0.175 -0.133,-0.336 l -1.672,-2.476 -1.887,2.824 c -0.027,0.047 -0.101,0.168 -0.101,0.219 0,0.179 0.32,0.429 0.949,0.441 l 0,0.457 c -0.516,-0.047 -1.582,-0.047 -2.141,-0.047 -0.449,0 -1.359,0.012 -1.898,0.047 l 0,-0.457 0.277,0 c 0.805,0 1.086,-0.097 1.36,-0.515 l 2.695,-4.067 -2.399,-3.543 c -0.211,-0.293 -0.644,-0.965 -2.125,-0.965 l 0,-0.457 c 0.524,0.016 1.141,0.047 1.621,0.047 0.543,0 1.352,0 1.883,-0.047 l 0,0.457 c -0.679,0.012 -0.925,0.411 -0.925,0.672 0,0.129 0.042,0.188 0.144,0.352 l 2.078,3.078 2.313,-3.504 c 0.035,-0.059 0.074,-0.117 0.074,-0.156 0,-0.18 -0.32,-0.43 -0.949,-0.442 l 0,-0.457 c 0.507,0.047 1.578,0.047 2.132,0.047 0.618,0 1.293,-0.019 1.911,-0.047 l 0,0.457 -0.286,0 c -0.753,0 -1.062,0.075 -1.371,0.528 l -3.089,4.668 z" /><path
+         id="path3237"
+         style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+         d="m 194.945,115.798 0,0.086 -0.004,0.086 -0.003,0.082 -0.008,0.082 -0.008,0.074 -0.012,0.078 -0.012,0.074 -0.015,0.075 -0.016,0.066 -0.039,0.133 -0.023,0.062 -0.024,0.059 -0.027,0.059 -0.027,0.05 -0.028,0.055 -0.031,0.047 -0.035,0.047 -0.035,0.043 -0.036,0.039 -0.074,0.074 -0.043,0.027 -0.039,0.032 -0.047,0.027 -0.047,0.02 -0.046,0.015 -0.047,0.02 -0.051,0.011 -0.051,0.008 -0.109,0.008 c -0.508,0 -0.778,-0.395 -0.778,-0.777 0,-0.383 0.25,-0.778 0.778,-0.778 0.234,0 0.41,0.09 0.558,0.207 l 0.028,0.032 c 0.015,0 0.031,-0.016 0.031,-0.223 0,-0.938 -0.41,-1.828 -1.051,-2.52 -0.094,-0.086 -0.105,-0.105 -0.105,-0.156 0,-0.105 0.07,-0.164 0.144,-0.164 0.176,0 1.332,1.16 1.332,2.84 z" /><path
+         id="path3239"
+         style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+         d="m 209.898,124.38 0.055,0.078 0.051,0.078 0.058,0.074 0.055,0.067 0.059,0.062 0.058,0.059 0.059,0.055 0.062,0.05 0.063,0.047 0.125,0.086 0.062,0.035 0.067,0.036 0.062,0.027 0.063,0.031 0.066,0.024 0.063,0.023 0.066,0.02 0.063,0.019 0.062,0.016 0.059,0.011 0.125,0.024 0.058,0.004 0.055,0.008 0.059,0.007 0.054,0.004 0.055,0 0.047,0.004 0.144,0 0,0.457 c -0.453,-0.035 -1.039,-0.047 -1.433,-0.047 -0.457,0 -1.305,0.032 -1.684,0.047 l 0,-0.457 c 0.598,0 0.836,-0.277 0.836,-0.566 0,-0.16 -0.09,-0.356 -0.148,-0.442 l -2.418,-3.925 -2.645,4.32 c -0.109,0.144 -0.109,0.172 -0.109,0.246 0,0.309 0.371,0.367 1.023,0.367 l 0,0.457 c -0.523,-0.047 -1.59,-0.047 -2.16,-0.047 -0.617,0 -1.293,0.012 -1.906,0.047 l 0,-0.457 0.262,0 c 0.996,0 1.113,-0.16 1.347,-0.539 l 3.074,-5.012 0,-2.851 c 0,-0.527 -0.027,-0.688 -1.152,-0.688 l -0.355,0 0,-0.457 c 0.531,0.047 1.566,0.047 2.14,0.047 0.571,0 1.61,0 2.137,-0.047 l 0,0.457 -0.336,0 c -1.129,0 -1.172,0.149 -1.172,0.715 l 0,2.824 2.824,4.602 z" /><path
+         id="path3241"
+         style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+         d="m 216.164,119.442 0,0.11 -0.004,0.113 0,0.117 -0.004,0.118 -0.011,0.25 -0.02,0.257 -0.023,0.27 -0.032,0.281 -0.039,0.285 -0.047,0.297 -0.058,0.297 -0.067,0.305 -0.078,0.308 -0.093,0.313 -0.102,0.312 -0.113,0.317 -0.063,0.152 -0.066,0.156 -0.071,0.157 -0.074,0.156 c -0.879,1.797 -2.137,2.75 -2.281,2.75 -0.09,0 -0.148,-0.055 -0.148,-0.145 0,-0.043 0,-0.07 0.277,-0.336 1.437,-1.445 2.273,-3.777 2.273,-6.84 0,-2.5 -0.543,-5.078 -2.363,-6.925 -0.187,-0.172 -0.187,-0.203 -0.187,-0.246 0,-0.086 0.058,-0.145 0.148,-0.145 0.144,0 1.461,0.996 2.328,2.852 0.742,1.609 0.918,3.234 0.918,4.464 z" /><path
+         id="path3243"
+         style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+         d="m 297.199,111.294 0,0.035 -0.004,0.008 0,0.004 -0.007,0.008 -0.012,0.023 -0.008,0.012 -0.004,0.008 -0.016,0.023 -0.011,0.012 -0.008,0.012 -0.012,0.015 -0.008,0.008 -0.004,0.008 -0.023,0.023 -0.008,0.012 -0.015,0.016 -0.008,0.011 -0.012,0.008 -0.008,0.012 -0.023,0.023 -0.008,0.012 -0.133,0.133 c -2.445,2.469 -3.07,6.168 -3.07,9.164 0,3.41 0.742,6.82 3.148,9.262 0.254,0.242 0.254,0.281 0.254,0.339 0,0.137 -0.074,0.192 -0.191,0.192 -0.196,0 -1.957,-1.328 -3.113,-3.813 -1.004,-2.156 -1.235,-4.332 -1.235,-5.98 0,-1.527 0.211,-3.891 1.289,-6.109 1.172,-2.411 2.863,-3.68 3.059,-3.68 0.117,0 0.191,0.055 0.191,0.199 z" /><path
+         id="path3245"
+         style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+         d="m 310.949,129.603 0,0.015 -0.004,0.004 0,0.016 -0.004,0.008 0,0.007 -0.003,0.008 0,0.008 -0.02,0.039 -0.008,0.008 -0.004,0.008 -0.015,0.015 -0.004,0.008 -0.008,0.008 -0.012,0.004 -0.008,0.008 -0.007,0.004 -0.012,0.007 -0.024,0.008 -0.004,0.004 -0.007,0 -0.004,0.004 -0.016,0 -0.008,0.004 -0.043,0 c -0.101,0 -0.125,-0.016 -0.359,-0.297 l -0.937,-1.113 c -0.508,0.918 -1.532,1.41 -2.801,1.41 -2.489,0 -4.836,-2.254 -4.836,-4.625 0,-1.582 1.039,-2.488 2.031,-2.773 l 2.098,-0.555 c 0.722,-0.172 1.804,-0.469 1.804,-2.078 0,-1.762 -1.609,-3.598 -3.523,-3.598 -1.254,0 -3.43,0.43 -3.43,2.856 0,0.472 0.102,0.941 0.117,1.058 0.02,0.078 0.04,0.098 0.04,0.137 0,0.199 -0.141,0.219 -0.239,0.219 -0.097,0 -0.133,-0.02 -0.195,-0.082 -0.078,-0.079 -1.172,-4.543 -1.172,-4.598 0,-0.117 0.098,-0.195 0.215,-0.195 0.101,0 0.117,0.015 0.351,0.293 l 0.961,1.109 c 0.844,-1.137 2.172,-1.402 3.309,-1.402 2.664,0 4.973,2.601 4.973,5.027 0,1.351 -0.661,2.019 -0.957,2.293 -0.45,0.453 -0.746,0.523 -2.489,0.98 -0.429,0.118 -1.133,0.317 -1.316,0.352 -0.527,0.176 -1.191,0.742 -1.191,1.781 0,1.59 1.57,3.254 3.429,3.254 1.629,0 2.821,-0.84 2.821,-3.039 0,-0.625 -0.083,-0.98 -0.083,-1.094 0,-0.019 0,-0.195 0.243,-0.195 0.195,0 0.214,0.059 0.285,0.394 l 1.066,4.286 z" /><path
+         id="path3247"
+         style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+         d="m 317.961,118.298 1.305,1.305 c 1.746,1.726 2.281,2.261 3.515,2.328 0.18,0.011 0.348,0.011 0.348,0.285 0,0.164 -0.152,0.207 -0.195,0.207 -0.395,0 -0.875,-0.055 -1.289,-0.055 -0.356,0 -1.235,0.055 -1.586,0.055 -0.114,0 -0.282,-0.043 -0.282,-0.305 0,-0.011 0,-0.176 0.211,-0.187 0.121,-0.012 0.469,-0.043 0.469,-0.348 0,-0.199 -0.211,-0.418 -0.348,-0.555 -0.109,-0.101 -1.847,-1.793 -2.359,-2.316 l -1.379,2.684 c -0.023,0.043 -0.066,0.132 -0.066,0.187 0,0.102 0.254,0.317 0.722,0.348 0.098,0 0.289,0.011 0.289,0.297 0,0.019 -0.011,0.195 -0.234,0.195 -0.285,0 -0.625,-0.043 -0.914,-0.043 -0.289,0 -0.602,-0.012 -0.891,-0.012 -0.23,0 -0.566,0 -0.808,0.012 -0.239,0.02 -0.52,0.043 -0.739,0.043 -0.07,0 -0.289,0 -0.289,-0.305 0,-0.187 0.176,-0.187 0.399,-0.187 0.793,0 0.859,-0.137 0.992,-0.414 l 1.922,-3.782 -0.766,-0.761 c -0.261,-0.254 -0.902,-0.867 -1.156,-1.125 -1.668,-1.66 -2.227,-2.239 -3.461,-2.293 -0.191,-0.012 -0.34,-0.012 -0.34,-0.297 0,-0.055 0.039,-0.192 0.192,-0.192 0.394,0 0.859,0.055 1.273,0.055 0.231,0 0.574,0 0.809,-0.012 0.246,-0.019 0.547,-0.043 0.781,-0.043 0.066,0 0.289,0 0.289,0.29 0,0.187 -0.168,0.199 -0.254,0.199 -0.133,0.019 -0.426,0.054 -0.426,0.347 0,0.219 0.184,0.399 0.481,0.7 l 2.785,2.726 1.66,-3.25 c 0.067,-0.133 0.078,-0.164 0.078,-0.176 0,-0.082 -0.246,-0.304 -0.726,-0.347 -0.125,-0.012 -0.301,-0.012 -0.301,-0.297 0,-0.016 0.012,-0.192 0.234,-0.192 0.289,0 0.629,0.043 0.914,0.043 0.289,0 0.61,0.012 0.891,0.012 0.234,0 0.566,0 0.812,-0.012 0.235,-0.019 0.52,-0.043 0.739,-0.043 0.066,0 0.285,0 0.285,0.301 0,0.188 -0.176,0.188 -0.391,0.188 -0.801,0 -0.867,0.156 -0.988,0.39 l -2.207,4.352 z" /><path
+         id="path3249"
+         style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+         d="m 329.227,116.009 0,0.121 -0.008,0.117 -0.004,0.113 -0.012,0.11 -0.012,0.105 -0.015,0.102 -0.016,0.105 -0.019,0.094 -0.024,0.094 -0.027,0.09 -0.028,0.086 -0.027,0.082 -0.039,0.078 -0.035,0.078 -0.035,0.074 -0.039,0.067 -0.086,0.125 -0.047,0.054 -0.047,0.051 -0.051,0.051 -0.051,0.043 -0.054,0.039 -0.059,0.039 -0.058,0.035 -0.063,0.027 -0.062,0.024 -0.063,0.019 -0.066,0.016 -0.067,0.012 -0.14,0.007 c -0.645,0 -1.039,-0.492 -1.039,-1.039 0,-0.527 0.394,-1.039 1.039,-1.039 0.234,0 0.492,0.078 0.687,0.254 0.055,0.043 0.078,0.063 0.098,0.063 0.019,0 0.039,-0.02 0.039,-0.297 0,-1.449 -0.684,-2.625 -1.336,-3.27 -0.211,-0.211 -0.211,-0.254 -0.211,-0.312 0,-0.141 0.098,-0.215 0.195,-0.215 0.211,0 1.782,1.508 1.782,3.797 z" /><path
+         id="path3251"
+         style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+         d="m 346.566,129.603 0,0.015 -0.004,0.004 0,0.024 -0.007,0.015 0,0.008 -0.02,0.039 -0.008,0.008 -0.004,0.008 -0.007,0.008 -0.004,0.007 -0.016,0.016 -0.012,0.004 -0.007,0.008 -0.008,0.004 -0.012,0.007 -0.023,0.008 -0.004,0.004 -0.008,0 -0.004,0.004 -0.016,0 -0.004,0.004 -0.046,0 c -0.098,0 -0.122,-0.016 -0.36,-0.297 l -0.937,-1.113 c -0.508,0.918 -1.532,1.41 -2.801,1.41 -2.488,0 -4.836,-2.254 -4.836,-4.625 0,-1.582 1.039,-2.488 2.035,-2.773 l 2.094,-0.555 c 0.726,-0.172 1.808,-0.469 1.808,-2.078 0,-1.762 -1.613,-3.598 -3.527,-3.598 -1.254,0 -3.426,0.43 -3.426,2.856 0,0.472 0.098,0.941 0.118,1.058 0.015,0.078 0.035,0.098 0.035,0.137 0,0.199 -0.133,0.219 -0.235,0.219 -0.097,0 -0.136,-0.02 -0.195,-0.082 -0.082,-0.079 -1.176,-4.543 -1.176,-4.598 0,-0.117 0.098,-0.195 0.219,-0.195 0.098,0 0.117,0.015 0.348,0.293 l 0.964,1.109 c 0.84,-1.137 2.168,-1.402 3.305,-1.402 2.664,0 4.973,2.601 4.973,5.027 0,1.351 -0.66,2.019 -0.953,2.293 -0.45,0.453 -0.746,0.523 -2.489,0.98 -0.433,0.118 -1.136,0.317 -1.316,0.352 -0.527,0.176 -1.191,0.742 -1.191,1.781 0,1.59 1.566,3.254 3.425,3.254 1.629,0 2.821,-0.84 2.821,-3.039 0,-0.625 -0.078,-0.98 -0.078,-1.094 0,-0.019 0,-0.195 0.238,-0.195 0.195,0 0.215,0.059 0.289,0.394 l 1.062,4.286 z" /><path
+         id="path3253"
+         style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+         d="m 355.246,120.782 0.203,0.196 0.047,0.05 0.102,0.094 0.054,0.047 0.102,0.086 0.055,0.047 0.054,0.039 0.051,0.043 0.059,0.043 0.058,0.039 0.055,0.039 c 0.559,0.383 1.066,0.414 1.246,0.426 0.148,0.011 0.313,0.011 0.313,0.297 0,0.101 -0.083,0.195 -0.192,0.195 -0.344,0 -0.754,-0.055 -1.109,-0.055 -0.438,0 -1.012,0.055 -1.426,0.055 -0.066,0 -0.273,0 -0.273,-0.305 0,-0.176 0.183,-0.187 0.25,-0.187 0.394,-0.031 0.394,-0.176 0.394,-0.262 0,-0.129 -0.086,-0.23 -0.176,-0.359 -0.086,-0.121 -0.152,-0.215 -0.23,-0.301 l -3.43,-3.574 -1.808,4.015 c -0.098,0.192 -0.098,0.219 -0.098,0.235 0,0.246 0.66,0.246 0.742,0.246 0.184,0 0.359,0 0.359,0.297 0,0.019 0,0.195 -0.218,0.195 -0.414,0 -1.43,-0.055 -1.836,-0.055 -0.348,0 -1.219,0.055 -1.563,0.055 -0.109,0 -0.281,-0.043 -0.281,-0.305 0,-0.187 0.184,-0.187 0.379,-0.187 0.789,0 0.844,-0.121 0.984,-0.426 l 2.121,-4.684 -0.617,-2.507 c -0.179,-0.704 -0.191,-0.739 -1.262,-0.758 -0.23,0 -0.41,0 -0.41,-0.285 0,-0.137 0.102,-0.204 0.223,-0.204 0.254,0 0.578,0.043 0.844,0.043 0.269,0 0.66,0.012 0.906,0.012 0.273,0 0.59,-0.012 0.879,-0.012 0.289,0 0.633,-0.043 0.922,-0.043 0.078,0 0.301,0 0.301,0.301 0,0.188 -0.168,0.188 -0.469,0.188 -0.219,0 -0.278,0 -0.524,0.031 -0.257,0.023 -0.3,0.055 -0.3,0.191 0,0.082 0.168,0.739 0.257,1.114 0.114,0.433 0.403,1.625 0.43,1.679 0.051,0.207 0.051,0.239 0.191,0.371 l 3.641,3.84 z" /><path
+         id="path3255"
+         style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+         d="m 365.16,120.884 0,0.148 -0.004,0.153 0,0.152 -0.008,0.16 -0.015,0.332 -0.028,0.344 -0.031,0.363 -0.043,0.375 -0.051,0.379 -0.062,0.399 -0.078,0.402 -0.09,0.402 -0.105,0.414 -0.118,0.418 -0.14,0.418 -0.153,0.422 -0.086,0.207 -0.086,0.211 -0.093,0.207 -0.102,0.207 c -1.172,2.406 -2.855,3.68 -3.055,3.68 -0.113,0 -0.195,-0.074 -0.195,-0.192 0,-0.058 0,-0.097 0.371,-0.453 1.922,-1.933 3.043,-5.05 3.043,-9.148 0,-3.344 -0.726,-6.793 -3.156,-9.262 -0.258,-0.23 -0.258,-0.273 -0.258,-0.328 0,-0.121 0.082,-0.199 0.195,-0.199 0.2,0 1.958,1.332 3.122,3.82 0.992,2.149 1.226,4.324 1.226,5.969 z" /><g
+         id="g3395"
+         transform="matrix(1.6358217,0,0,1.6358217,76.543153,-206.72299)"><g
+           word-spacing="normal"
+           letter-spacing="normal"
+           font-size-adjust="none"
+           font-stretch="normal"
+           font-weight="normal"
+           font-variant="normal"
+           font-style="normal"
+           stroke-miterlimit="10.433"
+           xml:space="preserve"
+           transform="matrix(0.36192294,0,0,-0.36192294,-63.336515,350.78762)"
+           id="content"
+           style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;stroke:#000000;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.43299961;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"><path
+             id="path3398"
+             d="m 460.25,417.65 0.03,0 0.04,0 0.04,0 0.04,0 0.04,0.01 0.05,0 0.05,0 0.06,0.01 0.05,0 0.06,0.01 0.06,0.01 0.05,0.01 0.06,0.02 0.06,0.02 0.06,0.02 0.06,0.02 0.06,0.02 0.06,0.03 0.05,0.03 0.05,0.04 0.05,0.03 0.05,0.05 0.03,0.02 0.02,0.02 0.02,0.03 0.02,0.02 0.02,0.03 0.02,0.03 0.02,0.03 0.01,0.03 0.02,0.03 0.01,0.03 0.02,0.04 0.01,0.03 0.01,0.04 0.01,0.04 0.01,0.04 0,0.04 0.01,0.04 0,0.04 0,0.05 0,0.04 c 0,1 -1.09,1 -1.39,1 v 6.53 c 0,0.8 0,1.74 -1,1.74 -1,0 -1,-0.94 -1,-1.74 v -15.04 c 0,-0.8 0,-1.75 1,-1.75 1,0 1,0.95 1,1.75 z"
+             inkscape:connector-curvature="0"
+             style="fill:#000000;stroke-width:0" /><path
+             id="path3400"
+             d="m 497.07,417.65 -0.26,-0.19 -0.24,-0.2 -0.24,-0.19 -0.22,-0.2 -0.23,-0.19 -0.21,-0.19 -0.2,-0.19 -0.2,-0.19 -0.19,-0.18 -0.18,-0.18 -0.18,-0.18 -0.17,-0.18 -0.16,-0.17 -0.15,-0.17 -0.15,-0.17 -0.14,-0.16 -0.13,-0.15 -0.13,-0.16 -0.12,-0.15 -0.11,-0.14 -0.11,-0.14 -0.1,-0.13 -0.09,-0.13 -0.09,-0.12 -0.08,-0.11 -0.08,-0.11 -0.07,-0.11 -0.06,-0.09 -0.06,-0.09 -0.05,-0.08 -0.05,-0.07 -0.04,-0.07 c -2.23,-3.44 -2.64,-6.58 -2.64,-6.62 0,-0.6 0.61,-0.6 1,-0.6 0.85,0 0.89,0.1 1.1,1 1.15,4.88 4.09,9.06 9.71,11.36 0.6,0.19 0.75,0.3 0.75,0.64 0,0.35 -0.29,0.5 -0.4,0.55 -2.19,0.84 -8.22,3.34 -10.11,11.72 -0.16,0.59 -0.2,0.73 -1.05,0.73 -0.39,0 -1,0 -1,-0.59 0,-0.1 0.45,-3.24 2.55,-6.58 1,-1.48 2.44,-3.23 4.58,-4.83 h -37.02 c -0.89,0 -1.8,0 -1.8,-1 0,-1 0.91,-1 1.8,-1 z"
+             inkscape:connector-curvature="0"
+             style="fill:#000000;stroke-width:0" /></g></g><text
+         xml:space="preserve"
+         style="font-size:9.60000038px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;font-family:DejaVu Serif;-inkscape-font-specification:DejaVu Serif"
+         x="255.02881"
+         y="-125.27075"
+         id="text3540"
+         sodipodi:linespacing="125%"
+         transform="scale(1,-1)"><tspan
+           sodipodi:role="line"
+           id="tspan3542"
+           x="255.02881"
+           y="-125.27075">V</tspan></text>
+</g></g></svg>
\ No newline at end of file
index a107e4b..8242466 100644 (file)
Binary files a/figures/view_transformation_fail.pdf and b/figures/view_transformation_fail.pdf differ
index cbe1ae0..2d43fb6 100644 (file)
      borderopacity="1.0"
      inkscape:pageopacity="0.0"
      inkscape:pageshadow="2"
-     inkscape:zoom="0.7"
-     inkscape:cx="339.14655"
-     inkscape:cy="18.469407"
+     inkscape:zoom="0.98994949"
+     inkscape:cx="464.93962"
+     inkscape:cy="279.91133"
      inkscape:document-units="px"
-     inkscape:current-layer="g10198"
+     inkscape:current-layer="g10196"
      showgrid="false"
-     inkscape:window-width="1280"
-     inkscape:window-height="996"
+     inkscape:window-width="1366"
+     inkscape:window-height="692"
      inkscape:window-x="0"
-     inkscape:window-y="0"
+     inkscape:window-y="24"
      inkscape:window-maximized="1"
      showguides="true"
      inkscape:guide-bbox="true"
          font-stretch="normal"
          font-size-adjust="none"
          letter-spacing="normal"
-         word-spacing="normal"><g
-           id="g8236"><path
-             id="path7154"
-             d="m 434.98218,466.30201 0,0.0138 0,0.0138 0,0.007 -0.007,0.0138 0,0.0138 0,0.0138 -0.007,0.0138 0,0.0138 -0.007,0.0138 -0.007,0.0138 -0.007,0.0138 -0.007,0.0138 -0.007,0.0138 -0.007,0.0138 -0.007,0.0138 -0.0138,0.0138 -0.0138,0.0138 -0.007,0.0138 -0.0138,0.0138 -0.0138,0.0138 -0.0138,0.007 -0.0207,0.0138 -0.0138,0.007 -0.0208,0.0138 -0.0138,0.007 -0.0207,0.007 -0.0138,0.007 -0.007,0 -0.0138,0.007 -0.0138,0 -0.007,0 -0.0138,0.007 -0.0138,0 -0.0138,0 -0.0138,0 -0.0138,0 -0.0138,0 -0.0138,0 c -0.17308,0 -0.21462,-0.0277 -0.6231,-0.51926 l -1.65471,-1.96627 c -0.90006,1.62009 -2.69324,2.48553 -4.93644,2.48553 -4.38256,0 -8.51587,-3.96715 -8.51587,-8.142 0,-2.79016 1.83471,-4.38256 3.58636,-4.88797 l 3.68328,-0.97621 c 1.28084,-0.30464 3.1848,-0.82389 3.1848,-3.6556 0,-3.10864 -2.83862,-6.3419 -6.21035,-6.3419 -2.2086,0 -6.03727,0.76159 -6.03727,5.03337 0,0.83081 0.17308,1.65471 0.20771,1.86241 0.0277,0.13847 0.0623,0.17309 0.0623,0.24232 0,0.34618 -0.23541,0.3808 -0.40849,0.3808 -0.17309,0 -0.24232,-0.0346 -0.34617,-0.13848 -0.1454,-0.13846 -2.07012,-8.00352 -2.07012,-8.10046 0,-0.2077 0.17309,-0.34617 0.38079,-0.34617 0.17309,0 0.2077,0.0277 0.61619,0.51926 l 1.69625,1.95242 c 1.48162,-2.00089 3.82176,-2.47168 5.82264,-2.47168 4.69411,0 8.76511,4.58334 8.76511,8.85513 0,2.38166 -1.17007,3.55865 -1.68932,4.03637 -0.78928,0.80313 -1.30854,0.92775 -4.38256,1.73088 -0.75466,0.20769 -2.00088,0.55387 -2.31244,0.61619 -0.93467,0.31155 -2.09781,1.30853 -2.09781,3.13632 0,2.80401 2.75554,5.73264 6.03034,5.73264 2.87324,0 4.97106,-1.48163 4.97106,-5.35184 0,-1.10084 -0.1454,-1.72395 -0.1454,-1.92472 0,-0.0346 0,-0.34619 0.42233,-0.34619 0.34617,0 0.3808,0.10388 0.51234,0.69236 z"
-             inkscape:connector-curvature="0"
-             style="fill:#000000;stroke-width:0" /><path
-             id="path7156"
-             d="m 447.33365,446.39703 2.29168,2.29859 c 3.08094,3.0394 4.02253,3.981 6.19651,4.0987 0.31848,0.0207 0.60926,0.0207 0.60926,0.5054 0,0.28387 -0.27002,0.36003 -0.34618,0.36003 -0.69234,0 -1.537,-0.097 -2.26397,-0.097 -0.62311,0 -2.17397,0.097 -2.804,0.097 -0.19386,0 -0.48465,-0.0762 -0.48465,-0.53311 0,-0.0207 0,-0.31156 0.36695,-0.33232 0.21462,-0.0208 0.82389,-0.0762 0.82389,-0.60927 0,-0.35309 -0.36695,-0.74081 -0.60927,-0.98313 -0.19386,-0.17309 -3.25402,-3.15711 -4.15408,-4.07793 l -2.43014,4.72873 c -0.0415,0.0761 -0.1177,0.2354 -0.1177,0.33233 0,0.17309 0.45003,0.55388 1.27392,0.60927 0.17308,0 0.51234,0.0207 0.51234,0.52618 0,0.0277 -0.0277,0.33925 -0.41541,0.33925 -0.50541,0 -1.10083,-0.0762 -1.61317,-0.0762 -0.50542,0 -1.05929,-0.0208 -1.5647,-0.0208 -0.41541,0 -0.99699,0 -1.42624,0.0208 -0.41541,0.0346 -0.9139,0.0762 -1.30161,0.0762 -0.1177,0 -0.50541,0 -0.50541,-0.53311 0,-0.33232 0.31155,-0.33232 0.69926,-0.33232 1.39854,0 1.51625,-0.24232 1.75165,-0.72697 l 3.38557,-6.66038 -1.35008,-1.34316 c -0.46387,-0.4431 -1.5924,-1.52316 -2.03549,-1.9801 -2.94248,-2.92171 -3.92562,-3.93947 -6.09958,-4.03639 -0.33234,-0.0208 -0.59542,-0.0208 -0.59542,-0.52618 0,-0.097 0.0624,-0.33926 0.33925,-0.33926 0.69235,0 1.50931,0.097 2.23627,0.097 0.4085,0 1.01776,0 1.42624,-0.0208 0.43618,-0.0346 0.96236,-0.0761 1.37777,-0.0761 0.1177,0 0.50542,0 0.50542,0.51235 0,0.33232 -0.29079,0.35309 -0.44311,0.35309 -0.23539,0.0346 -0.74772,0.097 -0.74772,0.60927 0,0.38771 0.31847,0.69926 0.84466,1.23238 l 4.90181,4.80488 2.9217,-5.72571 c 0.1177,-0.23539 0.13848,-0.29078 0.13848,-0.31155 0,-0.1454 -0.42926,-0.53311 -1.27392,-0.60927 -0.22156,-0.0208 -0.53311,-0.0208 -0.53311,-0.52618 0,-0.0277 0.0207,-0.33926 0.41541,-0.33926 0.50541,0 1.10776,0.0761 1.60624,0.0761 0.51234,0 1.07314,0.0208 1.57164,0.0208 0.40848,0 0.99697,0 1.42623,-0.0208 0.40848,-0.0346 0.92082,-0.0761 1.30161,-0.0761 0.1177,0 0.50541,0 0.50541,0.53311 0,0.33233 -0.31155,0.33233 -0.69234,0.33233 -1.40547,0 -1.52317,0.27001 -1.7378,0.68543 z"
-             inkscape:connector-curvature="0"
-             style="fill:#000000;stroke-width:0" /><path
-             id="path7158"
-             d="m 493.4232,453.6182 0.097,0 0.10387,0 0.097,0 0.0553,0.007 0.0484,0 0.0484,0.007 0.0484,0.007 0.0484,0.007 0.0484,0.007 0.0484,0.007 0.0484,0.0138 0.0415,0.0138 0.0415,0.0138 0.0415,0.0138 0.0415,0.0207 0.0415,0.0208 0.0346,0.0277 0.0346,0.0208 0.0346,0.0346 0.0277,0.0277 0.0277,0.0346 0.0138,0.0207 0.0138,0.0208 0.007,0.0138 0.0138,0.0207 0.007,0.0208 0.0138,0.0277 0.007,0.0207 0.007,0.0277 0.007,0.0207 0.007,0.0277 0.007,0.0277 0,0.0277 0.007,0.0277 0,0.0277 0,0.0277 0,0.0346 c 0,0.69235 -0.65772,0.69235 -1.13544,0.69235 h -20.65964 c -0.49157,0 -1.13545,0 -1.13545,-0.69235 0,-0.6785 0.64388,-0.6785 1.16314,-0.6785 z"
-             inkscape:connector-curvature="0"
-             style="fill:#000000;stroke-width:0" /><path
-             id="path7160"
-             d="m 493.45783,446.91628 0.0484,0 0.0415,0 0.097,0.007 0.097,0 0.0484,0 0.0484,0.007 0.0484,0.007 0.0484,0 0.0415,0.007 0.0484,0.0138 0.0484,0.007 0.0415,0.0138 0.0484,0.0138 0.0415,0.0138 0.0415,0.0138 0.0415,0.0207 0.0346,0.0208 0.0346,0.0277 0.0346,0.0277 0.0346,0.0277 0.0277,0.0346 0.0138,0.0138 0.0138,0.0207 0.0138,0.0138 0.0138,0.0208 0.007,0.0207 0.0138,0.0208 0.007,0.0208 0.0138,0.0207 0.007,0.0277 0.007,0.0208 0.007,0.0277 0.007,0.0277 0.007,0.0277 0,0.0277 0.007,0.0277 0,0.0277 0,0.0346 0,0.0277 c 0,0.69235 -0.65773,0.69235 -1.17007,0.69235 h -20.59732 c -0.51926,0 -1.16314,0 -1.16314,-0.69235 0,-0.69235 0.64388,-0.69235 1.13544,-0.69235 z"
-             inkscape:connector-curvature="0"
-             style="fill:#000000;stroke-width:0" /><path
-             id="path7162"
-             d="m 523.67877,465.67197 2.2986,2.2986 c 3.08095,3.0394 4.02254,3.98099 6.19651,4.09869 0.31156,0.0208 0.60234,0.0208 0.60234,0.50541 0,0.28386 -0.27002,0.36002 -0.34617,0.36002 -0.69235,0 -1.53009,-0.097 -2.25705,-0.097 -0.63004,0 -2.17398,0.097 -2.80401,0.097 -0.19386,0 -0.48464,-0.0761 -0.48464,-0.5331 0,-0.0208 0,-0.31156 0.36694,-0.33233 0.21463,-0.0207 0.82389,-0.0761 0.82389,-0.60927 0,-0.35309 -0.36694,-0.74081 -0.60926,-0.98313 -0.19386,-0.17309 -3.25403,-3.15711 -4.15409,-4.07793 l -2.43014,4.72874 c -0.0484,0.0761 -0.12462,0.2354 -0.12462,0.33232 0,0.17309 0.45695,0.55388 1.28084,0.60927 0.1731,0 0.50542,0.0208 0.50542,0.52619 0,0.0277 -0.0208,0.33924 -0.40848,0.33924 -0.51234,0 -1.10084,-0.0761 -1.61318,-0.0761 -0.5054,0 -1.05928,-0.0207 -1.5647,-0.0207 -0.4154,0 -0.99698,0 -1.43316,0.0207 -0.40848,0.0346 -0.90698,0.0761 -1.29468,0.0761 -0.1177,0 -0.51235,0 -0.51235,-0.5331 0,-0.33233 0.31849,-0.33233 0.70621,-0.33233 1.39161,0 1.51623,-0.24232 1.75163,-0.72697 l 3.38557,-6.66037 -1.35007,-1.34315 c -0.46387,-0.44311 -1.59239,-1.52317 -2.0355,-1.98012 -2.94248,-2.92171 -3.92561,-3.93945 -6.09958,-4.03639 -0.33924,-0.0207 -0.59542,-0.0207 -0.59542,-0.52618 0,-0.097 0.0623,-0.33925 0.33232,-0.33925 0.69236,0 1.51624,0.097 2.24321,0.097 0.40849,0 1.01776,0 1.42624,-0.0208 0.42925,-0.0346 0.96236,-0.0761 1.37085,-0.0761 0.12461,0 0.51233,0 0.51233,0.51233 0,0.33234 -0.29078,0.3531 -0.4431,0.3531 -0.24233,0.0346 -0.74773,0.097 -0.74773,0.60927 0,0.38771 0.31156,0.69927 0.84466,1.23238 l 4.90181,4.80488 2.92171,-5.72571 c 0.1177,-0.23539 0.13847,-0.29078 0.13847,-0.31155 0,-0.14539 -0.43618,-0.53311 -1.28084,-0.60927 -0.21462,-0.0207 -0.52618,-0.0207 -0.52618,-0.52618 0,-0.0277 0.0207,-0.33925 0.40848,-0.33925 0.51234,0 1.11468,0.0761 1.61317,0.0761 0.51233,0 1.07314,0.0208 1.57163,0.0208 0.40848,0 0.99005,0 1.42623,-0.0208 0.40849,-0.0346 0.92082,-0.0761 1.29469,-0.0761 0.12462,0 0.51234,0 0.51234,0.53311 0,0.33232 -0.31155,0.33232 -0.69235,0.33232 -1.40546,0 -1.52316,0.27002 -1.74471,0.68543 z"
-             inkscape:connector-curvature="0"
-             style="fill:#000000;stroke-width:0" /><path
-             id="path7164"
-             d="m 552.72274,461.91253 0.0346,0 0.0415,0 0.0761,0 0.0831,0 0.0346,0.007 0.0415,0 0.0415,0.007 0.0415,0 0.0415,0.007 0.0415,0.007 0.0346,0.007 0.0415,0.0138 0.0346,0.007 0.0346,0.0138 0.0415,0.0138 0.0346,0.0207 0.0277,0.0138 0.0346,0.0208 0.0277,0.0277 0.0277,0.0208 0.0277,0.0277 0.007,0.0138 0.0138,0.0138 0.0138,0.0208 0.007,0.0138 0.0138,0.0138 0.007,0.0208 0.007,0.0208 0.007,0.0138 0.007,0.0208 0.007,0.0208 0.007,0.0207 0.007,0.0208 0,0.0277 0.007,0.0207 0,0.0277 0.007,0.0207 0,0.0277 0,0.0277 c 0,0.59543 -0.55388,0.59543 -0.96237,0.59543 h -14.38189 c -0.38772,0 -0.96237,0 -0.96237,-0.57466 0,-0.60234 0.55388,-0.60234 0.96237,-0.60234 z"
-             inkscape:connector-curvature="0"
-             style="fill:#000000;stroke-width:0" /><path
-             id="path7166"
-             d="m 573.5347,470.06837 0.083,0.1177 0.0831,0.1177 0.083,0.11077 0.0831,0.10388 0.083,0.10387 0.083,0.10387 0.0831,0.097 0.0761,0.09 0.0831,0.09 0.083,0.0831 0.083,0.0831 0.0831,0.0761 0.083,0.0761 0.0901,0.0693 0.0831,0.0623 0.09,0.0623 0.0831,0.0623 0.0899,0.0553 0.097,0.0555 0.09,0.0484 0.097,0.0415 0.097,0.0415 0.097,0.0415 0.097,0.0346 0.10387,0.0346 0.10388,0.0277 0.11077,0.0277 0.10387,0.0207 0.11771,0.0208 0.11077,0.0138 0.1177,0.0138 0.12462,0.0138 c 0.29079,0.0208 0.55388,0.0415 0.55388,0.52619 0,0.0761 -0.0484,0.33925 -0.33925,0.33925 -0.58157,0 -1.32931,-0.097 -1.93857,-0.097 -0.7685,0 -1.77934,0.097 -2.49938,0.097 -0.22154,0 -0.48464,-0.0761 -0.48464,-0.53311 0,-0.31155 0.33926,-0.33233 0.43618,-0.33233 0.7685,-0.0553 0.98314,-0.33924 0.98314,-0.70619 0,-0.33233 -0.16618,-0.57465 -0.43619,-0.96236 l -7.9066,-11.67298 -2.19474,12.32378 c -0.0415,0.21463 -0.0415,0.27001 -0.0415,0.36695 0,0.6508 1.33623,0.6508 1.50932,0.6508 0.41541,0 0.72696,0 0.72696,0.52619 0,0.0277 -0.0208,0.33925 -0.40849,0.33925 -0.70619,0 -2.41629,-0.097 -3.11555,-0.097 -0.59543,0 -2.07012,0.097 -2.67246,0.097 -0.21463,0 -0.49157,-0.0761 -0.49157,-0.53311 0,-0.33233 0.33925,-0.33233 0.60927,-0.33233 1.35006,0 1.37084,-0.15231 1.49546,-0.78235 l 2.624,-14.65698 c 0.097,-0.50542 0.1177,-0.65773 0.58849,-0.65773 0.45003,0 0.56773,0.17308 0.81697,0.52618 z"
-             inkscape:connector-curvature="0"
-             style="fill:#000000;stroke-width:0" /><path
-             id="path7168"
-             d="m 583.28986,459.72471 -0.0415,-0.007 -0.0346,-0.0138 -0.0346,-0.0138 -0.0277,-0.0138 -0.0346,-0.0138 -0.0277,-0.0138 -0.0346,-0.0138 -0.0277,-0.0207 -0.0277,-0.0138 -0.0277,-0.0208 -0.0277,-0.0138 -0.0208,-0.0208 -0.0277,-0.0138 -0.0208,-0.0208 -0.0207,-0.0207 -0.0208,-0.0208 -0.0415,-0.0415 -0.0346,-0.0415 -0.0346,-0.0415 -0.0277,-0.0415 -0.0277,-0.0415 -0.0277,-0.0415 -0.0208,-0.0415 -0.0207,-0.0415 -0.0208,-0.0415 -0.0138,-0.0415 -0.0138,-0.0415 -0.007,-0.0346 -0.0138,-0.0415 -0.007,-0.0346 -0.007,-0.0277 -0.007,-0.0346 0,-0.0277 -0.007,-0.0208 0,-0.0207 0,-0.0208 0,-0.0138 0,-0.007 0,-0.007 0,-0.007 0,0 0,0 0,0 c 0,-0.29772 0.20079,-0.7062 0.76852,-0.7062 0.48464,0 1.06621,0.40848 1.06621,1.17007 0,1.01774 -1.13545,1.41239 -2.04242,1.41239 -1.12853,0 -1.84857,-0.72004 -2.19474,-1.177 -0.57466,0.98314 -1.67549,1.177 -2.29168,1.177 -2.15319,0 -3.37865,-2.02858 -3.37865,-2.67246 0,-0.24232 0.27002,-0.24232 0.36002,-0.24232 0.1454,0 0.29078,0.0207 0.36695,0.20077 0.50541,1.70317 1.92472,2.11859 2.58246,2.11859 0.56079,0 1.22545,-0.23541 1.22545,-1.14238 0,-0.43618 -0.31848,-1.62701 -0.90006,-3.91868 -0.25617,-0.98313 -1.05236,-1.56471 -1.79317,-1.56471 -0.12462,0 -0.61619,0 -1.0316,0.27002 0.7685,0.27693 0.7685,0.92775 0.7685,1.0039 0,0.49849 -0.38079,0.72696 -0.75466,0.72696 -0.43617,0 -1.07313,-0.34617 -1.07313,-1.18391 0,-1.04544 1.17699,-1.41239 2.05626,-1.41239 0.94853,0 1.71703,0.54696 2.13936,1.177 0.68543,-1.03852 1.78626,-1.177 2.32629,-1.177 2.17396,0 3.39942,2.05627 3.39942,2.67939 0,0.24232 -0.29078,0.24232 -0.36002,0.24232 -0.29771,0 -0.33232,-0.11077 -0.38772,-0.2631 -0.49848,-1.55777 -1.82779,-2.06319 -2.58245,-2.06319 -0.51926,0 -1.22545,0.18001 -1.22545,1.14238 0,0.22155 0,0.33925 0.13847,0.92081 0.29771,1.21162 0.76158,3.12942 0.90005,3.42712 0.21462,0.45696 0.78927,1.13546 1.66856,1.13546 0.0553,0 0.63695,0 1.03851,-0.27002 z"
-             inkscape:connector-curvature="0"
-             style="fill:#000000;stroke-width:0" /><polyline
-             id="polyline7170"
-             points="596,418 708.32,418 708.32,420.04 596,420.04 "
-             style="fill:#000000;fill-rule:nonzero;stroke-width:0"
-             transform="matrix(0.69234716,0,0,0.69234716,97.352168,161.10153)" /><path
-             id="path7172"
-             d="m 548.45096,444.06381 0.0831,0.1177 0.083,0.11078 0.0831,0.11769 0.083,0.10388 0.0761,0.10387 0.083,0.10387 0.0831,0.0901 0.083,0.097 0.0831,0.0901 0.083,0.0831 0.0831,0.0761 0.083,0.0831 0.0831,0.0692 0.083,0.0693 0.09,0.0693 0.083,0.0623 0.09,0.0623 0.0899,0.0553 0.09,0.0484 0.097,0.0484 0.0899,0.0484 0.097,0.0415 0.097,0.0415 0.10387,0.0346 0.10387,0.0346 0.10387,0.0277 0.10387,0.0277 0.11078,0.0207 0.11077,0.0208 0.1177,0.0138 0.1177,0.0138 0.1177,0.0138 c 0.2977,0.0208 0.55387,0.0415 0.55387,0.5262 0,0.0761 -0.0415,0.33924 -0.33233,0.33924 -0.58849,0 -1.33623,-0.097 -1.93857,-0.097 -0.7685,0 -1.78626,0.097 -2.49937,0.097 -0.22847,0 -0.48464,-0.0761 -0.48464,-0.5331 0,-0.31156 0.33233,-0.33234 0.42925,-0.33234 0.7685,-0.0553 0.98314,-0.33924 0.98314,-0.70618 0,-0.33234 -0.15925,-0.57466 -0.42926,-0.96236 l -7.9066,-11.67299 -2.19474,12.32379 c -0.0484,0.21462 -0.0484,0.27002 -0.0484,0.36694 0,0.6508 1.34314,0.6508 1.51624,0.6508 0.40848,0 0.72696,0 0.72696,0.5262 0,0.0207 -0.0208,0.33924 -0.41541,0.33924 -0.69927,0 -2.40937,-0.097 -3.11556,-0.097 -0.59543,0 -2.06319,0.097 -2.67246,0.097 -0.21463,0 -0.48464,-0.0761 -0.48464,-0.5331 0,-0.33234 0.33924,-0.33234 0.60927,-0.33234 1.35006,0 1.37084,-0.15231 1.48854,-0.78235 l 2.63092,-14.65698 c 0.097,-0.51234 0.11769,-0.65773 0.58156,-0.65773 0.45696,0 0.57466,0.17309 0.8239,0.52618 z"
-             inkscape:connector-curvature="0"
-             style="fill:#000000;stroke-width:0" /><path
-             id="path7174"
-             d="m 556.3991,428.01521 0.0277,-0.0484 0.0277,-0.0415 0.0346,-0.0484 0.0277,-0.0484 0.0415,-0.0484 0.0415,-0.0484 0.0415,-0.0484 0.0484,-0.0553 0.0484,-0.0484 0.0554,-0.0484 0.0553,-0.0553 0.0624,-0.0484 0.0692,-0.0553 0.0693,-0.0484 0.0762,-0.0484 0.083,-0.0484 0.083,-0.0484 0.0831,-0.0484 0.097,-0.0415 0.097,-0.0415 0.10387,-0.0415 0.11077,-0.0346 0.11077,-0.0346 0.1177,-0.0346 0.12462,-0.0277 0.13154,-0.0277 0.13155,-0.0208 0.13847,-0.0207 0.1454,-0.0138 0.15231,-0.0138 0.15924,-0.007 0.16617,0 c 3.2748,0 4.161,5.52492 4.161,6.34882 0,1.19084 -0.69234,1.48163 -0.98313,1.48163 -0.54004,0 -1.01083,-0.55388 -1.01083,-0.99698 0,-0.32541 0.21463,-0.49157 0.31848,-0.58158 0.49157,-0.36693 0.67158,-0.81004 0.67158,-1.32238 0,-0.44311 -0.86544,-4.3341 -3.0671,-4.3341 -0.65081,0 -1.66163,0.20771 -1.66163,1.56472 0,0.0346 0,0.36002 0.12461,0.87927 0.15925,0.69235 0.65774,2.67246 0.89314,3.59328 0.0761,0.27002 0.0761,0.29771 0.0761,0.38772 0,0.38079 -0.31156,0.60234 -0.63697,0.60234 -0.28386,0 -0.59541,-0.1454 -0.75466,-0.4431 -0.0761,-0.1177 -0.22847,-0.75466 -0.33925,-1.14237 -0.23539,-0.97621 -0.23539,-1.01775 -0.49849,-1.98011 -0.13847,-0.55388 -0.29078,-1.20469 -0.31155,-1.67549 0.0553,-0.27002 0,-0.36002 -0.15232,-0.6508 -0.65772,-1.13546 -1.38469,-1.13546 -1.65471,-1.13546 -0.25617,0 -0.92082,0.0277 -1.36393,0.4085 -0.44309,0.40155 -0.44309,1.03852 -0.44309,1.22545 0,0.69927 0.21462,1.41238 0.94159,3.17094 0.13847,0.34618 0.24924,0.60235 0.24924,0.89314 0,0.84466 -0.81005,1.53009 -1.88318,1.53009 -1.81395,0 -2.77631,-2.20859 -2.77631,-2.67246 0,-0.24925 0.27694,-0.24925 0.36695,-0.24925 0.29078,0 0.30463,0.0831 0.3877,0.34617 0.36695,1.19083 1.177,1.98011 1.9455,1.98011 0.33925,0 0.51926,-0.18692 0.51926,-0.6508 0,-0.34617 -0.0623,-0.54003 -0.29079,-1.03853 -0.90697,-2.2432 -0.90697,-2.6863 -0.90697,-3.10864 0,-1.97318 1.77241,-2.43013 3.17095,-2.43013 0.34618,0 1.30854,0 2.14628,1.24623 z"
-             inkscape:connector-curvature="0"
-             style="fill:#000000;stroke-width:0" /><g
-             id="g8057"
-             transform="matrix(0.57790031,0,0,-0.57790031,442.86491,651.53968)"><g
-               word-spacing="normal"
-               letter-spacing="normal"
-               font-size-adjust="none"
-               font-stretch="normal"
-               font-weight="normal"
-               font-variant="normal"
-               font-style="normal"
-               stroke-miterlimit="10.433"
-               xml:space="preserve"
-               transform="matrix(1.0629921,0,0,-1.0629921,-186.02362,789.27165)"
-               id="g8059"
-               style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;stroke:#000000;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.43299961;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"><path
-                 id="path8061"
-                 d="m 487.66,440.82 0,0.02 0,0.02 0,0.01 -0.01,0.02 0,0.02 0,0.02 -0.01,0.02 0,0.02 -0.01,0.02 -0.01,0.02 -0.01,0.02 -0.01,0.02 -0.01,0.02 -0.01,0.02 -0.01,0.02 -0.02,0.02 -0.02,0.02 -0.01,0.02 -0.02,0.02 -0.02,0.02 -0.02,0.01 -0.03,0.02 -0.02,0.01 -0.03,0.02 -0.02,0.01 -0.03,0.01 -0.02,0.01 -0.01,0 -0.02,0.01 -0.02,0 -0.01,0 -0.02,0.01 -0.02,0 -0.02,0 -0.02,0 -0.02,0 -0.02,0 -0.02,0 c -0.25,0 -0.31,-0.04 -0.9,-0.75 l -2.39,-2.84 c -1.3,2.34 -3.89,3.59 -7.13,3.59 -6.33,0 -12.3,-5.73 -12.3,-11.76 0,-4.03 2.65,-6.33 5.18,-7.06 l 5.32,-1.41 c 1.85,-0.44 4.6,-1.19 4.6,-5.28 0,-4.49 -4.1,-9.16 -8.97,-9.16 -3.19,0 -8.72,1.1 -8.72,7.27 0,1.2 0.25,2.39 0.3,2.69 0.04,0.2 0.09,0.25 0.09,0.35 0,0.5 -0.34,0.55 -0.59,0.55 -0.25,0 -0.35,-0.05 -0.5,-0.2 -0.21,-0.2 -2.99,-11.56 -2.99,-11.7 0,-0.3 0.25,-0.5 0.55,-0.5 0.25,0 0.3,0.04 0.89,0.75 l 2.45,2.82 c 2.14,-2.89 5.52,-3.57 8.41,-3.57 6.78,0 12.66,6.62 12.66,12.79 0,3.44 -1.69,5.14 -2.44,5.83 -1.14,1.16 -1.89,1.34 -6.33,2.5 -1.09,0.3 -2.89,0.8 -3.34,0.89 -1.35,0.45 -3.03,1.89 -3.03,4.53 0,4.05 3.98,8.28 8.71,8.28 4.15,0 7.18,-2.14 7.18,-7.73 0,-1.59 -0.21,-2.49 -0.21,-2.78 0,-0.05 0,-0.5 0.61,-0.5 0.5,0 0.55,0.15 0.74,1 z"
-                 inkscape:connector-curvature="0"
-                 style="fill:#000000;stroke-width:0" /><path
-                 id="path8063"
-                 d="m 509.75,418.39 0.24,0.25 0.26,0.25 0.13,0.12 0.12,0.12 0.14,0.12 0.13,0.12 0.13,0.11 0.13,0.11 0.14,0.12 0.14,0.1 0.14,0.11 0.14,0.11 0.14,0.1 0.14,0.1 c 1.42,0.97 2.72,1.05 3.17,1.08 0.38,0.03 0.8,0.03 0.8,0.76 0,0.25 -0.2,0.49 -0.49,0.49 -0.87,0 -1.92,-0.14 -2.82,-0.14 -1.11,0 -2.58,0.14 -3.63,0.14 -0.17,0 -0.69,0 -0.69,-0.77 0,-0.45 0.46,-0.48 0.63,-0.48 1.02,-0.08 1.02,-0.45 1.02,-0.67 0,-0.32 -0.22,-0.58 -0.46,-0.91 -0.22,-0.31 -0.39,-0.55 -0.59,-0.77 l -8.72,-9.09 -4.59,10.22 c -0.25,0.48 -0.25,0.55 -0.25,0.59 0,0.63 1.67,0.63 1.89,0.63 0.45,0 0.9,0 0.9,0.76 0,0.04 0,0.49 -0.56,0.49 -1.05,0 -3.62,-0.14 -4.67,-0.14 -0.88,0 -3.1,0.14 -3.97,0.14 -0.28,0 -0.7,-0.11 -0.7,-0.77 0,-0.48 0.45,-0.48 0.95,-0.48 2.02,0 2.16,-0.31 2.5,-1.08 l 5.41,-11.92 -1.58,-6.38 c -0.46,-1.78 -0.49,-1.87 -3.21,-1.92 -0.59,0 -1.04,0 -1.04,-0.73 0,-0.35 0.25,-0.52 0.56,-0.52 0.66,0 1.47,0.11 2.16,0.11 0.67,0 1.67,0.03 2.29,0.03 0.71,0 1.5,-0.03 2.24,-0.03 0.73,0 1.61,-0.11 2.34,-0.11 0.2,0 0.77,0 0.77,0.77 0,0.48 -0.42,0.48 -1.19,0.48 -0.56,0 -0.7,0 -1.33,0.08 -0.65,0.06 -0.76,0.14 -0.76,0.48 0,0.21 0.42,1.88 0.65,2.83 0.28,1.11 1.02,4.14 1.1,4.28 0.12,0.52 0.12,0.6 0.48,0.94 z"
-                 inkscape:connector-curvature="0"
-                 style="fill:#000000;stroke-width:0" /><path
-                 id="path8065"
-                 d="m 568.72,422.5 0.13,0 0.15,0 0.14,0 0.08,0.01 0.07,0 0.07,0.01 0.07,0.01 0.07,0.01 0.07,0.01 0.07,0.01 0.07,0.02 0.06,0.02 0.06,0.02 0.06,0.02 0.06,0.03 0.06,0.03 0.05,0.04 0.05,0.03 0.05,0.05 0.04,0.04 0.04,0.05 0.02,0.03 0.02,0.03 0.01,0.02 0.02,0.03 0.01,0.03 0.02,0.04 0.01,0.03 0.01,0.04 0.01,0.03 0.01,0.04 0.01,0.04 0,0.04 0.01,0.04 0,0.04 0,0.04 0,0.05 c 0,1 -0.95,1 -1.64,1 h -29.84 c -0.7,0 -1.64,0 -1.64,-1 0,-0.98 0.94,-0.98 1.69,-0.98 z"
-                 inkscape:connector-curvature="0"
-                 style="fill:#000000;stroke-width:0" /><path
-                 id="path8067"
-                 d="m 568.76,412.82 0.07,0 0.06,0 0.14,0.01 0.14,0 0.07,0 0.07,0.01 0.07,0.01 0.07,0 0.07,0.01 0.06,0.02 0.07,0.01 0.06,0.02 0.07,0.02 0.06,0.02 0.06,0.02 0.06,0.03 0.05,0.03 0.05,0.04 0.05,0.04 0.05,0.04 0.04,0.05 0.02,0.02 0.02,0.03 0.02,0.02 0.02,0.03 0.01,0.03 0.02,0.03 0.01,0.03 0.02,0.03 0.01,0.04 0.01,0.03 0.01,0.04 0.01,0.04 0.01,0.04 0,0.04 0.01,0.04 0,0.04 0,0.05 0,0.04 c 0,1 -0.95,1 -1.68,1 h -29.75 c -0.75,0 -1.69,0 -1.69,-1 0,-1 0.94,-1 1.64,-1 z"
-                 inkscape:connector-curvature="0"
-                 style="fill:#000000;stroke-width:0" /><path
-                 id="path8069"
-                 d="m 616.66,451.02 0.25,0.26 0.26,0.25 0.12,0.12 0.13,0.12 0.13,0.12 0.14,0.11 0.13,0.12 0.13,0.11 0.14,0.11 0.14,0.11 0.13,0.11 0.14,0.1 0.15,0.11 0.14,0.1 c 1.42,0.97 2.72,1.04 3.17,1.08 0.38,0.03 0.8,0.03 0.8,0.76 0,0.25 -0.21,0.49 -0.49,0.49 -0.87,0 -1.92,-0.15 -2.82,-0.15 -1.11,0 -2.58,0.15 -3.63,0.15 -0.17,0 -0.69,0 -0.69,-0.77 0,-0.45 0.46,-0.48 0.63,-0.48 1.01,-0.08 1.01,-0.46 1.01,-0.68 0,-0.31 -0.22,-0.57 -0.45,-0.9 -0.22,-0.32 -0.39,-0.55 -0.59,-0.77 l -8.72,-9.09 -4.6,10.22 c -0.25,0.48 -0.25,0.54 -0.25,0.59 0,0.63 1.68,0.63 1.89,0.63 0.46,0 0.91,0 0.91,0.76 0,0.03 0,0.49 -0.56,0.49 -1.05,0 -3.63,-0.15 -4.67,-0.15 -0.88,0 -3.1,0.15 -3.97,0.15 -0.28,0 -0.71,-0.11 -0.71,-0.77 0,-0.48 0.46,-0.48 0.96,-0.48 2.01,0 2.15,-0.32 2.5,-1.08 l 5.4,-11.92 -1.57,-6.38 c -0.46,-1.78 -0.49,-1.87 -3.21,-1.92 -0.59,0 -1.04,0 -1.04,-0.74 0,-0.34 0.25,-0.51 0.56,-0.51 0.65,0 1.47,0.11 2.15,0.11 0.68,0 1.68,0.03 2.3,0.03 0.7,0 1.5,-0.03 2.24,-0.03 0.73,0 1.61,-0.11 2.34,-0.11 0.2,0 0.77,0 0.77,0.76 0,0.49 -0.43,0.49 -1.19,0.49 -0.56,0 -0.71,0 -1.33,0.08 -0.66,0.06 -0.77,0.14 -0.77,0.48 0,0.2 0.43,1.88 0.66,2.83 0.28,1.11 1.02,4.14 1.09,4.28 0.13,0.52 0.13,0.59 0.49,0.94 z"
-                 inkscape:connector-curvature="0"
-                 style="fill:#000000;stroke-width:0" /><path
-                 id="path8071"
-                 d="m 650.88,439.27 0.05,0 0.06,0 0.11,0 0.12,0.01 0.05,0 0.06,0.01 0.06,0 0.06,0.01 0.06,0.01 0.06,0.01 0.05,0.01 0.06,0.01 0.05,0.02 0.06,0.02 0.05,0.02 0.05,0.02 0.04,0.03 0.05,0.03 0.04,0.03 0.04,0.04 0.04,0.04 0.02,0.02 0.01,0.02 0.02,0.02 0.01,0.03 0.02,0.02 0.01,0.03 0.01,0.02 0.01,0.03 0.01,0.03 0.01,0.03 0.01,0.03 0.01,0.03 0.01,0.03 0,0.04 0,0.03 0.01,0.04 0,0.04 0,0.04 c 0,0.86 -0.8,0.86 -1.39,0.86 h -20.77 c -0.56,0 -1.39,0 -1.39,-0.83 0,-0.88 0.8,-0.88 1.39,-0.88 z"
-                 inkscape:connector-curvature="0"
-                 style="fill:#000000;stroke-width:0" /><path
-                 id="path8073"
-                 d="m 680.94,451.05 0.12,0.18 0.12,0.16 0.12,0.17 0.12,0.15 0.12,0.15 0.12,0.15 0.12,0.13 0.11,0.14 0.12,0.13 0.12,0.12 0.12,0.11 0.12,0.12 0.12,0.1 0.13,0.1 0.12,0.1 0.13,0.09 0.12,0.09 0.13,0.08 0.14,0.07 0.13,0.07 0.14,0.07 0.14,0.06 0.14,0.06 0.14,0.05 0.15,0.04 0.15,0.05 0.16,0.03 0.15,0.04 0.17,0.03 0.16,0.02 0.17,0.02 0.18,0.02 c 0.42,0.03 0.79,0.06 0.79,0.76 0,0.11 -0.06,0.49 -0.48,0.49 -0.84,0 -1.92,-0.15 -2.8,-0.15 -1.1,0 -2.57,0.15 -3.6,0.15 -0.33,0 -0.71,-0.11 -0.71,-0.77 0,-0.45 0.49,-0.48 0.63,-0.48 1.11,-0.08 1.42,-0.49 1.42,-1.02 0,-0.48 -0.24,-0.83 -0.63,-1.39 l -11.42,-16.86 -3.17,17.8 c -0.06,0.31 -0.06,0.39 -0.06,0.53 0,0.94 1.94,0.94 2.19,0.94 0.59,0 1.04,0 1.04,0.76 0,0.03 -0.03,0.49 -0.59,0.49 -1.02,0 -3.49,-0.15 -4.5,-0.15 -0.86,0 -2.99,0.15 -3.86,0.15 -0.31,0 -0.71,-0.11 -0.71,-0.77 0,-0.48 0.49,-0.48 0.88,-0.48 1.95,0 1.99,-0.22 2.16,-1.13 l 3.79,-21.17 c 0.14,-0.74 0.17,-0.95 0.85,-0.95 0.65,0 0.82,0.25 1.19,0.76 z"
-                 inkscape:connector-curvature="0"
-                 style="fill:#000000;stroke-width:0" /><path
-                 id="path8075"
-                 d="m 696.04,435.78 0.01,0.03 0.01,0.03 0.01,0.04 0.01,0.03 0.01,0.03 0,0.03 0.01,0.02 0.01,0.03 0,0.03 0.01,0.02 0,0.02 0.01,0.03 0,0.02 0,0.02 0.01,0.02 0,0.01 0,0.02 0,0.02 0,0.01 0.01,0.01 0,0.02 0,0.01 0,0.01 0,0.01 0,0.01 0,0 0,0.01 0,0.01 0,0 0,0.01 0,0 0,0 c 0,0.55 -0.45,0.87 -0.92,0.87 -1,0 -1.2,-0.87 -1.38,-1.54 l -0.51,-2.06 -0.78,-3.11 c -0.09,-0.33 -0.22,-0.86 -0.25,-1 -0.02,-0.1 -1.36,-2.44 -3.49,-2.44 -1.14,0 -2.04,0.55 -2.04,2.14 0,1.36 0.75,3.19 1.47,4.98 0.12,0.3 0.31,0.69 0.31,1.11 0,1.22 -1.17,2.21 -2.72,2.21 -2.62,0 -4.02,-3.19 -4.02,-3.86 0,-0.36 0.41,-0.36 0.53,-0.36 0.43,0 0.44,0.12 0.57,0.5 0.53,1.72 1.7,2.86 2.81,2.86 0.49,0 0.75,-0.27 0.75,-0.94 0,-0.5 -0.14,-0.84 -0.33,-1.3 -1.22,-2.97 -1.43,-3.86 -1.43,-4.86 0,-2.76 2.31,-3.34 3.98,-3.34 1.42,0 2.47,0.7 3.09,1.23 -0.36,-1.4 -0.62,-2.5 -1.79,-3.68 -0.58,-0.58 -1.75,-1.54 -3.28,-1.54 -0.46,0 -1.38,0.08 -1.96,0.61 1.13,0.27 1.25,1.24 1.25,1.49 0,0.73 -0.58,1.03 -1.09,1.03 -0.72,0 -1.58,-0.61 -1.58,-1.75 0,-1.25 1.28,-2.22 3.38,-2.22 2.82,0 6.2,1.89 7,5.08 z"
-                 inkscape:connector-curvature="0"
-                 style="fill:#000000;stroke-width:0" /><polyline
-                 id="polyline8077"
-                 points="593,418 701.24,418 701.24,420.04 593,420.04 "
-                 style="fill:#000000;fill-rule:nonzero;stroke-width:0" /><path
-                 id="path8079"
-                 d="m 648.67,408.7 0.12,0.17 0.12,0.16 0.12,0.17 0.12,0.15 0.12,0.15 0.11,0.15 0.12,0.13 0.12,0.14 0.12,0.13 0.12,0.12 0.12,0.11 0.12,0.12 0.12,0.1 0.12,0.1 0.13,0.1 0.12,0.09 0.13,0.09 0.13,0.08 0.13,0.07 0.14,0.07 0.13,0.07 0.14,0.06 0.14,0.06 0.15,0.05 0.15,0.05 0.15,0.04 0.15,0.04 0.16,0.03 0.16,0.03 0.17,0.02 0.17,0.02 0.18,0.02 c 0.42,0.03 0.79,0.06 0.79,0.76 0,0.11 -0.06,0.49 -0.48,0.49 -0.85,0 -1.93,-0.14 -2.8,-0.14 -1.11,0 -2.58,0.14 -3.61,0.14 -0.33,0 -0.7,-0.11 -0.7,-0.77 0,-0.45 0.48,-0.48 0.62,-0.48 1.11,-0.08 1.43,-0.49 1.43,-1.02 0,-0.48 -0.24,-0.83 -0.63,-1.39 l -11.42,-16.86 -3.17,17.8 c -0.07,0.31 -0.07,0.39 -0.07,0.53 0,0.94 1.94,0.94 2.19,0.94 0.6,0 1.05,0 1.05,0.76 0,0.03 -0.03,0.49 -0.6,0.49 -1.01,0 -3.48,-0.14 -4.5,-0.14 -0.85,0 -2.98,0.14 -3.85,0.14 -0.32,0 -0.71,-0.11 -0.71,-0.77 0,-0.48 0.49,-0.48 0.88,-0.48 1.95,0 1.98,-0.22 2.15,-1.13 l 3.8,-21.17 c 0.14,-0.74 0.17,-0.95 0.84,-0.95 0.66,0 0.83,0.25 1.19,0.76 z"
-                 inkscape:connector-curvature="0"
-                 style="fill:#000000;stroke-width:0" /><path
-                 id="path8081"
-                 d="m 656.45,400.11 0.01,0.01 0,0.02 0.01,0.01 0,0.02 0,0.01 0.01,0.01 0,0.02 0,0.01 0.01,0.03 0.01,0.02 0,0.02 0.01,0.02 0,0.02 0.01,0.02 0,0.02 0,0.02 0.01,0.01 0,0.02 0,0.01 0.01,0.02 0,0.01 0,0.01 0,0.01 0,0.01 0,0.01 0,0.02 0.01,0.02 0,0.02 0,0.02 0,0.02 0,0.01 0,0.01 c 0,0.42 -0.38,0.42 -0.77,0.41 l -3.06,-0.24 c -0.44,-0.01 -0.49,-0.04 -0.61,-0.14 -0.09,-0.12 -0.17,-0.42 -0.17,-0.58 0,-0.42 0.4,-0.42 0.75,-0.42 0.03,0 0.47,0 0.84,-0.04 0.47,-0.05 0.5,-0.13 0.5,-0.33 0,-0.08 0,-0.13 -0.12,-0.57 l -3.44,-13.75 c -0.09,-0.37 -0.09,-0.43 -0.09,-0.57 0,-0.58 0.43,-0.91 0.93,-0.91 0.5,0 1.05,0.38 1.21,0.98 0.07,0.25 0.17,0.6 0.54,2.19 l 0.46,1.72 c 0.36,1.5 0.36,1.55 1.06,2.61 1.01,1.55 2.5,2.94 4.47,2.94 1.26,0 1.73,-0.72 1.73,-1.78 0,-1.41 -1.06,-4.07 -1.42,-4.94 -0.38,-0.89 -0.44,-1.09 -0.44,-1.52 0,-1.29 1.24,-2.2 2.7,-2.2 2.65,0 4.02,3.25 4.02,3.88 0,0.34 -0.42,0.34 -0.52,0.34 -0.43,0 -0.45,-0.09 -0.6,-0.58 -0.43,-1.36 -1.55,-2.78 -2.79,-2.78 -0.57,0 -0.75,0.39 -0.75,0.94 0,0.5 0.3,1.22 0.52,1.83 0.28,0.67 1.38,3.37 1.38,4.7 0,1.72 -1.18,2.97 -3.72,2.97 -2.46,0 -3.91,-1.58 -4.66,-2.39 z"
-                 inkscape:connector-curvature="0"
-                 style="fill:#000000;stroke-width:0" /></g></g></g></g>    </g>
+         word-spacing="normal" />    </g>
     <text
        sodipodi:linespacing="125%"
        id="text7272"
          transform="matrix(0.36192293,0,0,-0.36192293,-63.336512,350.78762)"
          id="g10198"
          style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:#ff0000;stroke:#000000;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.43299961;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"><path
-           id="path10200"
-           d="m 457.27,440.23 v -1.55 h 1.19 c 3.84,0 3.93,-0.54 3.93,-2.34 v -26.25 c 0,-1.8 -0.09,-2.34 -3.93,-2.34 h -1.19 v -1.55 h 18.23 l -1.34,1.55 h -5.05 c -2.32,0 -2.43,0.34 -2.43,1.98 v 26.95 c 0,1.66 0.11,2 2.43,2 h 4.99 c 3.09,0 6.53,-1.09 9.08,-4.64 2.14,-2.93 2.57,-7.22 2.57,-11.11 0,-5.53 -0.93,-8.51 -2.73,-10.95 -1,-1.34 -3.83,-4.23 -8.86,-4.23 l 1.34,-1.55 c 8.36,0 15.24,7.37 15.24,16.73 0,9.47 -6.72,17.3 -15.24,17.3 z"
-           inkscape:connector-curvature="0"
-           style="fill:#ff0000;stroke-width:0" /><path
-           id="path10202"
-           d="m 502.37,428.21 -6.97,-0.54 v -1.55 c 3.24,0 3.69,-0.3 3.69,-2.73 v -13.41 c 0,-2.23 -0.55,-2.23 -3.89,-2.23 v -1.55 c 1.59,0.05 4.28,0.16 5.48,0.16 1.75,0 3.49,-0.11 5.19,-0.16 v 1.55 c -3.3,0 -3.5,0.25 -3.5,2.18 z"
-           inkscape:connector-curvature="0"
-           style="fill:#ff0000;stroke-width:0" /><path
-           id="path10204"
-           d="m 502.57,436.89 0,0.14 -0.01,0.15 -0.02,0.14 -0.02,0.14 -0.03,0.13 -0.04,0.13 -0.04,0.13 -0.05,0.12 -0.06,0.12 -0.06,0.12 -0.06,0.11 -0.07,0.1 -0.08,0.1 -0.08,0.1 -0.09,0.1 -0.08,0.08 -0.1,0.09 -0.09,0.08 -0.11,0.07 -0.1,0.07 -0.11,0.07 -0.11,0.06 -0.11,0.05 -0.12,0.05 -0.12,0.04 -0.12,0.04 -0.12,0.03 -0.12,0.03 -0.13,0.02 -0.13,0.01 -0.13,0.01 -0.13,0.01 c -1.54,0 -2.64,-1.35 -2.64,-2.64 0,-1.35 1.1,-2.64 2.64,-2.64 1.39,0 2.64,1.04 2.64,2.64 z"
-           inkscape:connector-curvature="0"
-           style="fill:#ff0000;stroke-width:0" /><path
-           id="path10206"
-           d="m 528.07,422.79 0.05,0.11 0.04,0.12 0.05,0.12 0.06,0.12 0.05,0.13 0.06,0.13 0.07,0.13 0.07,0.14 0.07,0.13 0.09,0.14 0.08,0.14 0.1,0.14 0.1,0.13 0.11,0.14 0.11,0.13 0.12,0.13 0.14,0.12 0.14,0.13 0.15,0.11 0.15,0.12 0.17,0.11 0.18,0.1 0.19,0.09 0.2,0.09 0.21,0.08 0.23,0.07 0.23,0.07 0.25,0.05 0.26,0.05 0.14,0.01 0.14,0.02 0.14,0.01 0.15,0.01 0.15,0.01 0.15,0 v 1.55 c -1.16,-0.1 -2.6,-0.14 -3.74,-0.14 -1.2,0 -3.5,0.09 -4.34,0.14 v -1.55 c 1.84,-0.05 2.39,-1.19 2.39,-2.14 0,-0.44 -0.09,-0.64 -0.3,-1.19 l -5.08,-12.7 -5.57,13.89 c -0.3,0.66 -0.3,0.75 -0.3,0.86 0,1.28 1.94,1.28 2.83,1.28 v 1.55 c -1.49,-0.05 -4.28,-0.14 -5.42,-0.14 -1.35,0 -3.35,0.04 -4.83,0.14 v -1.55 c 3.12,0 3.33,-0.3 3.98,-1.84 l 7.18,-17.67 c 0.29,-0.71 0.38,-0.96 1.04,-0.96 0.64,0 0.84,0.46 1.05,0.96 z"
-           inkscape:connector-curvature="0"
-           style="fill:#ff0000;stroke-width:0" /><path
-           id="path10208"
-           d="m 542.45,428.21 -6.97,-0.54 v -1.55 c 3.23,0 3.68,-0.3 3.68,-2.73 v -13.41 c 0,-2.23 -0.54,-2.23 -3.89,-2.23 v -1.55 c 1.6,0.05 4.28,0.16 5.49,0.16 1.75,0 3.48,-0.11 5.19,-0.16 v 1.55 c -3.3,0 -3.5,0.25 -3.5,2.18 z"
-           inkscape:connector-curvature="0"
-           style="fill:#ff0000;stroke-width:0" /><path
-           id="path10210"
-           d="m 542.65,436.89 -0.01,0.14 -0.01,0.15 -0.01,0.14 -0.03,0.14 -0.03,0.13 -0.04,0.13 -0.04,0.13 -0.05,0.12 -0.05,0.12 -0.06,0.12 -0.07,0.11 -0.07,0.1 -0.08,0.1 -0.08,0.1 -0.08,0.1 -0.09,0.08 -0.09,0.09 -0.1,0.08 -0.1,0.07 -0.11,0.07 -0.1,0.07 -0.11,0.06 -0.12,0.05 -0.11,0.05 -0.12,0.04 -0.12,0.04 -0.12,0.03 -0.13,0.03 -0.13,0.02 -0.12,0.01 -0.13,0.01 -0.13,0.01 c -1.55,0 -2.64,-1.35 -2.64,-2.64 0,-1.35 1.09,-2.64 2.64,-2.64 1.39,0 2.64,1.04 2.64,2.64 z"
-           inkscape:connector-curvature="0"
-           style="fill:#ff0000;stroke-width:0" /><path
-           id="path10212"
-           d="m 557.79,415.87 0.11,-0.02 0.13,-0.02 0.14,-0.03 0.16,-0.04 0.16,-0.04 0.18,-0.04 0.19,-0.05 0.2,-0.06 0.21,-0.06 0.21,-0.07 0.21,-0.08 0.22,-0.08 0.22,-0.1 0.22,-0.1 0.22,-0.11 0.22,-0.12 0.22,-0.14 0.21,-0.14 0.21,-0.15 0.19,-0.16 0.19,-0.18 0.18,-0.19 0.17,-0.2 0.16,-0.21 0.14,-0.22 0.07,-0.12 0.06,-0.12 0.06,-0.13 0.05,-0.12 0.05,-0.14 0.05,-0.13 0.04,-0.14 0.03,-0.14 0.04,-0.15 0.02,-0.15 0.02,-0.16 0.02,-0.15 0,-0.17 0.01,-0.16 c 0,-2.53 -1.75,-4.53 -5.63,-4.53 -4.19,0 -5.98,2.84 -6.94,7.07 -0.14,0.64 -0.18,0.85 -0.68,0.85 -0.66,0 -0.66,-0.35 -0.66,-1.25 v -6.58 c 0,-0.84 0,-1.19 0.55,-1.19 0.25,0 0.29,0.05 1.25,1 0.09,0.1 0.09,0.19 1,1.14 2.18,-2.09 4.43,-2.14 5.48,-2.14 5.72,0 8.02,3.35 8.02,6.92 0,2.64 -1.5,4.14 -2.1,4.74 -1.64,1.59 -3.59,2 -5.68,2.39 -2.79,0.55 -6.13,1.2 -6.13,4.09 0,1.74 1.3,3.78 5.58,3.78 5.48,0 5.73,-4.48 5.83,-6.03 0.06,-0.45 0.5,-0.45 0.61,-0.45 0.64,0 0.64,0.25 0.64,1.2 v 5.03 c 0,0.85 0,1.19 -0.55,1.19 -0.25,0 -0.34,0 -1,-0.59 -0.14,-0.21 -0.64,-0.64 -0.84,-0.8 -1.89,1.39 -3.94,1.39 -4.69,1.39 -6.08,0 -7.97,-3.33 -7.97,-6.12 0,-1.74 0.8,-3.14 2.14,-4.24 1.59,-1.29 3,-1.59 6.58,-2.28 z"
-           inkscape:connector-curvature="0"
-           style="fill:#ff0000;stroke-width:0" /><path
-           id="path10214"
-           d="m 575.92,428.21 -6.97,-0.54 v -1.55 c 3.24,0 3.69,-0.3 3.69,-2.73 v -13.41 c 0,-2.23 -0.55,-2.23 -3.89,-2.23 v -1.55 c 1.59,0.05 4.28,0.16 5.48,0.16 1.75,0 3.49,-0.11 5.19,-0.16 v 1.55 c -3.3,0 -3.5,0.25 -3.5,2.18 z"
-           inkscape:connector-curvature="0"
-           style="fill:#ff0000;stroke-width:0" /><path
-           id="path10216"
-           d="m 576.12,436.89 0,0.14 -0.01,0.15 -0.02,0.14 -0.02,0.14 -0.03,0.13 -0.04,0.13 -0.04,0.13 -0.05,0.12 -0.06,0.12 -0.06,0.12 -0.06,0.11 -0.07,0.1 -0.08,0.1 -0.08,0.1 -0.08,0.1 -0.09,0.08 -0.1,0.09 -0.09,0.08 -0.1,0.07 -0.11,0.07 -0.11,0.07 -0.11,0.06 -0.11,0.05 -0.12,0.05 -0.12,0.04 -0.12,0.04 -0.12,0.03 -0.12,0.03 -0.13,0.02 -0.13,0.01 -0.13,0.01 -0.13,0.01 c -1.54,0 -2.64,-1.35 -2.64,-2.64 0,-1.35 1.1,-2.64 2.64,-2.64 1.4,0 2.64,1.04 2.64,2.64 z"
-           inkscape:connector-curvature="0"
-           style="fill:#ff0000;stroke-width:0" /><path
-           id="path10218"
-           d="m 604.38,416.86 -0.02,0.59 -0.04,0.59 -0.07,0.58 -0.1,0.57 -0.13,0.56 -0.14,0.55 -0.18,0.54 -0.2,0.53 -0.22,0.51 -0.25,0.5 -0.26,0.49 -0.29,0.47 -0.31,0.46 -0.33,0.44 -0.34,0.43 -0.37,0.4 -0.38,0.39 -0.41,0.37 -0.41,0.35 -0.43,0.32 -0.45,0.31 -0.46,0.28 -0.48,0.26 -0.49,0.24 -0.49,0.21 -0.51,0.18 -0.53,0.16 -0.53,0.13 -0.54,0.11 -0.54,0.07 -0.56,0.05 -0.56,0.01 -0.05,-1.09 c 2.19,0 4.33,-1.1 5.63,-3.24 1.29,-2.14 1.29,-5.03 1.29,-6.92 0,-1.8 0,-4.48 -1.09,-6.67 -1.09,-2.25 -3.28,-3.69 -5.78,-3.69 h 0 c -2.14,0 -4.33,1.05 -5.67,3.33 -1.25,2.2 -1.25,5.23 -1.25,7.03 0,1.94 0,4.63 1.18,6.83 1.36,2.28 3.69,3.33 5.69,3.33 l 0.05,1.09 c -6.22,0 -11.06,-5.42 -11.06,-11.65 0,-6.43 5.18,-11.21 11.01,-11.21 6.03,0 11.07,4.88 11.07,11.21 z"
-           inkscape:connector-curvature="0"
-           style="fill:#ff0000;stroke-width:0" /><path
-           id="path10220"
-           d="m 611.35,423.34 v -13.36 c 0,-2.23 -0.55,-2.23 -3.89,-2.23 v -1.55 c 1.75,0.05 4.28,0.16 5.62,0.16 1.3,0 3.89,-0.11 5.58,-0.16 v 1.55 c -3.33,0 -3.88,0 -3.88,2.23 v 9.17 c 0,5.19 3.54,7.97 6.72,7.97 3.15,0 3.69,-2.69 3.69,-5.53 v -11.61 c 0,-2.23 -0.54,-2.23 -3.89,-2.23 v -1.55 c 1.75,0.05 4.3,0.16 5.64,0.16 1.3,0 3.88,-0.11 5.58,-0.16 v 1.55 c -2.59,0 -3.84,0 -3.89,1.5 v 9.51 c 0,4.28 0,5.83 -1.55,7.61 -0.68,0.86 -2.34,1.84 -5.22,1.84 -3.64,0 -5.98,-2.14 -7.37,-5.21 v 5.21 l -7.03,-0.54 v -1.55 c 3.48,0 3.89,-0.34 3.89,-2.78 z"
-           inkscape:connector-curvature="0"
-           style="fill:#ff0000;stroke-width:0" /><path
-           id="path10222"
-           d="m 658.82,424.98 v 15.8 l -7.17,-0.55 v -1.55 c 3.49,0 3.89,-0.34 3.89,-2.79 V 406.2 h 1.25 c 0.05,0.05 0.44,0.75 1.78,3.09 0.75,-1.15 2.85,-3.64 6.53,-3.64 l -0.2,1.1 c -2.23,0 -4.03,1.2 -5.22,3.04 -0.7,1.05 -0.7,1.19 -0.7,2.08 h 0 v 10.27 c 0,0.95 0,1 0.55,1.79 1.94,2.8 4.69,3.19 5.87,3.19 2.25,0 4.05,-1.3 5.24,-3.19 1.29,-2.04 1.45,-4.87 1.45,-6.92 0,-1.84 -0.11,-4.83 -1.55,-7.08 -1.04,-1.54 -2.94,-3.18 -5.64,-3.18 l 0.2,-1.1 c 5.94,0 11.12,4.88 11.12,11.31 0,6.33 -4.88,11.25 -10.57,11.25 -3.87,0 -6.03,-2.34 -6.83,-3.23 z"
-           inkscape:connector-curvature="0"
-           style="fill:#ff0000;stroke-width:0" /><path
-           id="path10224"
-           d="m 697.22,422.93 0.06,0.15 0.06,0.14 0.07,0.14 0.06,0.13 0.07,0.12 0.07,0.13 0.07,0.12 0.07,0.11 0.15,0.22 0.16,0.2 0.15,0.19 0.17,0.18 0.16,0.16 0.17,0.14 0.16,0.14 0.17,0.12 0.17,0.11 0.17,0.1 0.17,0.09 0.17,0.09 0.17,0.07 0.17,0.06 0.16,0.05 0.16,0.05 0.16,0.04 0.15,0.03 0.14,0.03 0.15,0.02 0.13,0.02 0.13,0.02 0.13,0.01 0.11,0 0.11,0.01 0.1,0 0.09,0 0.07,0 v 1.55 c -1.15,-0.1 -2.59,-0.14 -3.73,-0.14 -0.9,0 -3.25,0.09 -4.34,0.14 v -1.55 c 1.54,-0.05 2.34,-0.89 2.34,-2.14 0,-0.5 -0.05,-0.59 -0.3,-1.19 l -5.03,-12.26 -5.53,13.4 c -0.2,0.5 -0.29,0.71 -0.29,0.91 0,1.28 1.84,1.28 2.78,1.28 v 1.55 c -1.28,-0.05 -4.58,-0.14 -5.43,-0.14 -1.34,0 -3.34,0.04 -4.82,0.14 v -1.55 c 2.39,0 3.32,0 4.03,-1.73 L 689,406.2 c -0.25,-0.64 -0.94,-2.3 -1.25,-2.94 -1.1,-2.73 -2.49,-6.19 -5.68,-6.19 -0.25,0 -1.39,0 -2.34,0.91 1.55,0.2 1.94,1.3 1.94,2.09 0,1.3 -0.94,2.1 -2.08,2.1 -1,0 -2.09,-0.66 -2.09,-2.14 0,-2.25 2.09,-4.05 4.57,-4.05 3.15,0 5.19,2.84 6.38,5.69 z"
-           inkscape:connector-curvature="0"
-           style="fill:#ff0000;stroke-width:0" /><path
-           id="path10226"
-           d="m 729.74,415.87 0.11,-0.02 0.13,-0.02 0.14,-0.03 0.15,-0.04 0.17,-0.04 0.18,-0.04 0.19,-0.05 0.2,-0.06 0.21,-0.06 0.21,-0.07 0.21,-0.08 0.22,-0.08 0.22,-0.1 0.22,-0.1 0.22,-0.11 0.22,-0.12 0.22,-0.14 0.21,-0.14 0.2,-0.15 0.2,-0.16 0.19,-0.18 0.18,-0.19 0.17,-0.2 0.16,-0.21 0.14,-0.22 0.07,-0.12 0.06,-0.12 0.06,-0.13 0.05,-0.12 0.05,-0.14 0.05,-0.13 0.04,-0.14 0.03,-0.14 0.03,-0.15 0.03,-0.15 0.02,-0.16 0.01,-0.15 0.01,-0.17 0.01,-0.16 c 0,-2.53 -1.75,-4.53 -5.63,-4.53 -4.19,0 -5.98,2.84 -6.94,7.07 -0.14,0.64 -0.18,0.85 -0.68,0.85 -0.66,0 -0.66,-0.35 -0.66,-1.25 v -6.58 c 0,-0.84 0,-1.19 0.55,-1.19 0.25,0 0.29,0.05 1.25,1 0.09,0.1 0.09,0.19 1,1.14 2.18,-2.09 4.43,-2.14 5.48,-2.14 5.72,0 8.02,3.35 8.02,6.92 0,2.64 -1.5,4.14 -2.1,4.74 -1.64,1.59 -3.59,2 -5.69,2.39 -2.78,0.55 -6.12,1.2 -6.12,4.09 0,1.74 1.3,3.78 5.58,3.78 5.48,0 5.73,-4.48 5.83,-6.03 0.06,-0.45 0.5,-0.45 0.61,-0.45 0.64,0 0.64,0.25 0.64,1.2 v 5.03 c 0,0.85 0,1.19 -0.55,1.19 -0.25,0 -0.34,0 -1,-0.59 -0.14,-0.21 -0.64,-0.64 -0.84,-0.8 -1.9,1.39 -3.94,1.39 -4.69,1.39 -6.08,0 -7.97,-3.33 -7.97,-6.12 0,-1.74 0.8,-3.14 2.14,-4.24 1.59,-1.29 3,-1.59 6.58,-2.28 z"
-           inkscape:connector-curvature="0"
-           style="fill:#ff0000;stroke-width:0" /><path
-           id="path10228"
-           d="m 744.54,423.34 v -13.36 c 0,-2.23 -0.54,-2.23 -3.89,-2.23 v -1.55 c 1.75,0.05 4.28,0.16 5.63,0.16 1.29,0 3.89,-0.11 5.57,-0.16 v 1.55 c -3.32,0 -3.87,0 -3.87,2.23 v 9.17 c 0,5.19 3.53,7.97 6.72,7.97 3.14,0 3.69,-2.69 3.69,-5.53 v -11.61 c 0,-2.23 -0.55,-2.23 -3.89,-2.23 v -1.55 c 1.75,0.05 4.29,0.16 5.64,0.16 1.29,0 3.87,-0.11 5.58,-0.16 v 1.55 c -3.35,0 -3.9,0 -3.9,2.23 v 9.17 c 0,5.19 3.55,7.97 6.74,7.97 3.14,0 3.69,-2.69 3.69,-5.53 v -11.61 c 0,-2.23 -0.55,-2.23 -3.9,-2.23 v -1.55 c 1.74,0.05 4.29,0.16 5.63,0.16 1.3,0 3.89,-0.11 5.58,-0.16 v 1.55 c -2.58,0 -3.83,0 -3.88,1.5 v 9.51 c 0,4.28 0,5.83 -1.54,7.61 -0.71,0.86 -2.35,1.84 -5.24,1.84 -4.18,0 -6.37,-2.98 -7.22,-4.87 -0.7,4.33 -4.39,4.87 -6.62,4.87 -3.64,0 -5.99,-2.14 -7.38,-5.21 v 5.21 l -7.03,-0.54 v -1.55 c 3.49,0 3.89,-0.34 3.89,-2.78 z"
-           inkscape:connector-curvature="0"
-           style="fill:#ff0000;stroke-width:0" /><path
-           id="path10230"
-           d="m 797.17,409.98 0.02,-0.19 0.03,-0.18 0.04,-0.19 0.04,-0.18 0.05,-0.19 0.06,-0.18 0.06,-0.18 0.07,-0.18 0.07,-0.18 0.08,-0.17 0.09,-0.18 0.09,-0.16 0.1,-0.16 0.11,-0.16 0.11,-0.16 0.12,-0.14 0.13,-0.14 0.13,-0.14 0.14,-0.13 0.15,-0.12 0.15,-0.12 0.15,-0.1 0.17,-0.1 0.16,-0.09 0.18,-0.08 0.18,-0.07 0.19,-0.06 0.19,-0.05 0.2,-0.04 0.2,-0.03 0.22,-0.02 0.21,-0.01 c 1.03,0 4.08,0.71 4.08,4.74 v 2.78 h -1.25 v -2.78 c 0,-2.89 -1.23,-3.19 -1.8,-3.19 -1.64,0 -1.84,2.23 -1.84,2.48 v 9.97 c 0,2.1 0,4.03 -1.78,5.88 -1.95,1.93 -4.44,2.73 -6.83,2.73 -4.09,0 -7.53,-2.33 -7.53,-5.62 0,-1.49 1,-2.35 2.3,-2.35 1.39,0 2.29,1 2.29,2.3 0,0.59 -0.25,2.23 -2.54,2.3 1.34,1.73 3.78,2.28 5.37,2.28 2.45,0 5.28,-1.94 5.28,-6.38 v -1.84 -1.05 -4.98 c 0,-4.74 -3.58,-6.42 -5.83,-6.42 -2.43,0 -4.48,1.75 -4.48,4.23 0,2.73 2.09,6.88 10.31,7.17 h 0 v 1.05 c -2.53,-0.14 -6.01,-0.3 -9.15,-1.8 -3.74,-1.69 -4.99,-4.28 -4.99,-6.47 0,-4.03 4.83,-5.28 7.97,-5.28 3.3,0 5.58,1.99 6.53,4.33 z"
-           inkscape:connector-curvature="0"
-           style="fill:#ff0000;stroke-width:0" /><path
-           id="path10232"
-           d="m 814.35,440.78 -7.17,-0.55 v -1.55 c 3.48,0 3.89,-0.34 3.89,-2.79 v -25.91 c 0,-2.23 -0.55,-2.23 -3.89,-2.23 v -1.55 c 1.64,0.05 4.28,0.16 5.53,0.16 1.25,0 3.69,-0.11 5.53,-0.16 v 1.55 c -3.34,0 -3.89,0 -3.89,2.23 z"
-           inkscape:connector-curvature="0"
-           style="fill:#ff0000;stroke-width:0" /><path
-           id="path10234"
-           d="m 828.15,440.78 -7.18,-0.55 v -1.55 c 3.49,0 3.89,-0.34 3.89,-2.79 v -25.91 c 0,-2.23 -0.54,-2.23 -3.89,-2.23 v -1.55 c 1.64,0.05 4.28,0.16 5.53,0.16 1.25,0 3.69,-0.11 5.53,-0.16 v 1.55 c -3.34,0 -3.88,0 -3.88,2.23 z"
-           inkscape:connector-curvature="0"
-           style="fill:#ff0000;stroke-width:0" /><path
-           id="path10236"
-           d="m 870.41,422.79 0.04,0.11 0.05,0.12 0.05,0.12 0.05,0.12 0.05,0.13 0.07,0.13 0.06,0.13 0.07,0.14 0.08,0.13 0.08,0.14 0.09,0.14 0.09,0.14 0.1,0.13 0.11,0.14 0.11,0.13 0.13,0.13 0.13,0.12 0.14,0.13 0.15,0.11 0.16,0.12 0.17,0.11 0.17,0.1 0.19,0.09 0.2,0.09 0.22,0.08 0.22,0.07 0.24,0.07 0.24,0.05 0.27,0.05 0.13,0.01 0.14,0.02 0.14,0.01 0.15,0.01 0.15,0.01 0.15,0 v 1.55 c -1.16,-0.1 -2.59,-0.14 -3.73,-0.14 -1.21,0 -3.5,0.09 -4.35,0.14 v -1.55 c 1.85,-0.05 2.39,-1.19 2.39,-2.14 0,-0.44 -0.09,-0.64 -0.29,-1.19 l -5.08,-12.7 -5.58,13.89 c -0.3,0.66 -0.3,0.75 -0.3,0.86 0,1.28 1.94,1.28 2.83,1.28 v 1.55 c -1.48,-0.05 -4.28,-0.14 -5.42,-0.14 -1.35,0 -3.35,0.04 -4.83,0.14 v -1.55 c 3.13,0 3.33,-0.3 3.98,-1.84 l 7.18,-17.67 c 0.29,-0.71 0.39,-0.96 1.04,-0.96 0.64,0 0.85,0.46 1.05,0.96 z"
-           inkscape:connector-curvature="0"
-           style="fill:#ff0000;stroke-width:0" /><path
-           id="path10238"
-           d="m 889.8,409.98 0.02,-0.19 0.03,-0.18 0.04,-0.19 0.04,-0.18 0.05,-0.19 0.05,-0.18 0.07,-0.18 0.06,-0.18 0.08,-0.18 0.08,-0.17 0.09,-0.18 0.09,-0.16 0.1,-0.16 0.11,-0.16 0.11,-0.16 0.12,-0.14 0.13,-0.14 0.13,-0.14 0.14,-0.13 0.14,-0.12 0.15,-0.12 0.16,-0.1 0.16,-0.1 0.17,-0.09 0.18,-0.08 0.18,-0.07 0.19,-0.06 0.19,-0.05 0.2,-0.04 0.2,-0.03 0.21,-0.02 0.22,-0.01 c 1.03,0 4.08,0.71 4.08,4.74 v 2.78 h -1.25 v -2.78 c 0,-2.89 -1.24,-3.19 -1.8,-3.19 -1.64,0 -1.84,2.23 -1.84,2.48 v 9.97 c 0,2.1 0,4.03 -1.78,5.88 -1.95,1.93 -4.44,2.73 -6.83,2.73 -4.09,0 -7.53,-2.33 -7.53,-5.62 0,-1.49 1,-2.35 2.29,-2.35 1.4,0 2.3,1 2.3,2.3 0,0.59 -0.25,2.23 -2.55,2.3 1.35,1.73 3.79,2.28 5.38,2.28 2.45,0 5.28,-1.94 5.28,-6.38 v -1.84 -1.05 -4.98 c 0,-4.74 -3.58,-6.42 -5.83,-6.42 -2.43,0 -4.48,1.75 -4.48,4.23 0,2.73 2.09,6.88 10.31,7.17 h 0 v 1.05 c -2.53,-0.14 -6.01,-0.3 -9.16,-1.8 -3.73,-1.69 -4.98,-4.28 -4.98,-6.47 0,-4.03 4.83,-5.28 7.97,-5.28 3.3,0 5.58,1.99 6.53,4.33 z"
-           inkscape:connector-curvature="0"
-           style="fill:#ff0000;stroke-width:0" /><path
-           id="path10240"
-           d="m 906.98,440.78 -7.18,-0.55 v -1.55 c 3.49,0 3.9,-0.34 3.9,-2.79 v -25.91 c 0,-2.23 -0.55,-2.23 -3.9,-2.23 v -1.55 c 1.65,0.05 4.29,0.16 5.54,0.16 1.25,0 3.68,-0.11 5.53,-0.16 v 1.55 c -3.35,0 -3.89,0 -3.89,2.23 z"
-           inkscape:connector-curvature="0"
-           style="fill:#ff0000;stroke-width:0" /><path
-           id="path10242"
-           d="m 931.45,410.14 v -4.49 l 7.17,0.55 v 1.55 c -3.49,0 -3.89,0.34 -3.89,2.78 v 17.68 l -7.33,-0.54 v -1.55 c 3.5,0 3.89,-0.34 3.89,-2.78 v -8.88 c 0,-4.32 -2.39,-7.71 -6.03,-7.71 -4.17,0 -4.38,2.34 -4.38,4.93 v 16.53 l -7.33,-0.54 v -1.55 c 3.9,0 3.9,-0.14 3.9,-4.58 v -7.47 c 0,-3.89 0,-8.42 7.56,-8.42 2.79,0 4.98,1.39 6.44,4.49 z"
-           inkscape:connector-curvature="0"
-           style="fill:#ff0000;stroke-width:0" /><path
-           id="path10244"
-           d="m 945.21,417.71 0.05,1.05 c 0.29,7.42 4.48,8.66 6.19,8.66 5.12,0 5.62,-6.72 5.62,-8.66 h -11.81 l -0.05,-1.05 h 13.91 c 1.09,0 1.23,0 1.23,1.05 0,4.92 -2.69,9.75 -8.9,9.75 -5.79,0 -10.38,-5.12 -10.38,-11.36 0,-6.67 5.23,-11.5 10.97,-11.5 6.08,0 8.31,5.53 8.31,6.47 0,0.5 -0.39,0.61 -0.64,0.61 -0.45,0 -0.55,-0.3 -0.66,-0.7 -1.73,-5.13 -6.21,-5.13 -6.71,-5.13 -2.5,0 -4.49,1.49 -5.63,3.33 -1.5,2.39 -1.5,5.69 -1.5,7.48 z"
-           inkscape:connector-curvature="0"
-           style="fill:#ff0000;stroke-width:0" /><path
-           id="path10246"
-           d="m 1026.5,422.5 0.1,0 0.2,0 0.1,0 0.1,0.01 0,0 0.1,0.01 0.1,0.01 0.1,0.01 0,0.01 0.1,0.01 0.1,0.02 0,0.02 0.1,0.02 0.1,0.02 0,0.03 0.1,0.03 0,0.04 0.1,0.03 0,0.05 0.1,0.04 0,0.05 0,0.03 0,0.03 0.1,0.02 0,0.03 0,0.03 0,0.04 0,0.03 0,0.04 0,0.03 0,0.04 0,0.04 0,0.04 0.1,0.04 0,0.04 0,0.04 0,0.05 c 0,1 -1,1 -1.7,1 h -29.82 c -0.71,0 -1.65,0 -1.65,-1 0,-0.98 0.94,-0.98 1.69,-0.98 z"
-           inkscape:connector-curvature="0"
-           style="fill:#ff0000;stroke-width:0" /><path
-           id="path10248"
-           d="m 1026.5,412.82 0.1,0 0.1,0 0.1,0.01 0.1,0 0.1,0 0.1,0.01 0,0.01 0.1,0 0.1,0.01 0,0.02 0.1,0.01 0.1,0.02 0,0.02 0.1,0.02 0.1,0.02 0,0.03 0.1,0.03 0,0.04 0.1,0.04 0,0.04 0.1,0.05 0,0.02 0,0.03 0,0.02 0,0.03 0.1,0.03 0,0.03 0,0.03 0,0.03 0,0.04 0,0.03 0,0.04 0,0.04 0,0.04 0,0.04 0.1,0.04 0,0.04 0,0.05 0,0.04 c 0,1 -1,1 -1.7,1 h -29.78 c -0.75,0 -1.69,0 -1.69,-1 0,-1 0.94,-1 1.65,-1 z"
-           inkscape:connector-curvature="0"
-           style="fill:#ff0000;stroke-width:0" /><path
-           id="path10250"
-           d="m 1058.9,422.5 0.4,-0.34 0.4,-0.31 0.4,-0.31 0.4,-0.3 0.4,-0.28 0.5,-0.27 0.4,-0.26 0.4,-0.25 0.4,-0.23 0.4,-0.23 0.4,-0.21 0.4,-0.19 0.4,-0.19 0.3,-0.17 0.2,-0.08 0.1,-0.08 0.2,-0.08 0.2,-0.07 c -1.8,-0.79 -4.3,-2.09 -6.3,-3.83 h -31.7 c -0.8,0 -1.8,0 -1.8,-1 0,-1 1,-1 1.8,-1 h 29.4 c -2.4,-2.29 -4.9,-6.67 -4.9,-7.32 0,-0.55 0.6,-0.55 0.9,-0.55 0.4,0 0.8,0 1,0.41 1,1.89 2.4,4.53 5.6,7.42 3.5,3.03 6.8,4.37 9.4,5.12 0.8,0.3 0.9,0.36 1,0.46 0.1,0.04 0.1,0.2 0.1,0.29 0,0.11 0,0.21 0,0.3 l -0.2,0.11 c -0.1,0.05 -0.2,0.09 -1.1,0.39 -6.7,2 -11.7,6.53 -14.5,11.86 -0.5,1 -0.6,1.05 -1.3,1.05 -0.3,0 -0.9,0 -0.9,-0.55 0,-0.66 2.5,-4.99 4.9,-7.33 h -29.4 c -0.8,0 -1.8,0 -1.8,-1 0,-0.98 1,-0.98 1.8,-0.98 z"
-           inkscape:connector-curvature="0"
-           style="fill:#ff0000;stroke-width:0" /><path
-           id="path10252"
-           d="m 1119.6,409.98 0,-0.19 0,-0.18 0.1,-0.19 0,-0.18 0.1,-0.19 0,-0.18 0.1,-0.18 0.1,-0.18 0,-0.18 0.1,-0.17 0.1,-0.18 0.1,-0.16 0.1,-0.16 0.1,-0.16 0.1,-0.16 0.1,-0.14 0.2,-0.14 0.1,-0.14 0.1,-0.13 0.2,-0.12 0.1,-0.12 0.2,-0.1 0.1,-0.1 0.2,-0.09 0.2,-0.08 0.2,-0.07 0.2,-0.06 0.1,-0.05 0.2,-0.04 0.3,-0.03 0.2,-0.02 0.2,-0.01 c 1,0 4.1,0.71 4.1,4.74 v 2.78 h -1.3 v -2.78 c 0,-2.89 -1.2,-3.19 -1.8,-3.19 -1.6,0 -1.8,2.23 -1.8,2.48 v 9.97 c 0,2.1 0,4.03 -1.8,5.88 -2,1.93 -4.5,2.73 -6.8,2.73 -4.1,0 -7.6,-2.33 -7.6,-5.62 0,-1.49 1,-2.35 2.3,-2.35 1.4,0 2.3,1 2.3,2.3 0,0.59 -0.2,2.23 -2.5,2.3 1.3,1.73 3.7,2.28 5.3,2.28 2.5,0 5.3,-1.94 5.3,-6.38 v -1.84 -1.05 -4.98 c 0,-4.74 -3.5,-6.42 -5.8,-6.42 -2.4,0 -4.5,1.75 -4.5,4.23 0,2.73 2.1,6.88 10.3,7.17 h 0 v 1.05 c -2.5,-0.14 -6,-0.3 -9.1,-1.8 -3.8,-1.69 -5,-4.28 -5,-6.47 0,-4.03 4.8,-5.28 8,-5.28 3.2,0 5.5,1.99 6.5,4.33 z"
-           inkscape:connector-curvature="0"
-           style="fill:#ff0000;stroke-width:0" /><path
-           id="path10254"
-           d="m 1133.4,423.34 v -13.36 c 0,-2.23 -0.5,-2.23 -3.9,-2.23 v -1.55 c 1.8,0.05 4.3,0.16 5.7,0.16 1.3,0 3.9,-0.11 5.6,-0.16 v 1.55 c -3.4,0 -3.9,0 -3.9,2.23 v 9.17 c 0,5.19 3.5,7.97 6.7,7.97 3.1,0 3.7,-2.69 3.7,-5.53 v -11.61 c 0,-2.23 -0.6,-2.23 -3.9,-2.23 v -1.55 c 1.7,0.05 4.3,0.16 5.6,0.16 1.3,0 3.9,-0.11 5.6,-0.16 v 1.55 c -3.3,0 -3.9,0 -3.9,2.23 v 9.17 c 0,5.19 3.6,7.97 6.7,7.97 3.2,0 3.7,-2.69 3.7,-5.53 v -11.61 c 0,-2.23 -0.5,-2.23 -3.9,-2.23 v -1.55 c 1.8,0.05 4.3,0.16 5.7,0.16 1.3,0 3.9,-0.11 5.5,-0.16 v 1.55 c -2.5,0 -3.8,0 -3.8,1.5 v 9.51 c 0,4.28 0,5.83 -1.6,7.61 -0.7,0.86 -2.3,1.84 -5.2,1.84 -4.2,0 -6.4,-2.98 -7.2,-4.87 -0.7,4.33 -4.4,4.87 -6.7,4.87 -3.6,0 -5.9,-2.14 -7.3,-5.21 v 5.21 l -7.1,-0.54 v -1.55 c 3.5,0 3.9,-0.34 3.9,-2.78 z"
-           inkscape:connector-curvature="0"
-           style="fill:#ff0000;stroke-width:0" /><path
-           id="path10256"
-           d="m 1178,424.93 v 3.28 l -7.1,-0.54 v -1.55 c 3.5,0 3.9,-0.3 3.9,-2.48 v -23.32 c 0,-2.25 -0.6,-2.25 -3.9,-2.25 v -1.54 c 1.7,0.06 4.2,0.15 5.5,0.15 1.4,0 3.9,-0.09 5.7,-0.15 v 1.54 c -3.4,0 -3.9,0 -3.9,2.25 v 8.36 0.46 l 0.7,0.65 c -0.7,1.05 -0.7,1.1 -0.7,2.08 h 0 V 423 c 1.4,2.53 3.9,3.98 6.4,3.98 3.6,0 6.7,-4.39 6.7,-10.02 0,-6.03 -3.5,-10.21 -7.2,-10.21 -2,0 -3.9,1 -5.2,3.04 l -0.7,-0.65 c 0.2,-0.8 2.3,-3.49 6.1,-3.49 5.9,0 11.1,4.88 11.1,11.31 0,6.33 -4.8,11.25 -10.4,11.25 -3.9,0 -6,-2.18 -7,-3.28 z"
-           inkscape:connector-curvature="0"
-           style="fill:#ff0000;stroke-width:0" /><path
-           id="path10258"
-           d="m 1206,440.78 -7.2,-0.55 v -1.55 c 3.5,0 3.9,-0.34 3.9,-2.79 v -25.91 c 0,-2.23 -0.5,-2.23 -3.9,-2.23 v -1.55 c 1.7,0.05 4.3,0.16 5.6,0.16 1.2,0 3.7,-0.11 5.5,-0.16 v 1.55 c -3.3,0 -3.9,0 -3.9,2.23 z"
-           inkscape:connector-curvature="0"
-           style="fill:#ff0000;stroke-width:0" /><path
-           id="path10260"
-           d="m 1219.8,428.21 -7,-0.54 v -1.55 c 3.3,0 3.7,-0.3 3.7,-2.73 v -13.41 c 0,-2.23 -0.5,-2.23 -3.9,-2.23 v -1.55 c 1.6,0.05 4.3,0.16 5.5,0.16 1.8,0 3.5,-0.11 5.2,-0.16 v 1.55 c -3.3,0 -3.5,0.25 -3.5,2.18 z"
-           inkscape:connector-curvature="0"
-           style="fill:#ff0000;stroke-width:0" /><path
-           id="path10262"
-           d="m 1220,436.89 0,0.14 0,0.15 0,0.14 -0.1,0.14 0,0.13 0,0.13 -0.1,0.13 0,0.12 -0.1,0.12 0,0.12 -0.1,0.11 -0.1,0.1 0,0.1 -0.1,0.1 -0.1,0.1 -0.1,0.08 -0.1,0.09 -0.1,0.08 -0.1,0.07 -0.1,0.07 -0.1,0.07 -0.1,0.06 -0.1,0.05 -0.1,0.05 -0.2,0.04 -0.1,0.04 -0.1,0.03 -0.1,0.03 -0.2,0.02 -0.1,0.01 -0.1,0.01 -0.1,0.01 c -1.6,0 -2.7,-1.35 -2.7,-2.64 0,-1.35 1.1,-2.64 2.7,-2.64 1.4,0 2.6,1.04 2.6,2.64 z"
-           inkscape:connector-curvature="0"
-           style="fill:#ff0000;stroke-width:0" /><path
-           id="path10264"
-           d="m 1233.5,427.67 v 5.78 c 0,4.39 2.4,6.78 4.6,6.78 0.1,0 0.9,0 1.6,-0.36 -0.6,-0.19 -1.5,-0.84 -1.5,-2.08 0,-1.15 0.8,-2.15 2.2,-2.15 1.4,0 2.2,1 2.2,2.2 0,1.84 -1.9,3.48 -4.5,3.48 -3.5,0 -7.7,-2.64 -7.7,-7.92 v -5.73 h -4 v -1.55 h 4 v -16.14 c 0,-2.23 -0.6,-2.23 -3.9,-2.23 v -1.55 c 1.9,0.05 4.3,0.16 5.7,0.16 1.9,0 4.3,0 6.3,-0.16 v 1.55 h -1.1 c -3.6,0 -3.7,0.54 -3.7,2.34 v 16.03 h 5.6 v 1.55 z"
-           inkscape:connector-curvature="0"
-           style="fill:#ff0000;stroke-width:0" /><path
-           id="path10266"
-           d="m 1260.7,422.93 0.1,0.15 0,0.14 0.1,0.14 0,0.13 0.1,0.12 0.1,0.13 0.1,0.12 0,0.11 0.2,0.22 0.1,0.2 0.2,0.19 0.2,0.18 0.1,0.16 0.2,0.14 0.2,0.14 0.1,0.12 0.2,0.11 0.2,0.1 0.1,0.09 0.2,0.09 0.2,0.07 0.1,0.06 0.2,0.05 0.2,0.05 0.1,0.04 0.2,0.03 0.1,0.03 0.2,0.02 0.1,0.02 0.1,0.02 0.1,0.01 0.2,0 0.1,0.01 0.1,0 0.1,0 0,0 v 1.55 c -1.1,-0.1 -2.6,-0.14 -3.7,-0.14 -0.9,0 -3.3,0.09 -4.4,0.14 v -1.55 c 1.6,-0.05 2.4,-0.89 2.4,-2.14 0,-0.5 0,-0.59 -0.3,-1.19 l -5,-12.26 -5.6,13.4 c -0.2,0.5 -0.3,0.71 -0.3,0.91 0,1.28 1.9,1.28 2.8,1.28 v 1.55 c -1.3,-0.05 -4.6,-0.14 -5.4,-0.14 -1.3,0 -3.3,0.04 -4.8,0.14 v -1.55 c 2.4,0 3.3,0 4,-1.73 l 7.5,-18.19 c -0.3,-0.64 -1,-2.3 -1.3,-2.94 -1.1,-2.73 -2.5,-6.19 -5.6,-6.19 -0.3,0 -1.4,0 -2.4,0.91 1.6,0.2 1.9,1.3 1.9,2.09 0,1.3 -0.9,2.1 -2,2.1 -1,0 -2.1,-0.66 -2.1,-2.14 0,-2.25 2.1,-4.05 4.6,-4.05 3.1,0 5.1,2.84 6.3,5.69 z"
-           inkscape:connector-curvature="0"
-           style="fill:#ff0000;stroke-width:0" /><path
-           id="path10268"
-           d="m 1291.2,422.75 v 5.46 l -7,-0.54 v -1.55 c 3.5,0 3.9,-0.34 3.9,-2.78 v -13.36 c 0,-2.23 -0.5,-2.23 -3.9,-2.23 v -1.55 c 2,0.05 4.3,0.16 5.7,0.16 2,0 4.4,0 6.4,-0.16 v 1.55 h -1.1 c -3.7,0 -3.8,0.54 -3.8,2.34 v 7.67 c 0,4.92 2.1,9.36 5.9,9.36 0.4,0 0.5,0 0.6,-0.05 -0.2,-0.04 -1.2,-0.64 -1.2,-1.93 0,-1.41 1.1,-2.14 2.2,-2.14 0.9,0 2.1,0.59 2.1,2.18 0,1.6 -1.6,3.03 -3.7,3.03 -3.6,0 -5.4,-3.32 -6.1,-5.46 z"
-           inkscape:connector-curvature="0"
-           style="fill:#ff0000;stroke-width:0" /><path
-           id="path10270"
-           d="m 1325.9,416.86 0,0.59 -0.1,0.59 0,0.58 -0.1,0.57 -0.2,0.56 -0.1,0.55 -0.2,0.54 -0.2,0.53 -0.2,0.51 -0.3,0.5 -0.2,0.49 -0.3,0.47 -0.3,0.46 -0.4,0.44 -0.3,0.43 -0.4,0.4 -0.3,0.39 -0.4,0.37 -0.5,0.35 -0.4,0.32 -0.4,0.31 -0.5,0.28 -0.5,0.26 -0.5,0.24 -0.5,0.21 -0.5,0.18 -0.5,0.16 -0.5,0.13 -0.6,0.11 -0.5,0.07 -0.6,0.05 -0.5,0.01 -0.1,-1.09 c 2.2,0 4.4,-1.1 5.6,-3.24 1.3,-2.14 1.3,-5.03 1.3,-6.92 0,-1.8 0,-4.48 -1,-6.67 -1.1,-2.25 -3.3,-3.69 -5.8,-3.69 h 0 c -2.2,0 -4.4,1.05 -5.7,3.33 -1.3,2.2 -1.3,5.23 -1.3,7.03 0,1.94 0,4.63 1.2,6.83 1.4,2.28 3.7,3.33 5.7,3.33 l 0.1,1.09 c -6.2,0 -11.1,-5.42 -11.1,-11.65 0,-6.43 5.2,-11.21 11,-11.21 6,0 11.1,4.88 11.1,11.21 z"
-           inkscape:connector-curvature="0"
-           style="fill:#ff0000;stroke-width:0" /><path
-           id="path10272"
-           d="m 1346.9,410.14 v -4.49 l 7.1,0.55 v 1.55 c -3.5,0 -3.9,0.34 -3.9,2.78 v 17.68 l -7.3,-0.54 v -1.55 c 3.5,0 3.9,-0.34 3.9,-2.78 v -8.88 c 0,-4.32 -2.4,-7.71 -6,-7.71 -4.2,0 -4.4,2.34 -4.4,4.93 v 16.53 l -7.3,-0.54 v -1.55 c 3.9,0 3.9,-0.14 3.9,-4.58 v -7.47 c 0,-3.89 0,-8.42 7.5,-8.42 2.8,0 5,1.39 6.5,4.49 z"
-           inkscape:connector-curvature="0"
-           style="fill:#ff0000;stroke-width:0" /><path
-           id="path10274"
-           d="m 1360.6,423.34 v -13.36 c 0,-2.23 -0.6,-2.23 -3.9,-2.23 v -1.55 c 1.7,0.05 4.3,0.16 5.6,0.16 1.3,0 3.9,-0.11 5.6,-0.16 v 1.55 c -3.3,0 -3.9,0 -3.9,2.23 v 9.17 c 0,5.19 3.5,7.97 6.7,7.97 3.2,0 3.7,-2.69 3.7,-5.53 v -11.61 c 0,-2.23 -0.5,-2.23 -3.9,-2.23 v -1.55 c 1.8,0.05 4.3,0.16 5.7,0.16 1.3,0 3.8,-0.11 5.6,-0.16 v 1.55 c -2.6,0 -3.9,0 -3.9,1.5 v 9.51 c 0,4.28 0,5.83 -1.6,7.61 -0.7,0.86 -2.3,1.84 -5.2,1.84 -3.7,0 -6,-2.14 -7.4,-5.21 v 5.21 l -7,-0.54 v -1.55 c 3.5,0 3.9,-0.34 3.9,-2.78 z"
-           inkscape:connector-curvature="0"
-           style="fill:#ff0000;stroke-width:0" /><path
-           id="path10276"
-           d="m 1401.8,408.93 v -3.28 l 7.3,0.55 v 1.55 c -3.5,0 -3.9,0.34 -3.9,2.78 v 30.25 l -7.2,-0.55 v -1.55 c 3.5,0 3.9,-0.34 3.9,-2.79 v -10.75 c -1.5,1.78 -3.6,3.07 -6.3,3.07 l 0.2,-1.09 c 1.8,0 3.9,-0.75 5.4,-2.98 0.6,-0.85 0.6,-0.96 0.6,-1.85 h 0 v -10.22 c 0,-0.89 0,-1 -0.6,-1.84 -1.5,-2.39 -3.8,-3.48 -5.9,-3.48 -2.2,0 -4,1.29 -5.2,3.18 -1.3,2.05 -1.5,4.89 -1.5,6.93 0,1.84 0.1,4.84 1.6,7.07 1,1.55 2.9,3.19 5.6,3.19 l -0.2,1.09 c -5.9,0 -11.1,-4.87 -11.1,-11.29 0,-6.33 4.9,-11.27 10.6,-11.27 3.1,0 5.4,1.69 6.7,3.28 z"
-           inkscape:connector-curvature="0"
-           style="fill:#ff0000;stroke-width:0" /><path
-           id="path10278"
-           d="m 1419.3,428.21 -6.9,-0.54 v -1.55 c 3.2,0 3.7,-0.3 3.7,-2.73 v -13.41 c 0,-2.23 -0.6,-2.23 -3.9,-2.23 v -1.55 c 1.6,0.05 4.2,0.16 5.5,0.16 1.7,0 3.4,-0.11 5.1,-0.16 v 1.55 c -3.3,0 -3.5,0.25 -3.5,2.18 z"
-           inkscape:connector-curvature="0"
-           style="fill:#ff0000;stroke-width:0" /><path
-           id="path10280"
-           d="m 1419.5,436.89 0,0.14 0,0.15 0,0.14 0,0.14 0,0.13 -0.1,0.13 0,0.13 -0.1,0.12 0,0.12 -0.1,0.12 -0.1,0.11 0,0.1 -0.1,0.1 -0.1,0.1 -0.1,0.1 -0.1,0.08 -0.1,0.09 0,0.08 -0.1,0.07 -0.2,0.07 -0.1,0.07 -0.1,0.06 -0.1,0.05 -0.1,0.05 -0.1,0.04 -0.1,0.04 -0.2,0.03 -0.1,0.03 -0.1,0.02 -0.1,0.01 -0.2,0.01 -0.1,0.01 c -1.5,0 -2.6,-1.35 -2.6,-2.64 0,-1.35 1.1,-2.64 2.6,-2.64 1.4,0 2.6,1.04 2.6,2.64 z"
-           inkscape:connector-curvature="0"
-           style="fill:#ff0000;stroke-width:0" /><path
-           id="path10282"
-           d="m 1429.8,423.34 v -13.36 c 0,-2.23 -0.5,-2.23 -3.9,-2.23 v -1.55 c 1.8,0.05 4.3,0.16 5.6,0.16 1.3,0 3.9,-0.11 5.6,-0.16 v 1.55 c -3.3,0 -3.9,0 -3.9,2.23 v 9.17 c 0,5.19 3.6,7.97 6.8,7.97 3.1,0 3.7,-2.69 3.7,-5.53 v -11.61 c 0,-2.23 -0.6,-2.23 -3.9,-2.23 v -1.55 c 1.7,0.05 4.3,0.16 5.6,0.16 1.3,0 3.9,-0.11 5.6,-0.16 v 1.55 c -2.6,0 -3.9,0 -3.9,1.5 v 9.51 c 0,4.28 0,5.83 -1.6,7.61 -0.6,0.86 -2.3,1.84 -5.2,1.84 -3.6,0 -6,-2.14 -7.4,-5.21 v 5.21 l -7,-0.54 v -1.55 c 3.5,0 3.9,-0.34 3.9,-2.78 z"
-           inkscape:connector-curvature="0"
-           style="fill:#ff0000;stroke-width:0" /><path
-           id="path10284"
-           d="m 1457.3,412.82 0,0.03 0,0.02 0,0.03 0,0.04 0,0.04 0,0.05 0,0.05 0,0.06 0,0.05 0,0.07 0.1,0.06 0,0.07 0,0.07 0,0.08 0,0.08 0,0.08 0,0.08 0.1,0.08 0,0.09 0,0.09 0.1,0.09 0,0.09 0,0.09 0.1,0.1 0,0.09 0.1,0.1 0,0.09 0.1,0.1 0.1,0.09 0,0.1 0.1,0.09 0.1,0.1 c 1.9,-1.39 4,-1.55 4.9,-1.55 v 1.14 c -4.3,0 -4.3,4.99 -4.3,6.14 0,1.35 0,2.94 0.8,4.17 0.4,0.61 1.5,2 3.5,2 4.3,0 4.3,-4.98 4.3,-6.12 0,-1.34 0,-2.94 -0.8,-4.19 -0.4,-0.59 -1.5,-2 -3.5,-2 h 0 v -1.14 c 4.6,0 8.1,3.44 8.1,7.28 0,1.85 -0.8,3.69 -2.1,4.83 1.8,1.69 3.6,1.94 4.5,1.94 0.1,0 0.4,0 0.5,-0.05 -0.5,-0.2 -0.8,-0.75 -0.8,-1.34 0,-0.85 0.7,-1.44 1.5,-1.44 0.5,0 1.4,0.34 1.4,1.48 0,0.85 -0.6,2.44 -2.5,2.44 -1,0 -3.2,-0.3 -5.3,-2.33 -2.1,1.64 -4.2,1.78 -5.3,1.78 -4.6,0 -8.1,-3.43 -8.1,-7.26 0,-2.19 1.1,-4.09 2.4,-5.14 -0.7,-0.74 -1.6,-2.39 -1.6,-4.13 0,-1.54 0.7,-3.43 2.2,-4.43 -3,-0.85 -4.6,-2.99 -4.6,-4.99 0,-3.58 5,-6.33 11,-6.33 l 0.1,1.14 c -5,0 -8.5,2.55 -8.5,5.19 0,2.3 1.9,4.14 4.1,4.28 h 3 c 4.2,0 9.8,0 9.8,-4.28 0,-2.69 -3.5,-5.19 -8.4,-5.19 h 0 l -0.1,-1.14 c 5.9,0 11.1,2.55 11.1,6.43 0,1.75 -0.7,4.29 -3.2,5.68 -2.7,1.39 -5.5,1.39 -8.6,1.39 -1.3,0 -3.4,0 -3.7,0.05 -1.6,0.2 -2.7,1.75 -2.7,3.34 z"
-           inkscape:connector-curvature="0"
-           style="fill:#ff0000;stroke-width:0" /><path
-           id="path10286"
-           d="m 1498.7,417.71 0.1,1.05 c 0.3,7.42 4.5,8.66 6.2,8.66 5.1,0 5.6,-6.72 5.6,-8.66 h -11.8 l -0.1,-1.05 h 13.9 c 1.1,0 1.3,0 1.3,1.05 0,4.92 -2.7,9.75 -8.9,9.75 -5.8,0 -10.4,-5.12 -10.4,-11.36 0,-6.67 5.2,-11.5 11,-11.5 6,0 8.3,5.53 8.3,6.47 0,0.5 -0.4,0.61 -0.7,0.61 -0.4,0 -0.5,-0.3 -0.6,-0.7 -1.8,-5.13 -6.2,-5.13 -6.7,-5.13 -2.5,0 -4.5,1.49 -5.7,3.33 -1.5,2.39 -1.5,5.69 -1.5,7.48 z"
-           inkscape:connector-curvature="0"
-           style="fill:#ff0000;stroke-width:0" /><path
-           id="path10288"
-           d="m 1523.6,422.75 v 5.46 l -6.9,-0.54 v -1.55 c 3.5,0 3.9,-0.34 3.9,-2.78 v -13.36 c 0,-2.23 -0.6,-2.23 -3.9,-2.23 v -1.55 c 1.9,0.05 4.2,0.16 5.7,0.16 1.9,0 4.3,0 6.3,-0.16 v 1.55 h -1.1 c -3.7,0 -3.8,0.54 -3.8,2.34 v 7.67 c 0,4.92 2.1,9.36 5.9,9.36 0.4,0 0.5,0 0.6,-0.05 -0.2,-0.04 -1.2,-0.64 -1.2,-1.93 0,-1.41 1.1,-2.14 2.2,-2.14 0.9,0 2.1,0.59 2.1,2.18 0,1.6 -1.5,3.03 -3.7,3.03 -3.6,0 -5.4,-3.32 -6.1,-5.46 z"
-           inkscape:connector-curvature="0"
-           style="fill:#ff0000;stroke-width:0" /><path
-           id="path10290"
-           d="m 1543.2,422.75 v 5.46 l -7,-0.54 v -1.55 c 3.5,0 3.9,-0.34 3.9,-2.78 v -13.36 c 0,-2.23 -0.5,-2.23 -3.9,-2.23 v -1.55 c 2,0.05 4.3,0.16 5.7,0.16 2,0 4.3,0 6.3,-0.16 v 1.55 h -1 c -3.7,0 -3.8,0.54 -3.8,2.34 v 7.67 c 0,4.92 2.1,9.36 5.9,9.36 0.3,0 0.4,0 0.5,-0.05 -0.1,-0.04 -1.1,-0.64 -1.1,-1.93 0,-1.41 1,-2.14 2.1,-2.14 0.9,0 2.2,0.59 2.2,2.18 0,1.6 -1.6,3.03 -3.7,3.03 -3.6,0 -5.5,-3.32 -6.1,-5.46 z"
-           inkscape:connector-curvature="0"
-           style="fill:#ff0000;stroke-width:0" /><path
-           id="path10292"
-           d="m 1577.9,416.86 -0.1,0.59 0,0.59 -0.1,0.58 -0.1,0.57 -0.1,0.56 -0.1,0.55 -0.2,0.54 -0.2,0.53 -0.2,0.51 -0.3,0.5 -0.2,0.49 -0.3,0.47 -0.3,0.46 -0.4,0.44 -0.3,0.43 -0.4,0.4 -0.4,0.39 -0.4,0.37 -0.4,0.35 -0.4,0.32 -0.5,0.31 -0.4,0.28 -0.5,0.26 -0.5,0.24 -0.5,0.21 -0.5,0.18 -0.5,0.16 -0.5,0.13 -0.6,0.11 -0.5,0.07 -0.6,0.05 -0.6,0.01 0,-1.09 c 2.2,0 4.3,-1.1 5.6,-3.24 1.3,-2.14 1.3,-5.03 1.3,-6.92 0,-1.8 0,-4.48 -1.1,-6.67 -1.1,-2.25 -3.3,-3.69 -5.8,-3.69 h 0 c -2.1,0 -4.3,1.05 -5.6,3.33 -1.3,2.2 -1.3,5.23 -1.3,7.03 0,1.94 0,4.63 1.2,6.83 1.4,2.28 3.7,3.33 5.7,3.33 l 0,1.09 c -6.2,0 -11,-5.42 -11,-11.65 0,-6.43 5.2,-11.21 11,-11.21 6,0 11.1,4.88 11.1,11.21 z"
-           inkscape:connector-curvature="0"
-           style="fill:#ff0000;stroke-width:0" /><path
-           id="path10294"
-           d="m 1587.7,422.75 v 5.46 l -7,-0.54 v -1.55 c 3.5,0 3.9,-0.34 3.9,-2.78 v -13.36 c 0,-2.23 -0.5,-2.23 -3.9,-2.23 v -1.55 c 2,0.05 4.3,0.16 5.7,0.16 2,0 4.4,0 6.4,-0.16 v 1.55 h -1.1 c -3.7,0 -3.8,0.54 -3.8,2.34 v 7.67 c 0,4.92 2.1,9.36 5.9,9.36 0.4,0 0.4,0 0.5,-0.05 -0.1,-0.04 -1.1,-0.64 -1.1,-1.93 0,-1.41 1,-2.14 2.1,-2.14 0.9,0 2.2,0.59 2.2,2.18 0,1.6 -1.6,3.03 -3.7,3.03 -3.6,0 -5.4,-3.32 -6.1,-5.46 z"
-           inkscape:connector-curvature="0"
-           style="fill:#ff0000;stroke-width:0" /><path
-           id="path10296"
-           d="m 1609.3,415.87 0.1,-0.02 0.1,-0.02 0.2,-0.03 0.1,-0.04 0.2,-0.04 0.2,-0.04 0.1,-0.05 0.2,-0.06 0.2,-0.06 0.3,-0.07 0.2,-0.08 0.2,-0.08 0.2,-0.1 0.2,-0.1 0.3,-0.11 0.2,-0.12 0.2,-0.14 0.2,-0.14 0.2,-0.15 0.2,-0.16 0.2,-0.18 0.2,-0.19 0.1,-0.2 0.2,-0.21 0.1,-0.22 0.1,-0.12 0.1,-0.12 0,-0.13 0.1,-0.12 0,-0.14 0.1,-0.13 0,-0.14 0.1,-0.14 0,-0.15 0,-0.15 0,-0.16 0,-0.15 0.1,-0.17 0,-0.16 c 0,-2.53 -1.8,-4.53 -5.7,-4.53 -4.2,0 -6,2.84 -6.9,7.07 -0.1,0.64 -0.2,0.85 -0.7,0.85 -0.6,0 -0.6,-0.35 -0.6,-1.25 v -6.58 c 0,-0.84 0,-1.19 0.5,-1.19 0.2,0 0.3,0.05 1.2,1 0.1,0.1 0.1,0.19 1,1.14 2.2,-2.09 4.5,-2.14 5.5,-2.14 5.8,0 8,3.35 8,6.92 0,2.64 -1.5,4.14 -2,4.74 -1.7,1.59 -3.6,2 -5.7,2.39 -2.8,0.55 -6.2,1.2 -6.2,4.09 0,1.74 1.3,3.78 5.6,3.78 5.5,0 5.7,-4.48 5.8,-6.03 0.1,-0.45 0.5,-0.45 0.7,-0.45 0.6,0 0.6,0.25 0.6,1.2 v 5.03 c 0,0.85 0,1.19 -0.5,1.19 -0.3,0 -0.4,0 -1,-0.59 -0.2,-0.21 -0.7,-0.64 -0.9,-0.8 -1.9,1.39 -3.9,1.39 -4.7,1.39 -6.1,0 -7.9,-3.33 -7.9,-6.12 0,-1.74 0.7,-3.14 2.1,-4.24 1.6,-1.29 3,-1.59 6.6,-2.28 z"
-           inkscape:connector-curvature="0"
-           style="fill:#ff0000;stroke-width:0" /><path
            style="fill:none;stroke:#00ff00;stroke-width:27.6301918;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.43299961;stroke-opacity:1;stroke-dasharray:none"
            d="m 663.63943,-129.75985 45.3549,-45.3549 126.65221,73.12267"
            id="path10436"
            d="m 340.71429,256.91748 47.14285,47.14286"
            id="path10458"
            inkscape:connector-curvature="0"
-           transform="matrix(2.7630192,0,0,-2.7630192,374.7636,633.03925)" /></g>      <path
+           transform="matrix(2.7630192,0,0,-2.7630192,374.7636,633.03925)" /></g>      <g
+         transform="translate(19.192898,26.263966)"
+         id="g3200">
+        <g
+           style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;stroke:#000000;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.43299961;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
+           id="g3202"
+           transform="matrix(0.41107923,0,0,-0.41107923,-71.938865,314.77117)"
+           xml:space="preserve"
+           stroke-miterlimit="10.433"
+           font-style="normal"
+           font-variant="normal"
+           font-weight="normal"
+           font-stretch="normal"
+           font-size-adjust="none"
+           letter-spacing="normal"
+           word-spacing="normal"><path
+             style="fill:#000000;stroke-width:0"
+             inkscape:connector-curvature="0"
+             d="m 479.68,426.68 -4.18,9.91 c -0.15,0.41 -0.25,0.59 -0.25,0.64 0,0.31 0.85,1.25 2.94,1.45 0.5,0.05 1,0.1 1,0.96 0,0.59 -0.61,0.59 -0.75,0.59 -2.05,0 -4.19,-0.16 -6.28,-0.16 -1.25,0 -4.33,0.16 -5.58,0.16 -0.29,0 -0.9,0 -0.9,-1 0,-0.55 0.5,-0.55 1.15,-0.55 2.99,0 3.28,-0.5 3.74,-1.59 l 5.87,-13.91 -10.51,-11.31 -0.64,-0.55 c -2.44,-2.64 -4.79,-3.43 -7.33,-3.57 -0.64,-0.05 -1.1,-0.05 -1.1,-1 0,-0.05 0,-0.55 0.66,-0.55 1.48,0 3.12,0.16 4.67,0.16 1.85,0 3.8,-0.16 5.58,-0.16 0.31,0 0.91,0 0.91,1 0,0.5 -0.5,0.55 -0.6,0.55 -0.45,0.04 -2,0.14 -2,1.54 0,0.8 0.75,1.6 1.35,2.24 l 5.07,5.39 4.49,4.87 5.03,-11.9 c 0.2,-0.55 0.25,-0.6 0.25,-0.71 0,-0.39 -0.94,-1.23 -2.89,-1.43 -0.55,-0.05 -0.99,-0.11 -0.99,-0.96 0,-0.59 0.55,-0.59 0.74,-0.59 1.41,0 4.89,0.16 6.28,0.16 1.25,0 4.28,-0.16 5.53,-0.16 0.35,0 0.95,0 0.95,0.95 0,0.6 -0.5,0.6 -0.9,0.6 -3.33,0.04 -3.44,0.2 -4.28,2.18 -1.94,4.64 -5.28,12.41 -6.42,15.39 3.39,3.5 8.6,9.43 10.2,10.82 1.45,1.2 3.34,2.39 6.33,2.54 0.65,0.05 1.09,0.05 1.09,1 0,0.05 0,0.55 -0.64,0.55 -1.5,0 -3.14,-0.16 -4.69,-0.16 -1.84,0 -3.73,0.16 -5.53,0.16 -0.3,0 -0.94,0 -0.94,-1 0,-0.34 0.25,-0.5 0.6,-0.55 0.45,-0.04 2,-0.15 2,-1.54 0,-0.71 -0.55,-1.35 -0.96,-1.8 z"
+             id="path3204" /><path
+             style="fill:#000000;stroke-width:0"
+             inkscape:connector-curvature="0"
+             d="m 548.79,422.5 0.14,0 0.15,0 0.14,0 0.07,0.01 0.08,0 0.07,0.01 0.07,0.01 0.07,0.01 0.07,0.01 0.07,0.01 0.06,0.02 0.07,0.02 0.06,0.02 0.06,0.02 0.06,0.03 0.06,0.03 0.05,0.04 0.05,0.03 0.05,0.05 0.04,0.04 0.04,0.05 0.02,0.03 0.02,0.03 0.01,0.02 0.02,0.03 0.01,0.03 0.01,0.04 0.02,0.03 0.01,0.04 0.01,0.03 0.01,0.04 0,0.04 0.01,0.04 0,0.04 0.01,0.04 0,0.04 0,0.05 c 0,1 -0.95,1 -1.64,1 H 519 c -0.71,0 -1.65,0 -1.65,-1 0,-0.98 0.94,-0.98 1.69,-0.98 z"
+             id="path3206" /><path
+             style="fill:#000000;stroke-width:0"
+             inkscape:connector-curvature="0"
+             d="m 548.84,412.82 0.07,0 0.06,0 0.14,0.01 0.14,0 0.07,0 0.07,0.01 0.07,0.01 0.06,0 0.07,0.01 0.07,0.02 0.07,0.01 0.06,0.02 0.07,0.02 0.06,0.02 0.06,0.02 0.05,0.03 0.06,0.03 0.05,0.04 0.05,0.04 0.05,0.04 0.04,0.05 0.02,0.02 0.02,0.03 0.02,0.02 0.02,0.03 0.01,0.03 0.02,0.03 0.01,0.03 0.01,0.03 0.02,0.04 0.01,0.03 0.01,0.04 0.01,0.04 0,0.04 0.01,0.04 0,0.04 0.01,0.04 0,0.05 0,0.04 c 0,1 -0.95,1 -1.69,1 h -29.75 c -0.75,0 -1.69,0 -1.69,-1 0,-1 0.94,-1 1.65,-1 z"
+             id="path3208" /><path
+             style="fill:#000000;stroke-width:0"
+             inkscape:connector-curvature="0"
+             d="m 598.4,434.54 0.22,0.36 0.23,0.33 0.23,0.31 0.22,0.29 0.22,0.28 0.22,0.25 0.21,0.24 0.22,0.22 0.21,0.2 0.21,0.19 0.21,0.17 0.21,0.16 0.2,0.14 0.21,0.13 0.2,0.12 0.2,0.11 0.2,0.09 0.19,0.09 0.2,0.07 0.19,0.07 0.19,0.06 0.19,0.05 0.19,0.04 0.18,0.03 0.19,0.03 0.18,0.03 0.36,0.04 0.36,0.02 0.34,0.02 c 0.6,0.05 0.65,0.89 0.65,0.96 0,0.39 -0.25,0.59 -0.65,0.59 -1.29,0 -2.75,-0.16 -4.09,-0.16 -1.64,0 -3.34,0.16 -4.94,0.16 -0.29,0 -0.93,0 -0.93,-0.95 0,-0.55 0.45,-0.6 0.79,-0.6 1.35,-0.09 2.3,-0.59 2.3,-1.64 0,-0.75 -0.75,-1.84 -0.75,-1.89 l -15.3,-24.31 -3.39,26.34 c 0,0.85 1.14,1.5 3.44,1.5 0.7,0 1.25,0 1.25,1 0,0.44 -0.41,0.55 -0.7,0.55 -1.99,0 -4.14,-0.16 -6.18,-0.16 -0.9,0 -1.84,0.05 -2.75,0.05 -0.88,0 -1.84,0.11 -2.68,0.11 -0.35,0 -0.94,0 -0.94,-0.95 0,-0.6 0.44,-0.6 1.24,-0.6 2.79,0 2.84,-0.45 3,-1.68 l 3.92,-30.75 c 0.15,-1 0.36,-1.14 1,-1.14 0.79,0 1,0.25 1.4,0.89 z"
+             id="path3210" /><path
+             style="fill:#000000;stroke-width:0"
+             inkscape:connector-curvature="0"
+             d="m 614.49,409.87 0.02,0.09 0.03,0.1 0.02,0.1 0.03,0.1 0.02,0.1 0.03,0.11 0.06,0.22 0.05,0.22 0.06,0.22 0.05,0.22 0.02,0.11 0.03,0.1 0.02,0.11 0.03,0.1 0.02,0.09 0.02,0.1 0.02,0.09 0.02,0.09 0.02,0.08 0.02,0.07 0.01,0.07 0.02,0.07 0.01,0.06 0.01,0.05 0,0.04 0.01,0.04 0,0.01 0,0.02 0,0.01 0.01,0.01 c 0,0.69 -0.55,1.11 -1.15,1.11 -0.67,0 -1.29,-0.42 -1.5,-1.02 -0.1,-0.26 -0.45,-1.73 -0.7,-2.61 -0.48,-1.98 -0.48,-2.04 -1,-4 -0.45,-1.92 -0.53,-2.2 -0.56,-3.2 0.14,-0.7 -0.14,-1.36 -0.99,-2.41 -0.43,-0.56 -1.14,-1.15 -2.32,-1.15 -1.36,0 -3.15,0.48 -3.15,3.2 0,1.78 0.99,4.36 1.68,6.14 0.59,1.53 0.73,1.84 0.73,2.44 0,1.67 -1.42,2.95 -3.31,2.95 -3.52,0 -5.08,-4.73 -5.08,-5.33 0,-0.45 0.48,-0.45 0.6,-0.45 0.48,0 0.51,0.17 0.62,0.56 0.88,2.89 2.38,4.25 3.76,4.25 0.6,0 0.87,-0.39 0.87,-1.22 0,-0.79 -0.32,-1.56 -0.49,-2.01 -1.98,-5.1 -1.98,-5.8 -1.98,-6.88 0,-4.11 3.73,-4.62 5.6,-4.62 0.68,0 2.38,0 3.94,2.33 0.8,-1.57 2.72,-2.33 4.85,-2.33 3.11,0 4.64,2.67 5.33,4.11 1.5,2.92 2.43,7.28 2.43,8.89 0,2.61 -1.48,2.75 -1.73,2.75 -0.91,0 -1.88,-0.96 -1.88,-1.86 0,-0.58 0.35,-0.86 0.58,-1.08 0.85,-0.69 1.3,-1.67 1.3,-2.78 0,-0.45 -1.47,-9.06 -5.89,-9.06 -2.83,0 -2.83,2.51 -2.83,3.11 0,0.93 0.14,1.5 0.64,3.48 z"
+             id="path3212" /><path
+             style="fill:#000000;stroke-width:0"
+             inkscape:connector-curvature="0"
+             d="m 658.85,420.04 -9.95,9.92 c -0.61,0.6 -0.7,0.71 -1.11,0.71 -0.48,0 -0.98,-0.46 -0.98,-1 0,-0.36 0.09,-0.46 0.64,-1 l 9.97,-10.02 -9.97,-10.01 c -0.55,-0.55 -0.64,-0.64 -0.64,-1 0,-0.55 0.5,-0.99 0.98,-0.99 0.41,0 0.5,0.1 1.11,0.69 l 9.91,9.92 10.31,-10.31 c 0.11,-0.05 0.45,-0.3 0.75,-0.3 0.6,0 1,0.44 1,0.99 0,0.11 0,0.31 -0.15,0.56 -0.05,0.09 -7.97,7.92 -10.46,10.45 l 9.11,9.13 c 0.25,0.29 1,0.93 1.25,1.23 0.05,0.11 0.25,0.3 0.25,0.66 0,0.54 -0.4,1 -1,1 -0.39,0 -0.59,-0.21 -1.14,-0.75 z"
+             id="path3214" /><path
+             style="fill:#000000;stroke-width:0"
+             inkscape:connector-curvature="0"
+             d="m 726.27,427.92 -0.01,0.74 -0.05,0.73 -0.07,0.71 -0.11,0.7 -0.13,0.68 -0.16,0.66 -0.19,0.64 -0.22,0.62 -0.24,0.6 -0.27,0.59 -0.29,0.56 -0.32,0.54 -0.34,0.52 -0.37,0.5 -0.39,0.47 -0.41,0.45 -0.43,0.43 -0.45,0.41 -0.48,0.38 -0.49,0.35 -0.52,0.33 -0.53,0.3 -0.55,0.28 -0.57,0.25 -0.59,0.22 -0.6,0.2 -0.62,0.16 -0.63,0.14 -0.65,0.1 -0.67,0.08 -0.67,0.05 -0.7,0.01 -0.29,-1.25 c 4.09,0 8.58,-2.78 8.58,-10.2 0,-3.59 -1.35,-11.36 -6.29,-17.5 -2.39,-3.03 -6.48,-5.97 -10.65,-5.97 h 0 c -4.94,0 -8.42,4.03 -8.42,10.61 0,2.19 0.68,9.47 4.53,15.3 3.44,5.17 8.31,7.76 12.25,7.76 l 0.29,1.25 c -10.75,0 -21.71,-11.31 -21.71,-22.92 0,-8.26 5.57,-13.29 12.76,-13.29 10.55,0 21.67,10.9 21.67,22.81 z"
+             id="path3216" /><path
+             style="fill:#000000;stroke-width:0"
+             inkscape:connector-curvature="0"
+             d="m 736.11,402.45 -0.03,-0.11 -0.04,-0.12 -0.04,-0.12 -0.05,-0.12 -0.06,-0.12 -0.05,-0.13 -0.07,-0.13 -0.06,-0.12 -0.07,-0.13 -0.08,-0.13 -0.08,-0.13 -0.09,-0.12 -0.08,-0.13 -0.1,-0.12 -0.09,-0.12 -0.11,-0.12 -0.1,-0.12 -0.11,-0.11 -0.12,-0.1 -0.11,-0.1 -0.13,-0.1 -0.12,-0.09 -0.13,-0.08 -0.14,-0.08 -0.13,-0.07 -0.14,-0.06 -0.15,-0.05 -0.15,-0.05 -0.15,-0.04 -0.16,-0.02 -0.16,-0.02 -0.16,0 c -0.11,0 -1.16,0 -1.89,0.48 1.44,0.45 1.53,1.72 1.53,1.92 0,0.77 -0.59,1.3 -1.39,1.3 -0.97,0 -1.99,-0.84 -1.99,-2.14 0,-1.74 1.96,-2.53 3.66,-2.53 1.61,0 3.03,1 3.91,2.47 0.82,-1.85 2.75,-2.47 4.14,-2.47 4.01,0 6.14,4.34 6.14,5.33 0,0.45 -0.46,0.45 -0.56,0.45 -0.49,0 -0.52,-0.17 -0.66,-0.59 -0.74,-2.41 -2.83,-4.22 -4.78,-4.22 -1.39,0 -2.13,0.93 -2.13,2.26 0,0.91 0.85,4.08 1.82,7.96 0.7,2.67 2.26,3.54 3.42,3.54 0.06,0 1.14,0 1.87,-0.48 -1.11,-0.31 -1.53,-1.3 -1.53,-1.92 0,-0.77 0.59,-1.29 1.39,-1.29 0.81,0 1.95,0.66 1.95,2.13 0,1.95 -2.23,2.53 -3.62,2.53 -1.73,0 -3.14,-1.14 -3.91,-2.47 -0.62,1.44 -2.22,2.47 -4.17,2.47 -3.9,0 -6.14,-4.28 -6.14,-5.33 0,-0.45 0.5,-0.45 0.59,-0.45 0.46,0 0.49,0.14 0.68,0.59 0.85,2.72 3.06,4.22 4.76,4.22 1.16,0 2.09,-0.62 2.09,-2.29 0,-0.71 -0.42,-2.44 -0.73,-3.63 z"
+             id="path3218" /><path
+             style="fill:#000000;stroke-width:0"
+             inkscape:connector-curvature="0"
+             d="m 783.82,417.65 h 13.9 c 0.69,0 1.64,0 1.64,1 0,1 -0.95,1 -1.64,1 h -13.9 v 13.96 c 0,0.68 0,1.64 -1,1.64 -0.99,0 -0.99,-0.96 -0.99,-1.64 v -13.96 h -13.95 c -0.7,0 -1.64,0 -1.64,-1 0,-1 0.94,-1 1.64,-1 h 13.95 v -13.94 c 0,-0.7 0,-1.65 0.99,-1.65 1,0 1,0.95 1,1.65 z"
+             id="path3220" /><path
+             style="fill:#000000;stroke-width:0"
+             inkscape:connector-curvature="0"
+             d="m 844.64,434.54 0.23,0.36 0.23,0.33 0.22,0.31 0.22,0.29 0.22,0.28 0.22,0.25 0.22,0.24 0.22,0.22 0.21,0.2 0.21,0.19 0.21,0.17 0.2,0.16 0.21,0.14 0.2,0.13 0.21,0.12 0.19,0.11 0.2,0.09 0.2,0.09 0.19,0.07 0.2,0.07 0.19,0.06 0.19,0.05 0.18,0.04 0.19,0.03 0.18,0.03 0.19,0.03 0.36,0.04 0.35,0.02 0.35,0.02 c 0.59,0.05 0.64,0.89 0.64,0.96 0,0.39 -0.25,0.59 -0.64,0.59 -1.3,0 -2.75,-0.16 -4.09,-0.16 -1.64,0 -3.35,0.16 -4.94,0.16 -0.3,0 -0.94,0 -0.94,-0.95 0,-0.55 0.46,-0.6 0.8,-0.6 1.34,-0.09 2.3,-0.59 2.3,-1.64 0,-0.75 -0.75,-1.84 -0.75,-1.89 l -15.3,-24.31 -3.39,26.34 c 0,0.85 1.14,1.5 3.44,1.5 0.7,0 1.25,0 1.25,1 0,0.44 -0.41,0.55 -0.71,0.55 -1.98,0 -4.14,-0.16 -6.17,-0.16 -0.91,0 -1.84,0.05 -2.75,0.05 -0.89,0 -1.84,0.11 -2.69,0.11 -0.34,0 -0.93,0 -0.93,-0.95 0,-0.6 0.43,-0.6 1.23,-0.6 2.8,0 2.84,-0.45 3,-1.68 l 3.92,-30.75 c 0.16,-1 0.36,-1.14 1,-1.14 0.8,0 1,0.25 1.41,0.89 z"
+             id="path3222" /><path
+             style="fill:#000000;stroke-width:0"
+             inkscape:connector-curvature="0"
+             d="m 851.07,402.45 -0.03,-0.11 -0.04,-0.12 -0.05,-0.12 -0.05,-0.12 -0.05,-0.12 -0.06,-0.13 -0.06,-0.13 -0.07,-0.12 -0.07,-0.13 -0.07,-0.13 -0.08,-0.13 -0.09,-0.12 -0.09,-0.13 -0.09,-0.12 -0.1,-0.12 -0.1,-0.12 -0.1,-0.12 -0.11,-0.11 -0.12,-0.1 -0.12,-0.1 -0.12,-0.1 -0.12,-0.09 -0.13,-0.08 -0.14,-0.08 -0.14,-0.07 -0.14,-0.06 -0.14,-0.05 -0.15,-0.05 -0.15,-0.04 -0.16,-0.02 -0.16,-0.02 -0.17,0 c -0.1,0 -1.15,0 -1.89,0.48 1.44,0.45 1.54,1.72 1.54,1.92 0,0.77 -0.6,1.3 -1.4,1.3 -0.96,0 -1.98,-0.84 -1.98,-2.14 0,-1.74 1.95,-2.53 3.66,-2.53 1.61,0 3.03,1 3.9,2.47 0.83,-1.85 2.75,-2.47 4.14,-2.47 4.02,0 6.14,4.34 6.14,5.33 0,0.45 -0.45,0.45 -0.56,0.45 -0.48,0 -0.51,-0.17 -0.65,-0.59 -0.74,-2.41 -2.83,-4.22 -4.79,-4.22 -1.39,0 -2.12,0.93 -2.12,2.26 0,0.91 0.84,4.08 1.81,7.96 0.7,2.67 2.27,3.54 3.42,3.54 0.07,0 1.14,0 1.88,-0.48 -1.11,-0.31 -1.53,-1.3 -1.53,-1.92 0,-0.77 0.59,-1.29 1.39,-1.29 0.81,0 1.95,0.66 1.95,2.13 0,1.95 -2.23,2.53 -3.62,2.53 -1.74,0 -3.14,-1.14 -3.91,-2.47 -0.63,1.44 -2.22,2.47 -4.17,2.47 -3.91,0 -6.14,-4.28 -6.14,-5.33 0,-0.45 0.5,-0.45 0.59,-0.45 0.45,0 0.49,0.14 0.67,0.59 0.86,2.72 3.07,4.22 4.77,4.22 1.15,0 2.09,-0.62 2.09,-2.29 0,-0.71 -0.42,-2.44 -0.73,-3.63 z"
+             id="path3224" /></g>      </g>
+      <g
+         id="g3446"
+         transform="matrix(1.1669574,0,0,1.1669574,213.91463,1.592309)">
+        <g
+           word-spacing="normal"
+           letter-spacing="normal"
+           font-size-adjust="none"
+           font-stretch="normal"
+           font-weight="normal"
+           font-variant="normal"
+           font-style="normal"
+           stroke-miterlimit="10.433"
+           xml:space="preserve"
+           transform="matrix(0.41107923,0,0,-0.41107923,-71.938865,314.77117)"
+           id="g3448"
+           style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;stroke:#000000;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.43299961;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"><path
+             id="path3450"
+             d="m 487.66,440.82 0,0.02 0,0.02 0,0.01 -0.01,0.02 0,0.02 0,0.02 -0.01,0.02 0,0.02 -0.01,0.02 -0.01,0.02 -0.01,0.02 -0.01,0.02 -0.01,0.02 -0.01,0.02 -0.01,0.02 -0.02,0.02 -0.02,0.02 -0.01,0.02 -0.02,0.02 -0.02,0.02 -0.02,0.01 -0.03,0.02 -0.02,0.01 -0.03,0.02 -0.02,0.01 -0.03,0.01 -0.02,0.01 -0.01,0 -0.02,0.01 -0.02,0 -0.01,0 -0.02,0.01 -0.02,0 -0.02,0 -0.02,0 -0.02,0 -0.02,0 -0.02,0 c -0.25,0 -0.31,-0.04 -0.9,-0.75 l -2.39,-2.84 c -1.3,2.34 -3.89,3.59 -7.13,3.59 -6.33,0 -12.3,-5.73 -12.3,-11.76 0,-4.03 2.65,-6.33 5.18,-7.06 l 5.32,-1.41 c 1.85,-0.44 4.6,-1.19 4.6,-5.28 0,-4.49 -4.1,-9.16 -8.97,-9.16 -3.19,0 -8.72,1.1 -8.72,7.27 0,1.2 0.25,2.39 0.3,2.69 0.04,0.2 0.09,0.25 0.09,0.35 0,0.5 -0.34,0.55 -0.59,0.55 -0.25,0 -0.35,-0.05 -0.5,-0.2 -0.21,-0.2 -2.99,-11.56 -2.99,-11.7 0,-0.3 0.25,-0.5 0.55,-0.5 0.25,0 0.3,0.04 0.89,0.75 l 2.45,2.82 c 2.14,-2.89 5.52,-3.57 8.41,-3.57 6.78,0 12.66,6.62 12.66,12.79 0,3.44 -1.69,5.14 -2.44,5.83 -1.14,1.16 -1.89,1.34 -6.33,2.5 -1.09,0.3 -2.89,0.8 -3.34,0.89 -1.35,0.45 -3.03,1.89 -3.03,4.53 0,4.05 3.98,8.28 8.71,8.28 4.15,0 7.18,-2.14 7.18,-7.73 0,-1.59 -0.21,-2.49 -0.21,-2.78 0,-0.05 0,-0.5 0.61,-0.5 0.5,0 0.55,0.15 0.74,1 z"
+             inkscape:connector-curvature="0"
+             style="fill:#000000;stroke-width:0" /><path
+             id="path3452"
+             d="m 505.5,412.07 3.31,3.32 c 4.45,4.39 5.81,5.75 8.95,5.92 0.46,0.03 0.88,0.03 0.88,0.73 0,0.41 -0.39,0.52 -0.5,0.52 -1,0 -2.22,-0.14 -3.27,-0.14 -0.9,0 -3.14,0.14 -4.05,0.14 -0.28,0 -0.7,-0.11 -0.7,-0.77 0,-0.03 0,-0.45 0.53,-0.48 0.31,-0.03 1.19,-0.11 1.19,-0.88 0,-0.51 -0.53,-1.07 -0.88,-1.42 -0.28,-0.25 -4.7,-4.56 -6,-5.89 l -3.51,6.83 c -0.06,0.11 -0.17,0.34 -0.17,0.48 0,0.25 0.65,0.8 1.84,0.88 0.25,0 0.74,0.03 0.74,0.76 0,0.04 -0.04,0.49 -0.6,0.49 -0.73,0 -1.59,-0.11 -2.33,-0.11 -0.73,0 -1.53,-0.03 -2.26,-0.03 -0.6,0 -1.44,0 -2.06,0.03 -0.6,0.05 -1.32,0.11 -1.88,0.11 -0.17,0 -0.73,0 -0.73,-0.77 0,-0.48 0.45,-0.48 1.01,-0.48 2.02,0 2.19,-0.35 2.53,-1.05 l 4.89,-9.62 -1.95,-1.94 c -0.67,-0.64 -2.3,-2.2 -2.94,-2.86 -4.25,-4.22 -5.67,-5.69 -8.81,-5.83 -0.48,-0.03 -0.86,-0.03 -0.86,-0.76 0,-0.14 0.09,-0.49 0.49,-0.49 1,0 2.18,0.14 3.23,0.14 0.59,0 1.47,0 2.06,-0.03 0.63,-0.05 1.39,-0.11 1.99,-0.11 0.17,0 0.73,0 0.73,0.74 0,0.48 -0.42,0.51 -0.64,0.51 -0.34,0.05 -1.08,0.14 -1.08,0.88 0,0.56 0.46,1.01 1.22,1.78 l 7.08,6.94 4.22,-8.27 c 0.17,-0.34 0.2,-0.42 0.2,-0.45 0,-0.21 -0.62,-0.77 -1.84,-0.88 -0.32,-0.03 -0.77,-0.03 -0.77,-0.76 0,-0.04 0.03,-0.49 0.6,-0.49 0.73,0 1.6,0.11 2.32,0.11 0.74,0 1.55,0.03 2.27,0.03 0.59,0 1.44,0 2.06,-0.03 0.59,-0.05 1.33,-0.11 1.88,-0.11 0.17,0 0.73,0 0.73,0.77 0,0.48 -0.45,0.48 -1,0.48 -2.03,0 -2.2,0.39 -2.51,0.99 z"
+             inkscape:connector-curvature="0"
+             style="fill:#000000;stroke-width:0" /><path
+             id="path3454"
+             d="m 572.07,422.5 0.14,0 0.15,0 0.14,0 0.08,0.01 0.07,0 0.07,0.01 0.07,0.01 0.07,0.01 0.07,0.01 0.07,0.01 0.07,0.02 0.06,0.02 0.06,0.02 0.06,0.02 0.06,0.03 0.06,0.03 0.05,0.04 0.05,0.03 0.05,0.05 0.04,0.04 0.04,0.05 0.02,0.03 0.02,0.03 0.01,0.02 0.02,0.03 0.01,0.03 0.02,0.04 0.01,0.03 0.01,0.04 0.01,0.03 0.01,0.04 0.01,0.04 0,0.04 0.01,0.04 0,0.04 0,0.04 0,0.05 c 0,1 -0.95,1 -1.64,1 h -29.84 c -0.71,0 -1.64,0 -1.64,-1 0,-0.98 0.93,-0.98 1.68,-0.98 z"
+             inkscape:connector-curvature="0"
+             style="fill:#000000;stroke-width:0" /><path
+             id="path3456"
+             d="m 572.12,412.82 0.07,0 0.06,0 0.14,0.01 0.14,0 0.07,0 0.07,0.01 0.07,0.01 0.07,0 0.06,0.01 0.07,0.02 0.07,0.01 0.06,0.02 0.07,0.02 0.06,0.02 0.06,0.02 0.06,0.03 0.05,0.03 0.05,0.04 0.05,0.04 0.05,0.04 0.04,0.05 0.02,0.02 0.02,0.03 0.02,0.02 0.02,0.03 0.01,0.03 0.02,0.03 0.01,0.03 0.02,0.03 0.01,0.04 0.01,0.03 0.01,0.04 0.01,0.04 0.01,0.04 0,0.04 0.01,0.04 0,0.04 0,0.05 0,0.04 c 0,1 -0.95,1 -1.69,1 h -29.75 c -0.75,0 -1.68,0 -1.68,-1 0,-1 0.93,-1 1.64,-1 z"
+             inkscape:connector-curvature="0"
+             style="fill:#000000;stroke-width:0" /><path
+             id="path3458"
+             d="m 615.77,439.91 3.32,3.32 c 4.45,4.39 5.81,5.75 8.95,5.92 0.45,0.03 0.87,0.03 0.87,0.73 0,0.41 -0.39,0.52 -0.5,0.52 -1,0 -2.21,-0.14 -3.26,-0.14 -0.91,0 -3.14,0.14 -4.05,0.14 -0.28,0 -0.7,-0.11 -0.7,-0.77 0,-0.03 0,-0.45 0.53,-0.48 0.31,-0.03 1.19,-0.11 1.19,-0.88 0,-0.51 -0.53,-1.07 -0.88,-1.42 -0.28,-0.25 -4.7,-4.56 -6,-5.89 l -3.51,6.83 c -0.07,0.11 -0.18,0.34 -0.18,0.48 0,0.25 0.66,0.8 1.85,0.88 0.25,0 0.73,0.03 0.73,0.76 0,0.04 -0.03,0.49 -0.59,0.49 -0.74,0 -1.59,-0.11 -2.33,-0.11 -0.73,0 -1.53,-0.03 -2.26,-0.03 -0.6,0 -1.44,0 -2.07,0.03 -0.59,0.05 -1.31,0.11 -1.87,0.11 -0.17,0 -0.74,0 -0.74,-0.77 0,-0.48 0.46,-0.48 1.02,-0.48 2.01,0 2.19,-0.35 2.53,-1.05 l 4.89,-9.62 -1.95,-1.94 c -0.67,-0.64 -2.3,-2.2 -2.94,-2.86 -4.25,-4.22 -5.67,-5.69 -8.81,-5.83 -0.49,-0.03 -0.86,-0.03 -0.86,-0.76 0,-0.14 0.09,-0.49 0.48,-0.49 1,0 2.19,0.14 3.24,0.14 0.59,0 1.47,0 2.06,-0.03 0.62,-0.05 1.39,-0.11 1.98,-0.11 0.18,0 0.74,0 0.74,0.74 0,0.48 -0.42,0.51 -0.64,0.51 -0.35,0.05 -1.08,0.14 -1.08,0.88 0,0.56 0.45,1.01 1.22,1.78 l 7.08,6.94 4.22,-8.27 c 0.17,-0.34 0.2,-0.42 0.2,-0.45 0,-0.21 -0.63,-0.77 -1.85,-0.88 -0.31,-0.03 -0.76,-0.03 -0.76,-0.76 0,-0.04 0.03,-0.49 0.59,-0.49 0.74,0 1.61,0.11 2.33,0.11 0.74,0 1.55,0.03 2.27,0.03 0.59,0 1.43,0 2.06,-0.03 0.59,-0.05 1.33,-0.11 1.87,-0.11 0.18,0 0.74,0 0.74,0.77 0,0.48 -0.45,0.48 -1,0.48 -2.03,0 -2.2,0.39 -2.52,0.99 z"
+             inkscape:connector-curvature="0"
+             style="fill:#000000;stroke-width:0" /><path
+             id="path3460"
+             d="m 657.72,434.48 0.05,0 0.06,0 0.11,0 0.12,0 0.05,0.01 0.06,0 0.06,0.01 0.06,0 0.06,0.01 0.06,0.01 0.05,0.01 0.06,0.02 0.05,0.01 0.05,0.02 0.06,0.02 0.05,0.03 0.04,0.02 0.05,0.03 0.04,0.04 0.04,0.03 0.04,0.04 0.01,0.02 0.02,0.02 0.02,0.03 0.01,0.02 0.02,0.02 0.01,0.03 0.01,0.03 0.01,0.02 0.01,0.03 0.01,0.03 0.01,0.03 0.01,0.03 0,0.04 0.01,0.03 0,0.04 0.01,0.03 0,0.04 0,0.04 c 0,0.86 -0.8,0.86 -1.39,0.86 h -20.77 c -0.56,0 -1.39,0 -1.39,-0.83 0,-0.87 0.8,-0.87 1.39,-0.87 z"
+             inkscape:connector-curvature="0"
+             style="fill:#000000;stroke-width:0" /><path
+             id="path3462"
+             d="m 687.78,446.26 0.12,0.17 0.12,0.17 0.12,0.16 0.12,0.15 0.12,0.15 0.12,0.15 0.12,0.14 0.11,0.13 0.12,0.13 0.12,0.12 0.12,0.12 0.12,0.11 0.12,0.11 0.13,0.1 0.12,0.09 0.13,0.09 0.12,0.09 0.13,0.08 0.14,0.08 0.13,0.07 0.14,0.06 0.14,0.06 0.14,0.06 0.14,0.05 0.15,0.05 0.15,0.04 0.16,0.04 0.15,0.03 0.17,0.03 0.16,0.02 0.17,0.02 0.18,0.02 c 0.42,0.03 0.8,0.06 0.8,0.76 0,0.11 -0.07,0.49 -0.49,0.49 -0.84,0 -1.92,-0.14 -2.8,-0.14 -1.11,0 -2.57,0.14 -3.61,0.14 -0.32,0 -0.7,-0.11 -0.7,-0.77 0,-0.45 0.49,-0.48 0.63,-0.48 1.11,-0.08 1.42,-0.49 1.42,-1.02 0,-0.48 -0.24,-0.83 -0.63,-1.39 l -11.42,-16.86 -3.17,17.8 c -0.06,0.31 -0.06,0.39 -0.06,0.53 0,0.94 1.93,0.94 2.18,0.94 0.6,0 1.05,0 1.05,0.76 0,0.04 -0.03,0.49 -0.59,0.49 -1.02,0 -3.49,-0.14 -4.5,-0.14 -0.86,0 -2.99,0.14 -3.86,0.14 -0.31,0 -0.71,-0.11 -0.71,-0.77 0,-0.48 0.49,-0.48 0.88,-0.48 1.95,0 1.98,-0.22 2.16,-1.13 l 3.79,-21.17 c 0.14,-0.73 0.17,-0.95 0.85,-0.95 0.65,0 0.82,0.25 1.18,0.76 z"
+             inkscape:connector-curvature="0"
+             style="fill:#000000;stroke-width:0" /><path
+             id="path3464"
+             d="m 701.87,431.32 -0.06,-0.01 -0.05,-0.02 -0.05,-0.02 -0.04,-0.02 -0.05,-0.02 -0.04,-0.02 -0.05,-0.02 -0.04,-0.03 -0.04,-0.02 -0.04,-0.03 -0.04,-0.02 -0.03,-0.03 -0.04,-0.02 -0.03,-0.03 -0.03,-0.03 -0.03,-0.03 -0.06,-0.06 -0.05,-0.06 -0.05,-0.06 -0.04,-0.06 -0.04,-0.06 -0.04,-0.06 -0.03,-0.06 -0.03,-0.06 -0.03,-0.06 -0.02,-0.06 -0.02,-0.06 -0.01,-0.05 -0.02,-0.06 -0.01,-0.05 -0.01,-0.04 -0.01,-0.05 0,-0.04 -0.01,-0.03 0,-0.03 0,-0.03 0,-0.02 0,-0.01 0,-0.01 0,-0.01 0,0 0,0 0,0 c 0,-0.43 0.29,-1.02 1.11,-1.02 0.7,0 1.54,0.59 1.54,1.69 0,1.47 -1.64,2.04 -2.95,2.04 -1.63,0 -2.67,-1.04 -3.17,-1.7 -0.83,1.42 -2.42,1.7 -3.31,1.7 -3.11,0 -4.88,-2.93 -4.88,-3.86 0,-0.35 0.39,-0.35 0.52,-0.35 0.21,0 0.42,0.03 0.53,0.29 0.73,2.46 2.78,3.06 3.73,3.06 0.81,0 1.77,-0.34 1.77,-1.65 0,-0.63 -0.46,-2.35 -1.3,-5.66 -0.37,-1.42 -1.52,-2.26 -2.59,-2.26 -0.18,0 -0.89,0 -1.49,0.39 1.11,0.4 1.11,1.34 1.11,1.45 0,0.72 -0.55,1.05 -1.09,1.05 -0.63,0 -1.55,-0.5 -1.55,-1.71 0,-1.51 1.7,-2.04 2.97,-2.04 1.37,0 2.48,0.79 3.09,1.7 0.99,-1.5 2.58,-1.7 3.36,-1.7 3.14,0 4.91,2.97 4.91,3.87 0,0.35 -0.42,0.35 -0.52,0.35 -0.43,0 -0.48,-0.16 -0.56,-0.38 -0.72,-2.25 -2.64,-2.98 -3.73,-2.98 -0.75,0 -1.77,0.26 -1.77,1.65 0,0.32 0,0.49 0.2,1.33 0.43,1.75 1.1,4.52 1.3,4.95 0.31,0.66 1.14,1.64 2.41,1.64 0.08,0 0.92,0 1.5,-0.39 z"
+             inkscape:connector-curvature="0"
+             style="fill:#000000;stroke-width:0" /><polyline
+             id="polyline3466"
+             points="596,418 708.32,418 708.32,420.04 596,420.04 "
+             style="fill:#000000;fill-rule:nonzero;stroke-width:0" /><path
+             id="path3468"
+             d="m 651.55,408.7 0.12,0.17 0.12,0.16 0.12,0.17 0.12,0.15 0.11,0.15 0.12,0.15 0.12,0.13 0.12,0.14 0.12,0.13 0.12,0.12 0.12,0.11 0.12,0.12 0.12,0.1 0.12,0.1 0.13,0.1 0.12,0.09 0.13,0.09 0.13,0.08 0.13,0.07 0.14,0.07 0.13,0.07 0.14,0.06 0.14,0.06 0.15,0.05 0.15,0.05 0.15,0.04 0.15,0.04 0.16,0.03 0.16,0.03 0.17,0.02 0.17,0.02 0.17,0.02 c 0.43,0.03 0.8,0.06 0.8,0.76 0,0.11 -0.06,0.49 -0.48,0.49 -0.85,0 -1.93,-0.14 -2.8,-0.14 -1.11,0 -2.58,0.14 -3.61,0.14 -0.33,0 -0.7,-0.11 -0.7,-0.77 0,-0.45 0.48,-0.48 0.62,-0.48 1.11,-0.08 1.42,-0.49 1.42,-1.02 0,-0.48 -0.23,-0.83 -0.62,-1.39 l -11.42,-16.86 -3.17,17.8 c -0.07,0.31 -0.07,0.39 -0.07,0.53 0,0.94 1.94,0.94 2.19,0.94 0.59,0 1.05,0 1.05,0.76 0,0.03 -0.03,0.49 -0.6,0.49 -1.01,0 -3.48,-0.14 -4.5,-0.14 -0.86,0 -2.98,0.14 -3.86,0.14 -0.31,0 -0.7,-0.11 -0.7,-0.77 0,-0.48 0.49,-0.48 0.88,-0.48 1.95,0 1.98,-0.22 2.15,-1.13 l 3.8,-21.17 c 0.14,-0.74 0.17,-0.95 0.84,-0.95 0.66,0 0.83,0.25 1.19,0.76 z"
+             inkscape:connector-curvature="0"
+             style="fill:#000000;stroke-width:0" /><path
+             id="path3470"
+             d="m 663.03,385.52 0.04,-0.07 0.04,-0.06 0.05,-0.07 0.04,-0.07 0.06,-0.07 0.06,-0.07 0.06,-0.07 0.07,-0.08 0.07,-0.07 0.08,-0.07 0.08,-0.08 0.09,-0.07 0.1,-0.08 0.1,-0.07 0.11,-0.07 0.12,-0.07 0.12,-0.07 0.12,-0.07 0.14,-0.06 0.14,-0.06 0.15,-0.06 0.16,-0.05 0.16,-0.05 0.17,-0.05 0.18,-0.04 0.19,-0.04 0.19,-0.03 0.2,-0.03 0.21,-0.02 0.22,-0.02 0.23,-0.01 0.24,0 c 4.73,0 6.01,7.98 6.01,9.17 0,1.72 -1,2.14 -1.42,2.14 -0.78,0 -1.46,-0.8 -1.46,-1.44 0,-0.47 0.31,-0.71 0.46,-0.84 0.71,-0.53 0.97,-1.17 0.97,-1.91 0,-0.64 -1.25,-6.26 -4.43,-6.26 -0.94,0 -2.4,0.3 -2.4,2.26 0,0.05 0,0.52 0.18,1.27 0.23,1 0.95,3.86 1.29,5.19 0.11,0.39 0.11,0.43 0.11,0.56 0,0.55 -0.45,0.87 -0.92,0.87 -0.41,0 -0.86,-0.21 -1.09,-0.64 -0.11,-0.17 -0.33,-1.09 -0.49,-1.65 -0.34,-1.41 -0.34,-1.47 -0.72,-2.86 -0.2,-0.8 -0.42,-1.74 -0.45,-2.42 0.08,-0.39 0,-0.52 -0.22,-0.94 -0.95,-1.64 -2,-1.64 -2.39,-1.64 -0.37,0 -1.33,0.04 -1.97,0.59 -0.64,0.58 -0.64,1.5 -0.64,1.77 0,1.01 0.31,2.04 1.36,4.58 0.2,0.5 0.36,0.87 0.36,1.29 0,1.22 -1.17,2.21 -2.72,2.21 -2.62,0 -4.01,-3.19 -4.01,-3.86 0,-0.36 0.4,-0.36 0.53,-0.36 0.42,0 0.44,0.12 0.56,0.5 0.53,1.72 1.7,2.86 2.81,2.86 0.49,0 0.75,-0.27 0.75,-0.94 0,-0.5 -0.09,-0.78 -0.42,-1.5 -1.31,-3.24 -1.31,-3.88 -1.31,-4.49 0,-2.85 2.56,-3.51 4.58,-3.51 0.5,0 1.89,0 3.1,1.8 z"
+             inkscape:connector-curvature="0"
+             style="fill:#000000;stroke-width:0" /></g>      </g>
+      <path
          sodipodi:type="arc"
-         style="fill:none;stroke:#ff0000;stroke-width:2;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
-         id="path10416"
-         sodipodi:cx="211.07143"
-         sodipodi:cy="51.203197"
-         sodipodi:rx="18.928572"
-         sodipodi:ry="15"
-         d="m 230,51.203197 c 0,8.284272 -8.47461,15 -18.92857,15 -10.45397,0 -18.92858,-6.715728 -18.92858,-15 0,-8.284271 8.47461,-15 18.92858,-15 10.45396,0 18.92857,6.715729 18.92857,15 z"
-         transform="matrix(0.89247312,0,0,0.89247312,92.852022,125.46149)" />
+         style="opacity:0.68181817;fill:none;stroke:#ff0000;stroke-width:2;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
+         id="path3607"
+         sodipodi:cx="341.43155"
+         sodipodi:cy="39.257938"
+         sodipodi:rx="15.152288"
+         sodipodi:ry="11.111678"
+         d="m 356.58384,39.257938 a 15.152288,11.111678 0 1 1 -30.30458,0 15.152288,11.111678 0 1 1 30.30458,0 z"
+         transform="matrix(1.1519586,0,0,1.2981254,49.752887,128.09781)" />
       <path
          sodipodi:type="arc"
-         style="fill:none;stroke:#ff0000;stroke-width:2;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
-         id="path10416-3"
-         sodipodi:cx="211.07143"
-         sodipodi:cy="51.203197"
-         sodipodi:rx="18.928572"
-         sodipodi:ry="15"
-         d="m 230,51.203197 c 0,8.284272 -8.47461,15 -18.92857,15 -10.45397,0 -18.92858,-6.715728 -18.92858,-15 0,-8.284271 8.47461,-15 18.92858,-15 10.45396,0 18.92857,6.715729 18.92857,15 z"
-         transform="matrix(0.89247312,0,0,0.89247312,231.06631,123.61048)" />
+         style="opacity:0.68181817;fill:none;stroke:#ff0000;stroke-width:2;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
+         id="path3607-6"
+         sodipodi:cx="341.43155"
+         sodipodi:cy="39.257938"
+         sodipodi:rx="15.152288"
+         sodipodi:ry="11.111678"
+         d="m 356.58384,39.257938 a 15.152288,11.111678 0 1 1 -30.30458,0 15.152288,11.111678 0 1 1 30.30458,0 z"
+         transform="matrix(2.9915824,0,0,1.4177716,-803.85992,113.35434)" />
+      <text
+         xml:space="preserve"
+         style="font-size:12px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;font-family:DejaVu Serif;-inkscape-font-specification:DejaVu Serif"
+         x="265.78616"
+         y="206.83875"
+         id="text3627"
+         sodipodi:linespacing="125%"><tspan
+           sodipodi:role="line"
+           id="tspan3629"
+           x="265.78616"
+           y="206.83875"
+           style="fill:#ff0000" /></text>
+      <text
+         xml:space="preserve"
+         style="font-size:12px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;font-family:DejaVu Serif;-inkscape-font-specification:DejaVu Serif"
+         x="52.527931"
+         y="60.471142"
+         id="text3631"
+         sodipodi:linespacing="125%"
+         transform="translate(102.14144,142.32699)"><tspan
+           sodipodi:role="line"
+           id="tspan3633"
+           x="52.527931"
+           y="60.471142" /></text>
+      <text
+         xml:space="preserve"
+         style="font-size:12px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;font-family:DejaVu Serif;-inkscape-font-specification:DejaVu Serif"
+         x="217.29883"
+         y="201.78798"
+         id="text3635"
+         sodipodi:linespacing="125%"><tspan
+           sodipodi:role="line"
+           id="tspan3637"
+           x="217.29883"
+           y="201.78798">Round to floats near Vx</tspan></text>
+      <text
+         xml:space="preserve"
+         style="font-size:12px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;font-family:DejaVu Serif;-inkscape-font-specification:DejaVu Serif"
+         x="440.54254"
+         y="206.83875"
+         id="text3639"
+         sodipodi:linespacing="125%"><tspan
+           sodipodi:role="line"
+           id="tspan3641"
+           x="440.54254"
+           y="206.83875">Increases error in X</tspan></text>
     </g>
   </g>
 </svg>
diff --git a/figures/view_transformation_minimal.pdf b/figures/view_transformation_minimal.pdf
new file mode 100644 (file)
index 0000000..1af0dcb
Binary files /dev/null and b/figures/view_transformation_minimal.pdf differ
diff --git a/presentation/example_uwa_eng.nav b/presentation/example_uwa_eng.nav
deleted file mode 100644 (file)
index fd801fd..0000000
+++ /dev/null
@@ -1,47 +0,0 @@
-\beamer@endinputifotherversion {3.33pt}
-\headcommand {\slideentry {0}{0}{1}{1/1}{}{0}}
-\headcommand {\beamer@framepages {1}{1}}
-\headcommand {\slideentry {0}{0}{2}{2/2}{}{0}}
-\headcommand {\beamer@framepages {2}{2}}
-\headcommand {\sectionentry {1}{Motivation \& Background}{3}{Motivation \& Background}{0}}
-\headcommand {\beamer@sectionpages {1}{2}}
-\headcommand {\beamer@subsectionpages {1}{2}}
-\headcommand {\slideentry {1}{0}{3}{3/3}{}{0}}
-\headcommand {\beamer@framepages {3}{3}}
-\headcommand {\slideentry {1}{0}{4}{4/4}{}{0}}
-\headcommand {\beamer@framepages {4}{4}}
-\headcommand {\slideentry {1}{0}{5}{5/5}{}{0}}
-\headcommand {\beamer@framepages {5}{5}}
-\headcommand {\sectionentry {2}{Some theory}{6}{Some theory}{0}}
-\headcommand {\beamer@sectionpages {3}{5}}
-\headcommand {\beamer@subsectionpages {3}{5}}
-\headcommand {\slideentry {2}{0}{6}{6/6}{}{0}}
-\headcommand {\beamer@framepages {6}{6}}
-\headcommand {\sectionentry {3}{Field Methods}{7}{Field Methods}{0}}
-\headcommand {\beamer@sectionpages {6}{6}}
-\headcommand {\beamer@subsectionpages {6}{6}}
-\headcommand {\slideentry {3}{0}{7}{7/7}{}{0}}
-\headcommand {\beamer@framepages {7}{7}}
-\headcommand {\slideentry {3}{0}{8}{8/8}{}{0}}
-\headcommand {\beamer@framepages {8}{8}}
-\headcommand {\slideentry {3}{0}{9}{9/9}{}{0}}
-\headcommand {\beamer@framepages {9}{9}}
-\headcommand {\sectionentry {4}{Modeling}{10}{Modeling}{0}}
-\headcommand {\beamer@sectionpages {7}{9}}
-\headcommand {\beamer@subsectionpages {7}{9}}
-\headcommand {\slideentry {4}{0}{10}{10/10}{}{0}}
-\headcommand {\beamer@framepages {10}{10}}
-\headcommand {\sectionentry {5}{Modeling2}{11}{Modeling2}{0}}
-\headcommand {\beamer@sectionpages {10}{10}}
-\headcommand {\beamer@subsectionpages {10}{10}}
-\headcommand {\slideentry {5}{0}{11}{11/11}{}{0}}
-\headcommand {\beamer@framepages {11}{11}}
-\headcommand {\slideentry {5}{0}{12}{12/12}{}{0}}
-\headcommand {\beamer@framepages {12}{12}}
-\headcommand {\slideentry {5}{0}{13}{13/13}{}{0}}
-\headcommand {\beamer@framepages {13}{13}}
-\headcommand {\beamer@partpages {1}{13}}
-\headcommand {\beamer@subsectionpages {11}{13}}
-\headcommand {\beamer@sectionpages {11}{13}}
-\headcommand {\beamer@documentpages {13}}
-\headcommand {\def \inserttotalframenumber {13}}
diff --git a/presentation/example_uwa_eng.snm b/presentation/example_uwa_eng.snm
deleted file mode 100644 (file)
index e69de29..0000000
diff --git a/presentation/presentation.nav b/presentation/presentation.nav
deleted file mode 100644 (file)
index 761a13a..0000000
+++ /dev/null
@@ -1,73 +0,0 @@
-\beamer@endinputifotherversion {3.33pt}
-\headcommand {\slideentry {0}{0}{1}{1/1}{}{0}}
-\headcommand {\beamer@framepages {1}{1}}
-\headcommand {\slideentry {0}{0}{2}{2/2}{}{0}}
-\headcommand {\beamer@framepages {2}{2}}
-\headcommand {\sectionentry {1}{Motivation}{3}{Motivation}{0}}
-\headcommand {\beamer@sectionpages {1}{2}}
-\headcommand {\beamer@subsectionpages {1}{2}}
-\headcommand {\slideentry {1}{0}{3}{3/3}{}{0}}
-\headcommand {\beamer@framepages {3}{3}}
-\headcommand {\slideentry {1}{0}{4}{4/4}{}{0}}
-\headcommand {\beamer@framepages {4}{4}}
-\headcommand {\sectionentry {2}{Floating Point}{5}{Floating Point}{0}}
-\headcommand {\beamer@sectionpages {3}{4}}
-\headcommand {\beamer@subsectionpages {3}{4}}
-\headcommand {\slideentry {2}{0}{5}{5/5}{}{0}}
-\headcommand {\beamer@framepages {5}{5}}
-\headcommand {\slideentry {2}{0}{6}{6/6}{}{0}}
-\headcommand {\beamer@framepages {6}{6}}
-\headcommand {\slideentry {2}{0}{7}{7/7}{}{0}}
-\headcommand {\beamer@framepages {7}{7}}
-\headcommand {\slideentry {2}{0}{8}{8/8}{}{0}}
-\headcommand {\beamer@framepages {8}{8}}
-\headcommand {\slideentry {2}{0}{9}{9/9}{}{0}}
-\headcommand {\beamer@framepages {9}{9}}
-\headcommand {\sectionentry {3}{Vector Graphics Viewer}{10}{Vector Graphics Viewer}{0}}
-\headcommand {\beamer@sectionpages {5}{9}}
-\headcommand {\beamer@subsectionpages {5}{9}}
-\headcommand {\slideentry {3}{0}{10}{10/10}{}{0}}
-\headcommand {\beamer@framepages {10}{10}}
-\headcommand {\slideentry {3}{0}{11}{11/11}{}{0}}
-\headcommand {\beamer@framepages {11}{11}}
-\headcommand {\sectionentry {4}{Precision Issues}{12}{Precision Issues}{0}}
-\headcommand {\beamer@sectionpages {10}{11}}
-\headcommand {\beamer@subsectionpages {10}{11}}
-\headcommand {\slideentry {4}{0}{12}{12/12}{}{0}}
-\headcommand {\beamer@framepages {12}{12}}
-\headcommand {\slideentry {4}{0}{13}{13/13}{}{0}}
-\headcommand {\beamer@framepages {13}{13}}
-\headcommand {\slideentry {4}{0}{14}{14/14}{}{0}}
-\headcommand {\beamer@framepages {14}{14}}
-\headcommand {\sectionentry {5}{Arbitrary Precision Rationals}{15}{Arbitrary Precision Rationals}{0}}
-\headcommand {\beamer@sectionpages {12}{14}}
-\headcommand {\beamer@subsectionpages {12}{14}}
-\headcommand {\slideentry {5}{0}{15}{15/15}{}{0}}
-\headcommand {\beamer@framepages {15}{15}}
-\headcommand {\slideentry {5}{0}{16}{16/16}{}{0}}
-\headcommand {\beamer@framepages {16}{16}}
-\headcommand {\sectionentry {6}{Demonstration}{17}{Demonstration}{0}}
-\headcommand {\beamer@sectionpages {15}{16}}
-\headcommand {\beamer@subsectionpages {15}{16}}
-\headcommand {\slideentry {6}{0}{17}{17/17}{}{0}}
-\headcommand {\beamer@framepages {17}{17}}
-\headcommand {\sectionentry {7}{Conclusions}{18}{Conclusions}{0}}
-\headcommand {\beamer@sectionpages {17}{17}}
-\headcommand {\beamer@subsectionpages {17}{17}}
-\headcommand {\slideentry {7}{0}{18}{18/18}{}{0}}
-\headcommand {\beamer@framepages {18}{18}}
-\headcommand {\slideentry {7}{0}{19}{19/19}{}{0}}
-\headcommand {\beamer@framepages {19}{19}}
-\headcommand {\slideentry {7}{0}{20}{20/20}{}{0}}
-\headcommand {\beamer@framepages {20}{20}}
-\headcommand {\slideentry {7}{0}{21}{21/21}{}{0}}
-\headcommand {\beamer@framepages {21}{21}}
-\headcommand {\slideentry {7}{0}{22}{22/22}{}{0}}
-\headcommand {\beamer@framepages {22}{22}}
-\headcommand {\slideentry {7}{0}{23}{23/23}{}{0}}
-\headcommand {\beamer@framepages {23}{23}}
-\headcommand {\beamer@partpages {1}{23}}
-\headcommand {\beamer@subsectionpages {18}{23}}
-\headcommand {\beamer@sectionpages {18}{23}}
-\headcommand {\beamer@documentpages {23}}
-\headcommand {\def \inserttotalframenumber {23}}
index 955ca05..95391bf 100644 (file)
Binary files a/presentation/presentation.pdf and b/presentation/presentation.pdf differ
diff --git a/presentation/presentation.snm b/presentation/presentation.snm
deleted file mode 100644 (file)
index e69de29..0000000
index 8b4108c..d98b820 100644 (file)
@@ -35,7 +35,7 @@
 %   affiliation.
 
 \institute[UWA]% (optional) {Universities of Western Australia} 
-{Supervisors: Tim French, Rowan Davies}
+{Supervisors: Tim French, Rowan Davies \\ Colleagues: David Gow}
 
 \date[CSS 2009]{\today} % change the actual date
  %\titlegraphic{\includegraphics[width=3cm]{./Logos/WAMSI.png}}
 
 \end{frame}
 
+\begin{frame}
+\begin{itemize}
+       \item Vector graphics scale better than raster graphics
+\end{itemize}
+       \centering
+       \includegraphics[scale=0.7528125, viewport=210 85 280 150,clip, width=0.45\textwidth]{../figures/fox-vector.pdf}
+       \includegraphics[scale=0.7528125, viewport=0 85 70 150,clip, width=0.45\textwidth]{../figures/fox-raster.png}
+\end{frame}
+
 
 
 
 \begin{frame} 
 \frametitle{Is there a zoom limit?} 
 \centering
-\includegraphics{../figures/koch1.pdf}
+\includegraphics{../figures/koch.pdf}
 \end{frame}
 
 \section{Floating Point}
 \begin{itemize}
        \item SVG, PostScript, PDF specify IEEE-754 \emph{single} floating point number representations
        \item Range of values: $\approx 3 \times 10^{-38} \to 3 \times 10^{+38}$
+       \item Bigger than size of Universe?
+\end{itemize}
+\end{frame}
+
+\begin{frame}
+\frametitle{Floating Point Definition}
+\begin{itemize}
        \item Rough Floating Point Definition\footnote{IEEE-754 is more complicated}:
        
        \begin{align}
        \end{align}
        \item $m$ and $E$ are encoded in a \emph{fixed length} string of bits
        \item Floating Point $\approx$ Scientific Notation for computers
-
 \end{itemize}
 \end{frame}
 
 \frametitle{Visualisation of Floats II}
 \begin{itemize}
        \item Difference between successive floats
+       \item Further from origin $\implies$ less precision
 \end{itemize}
 \centering
 \includegraphics[width=0.8\textwidth]{../figures/floats_diff.pdf}
 
 \begin{frame}
        \frametitle{Precision is limited}
+       \begin{itemize}
+               \item Eg: Fox scaled to width of $\approx 10^{-6}$ viewed at zoom of $\approx 10^{8}$
+               \item (Outline should look like images in first slide)
+       \end{itemize}
        \centering
        \includegraphics[width=0.8\textwidth]{../figures/fox-vector_highzoom1.png}
 \end{frame}
 
+
 \begin{frame}
 \frametitle{Structure of Vector Graphics}
 \begin{itemize}
 \includegraphics[width=0.5\textwidth]{../figures/fox-vector_face_with_bezbounds.png}
 \end{frame}
 
+\begin{frame}
+\frametitle{Vector Graphics Viewer Features}
+\begin{itemize}
+       \item GPU (OpenGL) or CPU (custom) rendering
+       \item Import SVG into current View location
+       \item Control through scripts (Python) or Qt4 GUI
+\end{itemize}
+\centering
+\includegraphics[width=0.4\textwidth]{../figures/controlpanel_screenshot.png}
+
+\end{frame}
+
 
 \begin{frame}
 \frametitle{Viewing Vector Graphics}
 \end{frame}
 
 
+\begin{frame}
+       \frametitle{Quantitative Results}
+       \begin{itemize}
+               \item Invariance of grid of lines after scaling
+       \end{itemize}
+       \centering
+       \includegraphics[width=0.8\textwidth]{../figures/cumulative_error_grid.pdf}
+\end{frame}
+
+
 
 
 \section{Demonstration}
        \begin{itemize}
                \item Implement more of the SVG standard
                \item Trial alternative number representations
-               \item Allow for saving and loading SVGs with arbitrary precision
+               \item Allow for saving and loading
+               \item Optimisations, eg: clip objects that are not visible
+               \item Compile for Windows (MinGW)
        \end{itemize}
 \end{frame}
-%\section{References}
+
 \begin{frame}
-       \frametitle{References \& More information}
+       \frametitle{Acknowledgements}
        \begin{itemize}
                \item Work on SVG viewer collaborative with David Gow
                \begin{itemize}
                        \item See David Gow's presentation about Quadtrees
                \end{itemize}
+               \item Supervisors: Tim French and Rowan Davies  
+       \end{itemize}
+\end{frame}
+%\section{References}
+\begin{frame}
+       \frametitle{References \& More information}
+       \begin{itemize}
                \item Muller et al, \emph{Handbook of Floating Point Arithmetic}, 
                \item Hearn, Baker \emph{Computer Graphics}
                \item Kahan et al, \emph{IEEE-754} (1985 and 2008 revision)
 \end{frame}
 %\section{Questions}
 
-
-
 \begin{frame}
-\frametitle{Q: Why not just increase \\ floating point precision?}
-\begin{itemize}
-       \item Any fixed precision format will still give inexact results
-       \item Eg: Accuracy of rendering a grid
-\end{itemize}
+\frametitle{Q: Why not just increase float precision?}
+       \begin{itemize}
+               \item GPU uses singles anyway
+               \item Can use CPU for bounds transforms
+               \item But eventually lose precision for any \emph{fixed} precision float
+       \end{itemize}
+       \centering
+       \includegraphics[width=0.8\textwidth]{{../figures/loss_of_precision_grid_0.5}.pdf}
 \end{frame}
 
 \begin{frame}
+
 \frametitle{Q: Arbitrary precision floats?}
 \begin{align}
        X &= m \times 2^{E}
 \end{align}
 \begin{itemize}
        \item $m$ and $E$ are of arbitrary size
-       \item Implemented by MPFR or GMP
+       \item Implemented by MPFR (based on GMP)
        \item Difficulties:
        \begin{itemize}
                \item Need to manually set precision (size) of $m$
                        \frac{1}{3} &= 0.3333333333333333333333 \text{ ... } \times 10^0
                \end{align}
                \item How do you choose when to increase precision?
+               \item GMP Rational implementation automatically increases size, but MPFR floats do not
        \end{itemize}
 \end{itemize}
 \end{frame}
 
 \end{frame}
 
+\begin{frame}
+       \frametitle{Quantitative?}
+%      \begin{figure}[H]
+       \centering
+       \includegraphics[width=0.4\textwidth]{../figures/grid_0_1e-6.png}
+       \includegraphics[width=0.4\textwidth]{../figures/{grid_0.5_1e-6}.png} \\
+       \includegraphics[width=0.4\textwidth]{../figures/grid_1_1e-6.png}
+       \includegraphics[width=0.4\textwidth]{../figures/grid_2_1e-6.png}
+       %\caption{Effect of applying \eqref{view-transformation} to a grid of lines seperated by 1 pixel \\
+       %a) Near origin (denormals) b), c), d) Increasing the exponent of $(v_x,v_y)$ by 1}\label{grid-precision}
+%\end{figure}
+
+       
+\end{frame}
+
+\begin{frame}
+       \frametitle{Bresenham and Wu}
+       \centering
+       \includegraphics[width=0.5\textwidth]{../figures/line1.pdf}
+       \includegraphics[width=0.5\textwidth]{../figures/line2.pdf}
+\end{frame}
+
+\begin{frame}
+       \frametitle{Bonus: IEEE-754 on GPUs}
+       \begin{itemize}
+               \item Inconsistent behaviour of calculations on different GPUs
+               \item {\small Eg: $x^2 + y^2 < 1$ (shading a circle) zoomed in on the edge.}
+       \end{itemize}
+       \centering
+       \includegraphics[width=0.4\textwidth]{../figures/gpufloats.pdf}
+\end{frame}
 
 \end{document}
diff --git a/presentation/presentationWORKINADOBE.pdf b/presentation/presentationWORKINADOBE.pdf
new file mode 100644 (file)
index 0000000..56b9ed4
Binary files /dev/null and b/presentation/presentationWORKINADOBE.pdf differ
index a99c352..4abdfc7 100644 (file)
Binary files a/thesis.pdf and b/thesis.pdf differ
index ec75412..b3e6dee 100644 (file)
@@ -1,5 +1,5 @@
 \documentclass[a4paper,10pt,titlepage]{report}
-\linespread{1.3}
+\linespread{1.2}
 \usepackage{setspace}
 \onehalfspacing 
  \parskip 10pt           % sets spacing between paragraphs

UCC git Repository :: git.ucc.asn.au