Flesh out Literature Review
authorSam Moore <[email protected]>
Wed, 30 Apr 2014 16:56:11 +0000 (00:56 +0800)
committerSam Moore <[email protected]>
Wed, 30 Apr 2014 16:56:11 +0000 (00:56 +0800)
Wasted a lot of time with that vector/raster image example (didn't I say I was going to take it out?? Why do I do these things??)
Anyway, I won't let actual sane descriptions of what I've done get in the way of my ongoing over extended metaphor commit messages.

---

After a terrible battle that lasted more than a day and a night, the skeleton overcame Captain Obvious and ate his flesh.
The skeleton incorporated the flesh into its essence and continued on its way, but after a time the flesh began to rot.

"This is mildly annoying" thought the skeleton (using the brain of Captain Obvious), "but I guess it is better than nothing"

However soon parts of the skeleton were dropping off. "If I don't find some sentence structure soon this will end very badly",
thought the skeleton (using the half of its brain that was still working). "Some citations would be nice too" it added.

chapters/Background.tex
chapters/Conclusion.tex
chapters/Progress.tex
figures/fox-raster.png [new file with mode: 0644]
figures/fox-vector.pdf [new file with mode: 0644]
figures/fox-vector.svg [new file with mode: 0644]
figures/fox.pdf [deleted file]
figures/fox.png [deleted file]
figures/fox.svg [deleted file]
thesis.pdf

index 751dbe9..700a8b9 100644 (file)
 \chapter{Literature Review}\label{Background}
 
 \chapter{Literature Review}\label{Background}
 
-This chapter will \rephrase{review the literature. It will also include some figures created by us from our test programs to aid with conceptual understanding of the literature.}
+This chapter will \rephrase{review the literature. It will also include some figures created by us from our test programs to aid with conceptual understanding of the literature.} A paper by paper summary of the literature is also available at: \\ \url{http://szmoore.net/ipdf/documents/LiteratureNotes.pdf}.
 
 
-\rephrase{TODO: Decide exactly what figures to make, then go make them; so far I have some ideas for a few about Floating Point operations, but none about the other stuff}.
+\rephrase{TODO: If I want to link to the Paper by Paper summary it will need a bit of rewriting}.
 
 \rephrase{TODO: Actually (re)write this entire chapter}.
 
 \rephrase{TODO: Actually (re)write this entire chapter}.
-\rephrase{????: Do I really want to make this go down to} \verb/\subsubsection/
 
 
-A paper by paper summary of the literature is also available at: \\ \url{http://szmoore.net/ipdf/documents/LiteratureNotes.pdf}.
+\rephrase{TODO: Un dot point ify}
 
 
+\rephrase{TODO: Citations}
 
 
-\rephrase{TODO: Actually make that readable or just remove the link}.
+\rephrase{TODO: Make less terrible}
 
 
-\section{Document Formats}
 
 
-Since mankind climbed down from the trees... \rephrase{plagiarism alert!}
+\rephrase{TODO: Reconsider sections (do I really want to make this go down to} \verb/\subsubsection/?)
 
 
-\subsection{Vector Graphics vs Raster Graphics}
+\rephrase{TODO: :-(}
 
 
-Raster Graphics: Stores the exact pixels as they would appear on a device. Causes obvious issues with scaling. Lowest level representation of a document.
 
 
 
 
-Vector Graphics: Stores relative position of primitives - scales better. BUT still can't scale forever. Vector Graphics must be rasterised before being drawn on most display devices.
+\section{Vector Graphics vs Raster Graphics}
 
 
-Vector Graphics formats may contain more information than is shown on the display device; Raster Graphics always contain as much or less pixel information than is shown.
+\newlength\imageheight
+\newlength\imagewidth
+\settoheight\imageheight{\includegraphics{figures/fox-raster.png}}
+\settowidth\imagewidth{\includegraphics{figures/fox-raster.png}}
+
+%Height: \the\imageheight
+%Width: \the\imagewidth
+
+\rephrase{TODO: Distinguish between Raster Formats and the Rasterisation of an image (which may or may not be in a raster format)}
+
+
+\subsubsection{Raster Graphics}
+\begin{itemize}
+       \item Bitmap --- array of colour information for pixels
+       \item Exact pixels in a similar format to how they would appear on a (modern) display device.
+       \begin{itemize}
+               \item Also similar to how they would be stored by a camera or scanner
+               \item \rephrase{Is it misleading to say 2D array? Pixels are actually stored in a 1D array, but conceptually it's nicer to say 2D}
+               \item \rephrase{For that matter, should it described as 3D (3rd dimension = colour)?}
+       \end{itemize}
+       \item Lowest level representation of a document
+       \item Issues with scaling; values of extra pixels must be calculated
+       \item Not convenient to edit; ill suited to text
+\end{itemize}
+
+
+\subsubsection{Vector Graphics}
+\begin{itemize}
+       \item Stores relative position of primitives - scales better
+       \item In particular, \emph{edges} of lines can be zoomed without becomming jagged; sometimes (somewhat misleadingly) described as ``infinitely sharp''
+       \item Vector Graphics must be rasterised before being drawn on most display devices.
+       \item Still can't scale forever due to use of fixed size floats
+\end{itemize}
+
+\subsubsection{Resolution and Raster Graphics}
+\begin{itemize}
+       \item DPI = dots (pixels) per inch differs per display device - a rastered image looks different on different display devices
+       \item PostScript/PDF use 72 points per inch; this means a rasterised image will look the same in all pdf viewers regardless of the display.
+       \item Tex uses 72.27 points per inch (?)
+       \item The vector image was rastered at 96 points per inch
+       \item Hence, have to scale by 72.27/96 = 0.7528125 to get the vector and rastered version to look exactly the same in the pdf
+\end{itemize}
 
 
-\rephrase{Captain Obvious strikes again!} \\
-Figure \ref{fox} shows an example of scaling. The top image is a vector graphics drawing which has been scaled. The bottom image was a raster image of the original drawing which has then been scaled by the same amount. Scaling in = interpolation/antialiasing/just scale the pixels depending on the viewer and scale; scaling out = blurring of pixels by averaging of neighbours. If you are viewing this document in a PDF viewer you can try it yourself! Otherwise, welcome to the 21st century.
 
 
 \begin{figure}[H]
        \centering
 
 
 \begin{figure}[H]
        \centering
-       \includegraphics[width=0.5\textwidth]{figures/fox.pdf}
-       \includegraphics[width=0.5\textwidth]{figures/fox.png}
-       \caption{Scaling of Vector and Raster Graphics}\label{fox}
+
+       \includegraphics[scale=0.7528125]{figures/fox-vector.pdf}
+       \includegraphics[scale=0.7528125]{figures/fox-raster.png}
+       \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}
+       \caption{Scaling of vector and Raster Graphics}\label{vector-vs-raster}
 \end{figure}
 \end{figure}
-\rephrase{I am torn as to whether to use a Fox or Rabbit or Rox here}.
 
 
 
 
-\subsection{Document Format Categories}
 
 
-Main reference: Pixels or Perish\cite{hayes2012pixels}
+Figure \ref{vector-vs-raster} shows a vector image (left) which has been rasterised (right). At the original scale the two foxes should appear to be mirror images\footnote{If I've worked out the scaling to account for dpi differences between inkscape and latex/pdf correctly}. When the scale is increased, the edges of the vector image remain sharp, whilst the raster image begins to appear jagged. PDF viewers will typically use antialiasing to smooth the edges of a scaled bitmap, causing the image to appear blurred.\footnote{In the Atril Document Viewer 1.6.0 this image will only be antialiased at zoom levels $\leq 125\%$}.
 
 
+Various ways to end this section:
 \begin{enumerate}
 \begin{enumerate}
-       \item DOM - eg: HTML/XMLish - defined in terms of elements that can contain other elements
-       \item Programming Language - eg: PostScript - programmer (or program) produces a program that is interpreted
-       \item Combination - eg: Javascript with HTML/XML - Program is interpreted that modifies the DOM. 
+       \item \rephrase{It should be obvious that documents containing text must use the vector graphics format, and so the remainder of this chapter will concentrate on the latter}.
+       \item \rephrase{As can be seen in Figure \ref{fox}, if we were to decide to pursue ``infinite precision'' in raster graphics we would be shooting ourselves in both feet and then the face before we even started. The rest of this chapter will concentrate on vector graphics.}
+       \item \rephrase{You can't have infinite precision in raster graphics by definition, therefore we no longer care about them in this report.}
+       \item \rephrase{This report being in a vector format is a clue that we only care about vector formats}.
+\end{enumerate}
+
+\section{Primitives in Vector Graphics Formats (and how they are Rendered)}
+
+\subsection{Bezier Curves}
+\rephrase{I did an ipython notebook on this in February, but I forgot all of it}
+
+\subsection{Text}
+Text is just Bezier Curves
+
+\subsection{Shapes}
+Shapes are just bezier curves joined together.
+
+\subsection{Other Things}
+We don't really care about other things (ie: Colour gradients etc) in this report.
+
+\section{Document Representations}
+
+\rephrase{The file format can be either human readable\footnote{For some definition of human and some definition of readable} or binary\footnote{So, our viewer is basically a DOM style but stored in a binary format}. Can also be compressed or not. Here we are interested in how the document is interpreted or traversed in order to produce graphics output.}
+
+
+
+\subsection{Interpreted Model}
+
+\rephrase{Did I just invent that terminology or did I read it in a paper? Is there actually existing terminology for this that sounds similar enough to ``Document Object Model'' for me to compare them side by side?}
+
+\begin{itemize}
+       \item This model treats a document as the source code program which produces graphics
+       \item Arose from the desire to produce printed documents using computers (which were still limited to text only displays).
+       \item Typed by hand or (later) generated by a GUI program
+       \item PostScript --- largely supersceded by PDF on the desktop but still used by printers\footnote{Desktop pdf viewers can still cope with PS, but I wonder if a smartphone pdf viewer would implement it?}
+       \item \TeX --- Predates PostScript! {\LaTeX } is being used to create this very document and until now I didn't even have it here!
        \begin{itemize}
        \begin{itemize}
-               \item The lines are becomming increasingly blurred between 1. and 2.
-               \item In the case of Javascript/HTML, a special DOM element \verb/<canvas>/ allows even lower level manipulation of graphics.
+               \item I don't really want to go down the path of investigating the billion steps involved in getting \LaTeX into an actually viewable format
+               \item There are interpreters (usually WYSIWYG editors) for \LaTeX though
+               \item Maybe if \LaTeX were more popular there would be desktop viewers that converted \LaTeX directly into graphics
        \end{itemize}
        \end{itemize}
-\end{enumerate}
+       \item Potential for dynamic content, interactivity; dynamic PostScript, enhanced Postscript
 
 
-Can be either human readable\footnote{For some definition of human and some definition of readable} or binary\footnote{So, our viewer is basically a DOM style but stored in a binary format}
+       \item Scientific Computing --- Mathematica, Matlab, IPython Notebook --- The document and the code that produces it are stored together
+       \item Problems with security --- Turing complete, can be exploited easily
+\end{itemize}
 
 
-\subsection{Modern Graphics Formats}
+\subsection{Crippled Interpreted Model}
 
 
-PostScript: Not actually widely used now, but PDF is basically the same thing.
-PDF: A way for adobe to make money
-SVG: Based on the DOM model, vector format
-BMP,PNG,GIF: Are these even worth mentioning?
+\rephrase{I'm pretty sure I made that one up}
 
 
-HTML: With the evolution of JavaScript and CSS, this has actually become a competitive document format; it can display much more complex dynamic content than eg: PDF.
+\begin{itemize}
+       \item PDF is PostScript but without the Turing Completeness
+       \item Solves security issues, more efficient
+\end{itemize}
 
 
-Web based documents still suffer from precision issues (JavaScript is notorious for its representation of everything, even integers, as floats, so you get rounding errors even with integer maths), and it also has other limitations (requires reasonably skilled programmer to create Javascript and/or a disgusting GUI tool that auto generates 10000 lines to display a button (I have seen one of these)). \rephrase{Hate on javascript a bit less maybe.}
+\subsection{Document Object Model}
 
 
-\subsection{Precision Limitations}
+\begin{itemize}
+       \item DOM = Tree of nodes; node may have attributes, children, data
+       \item XML (SGML) is the standard language used to represent documents in the DOM
+       \item XML is plain text
+       \item SVG is a standard for a vector graphics language conforming to XML (ie: a DOM format)
+\end{itemize}
+
+\subsection{Blurring the Line --- Javascript}
+
+\begin{itemize}
+       \item The document is expressed in DOM format using XML/HTML/SVG
+       \item A Javascript program is run which can modify the DOM
+       \item At a high level this may be simply changing attributes of elements dynamically
+       \item For low level control there is canvas2D and even WebGL which gives direct access to OpenGL functions
+       \item Javascript can be used to make a HTML/SVG interactive
+       \begin{itemize}
+               \item Overlooking the fact that the SVG standard already allows for interactive elements...
+       \end{itemize}
+       \item Javascript is now becoming used even in desktop environments and programs (Windows 8, GNOME 3, Cinnamon, Game Maker Studio) ({\bf shudder})
+       \item There are also a range of papers about including Javascript in PDF ``Pixels or Perish'' being the only one we have actually read\cite{hayes2012pixels} 
+       \begin{itemize}
+               \item I have no idea how this works; PDF is based on PostScript... it seems very circular to be using a programming language to modify a document that is modelled on being a (non turing complete) program
+               \item This is yet more proof that people will converge towards solutions that ``work'' rather than those that are optimal or elegant
+               \item I guess it's too much effort to make HTML look like PDF (or vice versa) so we could phase one out
+       \end{itemize}
+\end{itemize}
+
+
+
+
+\section{Precision Limitations of Modern Documents}
+
+\rephrase{All this is very interesting and provides important context, but it is not actually directly related to the problem of infinite precision which we are going to try and solve}.
+
+\subsection{Limitations Imposed By Standards}
+\begin{itemize}
+       \item Implementations of PostScript and PDF must by definition restrict themselves to IEEE binary32 ``single precision'' floating point number representations in order to conform to the standards\cite{plrm, pdfref17}.
+       \item Implementations of SVG are by definition required to use IEEE binary32 as a {\bf minimum}. ``High Quality'' SVG viewers are required to use at least IEEE binary64.\cite{svg2011-1.1}
+\end{itemize}
+
+
+\subsection{Limitations Imposed By Graphics APIs and/or GPUs}
+
+It's not really the standard's fault (although they could specify double); they specify IEEE because underlying hardware must use IEEE.
+
+\begin{itemize}
+       \item Internal representations are GPU dependent\cite{hillesland2004paranoia}
+       \item OpenGL standards specify: binary16, binary32, binary64
+       \item OpenVG aims to become a standard API for SVG viewers but it uses binary32 and may be {\bf worse} internally\cite{rice2008openvg}
+\end{itemize}
+
+\subsection{Limitations Imposed By CPU}
+
+Even if we don't use the GPU, CPU's are restricted in their representation of floating point numbers by the IEEE standard.
+
+\rephrase{AND THUS WE FINALLY GET TO THE POINT}
 
 \section{Representation of Numbers}
 
 
 \section{Representation of Numbers}
 
-Although this project has been motivated by a desire for more flexible document formats, the fundamental source of limited precision in vector document formats such as PDF and PostScript is the use of floating point numbers to represent the coordinates of vertex positions. In particular, implementations of PostScript and PDF must by definition restrict themselves to IEEE binary32 ``single precision'' floating point number representations in order to conform to the standards\cite{plrm, pdfref17}.
+Although this project has been motivated by a desire for more flexible document formats, the fundamental source of limited precision in vector document formats is the restriction to IEEE floating point numbers for representation of coordinates.
+
+Whilst David Gow will be focusing on structures \rephrase{and the use of multiple coordinate systems} to represent a document so as to avoid or reduce these limitations\cite{proposalGow}, the focus of our own research will be \rephrase{increased precision in the representation of real numbers so as to get away with using a single global coordinate system}.
 
 
-Whilst David Gow will be focusing on how to structure a document format so as to avoid or reduce these limitations\cite{proposalGow}, the focus of our own research will be \rephrase{NUMBERS}.
+\subsection{The IEEE Standard}
 
 \subsection{Floating Point Number Representations}
 
 
 \subsection{Floating Point Number Representations}
 
@@ -93,6 +225,19 @@ The most a result can be rounded in conversion to a floating point number is the
 
 \rephrase{Even though that paper that claims double is the best you will ever need because the error can be as much as the size of a bacterium relative to the distance to the moon}\cite{} \rephrase{there are many cases where increased number of bits will not save you}.\cite{HFP}
 
 
 \rephrase{Even though that paper that claims double is the best you will ever need because the error can be as much as the size of a bacterium relative to the distance to the moon}\cite{} \rephrase{there are many cases where increased number of bits will not save you}.\cite{HFP}
 
+\subsection{Examples of Precision Related Errors in Floating Point Arithmetic}
+
+\subsection{Relate This to the Sorts of Maths Done By Document Formats}
+
+\subsection{Techniques for Arbitrary Precision Arithmetic}
+
+\begin{itemize}
+       \item Fast2SUM for summation (and multiplication).
+       \item Guard digits.
+       \item Other techniques
+       \item Hardware techniques that improve speed (which may be beneficial because you can get away with higher precision in hardware)
+       \item Anything you can do in hardware you can do in software but it will be slower and have more segmentation faults
+\end{itemize}
 
 \subsection{Alternate Number Representations}
 
 
 \subsection{Alternate Number Representations}
 
index 8d9620c..22ccc64 100644 (file)
@@ -4,6 +4,22 @@ This report has provided motivation for considering approaches to achieving an i
 
 \section{Acheived Milestones}
 
 
 \section{Acheived Milestones}
 
-\section{Areas of further Research}
+\section{Areas of further work}
+
+\begin{itemize}
+       \item Continue looking for relevant literature
+       \item Implement all those tests mentioned in Chapter \ref{Introduction}
+       \item \rephrase{Actually identify the techniques I will use} {\bf THIS ONE SHOULD BE DONE BEFORE I HAND IN THE LITERATURE REVIEW!}
+       \item Possible Ultimate Goal: Implement (a subset) of SVG and then show an SVG document that we can render but a browser can't
+       \begin{itemize}
+               \item This means extending our viewer to be able to read (a subset) SVG
+               \item Can already read XML, so this shouldn't actually be too bad
+               \begin{itemize}
+                       \item Emphasis on {\bf subset}
+                       \item (I've seen the SVG standard; I'm talking about implementing the 18 pages under ``Basic Shapes''. The other 818 pages can complain to someone who cares.)
+               \end{itemize}
+               \item Suggestion to David that he probably won't like (or read): Make his octree structure specifiable as an SVG extension
+       \end{itemize}
+\end{itemize}
 
 \section{Witty Conclusion Goes Here}
 
 \section{Witty Conclusion Goes Here}
index d67e913..808e7c0 100644 (file)
@@ -14,6 +14,14 @@ We wrote a very simple OpenGL 1.1 program to experiment with, and then David Gow
        
 \end{itemize}
 
        
 \end{itemize}
 
+\section{Document Format}
+
+Currently we effectively have a DOM format but with the following non-features:
+\begin{itemize}
+       \item Binary file format (non standard; not XML)
+       \item Only rectangles.
+\end{itemize}
+
 \section{Floating Point Number Representations}
 
 \rephrase{I have\footnote{Ok... ``will have''} some figures that I would prefer to include in Chapter \ref{Background} when I am talking about the papers that inspired them.}
 \section{Floating Point Number Representations}
 
 \rephrase{I have\footnote{Ok... ``will have''} some figures that I would prefer to include in Chapter \ref{Background} when I am talking about the papers that inspired them.}
@@ -28,6 +36,8 @@ We wrote a very simple OpenGL 1.1 program to experiment with, and then David Gow
 
 Techniques for dealing with FP numbers can be implemented in software (CPU) or on dedicated hardware (FPU). We are able to run FP arithmetic on arbitrary simulations of FPUs created using VHDL. \rephrase{Hopefully explore this a bit in Chapter \ref{Background}}.
 
 
 Techniques for dealing with FP numbers can be implemented in software (CPU) or on dedicated hardware (FPU). We are able to run FP arithmetic on arbitrary simulations of FPUs created using VHDL. \rephrase{Hopefully explore this a bit in Chapter \ref{Background}}.
 
+
+
 \section{Version Control}
 
 Git is a distributed version control system widely used in the development of open source software\cite{}. 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}
 \section{Version Control}
 
 Git is a distributed version control system widely used in the development of open source software\cite{}. 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}
diff --git a/figures/fox-raster.png b/figures/fox-raster.png
new file mode 100644 (file)
index 0000000..44b396c
Binary files /dev/null and b/figures/fox-raster.png differ
diff --git a/figures/fox-vector.pdf b/figures/fox-vector.pdf
new file mode 100644 (file)
index 0000000..e02adfc
Binary files /dev/null and b/figures/fox-vector.pdf differ
diff --git a/figures/fox-vector.svg b/figures/fox-vector.svg
new file mode 100644 (file)
index 0000000..cd3641c
--- /dev/null
@@ -0,0 +1,218 @@
+<?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"
+   width="348.02771"
+   height="211.20766"
+   id="svg3022"
+   version="1.1"
+   inkscape:version="0.48.3.1 r9886"
+   sodipodi:docname="fox-vector.svg"
+   inkscape:export-filename="/home/sam/Documents/University/2014/ipdf/sam/figures/fox2.png"
+   inkscape:export-xdpi="90"
+   inkscape:export-ydpi="90">
+  <defs
+     id="defs3024" />
+  <sodipodi:namedview
+     id="base"
+     pagecolor="#ffffff"
+     bordercolor="#666666"
+     borderopacity="1.0"
+     inkscape:pageopacity="0.0"
+     inkscape:pageshadow="2"
+     inkscape:zoom="1"
+     inkscape:cx="39.698691"
+     inkscape:cy="155.6971"
+     inkscape:document-units="px"
+     inkscape:current-layer="layer1"
+     showgrid="true"
+     inkscape:window-width="1280"
+     inkscape:window-height="996"
+     inkscape:window-x="0"
+     inkscape:window-y="0"
+     inkscape:window-maximized="1"
+     fit-margin-top="0"
+     fit-margin-left="0"
+     fit-margin-right="0"
+     fit-margin-bottom="0"
+     showguides="true"
+     inkscape:guide-bbox="true"
+     inkscape:snap-global="false">
+    <sodipodi:guide
+       orientation="0,1"
+       position="-30.501799,-24.762576"
+       id="guide3352" />
+    <inkscape:grid
+       type="xygrid"
+       id="grid3582"
+       empspacing="5"
+       visible="true"
+       enabled="true"
+       snapvisiblegridlinesonly="true"
+       originx="-4.9861548px"
+       originy="26.103824px" />
+  </sodipodi:namedview>
+  <metadata
+     id="metadata3027">
+    <rdf:RDF>
+      <cc:Work
+         rdf:about="">
+        <dc:format>image/svg+xml</dc:format>
+        <dc:type
+           rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
+        <dc:title />
+      </cc:Work>
+    </rdf:RDF>
+  </metadata>
+  <g
+     inkscape:label="Layer 1"
+     inkscape:groupmode="layer"
+     id="layer1"
+     transform="translate(724.10153,158.87885)">
+    <g
+       id="g3636"
+       transform="matrix(1.32835,0,0,1.32835,180.62125,44.059858)">
+      <rect
+         y="-152.77502"
+         x="-681.08765"
+         height="159"
+         width="262"
+         id="rect3436"
+         style="fill:#ffffff;fill-opacity:1;stroke:none" />
+      <path
+         inkscape:connector-curvature="0"
+         id="path2991-6"
+         d="m -455.63678,-126.29158 c 0.0464,0.008 0.0977,0.0266 0.13749,0.0433 0.33708,0.14262 0.56903,0.74755 0.56903,1.45023 0,1.10791 0.36662,2.23263 2.23689,6.92643 0.36461,0.91412 0.97992,2.54052 1.37355,3.61473 0.40082,1.09315 1.08506,2.12555 1.55011,2.35931 0.45705,0.22941 1.5021,1.09438 2.3154,1.90477 0.81328,0.81039 1.63594,1.47187 1.84447,1.47187 0.4144,0 3.8655,4.46341 3.8655,5.00001 0,0.18253 0.58866,1.31614 1.31467,2.53248 0.72638,1.216344 1.26761,2.408664 1.19692,2.640704 -0.1085,0.35707 3.54097,3.11689 4.12061,3.11689 0.1067,0 0.73376,0.43593 1.39316,0.97403 0.66005,0.5381 2.22986,1.4331 3.47305,1.96971 1.24322,0.5366 2.51475,1.16505 2.82555,1.40693 0.31098,0.24188 1.15837,0.79668 1.88372,1.23377 1.48499,0.89517 3.63315,3.35029 4.19906,4.78356 0.4044,1.02334 0.35274,1.22613 -0.41201,1.75326 -0.52623,0.36255 -0.66789,0.84132 -0.54942,1.77489 0.17724,1.39637 -0.44702,2.41366 -2.25653,3.70132 -1.44444,1.02782 -4.62549,0.63569 -6.57333,-0.82252 -0.95682,-0.71587 -1.69891,-0.97577 -2.39389,-0.82251 -0.94394,0.20796 -6.56546,-1.14676 -9.24188,-2.22945 -0.89087,-0.36036 -2.04059,-0.37999 -4.37572,-0.0649 -2.93225,0.39598 -6.98014,0.12374 -8.65325,-0.58441 -0.60961,-0.25803 -0.6251,-0.22797 -5.2979,6.90478 -1.27874,1.95228 -2.93189,4.28968 -3.68891,5.19482 -5.88975,7.04119 -8.40157,10.75408 -11.53766,17.16456 -0.73961,1.51157 -1.5472,3.03378 -1.80523,3.37664 -0.57148,0.75937 -2.42552,6.92381 -2.43314,8.09526 -0.005,0.4633 -0.24469,1.59671 -0.52977,2.51084 -0.28502,0.91427 -0.63077,3.61757 -0.76526,6.01733 -0.13414,2.39991 -0.42558,5.65905 -0.6475,7.22947 -0.42217,2.99041 -0.39967,3.12362 1.21654,11.68834 0.43159,2.28406 0.81659,4.36939 0.86337,4.63206 0.0469,0.25933 0.26845,0.73021 0.49055,1.03896 0.22188,0.30919 0.56517,1.11332 0.76524,1.79654 0.30195,1.03526 0.61811,1.29833 1.84447,1.49351 0.81199,0.12969 2.13714,0.7286 2.94328,1.34201 0.80617,0.6134 1.57628,1.12553 1.70709,1.12553 0.13056,0 0.65051,0.83914 1.15771,1.86148 1.06864,2.15938 0.77377,2.88155 -1.23617,2.98702 -0.66266,0.0325 -2.3952,0.25437 -3.84592,0.49784 -8.67176,1.45522 -11.59039,-0.66753 -14.30434,-10.34636 -0.35233,-1.25822 -1.35898,-3.67408 -2.23689,-5.38962 -1.42874,-2.78825 -2.12051,-4.50945 -3.63005,-9.04765 -0.24624,-0.73793 -0.59833,-1.23107 -0.78488,-1.1039 -0.18648,0.12981 -0.23931,0.41072 -0.11774,0.6277 0.12158,0.21444 -0.42527,1.30717 -1.21654,2.42426 -0.79196,1.11759 -2.22932,3.431 -3.19836,5.15153 -0.96846,1.72053 -2.20537,3.4613 -2.74709,3.85283 -1.11712,0.80625 -4.96376,0.92291 -6.20052,0.19481 -0.40921,-0.24162 -1.29459,-0.43429 -1.9818,-0.4329 -1.83739,0 -10.53819,-3.29341 -11.47882,-4.35066 -1.17342,-1.32157 -1.388,-2.50643 -0.72599,-3.91777 0.93737,-1.9998 2.68876,-3.11296 5.08206,-3.22512 1.97439,-0.0948 2.1927,0.009 3.61043,1.51516 1.66082,1.76416 3.93347,2.63444 5.76883,2.22945 1.4507,-0.32002 2.30548,-1.99276 3.41421,-6.70998 1.33146,-5.66627 2.24433,-5.10392 -8.33929,-5.04331 -5.02483,0.0287 -10.32243,-0.0555 -11.77315,-0.17317 -5.9829,-0.48539 -8.23048,-0.72279 -8.53551,-0.93074 -0.17724,-0.12073 -1.50097,-0.29798 -2.94328,-0.38961 -1.61558,-0.10224 -3.19201,-0.484 -4.10098,-0.99567 -0.81197,-0.45656 -1.53714,-0.75026 -1.62861,-0.64935 -0.0918,0.10075 -1.56496,-0.48064 -3.27685,-1.27707 -1.71192,-0.79642 -3.36663,-1.45021 -3.6693,-1.45021 -0.30321,0 -1.21015,-0.35539 -2.00145,-0.80087 l -1.43241,-0.80087 -1.35389,1.36364 c -2.189,2.21179 -5.20433,4.60829 -7.37784,5.88747 -1.11456,0.65578 -2.26192,1.62321 -2.57049,2.14286 -0.33419,0.56279 -0.95327,0.95239 -1.51084,0.95239 -0.51464,0 -1.88508,0.6483 -3.06102,1.45021 -2.67537,1.82276 -6.05457,2.65998 -11.7928,2.92209 -3.8482,0.17455 -4.70423,0.33971 -6.7892,1.40693 -2.22968,1.13705 -5.19974,3.75922 -5.19974,4.56712 0,0.1945 -0.25188,0.57182 -0.54939,0.84415 -0.67235,0.61342 -1.11881,2.71676 -0.72599,3.41993 0.16083,0.28426 0.30965,0.82199 0.3335,1.16883 0.0808,1.16698 1.41225,4.56712 1.78563,4.56712 0.20315,0 0.28482,0.52381 0.17647,1.1472 -0.24444,1.41133 0.50551,3.08959 1.66793,3.72295 0.48416,0.26252 1.98903,0.56701 3.33567,0.64935 1.34666,0.0798 2.94959,0.4228 3.57121,0.75758 1.04153,0.55855 1.12469,0.75221 1.05956,2.59741 -0.039,1.09714 -0.31969,2.42508 -0.6279,2.94373 -0.54175,0.91117 -0.75636,0.93293 -6.41638,0.95239 -3.9772,0.0138 -5.96654,-0.13012 -6.20052,-0.45455 -0.18929,-0.26431 -0.96669,-1.77579 -1.74636,-3.37664 -0.77965,-1.60083 -1.70668,-3.28748 -2.06029,-3.7446 -0.98975,-1.27967 -3.1946,-5.49636 -4.55226,-8.72297 -0.67298,-1.59585 -1.28539,-2.98288 -1.35395,-3.0736 -0.0685,-0.0897 -1.17294,0.4107 -2.4723,1.1039 -1.2988,0.6932 -2.96357,1.56999 -3.68892,1.94806 -0.72537,0.37403 -2.32802,1.70366 -3.57119,2.96538 -1.9809,2.00839 -2.40417,2.26025 -3.39464,2.03464 -0.6219,-0.14161 -1.8447,-0.35521 -2.70776,-0.4762 -1.95433,-0.27428 -3.39315,-1.74844 -2.82558,-2.90044 0.20751,-0.4239 1.32958,-1.77687 2.49195,-3.00867 1.38432,-1.46619 2.05029,-2.45789 1.92299,-2.90044 -0.19443,-0.67824 2.32599,-3.07738 4.63072,-4.39396 0.57092,-0.32914 1.97285,-1.8506 3.10026,-3.37663 1.12815,-1.52753 2.49929,-3.35115 3.04142,-4.06928 0.5418,-0.71813 1.58449,-2.38055 2.33505,-3.67967 0.75051,-1.29912 1.55391,-2.47451 1.76593,-2.61905 0.21212,-0.14461 0.95994,-1.26836 1.6679,-2.48919 0.70788,-1.22132 2.04829,-3.1023 2.98253,-4.1775 1.87414,-2.15799 3.43701,-5.41936 4.1009,-8.5931 0.23854,-1.13854 0.62916,-2.15194 0.8634,-2.25109 0.30577,-0.12966 0.25008,-0.96359 -0.19622,-2.96538 -0.94907,-4.25763 -0.52539,-11.32038 0.68677,-11.32038 0.57863,0 0.77452,1.648 0.35319,2.98702 -0.5993,1.89697 -0.0841,7.98048 0.98111,11.58012 1.22421,4.13789 1.85088,8.06455 1.53052,9.67536 -0.23932,1.20063 -2.3615,6.43616 -2.80596,6.92643 -0.10337,0.11422 -0.99723,2.03538 -1.98185,4.26408 -0.98454,2.22871 -2.35346,4.74931 -3.04131,5.60608 -0.68788,0.85777 -1.88575,2.49435 -2.66858,3.63638 -1.40578,2.05316 -1.41866,2.11783 -1.25583,5.19482 0.15851,2.98723 1.52482,7.41534 2.49197,8.07363 0.19699,0.13466 0.71937,1.04052 1.17732,2.01298 0.45834,0.97248 1.33856,2.57903 1.94256,3.57144 0.60446,0.99244 1.43595,2.51558 1.84445,3.39828 0.4086,0.88271 0.97969,1.7644 1.27546,1.94807 0.58327,0.36355 10.18553,0.0658 10.53693,-0.32469 0.11773,-0.13466 0.31111,-0.78195 0.43166,-1.4502 0.18596,-1.03233 0.0493,-1.32968 -0.90254,-1.94807 -1.38742,-0.89971 -2.75144,-0.93438 -4.23833,-0.0866 -1.03828,0.59013 -1.2376,0.60841 -2.07996,0 -0.50887,-0.36407 -0.82952,-0.83261 -0.72599,-1.01732 0.2429,-0.43388 -1.05069,-3.23528 -2.0211,-4.37232 -0.47203,-0.55356 -0.67967,-1.20467 -0.54934,-1.75326 0.12004,-0.50867 -0.21212,-1.86534 -0.8045,-3.24675 -1.28154,-2.98973 -1.12723,-5.48241 0.47087,-7.27276 0.57084,-0.63834 1.45791,-1.77275 1.96218,-2.51083 0.50425,-0.73808 1.77566,-1.96755 2.82555,-2.70563 2.14829,-1.51123 4.46718,-1.97192 9.59513,-1.92642 5.25245,0.0464 9.43766,-1.50409 12.97007,-4.78357 0.80099,-0.74406 1.99988,-1.46912 2.64895,-1.62338 0.64906,-0.1541 1.92306,-0.7625 2.82557,-1.34199 2.26139,-1.45227 7.56829,-6.11978 8.75136,-7.70566 1.72225,-2.30979 3.32987,-6.56869 4.00287,-10.5628 0.51846,-3.078 0.77713,-3.83118 1.29503,-3.83118 0.86119,0 1.24109,0.72221 0.72599,1.40693 -0.46416,0.61725 -1.33761,3.76591 -1.72672,6.25543 -0.27086,1.73214 -2.17517,6.22327 -2.82554,6.66669 -1.44121,0.98244 1.47824,2.37986 5.2783,2.53248 1.55417,0.0623 3.32236,0.33467 3.94398,0.60606 1.48951,0.65021 5.80728,1.14981 5.94545,0.69264 0.06,-0.19716 0.55522,-0.14963 1.11843,0.0866 1.19349,0.50052 11.92469,0.11048 12.57763,-0.45455 0.23008,-0.19929 1.40943,-0.3317 2.62936,-0.30303 1.2199,0.029 3.32336,-0.24902 4.66997,-0.60606 1.34689,-0.35707 4.90346,-1.21925 7.90765,-1.92641 3.00487,-0.70716 5.76222,-1.46846 6.12201,-1.68832 0.35945,-0.21986 0.91318,-0.38961 1.23624,-0.38961 0.46987,0 0.54403,-0.31169 0.35317,-1.55845 -0.13133,-0.85727 -0.47091,-2.12815 -0.74564,-2.81386 -0.27471,-0.68572 -0.53957,-1.98931 -0.60828,-2.90044 -0.0975,-1.28865 -4.1e-4,-1.69225 0.49055,-1.79655 0.49268,-0.10473 0.6948,0.30104 0.90259,1.86148 0.14671,1.09914 0.43366,2.48045 0.6279,3.05196 0.52213,1.53535 1.08509,4.62504 1.05962,5.75759 -0.0128,0.54459 0.29797,1.58174 0.68672,2.29438 0.43643,0.80042 0.80594,2.52553 0.96148,4.52383 0.13825,1.77987 0.6701,4.58507 1.17732,6.23379 0.50748,1.64821 0.92098,3.40983 0.92224,3.89611 0.001,0.48874 0.25803,1.10078 0.56904,1.38529 0.31082,0.28426 0.56903,1.06165 0.56903,1.70996 0,1.4617 0.51126,2.79243 2.33498,6.03898 0.78483,1.39139 1.43241,2.70402 1.43241,2.92209 0,0.45383 1.33971,3.78107 1.90333,4.71864 0.20572,0.3441 0.48001,0.95779 0.60826,1.38528 0.66395,2.21275 2.30427,5.0933 3.13953,5.5195 0.51782,0.26431 1.40209,0.71222 1.96218,0.99567 1.34217,0.67869 7.41808,0.30009 7.98609,-0.49784 0.21982,-0.30629 0.64833,-0.54111 0.94186,-0.54111 0.29328,0 0.60041,-0.23378 0.68677,-0.51949 0.16596,-0.55037 -0.72783,-0.73391 -1.17729,-0.23811 -0.36462,0.4026 -3.23762,0.46133 -3.23762,0.065 0,-0.47377 1.34279,-1.19048 2.23689,-1.19048 0.9219,0 1.01442,-0.92032 0.17647,-1.68833 -0.49519,-0.45172 -0.80622,-0.42357 -1.84444,0.19484 -0.68593,0.40635 -1.54473,0.68641 -1.92294,0.60606 -0.75679,-0.15959 -1.35107,-2.19138 -1.29505,-4.4156 0.0179,-0.74307 -0.15519,-1.71552 -0.37282,-2.1645 -0.54373,-1.12109 -2.6677,-12.71229 -2.70782,-14.76196 -0.0503,-2.58003 1.33527,-15.07382 1.94253,-17.46759 0.17365,-0.68572 0.58135,-2.27092 0.90264,-3.52815 0.32132,-1.25723 0.77042,-3.02529 1.0007,-3.93941 0.23008,-0.91412 0.56478,-2.03203 0.74561,-2.48919 0.5211,-1.31816 1.60898,-9.34854 1.58941,-11.75328 -0.0128,-1.62029 0.11466,-2.18616 0.51015,-2.18616 0.31521,0 0.52982,0.41888 0.52982,1.01732 0,1.24494 0.53513,1.67321 1.21657,0.97403 0.60443,-0.62024 1.14475,-0.82176 3.00212,-1.06061 1.1488,-0.14761 1.75649,-0.64999 3.57119,-2.92209 1.20505,-1.50907 2.68642,-3.2049 3.27685,-3.78789 1.11777,-1.10348 4.6029,-6.08225 6.29863,-8.98271 1.02688,-1.75693 1.6008,-3.93941 1.03997,-3.93941 -0.2948,0 -1.58554,-1.19549 -3.43384,-3.18183 -0.39169,-0.4209 -0.5133,-0.86235 -0.31398,-1.08225 0.051,-0.0564 0.097,-0.0899 0.15724,-0.12987 -0.30105,-1.89075 0.0998,-6.46817 1.21656,-7.22945 2.26108,-1.5415 5.14926,-0.83835 11.10598,2.68399 3.98651,2.35722 8.30469,4.2458 12.38141,5.41127 1.21608,0.34759 2.70122,0.91294 3.2965,1.25541 1.20377,0.6923 2.41349,0.82029 2.41349,0.25975 0,-0.20047 -0.56255,-0.59063 -1.23617,-0.86581 -0.67364,-0.27528 -1.47478,-0.6772 -1.7856,-0.88745 -0.31095,-0.20994 -0.99285,-0.56995 -1.51087,-0.80086 -0.51785,-0.2309 -1.59742,-0.80117 -2.39387,-1.25542 -0.7965,-0.45419 -1.67098,-0.82252 -1.9622,-0.82252 -0.29123,0 -0.52977,-0.18267 -0.52977,-0.41125 0,-0.59255 1.3767,-0.52074 2.76665,0.15151 0.65297,0.31568 1.8594,0.90623 2.68822,1.29871 0.82877,0.39247 2.46659,1.26313 3.64965,1.92641 1.18243,0.66327 2.35852,1.19048 2.60974,1.19048 0.25085,0 0.77875,0.31436 1.15767,0.69264 0.37118,0.37049 0.81982,0.89903 1.1577,1.38529 0.17134,-0.38244 0.52238,-0.74508 1.02035,-0.95239 0.62144,-0.25895 1.13808,-0.59546 1.13808,-0.73593 0,-0.34311 -3.54552,-2.9885 -5.65113,-4.22079 -0.93288,-0.54558 -2.46235,-1.54004 -3.39459,-2.2078 -0.93288,-0.66776 -1.9771,-1.41179 -2.31537,-1.64503 -3.0288,-2.08856 -4.4678,-3.42227 -4.4934,-4.15586 -0.0441,-1.25563 -3.47351,-7.489204 -4.12065,-7.489204 -0.37231,0 -0.62068,0.56703 -0.74559,1.66667 -0.227,2.0003 -0.86224,2.2576 -2.88441,1.12555 -1.62817,-0.91145 -2.41726,-1.04136 -6.86769,-1.01732 -4.36474,0.0233 -5.95061,0.62369 -8.84947,3.3117 -2.96134,2.745414 -3.32285,3.728894 -3.37494,9.199164 -0.0536,5.58253 0.69311,8.00867 3.35532,10.90913 2.18125,2.37682 2.46696,3.0884 1.33427,3.48486 -0.83349,0.29204 -6.4765,-3.22004 -7.92725,-4.93508 -1.12164,-1.32554 -1.74821,-1.37184 -2.31535,-0.15153 -0.70468,1.51656 -3.08972,4.04763 -3.80668,4.04763 -0.46613,0 -0.78137,-0.50998 -1.05954,-1.75325 -0.67623,-3.02189 -1.68647,-6.54305 -1.88372,-6.53682 -0.22956,0.008 -4.14258,4.14346 -4.84659,5.12989 -0.27799,0.38925 -0.77483,0.65886 -1.11848,0.58442 -0.54201,-0.11741 -0.62786,-0.82539 -0.62786,-5.32469 0,-3.10239 -0.14748,-5.23271 -0.37284,-5.30305 -0.20751,-0.0643 -1.47891,0.73859 -2.82555,1.7749 -4.56342,3.51017 -6.22763,4.57423 -7.92725,5.17317 -0.93222,0.32865 -2.01869,0.8455 -2.43309,1.12555 -0.98954,0.66926 -4.72904,1.38528 -7.14239,1.38528 -1.06606,0 -2.27465,0.27137 -2.70782,0.60607 -0.42863,0.33127 -1.09689,0.59917 -1.49128,0.58441 -0.39433,-0.0149 -3.52753,0.25879 -6.94612,0.60607 -3.41898,0.34713 -6.45876,0.64516 -6.76956,0.67099 -1.05205,0.0873 -14.88649,0.5429 -15.83486,0.51949 -2.51521,-0.0618 -9.19014,-0.89806 -12.02824,-1.49351 -1.97823,-0.41514 -3.31209,-0.52392 -3.53194,-0.28139 -0.21982,0.24254 -0.71924,0.2468 -1.33427,-0.0216 -1.54073,-0.67275 -4.80663,-1.59321 -8.59441,-2.40261 -2.97724,-0.636 -4.27773,-0.69545 -9.20266,-0.36796 -3.19649,0.21245 -6.16709,0.63271 -6.71066,0.93074 -0.53662,0.29423 -1.77673,0.77097 -2.74709,1.06061 -2.00342,0.59784 -5.12786,3.71634 -6.35751,6.34201 -0.47001,1.00489 -1.01032,1.55845 -1.49123,1.55845 -0.41042,0 -0.74566,0.22283 -0.74566,0.47619 0,0.57999 -1.63132,0.16103 -2.53119,-0.64935 -0.35946,-0.32366 -1.39525,-1.26405 -2.29578,-2.07793 -0.89995,-0.81389 -1.79543,-1.47187 -1.9818,-1.47187 -0.18622,0 -2.87639,-2.81438 -5.98468,-6.25543 -5.43823,-6.02054 -7.35252,-7.88325 -10.43885,-10.12991 -0.78678,-0.57251 -2.13503,-1.58731 -2.98252,-2.25109 -4.25663,-3.33298 -10.68388,-5.701674 -17.22803,-6.342014 -2.52583,-0.24711 -5.25401,-0.41586 -6.08281,-0.38961 -1.90026,0.0603 -7.85256,1.57166 -9.18301,2.33767 -0.55275,0.31765 -1.33197,0.583034 -1.74634,0.584424 -0.78549,0.003 -4.62213,1.49624 -5.27835,2.05628 -0.20751,0.17675 -0.83816,0.43837 -1.39312,0.58442 -1.42207,0.37423 -6.91363,4.15575 -8.04496,5.54114 -1.41584,1.74172 -1.8032,2.70597 -3.86557,9.48055 -2.60532,8.54558 -2.70297,9.43483 -1.17729,11.96974 l 1.21654,2.01299 1.09886,-1.92641 c 1.45462,-2.58478 2.20611,-2.40859 2.92368,0.71429 0.65294,2.84261 1.04733,2.95647 3.35535,0.93074 0.91154,-0.79793 1.77704,-1.45022 1.92291,-1.45022 0.65468,0 1.47873,1.54533 1.27545,2.4026 -0.27601,1.16511 0.18802,1.16896 2.0014,0 1.80436,-1.16297 2.18356,-1.49889 3.43383,-2.98702 2.19562,-2.6133 11.81188,-8.54981 13.83344,-8.54981 0.3433,0 2.05467,-0.31297 3.80665,-0.69265 2.94603,-0.63881 3.38815,-0.64302 5.90619,-0.0216 4.54115,1.12059 8.71275,1.94806 9.7717,1.94806 0.55147,0 1.48055,0.23216 2.06029,0.49784 0.58314,0.26363 1.356,0.52678 1.72679,0.60606 0.37102,0.0793 1.35372,0.53179 2.17805,0.99568 0.82422,0.46379 3.14409,1.46742 5.16052,2.22944 2.0164,0.76152 4.51661,1.77695 5.55296,2.25109 1.03571,0.47427 2.89703,1.28089 4.1402,1.79655 2.18772,0.90664 5.42489,3.15154 5.45488,3.78789 0.0292,0.6149 -1.00311,0.29528 -2.21727,-0.69265 -0.68005,-0.55306 -2.95677,-1.70732 -5.06244,-2.55412 -2.10561,-0.84729 -3.99184,-1.67065 -4.19909,-1.83983 -0.20699,-0.16906 -1.82975,-0.81537 -3.59081,-1.45022 -1.761,-0.63485 -4.23089,-1.70651 -5.49409,-2.35932 -1.31232,-0.67823 -2.93625,-1.16883 -3.78701,-1.16883 -0.81909,0 -1.64766,-0.18112 -1.84449,-0.38961 -0.19699,-0.20846 -1.71733,-0.61027 -3.37494,-0.88745 -1.65759,-0.27678 -3.94229,-0.76686 -5.08214,-1.1039 -1.13969,-0.33729 -2.50367,-0.62286 -3.02174,-0.62771 -2.01594,-0.0201 -7.67148,0.90841 -8.04499,1.32035 -0.21648,0.23899 -0.82551,0.43272 -1.35387,0.4329 -0.94912,5e-4 -4.00941,1.552 -7.02467,3.5498 -0.85331,0.56553 -2.87328,2.32191 -4.49334,3.91776 -1.62017,1.59585 -3.52448,3.12381 -4.21874,3.37663 -1.01068,0.36805 -1.20769,0.60411 -1.02035,1.25542 0.19007,0.66128 -0.0652,0.95192 -1.31465,1.49351 -0.84626,0.36655 -1.53049,0.84573 -1.53049,1.06061 0,0.21494 -0.35543,0.88609 -0.78491,1.49351 -0.43312,0.60742 -1.32242,2.01297 -1.98183,3.13854 -0.65937,1.12607 -1.35825,2.34564 -1.56971,2.70564 -0.2134,0.35956 -0.86347,1.50415 -1.45203,2.53247 -0.5883,1.02883 -1.8623,3.18174 -2.82552,4.78357 -0.95684,1.60183 -1.93032,3.28925 -2.15845,3.7446 -0.22623,0.45532 -0.84239,0.88194 -1.37352,0.95238 -1.2426,0.16508 -1.63407,-1.05415 -0.98113,-3.05195 0.37244,-1.13605 0.37813,-1.85369 0.0398,-3.22512 -0.64471,-2.6163 -0.33786,-20.53043 0.41206,-23.78796 1.32527,-5.77044 2.52781,-10.26942 3.06099,-11.40696 0.31341,-0.66876 0.58871,-1.41369 0.58871,-1.64503 0,-1.02444 1.64525,-5.14502 2.5116,-6.27708 0.85334,-1.11809 4.59271,-4.13421 5.1213,-4.13421 0.11594,0 2.03233,-0.98508 4.27755,-2.16451 3.68797,-1.936964 5.42285,-2.596284 9.55589,-3.658024 7.46269,-1.91751 9.21395,-2.04944 14.69673,-1.1039 4.51248,0.77847 8.98854,1.84013 9.968,2.33767 5.9058,3.000694 7.65114,3.971764 8.22153,4.632054 0.37239,0.43138 2.16061,1.99154 3.96363,3.46321 1.80346,1.47163 5.30349,4.94703 7.7899,7.7273 4.83698,5.40799 10.01691,10.15823 11.51804,10.56281 0.74733,0.20148 1.02886,0.006 1.55012,-1.01732 0.35299,-0.6927 0.90343,-1.25542 1.21654,-1.25542 0.31356,0 0.77749,-0.41657 1.02037,-0.93073 0.49848,-1.05476 2.98417,-3.48553 3.41423,-3.33335 0.15365,0.0549 1.08884,-0.39424 2.07992,-0.99568 4.09203,-2.48304 15.7686,-3.24784 21.78029,-1.42857 0.82879,0.25068 2.59734,0.56764 3.944,0.69264 1.34661,0.12489 2.96919,0.38132 3.59078,0.58442 4.66664,1.52448 7.04173,1.83732 15.24623,1.99135 8.37754,0.15708 23.10264,-0.48113 26.882,-1.16884 1.07251,-0.1955 3.89604,-0.66594 6.27897,-1.03896 2.38297,-0.37303 4.62419,-0.85085 4.98398,-1.06061 0.35945,-0.20976 0.99277,-0.38961 1.41276,-0.38961 0.42022,0 1.07264,-0.15376 1.43241,-0.34632 4.60112,-2.4621 6.78038,-3.79545 7.92725,-4.87015 0.75639,-0.70916 1.94859,-1.62651 2.62936,-2.01299 0.68071,-0.386 2.93828,-2.4999 5.02319,-4.71863 2.08489,-2.21824 3.93349,-4.101314 4.12063,-4.177514 0.18698,-0.0758 0.35314,-0.37378 0.35314,-0.671 0,-0.75005 2.82776,-3.52191 4.29721,-4.19914 2.1774,-1.00344 2.19828,-1.30107 0.35319,-5.47621 -1.26584,-2.8648 -1.80587,-4.69626 -2.15842,-7.35933 -0.47191,-3.56523 -0.31478,-4.39396 0.78488,-4.39396 0.26701,0 0.68305,0.38701 0.94186,0.84416 0.25888,0.45731 0.62244,0.82251 0.8045,0.82251 0.9691,0 5.27271,3.43515 7.47597,5.97405 2.39392,2.75883 2.5611,2.88524 3.21794,2.22945 0.69349,-0.69217 2.31002,-1.23027 4.14025,-1.53681 0.0264,-0.88944 0.21033,-2.18845 0.31393,-3.03031 0.44028,-3.5745 1.0018,-5.65949 1.70712,-6.36366 0.3979,-0.39747 0.72599,-0.94012 0.72599,-1.21212 0,-0.69688 1.08981,-1.71389 1.78561,-1.7749 0.0498,-0.004 0.091,-0.008 0.13748,0 z m -0.62788,2.46754 c -0.36617,-0.0425 -0.71347,0.52731 -1.25578,1.45022 -0.61457,1.04628 -0.91862,2.26825 -1.00073,3.9394 -0.0811,1.64763 -0.35858,3.33045 -0.74563,4.39396 2.45534,-0.28589 5.04412,-0.1746 6.22013,0.51948 1.04946,0.61989 0.99429,0.0331 -0.39244,-3.96105 -1.56894,-4.51825 -2.21526,-6.27125 -2.82555,-6.34201 z m -19.81808,4.06927 c -0.25799,0 -0.29621,0.88587 -0.11773,2.59742 0.28314,2.71883 3.18805,9.96693 4.70921,11.75328 0.78144,0.91712 0.98892,2.47214 0.39247,2.8788 -0.44156,0.30122 -1.5305,-0.8852 -1.5305,-1.66667 0,-0.75136 -0.45644,-0.74436 -2.11918,0.0215 -1.97726,0.91123 -2.79856,1.74435 -6.69107,6.774924 l -3.53194,4.58875 -0.27473,4.63205 c -0.15108,2.54838 -0.17878,4.73776 -0.059,4.87015 0.11953,0.13215 0.7991,-0.32761 1.5109,-1.01732 0.71176,-0.68971 1.44452,-1.32335 1.62863,-1.40693 0.18417,-0.0833 0.81997,-0.86436 1.41276,-1.73161 1.44811,-2.11749 2.20196,-1.88864 2.35462,0.69265 0.0654,1.10712 0.28713,2.35128 0.49053,2.77057 0.2034,0.41941 0.37282,1.13324 0.37282,1.58009 0,0.44684 0.3121,1.22143 0.68677,1.73161 l 0.68677,0.93074 1.05959,-1.38529 c 0.58243,-0.76451 1.30901,-1.98771 1.6286,-2.72728 0.32001,-0.73958 0.79758,-1.44754 1.05957,-1.55845 0.26186,-0.11071 1.27366,0.81252 2.23691,2.05629 0.96328,1.24376 1.95461,2.27273 2.21727,2.27273 0.26311,0 0.78267,0.36537 1.1577,0.82252 0.37497,0.4573 1.0352,0.84415 1.452,0.84415 0.64717,0 0.56125,-0.22501 -0.60825,-1.51515 -1.74619,-1.92629 -2.51668,-4.73361 -2.80593,-10.368 -0.1757,-3.42734 -0.0813,-4.66297 0.41206,-6.08227 0.59346,-1.70806 2.12675,-4.069284 2.64895,-4.069284 0.13774,0 1.05954,-0.70737 2.06032,-1.58009 2.63823,-2.30042 6.18971,-3.16215 10.85089,-2.61906 1.90454,0.22192 3.82347,0.6093 4.25793,0.8658 0.43445,0.25653 1.12394,0.35881 1.53052,0.21646 0.53795,-0.1885 0.74564,-0.64413 0.74564,-1.64502 0,-1.09765 -0.33025,-1.6878 -1.60901,-2.92209 -2.03272,-1.9629 -4.05458,-2.97999 -6.84802,-3.46322 -2.37096,-0.41023 -5.65866,-0.21681 -6.69107,0.38961 -0.34909,0.20505 -0.96042,0.36797 -1.35392,0.36797 -0.39369,0 -0.70642,0.28485 -0.70642,0.62771 0,0.34298 0.26061,0.62424 0.58869,0.62771 1.0689,0.0113 1.78027,0.72 1.27541,1.27706 -0.81748,0.90145 -4.3503,-1.42569 -6.98537,-4.61041 -1.67572,-2.02523 -2.98604,-3.18956 -4.51305,-3.96105 -1.1863,-0.59894 -2.25443,-1.25805 -2.37426,-1.47187 -0.11979,-0.21381 -0.39291,-0.38961 -0.60826,-0.38961 z m 2.2761,4.6537 c 0.10158,-0.009 0.22367,-4.1e-4 0.35323,0.0215 0.14774,0.0251 0.30684,0.0828 0.49052,0.15151 0.48678,0.18227 1.00924,0.30248 1.15768,0.25975 0.14902,-0.0424 0.75751,0.56621 1.3343,1.36364 0.57668,0.79742 1.23957,1.45021 1.49127,1.45022 0.25162,0 0.62565,0.32689 0.82413,0.73593 0.37043,0.76451 1.34312,1.4394 3.15912,2.16451 1.32586,0.52962 1.44844,1.87811 0.13748,1.51516 -0.90769,-0.25134 -1.07434,-0.002 -1.88371,2.77057 -0.34848,1.19264 -1.33533,1.31839 -2.31538,0.30303 -0.49455,-0.51267 -1.52067,-2.36761 -2.29578,-4.11257 -0.77513,-1.74496 -1.84185,-3.79193 -2.35459,-4.54547 -0.81972,-1.20434 -0.80938,-2.0134 -0.098,-2.07792 z m 1.88369,2.42425 c -0.19904,0.0437 -0.18596,0.36796 0.17647,0.93074 0.33101,0.51416 0.91875,1.68329 1.31468,2.59741 0.39626,0.91412 0.98708,2.03205 1.31465,2.48919 0.58143,0.81139 0.59662,0.81257 0.60829,-0.30303 0.005,-0.62887 0.18519,-1.14719 0.39244,-1.14719 0.6969,0 0.38308,-0.76165 -0.80451,-1.94806 -0.64904,-0.64832 -1.49633,-1.50477 -1.88371,-1.90477 -0.51292,-0.52971 -0.91921,-0.75797 -1.11846,-0.71429 z m 17.65972,9.41562 c 0.23033,0.0395 0.51856,0.1609 0.84374,0.34632 0.59995,0.34222 1.55869,0.62632 2.13881,0.6277 0.91282,0.002 3.0091,0.47494 4.55226,1.03897 0.25901,0.0948 0.47093,0.45084 0.47093,0.80087 0,0.701304 -1.69234,0.916534 -2.06029,0.25974 -0.11953,-0.21346 -1.18666,-0.61742 -2.37427,-0.88745 -2.5258,-0.5745 -4.35732,-1.51539 -4.04209,-2.07793 0.0662,-0.11822 0.2406,-0.14779 0.47091,-0.10821 z m 0.29433,2.92209 c 0.50853,-0.009 1.26673,0.13502 2.59011,0.389614 2.02671,0.38998 3.2748,0.85995 3.86549,1.47186 0.84226,0.87273 1.18178,2.58265 0.58866,2.98703 -0.15903,0.10849 -1.62204,0.0267 -3.23761,-0.17319 -4.48399,-0.55456 -6.68478,-2.47853 -4.86622,-4.24244 0.2919,-0.283034 0.55104,-0.424054 1.05957,-0.432904 z m 0.68677,1.450224 c -0.0485,-0.0174 -0.10132,-0.0205 -0.15723,0 -0.22264,0.0818 -0.41204,0.32398 -0.41204,0.54112 0,0.217 0.18929,0.45922 0.41204,0.54113 0.22264,0.0823 0.39244,-0.16016 0.39244,-0.54113 0,-0.28561 -0.0903,-0.48901 -0.23547,-0.54112 z m 2.492,0.36796 c -0.1103,-0.007 -0.26089,0.0167 -0.43169,0.0433 -1.07026,0.16706 -1.19179,1.38529 -0.13748,1.38529 0.42579,0 0.80738,-0.34619 0.88297,-0.77923 0.0772,-0.44265 0.0154,-0.62736 -0.31393,-0.64935 z m 10.71353,2.46754 c 0.29005,-0.0103 0.5416,0.0779 0.72602,0.28139 0.41245,0.45432 0.11465,0.97637 -0.9811,1.70996 -0.79066,0.52907 -1.12198,0.55885 -1.47166,0.17316 -0.34963,-0.38549 -0.29989,-0.68919 0.23547,-1.34199 0.42991,-0.5238 1.00785,-0.80528 1.49127,-0.82252 z m -17.52233,1.38529 c -0.18596,0.005 -0.34635,0.0264 -0.47093,0.0649 -2.52609,0.78147 -2.88441,1.09671 -2.88441,2.53248 0,0.84238 -0.18725,2.49351 -0.41212,3.5065 0.70311,0.0274 1.58828,0.61259 2.17807,1.58009 0.87792,1.44076 3.80901,3.74587 5.18017,4.06928 2.16263,0.50996 4.76654,0.47197 6.8088,-0.0866 2.12888,-0.58207 2.42865,-0.55185 4.67005,0.2381 1.31621,0.46346 2.62981,0.82251 2.92363,0.82251 0.29418,0 1.24165,0.38702 2.09953,0.84416 1.72159,0.91752 2.1584,1.00511 2.1584,0.45455 0,-0.20248 -0.5893,-0.68098 -1.31465,-1.06061 -1.36161,-0.71265 -1.74703,-1.47187 -0.74561,-1.47187 0.31352,0 0.85673,0.1606 1.21652,0.36797 2.30857,1.33004 6.38121,2.9857 7.45635,3.03031 1.88315,0.0783 3.75571,-2.61192 2.25651,-3.24676 -0.12492,-0.0528 -0.22957,-0.11435 -0.31396,-0.19481 -0.98828,-0.0785 -7.13352,-2.13331 -11.53766,-3.46321 -1.95756,-0.59104 -3.76702,-1.06061 -4.02252,-1.06061 -0.57406,0 -5.52915,-2.50254 -5.78845,-2.92209 -0.30643,-0.49571 -3.14106,-2.07793 -3.72813,-2.07793 -0.29739,0 -0.81084,-0.25108 -1.13808,-0.56277 -0.71048,-0.67462 -3.28986,-1.39968 -4.59151,-1.36364 z m 33.14135,9.87016 c -0.5891,0.0226 -1.07919,0.41037 -1.07919,0.97403 0,0.6642 0.65223,0.81946 1.66785,0.38961 0.75231,-0.31867 0.75662,-0.94338 0.0205,-1.25541 -0.19981,-0.0846 -0.41188,-0.11578 -0.60828,-0.10825 z m 0.23547,2.85715 c -0.31083,0 -0.56902,0.2541 -0.56902,0.56278 0,0.30869 -0.49683,0.98952 -1.11845,1.51515 -0.62147,0.52564 -1.13811,1.10998 -1.13811,1.29871 0,0.56603 1.96503,-0.4186 2.70787,-1.36364 0.83698,-1.06424 0.88766,-2.013 0.11773,-2.013 z m -251.10136,12.05632 c -0.36159,0 -0.89025,15.6254 -0.54939,16.23382 0.30343,0.54159 0.63411,4.0045 0.60828,6.3853 -0.0179,1.79833 -0.0416,1.79055 2.02105,-1.42857 0.80812,-1.25723 1.55706,-2.3749 1.66789,-2.48919 0.10979,-0.11471 0.45467,-0.7645 0.76524,-1.45022 0.31672,-0.68572 0.87799,-1.62078 1.25578,-2.07793 0.38139,-0.45731 1.48951,-2.22536 2.45273,-3.93941 0.96325,-1.71454 2.30373,-3.9245 2.98253,-4.91343 1.23878,-1.80979 1.61262,-3.92947 0.80448,-4.48054 -0.23265,-0.15609 -1.39427,0.50618 -2.60966,1.45023 -2.4567,1.91452 -2.62707,1.83414 -3.1396,-1.29871 -0.13851,-0.84929 -0.43946,-1.66301 -0.66707,-1.81819 -0.49779,-0.33912 -1.81311,1.39992 -1.82485,2.42425 -0.0128,1.3061 -1.36665,0.79328 -2.45271,-0.93074 -0.57537,-0.91412 -1.16419,-1.66667 -1.3147,-1.66667 z m 202.51756,6.36366 c -0.39668,-0.0558 -1.08068,0.51618 -2.55084,2.07793 -0.38467,0.40835 -0.85996,0.63395 -1.05959,0.49784 -0.21059,-0.14313 -0.3632,0.498 -0.3728,1.53679 -0.0103,0.98494 -0.27047,2.52745 -0.56904,3.44158 -0.6537,2.00158 -0.63334,1.88312 -0.15723,1.88312 0.21366,0 0.49186,-0.33593 0.62791,-0.73593 0.13594,-0.39996 0.77688,-1.5691 1.41278,-2.59741 0.63614,-1.02883 1.44737,-2.56266 1.80523,-3.41993 0.35815,-0.85727 0.80976,-1.55845 1.02032,-1.55845 0.50364,0 0.50948,-0.71328 0,-1.06061 -0.0467,-0.032 -0.10029,-0.057 -0.15697,-0.0649 z m -123.36285,13.59312 c -0.18775,0 -0.25888,0.34925 -0.15723,0.77922 0.168,0.70831 -0.18314,1.71886 -2.59009,7.42427 -0.40939,0.97147 -0.86375,1.77351 -1.00067,1.77489 -0.13722,10e-4 -0.6593,0.70417 -1.17735,1.55845 -1.01172,1.66946 -1.33601,2.0932 -3.88516,5.28141 -0.91347,1.14302 -1.87253,2.50966 -2.11911,3.03031 -0.24649,0.52066 -0.61005,0.84684 -0.80447,0.71428 -0.19443,-0.13253 -0.24111,0.0351 -0.11774,0.38961 0.44244,1.27185 -6.53616,10.06747 -9.22228,11.62342 -1.14377,0.66178 -6.9274,8.15445 -6.73036,8.72297 0.1739,0.50369 2.14019,1.07048 3.70854,1.08225 0.534,0.005 3.34149,-2.20932 5.33717,-4.19914 0.373,-0.37403 1.81033,-1.18314 3.19834,-1.79654 4.07241,-1.80032 4.40352,-2.04161 4.53267,-3.26841 0.0677,-0.64004 0.34029,-1.12555 0.64753,-1.12555 0.2971,0 0.54946,-0.36007 0.54946,-0.80086 0,-0.44385 0.22111,-1.03994 0.49048,-1.342 0.2696,-0.29922 1.22729,-1.68053 2.13885,-3.05196 0.91149,-1.37144 1.89336,-2.7548 2.17802,-3.0736 0.28446,-0.31918 1.30096,-2.37183 2.25649,-4.56712 0.95553,-2.19544 2.03905,-4.4693 2.39389,-5.0433 0.35489,-0.57351 0.99667,-2.23712 1.43238,-3.70131 0.43561,-1.4642 0.75559,-2.76677 0.72599,-2.90045 -0.21853,-0.98529 -1.38742,-6.9596 -1.41279,-7.20781 -0.0154,-0.17143 -0.18519,-0.30303 -0.37279,-0.30303 z m 94.89147,9.54548 c -0.69275,-0.039 -2.10362,0.15565 -2.53122,0.41126 -0.3601,0.21494 -2.01168,0.66165 -3.66927,1.01732 -1.65762,0.35557 -4.45913,1.04317 -6.22014,1.51516 -4.88892,1.31009 -6.75132,1.57951 -14.50059,2.07793 -6.54653,0.42088 -8.82638,0.38707 -14.89305,-0.25975 -2.96345,-0.31617 -1.91093,0.42228 1.51092,1.06061 1.5535,0.28975 2.99117,0.65168 3.19837,0.82252 0.36838,0.30371 3.77915,0.74024 8.30007,1.06061 1.24319,0.088 3.48949,0.32311 5.00357,0.51948 6.74609,0.87522 18.11866,-0.32063 23.35005,-2.46754 2.17479,-0.89218 2.27042,-1.18796 1.39314,-3.87447 -0.29858,-0.91463 -0.54626,-1.71776 -0.54941,-1.7749 -0.005,-0.0708 -0.1616,-0.0952 -0.39244,-0.10823 z m -44.40433,4.19915 c -0.0749,-0.009 -0.1557,-0.004 -0.25496,0 -0.43889,0.02 -0.53598,0.12707 -0.23547,0.25974 0.27199,0.1201 0.60085,0.0948 0.72602,-0.0433 0.0939,-0.10357 -0.0103,-0.18996 -0.23546,-0.21645 z m 45.52281,2.46754 c -0.37354,0 -0.76947,0.16532 -0.88302,0.36797 -0.11337,0.20279 -0.80322,0.4988 -1.53049,0.64935 -0.72748,0.15062 -1.3343,0.52084 -1.3343,0.82252 0,0.30171 -0.29454,0.99171 -0.66715,1.5368 -0.373,0.54508 -0.91003,2.01117 -1.1773,3.2684 -0.66525,3.12732 -2.24515,8.81569 -2.64895,9.52385 -0.25598,0.44917 -0.8785,0.51827 -2.72744,0.30303 -4.90166,-0.57351 -4.92944,-0.58564 -6.41638,-2.38096 -1.38734,-1.67599 -1.47053,-1.70516 -3.21796,-1.42858 -0.98654,0.15459 -1.9975,0.58141 -2.25654,0.95238 -0.93221,1.33153 -0.31536,4.24244 0.90259,4.24244 0.32973,0 1.63563,0.56721 2.90406,1.25542 2.54489,1.37641 10.52434,3.17087 12.12632,2.72728 1.31817,-0.36405 3.84859,-2.99014 4.74851,-4.93508 0.41894,-0.90764 1.11289,-2.05033 1.5305,-2.53248 0.41762,-0.47876 1.14736,-1.55311 1.62862,-2.38096 1.16199,-1.99796 1.40484,-3.9526 0.72605,-5.9524 -0.30547,-0.90066 -0.67523,-2.61784 -0.80453,-3.83118 -0.18699,-1.75311 -0.36279,-2.2078 -0.90259,-2.2078 z"
+         style="fill:#000000" />
+      <path
+         inkscape:connector-curvature="0"
+         id="path3056"
+         d="m -673.53525,-48.436906 c 0.73079,-1.10993 1.83324,-2.88032 2.44996,-3.93421 0.61665,-1.05389 2.62469,-4.37766 4.46221,-7.38615 2.93392,-4.80354 3.3537,-5.61626 3.44553,-6.67066 0.0662,-0.75882 0.0103,-1.26579 -0.15518,-1.3776 -0.14416,-0.0982 -1.19521,0.44754 -2.36252,1.22665 -1.15668,0.77196 -2.28432,1.36505 -2.50588,1.31798 -0.2921,-0.0621 -0.53698,-0.6184 -0.89107,-2.02414 -0.2685,-1.06621 -0.58097,-2.0409 -0.69437,-2.16598 -0.29402,-0.32439 -1.16524,0.77613 -1.5201,1.92019 -0.4668,1.50521 -1.05003,1.41478 -2.59319,-0.40209 -0.71034,-0.83639 -1.34964,-1.41711 -1.42058,-1.2905 -0.0711,0.12662 -0.24906,3.41729 -0.39611,7.3126 -0.21418,5.67924 -0.21084,7.33957 0.0154,8.38055 0.15646,0.71398 0.33906,2.60614 0.40557,4.20478 0.0664,1.59864 0.19032,2.90662 0.27507,2.90662 0.0849,0 0.75218,-0.90811 1.48291,-2.01804 z"
+         style="fill:#ffffff;fill-opacity:1" />
+      <path
+         inkscape:connector-curvature="0"
+         id="path3058"
+         d="m -475.53407,-57.612466 c 0.96246,-1.80273 1.94356,-3.63947 2.18018,-4.08165 0.23649,-0.44218 0.52287,-0.80396 0.63616,-0.80396 0.11337,0 0.20597,-0.16697 0.20597,-0.37106 0,-0.67997 -0.7057,-0.38354 -2.06114,0.86581 -0.73802,0.68027 -1.47714,1.23686 -1.64248,1.23686 -0.19904,0 -0.35099,0.47996 -0.44982,1.42239 -0.1403,1.33807 -0.62724,3.78729 -0.92049,4.63028 -0.0726,0.20846 -0.0344,0.37901 0.0849,0.37901 0.11927,0 1.00421,-1.47495 1.9667,-3.27768 z"
+         style="fill:#ffffff;fill-opacity:1" />
+      <path
+         inkscape:connector-curvature="0"
+         id="path3060"
+         d="m -513.21317,-32.346356 c 6.43298,-0.6637 12.87679,-2.45259 13.2277,-3.67219 0.0677,-0.23657 -0.12979,-1.25411 -0.43959,-2.26122 -0.30984,-1.00711 -0.56406,-1.85892 -0.56491,-1.89294 -0.005,-0.21364 -1.88104,-2.1e-4 -2.70868,0.30822 -1.51357,0.56405 -12.56876,3.23995 -15.23292,3.6871 -5.71868,0.95982 -16.38269,1.40022 -21.7531,0.89834 -3.56688,-0.33333 -4.49883,-0.24039 -2.31548,0.2309 0.71894,0.15521 2.3163,0.55978 3.54969,0.89906 3.22895,0.88822 15.07984,2.07976 20.29466,2.0405 2.1584,-0.0162 4.83259,-0.12325 5.94263,-0.23777 z"
+         style="fill:#ffffff;fill-opacity:1" />
+      <path
+         inkscape:connector-curvature="0"
+         id="path3062"
+         d="m -453.18418,-98.023856 c 0.0677,-0.10693 0.12338,-0.25557 0.12338,-0.33037 0,-0.16698 -0.21931,-0.52476 -0.32162,-0.52476 -0.14646,0 -0.39193,0.35321 -0.39193,0.56352 0,0.12166 0.0759,0.27232 0.17621,0.34984 0.23034,0.17796 0.26725,0.17275 0.41391,-0.0582 z"
+         style="fill:#ffffff;fill-opacity:1" />
+      <path
+         inkscape:connector-curvature="0"
+         id="path3070"
+         d="m -586.69418,1.194744 c -0.44877,-0.80095 -1.82893,-1.1016 -3.0671,-0.66809 -2.91029,1.01893 -4.93123,-1.77368 -7.13855,-9.86412 l -1.77909,-6.52109 4.1055,-4.51297 c 3.33315,-3.66397 5.49338,-4.6914 11.48307,-5.46143 14.18036,-1.82303 28.47295,-12.80116 31.33215,-24.06626 1.13375,-4.4668 2.01838,-5.93419 2.9548,-4.9012 0.93645,1.03298 0.54934,3.52998 -1.293,8.34022 l -2.62959,6.86582 5.69817,0.94259 c 9.91875,1.64077 25.24008,1.02442 35.18107,-1.41528 l 9.60759,-2.35789 -0.80771,-4.74935 c -0.48014,-2.82333 -0.29402,-4.74934 0.45887,-4.74934 0.69663,0 2.52735,6.13965 4.06818,13.64367 3.63516,17.70316 11.98992,37.88034 16.16359,39.03587 3.35724,0.92951 5.54244,-0.49221 3.20542,-2.0855 -0.83074,-0.56636 -2.415,-5.72721 -3.52058,-11.46855 -2.15199,-11.1754 -1.75716,-21.80884 1.27092,-34.22776 0.93832,-3.84821 2.08142,-9.60269 2.54022,-12.78772 0.70226,-4.87501 1.2287,-5.67717 3.32831,-5.0715 1.77122,0.51094 3.97137,-0.99357 7.59083,-5.19072 l 5.09673,-5.91019 -4.64178,-2.74435 c -4.20137,-2.48399 -4.84726,-2.53921 -6.80772,-0.58206 -2.56136,2.55698 -5.17586,0.57649 -5.17586,-3.92068 0,-2.67017 -0.0985,-2.66079 -2.93602,0.27986 -3.98564,4.1304 -4.67528,3.85675 -4.67528,-1.85509 0,-2.69375 -0.29677,-4.89773 -0.65951,-4.89773 -0.36271,0 -3.03187,1.65204 -5.93144,3.6712 -9.12931,6.3573 -41.05597,9.46834 -61.27652,5.97098 -21.97674,-3.80111 -30.49556,-2.86703 -34.44169,3.77653 -3.33524,5.61502 -6.86449,4.22788 -17.98644,-7.06948 -16.55308,-16.814104 -26.83477,-20.965314 -41.86398,-16.902454 -16.22471,4.386034 -22.29197,10.689084 -24.01541,24.948684 -0.66184,5.47551 -0.55559,5.75212 1.49225,3.88607 1.91594,-1.74582 2.35221,-1.74582 3.33016,0 1.93479,3.45426 7.89491,2.47565 15.37032,-2.52372 3.94621,-2.63912 9.34769,-5.33897 12.0033,-5.99968 8.26784,-2.05697 28.42355,3.59491 41.39505,11.60766 4.41117,2.72485 4.75762,3.4031 4.76416,9.32775 0.005,3.51409 0.60151,8.75046 1.32812,11.63639 1.50648,5.98413 -0.68044,12.92006 -7.54336,23.92338 -4.39749,7.05064 -4.14576,10.17202 1.6351,20.27379 3.01792,5.27359 3.82624,5.83001 8.46949,5.83001 3.23284,0 4.8311,-0.53912 4.31726,-1.45627 z"
+         style="fill:#ff7f2a;fill-opacity:1" />
+      <path
+         inkscape:connector-curvature="0"
+         id="path3072"
+         d="m -617.22642,-10.138076 c 1.61796,-1.31753 4.40224,-3.13808 6.18728,-4.04567 1.94387,-0.98839 3.41295,-2.07497 3.66312,-2.70942 0.60761,-1.54062 1.26224,-2.62285 3.92969,-6.49627 3.03603,-4.40865 8.60695,-16.55844 8.58022,-18.71288 -0.0103,-0.86727 -0.27479,-2.91266 -0.58669,-4.54533 -0.51961,-2.72025 -0.59076,-2.84093 -0.85118,-1.4433 -0.59015,3.16735 -3.18526,8.06462 -7.18798,13.56456 -2.27744,3.12926 -4.43764,6.35747 -4.80058,7.1738 -0.36294,0.81633 -3.60822,4.71244 -7.21176,8.65803 -6.04474,6.6185 -8.43219,9.63861 -7.99497,10.11359 0.0952,0.10332 0.88348,0.33419 1.75198,0.5131 1.40243,0.28889 1.90816,0.0573 4.52087,-2.07021 l 0,0 z"
+         style="fill:#ff7f2a;fill-opacity:1" />
+      <path
+         inkscape:connector-curvature="0"
+         id="path3074"
+         d="m -505.07084,-13.818336 c 2.50608,-2.52881 6.65182,-9.60847 6.65182,-11.35929 0,-1.18142 -1.24314,-7.752 -1.55714,-8.23026 -0.0428,-0.0651 -0.90033,0.23808 -1.9058,0.67376 -2.13709,0.92603 -2.59085,1.86199 -4.64719,9.5856 -0.76052,2.85647 -1.59893,5.48092 -1.86317,5.83214 -0.46234,0.61449 -1.53755,0.58232 -6.03723,-0.18065 -0.78886,-0.13374 -2.24038,-0.9861 -3.22561,-1.8941 -1.3788,-1.27075 -2.0813,-1.59319 -3.0507,-1.40025 -1.78915,0.35607 -2.38068,1.01942 -2.38068,2.66975 0,1.23506 0.28625,1.57658 2.00086,2.38733 3.63882,1.72061 8.00338,3.00225 11.20831,3.29128 3.11098,0.28056 3.18719,0.25876 4.80653,-1.3753 l 0,0 z"
+         style="fill:#ff7f2a;fill-opacity:1" />
+      <path
+         inkscape:connector-curvature="0"
+         id="path3076"
+         d="m -460.38816,-79.265786 c 2.17541,-3.71578 2.17415,-3.92666 -0.0372,-6.17515 -1.94933,-1.98211 -1.96364,-2.02102 -1.78394,-4.85543 0.4747,-7.48748 2.76804,-7.90604 13.60859,-2.48373 6.29252,3.14745 13.72025,6.13943 14.12713,5.6906 0.11081,-0.12227 -1.26427,-0.95834 -3.0558,-1.85792 -3.85259,-1.93449 -3.76413,-1.86617 -3.20938,-2.47811 0.27328,-0.30143 0.93345,-0.3134 1.76409,-0.032 1.77329,0.60082 9.75641,4.64013 11.12372,5.62838 0.89875,0.64961 1.22291,0.67549 1.87482,0.14965 0.70457,-0.56832 0.37485,-0.91977 -3.10847,-3.31287 -2.14313,-1.47241 -5.18753,-3.59349 -6.76532,-4.71352 -2.13908,-1.51851 -2.92884,-1.86344 -3.10528,-1.35627 -0.38052,1.09385 -2.42762,1.94357 -3.04406,1.26356 -0.61136,-0.67439 0.70575,-2.57095 1.78548,-2.57095 0.50658,0 0.54064,-0.15615 0.14774,-0.67824 -0.28066,-0.37304 -1.11292,-2.00852 -1.84942,-3.634404 -0.73651,-1.62589 -1.71928,-3.33564 -2.18387,-3.79946 -0.80646,-0.80507 -0.86635,-0.7749 -1.32168,0.66593 -0.55068,1.74256 -1.37652,1.89248 -3.93334,0.71404 -2.30378,-1.06184 -9.60403,-0.77462 -11.7211,0.46113 -2.07119,1.209 -4.53616,3.703434 -5.32722,5.390944 -0.81471,1.73795 -0.93665,8.63577 -0.20546,11.63064 0.27846,1.14077 1.34626,3.06715 2.45227,4.42417 1.07747,1.32197 2.04475,2.84551 2.1495,3.38564 0.15518,0.79944 0.45595,0.52859 1.61824,-1.45666 l 0,0 z m 7.30987,-16.93483 c -1.69637,-0.60436 -2.37106,-1.11841 -2.56049,-1.95086 -0.38223,-1.68007 0.12209,-2.176304 2.20839,-2.173244 3.91323,0.006 7.03742,1.761624 7.03742,3.955204 0,0.85446 -0.299,0.98949 -2.191,0.98949 -1.20505,0 -3.22751,-0.36926 -4.49432,-0.82059 l 0,0 z m 2.20031,-4.606394 c -5.47555,-1.93929 -5.56915,-2.97414 -0.15903,-1.75932 4.71088,1.05782 5.09255,1.20648 5.09255,1.98359 0,0.728494 -0.85722,1.266524 -1.56974,0.985264 -0.24675,-0.0973 -1.76039,-0.641654 -3.36378,-1.209534 z"
+         style="fill:#ff7f2a;fill-opacity:1" />
+      <path
+         inkscape:connector-curvature="0"
+         id="path3078"
+         d="m -466.22765,-80.908736 c -1.8377,-2.31203 -2.30817,-4.26638 -2.47133,-10.26595 -0.14902,-5.47781 -0.0818,-6.08663 0.86888,-7.87257 1.18112,-2.218844 5.06575,-5.352264 7.73391,-6.238274 2.16761,-0.7198 7.84723,-0.71638 10.77135,0.007 3.22671,0.79769 3.83356,-0.22213 1.75419,-2.94809 -2.52358,-3.30836 -8.13892,-5.03286 -12.83795,-3.94261 -2.67086,0.61967 -3.22928,1.14959 -1.68188,1.59597 1.03633,0.29896 1.18958,1.24808 0.2647,1.63958 -0.96201,0.40723 -3.19287,-1.06596 -6.13985,-4.05457 -2.35121,-2.38439 -7.11103,-6.13903 -7.78259,-6.13903 -1.14413,0 1.4706,8.54461 3.78495,12.36863 1.44349,2.3851 1.77037,4.4527 0.70399,4.4527 -0.35607,0 -0.96418,-0.49899 -1.35144,-1.10887 l -0.70408,-1.10887 -1.90021,1.11627 c -1.62117,0.95233 -8.31234,8.603494 -9.43087,10.783934 -0.19494,0.38021 -0.29597,2.53161 -0.22418,4.78089 l 0.13056,4.08959 2.56602,-2.65578 c 1.425,-1.47485 2.83543,-2.54176 3.17182,-2.39935 0.34412,0.14566 0.84963,1.76163 1.17038,3.74161 0.477,2.94425 1.48124,5.19191 1.99996,4.47618 0.0772,-0.10682 0.7886,-1.25171 1.58043,-2.54423 0.79186,-1.29252 1.65533,-2.35004 1.91888,-2.35004 0.2635,0 1.67811,1.2245 3.1435,2.7211 2.48834,2.5413 4.51636,3.81196 2.96111,1.85529 z m -2.98722,-23.319744 c -0.78755,-0.86877 -4.55988,-8.13562 -5.23034,-10.07554 -0.2465,-0.71309 -0.0459,-0.86581 1.13743,-0.86581 1.08843,0 2.10567,0.63528 4.19661,2.62085 1.51798,1.44146 3.31494,2.88382 3.9933,3.20523 1.40979,0.66798 1.66231,2.08984 0.37118,2.08984 -0.58463,0 -1.02594,0.54721 -1.37075,1.69966 -0.46056,1.53944 -0.95065,2.10719 -1.91567,2.21925 -0.18494,0.0216 -0.71678,-0.38059 -1.18176,-0.89348 z"
+         style="fill:#ff0000;fill-opacity:1" />
+      <path
+         inkscape:connector-curvature="0"
+         id="path3085"
+         d="m -452.40127,-113.53343 c 0.0895,-0.25699 -0.62711,-2.61595 -1.71917,-5.66004 -1.30886,-3.64835 -1.73218,-4.53002 -2.17507,-4.53002 -0.24675,0 -1.00786,1.0101 -1.39248,1.84797 -0.42532,0.92658 -0.62005,1.82967 -0.78849,3.65694 -0.15724,1.70536 -0.38901,3.17281 -0.59621,3.77444 l -0.10542,0.30633 2.31307,0.005 c 2.37283,0.005 2.87585,0.0812 3.96942,0.6031 0.3926,0.18737 0.42812,0.18714 0.49443,-0.003 l 0,0 z"
+         style="fill:#ff0000;fill-opacity:1" />
+      <path
+         inkscape:connector-curvature="0"
+         id="path3087"
+         d="m -673.88786,-48.101796 c 1.72703,-2.53749 9.62702,-15.51742 10.22396,-16.79827 0.56725,-1.21721 0.69926,-2.90353 0.22726,-2.90353 -0.1616,0 -1.15303,0.56421 -2.20247,1.25381 -1.04938,0.68959 -2.15955,1.20036 -2.46707,1.13503 -0.35265,-0.0749 -0.71036,-0.69942 -0.96873,-1.6911 -0.68331,-2.62305 -0.66354,-2.59084 -1.25579,-2.04903 -0.28664,0.26218 -0.71496,0.98833 -0.95189,1.61367 -0.237,0.62533 -0.62662,1.13697 -0.8658,1.13697 -0.23932,0 -1.01145,-0.65517 -1.71602,-1.45594 l -1.28108,-1.45594 -0.21417,1.25966 c -0.33512,1.97075 -0.32268,14.76281 0.0179,18.38039 l 0.30688,3.25944 1.1469,-1.68516 z"
+         style="fill:#ffccaa;fill-opacity:1" />
+      <path
+         inkscape:connector-curvature="0"
+         id="path3089"
+         d="m -512.74306,-32.499646 c 6.8948,-0.80461 12.34147,-2.36578 12.55678,-3.59918 0.17442,-0.99873 -0.62065,-3.75635 -1.14724,-3.97924 -0.25698,-0.10879 -2.33979,0.29404 -4.62849,0.89518 -12.96581,3.40552 -17.50225,4.03499 -29.29936,4.06552 -4.23254,0.011 -7.58629,0.0554 -7.45273,0.0988 6.33346,2.05648 22.37836,3.40499 29.97104,2.51895 l 0,0 z"
+         style="fill:#ffccaa;fill-opacity:1" />
+      <path
+         inkscape:connector-curvature="0"
+         id="path3091"
+         d="m -475.13522,-58.455676 c 1.08309,-2.04411 2.10957,-3.81221 2.28106,-3.92911 0.46482,-0.3169 0.37687,-0.97334 -0.10311,-0.77013 -0.22828,0.0966 -1.1557,0.78251 -2.06103,1.52424 -1.34405,1.10111 -1.64654,1.54118 -1.64823,2.3981 -10e-4,0.57723 -0.15313,1.64925 -0.3376,2.38226 -0.64527,2.56331 -0.0849,2.08181 1.86899,-1.60536 l 0,0 z"
+         style="fill:#ffccaa;fill-opacity:1" />
+      <path
+         inkscape:connector-curvature="0"
+         id="path3093"
+         d="m -427.11245,-80.739666 c 1.31131,-1.14029 1.14469,-2.00274 -0.4757,-2.46192 -0.74133,-0.21007 -3.0604,-0.91357 -5.1535,-1.56333 -2.09312,-0.64976 -5.3011,-1.59782 -7.12888,-2.10679 -3.32862,-0.92691 -7.13696,-2.64688 -8.86344,-4.00301 -1.20628,-0.94751 -5.191,-2.80082 -7.00982,-3.26028 -0.79019,-0.1996 -1.95735,-0.25519 -2.5937,-0.1235 -1.77568,0.36746 -2.3865,1.1585 -2.59893,3.36563 l -0.18519,1.92411 2.36095,2.27394 c 3.09103,2.9771 4.77957,3.83789 7.53987,3.84371 1.17414,0.002 3.106,-0.17921 4.29307,-0.40377 1.94936,-0.36874 2.41813,-0.33107 4.84223,0.38909 1.47617,0.43855 3.44305,1.10992 4.37082,1.49195 1.97734,0.8142 2.40079,0.69727 0.83772,-0.2313 -1.20228,-0.71423 -1.46116,-1.5913 -0.46972,-1.5913 0.34524,0 2.08699,0.64901 3.87057,1.44225 4.13425,1.83868 5.21728,2.01136 6.36365,1.01453 z"
+         style="fill:#ffccaa;fill-opacity:1" />
+      <path
+         inkscape:connector-curvature="0"
+         id="path3095"
+         d="m -425.69987,-78.979776 c 1.22146,-0.70196 2.21277,-2.25051 1.76021,-2.74971 -0.26337,-0.29054 -0.63442,-0.0335 -0.87732,0.60775 -0.1221,0.32281 -0.62401,0.9655 -1.115,1.42821 -1.27189,1.19864 -1.16791,1.51832 0.23213,0.71375 l 0,0 z"
+         style="fill:#ffccaa;fill-opacity:1" />
+      <path
+         inkscape:connector-curvature="0"
+         id="path3097"
+         d="m -468.52823,-107.13422 c 0,-0.58964 0.0798,-0.8389 0.3308,-1.03282 0.45047,-0.34804 0.30611,-0.60181 -1.32521,-2.32942 -1.39745,-1.47995 -2.12547,-2.0978 -2.27611,-1.93165 -0.0492,0.0541 0.42761,1.1471 1.05931,2.42882 1.40548,2.85173 1.85142,3.64229 2.05462,3.64229 0.0859,0 0.15672,-0.34975 0.15672,-0.77722 z"
+         style="fill:#550000;fill-opacity:1" />
+      <path
+         inkscape:connector-curvature="0"
+         id="path3101"
+         d="m -450.80024,-97.471126 c 0.217,-0.23936 0.2593,-1.01453 0.0551,-1.01453 -0.67451,0 -1.42761,0.6663 -1.20408,1.0653 0.12928,0.23054 0.9256,0.19535 1.1487,-0.0508 z"
+         style="fill:#808000;fill-opacity:1" />
+      <path
+         inkscape:connector-curvature="0"
+         id="path3103"
+         d="m -424.1375,-83.460776 c 0.7172,-0.31598 0.84147,-0.51769 0.54293,-0.88154 -0.53438,-0.65138 -1.80294,-0.26889 -1.80294,0.54362 0,0.50737 0.54413,0.6533 1.26001,0.33792 z"
+         style="fill:#1a1a1a;fill-opacity:1" />
+      <path
+         inkscape:connector-curvature="0"
+         id="path3105"
+         d="m -466.61689,-80.834466 c 0,-0.1018 -0.3484,-0.87397 -0.77424,-1.71595 -1.00895,-1.99492 -1.44197,-5.09336 -1.43636,-10.27681 0.005,-3.31944 0.12646,-4.49417 0.5872,-5.61293 0.76521,-1.858384 3.69811,-4.707224 6.33349,-6.152034 2.06744,-1.13344 2.19151,-1.15611 6.38976,-1.16746 2.35472,-0.006 5.31601,0.12684 6.58061,0.29601 2.24043,0.29972 2.29922,0.28794 2.29922,-0.46011 0,-1.25594 -3.05496,-4.33488 -5.2426,-5.28373 -1.57112,-0.68145 -2.48615,-0.82297 -5.38152,-0.83229 -2.24186,-0.007 -3.8285,0.15551 -4.43992,0.45543 l -0.95142,0.46666 0.7284,0.37259 c 0.95191,0.48692 0.82872,1.78018 -0.18468,1.93875 -0.98472,0.15408 -2.91676,-1.15445 -6.11218,-4.13962 -3.48277,-3.2536 -7.3756,-6.13819 -7.54171,-5.58843 -0.0695,0.23064 0.13158,1.465 0.44769,2.74304 0.47088,1.90492 0.6088,2.16641 0.76526,1.45095 0.20443,-0.93386 0.88094,-1.23577 2.04649,-0.91307 0.39783,0.11014 2.1208,1.38349 3.82886,2.82968 1.70802,1.44619 3.19963,2.62944 3.31462,2.62944 0.40993,0 1.59721,1.43547 1.59721,1.93107 0,0.27745 -0.34456,0.59987 -0.76575,0.71648 -0.44608,0.12351 -0.9278,0.64347 -1.15383,1.24542 -0.57281,1.52544 -1.53942,2.75394 -2.16684,2.75394 -0.88812,0 -2.11684,-1.69246 -4.31787,-5.9476 -2.59519,-5.0171 -2.68525,-4.24236 -0.14313,1.22949 1.0551,2.27083 1.87571,4.45655 1.82357,4.85717 -0.14697,1.12806 -1.04595,1.05999 -2.07722,-0.15729 l -0.93655,-1.10541 -1.39475,0.95868 c -1.57628,1.08347 -6.45335,6.386524 -8.46529,9.204684 l -1.33358,1.86806 0,4.01966 0,4.01966 1.9619,-1.92782 c 2.25576,-2.21656 3.1987,-2.84847 3.84336,-2.5756 0.25649,0.10855 0.70241,1.31775 1.01716,2.75773 0.67161,3.07295 1.41402,5.25528 1.74016,5.11527 0.13081,-0.0561 0.93344,-1.11512 1.78383,-2.35336 0.85042,-1.23824 1.71317,-2.30978 1.91724,-2.3812 0.3098,-0.10844 1.89436,1.21502 5.25817,4.39178 0.30526,0.28827 0.55498,0.44085 0.55498,0.33906 z"
+         style="fill:#aa0000;fill-opacity:1" />
+      <path
+         inkscape:connector-curvature="0"
+         id="path3107"
+         d="m -452.79371,-114.52003 c -0.39729,-1.74607 -2.73939,-8.02648 -3.17377,-8.51056 -0.76531,-0.85282 -1.75739,1.30853 -2.3696,5.16244 l -0.54965,3.4595 2.557,0.14833 c 1.4063,0.0816 2.82804,0.27984 3.15938,0.44057 0.5361,0.26005 0.57761,0.18296 0.37664,-0.70027 z"
+         style="fill:#aa0000;fill-opacity:1" />
+      <text
+         sodipodi:linespacing="125%"
+         id="text3323"
+         y="-134.77502"
+         x="-540.08771"
+         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 Sans;-inkscape-font-specification:DejaVu Sans"
+         xml:space="preserve"><tspan
+           y="-134.77502"
+           x="-540.08771"
+           id="tspan3325"
+           sodipodi:role="line">VECTOR GRAPHICS</tspan></text>
+    </g>
+    <path
+       style="fill:none;stroke:#000000;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
+       d="m 243.42578,54.019531 c 1.96094,-1.121094 2.39063,-0.402344 2.39063,-0.402344"
+       id="path3011"
+       inkscape:connector-curvature="0"
+       transform="translate(-681.08768,-132.77502)" />
+    <path
+       style="fill:none;stroke:#000000;stroke-width:0.001;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
+       d="m -430.71268,-77.013301 1.57031,-0.859375 0.21094,1.078125"
+       id="path3781"
+       inkscape:connector-curvature="0" />
+  </g>
+</svg>
diff --git a/figures/fox.pdf b/figures/fox.pdf
deleted file mode 100644 (file)
index 934489d..0000000
Binary files a/figures/fox.pdf and /dev/null differ
diff --git a/figures/fox.png b/figures/fox.png
deleted file mode 100644 (file)
index 014869d..0000000
Binary files a/figures/fox.png and /dev/null differ
diff --git a/figures/fox.svg b/figures/fox.svg
deleted file mode 100644 (file)
index 9211a9b..0000000
+++ /dev/null
@@ -1,165 +0,0 @@
-<?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"
-   width="136.82167"
-   height="63.722351"
-   id="svg3022"
-   version="1.1"
-   inkscape:version="0.48.3.1 r9886"
-   sodipodi:docname="fox.png">
-  <defs
-     id="defs3024" />
-  <sodipodi:namedview
-     id="base"
-     pagecolor="#ffffff"
-     bordercolor="#666666"
-     borderopacity="1.0"
-     inkscape:pageopacity="0.0"
-     inkscape:pageshadow="2"
-     inkscape:zoom="0.70710678"
-     inkscape:cx="119.21833"
-     inkscape:cy="94.638755"
-     inkscape:document-units="px"
-     inkscape:current-layer="layer1"
-     showgrid="false"
-     inkscape:window-width="1366"
-     inkscape:window-height="692"
-     inkscape:window-x="1680"
-     inkscape:window-y="306"
-     inkscape:window-maximized="1"
-     fit-margin-top="0"
-     fit-margin-left="0"
-     fit-margin-right="0"
-     fit-margin-bottom="0" />
-  <metadata
-     id="metadata3027">
-    <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>
-  <g
-     inkscape:label="Layer 1"
-     inkscape:groupmode="layer"
-     id="layer1"
-     transform="translate(730.10331,37.380978)">
-    <path
-       style="fill:#000000"
-       d="m -611.74666,-37.378771 c 0.0248,0.0037 0.0523,0.01289 0.0734,0.02098 0.18016,0.0691 0.30413,0.36219 0.30413,0.702637 0,0.53679 0.19594,1.081719 1.19553,3.355876 0.19487,0.442895 0.52372,1.230892 0.7341,1.751347 0.21422,0.529638 0.57992,1.029837 0.82848,1.143096 0.24428,0.111147 0.80281,0.530229 1.23748,0.922866 0.43467,0.392637 0.87434,0.713123 0.98579,0.713123 0.22148,0 2.06596,2.162537 2.06596,2.422523 0,0.08843 0.31461,0.637674 0.70264,1.226992 0.38822,0.589319 0.67748,1.167006 0.63971,1.279428 -0.058,0.173002 1.8925,1.510144 2.20229,1.510144 0.057,0 0.39216,0.211209 0.74458,0.471921 0.35278,0.260711 1.19179,0.69434 1.85622,0.954327 0.66444,0.259986 1.34403,0.56447 1.51015,0.681662 0.16619,0.117187 0.61909,0.385995 1.00677,0.597765 0.79366,0.433714 1.94176,1.623227 2.24423,2.317652 0.21612,0.495811 0.18852,0.594061 -0.22022,0.849456 -0.28124,0.17566 -0.35695,0.407625 -0.29364,0.859944 0.0947,0.676544 -0.23891,1.169425 -1.20602,1.793296 -0.77199,0.497985 -2.47213,0.307995 -3.51318,-0.39851 -0.51137,-0.346841 -0.908,-0.472764 -1.27943,-0.398511 -0.5045,0.100757 -3.50898,-0.555609 -4.93943,-1.080172 -0.47613,-0.174599 -1.09061,-0.18411 -2.33863,-0.03146 -1.56718,0.191849 -3.73061,0.05995 -4.62482,-0.283152 -0.32582,-0.125016 -0.33409,-0.110449 -2.83151,3.345389 -0.68345,0.945882 -1.56698,2.078361 -1.97158,2.516907 -3.14784,3.4114757 -4.4903,5.2103837 -6.16643,8.3162801 -0.39527,0.7323594 -0.82691,1.46987381 -0.96481,1.63598906 -0.30543,0.36791831 -1.29634,3.35460844 -1.3004,3.92218084 -0.002,0.2244674 -0.13077,0.77361 -0.28315,1.2165051 -0.15233,0.4429684 -0.33712,1.7527263 -0.409,2.9154165 -0.0717,1.1627641 -0.22746,2.7418274 -0.34607,3.5026984 -0.22562,1.448864 -0.21361,1.513404 0.6502,5.66304 0.23066,1.106634 0.43643,2.11698 0.46143,2.244243 0.025,0.125645 0.14347,0.35379 0.26218,0.503378 0.11857,0.149807 0.30206,0.539409 0.40899,0.870433 0.16137,0.501586 0.33035,0.629043 0.98579,0.723609 0.43398,0.06283 1.14221,0.353006 1.57307,0.650206 0.43087,0.297195 0.84247,0.545324 0.91238,0.545324 0.0698,0 0.34765,0.406566 0.61874,0.901895 0.57114,1.046225 0.41354,1.396116 -0.66069,1.447218 -0.35416,0.01577 -1.28013,0.123248 -2.05547,0.241207 -4.63472,0.705056 -6.19461,-0.323421 -7.64511,-5.012842 -0.18831,-0.609614 -0.72631,-1.780106 -1.19552,-2.61129 -0.76361,-1.350914 -1.13333,-2.184844 -1.94012,-4.383612 -0.13156,-0.35753 -0.31979,-0.596458 -0.41949,-0.534844 -0.0997,0.06289 -0.1279,0.198997 -0.0629,0.304125 0.065,0.103898 -0.22729,0.633323 -0.6502,1.174559 -0.42327,0.541477 -1.19147,1.66233 -1.7094,2.495933 -0.5176,0.8336 -1.17868,1.677008 -1.4682,1.866705 -0.59706,0.390634 -2.65294,0.447153 -3.31392,0.09438 -0.21872,-0.117062 -0.69192,-0.210412 -1.0592,-0.209739 -0.98201,0 -5.63224,-1.595669 -6.13496,-2.10791 -0.62715,-0.640304 -0.74184,-1.214374 -0.38803,-1.898169 0.501,-0.968909 1.43704,-1.508237 2.71617,-1.56258 1.05522,-0.04591 1.1719,0.0044 1.92962,0.7341 0.88765,0.854739 2.10228,1.276393 3.08321,1.080172 0.77535,-0.155048 1.23219,-0.965494 1.82476,-3.251006 0.71161,-2.7453222 1.1995,-2.4728604 -4.45702,-2.4434983 -2.68556,0.013911 -5.51692,-0.026905 -6.29227,-0.083896 -3.19762,-0.235177 -4.39887,-0.3501961 -4.56189,-0.4509465 -0.0947,-0.058496 -0.80221,-0.144376 -1.57307,-0.1887675 -0.86346,-0.049531 -1.706,-0.2345022 -2.1918,-0.4824074 -0.43398,-0.2212059 -0.82155,-0.3635051 -0.87044,-0.3146132 -0.0491,0.04881 -0.8364,-0.2328677 -1.75134,-0.6187401 -0.91494,-0.3858718 -1.79933,-0.7026358 -1.96109,-0.7026358 -0.16205,0 -0.64677,-0.1721837 -1.06969,-0.3880236 l -0.76556,-0.3880231 -0.72361,0.6606879 c -1.16993,1.0716216 -2.78151,2.2327316 -3.94315,2.852496 -0.59569,0.3177323 -1.20892,0.7864529 -1.37382,1.0382234 -0.17863,0.2726752 -0.50949,0.4614352 -0.8075,0.4614352 -0.27504,0 -1.00749,0.314104 -1.63599,0.702633 -1.42987,0.883134 -3.23591,1.288766 -6.30276,1.415761 -2.05672,0.08457 -2.51424,0.164591 -3.62856,0.681664 -1.19168,0.5509 -2.77906,1.821349 -2.77906,2.212781 0,0.09423 -0.13464,0.277047 -0.29363,0.408995 -0.35934,0.297199 -0.59796,1.316276 -0.38802,1.656965 0.086,0.137726 0.1655,0.398254 0.17825,0.566303 0.0432,0.565402 0.7548,2.212781 0.95434,2.212781 0.10858,0 0.15223,0.253789 0.0944,0.55582 -0.13061,0.683794 0.27017,1.496919 0.89142,1.803781 0.25877,0.127192 1.06308,0.274719 1.78279,0.314614 0.71974,0.03868 1.57644,0.204844 1.90866,0.36705 0.55667,0.270617 0.60111,0.364446 0.5663,1.25845 -0.0208,0.531571 -0.17086,1.174962 -0.33559,1.426248 -0.28953,0.441466 -0.40425,0.452006 -3.42928,0.461437 -2.12566,0.0067 -3.18888,-0.06305 -3.31394,-0.220231 -0.10121,-0.128059 -0.51665,-0.860379 -0.93336,-1.635992 -0.41669,-0.775608 -0.91215,-1.592795 -1.10114,-1.814269 -0.52897,-0.620006 -1.70739,-2.663006 -2.433,-4.226307 -0.35968,-0.773194 -0.687,-1.445216 -0.72362,-1.489168 -0.0366,-0.04349 -0.62689,0.198986 -1.32136,0.53484 -0.69415,0.335859 -1.5839,0.760668 -1.97158,0.943841 -0.38768,0.181221 -1.24424,0.825428 -1.90866,1.436735 -1.05869,0.973072 -1.28493,1.095101 -1.81428,0.98579 -0.33239,-0.06862 -0.98594,-0.1721 -1.44721,-0.230718 -1.0445,-0.132891 -1.81349,-0.847125 -1.51014,-1.405274 0.1109,-0.205378 0.7106,-0.860897 1.33185,-1.457706 0.73986,-0.710373 1.09579,-1.190858 1.02775,-1.405276 -0.10401,-0.328608 1.24315,-1.490999 2.47494,-2.128884 0.30512,-0.159469 1.0544,-0.896621 1.65696,-1.635987 0.60294,-0.740092 1.33577,-1.623642 1.62551,-1.971579 0.28957,-0.347937 0.84684,-1.1533816 1.24799,-1.78281 0.40112,-0.6294277 0.8305,-1.1989063 0.94383,-1.2689399 0.11332,-0.070071 0.51304,-0.6145246 0.89142,-1.2060182 0.37833,-0.5917345 1.09473,-1.5030735 1.59403,-2.0240127 1.00166,-1.0455504 1.83695,-2.6256944 2.19178,-4.16338363 0.12742,-0.55162544 0.33626,-1.04262056 0.46145,-1.09065938 0.16342,-0.0628219 0.13365,-0.46685949 -0.10487,-1.43673459 -0.50724,-2.0628341 -0.2808,-5.4847595 0.36705,-5.4847595 0.30925,0 0.41394,0.7984636 0.18876,1.447221 -0.32029,0.9190864 -0.045,3.8665699 0.52437,5.61060522 0.65429,2.00482038 0.98922,3.90729678 0.81799,4.68773948 -0.12786,0.5817073 -1.26212,3.1183367 -1.49967,3.3558755 -0.0553,0.055333 -0.53297,0.986148 -1.05921,2.0659611 -0.5262,1.0798156 -1.25784,2.3010536 -1.62547,2.7161636 -0.36763,0.41559 -1.00784,1.208518 -1.42625,1.761836 -0.75132,0.994762 -0.75821,1.026092 -0.67118,2.516906 0.0847,1.447323 0.81496,3.592751 1.33186,3.911694 0.10537,0.06524 0.38447,0.504135 0.62923,0.975299 0.24496,0.471167 0.71541,1.249544 1.03822,1.730374 0.32306,0.480835 0.76745,1.218803 0.98578,1.646475 0.21839,0.427677 0.52361,0.854855 0.68168,0.943845 0.31173,0.176142 5.44376,0.0319 5.63157,-0.157311 0.063,-0.06524 0.16628,-0.37886 0.2307,-0.702631 0.0995,-0.500163 0.0262,-0.644231 -0.48238,-0.943844 -0.7415,-0.43591 -1.47052,-0.45271 -2.26521,-0.04195 -0.55492,0.28592 -0.66143,0.294778 -1.11165,0 -0.27197,-0.176389 -0.44334,-0.4034 -0.38802,-0.492895 0.12989,-0.210214 -0.56154,-1.567499 -1.08018,-2.118399 -0.25229,-0.268203 -0.36326,-0.583669 -0.29362,-0.849458 0.0642,-0.246452 -0.11332,-0.903767 -0.42997,-1.573064 -0.68492,-1.448532 -0.60246,-2.656242 0.25168,-3.523671 0.30508,-0.309278 0.77918,-0.858903 1.04869,-1.216505 0.26952,-0.357602 0.94902,-0.953285 1.51015,-1.310888 1.14817,-0.732197 2.38753,-0.9554 5.1282,-0.933353 2.80723,0.02247 5.04406,-0.728739 6.93199,-2.3176544 0.4281,-0.3605008 1.06886,-0.7117939 1.41576,-0.786532 0.3469,-0.074662 1.0278,-0.3694351 1.51015,-0.6502009 1.20862,-0.7036301 4.04495,-2.9650512 4.67724,-3.7334122 0.92048,-1.1191004 1.77969,-3.18255157 2.13938,-5.11771095 0.2771,-1.49129755 0.41535,-1.85621855 0.69215,-1.85621855 0.46027,0 0.66332,0.3499135 0.38802,0.6816618 -0.24809,0.299059 -0.71491,1.82459334 -0.92287,3.03077532 -0.14477,0.83922738 -1.16255,3.01519108 -1.51014,3.23003088 -0.77027,0.4759975 0.79005,1.1530494 2.82103,1.2269921 0.83064,0.030204 1.77568,0.1621524 2.10791,0.2936393 0.79608,0.3150297 3.10376,0.5570855 3.1776,0.3355872 0.0321,-0.095525 0.29674,-0.072497 0.59776,0.041947 0.63787,0.2425023 6.37327,0.053528 6.72224,-0.2202294 0.123,-0.096559 0.75328,-0.1607129 1.40527,-0.1468197 0.652,0.014026 1.77621,-0.1206539 2.49593,-0.2936388 0.71986,-0.1730027 2.62068,-0.5907316 4.22632,-0.9333533 1.60597,-0.3426211 3.07967,-0.7114726 3.27197,-0.8179951 0.19211,-0.1065219 0.48805,-0.1887675 0.6607,-0.1887675 0.25114,0 0.29077,-0.1510143 0.18876,-0.7550722 -0.0702,-0.4153499 -0.25168,-1.0310932 -0.39851,-1.3633248 -0.14683,-0.33223168 -0.28838,-0.96382743 -0.3251,-1.40527265 -0.052,-0.62435414 -2.2e-4,-0.8198978 0.26218,-0.87043046 0.26332,-0.050742 0.37134,0.14585304 0.4824,0.90189132 0.0783,0.53253748 0.23178,1.20178319 0.33559,1.47868299 0.27906,0.743884 0.57993,2.2408458 0.56631,2.7895719 -0.007,0.2638522 0.15927,0.7663546 0.36704,1.1116339 0.23325,0.3878051 0.43073,1.2236228 0.51387,2.1918069 0.0739,0.8623525 0.35814,2.2214821 0.62923,3.0202893 0.27123,0.798565 0.49222,1.652073 0.49289,1.887679 5.8e-4,0.236793 0.13792,0.53333 0.30413,0.671177 0.16612,0.137724 0.30413,0.514373 0.30413,0.82848 0,0.708199 0.27325,1.35294 1.24796,2.925905 0.41945,0.674132 0.76557,1.310102 0.76557,1.41576 0,0.219881 0.716,1.831938 1.01724,2.286194 0.11,0.166719 0.25655,0.464053 0.3251,0.671172 0.35485,1.072083 1.23153,2.467721 1.67794,2.674215 0.27676,0.128059 0.74936,0.345072 1.04871,0.482407 0.71734,0.328826 3.96467,0.145394 4.26825,-0.241205 0.11749,-0.148401 0.3465,-0.262173 0.50339,-0.262173 0.15675,0 0.3209,-0.113266 0.36705,-0.251693 0.0888,-0.266654 -0.389,-0.355583 -0.62923,-0.115361 -0.19487,0.195058 -1.73037,0.223513 -1.73037,0.03147 0,-0.229543 0.71767,-0.57679 1.19552,-0.57679 0.49272,0 0.54218,-0.445899 0.0944,-0.818 -0.26467,-0.218861 -0.43088,-0.205226 -0.98579,0.09439 -0.3666,0.196878 -0.82559,0.332569 -1.02773,0.293639 -0.40446,-0.07732 -0.72209,-1.061731 -0.69215,-2.139371 0.01,-0.36002 -0.0828,-0.831175 -0.19926,-1.04871 -0.29059,-0.543169 -1.42577,-6.159142 -1.44722,-7.152213 -0.0269,-1.250034 0.71366,-7.3033096 1.03822,-8.4631006 0.0929,-0.3322316 0.3107,-1.1002673 0.48241,-1.7093989 0.17173,-0.6091321 0.41176,-1.46575929 0.53484,-1.90865446 0.12298,-0.44289516 0.30185,-0.98452677 0.39851,-1.20601814 0.2785,-0.6386563 0.85993,-4.5293953 0.84946,-5.6945021 -0.007,-0.785033 0.0612,-1.0591985 0.27266,-1.0591985 0.16846,0 0.28316,0.2029468 0.28316,0.4928943 0,0.6031784 0.28602,0.8106757 0.6502,0.4719205 0.32306,-0.3005095 0.61184,-0.3981461 1.60452,-0.5138688 0.61399,-0.071521 0.93878,-0.3149253 1.90866,-1.4157602 0.64405,-0.7311512 1.43578,-1.5527871 1.75135,-1.8352441 0.5974,-0.534639 2.46006,-2.946872 3.36636,-4.352152 0.54884,-0.851238 0.85557,-1.908654 0.55582,-1.908654 -0.15756,0 -0.8474,-0.579221 -1.83525,-1.541605 -0.20934,-0.203931 -0.27433,-0.417813 -0.16779,-0.524356 0.0273,-0.0273 0.0518,-0.04353 0.0839,-0.06292 -0.1609,-0.916074 0.0534,-3.133851 0.6502,-3.502696 1.20846,-0.746857 2.75208,-0.406181 5.93571,1.300403 2.13062,1.142079 4.43852,2.057104 6.61737,2.621777 0.64993,0.168412 1.44367,0.442323 1.76184,0.608253 0.64335,0.335417 1.28991,0.39743 1.28991,0.125845 0,-0.09713 -0.30066,-0.286157 -0.66069,-0.419484 -0.36003,-0.133376 -0.78821,-0.328106 -0.95433,-0.429972 -0.16619,-0.101723 -0.53064,-0.276144 -0.8075,-0.388023 -0.27677,-0.111871 -0.85375,-0.388165 -1.27943,-0.608252 -0.42569,-0.220054 -0.89306,-0.398511 -1.04871,-0.398511 -0.15565,0 -0.28315,-0.08851 -0.28315,-0.199255 0,-0.287092 0.7358,-0.252298 1.47868,0.07341 0.34897,0.152948 0.99377,0.439072 1.43674,0.629227 0.44295,0.190157 1.31829,0.611994 1.95059,0.933353 0.63196,0.321359 1.26054,0.576791 1.39479,0.576791 0.13407,0 0.41622,0.152307 0.61874,0.335587 0.19837,0.179502 0.43816,0.435583 0.61874,0.671176 0.0916,-0.18529 0.27919,-0.360994 0.54533,-0.461433 0.33214,-0.125463 0.60826,-0.288504 0.60826,-0.356562 0,-0.166237 -1.89493,-1.447936 -3.0203,-2.044987 -0.49858,-0.264336 -1.31602,-0.746152 -1.81426,-1.069686 -0.49859,-0.323533 -1.05668,-0.684013 -1.23748,-0.79702 -1.61877,-1.011917 -2.38786,-1.658098 -2.40155,-2.013525 -0.0235,-0.608359 -1.85643,-3.628541 -2.2023,-3.628541 -0.199,0 -0.33174,0.274728 -0.39851,0.807507 -0.12127,0.96915 -0.46082,1.093814 -1.5416,0.54533 -0.87019,-0.441597 -1.29193,-0.504539 -3.6705,-0.492894 -2.33278,0.01136 -3.18037,0.302179 -4.72968,1.604528 -1.58272,1.330159 -1.77593,1.806659 -1.80378,4.457023 -0.0287,2.704753 0.37044,3.880225 1.79329,5.285505 1.16579,1.151575 1.31848,1.496341 0.71312,1.688425 -0.44547,0.141494 -3.46144,-1.56012 -4.23679,-2.391062 -0.59948,-0.642227 -0.93436,-0.664661 -1.23748,-0.07341 -0.37661,0.734776 -1.65132,1.96109 -2.0345,1.96109 -0.24915,0 -0.41763,-0.24709 -0.5663,-0.849456 -0.36141,-1.464115 -0.90134,-3.170128 -1.00676,-3.167108 -0.12266,0.0037 -2.21405,2.007515 -2.59032,2.485446 -0.14857,0.188594 -0.4141,0.319221 -0.59777,0.283152 -0.28968,-0.05688 -0.33558,-0.399906 -0.33558,-2.57983 0,-1.503113 -0.0788,-2.535262 -0.19926,-2.569342 -0.11091,-0.03117 -0.79042,0.35785 -1.51014,0.859943 -2.43897,1.700688 -3.32842,2.21623 -4.23679,2.50642 -0.49824,0.159229 -1.07892,0.409644 -1.3004,0.545329 -0.52886,0.324259 -2.52749,0.671176 -3.81732,0.671176 -0.56976,0 -1.21571,0.131478 -1.44722,0.293639 -0.22908,0.160503 -0.58625,0.2903 -0.79702,0.283152 -0.21077,-0.0072 -1.88533,0.12538 -3.71243,0.293639 -1.8273,0.168189 -3.45194,0.312583 -3.61806,0.3251 -0.56227,0.04229 -7.95622,0.263034 -8.4631,0.251691 -1.34428,-0.02996 -4.91176,-0.435113 -6.4286,-0.72361 -1.0573,-0.201135 -1.77018,-0.253839 -1.88768,-0.136333 -0.11748,0.117513 -0.38442,0.119576 -0.71312,-0.01049 -0.82345,-0.325949 -2.56895,-0.771915 -4.59336,-1.164069 -1.59122,-0.308147 -2.28628,-0.33695 -4.91846,-0.178281 -1.70839,0.102932 -3.29605,0.30655 -3.58658,0.450946 -0.28679,0.142558 -0.94958,0.373541 -1.4682,0.513868 -1.07075,0.289658 -2.74063,1.800579 -3.39783,3.072724 -0.2512,0.486871 -0.53998,0.755073 -0.79701,0.755073 -0.21935,0 -0.39853,0.107962 -0.39853,0.230716 0,0.281008 -0.87187,0.07802 -1.35282,-0.314613 -0.19211,-0.156814 -0.74569,-0.612434 -1.22699,-1.006764 -0.48099,-0.394328 -0.95959,-0.713123 -1.0592,-0.713123 -0.0995,0 -1.53732,-1.363576 -3.19857,-3.030775 -2.90651,-2.916971 -3.92963,-3.819457 -5.57915,-4.907969 -0.42049,-0.277383 -1.14108,-0.76906 -1.59403,-1.09066 -2.275,-1.61484 -5.71011,-2.76248 -9.20769,-3.072724 -1.34996,-0.119724 -2.80806,-0.201486 -3.25102,-0.188767 -1.01562,0.02923 -4.19687,0.761474 -4.90794,1.132607 -0.29543,0.153902 -0.7119,0.282481 -0.93336,0.283153 -0.41981,0.0014 -2.47034,0.724932 -2.82106,0.996275 -0.11089,0.08564 -0.44797,0.212391 -0.74456,0.283152 -0.76005,0.181314 -3.69507,2.013472 -4.29972,2.684701 -0.7567,0.843869 -0.96374,1.311051 -2.06598,4.593355 -1.39245,4.140356 -1.44463,4.571203 -0.62923,5.799374 l 0.6502,0.9753005 0.58729,-0.9333525 c 0.77744,-1.252333 1.17907,-1.166969 1.56259,0.3460745 0.34897,1.3772514 0.55976,1.4324182 1.7933,0.4509453 0.48719,-0.3865967 0.94976,-0.7026358 1.02772,-0.7026358 0.3499,0 0.79033,0.7487189 0.68168,1.1640687 -0.14753,0.5644984 0.1005,0.5663648 1.06967,0 0.96436,-0.5634648 1.16703,-0.7262182 1.83524,-1.4472207 1.17348,-1.266153 6.31298,-4.14241 7.39342,-4.14241 0.18348,0 1.09814,-0.151632 2.0345,-0.335587 1.57454,-0.309506 1.81083,-0.31155 3.15663,-0.01049 2.42706,0.542927 4.6566,0.94384 5.22257,0.94384 0.29475,0 0.79129,0.112479 1.10115,0.241203 0.31166,0.12773 0.72472,0.255226 0.92289,0.293639 0.19831,0.03842 0.72352,0.257655 1.16407,0.482408 0.44053,0.224709 1.68041,0.710972 2.75809,1.080172 1.07769,0.368959 2.41396,0.860937 2.96786,1.09066 0.55353,0.229784 1.54834,0.620592 2.21276,0.8704306 1.16925,0.4392703 2.89939,1.5269329 2.91542,1.835244 0.0157,0.2979217 -0.53613,0.143068 -1.18504,-0.3355871 -0.36347,-0.2679603 -1.58029,-0.8272034 -2.70568,-1.2374796 -1.12536,-0.4105173 -2.13347,-0.8094359 -2.24424,-0.8914039 -0.11056,-0.08191 -0.97793,-0.39505 -1.91914,-0.702637 -0.9412,-0.307586 -2.26125,-0.826811 -2.93638,-1.143095 -0.70139,-0.328608 -1.56931,-0.566304 -2.024,-0.566304 -0.43778,0 -0.88061,-0.08775 -0.98581,-0.188768 -0.10538,-0.100999 -0.91784,-0.295678 -1.80377,-0.429972 -0.88592,-0.134101 -2.107,-0.371544 -2.71619,-0.534842 -0.60914,-0.16342 -1.33812,-0.301778 -1.615,-0.304127 -1.07744,-0.0097 -4.10011,0.440128 -4.29972,0.639714 -0.11574,0.115793 -0.44122,0.209656 -0.72359,0.209742 -0.50727,2.42e-4 -2.14288,0.751945 -3.75441,1.719887 -0.45606,0.274001 -1.53565,1.124973 -2.40152,1.8981665 -0.86591,0.7731942 -1.88367,1.5134965 -2.25474,1.6359897 -0.54016,0.178318 -0.64546,0.2926929 -0.54534,0.6082526 0.10159,0.3203922 -0.0348,0.4612079 -0.70262,0.7236107 -0.4523,0.1775931 -0.81799,0.409756 -0.81799,0.5138689 0,0.1041394 -0.18995,0.4293134 -0.4195,0.7236102 -0.23149,0.2942974 -0.70678,0.9752885 -1.0592,1.5206314 -0.35242,0.5455852 -0.72594,1.1364708 -0.83896,1.3108895 -0.11404,0.1742104 -0.46148,0.7287646 -0.77604,1.2269921 -0.31443,0.4984685 -0.99533,1.54155858 -1.51014,2.31765201 -0.51138,0.77609289 -1.03168,1.59365139 -1.1536,1.81427019 -0.12093,0.2206021 -0.45022,0.4273034 -0.7341,0.4614329 -0.66411,0.079977 -0.87333,-0.5107406 -0.52436,-1.478683 0.19905,-0.5504172 0.20209,-0.89811599 0.0212,-1.56257985 -0.34457,-1.26760475 -0.18057,-9.94705455 0.22024,-11.52533585 0.70831,-2.795797 1.35101,-4.975566 1.63598,-5.526708 0.16751,-0.324017 0.31463,-0.684934 0.31463,-0.797021 0,-0.496342 0.87934,-2.492778 1.34235,-3.041263 0.45609,-0.541719 2.45462,-2.003038 2.73713,-2.003038 0.0619,0 1.08621,-0.477273 2.28619,-1.048711 1.97107,-0.938464 2.89829,-1.257907 5.10723,-1.772322 3.9885,-0.929041 4.92448,-0.99296 7.85483,-0.534843 2.41172,0.377174 4.80399,0.891551 5.32747,1.132608 3.15642,1.453846 4.08923,1.924333 4.39408,2.244242 0.19903,0.209004 1.15476,0.964909 2.1184,1.677938 0.96388,0.713006 2.83452,2.396851 4.1634,3.743899 2.58517,2.620185 5.35363,4.921694 6.15594,5.117711 0.39941,0.09762 0.54987,0.0027 0.82846,-0.492894 0.18865,-0.335614 0.48285,-0.608253 0.6502,-0.608253 0.16758,0 0.41554,-0.201832 0.54534,-0.450945 0.26641,-0.511033 1.59492,-1.688747 1.82477,-1.615016 0.0822,0.02658 0.58193,-0.19101 1.11162,-0.482407 2.18705,-1.203041 8.4277,-1.57359 11.6407,-0.692149 0.44296,0.121457 1.38818,0.275024 2.10791,0.335587 0.71971,0.06051 1.58691,0.184749 1.91914,0.283152 2.49411,0.738618 3.76351,0.890189 8.14849,0.964815 4.47746,0.07611 12.34743,-0.233106 14.36734,-0.566304 0.57322,-0.09472 2.08228,-0.32265 3.35587,-0.503382 1.2736,-0.180734 2.47143,-0.412239 2.66373,-0.513868 0.19211,-0.101627 0.53059,-0.188768 0.75507,-0.188768 0.22459,0 0.57327,-0.0745 0.76556,-0.167794 2.45911,-1.192893 3.62384,-1.838903 4.2368,-2.3596 0.40426,-0.343589 1.04144,-0.788051 1.40527,-0.975302 0.36383,-0.187016 1.5704,-1.211209 2.6847,-2.28619 1.1143,-1.07474 2.10229,-1.987095 2.2023,-2.024013 0.1,-0.03673 0.18876,-0.181101 0.18876,-0.325101 0,-0.363401 1.51131,-1.706375 2.29668,-2.034499 1.16373,-0.48617 1.17488,-0.630371 0.18877,-2.65324 -0.67654,-1.388004 -0.96516,-2.275351 -1.15359,-3.565618 -0.25222,-1.727363 -0.16824,-2.128884 0.41949,-2.128884 0.1427,0 0.36506,0.187509 0.50338,0.408997 0.13836,0.221569 0.33267,0.398511 0.42997,0.398511 0.51794,0 2.81806,1.66434 3.9956,2.894443 1.27946,1.336659 1.36883,1.397907 1.71988,1.080173 0.37063,-0.335357 1.2346,-0.596068 2.21278,-0.744586 0.0141,-0.430938 0.11238,-1.060312 0.16779,-1.468195 0.23531,-1.731857 0.53542,-2.74204 0.91238,-3.083211 0.21267,-0.192574 0.38802,-0.45549 0.38802,-0.587278 0,-0.337639 0.58246,-0.830384 0.95434,-0.859943 0.0266,-0.0021 0.0486,-0.0037 0.0734,0 z m -0.33559,1.19553 c -0.1957,-0.02057 -0.38132,0.255483 -0.67117,0.702637 -0.32845,0.506925 -0.49096,1.098975 -0.53484,1.908654 -0.0433,0.798279 -0.19165,1.613613 -0.39851,2.128884 1.31228,-0.138515 2.69588,-0.0846 3.32441,0.251691 0.5609,0.300337 0.5314,0.01602 -0.20974,-1.919142 -0.83854,-2.189105 -1.18397,-3.038439 -1.51015,-3.072724 z m -10.59198,1.971577 c -0.13787,0 -0.15829,0.429204 -0.0629,1.258454 0.15134,1.317281 1.7039,4.829008 2.5169,5.694502 0.41765,0.444345 0.52854,1.197759 0.20975,1.394786 -0.23599,0.14594 -0.81799,-0.428885 -0.81799,-0.807508 0,-0.364035 -0.24394,-0.360646 -1.13261,0.01048 -1.05677,0.441494 -1.49573,0.845142 -3.57611,3.282466 l -1.88768,2.223268 -0.14682,2.244242 c -0.0807,1.234694 -0.0956,2.295457 -0.0315,2.3596 0.0639,0.06403 0.42709,-0.15873 0.80751,-0.492894 0.38042,-0.334165 0.77205,-0.641166 0.87043,-0.681663 0.0985,-0.04035 0.43825,-0.418786 0.75507,-0.838968 0.77396,-1.025932 1.17687,-0.915054 1.25846,0.335587 0.035,0.536404 0.15345,1.139206 0.26217,1.342351 0.10872,0.203205 0.19925,0.54906 0.19925,0.765559 0,0.216494 0.16681,0.591788 0.36706,0.838969 l 0.36704,0.450946 0.56631,-0.671176 c 0.31128,-0.370407 0.69961,-0.963049 0.87043,-1.321376 0.17103,-0.358327 0.42627,-0.701337 0.5663,-0.755072 0.13994,-0.05364 0.68071,0.393668 1.19553,0.996276 0.51483,0.602608 1.04466,1.101147 1.18505,1.101147 0.14062,0 0.41829,0.177021 0.61873,0.39851 0.20041,0.221568 0.55327,0.408997 0.77605,0.408997 0.34588,0 0.29995,-0.109019 -0.3251,-0.734098 -0.93325,-0.933293 -1.34506,-2.293445 -1.49965,-5.023326 -0.094,-1.660555 -0.0434,-2.25922 0.22023,-2.946879 0.31718,-0.827559 1.13666,-1.971577 1.41576,-1.971577 0.0736,0 0.56628,-0.342719 1.10115,-0.765559 1.41003,-1.114559 3.30816,-1.532068 5.79936,-1.268941 1.01791,0.107523 2.04349,0.295206 2.27571,0.419484 0.23219,0.12429 0.60069,0.173843 0.81799,0.104872 0.28751,-0.09133 0.39852,-0.312083 0.39852,-0.79702 0,-0.531813 -0.17651,-0.817743 -0.85995,-1.415761 -1.08642,-0.951028 -2.16701,-1.443812 -3.66,-1.677938 -1.26717,-0.198761 -3.02432,-0.105046 -3.5761,0.188768 -0.18658,0.09934 -0.51331,0.178281 -0.72362,0.178281 -0.21042,0 -0.37754,0.138011 -0.37754,0.304126 0,0.166177 0.13928,0.302448 0.31462,0.304127 0.57128,0.0055 0.95148,0.348846 0.68166,0.618739 -0.43691,0.436758 -2.32507,-0.69075 -3.73341,-2.233755 -0.8956,-0.981231 -1.59591,-1.54535 -2.41203,-1.919142 -0.63404,-0.290189 -1.20492,-0.609527 -1.26895,-0.713123 -0.064,-0.103596 -0.21001,-0.188768 -0.3251,-0.188768 z m 1.21651,2.25473 c 0.0543,-0.0044 0.11953,-1.99e-4 0.18877,0.01048 0.0791,0.01221 0.164,0.0401 0.26217,0.07341 0.26017,0.08831 0.53941,0.146552 0.61874,0.125846 0.0795,-0.02054 0.40485,0.274333 0.71312,0.660688 0.30822,0.386355 0.6625,0.702632 0.79703,0.702637 0.13451,0 0.33438,0.158377 0.44046,0.356561 0.19798,0.370408 0.71785,0.697392 1.68842,1.048712 0.70863,0.256604 0.77413,0.909951 0.0734,0.734098 -0.48511,-0.121778 -0.57417,-0.0011 -1.00676,1.34235 -0.18624,0.577841 -0.71368,0.638764 -1.23748,0.14682 -0.26432,-0.248389 -0.81272,-1.147113 -1.227,-1.992552 -0.41427,-0.845439 -0.98439,-1.837201 -1.25844,-2.202294 -0.43809,-0.583507 -0.43257,-0.9755 -0.0524,-1.006762 z m 1.00676,1.174556 c -0.10647,0.02116 -0.0995,0.178275 0.0944,0.450946 0.17691,0.249113 0.49105,0.815558 0.70264,1.258453 0.2118,0.442896 0.52756,0.984532 0.70264,1.206018 0.31074,0.393121 0.31886,0.393691 0.3251,-0.146819 0.003,-0.304687 0.099,-0.555817 0.20974,-0.555817 0.37247,0 0.20475,-0.369019 -0.42997,-0.94384 -0.3469,-0.31411 -0.79972,-0.729065 -1.00677,-0.922866 -0.27414,-0.256645 -0.49129,-0.367237 -0.59776,-0.346075 z m 9.4384,4.561894 c 0.12305,0.01917 0.27715,0.07795 0.45095,0.167794 0.32064,0.165809 0.83305,0.303455 1.14309,0.304126 0.48788,9.8e-4 1.60825,0.230106 2.43301,0.503381 0.13843,0.04591 0.25169,0.218431 0.25169,0.388024 0,0.339782 -0.90448,0.444062 -1.10114,0.125845 -0.0639,-0.103415 -0.63422,-0.29914 -1.26895,-0.429971 -1.34995,-0.27835 -2.32883,-0.734213 -2.16034,-1.006764 0.0354,-0.05727 0.12864,-0.0716 0.25169,-0.05244 z m 0.1573,1.41576 c 0.2718,-0.0043 0.67703,0.06542 1.38431,0.188768 1.0832,0.188949 1.75026,0.416652 2.06595,0.713124 0.45015,0.42284 0.63163,1.251301 0.31462,1.447221 -0.085,0.05257 -0.86692,0.01294 -1.73037,-0.0839 -2.39651,-0.268684 -3.57275,-1.200853 -2.60081,-2.055474 0.15601,-0.137127 0.29451,-0.205451 0.5663,-0.209742 z m 0.36706,0.702637 c -0.0259,-0.0084 -0.0542,-0.0099 -0.0839,0 -0.11905,0.03962 -0.22023,0.15697 -0.22023,0.262177 0,0.10514 0.10118,0.222494 0.22023,0.262178 0.11905,0.03987 0.20974,-0.0776 0.20974,-0.262178 0,-0.138379 -0.0482,-0.236929 -0.12584,-0.262177 z m 1.33186,0.178281 c -0.0589,-0.0036 -0.13942,0.008 -0.23071,0.02098 -0.57201,0.08094 -0.63696,0.671175 -0.0734,0.671175 0.22756,0 0.43151,-0.16773 0.47191,-0.377536 0.0412,-0.214466 0.009,-0.303961 -0.16779,-0.314614 z m 5.72597,1.19553 c 0.15502,-0.005 0.28946,0.03775 0.38802,0.136333 0.22044,0.220118 0.0613,0.473054 -0.52436,0.828482 -0.42257,0.256335 -0.59966,0.270763 -0.78654,0.0839 -0.18686,-0.186775 -0.16028,-0.333916 0.12585,-0.650201 0.22977,-0.253783 0.53865,-0.39016 0.79703,-0.398511 z m -9.365,0.671176 c -0.0994,0.0025 -0.18509,0.01278 -0.25168,0.03146 -1.3501,0.378623 -1.54161,0.531359 -1.54161,1.226992 0,0.408139 -0.1,1.208115 -0.22024,1.698912 0.37577,0.01331 0.84887,0.2968 1.16407,0.76556 0.46922,0.698049 2.03576,1.814881 2.7686,1.971577 1.15584,0.247076 2.54753,0.228669 3.63903,-0.04195 1.1378,-0.282017 1.29801,-0.267372 2.49594,0.115358 0.70348,0.224551 1.40554,0.398511 1.56257,0.398511 0.15722,0 0.66362,0.187513 1.12213,0.408997 0.92012,0.444541 1.15357,0.486981 1.15357,0.22023 0,-0.0981 -0.31496,-0.329938 -0.70263,-0.513869 -0.72772,-0.345279 -0.93372,-0.713124 -0.39851,-0.713124 0.16758,0 0.4579,0.07781 0.6502,0.178281 1.23382,0.644409 3.4105,1.446584 3.98511,1.468196 1.00646,0.03794 2.00728,-1.265481 1.20602,-1.573067 -0.0667,-0.02558 -0.12276,-0.0554 -0.1678,-0.09438 -0.5282,-0.03803 -3.81259,-1.033596 -6.16642,-1.677938 -1.04624,-0.286359 -2.01332,-0.513868 -2.14987,-0.513868 -0.30682,0 -2.95512,-1.21249 -3.09369,-1.41576 -0.16378,-0.240174 -1.67879,-1.006763 -1.99255,-1.006763 -0.15894,0 -0.43335,-0.121653 -0.60825,-0.272665 -0.37973,-0.326856 -1.75829,-0.67815 -2.45399,-0.660688 z m 17.71273,4.782123 c -0.31485,0.01095 -0.57678,0.198826 -0.57678,0.47192 0,0.321808 0.34858,0.39703 0.8914,0.188768 0.40208,-0.154397 0.40438,-0.457072 0.0105,-0.608253 -0.10676,-0.04096 -0.22014,-0.05609 -0.3251,-0.05244 z m 0.12585,1.384299 c -0.16611,0 -0.30412,0.12311 -0.30412,0.272665 0,0.149564 -0.26554,0.479427 -0.59777,0.734098 -0.33215,0.25467 -0.60826,0.537784 -0.60826,0.629226 0,0.274242 1.05022,-0.202812 1.44723,-0.660688 0.44733,-0.515624 0.47443,-0.975301 0.0629,-0.975301 z m -134.20359,5.841321 c -0.19325,0 -0.4758,7.5705546 -0.29362,7.8653347 0.16216,0.2624023 0.33891,1.94018921 0.3251,3.09369822 -0.0102,0.87129268 -0.0222,0.86752708 1.08017,-0.69214993 0.43191,-0.60913153 0.83218,-1.15064547 0.89142,-1.20601818 0.0587,-0.0555751 0.24301,-0.37040411 0.40899,-0.70263571 0.16928,-0.3322322 0.46926,-0.7852752 0.67117,-1.0067632 0.20384,-0.2215681 0.79607,-1.0781959 1.31088,-1.9086545 0.51482,-0.8307002 1.23125,-1.9014359 1.59404,-2.3805743 0.66207,-0.8768502 0.86188,-1.9038387 0.42997,-2.1708324 -0.12438,-0.075628 -0.74519,0.2452441 -1.39477,0.7026369 -1.313,0.927591 -1.40405,0.8886492 -1.67797,-0.6292271 -0.074,-0.4114839 -0.23489,-0.8057318 -0.35654,-0.8809174 -0.26604,-0.1643031 -0.96903,0.6782625 -0.97531,1.1745567 -0.007,0.6328104 -0.73041,0.3843452 -1.31087,-0.4509459 -0.30751,-0.4428946 -0.62221,-0.8075079 -0.70266,-0.8075079 z m 108.2375,3.0832115 c -0.212,-0.027049 -0.57757,0.2500899 -1.36332,1.0067626 -0.20558,0.1978455 -0.45961,0.3071502 -0.56631,0.241204 -0.11253,-0.069346 -0.19412,0.2412836 -0.19925,0.7445841 -0.005,0.4772058 -0.14455,1.2245565 -0.30413,1.6674511 -0.34937,0.9697742 -0.33849,0.9123789 -0.0839,0.9123789 0.11423,0 0.26288,-0.1627598 0.33559,-0.3565616 0.0726,-0.1937817 0.41521,-0.7602301 0.75507,-1.2584536 0.33999,-0.498468 0.77357,-1.2416137 0.96482,-1.6569641 0.19142,-0.4153498 0.43279,-0.7550717 0.54533,-0.7550717 0.26917,0 0.27228,-0.3455879 0,-0.5138688 -0.025,-0.015491 -0.0536,-0.027597 -0.0839,-0.031456 z m -65.93249,6.58590588 c -0.10037,0 -0.13836,0.16921352 -0.0839,0.37753669 0.0899,0.34317827 -0.0979,0.83279093 -1.3843,3.59707953 -0.2188,0.4706815 -0.46164,0.8592721 -0.53483,0.8599429 -0.0733,6.921e-4 -0.35235,0.3411718 -0.62923,0.7550722 -0.54073,0.8088572 -0.71405,1.0141594 -2.07646,2.5588555 -0.48821,0.5538003 -1.00081,1.2159416 -1.13258,1.4681966 -0.13171,0.2522602 -0.32606,0.4102958 -0.42997,0.3460736 -0.10391,-0.064219 -0.12884,0.017014 -0.0629,0.1887663 0.23647,0.6162133 -3.49332,4.8777173 -4.92894,5.6315793 -0.6113,0.320635 -3.70241,3.950855 -3.5971,4.226308 0.093,0.244037 1.14384,0.518649 1.98205,0.524352 0.28541,0.0024 1.7859,-1.070421 2.8525,-2.034496 0.19936,-0.181221 0.96756,-0.573237 1.7094,-0.870431 2.17654,-0.872261 2.35351,-0.989162 2.42253,-1.583554 0.0363,-0.3101 0.18187,-0.54533 0.34607,-0.54533 0.15879,0 0.29366,-0.174457 0.29366,-0.388022 0,-0.215046 0.11817,-0.503852 0.26215,-0.650204 0.14409,-0.144971 0.65593,-0.814219 1.14313,-1.478681 0.48716,-0.664465 1.01193,-1.334708 1.16406,-1.48917 0.15203,-0.15464 0.69532,-1.1491556 1.20601,-2.2127801 0.51069,-1.0636982 1.08979,-2.1653884 1.27944,-2.4434966 0.18968,-0.2778665 0.53268,-1.0838913 0.76554,-1.7932963 0.23282,-0.7094055 0.40384,-1.3405082 0.38802,-1.4052732 -0.11677,-0.4773764 -0.74153,-3.37194705 -0.75507,-3.49220818 -0.009,-0.0830582 -0.0989,-0.14682024 -0.19926,-0.14682024 z m 50.71569,4.62481712 c -0.37026,-0.018888 -1.1243,0.075409 -1.35284,0.199255 -0.19245,0.1041394 -1.07517,0.3205734 -1.96109,0.4928944 -0.88591,0.1722772 -2.38321,0.5054183 -3.32441,0.7340977 -2.61291,0.6347436 -3.60829,0.7652778 -7.74998,1.0067632 -3.49885,0.2039226 -4.71735,0.1875396 -7.95972,-0.1258458 -1.58386,-0.1531886 -1.02133,0.2045917 0.80751,0.5138683 0.83029,0.1403832 1.59866,0.3157413 1.7094,0.3985106 0.19688,0.1471484 2.01982,0.3586494 4.43605,0.5138688 0.66444,0.042644 1.865,0.1565482 2.67422,0.2516904 3.6055,0.4240483 9.6837,-0.1553434 12.47966,-1.1955307 1.16233,-0.4322634 1.21345,-0.5755701 0.74458,-1.877193 -0.15959,-0.4431374 -0.29196,-0.8322575 -0.29364,-0.8599435 -0.002,-0.034322 -0.0863,-0.046145 -0.20974,-0.052438 z m -23.73234,2.0345003 c -0.04,-0.00433 -0.0833,-0.00202 -0.13633,0 -0.23457,0.00966 -0.28647,0.06157 -0.12584,0.1258446 0.14536,0.058184 0.32112,0.045926 0.38802,-0.020976 0.0502,-0.050183 -0.006,-0.092035 -0.12585,-0.1048713 z m 24.33011,1.1955306 c -0.19964,0 -0.41124,0.080091 -0.47193,0.1782806 -0.0605,0.098247 -0.42928,0.2416699 -0.81799,0.3146138 -0.38881,0.07297 -0.71313,0.2523484 -0.71313,0.39851 0,0.1461818 -0.15742,0.4804897 -0.35656,0.7445847 -0.19936,0.2640927 -0.48637,0.9744215 -0.62922,1.5835515 -0.35555,1.515195 -1.19994,4.271227 -1.41576,4.614332 -0.13683,0.217626 -0.46952,0.251105 -1.45771,0.146819 -2.61974,-0.277866 -2.63459,-0.283742 -3.42929,-1.153582 -0.74148,-0.812022 -0.78594,-0.826154 -1.71988,-0.69215 -0.52726,0.0749 -1.06759,0.281692 -1.20602,0.461431 -0.49824,0.645133 -0.16856,2.055475 0.4824,2.055475 0.17622,0 0.87418,0.274814 1.5521,0.608254 1.36014,0.666876 5.62483,1.536297 6.48103,1.321375 0.70452,-0.176382 2.05692,-1.448732 2.53789,-2.391061 0.22389,-0.439755 0.59479,-0.99339 0.81799,-1.226995 0.22321,-0.231957 0.61321,-0.752484 0.87043,-1.153581 0.62105,-0.968015 0.75082,-1.915047 0.38803,-2.883955 -0.16325,-0.436373 -0.36087,-1.2683502 -0.42998,-1.8562177 -0.0999,-0.8493891 -0.19389,-1.0696849 -0.4824,-1.0696849 z"
-       id="path2991-6"
-       inkscape:connector-curvature="0" />
-    <path
-       style="fill:#ffffff;fill-opacity:1"
-       d="m -728.20464,0.34204927 c 0.39057,-0.53776222 0.9798,-1.39552387 1.3094,-1.90613757 0.32957,-0.5106131 1.40279,-2.1209872 2.38488,-3.5786087 1.56805,-2.3273298 1.79241,-2.7210984 1.84148,-3.2319572 0.0354,-0.3676495 0.005,-0.61328 -0.0828,-0.6674508 -0.077,-0.047581 -0.63876,0.2168348 -1.26266,0.5943155 -0.61819,0.3740174 -1.22088,0.6613719 -1.33929,0.6385657 -0.15612,-0.030066 -0.287,-0.2996161 -0.47625,-0.9807024 -0.1435,-0.5165801 -0.3105,-0.98882 -0.3711,-1.0494215 -0.15715,-0.1571711 -0.62278,0.3760343 -0.81243,0.9303381 -0.2495,0.7292773 -0.5612,0.6854626 -1.38597,-0.1948175 -0.37964,-0.4052308 -0.72131,-0.6865919 -0.75924,-0.6252475 -0.0379,0.061345 -0.13317,1.6556832 -0.2117,3.5429744 -0.11452,2.7516077 -0.11268,3.5560453 0.009,4.0603995 0.0837,0.3459271 0.18122,1.26268227 0.21675,2.03722829 0.0355,0.77454949 0.1017,1.40827001 0.14702,1.40827001 0.0453,0 0.40201,-0.43998553 0.79255,-0.97774833 z"
-       id="path3056"
-       inkscape:connector-curvature="0" />
-    <path
-       style="fill:#ffffff;fill-opacity:1"
-       d="m -622.38098,-4.1035374 c 0.51441,-0.8734267 1.03876,-1.7633327 1.16522,-1.9775698 0.12646,-0.2142371 0.27947,-0.3895209 0.34001,-0.3895209 0.0606,0 0.11008,-0.080901 0.11008,-0.1797795 0,-0.3294477 -0.37715,-0.1858266 -1.10157,0.4194845 -0.39445,0.3295954 -0.78948,0.5992635 -0.87786,0.5992635 -0.10646,0 -0.18758,0.2325424 -0.2404,0.6891531 -0.075,0.6482966 -0.33523,1.8349506 -0.49196,2.2433841 -0.0388,0.1009984 -0.0183,0.1836333 0.0454,0.1836333 0.0637,0 0.53671,-0.7146205 1.05112,-1.5880483 z"
-       id="path3058"
-       inkscape:connector-curvature="0" />
-    <path
-       style="fill:#ffffff;fill-opacity:1"
-       d="m -642.51894,8.1379707 c 3.43818,-0.321567 6.88213,-1.188289 7.06967,-1.7791879 0.0363,-0.1146166 -0.0693,-0.6076216 -0.23494,-1.0955664 -0.1656,-0.4879476 -0.30146,-0.9006565 -0.30192,-0.917137 -0.003,-0.1035118 -1.00535,-1.009e-4 -1.44768,0.1493332 -0.80893,0.2732854 -6.71749,1.5697643 -8.14137,1.7864099 -3.05642,0.465037 -8.75589,0.6784101 -11.62616,0.4352504 -1.90636,-0.1615013 -2.40446,-0.1164725 -1.23755,0.1118747 0.38426,0.075195 1.23799,0.271212 1.89718,0.4355959 1.72573,0.4303446 8.05958,1.0076485 10.84668,0.988628 1.15358,-0.00786 2.58282,-0.059711 3.17609,-0.1152008 z"
-       id="path3060"
-       inkscape:connector-curvature="0" />
-    <path
-       style="fill:#ffffff;fill-opacity:1"
-       d="m -610.43585,-23.682975 c 0.0363,-0.0518 0.066,-0.123828 0.066,-0.160068 0,-0.08091 -0.11719,-0.254247 -0.17189,-0.254247 -0.0782,0 -0.20947,0.171134 -0.20947,0.273031 0,0.05895 0.0406,0.131937 0.0942,0.169497 0.1231,0.08622 0.14284,0.0837 0.22123,-0.02821 z"
-       id="path3062"
-       inkscape:connector-curvature="0" />
-    <path
-       style="fill:#ff7f2a;fill-opacity:1"
-       d="m -681.79158,24.388729 c -0.23985,-0.388061 -0.97749,-0.533725 -1.63925,-0.323687 -1.55543,0.493672 -2.63554,-0.859356 -3.81526,-4.779195 l -0.95085,-3.159492 2.19421,-2.186546 c 1.78146,-1.775201 2.93601,-2.272996 6.13724,-2.646078 7.57884,-0.883262 15.21765,-6.2022006 16.74579,-11.66017719 0.60593,-2.16417791 1.07874,-2.87513031 1.57922,-2.37464481 0.50049,0.5004849 0.29359,1.7102888 -0.69105,4.0408634 l -1.40541,3.3265094 3.04543,0.456688 c 5.30117,0.7949593 13.48981,0.4963335 18.80287,-0.68571 l 5.13487,-1.1424044 -0.43168,-2.30107002 c -0.25662,-1.36791223 -0.15716,-2.30107058 0.24525,-2.30107058 0.37232,0 1.35075,2.9746787 2.17427,6.6103978 1.94285,8.5772324 6.40813,18.3531384 8.63878,18.9129974 1.79433,0.450348 2.96222,-0.238478 1.71317,-1.010433 -0.44399,-0.274405 -1.29071,-2.774851 -1.8816,-5.556548 -1.15015,-5.414514 -0.93913,-10.5664461 0.67926,-16.5834512 0.50148,-1.86447064 1.11242,-4.6525326 1.35764,-6.1956894 0.37533,-2.361957 0.65668,-2.7506053 1.77885,-2.4571534 0.94664,0.2475511 2.12254,-0.4813877 4.05699,-2.514919 l 2.72399,-2.863508 -2.48083,-1.329646 c -2.24547,-1.2035 -2.59066,-1.230255 -3.63846,-0.282008 -1.36893,1.238864 -2.76629,0.279311 -2.76629,-1.899584 0,-1.293702 -0.0526,-1.289157 -1.56918,0.135597 -2.13016,2.00119 -2.49876,1.868607 -2.49876,-0.898801 0,-1.305129 -0.15861,-2.372963 -0.35247,-2.372963 -0.19385,0 -1.62041,0.80042 -3.17012,1.77871 -4.87925,3.080131 -21.94277,4.587437 -32.74984,2.892957 -11.74569,-1.841651 -16.29864,-1.389084 -18.4077,1.829737 -1.78255,2.720498 -3.66878,2.048421 -9.61303,-3.425182 -8.84695,-8.146484 -14.3421,-10.157755 -22.37461,-8.189286 -8.67146,2.125043 -11.91416,5.178888 -12.83527,12.087707 -0.35372,2.652902 -0.29694,2.7869182 0.79756,1.882815 1.02397,-0.845858 1.25716,-0.845858 1.77983,0 1.03406,1.6735998 4.2195,1.19946 8.21481,-1.222752 2.1091,-1.278661 4.99596,-2.586748 6.41529,-2.90686 4.41883,-0.99661 15.19123,1.741741 22.12399,5.6239416 2.35759,1.3201987 2.54274,1.6488153 2.54625,4.5193264 0.003,1.7025835 0.32149,4.23962244 0.70982,5.63786454 0.80516,2.89932936 -0.36367,6.25980616 -4.03161,11.59094946 -2.35029,3.416054 -2.21576,4.928373 0.87389,9.82271 1.61296,2.555073 2.04497,2.824658 4.5266,2.824658 1.72782,0 2.58203,-0.261205 2.3074,-0.70557 z"
-       id="path3070"
-       inkscape:connector-curvature="0" />
-    <path
-       style="fill:#ff7f2a;fill-opacity:1"
-       d="m -698.10984,18.897946 c 0.86474,-0.638345 2.35282,-1.520408 3.30685,-1.960139 1.03893,-0.478879 1.82409,-1.005327 1.9578,-1.312723 0.32473,-0.746432 0.67462,-1.270779 2.10026,-3.14746 1.62264,-2.136005 4.60006,-8.0226159 4.58577,-9.0664447 -0.006,-0.4201957 -0.14685,-1.4111958 -0.31355,-2.2022264 -0.27772,-1.31797012 -0.31575,-1.37644283 -0.45492,-0.69928423 -0.31542,1.53458803 -1.70239,3.90733083 -3.84169,6.57206743 -1.2172,1.5161374 -2.37174,3.0802159 -2.56572,3.4757299 -0.19398,0.395513 -1.92844,2.283193 -3.8544,4.194842 -3.23066,3.206684 -4.50665,4.669935 -4.27298,4.900064 0.0508,0.05005 0.47219,0.161915 0.93636,0.248598 0.74954,0.139969 1.01984,0.02776 2.41622,-1.003024 l 0,0 z"
-       id="path3072"
-       inkscape:connector-curvature="0" />
-    <path
-       style="fill:#ff7f2a;fill-opacity:1"
-       d="m -638.16718,17.114852 c 1.3394,-1.225219 3.55513,-4.655333 3.55513,-5.503613 0,-0.572402 -0.66441,-3.7558664 -0.83223,-3.9875864 -0.0228,-0.031548 -0.4812,0.1153548 -1.01858,0.3264394 -1.14218,0.4486643 -1.3847,0.9021428 -2.48374,4.644256 -0.40646,1.383963 -0.85456,2.65552 -0.99579,2.825686 -0.24709,0.297725 -0.82175,0.282136 -3.22665,-0.08753 -0.42161,-0.0648 -1.19738,-0.477767 -1.72395,-0.917696 -0.73692,-0.615682 -1.11238,-0.771907 -1.63049,-0.678428 -0.95623,0.17252 -1.27237,0.493915 -1.27237,1.293503 0,0.598391 0.15298,0.763858 1.06938,1.156671 1.9448,0.83364 4.27748,1.454596 5.99039,1.594636 1.66269,0.135931 1.70342,0.125368 2.5689,-0.66634 l 0,0 z"
-       id="path3074"
-       inkscape:connector-curvature="0" />
-    <path
-       style="fill:#ff7f2a;fill-opacity:1"
-       d="m -614.28609,-14.594636 c 1.16267,-1.800307 1.16199,-1.902475 -0.0199,-2.99188 -1.04183,-0.960335 -1.04948,-0.979188 -0.95344,-2.352467 0.25371,-3.627707 1.47942,-3.830502 7.27325,-1.203374 3.3631,1.524949 7.33291,2.974572 7.55038,2.757109 0.0592,-0.05924 -0.67571,-0.464313 -1.63321,-0.900164 -2.05905,-0.937267 -2.01176,-0.904166 -1.71528,-1.200652 0.14605,-0.146047 0.49889,-0.151844 0.94284,-0.01549 0.94775,0.291097 5.21441,2.248156 5.94518,2.726968 0.48034,0.314737 0.6536,0.327273 1.00201,0.0725 0.37657,-0.275353 0.20033,-0.445632 -1.66134,-1.605093 -1.14543,-0.713385 -2.77254,-1.741056 -3.6158,-2.283713 -1.14327,-0.735723 -1.56536,-0.902842 -1.65966,-0.657117 -0.20336,0.52997 -1.29745,0.941663 -1.62692,0.612196 -0.32674,-0.326743 0.3772,-1.245631 0.95426,-1.245631 0.27077,0 0.28896,-0.07566 0.079,-0.328613 -0.15,-0.180737 -0.5948,-0.973132 -0.98844,-1.760877 -0.39364,-0.787746 -0.91888,-1.616127 -1.16719,-1.840846 -0.43101,-0.390064 -0.46303,-0.375442 -0.70638,0.322645 -0.29432,0.844274 -0.73571,0.916912 -2.10221,0.345951 -1.23129,-0.514462 -5.13297,-0.375307 -6.26446,0.223422 -1.10697,0.585761 -2.42439,1.794319 -2.84719,2.611923 -0.43544,0.842046 -0.50061,4.184058 -0.10989,5.63508 0.14882,0.55271 0.71951,1.486046 1.31063,2.143525 0.57587,0.640501 1.09284,1.378659 1.14883,1.640351 0.0829,0.387334 0.24369,0.256108 0.86488,-0.705755 l 0,0 z m 3.90683,-8.204973 c -0.90665,-0.292816 -1.26724,-0.541875 -1.36847,-0.945198 -0.2043,-0.814 0.0652,-1.054424 1.18029,-1.052941 2.09146,0.0028 3.76121,0.853508 3.76121,1.916307 0,0.413987 -0.1598,0.47941 -1.17099,0.47941 -0.64406,0 -1.72497,-0.178909 -2.40204,-0.397578 l 0,0 z m 1.17598,-2.23181 c -2.92647,-0.939595 -2.97648,-1.44098 -0.085,-0.852395 2.51777,0.512516 2.72176,0.584543 2.72176,0.961054 0,0.352954 -0.45814,0.613631 -0.83897,0.477363 -0.13183,-0.04717 -0.94085,-0.310885 -1.79779,-0.586022 z"
-       id="path3076"
-       inkscape:connector-curvature="0" />
-    <path
-       style="fill:#ff0000;fill-opacity:1"
-       d="m -617.40706,-15.390647 c -0.98218,-1.120187 -1.23363,-2.067074 -1.32084,-4.973887 -0.0796,-2.654014 -0.0437,-2.948991 0.46439,-3.814284 0.63126,-1.075033 2.70745,-2.593182 4.13347,-3.022458 1.15849,-0.348746 4.19403,-0.347088 5.75684,0.0032 1.72456,0.386483 2.04889,-0.107622 0.93756,-1.42836 -1.34876,-1.60291 -4.34993,-2.438436 -6.86138,-1.910207 -1.42746,0.300236 -1.72592,0.556982 -0.89889,0.773254 0.55388,0.144846 0.63579,0.604698 0.14148,0.794382 -0.51416,0.197303 -1.70647,-0.516461 -3.28152,-1.964451 -1.25662,-1.155245 -3.80055,-2.974378 -4.15947,-2.974378 -0.6115,0 0.78598,4.139889 2.02291,5.992636 0.77148,1.155588 0.94619,2.157349 0.37623,2.157349 -0.19029,0 -0.5153,-0.241764 -0.72228,-0.537252 l -0.3763,-0.537252 -1.01559,0.540836 c -0.86644,0.461407 -4.4426,4.168417 -5.04042,5.224846 -0.10425,0.184215 -0.15818,1.226575 -0.11985,2.316356 l 0.0697,1.98142 1.37145,-1.286733 c 0.7616,-0.714571 1.5154,-1.231489 1.6952,-1.162495 0.18393,0.07058 0.45409,0.853519 0.62553,1.812822 0.25493,1.426497 0.79165,2.515496 1.06888,2.168723 0.0413,-0.05175 0.42148,-0.606455 0.84469,-1.232686 0.42321,-0.62623 0.88471,-1.138601 1.02556,-1.138601 0.14083,0 0.89688,0.593271 1.68008,1.318381 1.32992,1.231267 2.4138,1.846905 1.58259,0.898895 z m -1.59655,-11.298485 c -0.42092,-0.420924 -2.43707,-3.941731 -2.79542,-4.881631 -0.13172,-0.345491 -0.0245,-0.419485 0.60792,-0.419485 0.58173,0 1.1254,0.307794 2.24292,1.269808 0.81129,0.698393 1.77171,1.39722 2.13426,1.552946 0.75347,0.323635 0.88844,1.012534 0.19837,1.012534 -0.31246,0 -0.54831,0.265122 -0.73259,0.823486 -0.24616,0.745864 -0.50809,1.020941 -1.02386,1.075233 -0.0989,0.0104 -0.3831,-0.184393 -0.6316,-0.432891 z"
-       id="path3078"
-       inkscape:connector-curvature="0" />
-    <path
-       style="fill:#ff0000;fill-opacity:1"
-       d="m -610.01741,-31.197409 c 0.0478,-0.12451 -0.33517,-1.267437 -0.91884,-2.742303 -0.69953,-1.767638 -0.92578,-2.194811 -1.16248,-2.194811 -0.13187,0 -0.53866,0.489399 -0.74423,0.895348 -0.22732,0.448932 -0.33139,0.886481 -0.42142,1.771796 -0.084,0.826254 -0.20791,1.537239 -0.31864,1.828728 l -0.0564,0.14842 1.23624,0.0023 c 1.26819,0.0023 1.53703,0.03933 2.12151,0.292204 0.20983,0.09079 0.22882,0.09067 0.26424,-0.0016 l 0,0 z"
-       id="path3085"
-       inkscape:connector-curvature="0" />
-    <path
-       style="fill:#ffccaa;fill-opacity:1"
-       d="m -728.3931,0.50440991 c 0.92303,-1.22941846 5.14526,-7.51823261 5.4643,-8.13880901 0.30317,-0.5897437 0.37373,-1.4067699 0.1215,-1.4067699 -0.0865,0 -0.61624,0.2733627 -1.17713,0.6074723 -0.56085,0.3341095 -1.1542,0.5815775 -1.31855,0.5499281 -0.18848,-0.036295 -0.37966,-0.3388712 -0.51775,-0.8193442 -0.3652,-1.2708772 -0.35463,-1.2552676 -0.67117,-0.9927603 -0.15319,0.127028 -0.38212,0.4788506 -0.50875,0.7818268 -0.12666,0.3029768 -0.33489,0.5508665 -0.46274,0.5508665 -0.12785,0 -0.54056,-0.3174336 -0.91713,-0.7054082 l -0.68468,-0.7054076 -0.11451,0.6103104 c -0.17911,0.9548319 -0.17246,7.1526247 0.01,8.90535505 l 0.16401,1.57920445 0.61299,-0.81646439 z"
-       id="path3087"
-       inkscape:connector-curvature="0" />
-    <path
-       style="fill:#ffccaa;fill-opacity:1"
-       d="m -642.26768,8.0636986 c 3.685,-0.3898352 6.59602,-1.1462293 6.7111,-1.7438109 0.0932,-0.4838897 -0.33172,-1.819965 -0.61316,-1.927957 -0.13735,-0.052709 -1.25052,0.1424669 -2.47374,0.4337168 -6.92971,1.6499867 -9.35425,1.9549654 -15.65933,1.9697612 -2.26213,0.00531 -4.05457,0.026847 -3.98319,0.047853 3.38498,0.9963696 11.96034,1.6497248 16.01832,1.2204379 l 0,0 z"
-       id="path3089"
-       inkscape:connector-curvature="0" />
-    <path
-       style="fill:#ffccaa;fill-opacity:1"
-       d="m -622.1678,-4.5120748 c 0.57887,-0.9903772 1.12748,-1.8470258 1.21913,-1.9036633 0.24843,-0.1535411 0.20142,-0.4715894 -0.0551,-0.3731321 -0.12198,0.046809 -0.61767,0.3791302 -1.10155,0.7384983 -0.71834,0.5334938 -0.87999,0.7467066 -0.8809,1.1618874 -5.8e-4,0.2796706 -0.0818,0.7990658 -0.18044,1.1542121 -0.34487,1.2419292 -0.0453,1.0086416 0.99891,-0.7778024 l 0,0 z"
-       id="path3091"
-       inkscape:connector-curvature="0" />
-    <path
-       style="fill:#ffccaa;fill-opacity:1"
-       d="m -596.50156,-15.308734 c 0.70085,-0.552474 0.61179,-0.970333 -0.25425,-1.192808 -0.3962,-0.10178 -1.63565,-0.442628 -2.75433,-0.757439 -1.11868,-0.314811 -2.83323,-0.774147 -3.8101,-1.020746 -1.77901,-0.44909 -3.81442,-1.282417 -4.73716,-1.93947 -0.64471,-0.45907 -2.77438,-1.357004 -3.74645,-1.579613 -0.42233,-0.09672 -1.04615,-0.123647 -1.38625,-0.05984 -0.94902,0.178036 -1.27548,0.561297 -1.38902,1.63066 l -0.099,0.932235 1.26185,1.101733 c 1.65203,1.442411 2.55449,1.85947 4.02975,1.86229 0.62753,0.0012 1.66004,-0.08683 2.29448,-0.195627 1.04185,-0.178657 1.29239,-0.160406 2.58798,0.188514 0.78895,0.212476 1.84016,0.53776 2.33602,0.722853 1.0568,0.394483 1.28313,0.337829 0.44772,-0.112068 -0.64256,-0.346044 -0.78093,-0.770988 -0.25104,-0.770988 0.18452,0 1.11542,0.314446 2.06867,0.698772 2.20958,0.890851 2.78843,0.974511 3.40111,0.491545 z"
-       id="path3093"
-       inkscape:connector-curvature="0" />
-    <path
-       style="fill:#ffccaa;fill-opacity:1"
-       d="m -595.74659,-14.456064 c 0.65282,-0.340099 1.18264,-1.090376 0.94077,-1.33224 -0.14077,-0.140769 -0.33908,-0.01624 -0.4689,0.294455 -0.0653,0.156404 -0.33351,0.467791 -0.59592,0.691971 -0.67977,0.580748 -0.62421,0.735635 0.12405,0.345814 l 0,0 z"
-       id="path3095"
-       inkscape:connector-curvature="0" />
-    <path
-       style="fill:#550000;fill-opacity:1"
-       d="m -618.63664,-28.096971 c 0,-0.285681 0.0427,-0.406452 0.17681,-0.500405 0.24075,-0.168628 0.16359,-0.29158 -0.70828,-1.128609 -0.74688,-0.717041 -1.13598,-1.016392 -1.21648,-0.935896 -0.0262,0.02623 0.22854,0.555778 0.56615,1.176774 0.75117,1.381674 0.98951,1.764699 1.09812,1.764699 0.046,0 0.0837,-0.169454 0.0837,-0.376563 z"
-       id="path3097"
-       inkscape:connector-curvature="0" />
-    <path
-       style="fill:#808000;fill-opacity:1"
-       d="m -609.16174,-23.415176 c 0.11597,-0.115971 0.13859,-0.491542 0.0296,-0.491542 -0.36051,0 -0.76301,0.322822 -0.64354,0.51614 0.069,0.111699 0.4947,0.09464 0.61394,-0.0246 z"
-       id="path3101"
-       inkscape:connector-curvature="0" />
-    <path
-       style="fill:#1a1a1a;fill-opacity:1"
-       d="m -594.91157,-16.627122 c 0.38332,-0.153093 0.44972,-0.250822 0.29018,-0.427106 -0.28561,-0.315599 -0.96361,-0.130281 -0.96361,0.263384 0,0.245825 0.29082,0.316528 0.67343,0.163722 z"
-       id="path3103"
-       inkscape:connector-curvature="0" />
-    <path
-       style="fill:#aa0000;fill-opacity:1"
-       d="m -617.61509,-15.354665 c 0,-0.04932 -0.18621,-0.42344 -0.4138,-0.831382 -0.53924,-0.966547 -0.77069,-2.467747 -0.76768,-4.979146 0.002,-1.608276 0.0676,-2.17744 0.31383,-2.719481 0.40898,-0.900393 1.97648,-2.28066 3.385,-2.980678 1.10496,-0.549154 1.17128,-0.560138 3.41506,-0.565635 1.25852,-0.0031 2.8412,0.06145 3.51707,0.143416 1.19742,0.145213 1.22885,0.139511 1.22885,-0.222925 0,-0.608507 -1.63275,-2.100263 -2.80196,-2.559982 -0.8397,-0.330165 -1.32875,-0.398731 -2.8762,-0.403248 -1.1982,-0.0035 -2.04618,0.07535 -2.37296,0.220657 l -0.5085,0.226099 0.38931,0.180522 c 0.50875,0.235912 0.44291,0.862501 -0.0987,0.93933 -0.52628,0.07465 -1.55889,-0.559336 -3.26671,-2.005661 -1.8614,-1.57638 -3.94195,-2.973972 -4.03074,-2.707612 -0.0372,0.111744 0.0704,0.7098 0.23927,1.329013 0.25167,0.922939 0.32538,1.049635 0.40901,0.702989 0.10917,-0.452459 0.47082,-0.598734 1.09377,-0.442383 0.21261,0.05336 1.13347,0.670305 2.04636,1.370988 0.91288,0.700684 1.71008,1.27397 1.77154,1.27397 0.21909,0 0.85365,0.695489 0.85365,0.93561 0,0.134427 -0.18417,0.29064 -0.40928,0.347138 -0.23841,0.05984 -0.49588,0.31176 -0.61668,0.603407 -0.30614,0.739082 -0.82275,1.334295 -1.15809,1.334295 -0.47465,0 -1.13135,-0.820004 -2.30772,-2.881633 -1.38703,-2.430798 -1.43515,-2.055432 -0.0764,0.595692 0.5639,1.100223 1.00248,2.159214 0.97461,2.353313 -0.0785,0.546551 -0.55901,0.51357 -1.11018,-0.0762 l -0.50055,-0.535578 -0.74544,0.464486 c -0.84247,0.524945 -3.44905,3.094286 -4.52435,4.459694 l -0.71276,0.905081 0,1.947538 0,1.947539 1.04856,-0.934039 c 1.20562,-1.073927 1.70958,-1.38009 2.05411,-1.247884 0.13706,0.0526 0.37543,0.638453 0.54364,1.336126 0.35896,1.488858 0.75575,2.546202 0.93006,2.478366 0.0698,-0.02718 0.49887,-0.540278 0.95338,-1.14021 0.45452,-0.599933 0.91562,-1.119098 1.02468,-1.153701 0.16558,-0.05254 1.01247,0.588683 2.81029,2.127835 0.16314,0.139667 0.29662,0.21359 0.29662,0.164271 z"
-       id="path3105"
-       inkscape:connector-curvature="0" />
-    <path
-       style="fill:#aa0000;fill-opacity:1"
-       d="m -610.22716,-31.675418 c -0.21233,-0.845976 -1.46409,-3.888854 -1.69626,-4.123393 -0.40902,-0.413193 -0.93925,0.633986 -1.26646,2.501215 l -0.29374,1.676141 1.36659,0.07187 c 0.75162,0.03953 1.51148,0.135581 1.68857,0.213456 0.28653,0.125997 0.3087,0.08864 0.2013,-0.339284 z"
-       id="path3107"
-       inkscape:connector-curvature="0" />
-  </g>
-</svg>
index 36e3f61..1bb98b1 100644 (file)
Binary files a/thesis.pdf and b/thesis.pdf differ

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