Initial import
authorAntonio Ospite <ao2@ao2.it>
Wed, 16 Apr 2014 11:37:49 +0000 (13:37 +0200)
committerAntonio Ospite <ao2@ao2.it>
Wed, 16 Apr 2014 11:37:49 +0000 (13:37 +0200)
52 files changed:
.gitignore [new file with mode: 0644]
CanvasFrame.py [new file with mode: 0755]
CanvasModel.py [new file with mode: 0755]
CanvasView.py [new file with mode: 0755]
Makefile [new file with mode: 0644]
PoPiPaint.py [new file with mode: 0755]
README [new file with mode: 0644]
TODO [new file with mode: 0644]
TUTORIAL [new file with mode: 0644]
patterns/Adafuit-depolar.png [new file with mode: 0644]
patterns/Debian-depolar.png [new file with mode: 0644]
patterns/Firefox-depolar.png [new file with mode: 0644]
patterns/JMPrope-depolar.png [new file with mode: 0644]
patterns/Openhardware-depolar.png [new file with mode: 0644]
patterns/Opensource-depolar.png [new file with mode: 0644]
patterns/S.S.C.Napoli-depolar.png [new file with mode: 0644]
patterns/ao2-depolar.png [new file with mode: 0644]
patterns/ao2it-depolar.png [new file with mode: 0644]
res/ao2.ico [new file with mode: 0644]
res/grid.png [new file with mode: 0644]
src_images/Adafuit.svg [new file with mode: 0644]
src_images/Debian.svg [new file with mode: 0644]
src_images/Firefox.svg [new file with mode: 0644]
src_images/JMPrope.svg [new file with mode: 0644]
src_images/NOTES.txt [new file with mode: 0644]
src_images/Openhardware.svg [new file with mode: 0644]
src_images/Opensource.svg [new file with mode: 0644]
src_images/S.S.C.Napoli.svg [new file with mode: 0644]
src_images/ao2it.svg [new file with mode: 0644]
src_images/convert_all.sh [new file with mode: 0755]
src_images/raster/Adafuit.png [new file with mode: 0644]
src_images/raster/Debian.png [new file with mode: 0644]
src_images/raster/Firefox.png [new file with mode: 0644]
src_images/raster/JMPrope.png [new file with mode: 0644]
src_images/raster/Openhardware.png [new file with mode: 0644]
src_images/raster/Opensource.png [new file with mode: 0644]
src_images/raster/S.S.C.Napoli.png [new file with mode: 0644]
src_images/raster/ao2it.png [new file with mode: 0644]
src_images/raster_post-processed/Adafuit.png [new file with mode: 0644]
src_images/raster_post-processed/Debian.png [new file with mode: 0644]
src_images/raster_post-processed/Firefox.png [new file with mode: 0644]
src_images/raster_post-processed/JMPrope.png [new file with mode: 0644]
src_images/raster_post-processed/Openhardware.png [new file with mode: 0644]
src_images/raster_post-processed/Opensource.png [new file with mode: 0644]
src_images/raster_post-processed/S.S.C.Napoli.png [new file with mode: 0644]
src_images/raster_post-processed/ao2.png [new file with mode: 0644]
src_images/raster_post-processed/ao2it.png [new file with mode: 0644]
tools/Makefile [new file with mode: 0644]
tools/convert_to_RLE_animation.py [new file with mode: 0755]
tools/depolar_resample_IMAGEMAGICK.sh [new file with mode: 0755]
tools/depolar_resample_PIL.py [new file with mode: 0755]
tools/polar_grid.py [new file with mode: 0755]

diff --git a/.gitignore b/.gitignore
new file mode 100644 (file)
index 0000000..0d20b64
--- /dev/null
@@ -0,0 +1 @@
+*.pyc
diff --git a/CanvasFrame.py b/CanvasFrame.py
new file mode 100755 (executable)
index 0000000..9822c4d
--- /dev/null
@@ -0,0 +1,295 @@
+#!/usr/bin/env python
+#
+# Copyright (C) 2014  Antonio Ospite <ao2@ao2.it>
+#
+# This program is free software: you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation, either version 3 of the License, or
+# (at your option) any later version.
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with this program.  If not, see <http://www.gnu.org/licenses/>.
+
+import wx
+from wx.lib.pubsub import Publisher as pub
+from wx.lib.wordwrap import wordwrap
+
+import CanvasModel
+import CanvasView
+
+ICON_FILE = "res/ao2.ico"
+
+IMAGE_WIDTH = 101
+IMAGE_HEIGHT = 30
+INTERNAL_RADIUS = 2
+
+
+class CanvasFrame(wx.Frame):
+    def __init__(self, *args, **kwargs):
+        base_image = kwargs.pop('base_image', None)
+        wx.Frame.__init__(self, *args, **kwargs)
+
+        # Set up a sizer BEFORE every other action, in order to prevent any
+        # weird side effects; for instance self.SetToolBar() seems to resize
+        # child windows...
+        vsizer = wx.BoxSizer(orient=wx.VERTICAL)
+        self.SetSizer(vsizer)
+
+        # Instantiate the Model and set up the view
+        self.model = CanvasModel.Canvas(IMAGE_WIDTH, IMAGE_HEIGHT,
+                                        INTERNAL_RADIUS)
+
+        self.view = CanvasView.CanvasView(self, model=self.model,
+                                          base_image=base_image)
+        vsizer.Add(self.view, 0, wx.SHAPED)
+
+        icon = wx.Icon(ICON_FILE, wx.BITMAP_TYPE_ICO)
+        self.SetIcon(icon)
+
+        # Set up the menu bar
+        menu_bar = self._BuildMenu()
+        self.SetMenuBar(menu_bar)
+
+        # Tool bar
+        tool_bar = self._BuildTools()
+        self.SetToolBar(tool_bar)
+
+        # Status bar
+        status_bar = wx.StatusBar(self)
+        status_bar.SetWindowStyle(status_bar.GetWindowStyle() ^ wx.ST_SIZEGRIP)
+        status_bar.SetFieldsCount(3)
+        self.SetStatusBar(status_bar)
+
+        # View callbacks
+        pub.subscribe(self.UpdateStatusBar, "NEW PIXEL")
+        pub.subscribe(self.UpdateView, "NEW PIXEL")
+
+        # Controller Methods
+        self.view.Bind(wx.EVT_LEFT_DOWN, self.OnLeftDown)
+        self.view.Bind(wx.EVT_LEFT_UP, self.OnLeftUp)
+        self.view.Bind(wx.EVT_MOTION, self.OnMouseMotion)
+
+        # other Events
+        self.Bind(wx.EVT_CLOSE, self.OnQuit)
+
+        # The frame gets resized to fit all its elements
+        self.GetSizer().Fit(self)
+        # and centered on screen
+        self.Center(wx.BOTH | wx.CENTER_ON_SCREEN)
+
+    def _BuildTools(self):
+        tool_bar = wx.ToolBar(self, style=wx.TB_HORZ_LAYOUT|wx.TB_TEXT)
+
+        color_picker_label = wx.StaticText(tool_bar, label=" Color picker ")
+        tool_bar.AddControl(color_picker_label)
+
+        self.color = wx.WHITE
+
+        ID_COLOR_PICKER = wx.NewId()
+        color_picker = wx.ColourPickerCtrl(tool_bar, ID_COLOR_PICKER, self.color,
+                                           size=wx.Size(32,32),
+                                           name="Color Picker")
+        tool_bar.AddControl(color_picker)
+        wx.EVT_COLOURPICKER_CHANGED(self, ID_COLOR_PICKER, self.OnPickColor)
+
+        tool_bar.AddSeparator()
+
+        ID_SHOW_GRID = wx.NewId()
+        show_grid_checkbox = wx.CheckBox(tool_bar, ID_SHOW_GRID, label="Show grid", style=wx.ALIGN_RIGHT)
+        show_grid_checkbox.SetValue(self.view.draw_grid)
+        tool_bar.AddControl(show_grid_checkbox)
+        wx.EVT_CHECKBOX(tool_bar, ID_SHOW_GRID, self.OnShowGrid)
+
+        tool_bar.Realize()
+
+        return tool_bar
+
+    def _BuildMenu(self):
+        menu_bar = wx.MenuBar()
+
+        # File menu
+        file_menu = wx.Menu()
+        menu_bar.Append(file_menu, '&File')
+
+        ID_NEW_BITMAP = wx.ID_NEW
+        file_menu.Append(ID_NEW_BITMAP, 'New Bitmap', 'Start a new bitmap')
+        wx.EVT_MENU(self, ID_NEW_BITMAP, self.OnNewBitmap)
+
+        ID_LOAD_BITMAP = wx.ID_OPEN
+        file_menu.Append(ID_LOAD_BITMAP, 'Load Bitmap', 'Load a bitmap')
+        wx.EVT_MENU(self, ID_LOAD_BITMAP, self.OnLoadBitmap)
+
+        ID_SAVE_BITMAP = wx.ID_SAVE
+        file_menu.Append(ID_SAVE_BITMAP, 'Save Bitmap', 'Save a bitmap')
+        wx.EVT_MENU(self, ID_SAVE_BITMAP, self.OnSaveBitmap)
+
+        file_menu.AppendSeparator()
+
+        # Export sub-menu
+        export_menu = wx.Menu()
+        file_menu.AppendMenu(wx.ID_ANY, 'E&xport', export_menu)
+
+        ID_EXPORT_ANIMATION = wx.NewId()
+        export_menu.Append(ID_EXPORT_ANIMATION, 'Export animation', 'Export as animation')
+        wx.EVT_MENU(self, ID_EXPORT_ANIMATION, self.OnExportAnimation)
+
+        ID_EXPORT_SNAPSHOT = wx.NewId()
+        export_menu.Append(ID_EXPORT_SNAPSHOT, 'Export snapshot',
+                          'Export a snapshot of the current canvas')
+        wx.EVT_MENU(self, ID_EXPORT_SNAPSHOT, self.OnExportSnapshot)
+
+        # Last item of file_menu
+        ID_EXIT_MENUITEM = wx.ID_EXIT
+        file_menu.Append(ID_EXIT_MENUITEM, 'E&xit\tAlt-X', 'Exit the program')
+        wx.EVT_MENU(self, ID_EXIT_MENUITEM, self.OnQuit)
+
+        # Help menu
+        help_menu = wx.Menu()
+        menu_bar.Append(help_menu, '&Help')
+
+        ID_HELP_MENUITEM = wx.ID_HELP
+        help_menu.Append(ID_HELP_MENUITEM, 'About\tAlt-A', 'Show Informations')
+        wx.EVT_MENU(self, ID_HELP_MENUITEM, self.ShowAboutDialog)
+
+        return menu_bar
+
+    def addPixel(self, event):
+        x, y = event.GetLogicalPosition(self.view.dc)
+        self.SetStatusText("Last Click at %-3d,%-3d" % (x, y), 0)
+
+        r, theta = CanvasView.cartesian2polar(x, y, self.view.offset_angle)
+        self.model.setPixelColor(r, theta, self.color)
+
+    def OnNewBitmap(self, event):
+        if self.ShowConfirmationDialog() == wx.ID_YES:
+            self.model.Reset()
+            self.view.drawAllPixels()
+            self.view.Refresh()
+
+    def OnLoadBitmap(self, event):
+        dialog = wx.FileDialog(self, "Load bitmap", "", "",
+                               "PNG files (*.png)|*.png",
+                               wx.FD_OPEN | wx.FD_FILE_MUST_EXIST)
+        ret = dialog.ShowModal()
+        file_path = dialog.GetPath()
+        dialog.Destroy()
+
+        if ret == wx.ID_CANCEL:
+            return
+
+        if self.view.loadImage(file_path):
+            self.view.drawAllPixels()
+            self.view.Refresh()
+        else:
+            self.ShowErrorDialog("Image is not %dx%d" % (self.model.width,
+                                                         self.model.height))
+
+    def OnSaveBitmap(self, event):
+        dialog = wx.FileDialog(self, "Save bitmap", "", "",
+                               "PNG files (*.png)|*.png",
+                               wx.FD_SAVE | wx.FD_OVERWRITE_PROMPT)
+        ret = dialog.ShowModal()
+        file_path = dialog.GetPath()
+        dialog.Destroy()
+
+        if ret == wx.ID_CANCEL:
+            return
+
+        bitmap = wx.BitmapFromBuffer(self.model.width, self.model.height,
+                                     self.model.pixels_array)
+        bitmap.SaveFile(file_path, wx.BITMAP_TYPE_PNG)
+
+    def OnExportAnimation(self, event):
+        dialog = wx.FileDialog(self, "Save animation", "", "animation.h",
+                               "C header files (*.h)|*.h",
+                               wx.FD_SAVE | wx.FD_OVERWRITE_PROMPT)
+        ret = dialog.ShowModal()
+        file_path = dialog.GetPath()
+        dialog.Destroy()
+
+        if ret == wx.ID_CANCEL:
+            return
+
+        self.model.saveAsAnimation(file_path)
+
+    def OnExportSnapshot(self, event):
+        dialog = wx.FileDialog(self, "Take snapwhot", "", "snapshot.png",
+                               "PNG files (*.png)|*.png",
+                               wx.FD_SAVE | wx.FD_OVERWRITE_PROMPT)
+        ret = dialog.ShowModal()
+        file_path = dialog.GetPath()
+        dialog.Destroy()
+
+        if ret == wx.ID_CANCEL:
+            return
+
+        self.view.pixels_buffer.SaveFile(file_path, wx.BITMAP_TYPE_PNG)
+
+    def OnQuit(self, event):
+        if self.ShowConfirmationDialog("Exit the program?") == wx.ID_YES:
+            self.Destroy()
+
+    def OnPickColor(self, event):
+        self.color = event.Colour.asTuple()
+
+    def OnShowGrid(self, event):
+        self.view.draw_grid = event.Checked()
+        self.view.Refresh()
+
+    def OnLeftDown(self, event):
+        self.addPixel(event)
+        self.view.CaptureMouse()
+
+    def OnLeftUp(self, event):
+        self.view.ReleaseMouse()
+
+    def OnMouseMotion(self, event):
+        if event.Dragging() and event.LeftIsDown():
+            self.addPixel(event)
+
+    def UpdateStatusBar(self, event):
+        if self.model.last_pixel:
+            x, y = self.model.last_pixel
+            r, theta = self.model.toPolar(x, y)
+            self.SetStatusText("r: %-4.1f theta: %-4.1f" % (r, theta), 1)
+            self.SetStatusText("x: %-2d y: %-2d" % (x, y), 2)
+
+    def UpdateView(self, event):
+        if self.model.last_pixel:
+            self.view.drawPixel(self.model.last_pixel)
+            self.view.Refresh()
+
+    def ShowConfirmationDialog(self, message=None):
+        if not message:
+            message = "With this operation you can loose your data.\n\n"
+            message += "Are you really sure you want to proceed?"
+
+        dialog = wx.MessageDialog(self, message, "Warning!",
+                                  style=wx.YES_NO | wx.ICON_QUESTION)
+        ret = dialog.ShowModal()
+        dialog.Destroy()
+
+        return ret
+
+    def ShowErrorDialog(self, message):
+        dialog = wx.MessageDialog(self, message, "Error!",
+                                  style=wx.OK | wx.ICON_ERROR)
+        ret = dialog.ShowModal()
+        dialog.Destroy()
+
+    def ShowAboutDialog(self, event):
+        info = wx.AboutDialogInfo()
+        info.Name = "PoPiPaint - Polar Pixel Painter"
+        info.Copyright = "(C) 2014 Antonio Ospite"
+        text = "A prototype program for the JMPrope project,"
+        text += "the programmable jump rope with LEDs."
+        info.Description = wordwrap(text, 350, wx.ClientDC(self))
+        info.WebSite = ("http://ao2.it", "http://ao2.it")
+        info.Developers = ["Antonio Ospite"]
+        info.License = "GNU/GPLv3"
+        wx.AboutBox(info)
diff --git a/CanvasModel.py b/CanvasModel.py
new file mode 100755 (executable)
index 0000000..49f9f64
--- /dev/null
@@ -0,0 +1,126 @@
+#!/usr/bin/env python
+#
+# Copyright (C) 2014  Antonio Ospite <ao2@ao2.it>
+#
+# This program is free software: you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation, either version 3 of the License, or
+# (at your option) any later version.
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with this program.  If not, see <http://www.gnu.org/licenses/>.
+
+import sys
+from array import array
+import wx
+from wx.lib.pubsub import Publisher as pub
+
+
+class Canvas:
+
+    def __init__(self, width, height, internal_radius, scale=10):
+        self.width = width
+        self.height = height
+        self.scale = scale
+
+        self.internal_radius = float(internal_radius * scale)
+        self.external_radius = float(height + internal_radius) * scale
+
+        self.radius = float(height * scale)
+
+        self.ring_width = self.radius / height
+        self.sector_width = 360. / width
+
+        self.Reset()
+
+    def Reset(self):
+        self.pixels_array = array('B', [0] * self.width * self.height * 3)
+        self.last_pixel = None
+
+    def toCartesian(self, r, theta):
+        x = int(theta / self.sector_width)
+        y = int(r / self.ring_width) - int(self.internal_radius / self.scale)
+        return (x, y)
+
+    def toPolar(self, x, y):
+        r = y * self.ring_width + self.internal_radius
+        theta = x * self.sector_width
+        return (r, theta)
+
+    def setPixelColor(self, r, theta, color):
+        if r < self.internal_radius or r > self.external_radius:
+            print "invalid coordinates (r: %f)" % r
+            return
+
+        x, y = self.toCartesian(r, theta)
+
+        self.last_pixel = (x, y)
+
+        offset = y * self.width * 3 + x * 3
+        self.pixels_array[offset + 0] = color[0]
+        self.pixels_array[offset + 1] = color[1]
+        self.pixels_array[offset + 2] = color[2]
+
+        # now tell anyone who cares that the value has been changed
+        pub.sendMessage("NEW PIXEL", self.last_pixel)
+
+    def getPixelColor(self, x, y):
+        offset = y * self.width * 3 + x * 3
+        color = [self.pixels_array[offset + i] for i in range(0, 3)]
+        return tuple(color)
+
+    def getColors(self):
+        colors = set()
+        for x in range(self.width):
+            for y in range(self.height):
+                colors.add(self.getPixelColor(x, y))
+        return list(colors)
+
+    # The code below has been copied from the C implementation in PatternPaint:
+    # https://github.com/Blinkinlabs/PatternPaint
+    def saveAsAnimation(self, filename):
+        output_file = open(filename, "w")
+
+        colors = self.getColors()
+
+        output_file.write("const PROGMEM prog_uint8_t animationData[]  = {\n")
+
+        output_file.write("// Length of the color table - 1, in bytes. length: 1 byte\n")
+        output_file.write("   %d,\n" % (len(colors) - 1))
+
+        output_file.write("// Color table section. Each entry is 3 bytes. length: %d bytes\n" % (len(colors) * 3))
+
+        color_map = {}
+        for i, c in enumerate(colors):
+            output_file.write(" %3d, %3d, %3d,\n" % (c[0], c[1], c[2]))
+            color_map[c] = i
+
+        output_file.write("// Pixel runs section. Each pixel run is 2 bytes. length: -1 bytes\n")
+
+        for x in range(self.width):
+            run_count = 0
+            for y in range(self.height):
+                new_color = color_map[self.getPixelColor(x, y)]
+                if run_count == 0:
+                    current_color = new_color
+
+                if current_color != new_color:
+                    output_file.write(" %3d, %3d,\n" % (run_count, current_color))
+                    run_count = 1
+                    current_color = new_color
+                else:
+                    run_count += 1
+
+            output_file.write(" %3d, %3d,\n" % (run_count, current_color))
+
+        output_file.write("};\n\n")
+
+        output_file.write("#define NUM_FRAMES %d\n" % self.width)
+        output_file.write("#define NUM_LEDS %d\n" % self.height)
+        output_file.write("Animation animation(NUM_FRAMES, animationData, NUM_LEDS);\n")
+        output_file.close()
diff --git a/CanvasView.py b/CanvasView.py
new file mode 100755 (executable)
index 0000000..28a7d0d
--- /dev/null
@@ -0,0 +1,258 @@
+#!/usr/bin/env python
+#
+# Copyright (C) 2014  Antonio Ospite <ao2@ao2.it>
+#
+# This program is free software: you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation, either version 3 of the License, or
+# (at your option) any later version.
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with this program.  If not, see <http://www.gnu.org/licenses/>.
+
+import wx
+
+from math import *
+
+import CanvasModel
+
+
+# Polar coordinate system:
+# http://en.wikipedia.org/wiki/Polar_coordinate_system
+# (r, theta)
+
+def cartesian2polar(x, y, offset_angle=0):
+    """return the polar coordinates relative to a circle
+    centered in (0,0) going counterclockwise.
+
+    returned angle is in degrees
+    """
+    r = sqrt(x*x + y*y)
+    theta = atan2(float(y), float(x)) + offset_angle
+
+    # report theta in the [0,360) range
+    theta = degrees(theta)
+    if theta < 0:
+        theta = 360 + theta
+
+    return r, theta
+
+
+def polar2cartesian(r, theta, offset_angle=0):
+    """
+    theta expected in degrees
+    """
+    theta = radians(theta) - offset_angle
+    x = r * cos(theta)
+    y = r * sin(theta)
+
+    return x, y
+
+
+class CanvasView(wx.Window):
+    def __init__(self, *args, **kwargs):
+        self.model = kwargs.pop('model')
+        base_image = kwargs.pop('base_image', None)
+        wx.Window.__init__(self, *args, **kwargs)
+
+        # This eliminates flickering on Windows
+        self.SetBackgroundStyle(wx.BG_STYLE_CUSTOM)
+
+        w = h = int(self.model.external_radius * 2)
+
+        self.offset_angle = -pi/2.
+
+        self.SetSize((w, h))
+
+        self.SetFocus()
+
+        self.Bind(wx.EVT_PAINT, self.OnPaint)
+
+        # make a DC to draw into...
+        self.buffer = wx.EmptyBitmap(w, h)
+        self.dc = wx.BufferedDC(None, self.buffer)
+
+        # Because we want the position of the mouse pointer
+        # relative to the center of the canvas
+        self.dc.SetDeviceOrigin(w/2., h/2.)
+
+        self.draw_grid = True
+
+        if base_image:
+            self.loadImage(base_image)
+
+        # FIXME: fix the file path.
+        #
+        # Actually it'd be even better to make the grid drawn to a MemoryDC with
+        # drawGrid(), but this is not working with python-wxgtk2.8 because there
+        # are bugs regarding bitmaps with alpha channels and MemoryDC
+        self.grid_buffer = self.loadGrid("res/grid.png")
+
+        self.pixels_buffer = wx.EmptyBitmap(w, h, depth=32)
+        self.drawAllPixels()
+
+    def setPixelCoordinates(self, gc):
+        w, h = self.GetSize()
+        gc.Translate(w/2., h/2.)
+        gc.Rotate(-self.offset_angle)
+
+    def MakePixelsGC(self, dc_buffer):
+        dc = wx.MemoryDC(dc_buffer)
+        gc = wx.GraphicsContext.Create(dc)
+        self.setPixelCoordinates(gc)
+        return gc
+
+    def loadGrid(self, file_path):
+        image = wx.Image(file_path)
+
+        im_w, im_h = image.GetSize()
+        w, h = self.GetSize()
+        if im_w != w or im_h != h:
+            return None
+
+        return wx.BitmapFromImage(image)
+
+    def loadImage(self, file_path):
+        image = wx.Image(file_path)
+
+        w, h = image.GetSize()
+        if w != self.model.width or h != self.model.height:
+            return False
+
+        bitmap = wx.BitmapFromImage(image)
+        bitmap.CopyToBuffer(self.model.pixels_array)
+        return True
+
+    def drawGrid(self, gc):
+        pen_size = 1
+        gc.SetPen(wx.Pen('#555555', pen_size))
+        gc.SetBrush(wx.Brush(wx.BLACK, wx.TRANSPARENT))
+
+        for i in range(0, self.model.height):
+            r, theta = self.model.toPolar(0, i)
+            path = gc.CreatePath()
+            path.AddCircle(0, 0, r)
+            gc.DrawPath(path)
+
+        # draw the outmost circle
+        r, theta = self.model.toPolar(0, self.model.height)
+        path = gc.CreatePath()
+        path.AddCircle(0, 0, r - pen_size)
+        gc.DrawPath(path)
+
+        min_r = self.model.internal_radius
+        max_r = self.model.external_radius - pen_size
+        for i in range(0, self.model.width):
+            r, theta = self.model.toPolar(i, 0)
+            x1, y1 = polar2cartesian(min_r, theta)
+            x2, y2 = polar2cartesian(max_r, theta)
+
+            path = gc.CreatePath()
+            path.MoveToPoint(x1, y1)
+            path.AddLineToPoint(x2, y2)
+            gc.DrawPath(path)
+
+    def _drawPixel(self, gc, x, y, color=None):
+        pen_size = 1
+        if color:
+            gc.SetPen(wx.Pen(color, pen_size))
+            gc.SetBrush(wx.Brush(color))
+        else:
+            gc.SetPen(wx.Pen(wx.RED, pen_size))
+            gc.SetBrush(wx.Brush(wx.BLACK, wx.TRANSPARENT))
+
+        min_r, theta1 = self.model.toPolar(x, y)
+
+        max_r = min_r + self.model.ring_width
+        
+        # prevent the outmost circle to overflow the canvas
+        if y == self.model.height - 1:
+            max_r -= pen_size
+
+        theta2 = theta1 + self.model.sector_width
+
+        # Draw the circular arc
+        path = gc.CreatePath()
+        path.AddArc(0, 0, min_r, radians(theta1), radians(theta2), True)
+        path.AddLineToPoint(polar2cartesian(max_r, theta2))
+        path.AddArc(0, 0, max_r, radians(theta2), radians(theta1), False)
+        path.AddLineToPoint(polar2cartesian(min_r, theta1))
+        path.CloseSubpath()
+        gc.DrawPath(path)
+
+    def drawAllPixels(self):
+        gc = self.MakePixelsGC(self.pixels_buffer)
+        for y in range(0, self.model.height):
+            for x in range(0, self.model.width):
+                color = self.model.getPixelColor(x, y)
+                self._drawPixel(gc, x, y, color=color)
+
+    def drawPixel(self, pixel):
+        if not pixel:
+            return
+
+        x, y = pixel
+
+        gc = self.MakePixelsGC(self.pixels_buffer)
+        color = self.model.getPixelColor(x, y)
+        self._drawPixel(gc, x, y, color)
+
+    def drawPixelMarker(self, gc, pixel):
+        if not pixel:
+            return
+
+        x, y = pixel
+        self._drawPixel(gc, x, y)
+
+    def drawImage(self, gc):
+        gc.SetPen(wx.Pen('#CCCCCC', 1))
+        gc.SetBrush(wx.Brush(wx.BLACK, wx.TRANSPARENT))
+
+        w, h = self.GetSize()
+        gc.DrawRectangle(w - self.model.width, 0,
+                         self.model.width, self.model.height)
+
+        bitmap = wx.BitmapFromBuffer(self.model.width, self.model.height,
+                                     self.model.pixels_array)
+        gc.DrawBitmap(bitmap, w - self.model.width, 0,
+                      self.model.width, self.model.height)
+
+    def drawTag(self, gc):
+        font = wx.Font(12, wx.FONTFAMILY_MODERN, wx.FONTSTYLE_NORMAL,
+                       wx.FONTWEIGHT_BOLD)
+        gc.SetFont(font, "#0099FF")
+        w, h = self.GetSize()
+        text = "ao2.it"
+        twidth, theight, descent, externalLeading = gc.GetFullTextExtent(text)
+        gc.DrawText(text, w - twidth - 4, h - theight - 2)
+
+    def OnPaint(self, event):
+        # make a DC to draw into...
+        if 'wxMSW' in wx.PlatformInfo:
+            dc = wx.BufferedPaintDC(self)
+        else:
+            dc = wx.PaintDC(self)
+
+        dc.SetBackground(wx.Brush(wx.BLACK))
+        dc.Clear()
+
+        gc = wx.GraphicsContext.Create(dc)
+        w, h = self.GetSize()
+
+        gc.DrawBitmap(self.pixels_buffer, 0, 0, w, h)
+
+        if self.draw_grid:
+            gc.DrawBitmap(self.grid_buffer, 0, 0, w, h)
+
+        gc.PushState()
+        self.setPixelCoordinates(gc)
+        self.drawPixelMarker(gc, self.model.last_pixel)
+        gc.PopState()
+
+        self.drawImage(gc)
+        self.drawTag(gc)
diff --git a/Makefile b/Makefile
new file mode 100644 (file)
index 0000000..558d4d4
--- /dev/null
+++ b/Makefile
@@ -0,0 +1,4 @@
+all:
+
+clean:
+       rm -f *.pyc *~
diff --git a/PoPiPaint.py b/PoPiPaint.py
new file mode 100755 (executable)
index 0000000..e6929d9
--- /dev/null
@@ -0,0 +1,46 @@
+#!/usr/bin/env python
+#
+# PoPiPaint - Polar Pixel Painter, a tool to draw polar patterns
+#
+# Copyright (C) 2014  Antonio Ospite <ao2@ao2.it>
+#
+# This program is free software: you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation, either version 3 of the License, or
+# (at your option) any later version.
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with this program.  If not, see <http://www.gnu.org/licenses/>.
+
+import sys
+import wx
+import CanvasFrame
+
+
+class PoPiPaApp(wx.PySimpleApp):
+    def __init__(self, *args, **kwargs):
+        self.base_image = kwargs.pop('base_image', None)
+        wx.PySimpleApp.__init__(self, *args, **kwargs)
+
+    def OnInit(self):
+        # We do not want a resizeable frame!
+        framestyle = wx.DEFAULT_FRAME_STYLE & \
+            ~(wx.RESIZE_BORDER | wx.MAXIMIZE_BOX)
+        frame = CanvasFrame.CanvasFrame(None, title="PoPiPa", style=framestyle,
+                                        base_image=self.base_image)
+        frame.Show()
+        return True
+
+
+if __name__ == "__main__":
+    if len(sys.argv) > 1:
+        app = PoPiPaApp(base_image=sys.argv[1])
+    else:
+        app = PoPiPaApp()
+
+    app.MainLoop()
diff --git a/README b/README
new file mode 100644 (file)
index 0000000..4f85e51
--- /dev/null
+++ b/README
@@ -0,0 +1,4 @@
+PoPiPaint is the Polar Pixel Painter used to retouch and export polar patterns
+for animating a JMPrope, the programmable jump rope.
+
+See the file TUTORIAL for a possible workflow for creating polar patterns.
diff --git a/TODO b/TODO
new file mode 100644 (file)
index 0000000..b859c7f
--- /dev/null
+++ b/TODO
@@ -0,0 +1,4 @@
+Add other tools:
+  - Radial symmetry drawing tool (according to a given symmetry order)
+  - Fill ring, with the current color
+  - Fill radius, with the current color
diff --git a/TUTORIAL b/TUTORIAL
new file mode 100644 (file)
index 0000000..d8c8763
--- /dev/null
+++ b/TUTORIAL
@@ -0,0 +1,26 @@
+Short tutorial for producing polar patterns:
+
+  0. Draw an image into a circle. Examples done in Inkscape are in src_images/
+
+  1. Export the image as a 640x640 bitmap, from command line:
+     $ inkscape -f svgfile.svg -w <newwidth> -h <newheight> -e file.png
+
+  2. Open the exported image in GIMP (examples are in src_images/raster) and
+     reduce the colors (e.g. to 4 colors). The Posterize tool may be used to
+     reduce the colors. Consider also increasing the contrast.
+
+     Examples of color reduced images are in src_images/raster_post-processed
+
+  3. Create the polar pixel map using either:
+      tools/depolar_resample_IMAGEMAGICK.sh
+    or
+      tools/depolar_resample_PIL.py
+
+  4. Some rough retouching on the polar pattern can be done in GIMP:
+      - A full circle is represented by a horizontal line;
+      - A radius is represented by a vertical line.
+
+  5. Do the final touches to the polar pattern with PoPiPaint>
+     Examples of fine tuned polar patterns are in patterns/
+
+  6. Export the pattern as animation and upload it to the JMPrope.
diff --git a/patterns/Adafuit-depolar.png b/patterns/Adafuit-depolar.png
new file mode 100644 (file)
index 0000000..5caa748
Binary files /dev/null and b/patterns/Adafuit-depolar.png differ
diff --git a/patterns/Debian-depolar.png b/patterns/Debian-depolar.png
new file mode 100644 (file)
index 0000000..7ef260f
Binary files /dev/null and b/patterns/Debian-depolar.png differ
diff --git a/patterns/Firefox-depolar.png b/patterns/Firefox-depolar.png
new file mode 100644 (file)
index 0000000..b5dbea2
Binary files /dev/null and b/patterns/Firefox-depolar.png differ
diff --git a/patterns/JMPrope-depolar.png b/patterns/JMPrope-depolar.png
new file mode 100644 (file)
index 0000000..8b26655
Binary files /dev/null and b/patterns/JMPrope-depolar.png differ
diff --git a/patterns/Openhardware-depolar.png b/patterns/Openhardware-depolar.png
new file mode 100644 (file)
index 0000000..4a9f215
Binary files /dev/null and b/patterns/Openhardware-depolar.png differ
diff --git a/patterns/Opensource-depolar.png b/patterns/Opensource-depolar.png
new file mode 100644 (file)
index 0000000..bfe33ae
Binary files /dev/null and b/patterns/Opensource-depolar.png differ
diff --git a/patterns/S.S.C.Napoli-depolar.png b/patterns/S.S.C.Napoli-depolar.png
new file mode 100644 (file)
index 0000000..afda197
Binary files /dev/null and b/patterns/S.S.C.Napoli-depolar.png differ
diff --git a/patterns/ao2-depolar.png b/patterns/ao2-depolar.png
new file mode 100644 (file)
index 0000000..63cce4c
Binary files /dev/null and b/patterns/ao2-depolar.png differ
diff --git a/patterns/ao2it-depolar.png b/patterns/ao2it-depolar.png
new file mode 100644 (file)
index 0000000..52de762
Binary files /dev/null and b/patterns/ao2it-depolar.png differ
diff --git a/res/ao2.ico b/res/ao2.ico
new file mode 100644 (file)
index 0000000..d6cb550
Binary files /dev/null and b/res/ao2.ico differ
diff --git a/res/grid.png b/res/grid.png
new file mode 100644 (file)
index 0000000..ff5ba69
Binary files /dev/null and b/res/grid.png differ
diff --git a/src_images/Adafuit.svg b/src_images/Adafuit.svg
new file mode 100644 (file)
index 0000000..f6cb1a4
--- /dev/null
@@ -0,0 +1,131 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+
+<svg
+   xmlns:dc="http://purl.org/dc/elements/1.1/"
+   xmlns:cc="http://creativecommons.org/ns#"
+   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+   xmlns:svg="http://www.w3.org/2000/svg"
+   xmlns="http://www.w3.org/2000/svg"
+   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+   id="svg2"
+   version="1.1"
+   inkscape:version="0.48.4 r9939"
+   width="208.68761"
+   height="208.68761"
+   sodipodi:docname="Adafuit_logo.svg"
+   inkscape:export-filename="/home/ao2/WIP/twinklerope/PoPiPaint/src_images/Adafuit_logo.png"
+   inkscape:export-xdpi="276.01065"
+   inkscape:export-ydpi="276.01065">
+  <metadata
+     id="metadata8">
+    <rdf:RDF>
+      <cc:Work
+         rdf:about="">
+        <dc:format>image/svg+xml</dc:format>
+        <dc:type
+           rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
+        <dc:title></dc:title>
+      </cc:Work>
+    </rdf:RDF>
+  </metadata>
+  <defs
+     id="defs6" />
+  <sodipodi:namedview
+     pagecolor="#ffffff"
+     bordercolor="#666666"
+     borderopacity="1"
+     objecttolerance="10"
+     gridtolerance="10"
+     guidetolerance="10"
+     inkscape:pageopacity="0"
+     inkscape:pageshadow="2"
+     inkscape:window-width="1152"
+     inkscape:window-height="756"
+     id="namedview4"
+     showgrid="false"
+     inkscape:zoom="2.5828079"
+     inkscape:cx="104.3438"
+     inkscape:cy="104.3438"
+     inkscape:window-x="0"
+     inkscape:window-y="29"
+     inkscape:window-maximized="1"
+     inkscape:current-layer="svg2"
+     showguides="true"
+     inkscape:guide-bbox="true"
+     fit-margin-top="0"
+     fit-margin-left="0"
+     fit-margin-right="0"
+     fit-margin-bottom="0"
+     inkscape:snap-object-midpoints="true">
+    <sodipodi:guide
+       orientation="1,0"
+       position="104.3438,104.3438"
+       id="guide4528" />
+    <sodipodi:guide
+       orientation="0,1"
+       position="104.34378,208.6876"
+       id="guide4541" />
+  </sodipodi:namedview>
+  <g
+     id="g4558"
+     transform="matrix(0.98768834,0.15643447,-0.15643447,0.98768834,17.607612,-15.038321)">
+    <path
+       transform="translate(143.94178,-26.09507)"
+       d="m 64.745823,130.43887 c 0,57.62749 -46.716312,104.34381 -104.343803,104.34381 -57.627492,0 -104.3438,-46.71632 -104.3438,-104.34381 0,-57.627488 46.716308,-104.3438 104.3438,-104.3438 57.627491,0 104.343803,46.716312 104.343803,104.3438 z"
+       sodipodi:ry="104.3438"
+       sodipodi:rx="104.3438"
+       sodipodi:cy="130.43887"
+       sodipodi:cx="-39.59798"
+       id="path4556"
+       style="color:#000000;fill:#000000;fill-opacity:0;fill-rule:nonzero;stroke:none;stroke-width:1.5;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="arc" />
+    <g
+       transform="translate(23.843799,-7.1561984)"
+       inkscape:transform-center-y="-9.0722732"
+       inkscape:tile-y0="7.15625"
+       inkscape:tile-x0="51.708907"
+       inkscape:tile-h="104.34375"
+       inkscape:tile-w="57.582186"
+       inkscape:tile-cy="111.5"
+       inkscape:tile-cx="80.5"
+       id="g3830">
+      <path
+         sodipodi:nodetypes="sscssscssscssscssscssssssscsssscsssssscsssscssssss"
+         inkscape:connector-curvature="0"
+         id="use3828"
+         d="M 80.499985,7.1562035 C 70.341432,7.1562035 70.222993,20.045779 62.90625,32.71875 55.865408,44.91385 45.876835,59.367211 56.09375,77.875 41.649,62.438933 24.773964,67.509756 11,70.4375 -3.3137096,73.479973 -15.610835,69.588642 -18.75,79.25 c -3.139165,9.661358 9.0832862,13.750201 18.875,24.625 9.4331846,10.47661 20.131812,24.48059 40.9375,20.4375 -19.211642,8.95791 -19.620062,26.57256 -21.09375,40.59375 -1.529616,14.55332 -9.030942,25.02895 -0.8125,31 8.218442,5.97105 15.912895,-4.39177 29.28125,-10.34375 12.860558,-5.72589 29.442258,-11.5363 32.0625,-32.5 2.620242,20.9637 19.201942,26.77411 32.0625,32.5 13.36835,5.95198 21.06281,16.3148 29.28125,10.34375 8.21844,-5.97105 0.71712,-16.44668 -0.8125,-31 -1.47369,-14.02119 -1.88211,-31.63584 -21.09375,-40.59375 20.80569,4.04309 31.50432,-9.96089 40.9375,-20.4375 C 170.66671,93.000201 182.88917,88.911358 179.75,79.25 176.61083,69.588642 164.31371,73.479973 150,70.4375 136.22604,67.509756 119.351,62.438933 104.90625,77.875 115.12316,59.367211 105.13459,44.91385 98.09375,32.71875 90.777007,20.045779 90.658538,7.1562035 80.499985,7.1562035 z M 80.5,73.59375 c 3.147302,0 5.6875,6.423046 5.6875,14.34375 0,7.920704 -2.540198,14.34375 -5.6875,14.34375 -3.147302,0 -5.6875,-6.423046 -5.6875,-14.34375 0,-7.920704 2.540198,-14.34375 5.6875,-14.34375 z m -29.71875,23.625 c 2.608647,-0.0047 5.766796,0.522911 9.0625,1.59375 7.533037,2.44763 12.84757,6.85049 11.875,9.84375 -0.97257,2.99326 -7.841963,3.41638 -15.375,0.96875 -7.533037,-2.44763 -12.87882,-6.85049 -11.90625,-9.84375 0.547071,-1.68371 2.989775,-2.556517 6.34375,-2.5625 z m 59.4375,0 c 3.35397,0.006 5.79668,0.87879 6.34375,2.5625 0.97257,2.99326 -4.37321,7.39612 -11.90625,9.84375 -7.533037,2.44763 -14.40243,2.02451 -15.375,-0.96875 -0.97257,-2.99326 4.341963,-7.39612 11.875,-9.84375 3.2957,-1.070839 6.45385,-1.598403 9.0625,-1.59375 z M 73.34375,118.5 c 0.678946,-0.0248 1.272551,0.12189 1.75,0.46875 2.546401,1.84993 0.811923,8.52952 -3.84375,14.9375 -4.655673,6.40798 -10.485029,10.09994 -13.03125,8.25 -2.546221,-1.84994 -0.811923,-8.52952 3.84375,-14.9375 3.782734,-5.20649 8.339149,-8.6112 11.28125,-8.71875 z m 14.3125,0 c 2.942095,0.10755 7.498516,3.51226 11.28125,8.71875 4.65567,6.40798 6.38997,13.08756 3.84375,14.9375 -2.54622,1.84994 -8.375577,-1.84202 -13.03125,-8.25 -4.655673,-6.40798 -6.389971,-13.08756 -3.84375,-14.9375 0.477416,-0.34686 1.071055,-0.49357 1.75,-0.46875 z"
+         style="fill:#f04b83;fill-opacity:1;stroke:none" />
+    </g>
+  </g>
+  <g
+     inkscape:transform-center-y="-11.925215"
+     inkscape:tile-y0="7.15625"
+     inkscape:tile-x0="51.708907"
+     id="use4456"
+     style="fill:#ff0000;stroke:#ff0000"
+     transform="matrix(0.30901699,0.95105652,-0.95105652,0.30901699,185.51072,-6.6716453)"
+     inkscape:transform-center-x="-47.997869" />
+  <g
+     inkscape:transform-center-y="-52.171875"
+     inkscape:tile-y0="7.15625"
+     inkscape:tile-x0="51.708907"
+     id="use4458"
+     style="fill:#ff0000;stroke:#ff0000"
+     transform="matrix(-0.80901699,0.58778525,-0.58778525,-0.80901699,235.00771,147.23248)" />
+  <g
+     inkscape:transform-center-y="-52.171875"
+     inkscape:tile-y0="7.15625"
+     inkscape:tile-x0="51.708907"
+     id="use4460"
+     style="fill:#ff0000;stroke:#ff0000"
+     transform="matrix(-0.80901699,-0.58778525,0.58778525,-0.80901699,103.93161,241.86591)" />
+  <g
+     inkscape:transform-center-y="-52.171875"
+     inkscape:tile-y0="7.15625"
+     inkscape:tile-x0="51.708907"
+     id="use4462"
+     style="fill:#ff0000;stroke:#ff0000"
+     transform="matrix(0.30901699,-0.95105652,0.95105652,0.30901699,-26.574871,146.44845)" />
+</svg>
diff --git a/src_images/Debian.svg b/src_images/Debian.svg
new file mode 100644 (file)
index 0000000..d0c81e2
--- /dev/null
@@ -0,0 +1,137 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Generator: Adobe Illustrator 10.0, SVG Export Plug-In . SVG Version: 3.0.0 Build 77)  -->
+
+<svg
+   xmlns:ns0="http://ns.adobe.com/SaveForWeb/1.0/"
+   xmlns:ns="http://ns.adobe.com/Variables/1.0/"
+   xmlns:i="http://ns.adobe.com/AdobeIllustrator/10.0/"
+   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"
+   i:viewOrigin="262 450"
+   i:rulerOrigin="0 0"
+   i:pageBounds="0 792 612 0"
+   width="109.98438"
+   height="109.98438"
+   viewBox="0 0 109.98438 109.98438"
+   overflow="visible"
+   enable-background="new 0 0 87.041 108.445"
+   xml:space="preserve"
+   id="svg2"
+   version="1.1"
+   inkscape:version="0.48.4 r9939"
+   sodipodi:docname="Debian-openlogo-nd.svg"
+   style="overflow:visible"
+   inkscape:export-filename="/home/ao2/WIP/twinklerope/PoPiPaint/src_images/Debian-openlogo-nd.png"
+   inkscape:export-xdpi="523.71069"
+   inkscape:export-ydpi="523.71069"><defs
+     id="defs35" /><sodipodi:namedview
+     pagecolor="#ffffff"
+     bordercolor="#666666"
+     borderopacity="1"
+     objecttolerance="10"
+     gridtolerance="10"
+     guidetolerance="10"
+     inkscape:pageopacity="0"
+     inkscape:pageshadow="2"
+     inkscape:window-width="1152"
+     inkscape:window-height="756"
+     id="namedview33"
+     showgrid="false"
+     fit-margin-top="0"
+     fit-margin-left="0"
+     fit-margin-right="0"
+     fit-margin-bottom="0"
+     inkscape:zoom="4.9006958"
+     inkscape:cx="54.992191"
+     inkscape:cy="54.992191"
+     inkscape:window-x="0"
+     inkscape:window-y="29"
+     inkscape:window-maximized="1"
+     inkscape:current-layer="svg2" /><metadata
+     id="metadata4"><ns:variableSets><ns:variableSet
+         varSetName="binding1"
+         locked="none"><ns:variables /><ns:sampleDataSets /></ns:variableSet></ns:variableSets><ns0:sfw><ns0:slices /><ns0:sliceSourceBounds
+         y="341.555"
+         x="262"
+         width="87.041"
+         height="108.445"
+         bottomLeftOrigin="true" /></ns0:sfw><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
+     id="Layer_1"
+     i:layer="yes"
+     i:dimmedPercent="50"
+     i:rgbTrio="#4F008000FFFF"
+     inkscape:tile-cx="43.480446"
+     inkscape:tile-cy="54.2245"
+     inkscape:tile-w="87.125109"
+     inkscape:tile-h="108.449"
+     inkscape:tile-x0="-0.082108748"
+     inkscape:tile-y0="0"
+     transform="translate(11.511747,0.76768724)"><g
+       id="g7"><path
+         i:knockout="Off"
+         d="m 51.986,57.297 c -1.797,0.025 0.34,0.926 2.686,1.287 0.648,-0.506 1.236,-1.018 1.76,-1.516 -1.461,0.358 -2.948,0.366 -4.446,0.229"
+         id="path9"
+         inkscape:connector-curvature="0"
+         style="fill:#d70751" /><path
+         i:knockout="Off"
+         d="m 61.631,54.893 c 1.07,-1.477 1.85,-3.094 2.125,-4.766 -0.24,1.192 -0.887,2.221 -1.496,3.307 -3.359,2.115 -0.316,-1.256 -0.002,-2.537 -3.612,4.546 -0.496,2.726 -0.627,3.996"
+         id="path11"
+         inkscape:connector-curvature="0"
+         style="fill:#d70751" /><path
+         i:knockout="Off"
+         d="m 65.191,45.629 c 0.217,-3.236 -0.637,-2.213 -0.924,-0.978 0.335,0.174 0.6,2.281 0.924,0.978"
+         id="path13"
+         inkscape:connector-curvature="0"
+         style="fill:#d70751" /><path
+         i:knockout="Off"
+         d="m 45.172,1.399 c 0.959,0.172 2.072,0.304 1.916,0.533 1.049,-0.23 1.287,-0.442 -1.916,-0.533"
+         id="path15"
+         inkscape:connector-curvature="0"
+         style="fill:#d70751" /><path
+         i:knockout="Off"
+         d="M 47.088,1.932 46.41,2.072 47.041,2.016 47.088,1.932"
+         id="path17"
+         inkscape:connector-curvature="0"
+         style="fill:#d70751" /><path
+         i:knockout="Off"
+         d="m 76.992,46.856 c 0.107,2.906 -0.85,4.316 -1.713,6.812 l -1.553,0.776 c -1.271,2.468 0.123,1.567 -0.787,3.53 -1.984,1.764 -6.021,5.52 -7.313,5.863 -0.943,-0.021 0.639,-1.113 0.846,-1.541 -2.656,1.824 -2.131,2.738 -6.193,3.846 L 60.16,65.878 C 50.142,70.591 36.226,61.251 36.409,48.507 c -0.107,0.809 -0.304,0.607 -0.526,0.934 -0.517,-6.557 3.028,-13.143 9.007,-15.832 5.848,-2.895 12.704,-1.707 16.893,2.197 -2.301,-3.014 -6.881,-6.209 -12.309,-5.91 -5.317,0.084 -10.291,3.463 -11.951,7.131 -2.724,1.715 -3.04,6.611 -4.227,7.507 -1.597,11.737 3.004,16.808 10.787,22.773 1.225,0.826 0.345,0.951 0.511,1.58 -2.586,-1.211 -4.954,-3.039 -6.901,-5.277 1.033,1.512 2.148,2.982 3.589,4.137 -2.438,-0.826 -5.695,-5.908 -6.646,-6.115 4.203,7.525 17.052,13.197 23.78,10.383 -3.113,0.115 -7.068,0.064 -10.566,-1.229 -1.469,-0.756 -3.467,-2.322 -3.11,-2.615 9.182,3.43 18.667,2.598 26.612,-3.771 2.021,-1.574 4.229,-4.252 4.867,-4.289 -0.961,1.445 0.164,0.695 -0.574,1.971 2.014,-3.248 -0.875,-1.322 2.082,-5.609 l 1.092,1.504 c -0.406,-2.696 3.348,-5.97 2.967,-10.234 0.861,-1.304 0.961,1.403 0.047,4.403 1.268,-3.328 0.334,-3.863 0.66,-6.609 0.352,0.923 0.814,1.904 1.051,2.878 -0.826,-3.216 0.848,-5.416 1.262,-7.285 -0.408,-0.181 -1.275,1.422 -1.473,-2.377 0.029,-1.65 0.459,-0.865 0.625,-1.271 -0.324,-0.186 -1.174,-1.451 -1.691,-3.877 0.375,-0.57 1.002,1.478 1.512,1.562 -0.328,-1.929 -0.893,-3.4 -0.916,-4.88 -1.49,-3.114 -0.527,0.415 -1.736,-1.337 -1.586,-4.947 1.316,-1.148 1.512,-3.396 2.404,3.483 3.775,8.881 4.404,11.117 -0.48,-2.726 -1.256,-5.367 -2.203,-7.922 0.73,0.307 -1.176,-5.609 0.949,-1.691 C 83.519,18.706 76.074,10.902 69.225,7.24 70.063,8.007 71.121,8.97 70.741,9.121 67.335,7.093 67.934,6.935 67.446,6.078 64.671,4.949 64.489,6.169 62.651,6.08 57.421,3.306 56.413,3.601 51.6,1.863 l 0.219,1.023 c -3.465,-1.154 -4.037,0.438 -7.782,0.004 -0.228,-0.178 1.2,-0.644 2.375,-0.815 -3.35,0.442 -3.193,-0.66 -6.471,0.122 0.808,-0.567 1.662,-0.942 2.524,-1.424 -2.732,0.166 -6.522,1.59 -5.352,0.295 -4.456,1.988 -12.37,4.779 -16.811,8.943 l -0.14,-0.933 c -2.035,2.443 -8.874,7.296 -9.419,10.46 l -0.544,0.127 c -1.059,1.793 -1.744,3.825 -2.584,5.67 -1.385,2.36 -2.03,0.908 -1.833,1.278 -2.724,5.523 -4.077,10.164 -5.246,13.97 0.833,1.245 0.02,7.495 0.335,12.497 -1.368,24.704 17.338,48.69 37.785,54.228 2.997,1.072 7.454,1.031 11.245,1.141 -4.473,-1.279 -5.051,-0.678 -9.408,-2.197 -3.143,-1.48 -3.832,-3.17 -6.058,-5.102 l 0.881,1.557 c -4.366,-1.545 -2.539,-1.912 -6.091,-3.037 l 0.941,-1.229 C 28.751,98.334 26.418,96.056 25.78,94.795 l -1.548,0.061 c -1.86,-2.295 -2.851,-3.949 -2.779,-5.23 l -0.5,0.891 c -0.567,-0.973 -6.843,-8.607 -3.587,-6.83 -0.605,-0.553 -1.409,-0.9 -2.281,-2.484 l 0.663,-0.758 c -1.567,-2.016 -2.884,-4.6 -2.784,-5.461 0.836,1.129 1.416,1.34 1.99,1.533 -3.957,-9.818 -4.179,-0.541 -7.176,-9.994 L 8.412,66.472 C 7.926,65.74 7.631,64.945 7.24,64.165 l 0.276,-2.75 C 4.667,58.121 6.719,47.409 7.13,41.534 7.415,39.145 9.508,36.602 11.1,32.614 l -0.97,-0.167 c 1.854,-3.234 10.586,-12.988 14.63,-12.486 1.959,-2.461 -0.389,-0.009 -0.772,-0.629 4.303,-4.453 5.656,-3.146 8.56,-3.947 3.132,-1.859 -2.688,0.725 -1.203,-0.709 5.414,-1.383 3.837,-3.144 10.9,-3.846 0.745,0.424 -1.729,0.655 -2.35,1.205 4.511,-2.207 14.275,-1.705 20.617,1.225 7.359,3.439 15.627,13.605 15.953,23.17 l 0.371,0.1 c -0.188,3.802 0.582,8.199 -0.752,12.238 l 0.908,-1.912"
+         id="path19"
+         inkscape:connector-curvature="0"
+         style="fill:#d70751" /><path
+         i:knockout="Off"
+         d="m 32.372,59.764 -0.252,1.26 c 1.181,1.604 2.118,3.342 3.626,4.596 -1.085,-2.118 -1.891,-2.993 -3.374,-5.856"
+         id="path21"
+         inkscape:connector-curvature="0"
+         style="fill:#d70751" /><path
+         i:knockout="Off"
+         d="m 35.164,59.654 c -0.625,-0.691 -0.995,-1.523 -1.409,-2.352 0.396,1.457 1.207,2.709 1.962,3.982 l -0.553,-1.63"
+         id="path23"
+         inkscape:connector-curvature="0"
+         style="fill:#d70751" /><path
+         i:knockout="Off"
+         d="m 84.568,48.916 -0.264,0.662 c -0.484,3.438 -1.529,6.84 -3.131,9.994 1.77,-3.328 2.915,-6.968 3.395,-10.656"
+         id="path25"
+         inkscape:connector-curvature="0"
+         style="fill:#d70751" /><path
+         i:knockout="Off"
+         d="M 45.527,0.537 C 46.742,0.092 48.514,0.293 49.803,0 48.123,0.141 46.451,0.225 44.8,0.438 l 0.727,0.099"
+         id="path27"
+         inkscape:connector-curvature="0"
+         style="fill:#d70751" /><path
+         i:knockout="Off"
+         d="m 2.872,23.219 c 0.28,2.592 -1.95,3.598 0.494,1.889 1.31,-2.951 -0.512,-0.815 -0.494,-1.889"
+         id="path29"
+         inkscape:connector-curvature="0"
+         style="fill:#d70751" /><path
+         i:knockout="Off"
+         d="M 0,35.215 C 0.563,33.487 0.665,32.449 0.88,31.449 -0.676,33.438 0.164,33.862 0,35.215"
+         id="path31"
+         inkscape:connector-curvature="0"
+         style="fill:#d70751" /></g></g></svg>
\ No newline at end of file
diff --git a/src_images/Firefox.svg b/src_images/Firefox.svg
new file mode 100644 (file)
index 0000000..4fb1a2d
--- /dev/null
@@ -0,0 +1,2147 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<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:xlink="http://www.w3.org/1999/xlink"
+   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+   version="1.1"
+   id="Layer_1"
+   x="0px"
+   y="0px"
+   width="378.71494"
+   height="378.71494"
+   viewBox="0 0 378.71492 378.71495"
+   enable-background="new 0 0 352.2 372.8"
+   xml:space="preserve"
+   inkscape:version="0.48.4 r9939"
+   sodipodi:docname="Mozilla_Firefox_logo_2013.svg"
+   inkscape:export-filename="/home/ao2/WIP/twinklerope/PoPiPaint/src_images/Mozilla_Firefox_logo_2013.png"
+   inkscape:export-xdpi="152.09329"
+   inkscape:export-ydpi="152.09329"><sodipodi:namedview
+     pagecolor="#ffffff"
+     bordercolor="#666666"
+     borderopacity="1"
+     objecttolerance="10"
+     gridtolerance="10"
+     guidetolerance="10"
+     inkscape:pageopacity="0"
+     inkscape:pageshadow="2"
+     inkscape:window-width="1152"
+     inkscape:window-height="756"
+     id="namedview582"
+     showgrid="false"
+     inkscape:zoom="0.89526398"
+     inkscape:cx="213.52535"
+     inkscape:cy="96.178517"
+     inkscape:window-x="0"
+     inkscape:window-y="29"
+     inkscape:window-maximized="1"
+     inkscape:current-layer="Layer_1"
+     fit-margin-top="0"
+     fit-margin-left="0"
+     fit-margin-right="0"
+     fit-margin-bottom="0" /><metadata
+     id="metadata586"><rdf:RDF><cc:Work
+         rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type
+           rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs
+     id="defs584"><linearGradient
+       inkscape:collect="always"
+       xlink:href="#SVGID_2_"
+       id="linearGradient3645"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1,0,0,-1,-22.5352,286.4424)"
+       x1="68.246101"
+       y1="197.6797"
+       x2="52.6936"
+       y2="237.53371" /><linearGradient
+       inkscape:collect="always"
+       xlink:href="#SVGID_3_"
+       id="linearGradient3647"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.9673,0.2537,0.2537,-0.9673,-1209.9244,1128.7295)"
+       x1="943.24609"
+       y1="1295.5269"
+       x2="943.24609"
+       y2="1133.048" /><linearGradient
+       inkscape:collect="always"
+       xlink:href="#SVGID_4_"
+       id="linearGradient3649"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.9897,-0.0801,-0.0949,-1.1727,14.9456,356.3413)"
+       x1="42.538601"
+       y1="211.63721"
+       x2="-12.3972"
+       y2="122.1703" /><radialGradient
+       inkscape:collect="always"
+       xlink:href="#SVGID_5_"
+       id="radialGradient3651"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1,0,0,-1,-22.5352,286.4424)"
+       cx="302.55179"
+       cy="260.37061"
+       r="63.9286" /><radialGradient
+       inkscape:collect="always"
+       xlink:href="#SVGID_6_"
+       id="radialGradient3653"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1,0,0,-1,-22.5352,286.4424)"
+       cx="326.79391"
+       cy="211.0708"
+       r="33.394699" /><radialGradient
+       inkscape:collect="always"
+       xlink:href="#SVGID_7_"
+       id="radialGradient3655"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1,0,0,-1,-22.5352,286.4424)"
+       cx="284.0137"
+       cy="-32.0718"
+       r="29.7017" /><radialGradient
+       inkscape:collect="always"
+       xlink:href="#SVGID_8_"
+       id="radialGradient3657"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1,0,0,-1,-22.5352,286.4424)"
+       cx="341.5293"
+       cy="24.653299"
+       r="32.879902" /><radialGradient
+       inkscape:collect="always"
+       xlink:href="#SVGID_9_"
+       id="radialGradient3659"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1,0,0,-1,-22.5352,286.4424)"
+       cx="357.6279"
+       cy="121.2026"
+       r="29.700199" /><radialGradient
+       inkscape:collect="always"
+       xlink:href="#SVGID_10_"
+       id="radialGradient3661"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1,0,0,-1,-22.5352,286.4424)"
+       cx="348.78909"
+       cy="191.8696"
+       r="37.114899" /><radialGradient
+       inkscape:collect="always"
+       xlink:href="#SVGID_11_"
+       id="radialGradient3663"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.9408,0,0,-0.8863,-1.4635,258.6756)"
+       cx="188.16161"
+       cy="267.0405"
+       r="328.84091" /><radialGradient
+       inkscape:collect="always"
+       xlink:href="#SVGID_12_"
+       id="radialGradient3665"
+       gradientUnits="userSpaceOnUse"
+       cx="178.5493"
+       cy="31.5166"
+       r="216.03551" /><radialGradient
+       inkscape:collect="always"
+       xlink:href="#SVGID_13_"
+       id="radialGradient3667"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1,0,0,-0.9474,-22.5352,271.0349)"
+       cx="167.2603"
+       cy="93.960899"
+       r="248.1958" /><linearGradient
+       inkscape:collect="always"
+       xlink:href="#SVGID_14_"
+       id="linearGradient3669"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1,0,0,-1,-22.5352,286.4424)"
+       x1="178.0381"
+       y1="119.4014"
+       x2="257.41061"
+       y2="10.5182" /><radialGradient
+       inkscape:collect="always"
+       xlink:href="#SVGID_19_"
+       id="radialGradient3671"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.9408,0,0,-0.9578,-1.4635,284.0533)"
+       cx="187.3291"
+       cy="85.356903"
+       r="210.28371" /><radialGradient
+       inkscape:collect="always"
+       xlink:href="#SVGID_20_"
+       id="radialGradient3673"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1,0,0,-0.9811,-22.5352,278.7874)"
+       cx="215.1821"
+       cy="226.07471"
+       r="191.4198" /><radialGradient
+       inkscape:collect="always"
+       xlink:href="#SVGID_21_"
+       id="radialGradient3675"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1,0,0,-0.9811,-22.5352,278.7942)"
+       cx="278.95999"
+       cy="216.9194"
+       r="322.2244" /><radialGradient
+       inkscape:collect="always"
+       xlink:href="#SVGID_22_"
+       id="radialGradient3677"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1,0,0,-0.9759,-22.5352,277.9357)"
+       cx="224.4688"
+       cy="165.92191"
+       r="239.543" /><radialGradient
+       inkscape:collect="always"
+       xlink:href="#SVGID_23_"
+       id="radialGradient3679"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.5289,-0.8327,-0.8392,-0.5131,164.8274,444.5247)"
+       cx="246.6787"
+       cy="84.769501"
+       r="244.5468" /><radialGradient
+       inkscape:collect="always"
+       xlink:href="#SVGID_24_"
+       id="radialGradient3681"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1,0,0,-0.6267,-22.5352,146.1352)"
+       cx="179.4165"
+       cy="84.111801"
+       r="78.672302" /><radialGradient
+       inkscape:collect="always"
+       xlink:href="#SVGID_25_"
+       id="radialGradient3683"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.9539,-0.2859,-0.1382,-0.4185,33.3089,94.9034)"
+       cx="111.9854"
+       cy="-77.954597"
+       r="66.229103" /><radialGradient
+       inkscape:collect="always"
+       xlink:href="#SVGID_26_"
+       id="radialGradient3685"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1,0,0,-1,-22.5352,286.4424)"
+       cx="243.2402"
+       cy="127.7866"
+       r="178.2486" /><radialGradient
+       inkscape:collect="always"
+       xlink:href="#SVGID_27_"
+       id="radialGradient3687"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1,0,0,-1,-22.5352,286.4424)"
+       cx="368.27249"
+       cy="228.6978"
+       r="215.60429" /><radialGradient
+       inkscape:collect="always"
+       xlink:href="#SVGID_28_"
+       id="radialGradient3689"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1,0,0,-1,-22.5352,286.4424)"
+       cx="304.44431"
+       cy="146.6909"
+       r="87.662003" /><radialGradient
+       inkscape:collect="always"
+       xlink:href="#SVGID_29_"
+       id="radialGradient3691"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1,0,0,-1,-22.5352,286.4424)"
+       cx="321.4375"
+       cy="157.2822"
+       r="159.0979" /><radialGradient
+       inkscape:collect="always"
+       xlink:href="#SVGID_30_"
+       id="radialGradient3693"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1,0,0,-1,-22.5352,286.4424)"
+       cx="296.0918"
+       cy="115.8423"
+       r="134.6922" /><linearGradient
+       inkscape:collect="always"
+       xlink:href="#SVGID_31_"
+       id="linearGradient3695"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.9995,-0.0314,-0.0314,-0.9995,-20.7532,313.0438)"
+       x1="254.7529"
+       y1="86.784698"
+       x2="232.1376"
+       y2="-11.7535" /><linearGradient
+       inkscape:collect="always"
+       xlink:href="#SVGID_32_"
+       id="linearGradient3697"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1,0,0,-1,-22.5352,286.4424)"
+       x1="67.7061"
+       y1="195.7646"
+       x2="47.5672"
+       y2="247.3716" /><linearGradient
+       inkscape:collect="always"
+       xlink:href="#SVGID_33_"
+       id="linearGradient3699"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1,0,0,-1,-22.5352,286.4424)"
+       x1="149.1714"
+       y1="156.94189"
+       x2="176.00079"
+       y2="168.7469" /><linearGradient
+       inkscape:collect="always"
+       xlink:href="#SVGID_34_"
+       id="linearGradient3701"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1,0,0,-1,-22.5352,286.4424)"
+       x1="151.6367"
+       y1="153.88429"
+       x2="220.8844"
+       y2="188.66991" /><radialGradient
+       inkscape:collect="always"
+       xlink:href="#SVGID_35_"
+       id="radialGradient3703"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1,0,0,-0.8428,-22.5352,246.0269)"
+       cx="174.9985"
+       cy="30.264601"
+       r="95.217201" /><linearGradient
+       inkscape:collect="always"
+       xlink:href="#SVGID_36_"
+       id="linearGradient3705"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1,0,0,-1,-22.5352,286.4424)"
+       x1="177.6851"
+       y1="169.3364"
+       x2="197.8616"
+       y2="200.39619" /><radialGradient
+       inkscape:collect="always"
+       xlink:href="#SVGID_37_"
+       id="radialGradient3707"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.9863,-0.1647,-0.1249,-0.7478,15.643,224.3614)"
+       cx="127.8003"
+       cy="34.3428"
+       r="87.310997" /><radialGradient
+       inkscape:collect="always"
+       xlink:href="#SVGID_38_"
+       id="radialGradient3709"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.9996,-0.0268,-0.0263,-0.9807,-11.5911,293.5543)"
+       cx="263.41211"
+       cy="264.25629"
+       r="164.4707" /><radialGradient
+       inkscape:collect="always"
+       xlink:href="#SVGID_39_"
+       id="radialGradient3711"
+       gradientUnits="userSpaceOnUse"
+       cx="126.3921"
+       cy="63.736801"
+       r="210.72701" /><radialGradient
+       inkscape:collect="always"
+       xlink:href="#SVGID_40_"
+       id="radialGradient3713"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(-0.2756,0.9504,-0.6431,-0.1776,-962.8631,1318.7604)"
+       cx="-1401.499"
+       cy="-1211.7964"
+       r="53.8801" /><radialGradient
+       inkscape:collect="always"
+       xlink:href="#SVGID_41_"
+       id="radialGradient3715"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(-0.3166,0.8278,-0.6529,-0.2379,-1017.1411,1149.9413)"
+       cx="-1471.7295"
+       cy="-1158.8491"
+       r="56.148602" /><radialGradient
+       inkscape:collect="always"
+       xlink:href="#SVGID_42_"
+       id="radialGradient3717"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(-0.2345,0.5201,-0.5377,-0.2307,-894.6464,746.3104)"
+       cx="-1629.4243"
+       cy="-1332.1895"
+       r="42.1092" /><linearGradient
+       inkscape:collect="always"
+       xlink:href="#SVGID_43_"
+       id="linearGradient3719"
+       gradientUnits="userSpaceOnUse"
+       x1="165.2729"
+       y1="155.66701"
+       x2="165.2729"
+       y2="346.56689" /><radialGradient
+       inkscape:collect="always"
+       xlink:href="#SVGID_44_"
+       id="radialGradient3721"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.0279,-0.9996,0.9996,0.0279,4653.8252,3342.6565)"
+       cx="2912.8057"
+       cy="-4629.0093"
+       r="111.5851" /><radialGradient
+       inkscape:collect="always"
+       xlink:href="#SVGID_45_"
+       id="radialGradient3723"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.9569,0.2903,-0.1939,0.6392,19.5463,8.4187)"
+       cx="75.4692"
+       cy="84.055199"
+       r="43.930099" /><linearGradient
+       inkscape:collect="always"
+       xlink:href="#SVGID_2_"
+       id="linearGradient4753"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1,0,0,-1,-22.5352,286.4424)"
+       x1="68.246101"
+       y1="197.6797"
+       x2="52.6936"
+       y2="237.53371" /><linearGradient
+       inkscape:collect="always"
+       xlink:href="#SVGID_3_"
+       id="linearGradient4755"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.9673,0.2537,0.2537,-0.9673,-1209.9244,1128.7295)"
+       x1="943.24609"
+       y1="1295.5269"
+       x2="943.24609"
+       y2="1133.048" /><linearGradient
+       inkscape:collect="always"
+       xlink:href="#SVGID_4_"
+       id="linearGradient4757"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.9897,-0.0801,-0.0949,-1.1727,14.9456,356.3413)"
+       x1="42.538601"
+       y1="211.63721"
+       x2="-12.3972"
+       y2="122.1703" /><radialGradient
+       inkscape:collect="always"
+       xlink:href="#SVGID_5_"
+       id="radialGradient4759"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1,0,0,-1,-22.5352,286.4424)"
+       cx="302.55179"
+       cy="260.37061"
+       r="63.9286" /><radialGradient
+       inkscape:collect="always"
+       xlink:href="#SVGID_6_"
+       id="radialGradient4761"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1,0,0,-1,-22.5352,286.4424)"
+       cx="326.79391"
+       cy="211.0708"
+       r="33.394699" /><radialGradient
+       inkscape:collect="always"
+       xlink:href="#SVGID_7_"
+       id="radialGradient4763"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1,0,0,-1,-22.5352,286.4424)"
+       cx="284.0137"
+       cy="-32.0718"
+       r="29.7017" /><radialGradient
+       inkscape:collect="always"
+       xlink:href="#SVGID_8_"
+       id="radialGradient4765"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1,0,0,-1,-22.5352,286.4424)"
+       cx="341.5293"
+       cy="24.653299"
+       r="32.879902" /><radialGradient
+       inkscape:collect="always"
+       xlink:href="#SVGID_9_"
+       id="radialGradient4767"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1,0,0,-1,-22.5352,286.4424)"
+       cx="357.6279"
+       cy="121.2026"
+       r="29.700199" /><radialGradient
+       inkscape:collect="always"
+       xlink:href="#SVGID_10_"
+       id="radialGradient4769"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1,0,0,-1,-22.5352,286.4424)"
+       cx="348.78909"
+       cy="191.8696"
+       r="37.114899" /><radialGradient
+       inkscape:collect="always"
+       xlink:href="#SVGID_11_"
+       id="radialGradient4771"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.9408,0,0,-0.8863,-1.4635,258.6756)"
+       cx="188.16161"
+       cy="267.0405"
+       r="328.84091" /><radialGradient
+       inkscape:collect="always"
+       xlink:href="#SVGID_12_"
+       id="radialGradient4773"
+       gradientUnits="userSpaceOnUse"
+       cx="178.5493"
+       cy="31.5166"
+       r="216.03551" /><radialGradient
+       inkscape:collect="always"
+       xlink:href="#SVGID_13_"
+       id="radialGradient4775"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1,0,0,-0.9474,-22.5352,271.0349)"
+       cx="167.2603"
+       cy="93.960899"
+       r="248.1958" /><linearGradient
+       inkscape:collect="always"
+       xlink:href="#SVGID_14_"
+       id="linearGradient4777"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1,0,0,-1,-22.5352,286.4424)"
+       x1="178.0381"
+       y1="119.4014"
+       x2="257.41061"
+       y2="10.5182" /><radialGradient
+       inkscape:collect="always"
+       xlink:href="#SVGID_19_"
+       id="radialGradient4779"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.9408,0,0,-0.9578,-1.4635,284.0533)"
+       cx="187.3291"
+       cy="85.356903"
+       r="210.28371" /><radialGradient
+       inkscape:collect="always"
+       xlink:href="#SVGID_20_"
+       id="radialGradient4781"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1,0,0,-0.9811,-22.5352,278.7874)"
+       cx="215.1821"
+       cy="226.07471"
+       r="191.4198" /><radialGradient
+       inkscape:collect="always"
+       xlink:href="#SVGID_21_"
+       id="radialGradient4783"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1,0,0,-0.9811,-22.5352,278.7942)"
+       cx="278.95999"
+       cy="216.9194"
+       r="322.2244" /><radialGradient
+       inkscape:collect="always"
+       xlink:href="#SVGID_22_"
+       id="radialGradient4785"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1,0,0,-0.9759,-22.5352,277.9357)"
+       cx="224.4688"
+       cy="165.92191"
+       r="239.543" /><radialGradient
+       inkscape:collect="always"
+       xlink:href="#SVGID_23_"
+       id="radialGradient4787"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.5289,-0.8327,-0.8392,-0.5131,164.8274,444.5247)"
+       cx="246.6787"
+       cy="84.769501"
+       r="244.5468" /><radialGradient
+       inkscape:collect="always"
+       xlink:href="#SVGID_24_"
+       id="radialGradient4789"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1,0,0,-0.6267,-22.5352,146.1352)"
+       cx="179.4165"
+       cy="84.111801"
+       r="78.672302" /><radialGradient
+       inkscape:collect="always"
+       xlink:href="#SVGID_25_"
+       id="radialGradient4791"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.9539,-0.2859,-0.1382,-0.4185,33.3089,94.9034)"
+       cx="111.9854"
+       cy="-77.954597"
+       r="66.229103" /><radialGradient
+       inkscape:collect="always"
+       xlink:href="#SVGID_26_"
+       id="radialGradient4793"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1,0,0,-1,-22.5352,286.4424)"
+       cx="243.2402"
+       cy="127.7866"
+       r="178.2486" /><radialGradient
+       inkscape:collect="always"
+       xlink:href="#SVGID_27_"
+       id="radialGradient4795"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1,0,0,-1,-22.5352,286.4424)"
+       cx="368.27249"
+       cy="228.6978"
+       r="215.60429" /><radialGradient
+       inkscape:collect="always"
+       xlink:href="#SVGID_28_"
+       id="radialGradient4797"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1,0,0,-1,-22.5352,286.4424)"
+       cx="304.44431"
+       cy="146.6909"
+       r="87.662003" /><radialGradient
+       inkscape:collect="always"
+       xlink:href="#SVGID_29_"
+       id="radialGradient4799"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1,0,0,-1,-22.5352,286.4424)"
+       cx="321.4375"
+       cy="157.2822"
+       r="159.0979" /><radialGradient
+       inkscape:collect="always"
+       xlink:href="#SVGID_30_"
+       id="radialGradient4801"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1,0,0,-1,-22.5352,286.4424)"
+       cx="296.0918"
+       cy="115.8423"
+       r="134.6922" /><linearGradient
+       inkscape:collect="always"
+       xlink:href="#SVGID_31_"
+       id="linearGradient4803"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.9995,-0.0314,-0.0314,-0.9995,-20.7532,313.0438)"
+       x1="254.7529"
+       y1="86.784698"
+       x2="232.1376"
+       y2="-11.7535" /><linearGradient
+       inkscape:collect="always"
+       xlink:href="#SVGID_32_"
+       id="linearGradient4805"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1,0,0,-1,-22.5352,286.4424)"
+       x1="67.7061"
+       y1="195.7646"
+       x2="47.5672"
+       y2="247.3716" /><linearGradient
+       inkscape:collect="always"
+       xlink:href="#SVGID_33_"
+       id="linearGradient4807"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1,0,0,-1,-22.5352,286.4424)"
+       x1="149.1714"
+       y1="156.94189"
+       x2="176.00079"
+       y2="168.7469" /><linearGradient
+       inkscape:collect="always"
+       xlink:href="#SVGID_34_"
+       id="linearGradient4809"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1,0,0,-1,-22.5352,286.4424)"
+       x1="151.6367"
+       y1="153.88429"
+       x2="220.8844"
+       y2="188.66991" /><radialGradient
+       inkscape:collect="always"
+       xlink:href="#SVGID_35_"
+       id="radialGradient4811"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1,0,0,-0.8428,-22.5352,246.0269)"
+       cx="174.9985"
+       cy="30.264601"
+       r="95.217201" /><linearGradient
+       inkscape:collect="always"
+       xlink:href="#SVGID_36_"
+       id="linearGradient4813"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1,0,0,-1,-22.5352,286.4424)"
+       x1="177.6851"
+       y1="169.3364"
+       x2="197.8616"
+       y2="200.39619" /><radialGradient
+       inkscape:collect="always"
+       xlink:href="#SVGID_37_"
+       id="radialGradient4815"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.9863,-0.1647,-0.1249,-0.7478,15.643,224.3614)"
+       cx="127.8003"
+       cy="34.3428"
+       r="87.310997" /><radialGradient
+       inkscape:collect="always"
+       xlink:href="#SVGID_38_"
+       id="radialGradient4817"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.9996,-0.0268,-0.0263,-0.9807,-11.5911,293.5543)"
+       cx="263.41211"
+       cy="264.25629"
+       r="164.4707" /><radialGradient
+       inkscape:collect="always"
+       xlink:href="#SVGID_39_"
+       id="radialGradient4819"
+       gradientUnits="userSpaceOnUse"
+       cx="126.3921"
+       cy="63.736801"
+       r="210.72701" /><radialGradient
+       inkscape:collect="always"
+       xlink:href="#SVGID_40_"
+       id="radialGradient4821"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(-0.2756,0.9504,-0.6431,-0.1776,-962.8631,1318.7604)"
+       cx="-1401.499"
+       cy="-1211.7964"
+       r="53.8801" /><radialGradient
+       inkscape:collect="always"
+       xlink:href="#SVGID_41_"
+       id="radialGradient4823"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(-0.3166,0.8278,-0.6529,-0.2379,-1017.1411,1149.9413)"
+       cx="-1471.7295"
+       cy="-1158.8491"
+       r="56.148602" /><radialGradient
+       inkscape:collect="always"
+       xlink:href="#SVGID_42_"
+       id="radialGradient4825"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(-0.2345,0.5201,-0.5377,-0.2307,-894.6464,746.3104)"
+       cx="-1629.4243"
+       cy="-1332.1895"
+       r="42.1092" /><linearGradient
+       inkscape:collect="always"
+       xlink:href="#SVGID_43_"
+       id="linearGradient4827"
+       gradientUnits="userSpaceOnUse"
+       x1="165.2729"
+       y1="155.66701"
+       x2="165.2729"
+       y2="346.56689" /><radialGradient
+       inkscape:collect="always"
+       xlink:href="#SVGID_44_"
+       id="radialGradient4829"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.0279,-0.9996,0.9996,0.0279,4653.8252,3342.6565)"
+       cx="2912.8057"
+       cy="-4629.0093"
+       r="111.5851" /><radialGradient
+       inkscape:collect="always"
+       xlink:href="#SVGID_45_"
+       id="radialGradient4831"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.9569,0.2903,-0.1939,0.6392,19.5463,8.4187)"
+       cx="75.4692"
+       cy="84.055199"
+       r="43.930099" /><linearGradient
+       inkscape:collect="always"
+       xlink:href="#SVGID_2_"
+       id="linearGradient5915"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1,0,0,-1,-22.5352,286.4424)"
+       x1="68.246101"
+       y1="197.6797"
+       x2="52.6936"
+       y2="237.53371" /><linearGradient
+       inkscape:collect="always"
+       xlink:href="#SVGID_3_"
+       id="linearGradient5917"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.9673,0.2537,0.2537,-0.9673,-1209.9244,1128.7295)"
+       x1="943.24609"
+       y1="1295.5269"
+       x2="943.24609"
+       y2="1133.048" /><linearGradient
+       inkscape:collect="always"
+       xlink:href="#SVGID_4_"
+       id="linearGradient5919"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.9897,-0.0801,-0.0949,-1.1727,14.9456,356.3413)"
+       x1="42.538601"
+       y1="211.63721"
+       x2="-12.3972"
+       y2="122.1703" /><radialGradient
+       inkscape:collect="always"
+       xlink:href="#SVGID_5_"
+       id="radialGradient5921"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1,0,0,-1,-22.5352,286.4424)"
+       cx="302.55179"
+       cy="260.37061"
+       r="63.9286" /><radialGradient
+       inkscape:collect="always"
+       xlink:href="#SVGID_6_"
+       id="radialGradient5923"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1,0,0,-1,-22.5352,286.4424)"
+       cx="326.79391"
+       cy="211.0708"
+       r="33.394699" /><radialGradient
+       inkscape:collect="always"
+       xlink:href="#SVGID_7_"
+       id="radialGradient5925"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1,0,0,-1,-22.5352,286.4424)"
+       cx="284.0137"
+       cy="-32.0718"
+       r="29.7017" /><radialGradient
+       inkscape:collect="always"
+       xlink:href="#SVGID_8_"
+       id="radialGradient5927"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1,0,0,-1,-22.5352,286.4424)"
+       cx="341.5293"
+       cy="24.653299"
+       r="32.879902" /><radialGradient
+       inkscape:collect="always"
+       xlink:href="#SVGID_9_"
+       id="radialGradient5929"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1,0,0,-1,-22.5352,286.4424)"
+       cx="357.6279"
+       cy="121.2026"
+       r="29.700199" /><radialGradient
+       inkscape:collect="always"
+       xlink:href="#SVGID_10_"
+       id="radialGradient5931"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1,0,0,-1,-22.5352,286.4424)"
+       cx="348.78909"
+       cy="191.8696"
+       r="37.114899" /><radialGradient
+       inkscape:collect="always"
+       xlink:href="#SVGID_11_"
+       id="radialGradient5933"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.9408,0,0,-0.8863,-1.4635,258.6756)"
+       cx="188.16161"
+       cy="267.0405"
+       r="328.84091" /><radialGradient
+       inkscape:collect="always"
+       xlink:href="#SVGID_12_"
+       id="radialGradient5935"
+       gradientUnits="userSpaceOnUse"
+       cx="178.5493"
+       cy="31.5166"
+       r="216.03551" /><radialGradient
+       inkscape:collect="always"
+       xlink:href="#SVGID_13_"
+       id="radialGradient5937"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1,0,0,-0.9474,-22.5352,271.0349)"
+       cx="167.2603"
+       cy="93.960899"
+       r="248.1958" /><linearGradient
+       inkscape:collect="always"
+       xlink:href="#SVGID_14_"
+       id="linearGradient5939"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1,0,0,-1,-22.5352,286.4424)"
+       x1="178.0381"
+       y1="119.4014"
+       x2="257.41061"
+       y2="10.5182" /><radialGradient
+       inkscape:collect="always"
+       xlink:href="#SVGID_19_"
+       id="radialGradient5941"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.9408,0,0,-0.9578,-1.4635,284.0533)"
+       cx="187.3291"
+       cy="85.356903"
+       r="210.28371" /><radialGradient
+       inkscape:collect="always"
+       xlink:href="#SVGID_20_"
+       id="radialGradient5943"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1,0,0,-0.9811,-22.5352,278.7874)"
+       cx="215.1821"
+       cy="226.07471"
+       r="191.4198" /><radialGradient
+       inkscape:collect="always"
+       xlink:href="#SVGID_21_"
+       id="radialGradient5945"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1,0,0,-0.9811,-22.5352,278.7942)"
+       cx="278.95999"
+       cy="216.9194"
+       r="322.2244" /><radialGradient
+       inkscape:collect="always"
+       xlink:href="#SVGID_22_"
+       id="radialGradient5947"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1,0,0,-0.9759,-22.5352,277.9357)"
+       cx="224.4688"
+       cy="165.92191"
+       r="239.543" /><radialGradient
+       inkscape:collect="always"
+       xlink:href="#SVGID_23_"
+       id="radialGradient5949"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.5289,-0.8327,-0.8392,-0.5131,164.8274,444.5247)"
+       cx="246.6787"
+       cy="84.769501"
+       r="244.5468" /><radialGradient
+       inkscape:collect="always"
+       xlink:href="#SVGID_24_"
+       id="radialGradient5951"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1,0,0,-0.6267,-22.5352,146.1352)"
+       cx="179.4165"
+       cy="84.111801"
+       r="78.672302" /><radialGradient
+       inkscape:collect="always"
+       xlink:href="#SVGID_25_"
+       id="radialGradient5953"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.9539,-0.2859,-0.1382,-0.4185,33.3089,94.9034)"
+       cx="111.9854"
+       cy="-77.954597"
+       r="66.229103" /><radialGradient
+       inkscape:collect="always"
+       xlink:href="#SVGID_26_"
+       id="radialGradient5955"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1,0,0,-1,-22.5352,286.4424)"
+       cx="243.2402"
+       cy="127.7866"
+       r="178.2486" /><radialGradient
+       inkscape:collect="always"
+       xlink:href="#SVGID_27_"
+       id="radialGradient5957"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1,0,0,-1,-22.5352,286.4424)"
+       cx="368.27249"
+       cy="228.6978"
+       r="215.60429" /><radialGradient
+       inkscape:collect="always"
+       xlink:href="#SVGID_28_"
+       id="radialGradient5959"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1,0,0,-1,-22.5352,286.4424)"
+       cx="304.44431"
+       cy="146.6909"
+       r="87.662003" /><radialGradient
+       inkscape:collect="always"
+       xlink:href="#SVGID_29_"
+       id="radialGradient5961"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1,0,0,-1,-22.5352,286.4424)"
+       cx="321.4375"
+       cy="157.2822"
+       r="159.0979" /><radialGradient
+       inkscape:collect="always"
+       xlink:href="#SVGID_30_"
+       id="radialGradient5963"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1,0,0,-1,-22.5352,286.4424)"
+       cx="296.0918"
+       cy="115.8423"
+       r="134.6922" /><linearGradient
+       inkscape:collect="always"
+       xlink:href="#SVGID_31_"
+       id="linearGradient5965"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.9995,-0.0314,-0.0314,-0.9995,-20.7532,313.0438)"
+       x1="254.7529"
+       y1="86.784698"
+       x2="232.1376"
+       y2="-11.7535" /><linearGradient
+       inkscape:collect="always"
+       xlink:href="#SVGID_32_"
+       id="linearGradient5967"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1,0,0,-1,-22.5352,286.4424)"
+       x1="67.7061"
+       y1="195.7646"
+       x2="47.5672"
+       y2="247.3716" /><linearGradient
+       inkscape:collect="always"
+       xlink:href="#SVGID_33_"
+       id="linearGradient5969"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1,0,0,-1,-22.5352,286.4424)"
+       x1="149.1714"
+       y1="156.94189"
+       x2="176.00079"
+       y2="168.7469" /><linearGradient
+       inkscape:collect="always"
+       xlink:href="#SVGID_34_"
+       id="linearGradient5971"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1,0,0,-1,-22.5352,286.4424)"
+       x1="151.6367"
+       y1="153.88429"
+       x2="220.8844"
+       y2="188.66991" /><radialGradient
+       inkscape:collect="always"
+       xlink:href="#SVGID_35_"
+       id="radialGradient5973"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1,0,0,-0.8428,-22.5352,246.0269)"
+       cx="174.9985"
+       cy="30.264601"
+       r="95.217201" /><linearGradient
+       inkscape:collect="always"
+       xlink:href="#SVGID_36_"
+       id="linearGradient5975"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1,0,0,-1,-22.5352,286.4424)"
+       x1="177.6851"
+       y1="169.3364"
+       x2="197.8616"
+       y2="200.39619" /><radialGradient
+       inkscape:collect="always"
+       xlink:href="#SVGID_37_"
+       id="radialGradient5977"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.9863,-0.1647,-0.1249,-0.7478,15.643,224.3614)"
+       cx="127.8003"
+       cy="34.3428"
+       r="87.310997" /><radialGradient
+       inkscape:collect="always"
+       xlink:href="#SVGID_38_"
+       id="radialGradient5979"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.9996,-0.0268,-0.0263,-0.9807,-11.5911,293.5543)"
+       cx="263.41211"
+       cy="264.25629"
+       r="164.4707" /><radialGradient
+       inkscape:collect="always"
+       xlink:href="#SVGID_39_"
+       id="radialGradient5981"
+       gradientUnits="userSpaceOnUse"
+       cx="126.3921"
+       cy="63.736801"
+       r="210.72701" /><radialGradient
+       inkscape:collect="always"
+       xlink:href="#SVGID_40_"
+       id="radialGradient5983"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(-0.2756,0.9504,-0.6431,-0.1776,-962.8631,1318.7604)"
+       cx="-1401.499"
+       cy="-1211.7964"
+       r="53.8801" /><radialGradient
+       inkscape:collect="always"
+       xlink:href="#SVGID_41_"
+       id="radialGradient5985"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(-0.3166,0.8278,-0.6529,-0.2379,-1017.1411,1149.9413)"
+       cx="-1471.7295"
+       cy="-1158.8491"
+       r="56.148602" /><radialGradient
+       inkscape:collect="always"
+       xlink:href="#SVGID_42_"
+       id="radialGradient5987"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(-0.2345,0.5201,-0.5377,-0.2307,-894.6464,746.3104)"
+       cx="-1629.4243"
+       cy="-1332.1895"
+       r="42.1092" /><linearGradient
+       inkscape:collect="always"
+       xlink:href="#SVGID_43_"
+       id="linearGradient5989"
+       gradientUnits="userSpaceOnUse"
+       x1="165.2729"
+       y1="155.66701"
+       x2="165.2729"
+       y2="346.56689" /><radialGradient
+       inkscape:collect="always"
+       xlink:href="#SVGID_44_"
+       id="radialGradient5991"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.0279,-0.9996,0.9996,0.0279,4653.8252,3342.6565)"
+       cx="2912.8057"
+       cy="-4629.0093"
+       r="111.5851" /><radialGradient
+       inkscape:collect="always"
+       xlink:href="#SVGID_45_"
+       id="radialGradient5993"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.9569,0.2903,-0.1939,0.6392,19.5463,8.4187)"
+       cx="75.4692"
+       cy="84.055199"
+       r="43.930099" /></defs><g
+     id="g5601"
+     transform="translate(1.6289547,2.7459389)"><path
+       transform="matrix(-0.70965163,0.70455274,-0.70455274,-0.70965163,485.67979,189.644)"
+       d="m 398.66255,212.07439 c 0,104.57924 -84.77822,189.35746 -189.35747,189.35746 -104.57924,0 -189.357463,-84.77822 -189.357463,-189.35746 0,-104.57925 84.778223,-189.357471 189.357463,-189.357471 104.57925,0 189.35747,84.778221 189.35747,189.357471 z"
+       sodipodi:ry="189.35747"
+       sodipodi:rx="189.35747"
+       sodipodi:cy="212.07439"
+       sodipodi:cx="209.30508"
+       id="path4751"
+       style="color:#000000;fill:#000000;fill-opacity:0;fill-rule:nonzero;stroke:none;stroke-width:1.5;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="arc" /><g
+       transform="translate(17.251994,21.489989)"
+       inkscape:tile-y0="0.29999999"
+       inkscape:tile-x0="-0.099988127"
+       inkscape:tile-h="350.04782"
+       inkscape:tile-w="352.32291"
+       inkscape:tile-cy="171.82348"
+       inkscape:tile-cx="176.06147"
+       id="g3"><radialGradient
+         gradientUnits="userSpaceOnUse"
+         gradientTransform="matrix(1,0,0,0.3873,0,-155.5883)"
+         r="170.8298"
+         cy="1189.0669"
+         cx="175.9072"
+         id="SVGID_1_"><stop
+           id="stop6"
+           style="stop-color:#000000;stop-opacity:0.8"
+           offset="0.4664" /><stop
+           id="stop8"
+           style="stop-color:#000000;stop-opacity:0.7326"
+           offset="0.5083" /><stop
+           id="stop10"
+           style="stop-color:#000000;stop-opacity:0"
+           offset="0.964" /></radialGradient><linearGradient
+         gradientTransform="matrix(1,0,0,-1,-22.5352,286.4424)"
+         y2="237.53371"
+         x2="52.6936"
+         y1="197.6797"
+         x1="68.246101"
+         gradientUnits="userSpaceOnUse"
+         id="SVGID_2_"><stop
+           id="stop15"
+           style="stop-color:#941F21"
+           offset="1.120000e-002" /><stop
+           id="stop17"
+           style="stop-color:#E36126"
+           offset="0.4719" /><stop
+           id="stop19"
+           style="stop-color:#F0BB62"
+           offset="1" /></linearGradient><path
+         style="fill:url(#linearGradient5915)"
+         inkscape:connector-curvature="0"
+         id="path21"
+         d="M 46.8,52.2 C 46.4,51.6 46.4,53.7 46,53 43.3,48.2 41.1,40 40.8,34.2 c 0,0 -4.4,2.5 -7.2,11.5 -0.5,1.6 -0.9,2.5 -1.2,3.4 -0.1,0.3 0.2,-2.9 0.1,-2.6 -0.5,1.1 -2.1,2.9 -2.6,4.9 -0.4,1.6 -1,2.5 -1.3,4.5 -0.1,0.6 -0.1,-2.4 -0.2,-1.9 -3.7,9.8 -6.7,23.6 -5,42.3 C 40.1,81.3 63.8,70 63.8,70 61.1,68.3 52.7,61.7 46.8,52.2 z" /><linearGradient
+         gradientTransform="matrix(0.9673,0.2537,0.2537,-0.9673,-1209.9244,1128.7295)"
+         y2="1133.048"
+         x2="943.24609"
+         y1="1295.5269"
+         x1="943.24609"
+         gradientUnits="userSpaceOnUse"
+         id="SVGID_3_"><stop
+           id="stop24"
+           style="stop-color:#DC7327"
+           offset="5.620000e-002" /><stop
+           id="stop26"
+           style="stop-color:#EEBC89"
+           offset="1" /></linearGradient><path
+         style="fill:url(#linearGradient5917)"
+         inkscape:connector-curvature="0"
+         id="path28"
+         d="m 3,203.5 c 0.2,-2.8 7,-59.4 33.2,-78.5 22.6,-16.5 5,-10.5 -3.7,-9.8 -9.2,0.7 -14.1,6.3 -12.3,4.3 0.1,-0.1 0.1,-0.1 0.1,-0.2 C 20,118.9 -1.3,136.8 3,203.5 z" /><linearGradient
+         gradientTransform="matrix(0.9897,-0.0801,-0.0949,-1.1727,14.9456,356.3413)"
+         y2="122.1703"
+         x2="-12.3972"
+         y1="211.63721"
+         x1="42.538601"
+         gradientUnits="userSpaceOnUse"
+         id="SVGID_4_"><stop
+           id="stop31"
+           style="stop-color:#DC7327"
+           offset="5.620000e-002" /><stop
+           id="stop33"
+           style="stop-color:#EDBD6B"
+           offset="1" /></linearGradient><path
+         style="fill:url(#linearGradient5919)"
+         inkscape:connector-curvature="0"
+         id="path35"
+         d="m 0,159.3 c 0,0 15.4,-49 46.6,-48.5 20.7,0.3 4.3,-17.5 -2,-20.2 -6.5,-2.8 -8.1,-2.7 -9.6,-1.3 -2.3,2 -22.8,1.2 -35,70 z" /><radialGradient
+         gradientUnits="userSpaceOnUse"
+         gradientTransform="matrix(1,0,0,-1,-22.5352,286.4424)"
+         r="63.9286"
+         cy="260.37061"
+         cx="302.55179"
+         id="SVGID_5_"><stop
+           id="stop38"
+           style="stop-color:#FFE300"
+           offset="0.2571" /><stop
+           id="stop40"
+           style="stop-color:#FCD800"
+           offset="0.3355" /><stop
+           id="stop42"
+           style="stop-color:#F8C91E"
+           offset="0.4695" /><stop
+           id="stop44"
+           style="stop-color:#EDA524"
+           offset="0.6431" /><stop
+           id="stop46"
+           style="stop-color:#E37B28"
+           offset="0.8469" /><stop
+           id="stop48"
+           style="stop-color:#DD5A26"
+           offset="1" /></radialGradient><path
+         style="fill:url(#radialGradient5921)"
+         inkscape:connector-curvature="0"
+         id="path50"
+         d="m 285.7,35.9 c 0,0 14.7,7.1 24.2,22.3 7.8,12.4 4.1,29.1 -2.9,26.2 -6.9,-2.9 -21.3,-48.5 -21.3,-48.5 z" /><radialGradient
+         gradientUnits="userSpaceOnUse"
+         gradientTransform="matrix(1,0,0,-1,-22.5352,286.4424)"
+         r="33.394699"
+         cy="211.0708"
+         cx="326.79391"
+         id="SVGID_6_"><stop
+           id="stop53"
+           style="stop-color:#941F21"
+           offset="0.1255" /><stop
+           id="stop55"
+           style="stop-color:#9E2922"
+           offset="0.3432" /><stop
+           id="stop57"
+           style="stop-color:#C24028"
+           offset="0.73" /><stop
+           id="stop59"
+           style="stop-color:#DC5726"
+           offset="1" /></radialGradient><path
+         style="fill:url(#radialGradient5923)"
+         inkscape:connector-curvature="0"
+         id="path61"
+         d="m 311,86 c 4.1,-31.5 -25.4,-50.2 -25.4,-50.2 0,0 1.9,10.8 4.2,34.8 2.8,27.5 19.3,30.2 21.2,15.4 z" /><radialGradient
+         gradientUnits="userSpaceOnUse"
+         gradientTransform="matrix(1,0,0,-1,-22.5352,286.4424)"
+         r="29.7017"
+         cy="-32.0718"
+         cx="284.0137"
+         id="SVGID_7_"><stop
+           id="stop64"
+           style="stop-color:#431413"
+           offset="0" /><stop
+           id="stop66"
+           style="stop-color:#631E1C"
+           offset="0.1638" /><stop
+           id="stop68"
+           style="stop-color:#832320"
+           offset="0.3317" /><stop
+           id="stop70"
+           style="stop-color:#9C2222"
+           offset="0.4843" /><stop
+           id="stop72"
+           style="stop-color:#AC2023"
+           offset="0.615" /><stop
+           id="stop74"
+           style="stop-color:#B21F24"
+           offset="0.7084" /><stop
+           id="stop76"
+           style="stop-color:#AA1F24"
+           offset="0.9992" /><stop
+           id="stop78"
+           style="stop-color:#A91F24"
+           offset="1" /></radialGradient><path
+         style="fill:url(#radialGradient5925)"
+         inkscape:connector-curvature="0"
+         id="path80"
+         d="m 212.2,329.1 c 53.3,11.3 93.6,-33.7 64.8,-44.5 -26.1,-9.8 -90.1,39.1 -64.8,44.5 z" /><radialGradient
+         gradientUnits="userSpaceOnUse"
+         gradientTransform="matrix(1,0,0,-1,-22.5352,286.4424)"
+         r="32.879902"
+         cy="24.653299"
+         cx="341.5293"
+         id="SVGID_8_"><stop
+           id="stop83"
+           style="stop-color:#941F21"
+           offset="0.1255" /><stop
+           id="stop85"
+           style="stop-color:#9E2922"
+           offset="0.3432" /><stop
+           id="stop87"
+           style="stop-color:#C24028"
+           offset="0.73" /><stop
+           id="stop89"
+           style="stop-color:#DC5726"
+           offset="1" /></radialGradient><path
+         style="fill:url(#radialGradient5927)"
+         inkscape:connector-curvature="0"
+         id="path91"
+         d="m 281.7,286 c 53.2,-11.6 71.4,-69.2 40.8,-67.2 -27.8,1.8 -66,72.7 -40.8,67.2 z" /><radialGradient
+         gradientUnits="userSpaceOnUse"
+         gradientTransform="matrix(1,0,0,-1,-22.5352,286.4424)"
+         r="29.700199"
+         cy="121.2026"
+         cx="357.6279"
+         id="SVGID_9_"><stop
+           id="stop94"
+           style="stop-color:#941F21"
+           offset="0.1255" /><stop
+           id="stop96"
+           style="stop-color:#9E2922"
+           offset="0.3432" /><stop
+           id="stop98"
+           style="stop-color:#C24028"
+           offset="0.73" /><stop
+           id="stop100"
+           style="stop-color:#DC5726"
+           offset="1" /></radialGradient><path
+         style="fill:url(#radialGradient5929)"
+         inkscape:connector-curvature="0"
+         id="path102"
+         d="m 328.9,196.4 c 34.9,-25.2 18.3,-70 18.3,-70 0,0 -7.7,23.1 -14.7,50.3 -6.9,27.1 -24.5,34.8 -3.6,19.7 z" /><radialGradient
+         gradientUnits="userSpaceOnUse"
+         gradientTransform="matrix(1,0,0,-1,-22.5352,286.4424)"
+         r="37.114899"
+         cy="191.8696"
+         cx="348.78909"
+         id="SVGID_10_"><stop
+           id="stop105"
+           style="stop-color:#941F21"
+           offset="0" /><stop
+           id="stop107"
+           style="stop-color:#C13F28"
+           offset="0.6383" /><stop
+           id="stop109"
+           style="stop-color:#DC5726"
+           offset="1" /></radialGradient><path
+         style="fill:url(#radialGradient5931)"
+         inkscape:connector-curvature="0"
+         id="path111"
+         d="m 339.3,118.1 c -3.7,-43.2 -30.5,-65.6 -30.5,-65.6 0,0 2.7,14.7 6.3,34.8 4.8,27.5 26.4,56.5 24.2,30.8 z" /><radialGradient
+         gradientUnits="userSpaceOnUse"
+         gradientTransform="matrix(0.9408,0,0,-0.8863,-1.4635,258.6756)"
+         r="328.84091"
+         cy="267.0405"
+         cx="188.16161"
+         id="SVGID_11_"><stop
+           id="stop114"
+           style="stop-color:#52C4F1"
+           offset="0" /><stop
+           id="stop116"
+           style="stop-color:#45BBEC"
+           offset="7.686110e-002" /><stop
+           id="stop118"
+           style="stop-color:#00A9DC"
+           offset="0.1822" /><stop
+           id="stop120"
+           style="stop-color:#2276B8"
+           offset="0.3757" /><stop
+           id="stop122"
+           style="stop-color:#035495"
+           offset="0.5011" /><stop
+           id="stop124"
+           style="stop-color:#1D204E"
+           offset="0.7495" /></radialGradient><path
+         style="fill:url(#radialGradient5933)"
+         inkscape:connector-curvature="0"
+         id="path126"
+         d="m 175.6,338.3 c 93.2,0 168.7,-75.6 168.7,-168.8 C 344.3,76.3 268.8,0.7 175.6,0.7 82.4,0.7 6.9,76.3 6.9,169.5 c 0,93.2 75.5,168.8 168.7,168.8 z" /><radialGradient
+         gradientUnits="userSpaceOnUse"
+         r="216.03551"
+         cy="31.5166"
+         cx="178.5493"
+         id="SVGID_12_"><stop
+           id="stop129"
+           style="stop-color:#00A2DC"
+           offset="8.199999e-002" /><stop
+           id="stop131"
+           style="stop-color:#0096D4"
+           offset="0.1608" /><stop
+           id="stop133"
+           style="stop-color:#2578B8"
+           offset="0.3277" /><stop
+           id="stop135"
+           style="stop-color:#2276B8"
+           offset="0.33" /><stop
+           id="stop137"
+           style="stop-color:#035495"
+           offset="0.4999" /><stop
+           id="stop139"
+           style="stop-color:#14143E"
+           offset="0.8324" /></radialGradient><path
+         style="opacity:0.5;fill:url(#radialGradient5935)"
+         inkscape:connector-curvature="0"
+         id="path141"
+         d="m 149.6,304.9 c 0.6,0.3 1.1,0.3 1.7,-0.1 0.3,-0.2 0.3,-0.5 0.3,-0.8 -0.1,-0.2 -0.3,-0.6 -0.4,-0.8 -0.5,-0.4 -1.2,0.5 -1.5,0.8 -0.2,0.3 -0.4,0.4 -0.7,0.3 0.2,0.2 0.3,0.4 0.6,0.6 z m -3.9,0.4 c -0.3,-0.2 -0.7,-0.1 -1.1,-0.1 -0.3,0 -0.6,-0.2 -0.9,0 -0.2,0.1 -0.3,0.2 0,0.4 0.2,0.1 0.7,0.1 0.9,0.2 0.2,0.1 0.4,0.1 0.6,0.2 v 0.1 c 0.1,0 0.1,-0.1 0.2,-0.2 0.1,-0.1 0.3,-0.1 0.3,-0.1 0.3,-0.2 0.2,-0.3 0,-0.5 z m -63.4,-9.5 c -0.3,-0.2 -0.5,-0.5 -0.9,-0.7 -0.6,-0.4 -1.1,-0.8 -1.7,-1.2 -0.4,-0.3 -0.7,-0.7 -1.1,-0.9 -0.3,-0.2 -0.6,-0.4 -0.9,-0.6 -0.2,-0.2 -0.6,-0.3 -0.8,-0.5 -0.2,-0.2 -0.3,-0.8 -0.7,-0.4 0.1,0.4 0.8,1 1.1,1.2 0.6,0.3 1.1,0.4 1.5,0.9 0.3,0.4 0.8,0.6 1.2,1 0.4,0.4 0.8,0.8 1.2,1.2 l 0,0 c 0.1,0.2 0.6,0.3 0.9,0.4 0.2,0.1 0.7,0.4 0.9,0.3 -0.1,-0.4 -0.4,-0.6 -0.7,-0.7 z m 66.7,8.5 c -0.1,0 -0.1,-0.1 0,0 -0.1,-0.1 -0.2,-0.1 -0.2,-0.2 0,0.1 0.1,0.1 0.2,0.2 -0.1,0 -0.1,0 0,0 z M 35.7,147.2 l 0.1,0.1 c 0.2,-0.1 0.1,-0.1 0.2,-0.3 0,-0.1 0,-0.3 0,-0.4 0.1,-0.1 0.2,-0.1 0.3,-0.2 0.1,-0.1 0.1,-0.1 0.2,-0.3 0,-0.2 0.2,-0.3 0.2,-0.4 0,-0.1 0,-0.2 0,-0.4 0,-0.2 0,-0.3 -0.1,-0.5 0,-0.1 -0.1,-0.1 -0.2,-0.2 -0.2,-0.1 -0.3,-0.1 -0.4,0.1 -0.1,0.1 -0.2,0.2 -0.2,0.3 -0.1,0.2 -0.2,0.5 -0.2,0.7 0,0.1 0,0.3 0,0.4 0,0.2 -0.1,0.3 -0.1,0.5 -0.1,0.1 0,0.6 0.2,0.6 z m 88.9,80.6 -0.1,-0.1 c 0,0 0,0 0,0 0,0.1 0,0.3 0.1,0.4 -0.1,-0.1 -0.1,-0.2 0,-0.3 z M 46.8,146.7 c -0.1,-0.2 -0.5,-0.1 -0.7,-0.1 -0.2,0 -0.2,0 -0.3,0.1 0,0 -0.1,0.1 -0.1,0.1 0,0 -0.1,0 -0.1,0 -0.1,0.1 0,0.2 -0.1,0.3 0,0.1 -0.1,0.1 -0.2,0.1 -0.2,0.1 -0.3,0.3 -0.4,0.5 -0.1,0.2 -0.3,0.4 -0.4,0.6 -0.1,0.2 -0.3,0.3 -0.3,0.6 0,0.4 0.4,0.7 0.6,1 0.2,0.3 0.5,0.7 0.3,0.9 0.1,0.1 0.1,0.2 0.3,0.2 0.1,0 0.2,-0.1 0.3,-0.2 0.1,-0.2 0.2,-0.4 0.2,-0.6 0,-0.3 0.1,-0.3 0.3,-0.5 0.1,-0.1 0.1,-0.1 0.2,-0.2 0.1,-0.1 0.1,-0.1 0.1,-0.3 0,-0.1 0.2,-0.3 0.3,-0.5 0.1,-0.1 0.1,-0.1 0.2,-0.2 0.1,-0.1 0.2,-0.2 0.3,-0.3 0.1,-0.1 0.1,-0.2 0,-0.3 -0.1,-0.1 -0.1,-0.2 -0.2,-0.4 0,-0.1 0,-0.2 0,-0.3 -0.1,-0.2 -0.2,-0.3 -0.3,-0.5 z m -3.4,99.6 c -0.1,-0.3 -0.1,-0.8 -0.6,-0.8 -0.1,0.3 0.2,0.6 0.3,0.9 0.1,0.2 0.1,0.5 0.2,0.8 0.3,0.5 0.6,1.1 1,1.5 h 0.1 c 0.2,0.2 0.4,0.8 0.8,0.6 -0.2,-0.7 -0.8,-1.3 -1.1,-1.9 -0.3,-0.3 -0.6,-0.7 -0.7,-1.1 z M 40.2,135.1 c -0.1,-0.1 -0.2,0 -0.3,-0.1 -0.1,-0.1 -0.1,-0.2 -0.2,-0.3 -0.1,-0.1 -0.2,-0.2 -0.3,-0.2 -0.2,-0.1 -0.4,0 -0.6,0 -0.1,0 -0.2,-0.1 -0.3,-0.1 -0.1,0 -0.2,0.1 -0.3,0.1 -0.1,0 -0.2,0 -0.3,0.1 -0.1,0.1 -0.2,0.2 -0.3,0.3 -0.1,0.1 -0.1,0.1 -0.2,0.2 -0.1,0.1 -0.1,0.1 -0.1,0.2 -0.1,0.1 -0.2,0.1 -0.3,0.2 -0.1,0.1 -0.1,0.3 -0.1,0.5 -0.1,0.2 -0.1,0.5 0,0.7 0,0.1 0.1,0.2 0.2,0.3 0.1,0.1 0.2,0.3 0.3,0.4 l 0.1,0.1 c 0,0.1 0.1,0.2 0.2,0.2 0.1,0.1 0.2,0.1 0.3,0 0.2,-0.1 0.3,-0.1 0.4,-0.3 0.2,-0.2 0.3,-0.3 0.5,-0.4 0.2,-0.1 0.4,-0.2 0.7,-0.3 0.2,-0.1 0.3,-0.2 0.5,-0.3 0.2,-0.1 0.3,-0.2 0.4,-0.4 0.1,-0.2 0,-0.3 -0.1,-0.5 -0.1,-0.2 -0.1,-0.3 -0.2,-0.4 z m 32.7,149.2 c -0.2,-0.8 -0.6,-1.5 -0.9,-2.3 -0.1,-0.3 -0.1,-0.6 -0.3,-0.9 -0.1,-0.2 -0.2,-0.2 -0.2,-0.4 -0.2,-0.3 -0.1,-0.6 -0.3,-0.9 -0.1,-0.2 -0.2,-0.2 -0.4,-0.3 -0.1,-0.1 -0.1,0 -0.2,-0.2 0,-0.1 -0.1,-0.3 -0.1,-0.4 -0.1,-0.1 -0.2,-0.3 -0.3,-0.4 -0.2,-0.2 -0.6,-0.8 -0.8,-0.6 -0.1,-0.2 -0.3,-0.3 -0.5,-0.4 -0.2,-0.2 -0.4,-0.4 -0.5,-0.5 -0.4,-0.3 -0.3,-0.9 -0.7,-1.3 -0.4,-0.4 -0.6,-0.7 -0.9,-1.2 -0.2,-0.3 -0.5,-0.7 -0.9,-0.9 -0.1,0.3 0.3,0.8 0.4,1.1 0,0 0,0.1 -0.1,0 0.2,0.2 0.1,0.4 0.2,0.6 0.1,0.2 0.2,0.3 0.3,0.4 0.1,0.2 0.1,0.3 0.1,0.5 0.1,0.2 0.3,0.3 0.4,0.5 0.1,0.2 0.2,0.6 0.3,0.8 0.1,0.2 0.2,0.3 0.3,0.5 0,0.2 0,0.4 0.1,0.5 0.2,0.6 0.6,1.3 1.1,1.8 0.2,0.3 0.4,0.5 0.6,0.8 0.2,0.3 0.5,0.4 0.5,0.8 0.5,0 0.7,0.5 0.9,0.9 0.3,0.4 0.6,0.8 0.9,1.3 0.2,0.4 0.3,1.2 0.6,1.4 0.4,0.2 0.7,0.7 1.1,0.9 l 0.2,0.1 c 0.1,-0.1 -0.3,-0.9 -0.5,-1.1 -0.1,-0.4 -0.2,-0.7 -0.4,-1.1 z m -23.2,-24 c -0.3,-0.7 -0.6,-1.3 -0.9,-2 -0.1,-0.3 -0.3,-0.5 -0.4,-0.8 -0.1,-0.2 -0.1,-0.7 -0.4,-0.9 -0.5,-0.3 -0.2,0.4 -0.1,0.6 0.1,0.3 0.2,0.6 0.3,0.9 0.1,0.2 0.3,0.5 0.4,0.7 0,0.1 0,0.3 0,0.4 0.1,0.3 0.5,0.6 0.6,0.9 0.2,0.5 0.6,1.1 0.6,1.6 0.1,0.7 0.6,1.3 1.2,1.8 l 0.1,-0.1 c 0.3,0.1 0.4,0.4 0.7,0.5 0.1,-0.6 -0.5,-1.4 -0.9,-1.8 -0.4,-0.6 -0.9,-1.1 -1.2,-1.8 z m 18.9,15.5 c 0.2,0.4 0.6,0.6 0.8,1 l 0.1,-0.1 c 0,0.1 0.1,0.2 0.2,0.3 0.4,-0.2 -0.5,-1.4 -0.7,-1.7 -0.3,-0.4 -1.4,-1.6 -1.9,-1.4 -0.2,0.5 0.4,0.8 0.8,1.1 0,0 0,0.1 -0.1,0.1 0.3,0.2 0.6,0.3 0.8,0.7 z m 3.3,9.8 c -0.1,-0.1 -0.1,-0.3 -0.2,-0.4 0,-0.1 -0.1,-0.2 -0.1,-0.3 0,0 0,0 0,-0.1 0,0 0,0 -0.1,-0.1 0,0 -0.1,-0.1 -0.1,-0.1 0,0 0,-0.1 -0.1,-0.1 0,0 -0.1,-0.1 -0.1,-0.1 0,0 -0.1,-0.1 -0.1,-0.1 0,0 0,-0.1 -0.1,-0.1 0,-0.1 -0.1,-0.2 -0.1,-0.2 0,-0.1 -0.1,-0.2 -0.1,-0.2 -0.1,-0.1 -0.1,-0.1 -0.1,-0.2 0,-0.1 0,-0.1 -0.1,-0.2 -0.1,0 -0.1,-0.1 -0.1,-0.2 0,-0.1 -0.1,-0.2 -0.2,-0.3 0,-0.1 -0.1,-0.1 -0.1,-0.2 0,0 -0.1,-0.1 -0.1,-0.1 0,0 -0.1,-0.1 -0.1,-0.1 0,0 0,-0.1 -0.1,-0.1 0,-0.1 -0.1,-0.1 -0.1,-0.2 -0.1,-0.1 -0.1,-0.3 -0.2,-0.3 0,0 -0.1,-0.1 -0.1,-0.1 0,0 0,0 0,0.1 0,0.1 0.1,0.1 0.1,0.2 0,0 0,0 0,0.1 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0.1 0,0 0,0.1 0,0.1 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0.1 0,0.1 0.1,0.1 0.1,0.2 0,0.1 0.1,0.1 0.1,0.2 0.1,0.1 0.1,0.1 0.2,0.2 0.1,0.1 0.2,0.2 0.2,0.4 0.1,0.1 0.1,0.1 0.1,0.2 0,0.1 0.1,0.1 0.1,0.2 0.1,0.1 0.2,0.2 0.3,0.4 0,0.1 0.1,0.2 0.1,0.2 0,0.1 0.1,0.1 0.1,0.2 0,0.1 0.1,0.1 0.1,0.2 0,0 0.1,0.1 0.1,0.1 0,0.1 0,0.2 0.1,0.2 0,0 0,0 0.1,0.1 0,0 0.1,0.1 0.1,0.1 0,0 0,0.1 0.1,0.1 0,0 0,0 0.1,0.1 0,0.1 0.1,0.1 0.2,0.1 0.1,0.1 0.2,0.1 0.2,0.2 0,0 0.1,0.1 0.1,0.1 0,0 0.1,0.1 0.1,0.1 0,0 -0.1,-0.1 -0.1,-0.1 -0.1,-0.3 -0.1,-0.4 -0.2,-0.4 z m 67.8,22.7 0,-0.1 c -0.8,-0.3 -0.9,0.8 -0.2,1.1 0.3,0.1 0.5,0 0.6,-0.2 0.1,-0.1 0.1,-0.7 -0.2,-0.5 l 0.2,-0.3 c -0.2,0.1 -0.3,0.1 -0.4,0 z m 2.6,-2.6 0.2,0.1 c 0.1,-0.3 0.1,-0.5 0,-0.8 -0.1,-0.3 -0.3,-0.3 -0.6,-0.4 -0.3,-0.2 -0.4,-0.4 -0.7,-0.6 -0.2,-0.1 -0.8,-0.1 -1,0 -0.2,0.2 0.5,1 0.7,1.2 0.3,0.1 1.5,1.2 1.4,0.5 z m -0.6,2.3 c 0.4,0.1 0.8,0.1 1.1,-0.2 0.3,-0.4 0.2,-0.7 -0.2,-1 l 0.1,-0.1 c -0.2,-0.2 -1.1,-0.1 -1.3,0.1 -0.5,0.5 -0.2,1 0.3,1.2 z M 37.2,146 l 0,0 c 0.1,0.1 0.1,0.1 0.1,0.1 0,0.1 0,0.2 0.1,0.3 0.1,0.1 0.3,0 0.3,-0.1 0.1,-0.1 0.2,-0.2 0.3,-0.3 0.1,-0.1 0.3,-0.2 0.5,-0.4 0.1,-0.1 0.1,-0.2 0.2,-0.4 0,-0.1 0.1,-0.1 0.2,-0.2 0.1,-0.1 0.1,-0.2 0.2,-0.3 0.2,-0.2 0.4,-0.4 0.5,-0.6 0,-0.1 0,-0.1 0.1,-0.2 0,-0.1 0.1,-0.1 0.1,-0.2 0.1,-0.1 0.1,-0.2 0.2,-0.3 0.2,-0.4 0.5,-0.7 0.7,-1 0.2,-0.3 0.5,-0.6 0.8,-0.8 0.3,-0.3 0.6,-0.6 0.7,-1 0.1,-0.2 0.1,-0.4 0.3,-0.6 0.1,-0.1 0.2,-0.2 0.2,-0.4 0,-0.3 -0.2,-0.6 -0.3,-0.8 0,-0.1 0,-0.1 -0.1,-0.2 -0.1,-0.1 -0.1,-0.1 -0.2,-0.2 -0.1,-0.1 -0.1,-0.2 -0.2,-0.3 0,-0.2 -0.1,-0.5 -0.3,-0.6 -0.3,-0.1 -0.3,0.3 -0.5,0.4 0,0 -0.1,0 -0.1,0.1 0,0 -0.1,0.1 -0.1,0.1 -0.1,0.1 -0.2,0.2 -0.3,0.3 -0.1,0.1 -0.1,0.3 -0.2,0.4 -0.1,0.1 -0.2,0.3 -0.3,0.4 -0.1,0.2 -0.3,0.4 -0.4,0.6 -0.2,0.2 -0.2,0.5 -0.4,0.7 -0.1,0.2 -0.2,0.2 -0.3,0.4 0,0.1 -0.1,0.3 -0.2,0.4 -0.1,0.1 -0.2,0.2 -0.2,0.3 -0.1,0.2 -0.1,0.4 -0.3,0.5 -0.1,0.1 -0.2,0.1 -0.2,0.2 0,0.1 0,0.1 0,0.2 0,0.1 0,0.1 -0.1,0.2 -0.1,0.2 -0.2,0.2 -0.3,0.3 -0.1,0.1 -0.1,0.3 -0.2,0.4 -0.1,0.3 -0.1,0.5 -0.2,0.8 -0.1,0.3 -0.2,0.6 -0.2,1 0,0.1 0,0.2 -0.1,0.3 0,0.1 0,0.2 0,0.3 0.2,0 0.2,0 0.2,0.2 z m 1,59.3 c 0.1,0 0.1,0 0,0 0.5,0 0.5,-0.4 0.5,-0.8 0.1,-0.4 -0.1,-0.7 -0.4,-1 0,0 -0.1,0 -0.1,0.1 -0.4,-0.4 -0.6,0.4 -0.6,0.6 0.1,0.4 0.5,0.7 0.6,1.1 l 0,0 z M 162,269.6 c -0.7,-0.2 -1.3,-0.4 -2,-0.4 -0.8,0 -1.5,-0.4 -2.2,-0.6 -0.4,-0.1 -0.7,-0.1 -1,-0.5 -0.2,-0.3 -0.3,-0.5 -0.6,-0.6 -0.8,-0.4 -0.5,-1.3 -1,-1.8 -0.2,-0.2 -0.4,-0.4 -0.5,-0.6 -0.3,-0.3 -0.7,-0.4 -1.1,-0.5 -0.1,-0.1 -0.3,-0.2 -0.4,-0.2 -0.3,-0.1 -0.4,0.1 -0.6,-0.2 -0.1,-0.2 -0.2,-0.6 -0.2,-0.8 -0.1,-0.6 -0.3,-0.6 -0.7,-1 -0.4,-0.4 -0.3,-0.8 -0.9,-0.8 -0.5,0 -0.9,0.2 -1.4,0 -0.5,-0.2 -1,-0.6 -1.4,-0.9 -0.6,-0.6 -1.1,-1.3 -1.7,-1.9 -0.3,-0.3 -0.6,-0.5 -0.9,-0.9 -0.1,-0.1 -0.2,-0.3 -0.3,-0.5 0,-0.1 0.1,-0.2 0,-0.4 -0.1,-0.1 -0.2,-0.2 -0.3,-0.3 -0.3,-0.4 -0.5,-0.7 -0.6,-1.2 0,-0.2 -0.1,-0.4 -0.2,-0.5 -0.1,-0.2 -0.4,-0.2 -0.5,-0.3 -0.3,-0.4 -0.5,-0.8 -1,-1.2 -0.3,-0.3 -0.8,-0.5 -1.2,-0.7 -0.4,-0.2 -0.7,-0.3 -1.1,-0.5 -0.2,-0.1 -0.5,-0.1 -0.7,-0.1 -0.2,-0.1 -0.3,-0.3 -0.6,-0.3 0,-0.1 0,-0.1 0,-0.2 -0.5,-0.1 -0.4,-1.3 -0.7,-1.6 -0.3,-0.4 -0.8,-0.6 -1.3,-0.6 -0.6,0 -1.1,0.1 -1.7,-0.1 -0.6,-0.3 -0.6,-0.7 -1,-1.2 -0.4,-0.5 -1,-0.7 -1.6,-1 -0.5,-0.3 -1,-0.6 -1.4,-0.9 -0.5,-0.4 -0.7,-0.9 -1.2,-1.4 -0.4,-0.4 -0.9,-0.4 -1,-1 -0.2,0.2 -0.9,-0.1 -1.1,-0.3 -0.4,-0.3 -0.3,-0.5 -0.8,-0.6 -0.5,-0.2 -0.7,-0.3 -0.9,-0.8 -0.1,-0.3 -0.3,-0.7 -0.5,-0.9 -0.2,-0.2 -0.3,-0.3 -0.5,-0.4 -0.1,-0.1 -0.4,-0.1 -0.5,-0.1 -0.4,-0.3 -0.4,-0.5 -0.5,-0.9 0,-0.1 -0.2,-0.3 -0.2,-0.5 0,-0.2 -0.1,-0.3 -0.1,-0.5 -0.1,-0.3 -0.4,-0.7 -0.7,-0.9 0.5,-0.2 0.6,-0.7 0.7,-1.1 0,-0.3 0.1,-0.6 0.1,-0.8 0.1,-0.2 0.2,-0.3 0.2,-0.5 0.2,-0.5 0.2,-2.4 0.8,-2.4 0.1,-0.4 -0.2,-0.4 -0.2,-0.6 0,-0.2 0.2,-0.6 0.2,-0.8 0.1,-0.6 0.1,-1.1 0.2,-1.7 0.1,-0.5 0.1,-0.8 -0.3,-1.2 -0.3,-0.3 -0.8,-0.7 -0.4,-1.2 0,-0.2 0,-0.4 -0.1,-0.6 0.3,-0.3 0.3,-1 0.7,-1.4 0.3,-0.3 0.4,-0.2 0.6,-0.6 0.1,-0.3 0,-0.6 0.1,-1 0.1,-0.3 0.2,-0.4 0.4,-0.7 0.2,-0.3 0.2,-0.5 0.2,-0.9 0.1,-0.6 0.2,-1.3 0.3,-1.9 0.2,-1.3 0.6,-2.7 -0.7,-3.4 -0.5,-0.3 -1.1,-0.4 -1.6,-0.7 -0.3,-0.1 -0.6,-0.4 -0.8,-0.5 -0.2,-0.1 -0.6,0.3 -0.5,-0.3 -0.2,-0.1 -0.4,-0.1 -0.7,-0.3 0,0 0.1,-0.2 0.1,-0.2 0.2,0 0.4,0 0.6,0 -0.1,-0.7 0.7,-0.3 1,-0.7 0.3,-0.4 0.2,-1.1 0.5,-1.5 0.6,-0.8 1.4,-1.4 2.1,-1.9 0.9,-0.7 1.6,-1.5 0.8,-2.6 -0.3,-0.5 -0.8,-0.9 -0.9,-1.5 -0.1,-0.5 0.3,-1.2 0.1,-1.7 -0.9,-0.2 -0.8,-1.2 -1.1,-1.8 -0.2,-0.4 -0.6,-0.7 -0.8,-1.1 -0.2,-0.4 0,-0.8 0.1,-1.2 -0.1,0 -0.3,0.1 -0.5,0.2 -0.4,0.2 -0.6,0 -0.7,-0.5 0,-0.4 -0.1,-0.8 -0.2,-1.2 -0.2,-0.7 -1.1,-1.6 -1.8,-1.8 -0.4,-0.1 -0.9,-0.1 -1.4,-0.2 -0.5,-0.1 -0.7,-0.2 -1.2,-0.2 -0.4,0 -0.6,0.2 -1,0.2 -0.4,0.1 -0.9,-0.1 -1.2,0 -0.7,0.2 -1.2,0.9 -2,0.6 -0.4,-0.1 -0.5,-0.8 -0.8,-1.1 -0.4,-0.3 -0.8,-0.5 -1.1,-1 -0.8,-1.2 -1.4,-2.5 -2.8,-3.4 -0.7,-0.4 -1.3,-0.8 -2,-1.2 -0.7,-0.4 -1.3,-1 -2,-1.4 -0.7,-0.4 -1.6,-0.5 -2.2,-1.2 -0.7,-0.7 -1.5,-1.5 -2,-2.3 -0.5,-0.6 -0.7,-1.3 -1.1,-2 -0.3,-0.6 -0.7,-1.1 -0.9,-1.7 0,-0.1 -0.1,-0.2 -0.2,-0.3 0,-0.1 0,-0.2 0,-0.2 -0.1,-0.6 -0.6,-1.1 -0.9,-1.6 -0.3,-0.7 -0.4,-1 0,-1.7 0.3,-0.5 0.7,-1.1 1,-1.7 0.3,-0.8 -0.2,-1.4 -0.2,-2.1 0,-0.7 -0.6,-1.3 -0.2,-2 0.3,-0.5 0.9,-1 1.1,-1.6 0,-0.1 0,-0.4 0,-0.6 0,-0.1 -0.2,-0.2 -0.2,-0.3 0,-0.2 0.2,-0.2 0.2,-0.3 0.1,-0.2 0.1,-0.3 0.3,-0.5 0.4,-0.5 1.1,-1 1.7,-1.2 0.6,-0.2 1.3,-0.4 1.7,-0.9 0.2,-0.2 0.5,-0.5 0.6,-0.7 0.1,-0.3 -0.1,-0.7 -0.1,-1 0,-0.6 0.1,-1.5 0.7,-1.8 0.2,-0.1 0.4,-0.3 0.6,-0.4 0.2,-0.1 0.3,0 0.5,-0.1 0.1,-0.1 0.1,-0.2 0.2,-0.3 0.2,-0.1 0.3,0 0.5,0 0.2,0 0.2,-0.1 0.4,-0.1 0.4,-0.1 0.6,-0.3 0.9,-0.1 0.4,0.2 0.3,0.5 0.7,0.3 0.2,-0.1 0.5,-0.3 0.5,-0.6 0,-0.3 -0.4,-0.6 -0.2,-0.9 0,0 0.3,-0.1 0.4,-0.2 0.2,-0.1 0.2,-0.3 0.3,-0.4 0.2,-0.4 0.4,-0.7 0.7,-1.1 0.2,-0.2 0.3,-0.5 0.4,-0.7 0.1,-0.2 0.4,-0.5 0.4,-0.7 0,-0.1 -0.1,-0.3 -0.2,-0.4 -0.1,-0.2 0,-0.3 0,-0.5 0,-0.3 -0.2,-0.6 -0.2,-0.9 0,-0.6 0.5,-0.9 0.5,-1.4 0,-0.1 0,-0.2 0,-0.4 0,-0.1 0.1,-0.4 0.1,-0.4 0,-0.2 -0.1,-0.5 -0.1,-0.7 -0.1,-0.3 -0.1,-0.6 -0.2,-0.9 -0.1,-0.3 -0.4,-0.6 -0.6,-0.9 -0.3,-0.4 -0.6,-0.7 -0.8,-1.1 -0.3,-0.4 -0.6,-0.7 -0.9,-1 -0.8,0.1 0.1,1 0.1,1.4 0,0.2 -0.3,0.5 -0.5,0.6 -0.1,0.1 -0.2,0.1 -0.4,0.2 0,0.1 -0.1,0.1 -0.2,0.1 -0.1,0 -0.2,-0.1 -0.2,-0.2 -0.6,-0.1 -1.4,0 -1.7,0.7 -0.1,0.3 -0.1,0.7 -0.4,1 -0.3,0.3 -0.7,0.2 -1,0.5 -0.5,0.4 -0.6,1 -1.1,1.4 -0.2,0.1 -0.6,0.3 -0.9,0.4 -0.2,0 -0.3,0 -0.5,0 -0.2,0 -0.3,0.1 -0.6,0.1 -0.4,0 -0.7,0.2 -1.1,0.2 -0.4,0 -0.7,0 -1.1,0.1 -0.4,0.1 -0.7,0.1 -1.1,0.2 -0.4,0.1 -0.7,0.1 -1.1,0.2 -0.6,0.1 -0.9,0.6 -1.4,0.9 -0.5,0.4 -1.3,0.8 -2,0.9 -0.3,0 -0.8,-0.1 -1.1,0 -0.3,0.1 -0.6,0.3 -0.8,0.4 0,0 -0.1,0 -0.1,0 -0.4,0 -0.5,0.2 -1,0.2 -0.5,0 -0.9,0.1 -1.3,0.1 -0.5,0 -0.8,-0.1 -1.3,-0.1 -0.7,0 -1.1,-0.2 -1.7,-0.5 -0.2,-0.1 -0.8,-0.5 -1,-0.5 -0.3,0 -0.7,0.5 -1,0.6 -0.4,0.1 -0.7,0.3 -1.1,0.5 0,-0.1 0,-0.2 0,-0.3 0,0.2 -0.2,0.4 -0.3,0.6 -0.1,0.2 0,0.4 0,0.6 0,0.3 -0.1,0.8 -0.2,1.1 -0.3,0 -0.5,0.3 -0.7,0.4 -0.2,0.1 -0.4,0.2 -0.7,0.3 -0.3,0.1 -0.7,0 -0.9,0.1 -0.3,0.1 -0.3,0.3 -0.7,0.3 -0.2,0.1 -0.4,0 -0.6,0.1 -0.5,0.4 0,1 -0.6,1.4 -0.5,0.3 -0.9,0 -1.4,0 0,0.2 -0.1,0.4 -0.1,0.6 0,-0.1 -0.1,-0.4 -0.2,-0.4 -0.2,-0.2 -0.3,0.1 -0.5,0 -0.2,-0.2 0,-0.3 0,-0.5 0,-0.3 0.1,-0.3 0,-0.5 -0.1,-0.3 -0.3,-0.7 -0.4,-1 -0.1,-0.3 -0.3,-0.5 -0.6,-0.7 -0.3,-0.1 -0.3,-0.1 -0.5,-0.3 -0.1,-0.1 -0.2,-0.3 -0.3,-0.4 -0.3,-0.2 -0.8,-0.1 -1.2,-0.1 -0.8,-0.1 -1.6,0 -2.4,-0.1 -0.9,-0.1 -1.7,-0.3 -2.5,-0.2 -0.4,0.1 -0.9,0.3 -1.3,0.2 -0.5,-0.1 -0.4,-0.2 0,-0.4 0.5,-0.2 1.7,-0.8 1,-1.5 -0.4,-0.4 -0.7,0 -0.6,-0.7 0,-0.4 0.1,-0.8 -0.1,-1.1 -0.1,-0.1 -0.3,-0.3 -0.4,-0.4 -0.1,-0.2 -0.2,-0.4 -0.4,-0.6 -0.3,-0.4 -0.6,-0.6 -1,-0.8 -0.3,-0.1 -0.7,-0.1 -1.1,-0.2 -0.2,-0.1 -0.3,-0.2 -0.5,-0.3 -0.4,-0.1 -0.6,0 -0.9,0.3 -0.5,0.6 -0.8,1.7 -1.6,2 -0.3,0.1 -0.6,0.1 -0.9,0.2 -0.2,0.1 -0.4,0.2 -0.6,0.3 -0.4,0.2 -0.8,0.1 -1.1,0.4 -0.4,0.2 -0.6,0.4 -0.8,0.8 -0.1,0.3 -0.2,0.7 -0.4,1 -0.3,0.4 -0.8,0.4 -1.2,0.5 -0.4,0.1 -0.8,0.3 -1.2,0.4 -0.4,0.1 -0.8,0.2 -1.1,0.4 -0.3,0.2 -0.3,0.6 -0.6,0.9 -0.3,0.4 -0.8,0.4 -1.2,0.8 -0.3,0.4 -0.2,0.8 -0.3,1.2 -0.1,0.7 -0.8,2.1 -0.4,2.7 0.1,0.2 0.3,0.2 0.4,0.3 0.1,0.2 0.2,0.4 0.3,0.6 0.3,0.5 0.7,0.8 0.9,1.3 0.2,0.4 0.5,0.8 0.7,1.1 0.3,0.4 0.4,0.8 0.7,1.2 0.2,0.4 0.6,0.6 0.9,0.9 0.3,0.3 0.5,0.8 0.8,1.1 0.3,0.2 0.5,0.1 0.8,0.2 0.3,0.1 0.6,0.2 0.8,0.4 0.4,0.2 0.8,0.4 1.2,0.6 0.8,0.5 1.6,1.1 2.4,1.7 0.8,0.6 1.1,1.3 1.8,2 0.2,0.2 0.4,0.2 0.6,0.3 -0.1,0.1 -0.2,0.3 -0.3,0.4 -0.1,0.1 -0.4,0.7 -0.4,0.9 0,0.5 0.2,0.4 0.2,0.6 0.1,0.6 0.3,0.6 -0.3,1.2 -0.2,0.2 -0.5,0.4 -0.7,0.6 -0.5,0.6 -0.8,1.1 -1.3,1.7 -0.5,0.6 -0.9,1.2 -1.1,1.9 -0.2,0.5 -0.3,1.1 -0.8,1.5 -0.8,-0.6 -1.6,-2 -1.9,-2.9 -0.1,-0.6 0,-1.3 -0.2,-1.9 -0.1,-0.4 -0.6,-0.8 -0.8,-1.2 -0.3,-0.6 -0.6,-1 -0.9,-1.6 -0.2,-0.4 -0.6,-0.9 -0.7,-1.3 -0.2,-0.7 0.3,-1.1 -0.5,-1.4 0.1,0 -0.3,0.3 -0.5,0.3 -0.3,0 -0.6,-0.2 -0.6,-0.5 -0.4,-0.3 -0.7,0 -1.2,-0.1 -0.6,-0.1 -0.9,-0.4 -1.5,-0.5 -0.9,-0.1 -1.2,0.5 -1.5,1.2 -0.3,0.7 -0.5,1.4 -0.8,2.1 -0.2,0.7 -0.1,1.6 -0.7,2.1 -0.1,-0.4 0.3,-1 -0.3,-1.1 0.1,0.5 -0.1,1.6 -0.6,0.9 -0.3,-0.4 0,-1.6 0.2,-2 0.5,-1.3 0.9,-2.1 0.1,-3.5 -0.1,-0.1 -0.4,-0.6 -0.5,-0.7 -0.2,-0.2 -0.6,-0.2 -0.8,-0.4 -0.4,-0.4 -0.4,-1.3 -1,-1.6 -0.7,-0.4 -0.9,0.4 -1.4,-0.3 -0.4,-0.5 0,-1.1 -0.9,-1.3 -0.1,0.2 -0.6,0.7 -0.6,1 0,0.6 0.6,0.6 0.6,1.2 0.1,0.8 -0.4,0.5 -0.7,0.9 -0.2,0.2 -0.5,0.5 -0.7,0.8 -1.3,1.5 -3.9,0.1 -5.5,1.2 0,0.1 0,0.3 0,0.4 -0.9,0 -0.8,2.2 -1,2.9 -0.2,0.6 -0.3,1.2 -0.4,1.8 -0.1,0.5 -0.5,0.8 -0.7,1.3 -0.1,-0.1 -0.4,0 -0.5,-0.2 -1.4,0.8 0,4 0.3,5.1 0.3,0.9 0.5,1.8 0.7,2.7 0.2,0.7 0.8,1.7 0.7,2.4 0,0 -0.1,0 -0.1,0 0.6,1.9 1.1,4 1.9,5.8 0.3,0.7 0.5,0.8 1.2,1 0.8,0.2 0.7,0.2 1.1,0.8 0.3,0.4 0.7,0.7 0.6,1.2 -0.1,0.4 -0.4,0.8 -0.6,1.1 0,0 0,0 0,0 0,-0.1 0.6,0.7 0.6,0.7 0.3,0.2 0.2,0.2 0.5,0.4 0.6,0.3 1.2,0.4 1.9,0.8 0.6,0.4 0.8,0.7 1.3,1.2 0.5,0.6 1.1,0.7 1.6,1.2 0.5,0.5 0.6,1.1 0.7,1.7 0.1,0.3 0.1,0.8 0.2,1.1 0.1,0.3 0.4,0.5 0.6,0.8 0.3,0.7 -0.1,1.5 0.1,2.2 0.1,0.6 0.5,0.9 0.8,1.4 0,0.1 -0.1,0.3 -0.1,0.3 -1.5,-0.9 -1.7,0.4 -2.6,1 -0.5,0.3 -0.7,0.4 -1.1,0.8 -0.3,0.3 -0.8,0.9 -1.1,1 -1.1,1.7 -2.8,-2.2 -3.7,-2.3 0,-0.5 -0.5,-0.9 -0.8,-1.3 -1.1,0 -1.4,0.1 -1.2,1.3 0.1,0.5 0.2,0.8 0.4,1.3 0,0.1 0.1,0.3 0.1,0.4 0,0 -0.1,0 -0.1,0 -0.1,0.5 0.1,0.7 0.3,1.1 0.2,0.4 0,0.8 0.1,1.2 0.2,0.7 0.3,1.4 0.6,2.1 0.3,0.7 0.8,1.3 1.2,1.9 0.5,0.6 1.3,1.1 1.2,1.9 -0.3,0.1 -0.5,-0.3 -0.5,-0.5 -0.4,-0.1 -0.2,0.5 -0.1,0.7 0.1,0.4 0.1,0.5 0.1,0.9 -0.1,0.4 0.2,0.6 0.2,1 0,0.2 -0.1,0.3 -0.1,0.5 0,0.2 0,0.4 0,0.6 0,0.4 0,0.5 0.2,0.9 0.2,0.3 0.1,0.7 0,1 -0.1,0.7 -0.4,1.3 -0.6,1.9 -0.1,0.4 0,0.6 0.1,1 0.1,0.4 0.1,0.7 0.4,1 0.3,0.2 0.6,0.4 0.8,0.7 0.1,0.2 0.2,0.4 0.4,0.6 0,0.4 -0.1,0.8 -0.1,1.1 -0.1,0.4 -0.1,0.8 -0.1,1.2 0,0.2 0,0.4 0,0.6 0,0.2 0.2,0.3 0.2,0.5 0.1,0.5 -0.1,0.8 0,1.3 0.1,0.4 0.3,0.8 0.5,1.1 0.1,0.3 0.4,0.6 0.6,0.9 0.2,0.3 0.1,0.8 0.5,0.8 -0.1,0.5 0.3,0.4 0.5,0.6 0.2,0.2 0.2,0.6 0.3,0.8 0.3,0.5 0.5,1.1 0.8,1.6 0.7,1.1 1.2,2.2 1.8,3.4 0.3,0.6 0.7,1.2 1,1.8 0.3,0.6 0.4,1.2 0.9,1.7 0.4,0.5 0.8,0.9 1.2,1.4 0.2,0.2 0.2,0.5 0.4,0.7 0.3,0.4 0.6,0.2 0.9,0.1 0,-0.3 0,-0.5 0,-0.8 0.8,-0.1 2,-0.3 2.3,0.8 0.5,0.1 0.7,-0.3 1.1,-0.1 0.1,0.4 0.1,0.7 0.3,1.1 0.2,0.4 0.4,0.7 0.6,1.1 0.2,0.4 0.6,0.2 0.9,0 0.3,-0.3 0.3,-0.6 0.5,-1 0.7,-0.1 -0.1,-0.8 -0.1,-1 0,-0.2 0.1,-0.3 0,-0.6 -0.1,-0.2 -0.3,-0.4 -0.2,-0.6 0.2,0.1 0.3,0.5 0.4,0.7 0.2,0.3 0.4,0.5 0.5,0.8 0.3,0.8 0.7,1 1.2,1.5 0.4,0.4 0.8,0.9 1.2,1.3 0.3,0.3 0.7,0.2 1,0.5 0.1,0.1 0.1,0.3 0.2,0.4 0.1,0.1 0.3,0.2 0.4,0.3 0.1,0.2 0.1,0.3 0.2,0.5 0.1,0.1 0.2,0.1 0.3,0.2 0.3,0.2 0.3,0.5 0.6,0.4 0.4,-0.1 0.4,-0.3 0.7,0 0.2,0.2 0.5,0.6 0.7,0.8 0.2,0.3 0.2,0.5 0.3,0.9 0,0.1 0,0.1 0,0.2 -0.2,0.2 -0.4,0.5 -0.4,0.7 0,0.3 0.4,0.6 0.5,0.8 0.2,0.3 0.4,0.6 0.6,1 0.1,0.4 0.3,0.7 0.5,1 0.2,0.4 0.5,0.5 0.7,0.9 0.1,0.3 0.2,0.7 0.4,1 0.2,0.3 0.9,0.5 0.8,1 -0.9,0.1 -1.4,-0.7 -2.1,-1 -0.1,0.2 0.2,0.3 0.3,0.5 0.1,0.2 0,0.4 0.3,0.6 -0.2,0.2 0,0.4 0.2,0.6 0.3,0.3 0.6,0.5 1,0.8 0.3,0.3 0.7,0.7 1,1 0.2,0.3 0.3,0.4 0.5,0.6 0.2,0.2 0.4,0.3 0.5,0.6 0.1,0.2 0.1,0.4 0.3,0.6 0.1,0.1 0.2,0.1 0.3,0.2 0.1,0.2 0.1,0.4 0.2,0.5 0.1,0.4 0.4,0.4 0.6,0.8 0.1,0.2 0.1,0.5 0.3,0.7 0.1,0.2 0.2,0.3 0.3,0.5 0,0.1 0,0.3 0,0.4 0.1,0.2 0.2,0.3 0.3,0.4 0.2,0.4 0.4,0.9 0.7,1.3 0.2,0.3 0.5,0.9 0.8,1.1 0.2,-0.9 -0.7,-1.6 -0.9,-2.4 0.2,0 0.4,0.3 0.6,0.4 0,-0.4 -0.1,-0.5 -0.3,-0.9 -0.2,-0.3 -0.2,-0.8 -0.4,-1.1 0.1,0 0.3,0 0.4,0 0,-0.4 0.2,-0.6 0.2,-1 0.5,-0.1 0.9,0.4 1.3,0.4 0.2,-0.4 -0.6,-1 -0.7,-1.5 -0.1,-0.5 0,-1.3 0.7,-1.2 0.6,0.1 0.8,0.7 1.2,1 0.5,0.3 1.1,0.1 1.7,0.2 0.6,0.1 1,0.3 1.5,0.7 0.2,0.2 0.5,0.2 0.7,0.4 0.3,0.2 0.2,0.5 0.4,0.7 0.2,0.4 0.5,0.9 0.8,1.2 0.1,0.1 0.5,0.3 0.6,0.5 0.2,0.4 -0.3,0.3 -0.1,0.7 0.6,0.2 0.8,0.9 1.1,1.4 0.2,0.3 0.4,0.5 0.7,0.8 0.2,0.3 0.3,0.4 0.4,0.7 0.1,0.2 0.3,0.4 0.4,0.6 0.1,0.3 0.1,0.5 0.3,0.8 0.3,0.4 0.7,0.8 1,1.2 0.2,0.2 0.4,0.4 0.4,0.7 0,0.2 -0.1,0.6 -0.2,0.8 -0.2,0.2 -0.5,0.4 -0.8,0.4 -0.3,0 -0.4,-0.1 -0.6,-0.3 -0.4,-0.3 -1.1,-0.4 -1.4,-0.8 -0.2,-0.2 -0.2,-0.5 -0.5,-0.7 -0.2,-0.1 -0.7,-0.2 -0.9,-0.2 0.1,0.4 0.6,0.8 0.8,1.1 0.3,0.4 0.3,0.8 0.7,1.1 -0.5,0 -1,-0.6 -1.5,-0.8 0.1,0.3 0.5,0.6 0.7,0.8 0.3,0.3 0.6,0.6 0.9,1 0.3,0.4 1,0.8 1,1.4 0,0.4 -0.2,0.5 0.1,0.8 0.2,0.3 0.6,0.4 0.8,0.6 0.2,0.1 0.3,0.4 0.5,0.5 0.3,0.2 0.5,0.2 0.8,0.4 1,0.8 2.1,1.5 3.1,2.2 0.5,0.3 0.9,0.9 1.5,0.5 0.3,-0.2 0.5,-0.4 0.8,-0.4 0.4,0 0.6,0.3 0.8,0.6 0.2,0.3 0.3,0.6 0.5,0.9 0.2,0.2 0.5,0.5 0.6,0.8 0.1,0.2 0,0.2 0,0.3 0,0.1 0,0.4 0,0.5 0,0.1 0.2,0.2 0.3,0.3 0.1,0.1 0.1,0 0.2,0.2 0,0.1 0,0.3 0,0.4 0.1,0.3 0.4,0.5 0.5,0.7 0.2,0.3 0.4,0.6 0.6,0.8 0.1,0.1 0.3,0.2 0.3,0.4 0.1,0.2 0,0.3 0.1,0.5 0.2,0.4 0.6,0.5 0.9,0.9 0.3,0.6 0.6,1.2 1.1,1.7 0.2,0.2 0.5,0.3 0.7,0.6 0.3,0.3 0.5,0.6 0.8,0.9 0.6,0.7 1.3,1.4 2,2 0.3,0.2 0.8,0.6 1.1,0.7 0.1,0.2 0.1,0.3 0.1,0.5 0.3,0 0.4,0.5 0.6,0.6 0.1,0.1 0.3,0.1 0.4,0.3 0.1,0.2 0,0.4 0.1,0.6 0.1,0.3 0.7,0.4 1,0.2 0.4,-0.2 0.4,-0.5 0.9,-0.4 0.5,0 0.4,0.2 0.6,0.5 0.3,0.4 0.3,0.6 0.2,1.1 -0.1,0.3 -0.1,0.6 -0.1,0.9 0.1,0.3 0.1,0.7 0.2,1.1 0.1,0.4 0.4,0.4 0.7,0.5 0.1,0 0.4,0 0.5,0.1 0.2,0.1 0.2,0.5 0.5,0.6 0.4,0.3 0.8,0.2 1.1,0.5 0.3,0.3 0.7,0.6 1,0.9 0.2,0.2 0.2,0.3 0.5,0.4 0.2,0.1 0.5,0.2 0.7,0.4 0.5,0.3 1.1,0.4 1.6,0.7 0.5,0.3 0.8,0.4 1.3,0.6 0.5,0.2 1,0.6 1.5,0.9 0.4,0.2 0.8,0.6 1.2,0.9 0.3,0.3 0.5,0.7 0.8,1 0.3,0.2 0.7,0.3 1,0.6 0.3,0.3 0.6,0.5 0.9,0.7 0.3,0.2 0.5,0.2 0.8,0.3 0.5,0.2 1,0.5 1.5,0.6 0.8,0.2 1.5,0.5 2.3,0.8 0.2,0.1 0.3,0.1 0.5,0.1 0.2,0 0.3,0.1 0.4,0.2 0.1,0.1 0.3,0.1 0.4,0.1 0.2,0.1 0.4,0.2 0.6,0.3 0.2,0.1 0.4,0 0.5,0 0.2,0 0.3,0.2 0.4,0.3 0.4,0.2 0.8,0.4 1.3,0.6 0.6,0.3 1.1,0.8 1.5,1.3 0.3,0.4 0.4,0.5 0.9,0.5 0.6,0.1 0.4,0.7 0.8,1 0.1,0.1 0.3,0 0.4,0 0.2,0 0.4,0.2 0.6,0.3 0.3,0.1 0.6,0.3 0.9,0.4 0.3,0.1 0.8,0.1 1.1,0.1 0.4,0 0.6,0.1 0.9,0.4 0.1,0.1 0.2,0.2 0.3,0.3 0.3,0.2 0.6,0.1 0.9,0.1 0.3,0 0.6,0.1 0.9,0.2 0.7,0.2 1.3,0.7 2,0.8 0.3,0 0.7,-0.1 1,0 0.3,0.1 0.6,0.3 0.8,0.4 0.4,0.2 0.9,0.1 1.3,0.2 0.3,0.1 0.6,0.3 0.9,0.3 0.3,0.1 0.7,0 1.1,0.1 0.3,0.1 0.6,0.1 0.9,0.2 0.3,0 0.6,0.1 1,0.1 0.4,0.1 0.7,-0.1 1.1,0 0.1,-0.3 -0.4,-0.5 -0.6,-0.5 -0.4,-0.1 -0.7,-0.1 -1.1,-0.2 -0.2,0 -0.3,-0.1 -0.5,-0.1 -0.2,0 -0.3,-0.1 -0.5,-0.2 -0.4,-0.1 -0.8,0 -1.1,-0.1 -0.3,-0.1 -0.7,-0.1 -0.9,-0.2 -0.2,-0.1 -0.5,-0.4 -0.7,-0.6 -0.3,-0.2 -0.5,-0.4 -0.8,-0.5 -0.3,-0.2 -0.5,-0.4 -0.8,-0.7 -0.2,-0.2 -0.6,-0.4 -0.9,-0.6 -0.3,-0.1 -0.6,-0.1 -0.9,-0.2 -0.6,-0.2 -1.2,-0.4 -1.6,-0.9 -0.3,-0.3 -0.6,-0.7 -1,-0.9 -0.4,-0.2 -0.9,-0.1 -1.1,-0.5 -0.3,-0.4 -0.2,-0.4 -0.7,-0.6 -0.3,-0.1 -0.7,-0.3 -1,-0.5 -0.3,-0.2 -0.5,-0.4 -0.8,-0.5 -0.3,-0.2 -0.7,-0.4 -1,-0.6 -0.3,-0.1 -0.6,-0.1 -0.9,-0.2 -0.3,-0.1 -0.7,-0.2 -1,-0.3 -0.6,-0.2 -1.3,-0.6 -1.9,-0.9 -0.6,-0.3 -1.3,-0.7 -1.8,-1.2 -0.2,-0.2 -0.3,-0.5 -0.6,-0.7 -0.2,-0.1 -0.2,0 -0.3,-0.2 -0.1,-0.1 -0.1,-0.3 -0.2,-0.4 -0.1,-0.4 -0.2,-0.5 0.2,-0.7 0.2,-0.1 0.6,-0.3 0.8,-0.3 0.2,0 0.8,0.3 0.6,-0.3 -0.1,-0.2 -0.6,-0.4 -0.8,-0.6 -0.2,-0.2 -0.5,-0.3 -0.7,-0.4 -0.3,-0.2 -0.4,-0.4 -0.6,-0.8 -0.3,-0.5 -0.4,-1.2 -0.7,-1.7 -0.2,-0.3 -0.4,-0.4 -0.5,-0.8 -0.1,-0.4 0,-0.8 0,-1.2 0,-0.4 -0.1,-0.6 0,-1 0.1,-0.3 0.2,-0.6 0.2,-1 0.1,-0.3 0.2,-0.9 0.4,-1.1 0.2,-0.1 0.9,0 1.1,0 0.3,0.1 0.7,0.3 1,0.4 0.1,0.1 0.3,0.2 0.4,0.3 0.2,0.2 0.1,0.4 0.2,0.6 0.3,0.7 1.2,1.2 1.8,1.6 0.6,0.5 1.1,1 1.5,1.6 0.2,0.4 0.5,0.6 0.8,1 0.3,0.4 0.3,0.6 0.4,1.1 0,0.2 0,0.3 0,0.5 0,0.1 -0.1,0.4 -0.1,0.4 0,0.3 0.3,0.6 0.5,0.8 0.5,0.5 1.2,0.8 1.8,0.5 0.3,-0.1 0.5,-0.3 0.8,-0.4 0.1,-0.1 0.3,-0.1 0.5,-0.2 0.1,0 0.4,-0.2 0.5,-0.2 0.3,0 0.6,0.2 0.9,0.3 0.4,0 0.8,0 1.2,-0.1 0.7,-0.1 0.8,-0.9 0.7,-1.5 -0.1,-0.3 -0.1,-0.7 -0.2,-1 -0.1,-0.3 -0.4,-0.6 -0.5,-0.9 0,-0.1 -0.1,-0.3 -0.1,-0.4 0,-0.1 -0.1,-0.4 -0.1,-0.4 0.1,-0.3 0.4,-0.4 0.5,-0.8 0.1,-0.7 -0.4,-1.2 -0.8,-1.8 0,0 0,-0.1 0.1,-0.2 0.3,-0.5 0.5,-0.7 1,-0.8 0.5,-0.1 1.1,-0.2 1.7,-0.2 0.5,0 1.1,0 1.5,-0.2 0.4,-0.2 0.5,-0.9 0.5,-1.3 0,-0.7 -0.7,-0.9 -1.2,-1.3 -0.2,-0.2 -0.3,-0.4 -0.4,-0.6 -0.2,-0.3 -0.4,-0.5 -0.6,-0.7 -0.2,-0.3 -0.7,-0.9 -0.6,-1.2 0.3,0 0.6,-0.1 1,-0.2 0.4,-0.1 0.7,-0.1 1.1,-0.2 0.3,-0.1 0.6,-0.2 0.9,0 0.3,0.1 0.6,0.3 0.9,0.4 0.3,0.2 0.7,0.2 1,0.3 0.4,0.1 0.5,-0.1 0.9,-0.2 0.3,-0.1 0.7,-0.2 1,-0.3 0.5,-0.1 0.5,0.1 1,0.2 0,0.4 0.2,0.6 0.5,0.8 0.2,0.1 0.7,0.1 0.9,0.3 0.2,0.3 -0.3,0.5 -0.2,0.9 0.1,0.3 0.7,0.4 1,0.2 0.3,-0.1 0.6,-0.4 0.8,-0.6 0.4,-0.3 0.4,-0.4 0.9,-0.3 0.3,0.1 0.5,0.1 0.7,0.2 -0.2,-0.2 -0.2,-0.4 -0.2,-0.6 0,-0.3 0.1,-0.7 0.4,-1 0.3,-0.2 0.7,-0.2 0.9,-0.4 0.2,-0.1 0.2,-0.3 0.4,-0.4 0.2,-0.1 0.4,0 0.6,-0.1 0.4,-0.2 0.2,-0.8 0.6,-1 0.2,-0.1 0.5,-0.1 0.6,-0.2 0.2,-0.1 0.1,-0.3 0.4,-0.3 0.4,0 0.6,0.5 1,0.5 0.2,0 0.4,-0.3 0.6,-0.3 0.2,-0.1 0.4,0.1 0.6,0.1 0.5,0 0.6,-0.5 0.5,-1 -0.6,-0.1 -0.6,-1.2 -0.7,-1.7 -0.1,-0.4 -0.2,-0.7 -0.2,-1.1 0,-0.3 0.2,-0.6 0.3,-1 0,-0.2 0,-0.4 0,-0.6 0,-0.2 0.2,-0.3 0.2,-0.5 0.1,-0.4 0,-0.8 0.1,-1.2 0.1,-0.4 0.3,-0.6 0.4,-1 0,-0.4 -0.1,-0.8 0.1,-1.2 0.1,-0.2 0.3,-0.3 0.3,-0.5 0.1,-0.2 0,-0.4 0,-0.6 0,-0.3 0.2,-0.6 0.3,-1 0.1,-0.3 0.2,-0.6 0.2,-0.9 0.1,-0.4 0.1,-0.8 0.2,-1.3 0.2,-1.6 0.7,-3.2 0.6,-4.8 0,-0.6 -0.2,-1.2 -0.4,-1.7 -0.1,-0.3 -0.1,-0.5 -0.2,-0.8 -0.1,-0.2 -0.1,-0.5 -0.1,-0.7 -0.1,-0.2 -0.3,-0.3 -0.4,-0.4 -0.2,-0.2 -0.3,-0.4 -0.5,-0.7 -0.2,-0.2 -0.9,-0.8 -1.2,-0.7 0,0.4 -0.4,0.4 -0.5,0.6 -0.3,0.3 -0.1,0.7 -0.2,1.1 0,0 -0.1,0 -0.1,0 0,0.1 0,0.3 0,0.4 -0.3,0.1 -0.6,-0.1 -0.8,-0.2 -0.4,-0.1 -0.4,0.1 -0.6,0.2 -0.2,0.1 -0.4,0.1 -0.6,0.2 -0.2,0.1 -0.3,0.3 -0.5,0.3 -0.4,0.2 -1.2,0.2 -1.5,-0.2 -0.1,-0.2 -0.1,-0.5 -0.3,-0.7 -0.1,-0.2 -0.4,-0.3 -0.6,-0.5 -0.7,-0.6 -1.4,-1.3 -1.5,-2.2 -0.1,-0.5 0,-1.2 0.1,-1.7 0,-0.2 0.1,-0.5 0.1,-0.7 0.1,-0.3 0.3,-0.3 0.3,-0.7 0.3,-0.1 0.5,-0.2 0.8,-0.3 0.3,0 0.7,-0.1 1,-0.1 0.6,0.1 1.1,0.5 1.6,0.6 0.6,0.2 1.3,0.3 1.9,0.7 0.3,0.2 0.5,0.5 0.8,0.7 0.4,0.2 0.7,0 1.1,-0.2 0.3,-0.1 0.6,-0.1 1,-0.1 0.4,0 0.7,-0.1 1.1,-0.1 0.4,0 0.9,0 1.2,-0.3 0.2,-0.2 0.2,-0.6 0.3,-0.9 0.2,-0.6 0.6,-1.2 1.2,-1.3 0.4,-0.1 0.6,-0.2 1,-0.3 0.4,-0.1 0.8,-0.1 1.1,-0.2 0.3,-0.1 0.6,-0.3 1,-0.4 0.4,-0.1 0.9,-0.4 1.3,-0.5 -1.2,-0.1 -2.3,-0.1 -2.8,-0.2 z M 111.2,163.5 c 0,-0.3 0.6,-1.8 -0.3,-1.5 -0.6,0.2 -0.4,1.2 -0.2,1.6 0.1,0 0.2,0 0.3,-0.2 v 0.2 c 0.1,-0.1 0.1,-0.1 0.2,-0.1 z m 27.9,148.8 c 0.2,0.2 0.4,0.1 0.6,0.2 0.1,0.1 0.4,0.4 0.5,0.4 0.6,-0.2 -0.2,-0.9 -0.3,-1 -0.3,-0.3 -0.4,-0.7 -1,-0.6 l 0.4,0.1 c -0.7,-0.2 -0.6,0.6 -0.2,0.9 z M 108.9,165.8 c 0.4,0 0.8,-0.5 0.8,-0.9 0,-0.4 -0.5,-0.7 -0.9,-0.6 -0.5,0.2 -0.2,0.9 -0.2,1.3 l -0.1,-0.2 c -0.1,0.3 0,0.5 0.4,0.4 z m 28.6,147.7 0.1,0.3 c 0.1,-0.1 0.2,-0.2 0.3,-0.4 0.1,-0.2 0.2,-0.2 0.3,-0.4 0.1,-0.4 -0.1,-0.8 -0.4,-1 -0.1,-0.1 -0.4,-0.2 -0.5,0 -0.2,0.2 0,0.3 0,0.5 -0.1,0.3 -0.4,1.1 0.2,1 z m -0.8,1.7 c -0.1,-0.3 0.1,-0.8 -0.3,-0.9 -0.4,-0.1 -0.2,1 -0.3,1.4 h 0.2 c 0,0.5 0.2,0.5 0.6,0.4 0.2,-0.3 -0.1,-0.6 -0.2,-0.9 z m 3.4,2.2 c 0.3,0 0.6,0.3 0.9,0.2 0,-0.2 -0.2,-0.6 -0.3,-0.9 -0.1,-0.4 -0.2,-0.5 -0.5,-0.7 -0.2,-0.2 -0.4,-0.4 -0.6,-0.7 -0.2,-0.3 -0.4,-1 -0.9,-0.8 -0.1,0.2 0.1,0.3 0.1,0.5 -0.1,-0.1 -0.3,-0.1 -0.4,-0.1 -0.1,0.3 0.4,0.5 0.5,0.7 0.1,0.2 0.2,0.7 -0.1,0.9 -0.2,0.2 -1.7,-0.2 -1.5,0.4 0.3,0 1.8,0.4 1.9,0.4 l -0.2,0.3 c 0.4,0 0.7,-0.2 1.1,-0.2 z m -4.7,-0.5 c -0.8,0.3 0.4,0.9 0.7,0.5 l 0.3,0.2 c 0.1,-0.2 0.4,-0.2 0.3,-0.4 -0.4,-0.1 -0.9,-0.5 -1.3,-0.3 z m 2.6,-0.6 c 0.5,-0.2 0,-1.6 -0.5,-1.6 -0.7,0 0.5,1.2 0.5,1.6 l 0,0 z m 0.2,-5.6 c 0.1,-0.3 -0.2,-1.4 -0.5,-1.3 l -0.2,-0.1 c 0.2,-0.4 -0.6,-0.2 -0.7,-0.1 -0.1,0.2 0.2,0.5 0.2,0.7 0,0.3 -0.1,0.5 -0.2,0.7 0,0.3 0,0.6 -0.1,0.8 0.7,0.1 1.4,-0.1 1.5,-0.7 z m -6,-96.2 c 0,0 0,0 0,0 -0.1,0 -0.1,0 0,0 z m -2.6,15.2 -0.4,0.6 c 0,0.1 0,0.1 0.1,0.1 0.1,-0.7 0.7,-0.6 1.1,-1 0.3,-0.2 0.4,-0.8 0.5,-1.1 0.2,-0.6 0.7,-2.4 -0.6,-1.8 -0.2,0.1 -0.3,0.5 -0.5,0.6 -0.1,0.1 -0.4,0.1 -0.6,0.1 -0.4,0.1 -1,0.4 -1.2,0.9 -0.1,0.6 1.1,2.1 1.6,1.6 z M 124.7,40.2 c 0,-0.1 0,-0.2 0,-0.4 0,-0.3 -0.2,-0.5 -0.3,-0.7 0,-0.1 -0.1,-0.2 -0.2,-0.3 0,-0.1 0,-0.2 -0.1,-0.3 -0.1,-0.2 -0.4,-0.1 -0.5,0 0,0 0,0 -0.1,0 0,0 -0.1,0 -0.1,0 -0.1,0 -0.1,0.1 -0.2,0.1 -0.1,0.1 -0.1,0.2 -0.2,0.2 -0.2,0.1 -0.4,0.2 -0.5,0.4 -0.2,0.1 -0.4,0.3 -0.6,0.5 -0.1,0.1 -0.1,0.2 -0.2,0.3 0,0.1 -0.1,0.2 -0.1,0.4 -0.1,0 -0.2,0 -0.2,0.1 -0.1,0.1 -0.1,0.3 -0.2,0.4 -0.1,0.2 0,0.5 -0.1,0.7 0,0 0,0.1 0,0.1 0,0.1 0,0.1 0,0.2 0,0.1 0,0.2 0,0.3 0,0.1 0,0.2 0,0.4 0,0.1 -0.1,0.3 -0.1,0.4 0,0.1 0,0.1 0.1,0.2 0,0.1 0,0.1 0,0.2 0,0.1 0,0.2 0,0.4 0,0.2 -0.1,0.3 -0.1,0.5 0,0.2 0.2,0.4 0.3,0.5 0.1,0.1 0.1,0.2 0.1,0.3 0,0.1 0,0.2 -0.1,0.3 l 0.2,-0.1 c -0.1,0.1 -0.2,0.4 0,0.4 0.1,0 0.3,0 0.3,-0.1 0.1,0 0.2,-0.2 0.3,-0.2 0.1,-0.1 0.2,-0.3 0.4,-0.4 0.3,-0.2 0.6,-0.4 0.9,-0.6 0.2,-0.2 0.4,-0.4 0.4,-0.7 0,-0.1 0,-0.2 0.1,-0.4 0,0 0,-0.1 0,-0.1 0,-0.1 0,-0.1 0,-0.2 0,-0.1 0.1,-0.2 0.1,-0.4 0,-0.1 0,-0.2 0.1,-0.4 0.1,-0.2 0.2,-0.3 0.3,-0.4 0.2,-0.1 0.4,-0.2 0.4,-0.4 0,-0.2 0,-0.5 0,-0.7 -0.2,-0.2 -0.1,-0.3 -0.1,-0.5 z m 2.8,190 c -0.5,0.3 -0.9,0.7 -1.4,1 0,0.1 0,0.3 0,0.4 0.1,0.3 0.2,0.3 0.3,0.5 0.2,0.3 0.2,0.6 0.3,0.9 0.2,0 0.3,0 0.5,0.1 l 0.1,0.1 c 1.1,0.2 1.1,-1.2 1,-1.8 -0.1,-0.6 -0.4,-1 -0.8,-1.2 0,-0.1 0,-0.1 0,0 z m 0.3,-192.8 0,0 0.1,0.3 c 0.1,0 0.1,0 0.2,0 0.1,0 0.1,-0.1 0.1,-0.1 0.1,0 0.2,0 0.4,0 0.1,0 0.3,0 0.4,-0.1 0.1,-0.1 0.2,-0.1 0.3,-0.2 0.1,0 0.2,0 0.3,-0.1 0,0 0.1,-0.1 0.1,-0.1 0.1,-0.1 0.2,-0.1 0.3,-0.2 0.2,-0.2 0.4,-0.3 0.6,-0.4 0.1,-0.1 0.2,-0.1 0.3,-0.2 0.1,-0.1 0.1,-0.2 0.1,-0.4 0.1,-0.2 0.2,-0.4 0.1,-0.6 0,-0.1 0,-0.2 -0.1,-0.3 0,-0.1 0,-0.1 -0.1,-0.2 -0.1,-0.1 -0.3,-0.3 -0.5,-0.3 -0.1,0 -0.3,0 -0.4,0 -0.1,0.1 -0.1,0.1 -0.3,0.1 -0.2,0 -0.3,0.2 -0.5,0.2 -0.1,0.1 -0.2,0 -0.4,0.1 -0.1,0 -0.2,0 -0.2,0.1 -0.1,0 -0.2,0.1 -0.4,0.1 -0.1,0 -0.2,0.1 -0.3,0.2 -0.1,0.1 -0.2,0.1 -0.3,0.2 -0.1,0.1 -0.2,0.1 -0.3,0.2 -0.1,0.1 -0.2,0.4 -0.3,0.5 -0.1,0.2 -0.1,0.6 0,0.8 0.3,0.2 0.5,0.3 0.8,0.4 z m 4.4,177.1 0,0 0,0 c 0,0 0,0 0,0 z M 108,165 l 0.4,0.5 c 0,-0.2 -0.1,-0.4 -0.4,-0.5 z M 121,45.4 c 0,-0.1 0,-0.1 0,0 l 0,0 0,0 z m 15.6,-14.3 c 0.2,-0.2 0.5,-0.4 0.6,-0.6 0,-0.1 0.1,-0.2 0.1,-0.3 -0.1,-0.1 -0.1,-0.1 -0.2,-0.1 -0.1,0 -0.2,-0.1 -0.3,-0.2 -0.3,-0.2 -0.7,0.1 -0.9,0.3 -0.2,0.1 -0.3,0.3 -0.4,0.4 -0.1,0.1 -0.3,0.1 -0.5,0.2 -0.1,0 -0.2,0 -0.3,0.1 -0.1,0.1 0,0.1 -0.1,0.2 -0.1,0.2 -0.2,0.3 -0.3,0.4 -0.1,0.2 -0.2,0.4 -0.2,0.5 0,0.2 0.1,0.3 0.2,0.5 v 0.2 c 0,0 -0.1,0 -0.1,0 0.2,0.1 0.4,0 0.5,0 0.2,0 0.4,-0.1 0.5,-0.2 0.1,-0.1 0.2,-0.1 0.3,-0.2 0.1,-0.1 0.2,-0.1 0.3,-0.2 0.1,0 0.1,-0.1 0.2,-0.2 0.1,-0.1 0.1,-0.1 0.2,-0.2 0.1,-0.2 0.2,-0.4 0.4,-0.6 z m -3.9,2.4 c 0,-0.1 0,-0.2 0.1,-0.3 0,-0.1 0.1,-0.2 0.1,-0.3 0,-0.2 -0.1,-0.5 -0.2,-0.6 -0.1,0.1 -0.3,0.2 -0.4,0.3 -0.1,0.2 0,0.4 -0.2,0.5 -0.1,0.1 -0.3,0.2 -0.3,0.4 0,0.1 0.1,0.3 0.3,0.3 V 34 c -0.1,0.3 0.3,0 0.4,-0.1 0,0 0.1,-0.1 0.1,-0.2 0.1,0 0.1,-0.1 0.1,-0.2 0,0.1 0,0 0,0 z m -112,90.6 -0.1,0.1 c 0,0 0.1,0 0.1,-0.1 0,0 0,0 0,0 0,0 0,0 0,0 z m 11.7,12.7 c 0,0.1 0.1,0.1 0,0.2 l 0.1,-0.1 c 0,0.1 -0.1,0.1 0,0.2 0,0 0.1,0.1 0.1,0.1 0.1,0 0.1,-0.2 0.1,-0.3 0,-0.1 0,-0.1 0,-0.2 0,-0.2 0,-0.2 -0.1,-0.4 0,-0.2 0,-0.3 0.1,-0.4 0.1,-0.3 0.1,-0.6 0.2,-0.9 0.1,-0.3 0.1,-0.6 0.1,-0.9 0,-0.2 0,-0.3 0,-0.5 0,-0.2 0,-0.3 0.1,-0.4 0,-0.1 0,-0.1 0,-0.2 0,0 0,-0.1 0.1,-0.1 0,-0.1 0,-0.1 0,-0.2 0,-0.1 0,-0.1 0,-0.1 0.1,-0.3 0.2,-0.5 0.3,-0.7 0.1,-0.2 0.2,-0.5 0.3,-0.7 0.1,-0.3 0.1,-0.6 0.1,-0.9 0,-0.1 0,-0.2 0.1,-0.3 0,-0.1 0.1,-0.2 0.1,-0.3 0,-0.1 0,-0.2 0,-0.3 0,-0.1 0.1,-0.1 0.2,-0.2 0,-0.1 0,-0.3 0,-0.4 0.1,-0.1 0.2,-0.1 0.2,-0.2 0.1,-0.1 0.1,-0.1 0.2,-0.2 0.1,-0.1 0.1,-0.2 0.2,-0.3 0.1,-0.1 0.2,-0.2 0.3,-0.3 0,-0.1 0.1,-0.2 0.1,-0.4 0,-0.1 0,-0.2 -0.1,-0.3 0,0 0,0 0,0 0,-0.1 0.1,-0.1 0.1,-0.2 0.1,-0.2 0.2,-0.3 0.3,-0.5 0.1,-0.1 0.3,-0.3 0.3,-0.5 0,-0.1 0,-0.2 0.1,-0.2 0.2,0 0.4,0 0.5,-0.2 0.1,-0.1 0.2,-0.2 0.3,-0.4 0.1,-0.1 0.1,-0.3 0.2,-0.4 0.1,-0.1 0.1,-0.1 0.2,-0.2 0.1,-0.1 0.1,-0.1 0.2,-0.2 0.2,-0.1 0.4,-0.1 0.6,-0.1 0.1,0 0.1,-0.1 0.2,-0.1 0.1,0 0.2,0 0.3,0 0.2,0 0.4,0 0.5,0 0.2,0 0.3,0.1 0.5,0.1 0.2,0 0.3,0.1 0.5,0.1 0.2,0 0.3,0.1 0.5,0.1 0,0.2 0.4,0.3 0.6,0.2 0.4,-0.1 0.9,-0.3 1.3,-0.3 0.3,0 0.6,0 0.9,0.1 0.2,0 0.3,0 0.4,0.1 0.2,0.1 0.3,0.1 0.5,0.2 0.3,0.1 0.5,0.3 0.7,0.4 0.2,0.1 0.4,0.2 0.5,0.5 0.1,0.1 0,0.2 0.1,0.3 0,0.1 0.1,0.2 0.2,0.2 0.2,0.2 0.3,0.5 0.4,0.8 0.1,0.2 0.3,0.5 0.5,0.5 0.2,0 0.2,0 0.3,-0.1 0.2,0 0.3,0 0.5,-0.1 0.2,-0.1 0.3,-0.3 0.5,-0.4 0.1,-0.1 0.1,-0.1 0.2,-0.2 0,0 0.1,-0.1 0.1,-0.1 0.1,-0.1 0.1,0 0.2,-0.1 0.1,0 0.2,-0.1 0.3,-0.2 0.1,-0.1 0.3,0 0.4,-0.1 0.4,-0.1 0.1,-0.5 0.1,-0.8 0,-0.3 0.1,-0.5 0.1,-0.8 0,-0.1 0,-0.2 0.1,-0.3 0.1,-0.1 0.2,-0.2 0.3,-0.3 0.2,-0.3 0.1,-0.4 0,-0.6 -0.1,-0.2 -0.2,-0.4 -0.3,-0.5 -0.1,-0.1 -0.2,-0.3 -0.3,-0.4 -0.1,-0.2 -0.1,-0.5 -0.1,-0.7 0,-0.1 0,-0.2 0,-0.3 0,-0.1 -0.1,-0.1 -0.1,-0.2 0,-0.2 0.3,-0.2 0.4,-0.3 0.2,-0.1 0.2,-0.2 0.3,-0.4 0,-0.1 0,-0.2 0.1,-0.3 0,-0.1 0.1,-0.2 0.2,-0.3 0,-0.1 0,-0.2 0,-0.3 0,0 0.1,0 0.1,-0.1 0,-0.1 0,-0.1 0,-0.2 0,-0.1 0.1,-0.1 0.1,-0.2 0,-0.1 0,-0.2 0,-0.3 0,-0.3 -0.1,-0.3 -0.3,-0.3 -0.3,0 -0.5,0.1 -0.6,0.3 -0.1,0.1 -0.1,0.2 -0.2,0.3 -0.1,0.1 -0.2,0.1 -0.3,0.2 -0.2,0.1 -0.3,0.2 -0.4,0.4 -0.2,0.3 -0.6,0.6 -0.9,0.7 -0.1,-0.1 -0.1,-0.2 -0.1,-0.3 0,-0.1 0,-0.2 -0.1,-0.4 -0.1,-0.2 -0.3,-0.3 -0.4,-0.5 -0.2,-0.2 0,-0.5 0,-0.7 0,-0.1 0.1,-0.2 0.1,-0.4 0,-0.2 0,-0.3 0.1,-0.4 0.1,-0.3 0.2,-0.6 0.4,-0.8 0.1,-0.1 0.2,-0.1 0.3,-0.2 0.1,-0.1 0.1,-0.2 0.2,-0.3 0.2,-0.2 0.5,-0.3 0.7,-0.6 0.1,-0.1 0.2,-0.2 0.2,-0.4 0,-0.1 0.1,-0.3 0.1,-0.4 0.1,-0.2 0.3,-0.3 0.5,-0.4 0.2,-0.2 0.5,-0.3 0.7,-0.4 0.1,-0.1 0.2,-0.1 0.3,-0.2 0.1,-0.1 0.2,-0.2 0.3,-0.2 0.1,0 0.2,0.2 0.3,0.3 0,0.1 0,0.1 0.1,0.2 0.1,0.1 0.2,0.1 0.2,0.1 0.2,0.2 -0.1,0.5 -0.2,0.7 -0.1,0.1 -0.1,0.1 -0.1,0.3 0,0.2 0,0.2 0.1,0.4 0.1,0.2 0.3,0.4 0.4,0.5 0.2,0.1 0.6,-0.3 0.7,-0.5 0,-0.1 0.2,-0.1 0.2,-0.2 0,-0.1 0,-0.1 0,-0.2 0.1,-0.1 0.2,-0.1 0.3,-0.2 0.3,-0.2 0.5,-0.5 0.8,-0.7 0.3,-0.3 0.6,-0.5 1,-0.6 0.2,-0.1 0.4,-0.2 0.6,-0.3 0.2,-0.2 0.4,-0.4 0.6,-0.6 0.1,-0.1 0.1,-0.1 0.2,-0.1 0.1,0 0.1,0 0.2,-0.1 0.1,-0.1 0.2,-0.2 0.3,-0.3 0.1,-0.1 0.1,-0.2 0.2,-0.2 0.1,-0.1 0.3,-0.3 0.4,-0.4 0.2,-0.1 0.6,-0.2 0.8,-0.4 0.1,-0.1 0.2,-0.2 0.3,-0.3 0.1,-0.1 0.1,-0.3 0.2,-0.4 0.1,-0.1 0.2,-0.1 0.3,-0.1 0.1,-0.1 0.1,-0.1 0.1,-0.2 0,-0.1 0,-0.1 0,-0.1 0,-0.1 0,-0.2 0.1,-0.3 0.1,-0.1 0.3,-0.3 0.4,-0.2 0.1,0 0,0.3 0.1,0.4 0,0.1 0.1,0.1 0,0.3 0,0.1 -0.1,0.2 0,0.3 0.1,0.1 0.4,0 0.6,-0.1 0.2,0 0.3,-0.1 0.5,-0.2 0.1,-0.1 0.2,-0.2 0.3,-0.2 0.1,-0.1 0.3,-0.2 0.4,-0.3 0.1,-0.1 0.1,-0.2 0.2,-0.3 0.2,-0.2 0.4,-0.3 0.5,-0.5 0.1,-0.2 0.1,-0.5 0.4,-0.6 0.1,-0.1 0.1,-0.1 0.2,-0.1 0.1,-0.1 0.1,-0.1 0.2,-0.2 0.1,-0.1 0.3,-0.2 0.4,-0.4 0.2,-0.3 0.1,-0.9 0.1,-1.2 0,-0.3 0.1,-0.6 0.2,-0.9 0.1,-0.3 0,-0.6 -0.1,-0.9 0,-0.2 -0.1,-0.3 -0.2,-0.5 -0.1,-0.2 -0.1,-0.4 0,-0.6 0.1,-0.2 0.1,-0.6 -0.1,-0.8 -0.1,-0.1 -0.3,-0.1 -0.4,-0.2 -0.1,0 -0.1,0 -0.2,0 -0.1,0 -0.1,-0.1 -0.2,-0.1 -0.1,0 -0.3,0 -0.4,0 -0.1,0 -0.1,0 -0.2,0 -0.1,0 -0.2,-0.1 -0.3,-0.1 -0.6,-0.1 -1.4,-0.1 -2,-0.1 -0.4,0 -0.7,-0.3 -1.1,-0.3 -0.3,0 -0.5,0.1 -0.8,0.2 -0.2,0.1 -0.4,0.2 -0.6,0.2 -0.1,0 -0.2,0.1 -0.3,0.1 -0.1,0 -0.3,0.1 -0.4,0.1 -0.2,0 -0.2,0 -0.3,0.1 -0.1,0.1 -0.2,0.1 -0.4,0.2 -0.2,0.1 -0.3,0.3 -0.4,0.4 -0.1,0.1 -0.1,0.1 -0.2,0.3 -0.1,0.2 -0.2,0.1 -0.4,0.2 -0.2,0.1 -0.4,-0.1 -0.6,-0.3 -0.1,-0.1 -0.1,-0.1 -0.2,-0.2 -0.1,-0.1 -0.3,-0.1 -0.4,-0.2 -0.1,-0.1 -0.2,-0.1 -0.3,-0.2 -0.1,0 -0.3,0 -0.4,-0.1 -0.1,0 -0.3,-0.1 -0.4,-0.1 -0.1,0 -0.3,-0.1 -0.4,-0.2 -0.2,-0.1 -0.4,-0.3 -0.7,-0.2 -0.1,0 -0.2,0.1 -0.2,0.2 0,0.2 0,0.3 -0.1,0.4 -0.2,0.2 -0.2,0.5 -0.2,0.8 0,0.1 0,0.3 0,0.4 0,0.2 -0.1,0.3 -0.2,0.5 0,0.1 -0.1,0.3 -0.1,0.4 0,0.1 0,0.3 0,0.4 0,0.1 -0.1,0.2 -0.1,0.3 -0.1,0.2 -0.1,0.3 -0.3,0.4 -0.2,0.1 -0.2,0 -0.4,-0.1 -0.1,0 -0.3,0 -0.4,-0.1 -0.2,-0.2 0.1,-0.5 0.2,-0.7 0.1,-0.2 0.2,-0.5 0.3,-0.7 0,-0.1 0.1,-0.1 0.2,-0.2 0.1,-0.1 0.3,-0.3 0.3,-0.5 0,-0.1 0,-0.1 -0.1,-0.2 0,-0.1 0,-0.1 0,-0.2 0,-0.1 -0.1,-0.3 -0.1,-0.4 -0.1,-0.3 -0.2,-0.4 -0.4,-0.6 -0.2,-0.2 -0.3,-0.5 -0.5,-0.7 -0.1,-0.1 -0.2,-0.3 -0.2,-0.4 0,-0.2 0.2,-0.3 0.3,-0.4 0.2,-0.2 0.3,-0.5 0.3,-0.8 0.1,-0.3 0.2,-0.5 0.4,-0.8 0.1,-0.3 0.2,-0.5 0.3,-0.8 0.1,-0.3 0.2,-0.5 0.3,-0.8 0.1,-0.3 0.3,-0.5 0.4,-0.8 0,0 0,0 0,0 0.1,-0.2 0.3,-0.4 0.3,-0.7 0,-0.1 0,-0.3 0,-0.4 0,-0.1 -0.1,-0.1 -0.2,-0.3 -0.2,-0.2 -0.2,-0.4 -0.2,-0.7 0,-0.5 0.3,-1 0.5,-1.5 0,-0.1 0.1,-0.2 0.1,-0.3 0,-0.1 0,-0.2 0.1,-0.3 0,-0.1 0.1,-0.2 0.2,-0.3 0,-0.2 0.1,-0.2 0.1,-0.4 0,-0.2 0.1,-0.4 0.2,-0.7 0.1,-0.3 0.1,-0.7 0.3,-0.9 0.1,-0.1 0.1,-0.1 0.2,-0.2 0.1,-0.1 0.1,-0.2 0.1,-0.3 0,-0.1 0,-0.3 0.1,-0.4 0.1,-0.1 0.1,-0.2 0.2,-0.4 0.1,-0.2 0.2,-0.5 0.2,-0.7 0,-0.2 0.1,-0.5 0.3,-0.7 0.1,-0.1 0.2,-0.1 0.2,-0.2 0.1,-0.1 0.1,-0.2 0.2,-0.3 0.1,-0.1 0.2,-0.1 0.3,-0.2 0.1,-0.1 0.1,-0.3 0.2,-0.4 0.1,-0.3 0.3,-0.3 0.5,-0.5 0.1,0 0.2,-0.1 0.3,-0.2 0,-0.1 0,-0.1 0,-0.2 0,-0.1 0.1,-0.2 0.1,-0.3 0,-0.1 0,-0.1 0,-0.2 0,-0.1 0,-0.1 0.1,-0.1 0,-0.1 0,-0.2 0.1,-0.3 0.2,-0.2 0.3,-0.4 0.5,-0.6 0.2,-0.2 0.3,-0.4 0.5,-0.6 0.1,-0.1 0.2,-0.2 0.3,-0.2 0.2,-0.1 0.3,0 0.5,-0.2 0.1,-0.1 0.1,-0.1 0.2,-0.2 0.1,-0.1 0.2,-0.1 0.3,-0.2 0.2,-0.2 0.3,-0.4 0.5,-0.6 0.2,-0.2 0.5,-0.1 0.7,-0.3 0.1,-0.1 0.2,-0.3 0.3,-0.4 0.1,-0.1 0.2,-0.2 0.4,-0.3 0.1,-0.1 0.1,-0.2 0.3,-0.2 0.1,0 0.1,-0.1 0.2,-0.1 0.2,-0.1 0.4,-0.2 0.6,-0.2 0.2,-0.1 0.4,-0.2 0.6,-0.4 0.1,-0.1 0.1,-0.1 0.3,0 0.1,0.1 0.2,0.1 0.3,0.1 0.2,0 0.2,0 0.3,-0.1 0.1,-0.1 0.2,0 0.3,-0.1 0.1,0 0.1,-0.1 0.2,-0.1 0.1,0 0.2,0 0.3,-0.1 0.2,-0.1 0.3,-0.4 0.3,-0.6 0,-0.2 -0.1,-0.4 -0.1,-0.7 0,0 -0.1,0 -0.1,-0.1 0,-0.1 0,-0.1 0.1,-0.2 0,0 0,0 0.1,-0.1 0,0 0,-0.1 0.1,-0.1 0,0 0,0 0.1,-0.1 0,-0.1 0,-0.1 0.1,-0.2 0.1,-0.1 0.1,-0.2 0,-0.3 0,0 -0.1,-0.1 -0.2,-0.2 -0.1,-0.1 -0.1,-0.1 -0.2,-0.2 -0.1,-0.1 -0.1,-0.1 -0.2,-0.2 0,0 -0.1,-0.1 -0.1,-0.1 -0.1,-0.1 0,0 -0.1,-0.1 -0.1,0 -0.1,-0.1 -0.2,-0.1 -0.1,-0.1 -0.1,-0.2 -0.3,-0.2 -0.1,0 -0.2,0.1 -0.3,0.2 -0.1,0 -0.1,0.1 -0.2,0 -0.1,0 0,-0.1 -0.1,-0.2 -0.1,-0.1 -0.2,0.1 -0.3,0 -0.1,0 -0.1,-0.3 0,-0.3 0.1,-0.1 0.2,-0.1 0.3,-0.2 0.1,-0.1 0.1,-0.2 0.2,-0.3 0,0.1 -0.1,0.1 0,0.2 0.1,0 0.2,-0.2 0.3,-0.2 0.1,-0.2 0.3,-0.3 0.4,-0.5 0.1,-0.2 0.1,-0.3 0.2,-0.5 -0.5,0 -0.4,0 -0.3,0 0.2,-0.1 0.4,-0.4 0.4,-0.6 0,-0.1 0,-0.1 0,-0.2 0,0 0.1,-0.2 0.1,-0.2 0.1,-0.1 0.2,-0.2 0.3,-0.3 0.2,-0.1 0.2,-0.4 0.4,-0.5 0.1,0 0.1,0 0.2,-0.1 0,0 0,-0.1 0.1,-0.1 0.1,-0.1 0.3,-0.2 0.4,-0.3 0.3,-0.2 0.5,-0.3 0.7,-0.5 0.1,-0.1 0.2,-0.2 0.2,-0.3 0,-0.1 0,-0.1 0.1,-0.2 0.1,-0.1 0.3,-0.2 0.4,-0.3 0.1,-0.1 0.2,-0.1 0.3,-0.2 0.2,-0.1 0.3,-0.3 0.5,-0.5 0.1,-0.1 0.2,-0.3 0.3,-0.4 0.1,-0.1 0.3,-0.2 0.4,-0.3 0.2,-0.1 0.3,-0.3 0.4,-0.4 0.3,-0.3 0.6,-0.5 1,-0.6 0.5,-0.3 1,-0.7 1.5,-0.7 0.3,0 0.5,-0.2 0.8,-0.2 0.3,0 0.5,-0.2 0.8,-0.3 0.2,0.2 0.1,0.7 0,0.9 -0.1,0.3 -0.4,0.4 -0.5,0.7 -0.2,0.3 -0.4,0.5 -0.5,0.8 0,0.2 -0.1,0.3 -0.1,0.5 -0.1,0.2 -0.2,0.3 -0.4,0.4 -0.2,0.2 -0.5,0.4 -0.7,0.6 -0.1,0.1 -0.2,0.2 -0.3,0.3 0,0.1 0,0.1 -0.1,0.2 0,0.1 -0.1,0.2 -0.2,0.3 -0.1,0.2 -0.1,0.3 -0.2,0.5 -0.1,0.2 -0.2,0.3 -0.3,0.4 0,0 -0.1,0.1 -0.1,0.1 0,0.1 0.1,0.2 0.2,0.2 0.1,0 0.2,-0.2 0.4,-0.1 0,0.1 -0.1,0.3 -0.2,0.4 0,0.1 -0.2,0.4 -0.1,0.5 0.1,0 0.2,-0.2 0.3,-0.1 0,0.1 -0.1,0.2 -0.1,0.3 0,0.1 0.1,0.2 0.1,0.3 0,0.1 -0.1,0.1 -0.1,0.1 0,0.1 0,0.2 -0.1,0.3 0,0.2 -0.1,0.3 -0.2,0.5 -0.1,0.2 -0.2,0.4 -0.2,0.5 0,0.1 0,0.1 0,0.2 0,0.1 -0.1,0.1 -0.1,0.2 0,0.1 -0.1,0.2 -0.1,0.3 -0.1,0.2 -0.1,0.3 -0.2,0.5 -0.1,0.2 -0.1,0.3 -0.2,0.5 -0.1,0.1 -0.2,0.2 -0.2,0.4 0.1,-0.1 0.3,-0.1 0.4,-0.1 0.1,0 0.2,-0.1 0.3,-0.1 0.1,0 0.2,-0.2 0.3,-0.2 0.1,0 0.1,0.1 0.2,0.1 0,0 0.1,-0.1 0.2,-0.1 0.1,-0.1 0.3,-0.1 0.4,-0.2 0,0 0.3,0.1 0.4,0.1 0.1,0 0.2,-0.1 0.3,-0.2 0.1,-0.1 0.2,-0.1 0.3,-0.1 0.2,0 0.4,-0.1 0.5,-0.3 0.2,-0.2 0.4,-0.4 0.7,-0.3 0.1,0.1 0.1,0.1 0.3,0 0.1,-0.1 0.2,-0.2 0.3,-0.3 0,0 0.1,0 0.1,-0.1 0,0 0.1,-0.1 0.1,-0.1 0.1,-0.1 0.2,-0.1 0.3,-0.1 0.3,0 0.4,0.3 0.7,0.1 0.3,-0.2 0.5,-0.2 0.8,0.1 0.2,0.2 0.3,0.4 0.5,0.5 0.1,0 0.2,0.1 0.4,0.1 0.1,0.1 0.2,0.1 0.4,0.1 0.3,0.1 0.6,0.2 0.9,0.2 0.3,0 0.6,0 0.8,-0.1 0.2,-0.1 0.4,-0.3 0.6,-0.4 0.1,0 0,0 0.2,0 0.1,0 0.1,0.1 0.2,0 0.1,0 0.2,-0.1 0.3,-0.2 0.2,-0.2 0.2,-0.4 0.3,-0.6 0.2,-0.2 0.3,-0.3 0.3,-0.6 0,-0.1 0,-0.3 0.1,-0.4 0.1,-0.1 0.2,0 0.3,0 0.1,0 0.3,-0.1 0.4,-0.1 0.1,0 0.3,0 0.4,0 0.1,0 0.1,0 0.2,0 0.1,0 0.1,-0.1 0.1,-0.1 0.3,-0.1 0.6,0.1 0.7,0.4 0.4,0.6 0,1.3 -0.5,1.7 -0.1,0.1 -0.2,0.2 -0.3,0.4 -0.1,0.1 -0.2,0.2 -0.3,0.3 -0.1,0.1 0,0.3 0,0.4 0,0.2 0.2,0.3 0.3,0.5 0.1,0.1 0.1,0.2 0.1,0.3 -0.1,0.2 -0.1,0.2 -0.1,0.4 0,0.1 0,0.3 0,0.4 0,0.1 0.2,0.3 0.3,0.4 0.2,0.3 0.3,0.5 0.3,0.8 0,0.1 0.1,0.2 0.1,0.4 0,0.1 0.1,0.3 0.2,0.4 0.1,0.1 0,0.3 0.1,0.4 0.1,0.1 0.1,0.3 0.2,0.4 0.1,0.2 0.3,0.4 0.3,0.6 0,0.1 0,0.2 0.1,0.4 0,0.1 0.1,0.2 0.1,0.3 0,0.1 0,0.1 0,0.2 0,0 0.1,0.1 0.1,0.1 0,0.1 0.1,0.1 0.1,0.2 0.1,0.1 0.1,0.1 0.2,0.1 0.1,0.1 0.1,0.2 0.1,0.3 0.1,0.1 0.2,0.1 0.3,0.1 0.1,0 0.2,-0.1 0.2,-0.2 0.1,-0.1 0.2,-0.1 0.4,-0.2 0.2,-0.1 0.1,-0.1 0.2,-0.2 0.1,-0.2 0.1,-0.2 0.3,-0.3 0.2,-0.1 0.3,-0.3 0.5,-0.4 0.2,-0.2 0.5,0 0.7,0 0.1,0 0.3,0 0.4,-0.1 0.1,0 0.1,-0.1 0.2,-0.1 0.1,0 0.2,0.1 0.3,0.1 0.1,0 0.2,0.1 0.3,0.2 0.1,0.1 0,0.2 0.1,0.3 0.1,0.3 0.5,0.4 0.7,0.4 0.3,0.1 0.5,0.1 0.7,-0.1 0.2,-0.1 0.3,-0.3 0.4,-0.4 0.1,-0.1 0.1,-0.3 0.2,-0.4 0.2,-0.2 0.4,-0.2 0.5,-0.4 0.1,-0.1 0.2,-0.3 0.3,-0.4 0.1,-0.1 0.2,-0.2 0.3,-0.2 0.2,-0.1 0.4,-0.3 0.7,-0.4 0.2,-0.1 0.5,-0.3 0.7,-0.4 0.2,-0.1 0.3,-0.2 0.5,-0.5 0.1,-0.1 0.1,-0.3 0.2,-0.4 0.1,-0.1 0.2,-0.2 0.2,-0.3 0.1,-0.2 0.3,-0.3 0.5,-0.5 0.2,-0.2 0.3,-0.5 0.5,-0.6 0.2,-0.1 0.4,-0.1 0.5,-0.3 0.2,-0.1 0.4,-0.2 0.6,-0.3 0,0.1 0.1,0.1 0.1,0.2 0.1,0 0.3,-0.3 0.4,-0.4 0.1,-0.1 0.2,-0.3 0.3,-0.4 0.3,-0.3 0.6,-0.5 0.7,-0.8 0.1,-0.2 0.3,-0.3 0.5,-0.5 0.1,-0.1 0.2,-0.2 0.4,-0.3 0.2,-0.1 0.4,-0.3 0.6,-0.4 0.3,-0.2 0.6,-0.5 0.9,-0.7 0.1,-0.1 0.2,-0.2 0.3,-0.3 0.1,-0.1 0.2,-0.1 0.2,-0.2 -0.2,-0.1 -0.2,0.2 -0.5,0.1 0,-0.2 0.3,-0.4 0.4,-0.5 0.2,-0.2 0.4,-0.5 0.6,-0.7 0.2,-0.2 0.5,-0.3 0.6,-0.6 0.1,-0.2 0.3,-0.4 0.5,-0.6 0.1,-0.1 0.3,-0.3 0.4,-0.4 0.2,-0.2 0.2,-0.4 0.4,-0.6 0.1,-0.1 0.1,-0.2 0.2,-0.3 0,-0.1 0.1,-0.3 0.1,-0.4 0,-0.1 -0.1,-0.1 -0.1,-0.1 0,-0.1 0,-0.1 -0.1,-0.2 0,-0.2 0,-0.3 0.1,-0.5 0.2,-0.3 0.3,-0.6 0.3,-0.9 0,-0.1 0,-0.3 0,-0.4 0,0 0.1,-0.1 0.1,-0.2 0,-0.1 -0.1,-0.1 -0.1,-0.2 -0.1,-0.1 0.1,-0.3 0.1,-0.3 0.1,-0.1 0.1,-0.2 0.2,-0.3 0,-0.1 0.1,-0.3 0.2,-0.4 0.1,-0.1 0.1,-0.1 0.2,-0.2 0,-0.1 0.1,-0.1 0.1,-0.2 0,0 0,-0.1 0,-0.1 0,-0.1 0.1,-0.2 0.1,-0.3 0,0 0.1,-0.1 0.1,-0.1 0,0 0,-0.1 0.1,-0.2 0.1,-0.1 0.1,-0.1 0.2,-0.2 0,-0.1 0.1,-0.1 0.1,-0.2 0.1,-0.1 0.2,-0.3 0.3,-0.4 0.1,-0.1 0.2,-0.1 0.2,-0.3 0,-0.1 0,-0.2 -0.1,-0.3 -0.1,-0.1 -0.1,-0.1 -0.2,-0.2 0,0 -0.2,-0.1 -0.2,-0.1 -0.1,0 -0.1,0.1 -0.2,0.1 -0.1,0 -0.1,0 -0.2,0 -0.1,0 -0.1,0.1 -0.2,0.1 -0.2,0 -0.2,0 -0.3,-0.1 -0.2,-0.1 -0.6,-0.1 -0.9,-0.1 -0.1,0 -0.3,0 -0.4,0 -0.3,-0.1 0.2,-0.3 0.2,-0.3 0.1,-0.2 -0.2,-0.1 -0.3,-0.1 -0.2,0 -0.2,0.1 -0.4,0.2 -0.1,0.1 -0.3,0.2 -0.4,0.2 -0.1,0 -0.1,0 -0.2,0 -0.1,0 -0.1,0 -0.2,0.1 -0.2,0 -0.3,0.1 -0.5,0.2 -0.1,0.1 -0.2,0.2 -0.3,0.2 -0.1,0.1 -0.3,0.2 -0.4,0.2 -0.1,0 -0.3,0 -0.4,0.1 -0.1,0.1 -0.1,0.2 -0.2,0.2 -0.1,0.1 -0.3,0.1 -0.4,0.2 -0.1,0 -0.2,0.1 -0.2,0.2 -0.1,0.1 -0.1,0.2 -0.2,0.3 0,0 -0.1,0 -0.2,0 0,0 -0.1,0 -0.2,0.1 -0.2,0 -0.2,-0.1 -0.4,-0.1 -0.3,0 -0.5,0.1 -0.7,0.1 -0.1,0 -0.3,0 -0.4,0 0,0 -0.1,0 -0.1,0.1 -0.1,0 -0.2,0 -0.3,0.1 -0.1,0 -0.2,0 -0.3,0.1 -0.1,0 -0.2,0.1 -0.3,0.1 -0.1,0 -0.1,-0.1 -0.1,-0.1 -0.1,0 -0.1,0 -0.2,0.1 -0.1,0 -0.2,0 -0.3,0 -0.1,0 -0.1,0.1 -0.2,0.1 -0.3,0 -0.5,0 -0.8,0 -0.4,0 -0.8,0 -1.2,-0.1 -0.2,-0.1 -0.6,0.1 -0.8,-0.2 -0.1,-0.1 0,-0.2 0.1,-0.3 0,-0.1 0,-0.1 0,-0.2 0,0 0.1,0 0.1,-0.1 0,0 0,-0.1 0,-0.1 0,-0.1 0.2,-0.1 0.3,-0.2 0.1,-0.1 0.2,-0.1 0.3,-0.2 0.3,-0.2 0.6,-0.4 0.9,-0.5 0.3,-0.2 0.5,-0.4 0.7,-0.6 0.2,-0.1 0.3,-0.3 0.4,-0.4 0.2,-0.1 0.3,-0.2 0.4,-0.4 0.1,-0.1 0.2,-0.1 0.3,-0.2 0.1,-0.1 0.2,-0.2 0.3,-0.2 0.3,-0.1 0.6,0 0.9,-0.1 0.2,0 0.3,-0.1 0.4,-0.2 0.2,-0.1 0.3,-0.2 0.5,-0.2 0.1,0 0.3,-0.1 0.4,-0.1 0.2,0 0.3,-0.1 0.5,-0.1 0.1,-0.1 0.2,-0.2 0.4,-0.2 0.1,0 0.2,-0.1 0.4,-0.1 0.6,-0.1 1.3,-0.2 1.6,-0.7 0.2,-0.2 0.2,-0.5 0.3,-0.7 0,-0.1 0.2,-0.2 0.2,-0.2 0,-0.1 -0.2,-0.2 -0.3,-0.2 -0.2,-0.1 -0.5,-0.1 -0.7,-0.2 -0.3,-0.1 -0.6,-0.2 -0.9,-0.2 -0.3,0 -0.6,0.1 -0.9,0.2 -0.1,0.1 -0.3,0.1 -0.4,0.1 -0.1,0 -0.3,-0.2 -0.4,-0.2 -0.2,-0.1 -0.5,0 -0.8,-0.1 -0.1,-0.1 -0.1,-0.2 -0.2,-0.2 0,0 -0.1,-0.1 -0.2,-0.1 -0.1,0 -0.2,-0.1 -0.3,-0.1 -0.2,-0.1 -0.5,0.1 -0.7,0.1 -0.2,0 -1.1,0.6 -1.1,0.1 0,-0.3 0.3,-0.4 0.6,-0.6 0.2,-0.1 0.5,-0.2 0.7,-0.4 0.1,-0.1 0.2,-0.2 0.3,-0.3 0.1,-0.1 0.2,-0.1 0.2,-0.2 0,-0.1 0.1,-0.1 0.1,-0.2 0.1,-0.1 0.1,-0.1 0.2,-0.1 0.1,-0.1 0.1,-0.3 0.2,-0.4 0.1,-0.1 0.2,-0.3 0.3,-0.4 0.3,-0.4 0.6,-0.9 0.9,-1.3 0.1,-0.2 0.2,-0.4 0.2,-0.6 0,0 0,0 0,-0.1 0.1,-0.1 0.3,-0.2 0.4,-0.3 0.2,-0.1 0.3,-0.2 0.6,-0.2 0.1,0 0.2,-0.1 0.4,-0.1 0.1,0 0.2,0.1 0.4,0.1 0.1,0 0.2,-0.1 0.4,-0.1 0.1,0 0.1,0.1 0.2,0.1 0.1,0 0.1,-0.1 0.1,-0.1 0.1,0 0.2,-0.1 0.4,-0.1 0.1,0 0.3,0 0.4,0 0.1,0 0.2,-0.1 0.3,-0.2 0.1,0 0.2,-0.1 0.2,-0.2 0,-0.1 0,-0.2 -0.1,-0.2 -0.1,0 -0.1,0 -0.2,-0.1 0,-0.1 -0.1,-0.1 -0.1,-0.1 -0.1,0 -0.3,0 -0.4,-0.1 -0.1,0 -0.1,-0.1 -0.2,-0.2 -0.2,-0.1 -0.4,0 -0.7,-0.1 -0.1,0 -0.2,-0.1 -0.3,-0.2 -0.1,-0.1 -0.2,-0.1 -0.3,-0.2 -0.2,-0.1 -0.7,0.4 -0.6,0 0,-0.1 0.2,-0.2 0.3,-0.3 0.1,-0.1 0.1,-0.2 0.2,-0.3 0.1,-0.1 0.2,-0.2 0.3,-0.2 0.1,0 0.1,0 0.2,0 0,0 0.1,0 0.1,0 0.1,0 0.1,0 0.2,0 0.1,0 0.2,-0.2 0.3,-0.2 0.1,-0.1 0.1,-0.2 0.3,-0.2 0.3,0 0.4,-0.1 0.7,-0.2 0.2,-0.1 0.3,-0.2 0.5,-0.3 0.1,-0.1 0.2,-0.3 0.4,-0.4 0.1,-0.1 0.2,-0.2 0.4,-0.2 0,0 0.1,0 0.1,0 0,0 0.1,0 0.1,0 0,0 0.1,0 0.1,-0.1 0.1,0 0.2,0 0.4,-0.1 0.1,0 0.3,-0.1 0.4,-0.1 0.2,-0.1 0.5,-0.3 0.7,-0.4 0.4,-0.2 0.8,-0.5 1.3,-0.8 0.3,-0.1 0.5,-0.3 0.8,-0.3 0.2,0 0.2,0 0.4,-0.1 0.2,-0.1 0.5,-0.2 0.7,-0.3 0.2,-0.1 0.5,-0.2 0.7,-0.3 0.1,-0.1 0.3,-0.1 0.4,-0.2 0.2,-0.1 0.4,-0.3 0.7,-0.3 0.1,0 0.2,0 0.2,0 0.1,0 0.1,-0.1 0.1,-0.1 0.1,-0.1 0.2,-0.1 0.4,-0.2 0.1,-0.1 0.2,-0.1 0.4,-0.1 0.1,0 0.2,-0.1 0.3,-0.1 0.1,0 0.1,0 0.1,0.1 0,0.2 -0.1,0.2 -0.1,0.3 0,0.1 0,0.2 -0.1,0.4 -0.1,0.1 -0.1,0.2 -0.2,0.3 -0.1,0.1 -0.1,0.3 -0.2,0.4 -0.1,0.1 -0.6,0.3 -0.5,0.5 0.1,0.3 0.6,-0.1 0.7,-0.2 0.1,-0.1 0.3,-0.3 0.4,-0.4 0.1,-0.1 0.2,-0.2 0.3,-0.3 0.1,-0.1 0.1,-0.1 0.2,-0.2 0.2,-0.2 0.4,-0.2 0.7,-0.3 0.4,-0.1 0.6,-0.5 0.9,-0.7 0,0 0.1,-0.1 0.2,-0.1 0,0 0.1,0 0.1,0 0.3,-0.1 0.5,-0.2 0.8,-0.2 0.3,-0.1 0.5,-0.2 0.8,-0.2 0.3,0 0.5,-0.1 0.8,-0.2 0.3,-0.1 0.5,-0.2 0.7,-0.4 0.1,-0.1 0.2,-0.2 0.4,-0.2 0.2,0 0.2,0.1 0.3,0.1 0.1,0 0.3,0 0.4,0 0.1,0 0.3,-0.1 0.4,-0.1 0.1,-0.1 0.3,0 0.4,-0.1 0.3,-0.1 0.4,-0.3 0.6,-0.5 0.3,-0.3 0.6,-0.7 0.9,-1 0.1,-0.1 0.4,-0.3 0.4,-0.5 0,-0.1 0,-0.2 0,-0.4 0,-0.1 0,-0.1 0,-0.2 0,-0.1 0,-0.2 0,-0.2 0.1,-0.4 0.1,-0.7 0.1,-1.1 0,-0.2 0,-0.4 0,-0.5 0,-0.1 0,-0.1 0.1,-0.2 0,-0.1 0,-0.2 0,-0.3 0,-0.1 0,-0.2 0,-0.2 0,-0.1 0,-0.2 -0.1,-0.2 -0.2,0 -0.4,0 -0.6,0 -0.1,0 -0.1,0.1 -0.2,0.1 -0.1,0 -0.2,-0.1 -0.2,-0.1 -0.1,0 -0.2,-0.2 -0.3,-0.3 0,-0.2 0,-0.3 0.2,-0.4 0.2,-0.1 0.3,-0.2 0.5,-0.4 0.1,-0.1 0.2,-0.2 0.3,-0.4 0.2,-0.3 0,-0.4 -0.3,-0.3 -0.1,0 -0.1,0 -0.2,0 0,0 -0.1,0 -0.1,0 -0.1,0 -0.2,0 -0.3,0 -0.1,0 -0.3,-0.2 -0.2,-0.4 0,0 0.1,-0.1 0.1,-0.2 0,-0.1 0.1,-0.1 0.2,-0.2 0,-0.1 0,-0.4 0.1,-0.5 0,-0.1 -0.1,-0.1 -0.2,-0.2 -0.1,-0.1 -0.2,-0.1 -0.4,-0.1 -0.3,-0.1 -0.5,-0.2 -0.7,-0.3 -0.2,-0.1 -0.2,0 -0.4,0 0,0 -0.1,0 -0.2,0 -0.1,0 -0.1,0 -0.2,-0.1 -0.1,0 -0.1,0 -0.1,0 -0.1,0 -0.1,-0.1 -0.2,-0.1 -0.1,-0.1 -0.2,-0.1 -0.3,-0.2 -0.1,0.1 -0.2,0 -0.3,0 -0.1,0 -0.3,0.1 -0.4,0.2 -0.2,0.2 -0.4,0.5 -0.6,0.7 -0.2,0.1 -0.4,0.3 -0.5,0.5 -0.1,0.1 -0.2,0.2 -0.3,0.3 0,0 -0.1,0.1 -0.1,0.1 0,0.1 0,0.1 -0.1,0.2 -0.1,0.1 -0.2,0.1 -0.3,0.1 -0.1,0 -0.3,0.1 -0.4,0.1 -0.1,0 -0.1,0 -0.2,0.1 0,0 -0.1,0.1 -0.1,0.1 -0.1,0.1 -0.3,0 -0.4,0 -0.1,0 -0.1,0 -0.2,0 -0.1,0 0,-0.1 -0.1,-0.1 -0.1,0 -0.3,0 -0.4,0 -0.1,0 -0.2,0.1 -0.4,0.1 -0.2,0 -0.3,0 -0.4,-0.1 -0.1,0 -0.2,-0.1 -0.3,-0.2 -0.1,0 -0.2,-0.1 -0.3,-0.1 -0.2,-0.1 -0.5,-0.1 -0.7,-0.1 -0.2,0 -0.5,0.2 -0.8,0 -0.3,-0.2 -0.2,-0.3 0,-0.5 0.1,-0.1 0.2,-0.1 0.3,-0.2 0.1,-0.1 0.1,-0.2 0.1,-0.3 0,-0.1 0.1,-0.2 0.1,-0.2 0,-0.1 -0.2,-0.2 -0.3,-0.2 -0.1,0 -0.2,-0.1 -0.3,-0.1 -0.1,0 -0.3,0 -0.4,0 -0.1,0 -0.3,0 -0.4,0.1 -0.1,0 -0.2,0.1 -0.4,0.1 -0.1,0 -0.2,0 -0.2,0.1 -0.1,0 -0.2,0.1 -0.4,0.1 -0.1,0 -0.2,0.1 -0.4,0.2 -0.1,0 -0.3,0.1 -0.4,0.1 -0.2,0 -0.3,0.1 -0.5,0.1 -0.1,0 -0.2,0 -0.4,0 -0.1,0 -0.3,0 -0.4,0 -0.1,0 -0.2,0.1 -0.4,0.1 -0.2,0 -0.3,0 -0.4,0 -0.1,0 -0.3,0.1 -0.4,0.2 -0.1,0 -0.1,0 -0.2,0 0,0 -0.1,0.1 -0.1,0.1 -0.1,0 -0.2,-0.1 -0.3,-0.1 -0.1,0 -0.1,0 -0.2,0 -0.1,0 -0.1,0 -0.2,0.1 -0.1,0 -0.1,0 -0.2,0 -0.1,0 -0.1,0 -0.2,0 -0.1,0 -0.1,0 -0.2,0 -0.1,0 -0.1,0 -0.1,0 -0.1,0 -0.2,0 -0.2,-0.1 -0.1,-0.1 -0.1,-0.3 0,-0.4 0.1,-0.1 0.1,-0.2 0.2,-0.4 0,-0.1 0.1,-0.2 0.1,-0.3 0.1,-0.3 0,-0.6 0.2,-0.8 0.2,-0.3 0.6,-0.2 0.9,-0.2 0.1,0 0.3,-0.1 0.4,-0.1 0.1,-0.1 0.1,-0.2 0.3,-0.3 0.1,-0.1 0.2,-0.1 0.3,-0.1 0.1,-0.1 0.2,-0.1 0.4,-0.2 0.1,-0.1 0.2,-0.1 0.3,-0.1 0.1,-0.1 0.2,0 0.4,-0.1 0.2,-0.1 0.6,-0.3 0.4,-0.5 -0.1,-0.1 -0.2,-0.1 -0.4,-0.1 -0.1,0 -0.3,0 -0.4,0 -0.1,0 -0.2,0.1 -0.3,0.1 -0.1,0 -0.2,-0.1 -0.2,-0.2 0,-0.1 -0.1,-0.2 -0.2,-0.3 -0.1,-0.1 -0.3,-0.1 -0.2,-0.3 0,-0.1 0.1,-0.2 0.2,-0.2 0.2,-0.2 0.4,-0.4 0.7,-0.6 0.1,-0.1 0.1,-0.1 0.2,-0.2 0.1,0 0.1,0 0.2,-0.1 0.1,-0.1 0.2,-0.1 0.4,-0.2 0.3,-0.2 0.7,-0.2 1.1,-0.4 0,0 0.1,0 0.1,0 0.1,0 0.2,-0.1 0.4,-0.1 0.1,0 0.1,0 0.2,0 0.1,0 0.1,-0.1 0.2,-0.1 0.1,-0.1 0.2,-0.1 0.4,-0.1 0.3,0 0.6,-0.1 0.8,-0.3 0.2,-0.1 0.5,-0.3 0.7,-0.4 0.3,-0.2 0.6,-0.4 0.9,-0.5 0.2,-0.1 0.4,0 0.5,-0.1 0.1,0 0.2,-0.1 0.3,-0.1 0.1,0 0.1,0 0.2,0 0.1,0 0.1,-0.1 0.1,-0.1 0.1,0 0.1,0 0.2,0 0.1,0 0.2,-0.1 0.3,-0.2 0.1,-0.1 0.2,-0.1 0.3,-0.2 0.1,-0.1 0.1,-0.2 0.2,-0.3 0.1,-0.1 0.1,-0.2 0.1,-0.3 0,0 0,-0.1 0,-0.1 0,-0.1 0,-0.2 0,-0.2 0,-0.2 0.2,-0.4 0.4,-0.5 0.1,-0.1 0.3,-0.2 0.4,-0.3 0.2,-0.1 0.3,-0.3 0.5,-0.4 0.1,-0.1 0.1,-0.1 0.2,-0.1 0.1,0 0.2,-0.1 0.2,-0.1 0.2,-0.2 0.2,-0.5 0.4,-0.8 0.1,-0.1 0.1,-0.1 0.2,-0.2 0.1,0 0.2,-0.1 0.3,-0.2 0.2,-0.1 0.3,-0.4 0.5,-0.6 0.1,-0.1 0.2,-0.2 0.3,-0.3 0.1,-0.1 0.2,-0.3 0.2,-0.4 0,-0.2 -0.2,-0.4 -0.2,-0.6 -0.1,-0.1 -0.1,-0.3 -0.2,-0.4 -0.2,-0.2 -0.6,-0.3 -0.9,-0.4 -0.1,0 -0.3,-0.1 -0.4,-0.2 -0.1,0 -0.3,-0.3 -0.3,0 -0.2,0.1 -0.4,0 -0.2,-0.2 0.1,-0.1 0.2,-0.2 0.3,-0.3 0.1,-0.1 0.2,-0.2 0.2,-0.3 0,-0.1 0.1,-0.1 0.1,-0.2 0,-0.1 0,-0.2 0.1,-0.2 0.1,-0.2 0.2,-0.3 0.2,-0.6 0,-0.2 0,-0.4 0,-0.5 0.1,-0.4 0.3,-0.6 0.6,-0.8 0.3,-0.3 0.6,-0.7 1,-0.9 0.4,-0.2 0.9,-0.4 1.3,-0.6 0.6,-0.2 1.1,-0.5 1.7,-0.8 0.3,-0.1 0.6,-0.2 0.9,-0.3 0.1,0 0.2,-0.1 0.4,-0.1 0.1,0 0.2,-0.1 0.2,-0.1 0,0.1 0,0.2 0.1,0.2 0,0.1 0.1,0.2 0.1,0.2 0,0.1 -0.1,0.1 -0.1,0.2 0,0.1 0,0.2 0.1,0.2 0.1,-0.1 0.2,0 0.3,-0.1 0.2,0 0.3,-0.1 0.5,-0.2 0.4,-0.1 0.8,-0.2 1.1,-0.3 0.1,-0.1 0.2,-0.1 0.4,-0.1 0.1,0 0.2,0 0.3,-0.1 0,0 0.1,0 0.1,0 0.1,0 0.1,-0.1 0.2,-0.1 0.1,0 0.2,0.1 0.4,0.1 0.1,0 0.2,-0.1 0.2,-0.1 0.1,0 0.1,0 0.2,0 0.1,0 0.2,-0.1 0.4,-0.1 0.1,0 0.1,0.1 0.1,0.1 0.1,0.1 0.1,0.1 0.3,0.1 0.2,0 0.5,-0.2 0.7,-0.1 0.1,0 0.2,0.1 0.3,0.2 0.1,0 0.2,0.1 0.3,0.1 0.1,0 0.2,0 0.4,0 0.1,0 0.1,0 0.2,0 0.1,0 0.1,0 0.1,-0.1 0.3,-0.1 0.5,-0.1 0.8,-0.1 0.2,-0.1 0.5,-0.3 0.7,-0.5 0.1,-0.1 0.1,-0.1 0.1,-0.2 0.1,-0.1 0.2,0 0.3,0 0.1,0 0.4,-0.1 0.5,-0.2 0.2,-0.1 0.4,-0.3 0.6,-0.4 0.2,-0.1 0.5,-0.2 0.8,-0.2 0.1,0 0.2,0 0.3,-0.1 0.2,-0.2 0.5,-0.2 0.7,-0.4 0.2,-0.1 0.4,-0.3 0.6,-0.5 0.2,-0.1 0.3,-0.2 0.5,-0.3 -0.1,0 -0.1,-0.1 -0.2,-0.1 -0.1,0 -0.2,0 -0.3,0 -0.2,0.1 -0.2,0.3 -0.4,0.4 -0.1,0 -0.2,0 -0.3,0 -0.1,0 -0.1,0 -0.2,0.1 -0.1,0.1 -0.1,0.1 -0.2,0.2 -0.1,0.1 -0.2,0.1 -0.3,0.1 -0.2,0.1 -0.4,0.1 -0.6,0.2 -0.2,0.1 -0.4,0.2 -0.6,0.2 -0.1,0 -0.2,0.1 -0.3,0.1 0,0 -0.1,0 -0.1,0 -0.1,0 -0.1,0.1 -0.1,0.1 0,0 -0.1,0 -0.1,0 -0.1,0 -0.1,0 -0.2,0 -0.1,0 -0.2,0 -0.4,-0.1 0,-0.1 0.3,-0.3 0.3,-0.4 0.2,-0.1 0.3,-0.2 0.4,-0.2 0.2,-0.1 0.3,-0.1 0.5,-0.2 0.3,-0.1 0.5,-0.3 0.7,-0.5 0.3,-0.2 0.6,-0.3 0.9,-0.5 0.3,-0.2 0.7,-0.4 1,-0.4 0.1,0 0.2,0 0.2,0 0.1,0 0.1,-0.1 0.2,-0.1 0.2,-0.1 0.4,-0.2 0.5,-0.3 0.3,-0.2 0.6,-0.3 0.8,-0.4 0.2,-0.1 0.4,-0.1 0.5,-0.2 0.2,-0.1 0.4,-0.1 0.6,-0.2 0.2,-0.1 0.3,-0.2 0.5,-0.2 0.1,0 0.1,0 0.2,-0.1 0.1,0 0.1,-0.1 0.2,-0.1 0,0 0,0 0,0 0,0 0,0 0.1,0 0.1,0 0.1,0 0.2,0 0,0 0.1,0 0.1,0 0.1,0 0.2,-0.1 0.3,-0.1 0.1,0 0.2,0 0.3,0 0.1,0 0.2,0 0.3,-0.1 0.1,-0.1 0.3,-0.1 0.4,-0.2 0.1,0 0.2,-0.1 0.2,-0.1 0.1,-0.1 0.1,-0.1 0.2,-0.2 0.4,-0.2 0.8,-0.4 1.3,-0.5 0.3,0 0.5,-0.1 0.8,-0.1 0.2,-0.1 0.4,-0.1 0.7,-0.2 0.2,-0.1 0.4,-0.1 0.6,-0.3 0.1,-0.1 0.3,-0.2 0.5,-0.3 0.3,-0.1 0.7,-0.2 1,-0.3 0.3,-0.1 0.6,-0.2 0.9,-0.3 0.3,-0.1 0.5,-0.2 0.8,-0.3 0.1,-0.1 0.3,-0.1 0.4,-0.2 0.1,-0.1 0.1,-0.1 0.2,-0.1 0.2,-0.1 0.5,-0.2 0.7,-0.3 0.2,-0.1 0.4,-0.1 0.5,-0.3 0.1,-0.1 0.1,-0.2 0.2,-0.3 0.2,-0.1 0.3,-0.1 0.5,-0.1 0.1,0 0.2,0 0.3,0 0.1,0 0.1,0 0.2,0 0.1,0 0.1,-0.1 0.2,-0.1 0.4,-0.3 0.9,-0.5 1.4,-0.6 0.3,-0.1 0.8,-0.2 1.1,-0.4 0.1,-0.1 0.2,-0.1 0.3,-0.2 0.1,0 0.2,-0.1 0.3,-0.1 0.1,0 0.2,0 0.3,-0.1 0.2,-0.1 0.3,-0.1 0.5,-0.2 0.1,0 0.5,-0.1 0.5,-0.2 -0.1,0 -0.2,-0.1 -0.2,-0.1 0,-0.1 0.2,-0.1 0.3,-0.1 0.3,-0.1 0.6,-0.1 0.8,-0.2 0.2,0 0.3,-0.1 0.5,-0.1 0.2,-0.1 0.4,-0.1 0.6,-0.1 0.1,0 0.2,-0.1 0.4,-0.1 0.1,0 0.2,0 0.3,-0.1 0.1,0 0.1,-0.1 0.2,-0.1 0.2,-0.1 0.4,-0.2 0.6,-0.2 0.2,-0.1 0.4,-0.2 0.6,-0.2 0.2,0 0.3,0 0.5,0 0.1,0 0.5,-0.2 0.3,-0.3 -0.1,0 -0.2,0 -0.2,0 -0.1,0 -0.2,0 -0.3,0 -0.1,0 -0.2,0 -0.3,0 -0.1,0 -0.2,0 -0.2,0 -0.1,0 -0.1,0 -0.1,0 -0.1,0 -0.1,0 -0.2,0 0,0 -0.1,0 -0.1,0 0,0 -0.1,0 -0.1,0 -0.1,0 -0.2,0.1 -0.3,0 -0.1,0 -0.1,-0.1 -0.2,0 0,0 0,0 -0.1,0 0,0 -0.1,0 -0.1,0 -0.1,0 -0.2,0 -0.3,0 -0.2,0 -0.3,0.1 -0.5,0.1 -0.2,0 -0.3,0 -0.4,0 -0.2,0 -0.4,0 -0.6,0.1 -0.1,0.1 -0.2,0.1 -0.3,0.1 -0.1,0 -0.2,0.1 -0.3,0.1 -0.1,0 -0.2,0 -0.3,0.1 -0.1,0 -0.1,0 -0.2,0.1 -0.2,0.1 -0.3,0.3 -0.5,0.4 -0.2,0.1 -0.5,0.2 -0.7,0.2 -0.3,0 -0.5,0.1 -0.8,0.1 -0.1,0 -0.2,0 -0.3,0.1 -0.1,0 -0.2,0 -0.3,0 -0.1,0 -0.2,0 -0.3,0 -0.2,0.1 -0.4,0.1 -0.6,0.2 -0.2,0.1 -0.3,0.1 -0.4,0.2 -0.1,0 -0.2,0.1 -0.3,0.1 -0.1,0 -0.2,0 -0.3,0 -0.1,0 -0.2,0.1 -0.3,0.1 -0.1,0 -0.2,0.1 -0.3,0.1 -0.1,0 -0.2,0 -0.3,0 -0.1,0 -0.2,0.1 -0.3,0.1 -0.1,0 -0.3,0.1 -0.4,0.1 -0.2,0 -0.4,0 -0.6,0 -0.2,0 -0.4,0.1 -0.5,0.2 -0.3,0.1 -0.5,0.2 -0.8,0.2 -0.1,0 -0.2,0 -0.3,0 0,0 -0.1,0 -0.1,0 -0.1,0 -0.1,0 -0.2,0 -0.1,0 -0.2,0.1 -0.2,0.1 0,0 -0.2,0.1 0,0.1 0.1,0 0.2,-0.1 0.2,-0.1 0,0 0.3,0 0.3,0 0,0.1 0,0.2 0,0.2 0,0.1 0.2,0.1 0.2,0.1 0.1,0.1 0.1,0.2 0.1,0.2 0,0.1 -0.1,0.2 -0.2,0.2 -0.1,0.1 -0.3,0.1 -0.5,0.2 -0.2,0.1 -0.4,0.1 -0.6,0.1 -0.3,0 -0.5,0.1 -0.8,0.1 -0.2,0.1 -0.5,0.2 -0.7,0.2 -0.3,0 0,-0.3 0.1,-0.4 0.1,-0.1 0.3,-0.2 0.2,-0.2 -0.1,-0.1 -0.2,-0.1 -0.2,0 -0.1,0.1 -0.1,0.1 -0.2,0.2 -0.1,0.1 -0.2,0.2 -0.3,0.2 -0.2,0.1 -0.4,0.2 -0.5,0.2 -0.3,0.1 -0.5,0.2 -0.8,0.4 -0.1,0.1 -0.3,0.2 -0.5,0.2 -0.1,0 -0.3,0.1 -0.4,0.1 -0.2,0 -0.3,-0.3 -0.3,-0.5 0,-0.1 0,-0.1 0.1,-0.2 0,0 0.1,0 0.1,0 0,0 0,-0.1 0.1,-0.1 0.1,0 0.2,0 0.3,-0.1 0.1,0 0.2,-0.1 0.2,-0.1 0.2,-0.1 0.3,-0.1 0.5,-0.2 0.2,-0.1 0.3,-0.1 0.5,-0.2 0.2,-0.1 0.5,-0.2 0.7,-0.3 0.1,-0.1 0.1,0 0.1,-0.1 0,0 0,-0.1 0,-0.1 -0.1,0 -0.2,0.1 -0.3,0.1 -0.1,0 -0.1,0 -0.1,0 -0.1,0 -0.2,0.1 -0.3,0.1 -0.1,0 -0.2,0.1 -0.3,0.1 -0.1,0 -0.2,0 -0.3,0 -0.1,0 -0.2,0.1 -0.3,0.1 -0.1,0 -0.3,0.1 -0.5,0.2 -0.1,0.1 -0.1,0.1 -0.2,0.1 -0.1,0 -0.2,0 -0.2,0 -0.1,0 -0.2,0.1 -0.3,0.1 -0.1,0 -0.2,0.1 -0.3,0 0,-0.1 0.1,-0.1 0.1,-0.1 0,0 0,0 0.1,-0.1 0,0 0,0 0,0 0.1,-0.1 0.2,-0.1 0.4,-0.1 0.1,-0.1 0.2,-0.2 0.4,-0.2 0.1,0 0.1,0 0.2,-0.1 0,0 0.1,-0.1 0.1,-0.1 0,0 0,0 0.1,0 0,0 0.1,0 0.1,0 0,0 0.1,0 0.1,0 0.1,0 0.1,0 0.2,-0.1 0.1,0 0.3,-0.2 0.3,-0.2 0,-0.1 -0.1,-0.1 -0.2,-0.1 0,0 -0.1,0 -0.1,0 0,0 -0.1,0 -0.1,0 0,0 -0.1,0 -0.1,0 0,0 -0.1,0 -0.1,0 -0.1,0 -0.1,0.1 -0.2,0.1 -0.2,0 -0.4,0.1 -0.6,0.1 -0.1,0 -0.2,0.1 -0.3,0.1 -0.1,0 -0.2,0 -0.2,0 -0.3,0.1 -0.6,0.2 -0.9,0.2 -0.2,0 -0.3,0 -0.5,0 -0.2,0 -0.4,0.1 -0.6,0.2 -0.3,0.1 -0.6,0.2 -0.9,0.3 -0.3,0.1 -0.5,0.1 -0.7,0.2 -0.2,0.1 -0.4,0.1 -0.7,0.1 -0.2,0 -0.3,0.1 -0.5,0.1 -0.2,0 -0.3,0.2 -0.5,0.2 -0.2,0 -0.3,0 -0.4,0 -0.1,0 -0.3,0.1 -0.4,0.1 -0.1,0 -0.2,0 -0.4,0 -0.2,0 -0.4,0.1 -0.6,0.1 -0.3,0 -0.5,0 -0.8,0 -0.4,0.1 -0.7,0.3 -1.1,0.3 -0.1,0 -0.3,0 -0.4,0 -0.1,0 -0.2,0.1 -0.4,0.1 -0.1,0 -0.2,0 -0.3,0 -0.1,0 -0.2,0.1 -0.4,0.1 -0.1,0 -0.1,0 -0.2,0 0,0 -0.1,0 -0.1,0 -0.1,0 -0.2,0 -0.2,0.1 -0.1,0 -0.2,0 -0.3,0.1 -0.1,0.1 -0.3,0.2 -0.4,0.3 -0.1,0.1 -0.4,0.2 -0.5,0.1 -0.1,-0.1 0,-0.1 -0.2,0 -0.3,0 -0.5,0.2 -0.8,0.3 -0.2,0.1 -0.4,0.1 -0.6,0.1 -0.1,0 -0.2,0.1 -0.3,0.1 -0.1,0 -0.2,0.1 -0.3,0.2 -0.1,0 -0.2,0.1 -0.3,0.1 -0.1,0 -0.2,0 -0.3,0 -0.2,0.1 -0.3,0.2 -0.5,0.3 -0.1,0.1 -0.3,0.1 -0.4,0.2 0,0 0,0 0,0 0,0 0,0 -0.1,0 -0.1,0 -0.1,0 -0.2,0 -0.1,0 -0.1,0 -0.2,0 -0.1,0 -0.3,0.1 -0.4,0.1 0,0 -0.1,0 -0.1,0.1 -0.1,0 -0.1,0.1 -0.2,0.1 -0.1,0 -0.1,0 -0.2,0 0,0 -0.1,0 -0.1,0.1 -0.2,0 -0.4,0 -0.5,0.1 -0.1,0.1 -0.2,0.1 -0.2,0.2 -0.1,0 -0.2,0.1 -0.3,0.1 -0.3,0.1 -0.5,0.3 -0.8,0.3 -0.6,0.2 -1.2,0.3 -1.8,0.5 -0.5,0.2 -1,0.3 -1.6,0.4 -0.5,0.1 -0.9,0.3 -1.4,0.5 -0.1,0.1 -0.3,0.1 -0.4,0.1 -0.1,0 -0.2,0.1 -0.2,0.2 -0.1,0 -0.2,0 -0.2,0.1 -0.1,0 -0.2,0.1 -0.2,0.2 -0.1,0 -0.1,0 -0.2,0.1 0,0 -0.1,0.1 -0.1,0.1 -0.1,0 -0.2,0 -0.2,0 0,0 -0.1,0 -0.1,0 -0.1,0 -0.1,0 -0.2,0 -0.1,0 -0.2,0 -0.3,0.1 -0.2,0.1 -0.4,0.2 -0.6,0.3 -0.1,0 -0.2,0.1 -0.4,0.1 -0.1,0 -0.2,0.1 -0.3,0.1 -0.1,0 -0.1,0 -0.2,0 -0.1,0 -0.1,0.1 -0.1,0.1 -0.1,0 -0.1,0 -0.2,0 -0.1,0 -0.2,0 -0.2,0.1 -0.5,0.1 -1,0.4 -1.5,0.5 -0.1,0 -0.2,0.1 -0.3,0.2 -0.1,0 -0.2,0 -0.4,0.1 -0.1,0 -0.2,0.1 -0.4,0.2 -0.1,0 -0.3,0.1 -0.4,0.1 -0.3,0.1 -0.5,0.3 -0.8,0.5 -0.3,0.2 -0.6,0.2 -0.8,0.3 -0.5,0.1 -0.8,0.6 -1.2,0.8 -0.4,0.3 -0.9,0.5 -1.3,0.7 -0.2,0.1 -0.4,0.1 -0.6,0.2 -0.1,0 -0.2,0.1 -0.3,0.1 -0.1,0 -0.3,0 -0.4,0.1 -0.2,0.1 -0.3,0.1 -0.5,0.2 -0.2,0.2 -0.5,0.3 -0.7,0.4 -0.2,0.1 -0.4,0.2 -0.6,0.3 -0.2,0.1 -0.5,0.3 -0.8,0.4 -0.2,0.1 -0.5,0.2 -0.7,0.3 -0.1,0.1 -0.3,0.1 -0.4,0.2 -0.1,0.1 -0.3,0.2 -0.4,0.2 -0.5,0.2 -0.9,0.6 -1.3,0.9 -0.3,0.2 -0.6,0.5 -0.8,0.8 -0.4,0.4 -0.8,0.6 -1.3,0.9 -0.3,0.2 -0.5,0.3 -0.8,0.4 -0.1,0.1 -0.2,0.1 -0.3,0.2 -0.1,0.1 -0.2,0.1 -0.2,0.2 0.2,0.1 0.4,0 0.7,-0.2 0.1,-0.1 0.2,-0.1 0.3,-0.1 0.1,-0.1 0.2,-0.2 0.4,-0.2 0.2,-0.1 0.4,-0.2 0.6,-0.2 0.3,-0.1 0.5,-0.2 0.8,-0.3 0.1,0 0.2,-0.1 0.3,-0.1 0.2,-0.1 0.3,-0.1 0.4,-0.2 0.1,-0.1 0.3,-0.2 0.4,-0.3 0.2,-0.1 0.3,-0.2 0.5,-0.3 0.1,-0.1 0.2,-0.1 0.4,-0.2 0.1,0 0.2,0 0.3,0 -0.1,0.1 -0.3,0.2 -0.5,0.4 -0.2,0.1 -0.4,0.1 -0.6,0.2 -0.1,0.1 -0.3,0.3 -0.4,0.4 -0.1,0.1 -0.2,0.2 -0.3,0.2 -0.1,0 -0.3,0 -0.4,0 0,0 -0.1,0.1 -0.2,0.1 -0.1,0 -0.1,0.1 -0.2,0.1 -0.1,0.1 -0.3,0.1 -0.4,0.2 -0.1,0.1 -0.2,0.1 -0.4,0.2 0,0 -0.1,0 -0.2,0 -0.1,0 -0.1,0.1 -0.2,0.2 -0.4,0.4 -0.9,0.5 -1.4,0.8 -0.3,0.2 -0.7,0.4 -1.1,0.7 -1.2,1.3 -1.4,1.3 -1.6,1.5 -0.1,0.1 -0.2,0.1 -0.3,0.2 -0.1,0 -0.2,0.1 -0.4,0.2 -0.2,0.2 -0.5,0.3 -0.7,0.5 -0.1,0.1 -0.3,0.1 -0.4,0.3 -0.1,0.1 -0.1,0.1 -0.2,0.2 -0.1,0.1 -0.3,0.1 -0.4,0.2 -0.2,0.2 -0.5,0.3 -0.7,0.4 -0.1,0.1 -0.2,0.1 -0.3,0.2 -0.1,0 -0.1,0.1 -0.2,0.1 -0.1,0 -0.2,0 -0.4,0.1 -0.2,0.1 -0.3,0.3 -0.5,0.4 -0.1,0 -0.2,0 -0.3,0 -0.2,0.1 -0.4,0.1 -0.6,0.2 -0.1,0 -0.2,0.1 -0.3,0.2 -0.2,0.1 -0.4,0.1 -0.5,0.2 -0.3,0.1 -0.6,0.3 -0.8,0.5 -0.2,0.1 -0.4,0.2 -0.6,0.3 -0.1,0.1 -0.2,0.1 -0.1,0.2 0,0 0.2,0.1 0.1,0.1 0.1,0 0,0 0.1,0 0.1,0 0.2,-0.1 0.2,-0.2 0.1,-0.1 0.2,-0.2 0.3,-0.3 0.2,-0.1 0.4,-0.2 0.6,-0.3 0.3,-0.1 0.5,-0.2 0.8,-0.3 0.1,-0.1 0.3,-0.1 0.4,-0.1 0.2,-0.1 0.3,-0.2 0.5,-0.2 0.2,-0.1 0.4,-0.2 0.5,-0.3 0.2,-0.1 0.4,-0.2 0.6,-0.3 0.2,-0.1 0.4,-0.3 0.6,-0.3 0.1,0 0.3,0 0.3,0.1 0,0.1 -0.2,0.1 -0.2,0.2 -0.1,0.1 -0.2,0.2 -0.4,0.3 0,-0.1 -0.2,0 -0.3,0 -0.2,0.1 -0.4,0.3 -0.6,0.4 -0.2,0.1 -0.3,0.2 -0.5,0.3 -0.1,0.1 -0.2,0.1 -0.4,0.2 -0.1,0.1 -0.2,0.1 -0.3,0.2 -0.1,0.1 -0.2,0.2 -0.3,0.3 -0.1,0.1 -0.1,0.2 -0.1,0.2 -0.1,0.1 -0.1,0 -0.2,0.1 -0.2,0.1 -0.3,0.3 -0.5,0.4 -0.1,0.1 -0.2,0.2 -0.3,0.3 0,0.2 0,0.3 -0.1,0.4 -0.1,0.3 -0.5,0.3 -0.7,0.5 -0.2,0.1 -0.4,0.2 -0.6,0.4 -0.2,0.2 -0.3,0.3 -0.5,0.4 -0.2,0.1 -0.4,0.2 -0.5,0.3 0,0 -0.1,0.1 -0.1,0.1 -0.1,0.1 -0.1,0.1 -0.2,0.2 -0.1,0.1 -0.3,0.2 -0.4,0.4 -0.1,0.1 -0.2,0.2 -0.3,0.3 -0.1,0.1 -0.2,0.1 -0.3,0.2 -0.1,0.1 -0.1,0.2 -0.3,0.1 0.1,-0.1 0.2,-0.2 0.2,-0.2 0.1,-0.1 0.3,-0.3 0.3,-0.4 -0.2,-0.1 -0.5,0.2 -0.6,0.3 -0.2,0.2 -0.3,0.4 -0.5,0.6 -0.2,0.1 -0.3,0.3 -0.6,0.5 -0.1,0.1 -0.2,0.1 -0.3,0.1 -0.1,0 -0.1,0 -0.2,0.1 0,0 0,0 -0.1,0 0,0 -0.1,0 -0.1,0 -0.1,0 -0.1,0 -0.1,0.1 -0.1,0 -0.1,0 -0.2,0.1 -0.1,0 -0.1,0.2 -0.2,0.2 -0.1,0 -0.2,0 -0.3,0 -0.2,0 -0.3,0 -0.4,0.1 -0.2,0 -0.3,0.1 -0.5,0.1 -0.1,0 -0.2,0 -0.2,0 -0.1,0 -0.1,0.1 -0.1,0.1 -0.1,0 -0.2,0 -0.3,0.1 -0.1,0.1 -0.2,0.1 -0.3,0.2 0,-0.1 0.1,-0.1 0.2,-0.2 0.1,-0.1 0.2,-0.2 0.3,-0.3 0.2,-0.1 0.3,-0.2 0.5,-0.3 0.2,-0.1 0.3,-0.3 0.5,-0.4 0.2,-0.1 0.3,-0.3 0.5,-0.5 0.1,-0.1 0.2,-0.1 0.2,-0.2 0.1,-0.1 0.2,-0.2 0.3,-0.3 0.2,-0.1 0.3,-0.3 0.5,-0.5 0.1,-0.1 0.3,-0.3 0.4,-0.4 0.1,-0.1 0.4,-0.4 0.3,-0.5 -0.1,0 -0.2,0.1 -0.2,0.2 -0.1,0.1 -0.3,0.2 -0.4,0.3 -0.2,0.2 -0.5,0.2 -0.7,0.3 -0.1,0.1 -0.2,0.2 -0.4,0.3 -0.1,0.1 -0.2,0.2 -0.4,0.3 -0.1,0.1 -0.2,0.2 -0.3,0.3 -0.1,0.1 -0.3,0.2 -0.4,0.3 -0.2,0.2 -0.3,0.4 -0.6,0.6 -0.1,0.1 -0.3,0.3 -0.4,0.4 -0.1,0.1 -0.2,0.2 -0.3,0.3 -0.1,0.1 -0.2,0.1 -0.3,0.2 -0.2,0.2 -0.5,0.4 -0.7,0.6 -0.3,0.3 -0.6,0.6 -0.9,0.9 -0.1,0.1 -0.1,0.1 -0.2,0.2 -0.1,0.1 -0.2,0.1 -0.3,0.2 -0.2,0.2 -0.3,0.4 -0.5,0.5 -0.3,0.2 -0.7,0.4 -1,0.7 -0.1,0.1 -0.3,0.2 -0.4,0.3 -0.2,0.2 -0.3,0.4 -0.5,0.5 -0.3,0.2 -0.5,0.4 -0.8,0.6 -0.2,0.1 -0.4,0.2 -0.7,0.4 -0.3,0.2 -0.6,0.3 -0.8,0.5 -0.2,0.1 -0.4,0.2 -0.5,0.3 -0.2,0.1 -0.3,0.2 -0.5,0.3 -0.1,0.1 -0.2,0.2 -0.4,0.3 -0.2,0.2 -0.5,0.4 -0.7,0.6 -0.2,0.2 -0.5,0.5 -0.7,0.7 -0.1,0.1 -0.2,0.2 -0.3,0.3 -0.1,0 -0.2,0.2 -0.3,0.2 -0.2,0 0.4,-0.6 0.4,-0.6 0.2,-0.2 0.3,-0.3 0.5,-0.4 0.2,-0.1 0.3,-0.3 0.5,-0.5 C 64.9,44.1 65,44 65,44 c 0.1,-0.1 0.2,-0.2 0.3,-0.3 0,-0.1 0.1,-0.2 0,-0.2 -0.1,0 -0.3,0.1 -0.4,0.2 -0.3,0.2 -0.5,0.5 -0.7,0.8 -0.1,0.1 -0.2,0.2 -0.3,0.3 -0.1,0.1 -0.2,0.2 -0.3,0.3 -0.2,0.3 -0.5,0.6 -0.8,0.8 -0.1,0.1 -0.2,0.2 -0.4,0.3 -0.1,0 -0.1,0.1 -0.2,0.1 -0.1,0 -0.1,0.1 -0.1,0.2 0,0 -0.1,0.1 -0.2,0.1 -0.1,0.1 -0.1,0.1 -0.2,0.2 -0.2,0.2 -0.4,0.3 -0.5,0.4 -0.4,0.3 -0.8,0.7 -1.2,1 -0.2,0.1 -0.3,0.2 -0.5,0.3 -0.2,0.2 -0.4,0.3 -0.6,0.5 -0.1,0.1 -0.3,0.2 -0.4,0.3 -0.1,0.1 -0.2,0.2 -0.4,0.3 -0.2,0.2 -0.4,0.3 -0.7,0.5 -0.2,0.2 -0.5,0.4 -0.7,0.7 -0.1,0.1 -0.2,0.2 -0.3,0.3 -0.1,0.2 -0.3,0.2 -0.4,0.4 -0.4,0.4 -0.8,0.9 -1.2,1.3 -0.2,0.2 -0.4,0.4 -0.6,0.6 -0.2,0.2 -0.4,0.3 -0.7,0.5 -0.7,0.6 -1.3,1.4 -1.9,2 -0.1,0.1 -0.1,0.1 -0.1,0.2 -0.1,0.1 -0.2,0.2 -0.3,0.3 -0.2,0.3 -0.4,0.5 -0.6,0.8 -0.3,0.4 -0.7,0.7 -0.9,1.2 -0.2,0.4 -0.3,0.8 -0.3,1.2 -0.1,0.1 -0.2,0.1 -0.3,0.2 -0.2,0.1 -0.2,0.2 -0.4,0.4 -0.1,0.1 -0.2,0.2 -0.3,0.3 -0.1,0.1 -0.2,0.2 -0.3,0.2 -0.1,0.1 -0.3,0.1 -0.4,0.2 0.3,0.1 0.3,0.2 0.2,0.2 -0.1,0 -0.1,0.1 -0.2,0.1 -0.1,0.1 -0.1,0.1 -0.1,0.2 0,0 -0.1,0.1 -0.2,0.1 -0.1,0.1 -0.2,0.1 -0.3,0.2 -0.1,0.1 -0.1,0.2 -0.2,0.3 -0.2,0.2 -0.4,0.3 -0.6,0.5 -0.4,0.3 -0.6,0.8 -0.9,1.1 -0.2,0.2 -0.4,0.5 -0.6,0.7 -0.2,0.2 -0.4,0.5 -0.6,0.7 -0.3,0.3 -0.5,0.6 -0.7,0.9 -0.3,0.3 -0.5,0.6 -0.8,0.9 -0.4,0.4 -0.7,0.9 -1,1.3 -0.3,0.3 -0.5,0.7 -0.8,1 -0.3,0.4 -0.6,0.8 -0.9,1.2 -0.4,0.4 -0.7,1 -1,1.5 -0.3,0.5 -0.7,0.9 -1,1.3 -0.2,0.2 -0.3,0.5 -0.5,0.8 -0.1,0.2 -0.3,0.3 -0.4,0.4 -0.4,0.5 -0.7,1.1 -1,1.7 -0.2,0.4 -0.4,0.7 -0.7,1 -0.2,0.3 -0.3,0.5 -0.5,0.8 -0.2,0.3 -0.3,0.6 -0.5,0.8 -0.2,0.2 -0.3,0.5 -0.4,0.8 -0.2,0.3 -0.4,0.6 -0.5,0.8 -0.1,0.2 -0.3,0.5 -0.4,0.8 -0.1,0.2 -0.3,0.5 -0.4,0.7 -0.2,0.3 -0.2,0.6 -0.4,0.9 -0.2,0.3 -0.4,0.5 -0.5,0.8 -0.2,0.3 -0.3,0.7 -0.5,1 -0.2,0.4 -0.4,0.8 -0.7,1.2 -0.2,0.3 -0.4,0.7 -0.5,1.1 -0.1,0.3 -0.2,0.5 -0.3,0.7 -0.1,0.2 -0.2,0.4 -0.3,0.6 -0.2,0.5 -0.5,0.9 -0.6,1.4 -0.1,0.5 -0.4,1 -0.6,1.5 -0.3,0.1 -0.3,0.2 -0.4,0.4 -0.1,0.2 -0.2,0.3 -0.2,0.5 -0.1,0.3 -0.2,0.5 -0.3,0.8 -0.1,0.3 -0.2,0.6 -0.3,0.8 -0.1,0.3 -0.2,0.5 -0.3,0.8 -0.2,0.3 -0.3,0.7 -0.5,1 -0.1,0.2 -0.2,0.5 -0.3,0.7 -0.1,0.2 -0.1,0.4 -0.2,0.5 -0.2,0.3 -0.3,0.7 -0.4,1 -0.1,0.1 -0.1,0.3 -0.2,0.5 -0.1,0.2 -0.2,0.3 -0.2,0.5 -0.1,0.3 -0.2,0.6 -0.4,0.9 -0.1,0.2 -0.2,0.4 -0.2,0.6 0,0.1 -0.2,0.3 -0.2,0.4 -0.3,0.7 -0.7,1.3 -1,2 -0.2,0.5 -0.5,1 -0.7,1.5 -0.2,0.4 -0.5,0.7 -0.7,1.1 -0.3,0.6 -0.7,1 -0.9,1.6 -0.1,0.2 -0.2,0.5 -0.3,0.8 0,0.1 -0.1,0.2 -0.1,0.3 -0.1,0.3 -0.3,0.5 -0.4,0.8 -0.1,0.3 -0.3,0.6 -0.3,0.9 0,0.2 -0.1,0.3 -0.2,0.6 0,0.1 -0.2,0.2 -0.2,0.3 -0.1,0.2 -0.1,0.4 -0.1,0.6 0,0.2 -0.1,0.3 -0.1,0.5 -0.1,0.2 -0.2,0.5 -0.3,0.7 -0.1,0.1 -0.1,0.2 -0.1,0.4 0,0.1 0,0.3 -0.1,0.4 -0.1,0.2 -0.2,0.5 -0.3,0.8 0,0.2 -0.1,0.3 -0.1,0.5 0,0.1 0,0.3 0,0.4 0,0.3 -0.1,0.5 -0.1,0.8 -0.1,0.3 -0.1,0.7 -0.1,1 0,0.2 -0.1,0.6 0,0.8 0.1,0 0.2,-0.4 0.2,-0.5 0,-0.3 0.1,-0.5 0.2,-0.8 0,-0.1 0,-0.1 0.1,-0.1 0,-0.1 0,-0.1 0,-0.2 0,-0.1 0,-0.3 0,-0.4 0,-0.2 0.1,-0.2 0.1,-0.4 0,-0.2 0.1,-0.3 0.2,-0.5 0.1,-0.2 0.2,-0.5 0.4,-0.7 0.1,-0.1 0.1,-0.2 0.1,-0.3 0,-0.2 0,-0.3 0.1,-0.4 0.1,-0.3 0.2,-0.7 0.3,-1 0.2,-0.4 0.4,-0.7 0.5,-1.1 0.1,-0.3 0.2,-0.5 0.3,-0.8 0,-0.1 0,-0.3 0.1,-0.4 0,-0.2 0.1,-0.3 0.2,-0.4 0.1,-0.1 0.1,-0.2 0.2,-0.3 0.1,-0.2 0.2,-0.4 0.3,-0.6 0.1,-0.2 0.4,-0.4 0.6,-0.2 0.1,0.1 0.1,0.3 0.1,0.4 0,0.1 0,0.3 0,0.4 0,0.6 0,1.2 0.3,1.7 0.1,0.2 0.3,0.6 0.2,0.9 0,0.1 -0.1,0.1 -0.1,0.1 0,0.1 0,0.1 0,0.2 0,0.1 -0.1,0.3 -0.1,0.4 0,0.2 0,0.3 -0.1,0.5 0,0.1 -0.1,0.2 -0.1,0.3 0,0.1 -0.1,0.1 -0.1,0.2 0,0.1 0.1,0.2 0.1,0.3 0,0.1 0,0.3 0,0.4 0,0 -0.1,0 -0.1,0.1 0,0.1 0,0.1 0,0.2 0,0.1 0,0.2 -0.1,0.2 0,0.1 -0.1,0.2 -0.1,0.4 0,0.3 -0.1,0.5 -0.2,0.7 -0.1,0.2 0,0.4 -0.1,0.5 0,0.1 -0.1,0.2 -0.1,0.3 0,0.1 -0.1,0.2 -0.1,0.3 0,0.1 0,0.1 -0.1,0.1 0,0.1 0,0.1 0,0.2 0,0.1 -0.2,0.2 -0.2,0.3 -0.1,0.1 0,0.2 -0.1,0.3 0,0.1 -0.1,0.2 -0.1,0.4 0,0.1 0,0.3 -0.1,0.4 0,0.2 -0.1,0.4 -0.2,0.5 -0.1,0.1 -0.1,0.3 -0.1,0.4 0,0.3 0.1,0.5 0.1,0.7 0,0.1 0,0.2 0,0.3 0,0.1 0,0.1 0.1,0.2 0,0.1 -0.1,0.2 -0.1,0.3 0,0.1 0.1,0.3 0.1,0.4 0,0.1 0,0.1 0,0.2 -0.1,0.1 -0.1,0.1 -0.2,0.2 -0.1,0.2 -0.1,0.2 0,0.4 0,0.1 0,0.3 0,0.4 0,0.2 0.1,0.3 0.1,0.4 0,0.2 0,0.3 0,0.5 v 0.9 c 0,0.1 0,0.3 0,0.3 l 0.1,0 c 0,0 0,0.1 0,0.1 0.1,0.1 0.2,0 0.3,-0.1 0.1,-0.1 0.1,-0.2 0.2,-0.3 0.1,-0.1 0.2,-0.2 0.3,-0.2 0.1,-0.1 0.1,-0.2 0.2,-0.4 0.1,-0.1 0.2,-0.1 0.3,-0.2 0.2,-0.1 0.3,-0.3 0.4,-0.4 0.1,-0.1 0.1,-0.1 0.2,-0.2 0,-0.1 0.1,-0.1 0.2,-0.2 0.2,-0.2 0.5,-0.4 0.5,-0.7 0,-0.2 0,-0.3 0.1,-0.4 0.1,-0.1 0.2,-0.1 0.2,-0.2 0.2,-0.2 0.2,-0.5 0.3,-0.7 0.1,-0.1 0.2,-0.2 0.3,-0.2 0.1,0 0.2,0.1 0.2,0.3 0,0.1 -0.1,0.1 -0.1,0.2 0,0.1 0,0.1 0,0.2 0,0.1 0,0.2 0.1,0.3 0.1,0.2 0,0.4 -0.1,0.6 0,0.1 -0.1,0.2 0,0.4 0,0.1 0.1,0.1 0.1,0.1 -0.2,0.3 -0.2,0.6 -0.1,0.8 0,0.1 0.1,0.2 0.2,0.4 0.1,0.2 0.1,0.3 0.2,0.5 0.1,0.3 0.2,0.6 0.2,0.9 0,0.1 0,0.3 0,0.4 0,0.2 -0.1,0.3 -0.1,0.5 0,0.1 0,0.2 0,0.3 0,0.1 0,0.2 0,0.3 0,0.2 0,0.2 -0.1,0.3 0,0 0,0.2 -0.1,0.2 0,0.1 0,0.1 0,0.2 0,0.1 0,0.2 0.1,0.3 0.1,0.1 0.2,0.2 0.2,0.4 0,0.2 0,0.4 -0.1,0.5 0,0.2 -0.1,0.3 0,0.5 0.1,0.1 0.1,0.2 0.1,0.3 0,0.3 0,0.5 -0.1,0.7 0,0.1 -0.1,0.2 -0.1,0.3 -0.1,0.1 -0.2,0.2 -0.3,0.2 -0.2,0.1 -0.5,0.2 -0.7,0.4 -0.1,0.1 -0.2,0.2 -0.3,0.3 -0.1,0.2 0,0.2 0,0.4 0,0.2 0.1,0.7 -0.1,0.9 -0.1,0.1 -0.1,0.1 -0.1,0.3 0,0.2 -0.1,0.3 -0.2,0.4 -0.1,0.1 -0.2,0.2 -0.3,0.4 -0.1,0.1 -0.2,0.1 -0.3,0.2 -0.1,0.1 -0.2,0.2 -0.2,0.2 -0.1,0.1 -0.1,0.2 -0.1,0.3 -0.1,0.1 -0.1,0.3 -0.2,0.4 -0.1,0.1 -0.1,0.2 -0.2,0.2 -0.1,0.1 -0.2,0.1 -0.2,-0.1 0,-0.1 0.2,-0.3 0.1,-0.4 -0.1,0 -0.3,0.3 -0.5,0.4 -0.1,0.1 -0.3,0.2 -0.4,0.3 -0.1,0 -0.1,0.1 -0.2,0.1 -0.1,0 -0.1,0 -0.2,-0.1 -0.2,0 -0.5,0.2 -0.6,0.4 0,0.1 0,0.2 -0.1,0.3 -0.1,0.1 -0.2,0.1 -0.3,0.3 -0.1,0.1 -0.1,0.3 -0.1,0.4 0,0.1 -0.1,0.3 -0.1,0.4 0,0.3 -0.1,0.5 -0.2,0.7 0,0.1 -0.1,0.1 -0.1,0.2 0,0.1 0,0 0,0.2 0,0.2 0,0.3 0,0.4 0,0.2 0,0.2 -0.1,0.3 0,0.1 -0.1,0.3 -0.1,0.3 0.1,0 0.1,-0.1 0.1,-0.1 0.1,0 0.1,-0.1 0.2,-0.1 0.1,-0.1 0.2,-0.3 0.3,-0.4 0.1,-0.1 0.2,-0.1 0.4,-0.2 0.2,0 0.3,-0.2 0.5,-0.3 0.1,-0.1 0.1,-0.1 0.1,-0.2 0,-0.1 0,-0.1 0.1,-0.2 0.1,-0.2 0.1,-0.3 0.3,-0.5 0.1,-0.2 0.3,-0.4 0.5,-0.3 0.2,0 0.2,0.2 0.3,0.3 0,0.1 0.1,0.2 0.1,0.3 0,0.1 -0.1,0.1 -0.1,0.2 0,0.1 0,0.1 0.1,0.1 0.1,0 0.1,0 0.2,-0.1 0.1,-0.1 0.1,-0.2 0.3,-0.3 0.2,-0.1 0.4,0 0.6,-0.1 0.2,-0.1 0.4,-0.1 0.6,-0.4 0,-0.1 0,-0.1 0.1,-0.2 0,-0.1 0.1,-0.1 0.1,-0.1 0.2,-0.3 0.3,-0.7 0.5,-1 0.1,-0.2 0.2,-0.4 0.3,-0.5 0,-0.1 0.2,-0.2 0.3,-0.2 0.2,-0.1 0.2,-0.2 0.4,-0.3 0.2,-0.1 0.7,-0.2 0.7,-0.5 0.2,0 0.2,-0.3 0.3,-0.4 0.1,-0.2 0.4,-0.4 0.5,-0.6 0.1,-0.1 0.2,-0.3 0.3,-0.4 0.1,-0.1 0.3,-0.3 0.2,-0.4 0.2,0 0.3,0 0.5,0 0.2,-0.1 0.1,-0.4 0.1,-0.6 0,-0.2 0.1,-0.4 0.2,-0.5 0.1,-0.1 0.1,-0.3 0.2,-0.3 -0.1,0.1 -0.2,0.2 -0.2,0.3 0,0.1 0,0.2 0,0.2 0,0.1 0,0.1 0,0.2 0,0 -0.1,0 -0.1,0.1 0,0 0.1,0.1 0.1,0.1 0.1,0.1 0.1,0.2 0.1,0.3 -0.1,0 -0.2,0 -0.2,0.1 -0.1,0.1 0,0.1 0,0.3 0,0.1 0,0.2 0,0.3 0,0.1 0.2,0.2 0.1,0.3 0,0.2 -0.3,0.2 -0.5,0.3 -0.2,0.1 -0.2,0.4 -0.1,0.5 0.1,0.2 0.2,0.4 0.2,0.6 0,0.2 -0.2,0.4 -0.1,0.6 0,0.1 0.1,0.2 0.2,0.3 0.1,0.1 0.1,0.2 0.1,0.3 0,0.1 0.1,0.2 0.1,0.3 0,0.1 0,0.2 0.1,0.3 0.1,0.1 0.1,0.2 0.1,0.4 0,0.1 0,0.3 0,0.3 0.1,0.2 0.4,0.2 0.5,0.1 0.2,-0.1 0.1,-0.3 0.3,-0.4 0.1,-0.1 0.3,0 0.3,-0.2 0,-0.1 -0.1,-0.1 0,-0.3 0.1,-0.2 0.1,-0.5 0.2,-0.7 0.1,-0.2 0.2,-0.4 0.3,-0.6 0,-0.1 0,-0.2 0.1,-0.3 0.1,-0.1 0.1,-0.1 0.2,-0.2 0.1,-0.1 0.3,-0.4 0.1,-0.4 0.1,-0.1 0.1,-0.2 0.2,-0.3 0.1,-0.1 0.1,-0.1 0.1,-0.2 0,-0.1 0,-0.2 0.1,-0.3 0.1,-0.1 0.3,-0.2 0.3,-0.4 0.1,-0.2 0,-0.3 0.1,-0.5 0,-0.2 0.2,-0.4 0.2,-0.5 0,-0.2 0.1,-0.3 0.2,-0.4 0.2,-0.2 0.5,-0.3 0.7,-0.4 0,0.1 0,0.2 0,0.3 0,0 -0.1,0.2 -0.1,0.2 0,0.1 0.1,0.1 0.1,0.2 0,0.1 -0.1,0.1 -0.1,0.1 0,0.1 0,0.3 0,0.5 0,0.1 -0.1,0.3 -0.1,0.4 0,0.1 0.1,0.2 0.1,0.3 0,0.2 0,0.3 0,0.4 -0.1,0.1 -0.1,0.2 -0.1,0.3 0,0.2 -0.1,0.2 -0.1,0.4 0,0.1 0,0.3 0,0.4 0,0.1 -0.1,0.3 0.1,0.4 0.1,0.1 0.2,-0.2 0.3,-0.1 0.1,0.1 0,0.4 0,0.4 0,0.1 0,0.2 0.1,0.3 0.1,0.1 0.2,0.2 0.2,0.3 0,0.2 0.1,0.2 0.2,0.4 0.1,0.1 0.1,0.2 0.1,0.3 0,0.6 0,0.6 0,0.7 z M 145,6.5 145,6.3 c 0.1,0.1 0.3,0.1 0.4,0 0.1,0 0.1,-0.1 0.2,-0.1 0,0 0.1,0 0.1,0 0,0 0.1,0 0.1,0 0.2,-0.1 0.4,-0.1 0.6,-0.1 0.1,0 0.2,0 0.2,0 0.2,-0.1 0.3,-0.1 0.5,-0.2 0.2,-0.1 0.3,-0.1 0.5,-0.1 0.2,-0.1 0.4,-0.2 0.7,-0.2 0,0 0.1,0 0.1,0 0.1,0 0.1,0 0.1,0 0.1,0 0.2,0 0.3,0 0.1,0 0.2,0 0.3,0 0.1,0 0.2,0 0.3,-0.1 0.1,0 0.1,-0.1 0.2,-0.1 0.1,0 0.3,0 0.4,0 0.2,0 0.4,-0.2 0.6,-0.2 0.1,0 0.2,0 0.2,0 0.1,0 0.1,-0.1 0.2,-0.1 0.1,0 0.3,-0.1 0.4,-0.2 0.1,0 0.2,-0.1 0.2,-0.1 0.1,0 0.1,-0.1 0.2,-0.1 0,0 0.1,0 0.1,0 0.1,0 0.1,0 0.2,0 0.1,0 0.2,0 0.3,-0.1 0.2,-0.1 0.4,-0.1 0.6,-0.2 0.2,-0.1 0.4,-0.1 0.6,-0.1 0.1,0 0.2,0 0.2,0 0.1,0 0.2,0 0.3,0 0.4,0 0.7,-0.1 1.1,-0.2 0.9,-0.1 1.7,-0.3 2.6,-0.4 0.2,0 0.3,0 0.5,0 0.2,0 0.3,0 0.5,0 0.1,0 0.2,0 0.4,0 0.2,0 0.4,0 0.5,0 0.1,0 0.3,0 0.4,-0.1 0.1,0 0.2,-0.1 0.4,-0.1 0.1,0 0.2,-0.1 0.3,-0.1 0.1,0 0.2,0 0.3,0 0.1,0 0.2,0 0.2,0 0.1,0 0.3,0 0.4,-0.1 0.1,-0.1 0.3,-0.1 0.4,-0.1 0.1,0 0.2,0 0.2,-0.1 0.2,-0.1 0.4,0 0.6,-0.1 0.1,0 0.2,-0.1 0.3,-0.1 0.1,0 0.2,0 0.3,0 0,0 0,0 0.1,0 0,0 0.1,0 0.1,0 0.1,0 0.1,0 0.2,0.1 0.2,0.1 0.4,0 0.6,0 0.2,0 0.4,0 0.7,0 0.1,0 0.2,0 0.3,0 0.1,0 0.2,0 0.2,-0.1 -0.2,-0.1 -0.3,-0.1 -0.5,-0.1 -0.2,0 -0.4,-0.1 -0.7,-0.1 -0.5,-0.1 -0.9,0 -1.4,0 -0.3,0 -0.5,0 -0.8,0 -0.3,0 -0.6,0 -1,0 -0.1,0 -0.2,0 -0.4,0 -0.3,0 -0.5,0 -0.8,0 -0.4,0 -0.9,0.1 -1.3,0.2 -0.3,0 -0.5,0.1 -0.7,0.2 -0.4,0.1 -0.9,0.1 -1.3,0.1 -0.5,0 -1.1,0 -1.6,0.1 -0.3,0 -0.5,0.1 -0.8,0.1 -0.4,0 -0.7,0.1 -1.1,0.1 -0.3,0 -0.6,0 -0.9,0.1 -0.1,0 -0.2,0 -0.3,0 -0.1,0 -0.2,0 -0.3,0 -0.1,0 -0.3,0 -0.4,0.1 -0.2,0 -0.3,0 -0.5,0.1 -0.2,0 -0.4,0 -0.5,0.1 -0.2,0.1 -0.4,0.1 -0.6,0.2 -0.2,0.1 -0.4,0.2 -0.5,0.2 -0.1,0 -0.1,0.1 -0.2,0.1 -0.1,0 -0.1,0.1 -0.2,0.1 -0.4,0.2 -0.8,0.4 -1.2,0.6 -0.4,0.1 -0.8,0.2 -1.2,0.4 -0.1,0.1 -0.3,0.1 -0.4,0.1 -0.2,0.1 -0.3,0.2 -0.5,0.3 -0.1,0.1 -0.3,0.1 -0.4,0.2 -0.1,0 -0.2,0.1 -0.3,0.1 -0.1,0 -0.2,0.1 -0.2,0.1 0.1,-0.1 0.2,0.1 0.3,0.2 z m -6.5,19.8 c 0.1,0 0.2,0 0.3,-0.1 0.1,0 0.2,-0.1 0.4,-0.1 0.1,0 0.2,0 0.3,0 0.1,0 0.2,-0.1 0.4,-0.2 0.1,0 0.2,0 0.3,-0.1 0.1,-0.1 0.2,-0.5 0.1,-0.7 0,-0.1 -0.2,-0.2 -0.3,-0.2 -0.1,0 -0.3,0 -0.4,0 -0.1,0 -0.3,0 -0.4,0 -0.1,0 -0.2,0.1 -0.2,0.1 -0.1,0 -0.2,0.1 -0.3,0.2 -0.1,0.1 -0.1,0.3 -0.2,0.4 -0.1,0.1 -0.3,0.4 -0.1,0.5 l -0.2,0.3 c 0.1,-0.1 0.1,-0.1 0.3,-0.1 z m -11.7,214.5 c 0.1,0.6 1.4,-0.3 1.6,-0.6 0.5,-0.4 0.4,-1.5 0.5,-2.1 0,-0.5 -0.2,-0.6 -0.5,-0.9 -0.3,-0.3 -0.3,-0.6 -0.6,-0.9 -0.4,-0.5 -1.2,-0.6 -1.6,-0.1 -0.1,0 -0.3,-0.1 -0.3,-0.2 0,0.3 -0.2,0.4 -0.3,0.7 -0.1,0.3 0.1,0.5 -0.1,0.7 -0.2,0.3 -0.4,0.1 -0.4,0.5 0,0.2 0.2,0.4 0.3,0.5 0.1,0.1 0.3,0.1 0.4,0.3 0,0 0.1,0.3 0.1,0.4 0.1,0.1 0.2,0.3 0.3,0.4 0.2,0.3 0.6,0.7 0.5,1 l 0.1,0.3 z m 4.1,2.4 0.2,0.1 c 0.3,0 0.3,-0.3 0.4,-0.4 0.1,-0.2 0.2,-0.2 0.5,-0.4 0.4,-0.2 0.9,-0.4 1.3,-0.6 0.4,-0.2 0.3,-0.6 0.5,-0.9 0.2,-0.4 0.8,-0.7 0.9,-1 0.2,-0.4 0.5,-0.8 0.9,-1.2 0.2,-0.2 0.4,-0.5 0.5,-0.7 0,-0.2 -0.1,-0.3 -0.1,-0.5 0,-0.3 0,-0.7 0,-1 0,-0.4 -0.2,-0.7 -0.1,-1.1 0.2,-0.6 0.2,-1.3 0,-1.9 -0.1,-0.3 -0.1,-0.5 -0.3,-0.8 -0.1,-0.2 -0.5,-0.4 -0.5,-0.6 0,-0.2 0.2,-0.5 0.1,-0.8 -0.1,-0.3 -0.2,-0.6 -0.3,-0.8 -0.2,-0.6 -0.1,-1.2 -0.5,-1.7 -0.2,-0.2 -0.6,-1.2 -1.4,-1 -0.3,0.1 -0.7,0.4 -0.8,0.6 -0.3,0.3 -0.3,0.5 -0.5,0.8 -0.3,0.5 -0.6,0.9 -1.1,1.4 -0.2,0.2 -0.3,0.4 -0.3,0.6 0,0.3 -0.2,0.3 -0.5,0.5 -0.2,0.2 -0.3,0.5 -0.5,0.7 -0.2,0.3 -0.3,0.5 -0.4,0.8 -0.1,0.2 0,0.5 0,0.8 0,0.2 -0.1,0.4 -0.1,0.6 0,0.5 0.2,1.1 0.6,1.6 0.1,0.1 0.3,0.4 0.5,0.5 0.2,0.2 0.6,0.2 0.9,0.4 0.5,0.2 0.5,0.5 0.5,0.8 0,0.2 -0.1,0.3 0,0.4 0.1,0.1 0.4,0.2 0.5,0.2 0.2,0.2 -0.2,0.5 -0.2,0.7 0,0.1 0,0.2 0,0.4 -0.1,0.2 -0.3,0.2 -0.4,0.3 -0.4,0.3 -0.4,0.8 -0.7,1.2 -0.1,0.2 -0.2,0.4 -0.3,0.6 -0.1,0.2 -0.7,0.9 -0.4,1 0.2,0.1 1,0.1 1.3,0.2 -0.1,0.2 -0.1,0.2 -0.2,0.2 z M 126.3,37.7 c -0.3,-0.2 -0.5,-0.1 -0.8,0.1 -0.1,0.1 -0.1,0.2 -0.1,0.4 0.1,0.2 0.1,0.3 0.2,0.3 0,0 0.1,0.1 0.1,0.1 0,0.1 0,0.1 0.1,0.2 0,0.1 0,0.1 0.1,0.2 0,0 0.1,0 0.1,0.1 0,0 0,0.1 0,0.1 0.1,0.1 0.2,0.2 0.3,0.3 0.1,0 0.2,0 0.3,0.1 0,0 0,0 0.1,0.1 0,0 0.1,0 0.1,0 0.3,0.1 0.7,0.1 1,-0.2 0.1,-0.1 0.2,-0.3 0.2,-0.5 0,-0.1 -0.2,-0.2 -0.2,-0.2 -0.1,0 -0.2,0 -0.3,0 -0.1,0 -0.1,-0.1 -0.2,-0.1 -0.1,-0.1 -0.2,-0.1 -0.3,-0.2 -0.2,-0.5 -0.4,-0.6 -0.7,-0.8 z m -14.5,114.2 c 0.4,0.1 0.4,-0.3 0.5,-0.5 0.1,-0.3 0.1,-0.6 0.2,-0.9 0.1,-0.4 0.3,-0.5 0,-0.9 -0.1,-0.2 -0.4,-0.7 -0.7,-0.5 -0.3,0.1 -0.3,0.6 -0.4,0.9 -0.1,0.3 -0.3,0.6 -0.3,0.9 0,0.1 0,0.2 0,0.3 0,0 0.1,0.1 0.1,0.1 l -0.1,-0.1 c 0.1,0.4 0.2,0.8 0.5,0.8 l -0.3,-0.4 c 0.2,0.1 0.3,0.3 0.5,0.3 z M 58,157.1 c 0,0 0.1,-0.1 0.1,-0.2 0,-0.1 0,-0.1 -0.1,-0.2 -0.1,-0.1 -0.1,-0.1 -0.3,0 -0.1,0 -0.2,0 -0.3,0.1 -0.1,0.1 -0.2,0.2 -0.3,0.2 -0.2,0.1 -0.4,0 -0.6,0.2 -0.2,0.1 -0.3,0.2 -0.5,0.3 -0.2,0.1 -0.5,0.1 -0.5,0.4 0,0.2 0.1,0.5 -0.1,0.7 -0.1,0.1 -0.2,0.1 -0.2,0.1 -0.1,0.1 -0.1,0.1 -0.1,0.2 -0.1,0.3 -0.3,0.6 -0.2,0.9 0.1,0 0.1,0 0.1,-0.1 h 0.1 c 0.1,0.1 0.2,0 0.3,0 0.1,0 0.2,0 0.3,-0.1 0.2,-0.1 0.3,-0.2 0.5,-0.2 0.1,-0.1 0.2,-0.1 0.3,-0.2 0.1,0 0.3,-0.1 0.3,-0.1 0,0 0.1,-0.2 0.1,-0.2 0,0 0.1,-0.1 0.1,-0.1 0.2,-0.1 0.2,-0.3 0.3,-0.4 0.1,-0.2 0.4,-0.2 0.5,-0.4 0.1,-0.2 0,-0.4 0,-0.6 0.1,-0.1 0.2,-0.2 0.2,-0.3 z m -2,-19 c 0,0.1 0,0.2 -0.1,0.4 -0.1,0.2 -0.2,0.4 -0.3,0.6 -0.1,0.2 -0.1,0.5 -0.2,0.7 0,0.1 -0.1,0.3 -0.1,0.4 0.1,0.1 0.2,0.1 0.2,0.3 0,0.2 -0.1,0.2 0,0.3 0.1,0.1 0.1,0.2 0.2,0.3 0,0 0.1,0 0.2,0 0,0 0.1,0.1 0.1,0.1 0.1,0.1 0.1,0.2 0.2,0.4 0.1,0.2 0.3,0.4 0.4,0.7 l 0.1,0.1 c 0.1,0 0.2,0.1 0.3,0.1 0,0 0.1,-0.2 0.1,-0.2 0,-0.1 0,-0.2 0.1,-0.3 0,-0.1 0.1,-0.2 0.1,-0.3 0,-0.1 0.1,-0.1 0.1,-0.1 0.1,-0.1 0,-0.1 0.1,-0.2 0,-0.1 0.1,-0.2 0.2,-0.3 0.1,-0.2 0,-0.3 0.1,-0.5 0,-0.3 0,-0.5 -0.2,-0.7 -0.1,-0.1 -0.1,-0.3 -0.2,-0.4 -0.1,-0.1 -0.1,-0.2 -0.2,-0.3 0,-0.1 -0.1,-0.3 -0.1,-0.4 0,-0.1 0,-0.2 -0.1,-0.3 0,-0.1 0,-0.1 -0.1,-0.2 -0.1,-0.2 -0.2,-0.5 -0.3,-0.7 0,-0.1 0,-0.2 -0.1,-0.3 -0.1,-0.1 -0.2,-0.1 -0.3,-0.1 -0.2,0.1 -0.1,0.3 -0.1,0.4 0,0.1 0,0.3 -0.1,0.4 0.2,-0.1 0,0 0,0.1 z m 26.7,-11.4 c -0.1,0 -0.2,0 -0.3,0 -0.1,0 -0.2,0.1 -0.2,0.1 -0.2,0.1 -0.4,0.3 -0.6,0.5 -0.2,0.1 -0.3,0.3 -0.5,0.4 -0.1,0.1 -0.1,0.2 -0.3,0.1 -0.1,0 -0.2,-0.1 -0.3,0 -0.2,0.1 -0.4,0.2 -0.6,0.5 -0.1,0.1 -0.1,0.3 -0.2,0.4 -0.1,0.1 -0.1,0.1 -0.2,0.2 0,0.1 0,0.1 0.1,0.2 0,0.1 0,0.2 0,0.4 0,0.1 0,0.2 0.1,0.3 l 0,0 c 0.1,0.1 0.2,0.2 0.3,0.2 0.1,0 0.3,-0.1 0.3,-0.2 0.2,-0.1 0.4,-0.3 0.5,-0.4 0.2,-0.1 0.4,-0.2 0.6,-0.2 0.2,-0.1 0.4,-0.2 0.6,-0.3 0.1,-0.1 0.2,-0.2 0.4,-0.3 0.1,-0.1 0.1,-0.1 0.2,-0.1 0,0 0.1,-0.1 0.1,-0.1 0.1,-0.2 0,-0.5 0,-0.7 0,-0.2 0.4,-0.8 0,-1 z M 49.1,159 c 0,-0.1 0,-0.2 0.1,-0.3 0.1,-0.1 0.1,-0.3 0.2,-0.4 0.1,-0.1 0.2,-0.2 0.2,-0.2 0.2,-0.2 0.4,-0.3 0.5,-0.5 0,-0.1 0.1,-0.1 0.1,-0.2 0.1,-0.1 0.1,-0.1 0.2,-0.2 0.1,-0.1 0.2,-0.2 0.4,-0.3 0.2,-0.1 0.3,-0.3 0.5,-0.5 0.1,-0.1 0.2,-0.2 0.3,-0.3 0.1,-0.1 0.1,-0.2 0.2,-0.3 0.1,-0.2 0.3,-0.3 0.4,-0.5 0.2,-0.2 0.4,-0.3 0.6,-0.5 0.2,-0.2 0.4,-0.5 0.7,-0.7 0.3,-0.3 0.7,-0.4 0.8,-0.7 0.2,-0.3 -0.1,-0.4 -0.2,-0.6 -0.1,-0.2 0.1,-0.3 -0.1,-0.4 -0.1,-0.1 -0.2,-0.1 -0.3,-0.1 -0.2,0 -0.3,0.1 -0.5,0.1 -0.1,0 -0.3,0 -0.4,0 -0.1,0 -0.1,0.1 -0.2,0.1 -0.1,0 -0.1,0 -0.2,0 -0.1,0 -0.2,0.1 -0.3,0.2 -0.1,0.1 -0.3,0.1 -0.4,0.2 -0.2,0.1 -0.2,0.1 -0.3,0 -0.3,0.3 -0.8,0.4 -1.1,0.5 -0.3,0.1 -0.5,0.3 -0.7,0.5 -0.2,0.2 -0.5,0.2 -0.8,0.2 -0.2,0 -0.3,0 -0.5,-0.1 -0.2,-0.2 -0.5,-0.4 -0.6,-0.7 -0.2,-0.3 -0.2,-0.6 -0.1,-0.9 0.1,-0.2 0.1,-0.3 0.1,-0.5 0,-0.2 0,-0.4 0,-0.6 0,-0.1 0,-0.2 0.1,-0.3 0,-0.1 0,-0.1 0,-0.2 0,-0.1 -0.1,-0.4 -0.2,-0.4 -0.1,0 -0.2,0.2 -0.3,0.3 -0.1,0.1 -0.2,0.2 -0.3,0.1 -0.1,0 -0.2,0.3 -0.2,0.4 0,0.1 0,0.2 -0.1,0.3 0,0.1 -0.1,0.1 -0.1,0.2 -0.4,0 0,0.6 0,0.8 0,0.1 0,0.3 -0.2,0.4 -0.1,0 -0.1,0 -0.2,0.1 -0.1,0.1 0,0.1 -0.1,0.1 -0.2,0.3 -1,0.9 -1.2,0.4 -0.1,-0.3 -0.2,-0.6 -0.1,-0.9 0.1,-0.2 0.2,-0.6 0,-0.8 -0.1,-0.1 -0.2,-0.1 -0.3,-0.1 -0.1,0 -0.1,-0.1 -0.1,-0.1 -0.1,0 -0.1,0.1 -0.2,0.1 -0.2,0 -0.3,0 -0.4,0.1 -0.2,0 -0.2,0 -0.3,-0.1 -0.1,0 -0.3,0 -0.5,0 -0.1,0 -0.2,0 -0.3,0 0,-0.1 0,-0.2 0,-0.3 0,-0.1 0.1,-0.1 0.1,-0.2 0,-0.1 0,-0.1 -0.1,-0.2 -0.1,-0.1 -0.1,-0.2 -0.2,-0.4 0,-0.1 -0.1,-0.1 -0.1,-0.2 0,-0.1 0,-0.2 0,-0.2 0,-0.1 -0.1,-0.1 -0.1,-0.1 C 42.2,150 42.1,150 42.1,150 42,149.9 42,149.7 42,149.6 c 0.1,-0.1 0.2,-0.1 0.4,-0.1 0.1,0 0.1,-0.1 0.2,-0.1 0.1,0 0.2,0 0.2,0 0.1,0 0.3,-0.2 0.3,-0.3 0,-0.2 -0.1,-0.2 -0.1,-0.4 0,-0.1 0.1,-0.3 0.2,-0.4 0.1,-0.1 0.2,-0.2 0.2,-0.3 0.1,-0.2 0.2,-0.3 0.3,-0.5 0.2,-0.2 0.2,-0.5 0.3,-0.7 0.1,-0.2 0.1,-0.3 0.2,-0.5 0.1,-0.2 0.3,-0.3 0.3,-0.5 0,-0.1 0,-0.4 -0.2,-0.3 -0.1,0 -0.2,0.2 -0.3,0.3 -0.2,0.3 -0.3,0.5 -0.6,0.6 -0.1,0.1 -0.3,0.1 -0.4,0.2 -0.1,0.1 -0.2,0.2 -0.2,0.4 -0.2,0.3 -0.6,0.5 -0.9,0.7 -0.2,0.1 -0.3,0.2 -0.5,0.3 -0.2,0.1 -0.2,0.1 -0.4,0.1 -0.1,0 -0.1,0.1 -0.2,0.1 -0.1,0 -0.2,0 -0.2,0 -0.2,0.1 -0.5,0.1 -0.7,0.2 -0.3,0.2 -0.5,0.3 -0.9,0.4 -0.3,0.1 -0.6,0.2 -0.8,0.4 -0.2,0.2 -0.3,0.5 -0.5,0.8 -0.2,0.3 -0.5,0.4 -0.7,0.7 -0.1,0.2 -0.4,0.7 0.1,0.5 0.3,-0.1 0.5,-0.4 0.8,-0.5 0.3,-0.2 0.5,0.1 0.4,0.4 0,0.2 -0.2,0.3 -0.2,0.4 -0.1,0.1 -0.1,0.3 -0.2,0.4 -0.1,0.1 -0.1,0.2 -0.2,0.3 -0.1,0.1 -0.1,0.1 -0.2,0.2 0,0 0,0.1 0,0.1 -0.1,0.1 -0.2,0.3 -0.3,0.4 0,0 0,0 0,0 -0.1,0 -0.1,0.1 -0.1,0.2 0,0 0,0.1 0,0.1 0,0.1 -0.1,0.2 -0.1,0.3 0,0.1 0,0.1 0,0.2 0,0.1 -0.1,0.1 -0.1,0.2 -0.1,0.1 -0.1,0.2 -0.2,0.3 -0.1,0.2 -0.2,0.3 -0.4,0.5 -0.2,0.1 -0.3,0.3 -0.4,0.4 0,0.1 -0.2,0.2 -0.2,0.2 0,0.1 0.1,0.2 0.1,0.3 0,0.1 0,0.3 0,0.4 0,0.2 0.1,0.1 0.2,0 0.2,-0.1 0.4,-0.2 0.6,0 0.1,0.1 0.2,0.2 0.4,0.2 0.1,0.1 0.2,0 0.3,0.1 0.2,0.2 0,0.5 0.1,0.8 0,0.1 0.1,0.1 0.1,0.1 0,0.1 0,0.2 0,0.2 0,0.1 0,0.2 0,0.3 0,0.1 0,0.2 -0.1,0.3 -0.1,0.1 -0.1,0.3 -0.1,0.4 -0.1,0.2 -0.3,0.4 -0.5,0.6 0,0.1 0,0.1 0,0.2 0,0.1 -0.2,0.2 -0.2,0.3 -0.1,0.2 -0.1,0.3 -0.2,0.4 -0.1,0.2 -0.1,0.4 -0.2,0.6 -0.1,0.2 -0.4,0.4 -0.4,0.7 0,0.1 0,0.3 0,0.4 0,0.1 0,0.3 0.1,0.4 0,0.1 0,0.1 0.1,0.2 0.1,0.1 0.1,0.1 0.1,0.2 0.1,0 0.3,0 0.4,0 0.1,0 0.2,-0.1 0.3,-0.2 0.2,-0.1 0.5,0 0.7,0 0.1,0 0.2,-0.1 0.3,-0.1 0.1,0 0.1,0 0.2,-0.1 0.1,0 0.1,0 0.2,0 0.2,0 0.5,-0.2 0.7,-0.3 0.3,-0.1 0.5,-0.3 0.8,-0.4 0.3,-0.1 0.6,-0.1 0.8,-0.2 0.5,-0.3 1,-0.5 1.6,-0.6 0.3,-0.1 0.6,-0.1 0.9,-0.2 0.2,-0.1 0.4,-0.1 0.5,-0.2 0.1,-0.1 0.2,-0.1 0.3,-0.2 0.2,-0.1 0.4,0 0.6,0 0.2,0 0.2,-0.1 0.3,-0.1 0.1,0 0.2,0 0.3,0 0.3,0 0.5,-0.2 0.8,-0.2 0.2,0.1 0.4,0.2 0.7,0.2 0.3,0 0.6,-0.1 0.9,-0.1 0.1,0 0.4,-0.1 0.3,0.1 0,0.1 -0.1,0.1 -0.2,0.1 0.1,0.1 0.1,0.2 0.2,0.3 0.1,0.1 0.1,0.2 0.2,0.3 0.1,0.2 0.1,0.3 0.1,0.5 0.1,0.1 0.2,0.2 0.2,0.4 0,0.1 0.1,0.1 0.1,0.2 0,0.1 -0.1,0.2 -0.1,0.3 0,0 0.1,0.1 0.1,0.1 0,0 0,0.1 0,0.1 0,0.1 0,0.1 0.1,0.2 0,0.1 0,0.1 0.1,0.2 0,0 0.1,0.1 0.1,0.1 0.1,0.1 0.1,0.3 0.2,0.3 0,-0.1 -0.1,-0.2 -0.1,-0.3 0,-0.1 0,-0.2 0.1,-0.3 0.1,-0.2 0.1,-0.5 0.1,-0.7 0,-0.1 0,-0.2 0,-0.3 0,-0.1 0.1,-0.2 0.1,-0.3 0,-0.1 0,-0.2 0,-0.3 0,-0.1 0.1,-0.2 0.1,-0.3 0,-0.3 -0.1,-0.6 0,-0.9 -0.2,-0.2 0,-0.3 0,-0.5 z M 35.4,136.9 c 0.1,0 0.2,-0.1 0.3,-0.1 0.1,0 0.1,-0.1 0.1,-0.2 0.1,-0.2 0.1,-0.4 0.1,-0.6 0,-0.1 0.1,-0.2 0.1,-0.3 0,-0.1 -0.1,-0.2 -0.1,-0.3 0,-0.1 0.1,-0.2 0.2,-0.3 0.1,-0.1 0.1,-0.2 0.1,-0.3 0.1,-0.2 0.3,-0.4 0.4,-0.6 0.1,-0.1 0.1,-0.2 0.1,-0.3 0,-0.1 0,-0.2 0.1,-0.4 0.1,-0.5 0.3,-0.9 0.6,-1.4 0.2,-0.3 0.5,-0.4 0.5,-0.8 0,-0.2 0,-0.4 -0.1,-0.6 -0.1,-0.1 -0.1,-0.3 -0.3,-0.4 -0.1,-0.1 -0.3,-0.3 -0.5,-0.3 -0.2,-0.1 -0.4,-0.1 -0.7,-0.1 -0.1,0 -0.2,0.1 -0.3,0.1 -0.2,0 -0.2,-0.1 -0.3,0 -0.2,0.1 -0.3,0.3 -0.5,0.3 -0.1,0 -0.2,0 -0.3,0 -0.1,0 -0.1,0.1 -0.3,0.1 0,0.1 0,0.3 0,0.5 0,0.2 -0.1,0.3 -0.1,0.5 -0.1,0.1 -0.1,0.2 -0.2,0.3 -0.1,0.1 -0.1,0.2 -0.1,0.3 -0.1,0.3 -0.2,0.6 -0.3,0.9 0,0.1 -0.1,0.3 -0.1,0.4 0,0.2 -0.1,0.3 -0.1,0.4 0,0.1 0.1,0.3 0.2,0.4 0.1,0.1 0.3,0.1 0.4,0.2 0.2,0.1 0.3,0.3 0.4,0.5 0.1,0.1 0.1,0.1 0.2,0.2 0.1,0.1 0,0.1 0.1,0.2 0,0.1 0.1,0.1 0.1,0.2 0,0.1 0,0.2 0,0.3 0,0.2 0.1,0.4 0.1,0.6 0,0.1 0,0.3 0,0.4 l 0.1,0.1 c 0,-0.1 0.1,0 0.1,0.1 z m 20.7,19.9 0,0 c 0,0 0,0 0,0 l 0,0 z M 79.6,130 c 0,0 0,0 0,0 0,0 0,0 0,0 l 0,0 z m 24.6,-62.7 0,-0.2 c -0.1,0.1 -0.1,0.2 0,0.2 z m -67.1,75.6 c 0,-0.1 0,-0.1 0.1,-0.2 0.1,-0.2 0.1,-0.4 0.2,-0.6 0.2,-0.4 0.5,-0.8 0.7,-1.2 0.1,-0.2 0.2,-0.3 0.3,-0.5 0.1,-0.1 0.2,-0.2 0.2,-0.3 0.1,-0.1 0.1,-0.2 0.1,-0.4 0,-0.2 0.1,-0.4 0.1,-0.6 0,-0.1 0,-0.2 0,-0.3 0,-0.2 0.1,-0.4 0,-0.6 -0.2,-0.4 -0.8,-0.3 -1,0.1 -0.1,0.2 -0.1,0.4 -0.2,0.6 -0.1,0.1 -0.2,0.2 -0.3,0.3 0,0.2 -0.1,0.3 -0.2,0.4 -0.1,0.1 -0.4,0.1 -0.5,0.2 0,0.1 -0.1,0.2 -0.1,0.3 0,0.1 0,0.2 0,0.3 0,0.1 -0.2,0.2 -0.3,0.3 -0.2,0.2 -0.1,0.3 -0.2,0.5 0,0.2 -0.1,0.3 -0.1,0.5 0,0.3 0,0.7 0,1.1 0,0.1 -0.1,0.3 -0.1,0.4 0,0.2 0.1,0.3 0.2,0.4 0.1,0.1 0.1,0.2 0.1,0.2 0,0 0.2,0 0.2,0 l -0.1,0.1 c 0.2,0 0.4,-0.1 0.5,-0.3 0.1,-0.1 0.1,-0.1 0.2,-0.3 0,-0.1 0,-0.2 0,-0.3 0.2,0.1 0.2,0.1 0.2,-0.1 z m 73.8,8 0.2,0.3 c 0,0 0,0 0,0 -0.1,-0.2 -0.2,-0.3 -0.2,-0.3 z M 113,55.3 c 0.1,-0.1 0.2,-0.2 0.3,-0.3 0.1,-0.1 0.1,-0.2 0.1,-0.4 0,-0.1 0,-0.2 0,-0.4 0,-0.1 0,-0.1 0,-0.2 0,0 -0.1,-0.1 -0.1,-0.1 -0.1,0.1 -0.2,0.1 -0.3,0.1 -0.1,0.1 -0.3,0.2 -0.4,0.2 -0.2,0.1 -0.2,0 -0.4,-0.1 -0.1,-0.1 -0.3,-0.1 -0.4,-0.2 -0.1,0 -0.1,-0.1 -0.2,0 -0.1,0 -0.2,0.1 -0.2,0.1 -0.2,0.1 -0.3,0.2 -0.4,0.4 -0.2,0.2 -0.4,0.5 -0.6,0.8 -0.1,0.1 -0.1,0.2 -0.3,0.2 -0.1,0 -0.2,0.1 -0.3,0.2 -0.2,0.2 -0.4,0.4 -0.6,0.6 -0.1,0.1 -0.2,0.2 -0.2,0.4 0,0.2 -0.1,0.3 -0.2,0.5 0,0.2 -0.1,0.3 -0.2,0.4 -0.1,0.2 -0.3,0.3 -0.4,0.5 -0.1,0.1 -0.1,0.2 -0.2,0.4 0,0.1 -0.1,0.2 -0.2,0.2 -0.1,0 -0.1,0 -0.2,0.1 -0.1,0.1 -0.2,0.4 -0.2,0.5 -0.1,0.2 -0.2,0.3 -0.3,0.4 -0.1,0.1 -0.2,0.3 -0.3,0.4 -0.2,0.2 -0.5,0.3 -0.6,0.5 -0.1,0.1 -0.1,0.2 -0.1,0.3 -0.1,0.1 -0.2,0.2 -0.2,0.4 -0.1,0.1 -0.2,0.2 -0.3,0.2 -0.1,0.1 -0.3,0.1 -0.3,0.3 -0.1,0.2 -0.2,0.3 -0.3,0.5 -0.1,0.1 -0.1,0.1 -0.2,0.2 -0.1,0.2 -0.3,0.5 -0.4,0.8 0,0.1 0,0.3 0,0.4 0,0.1 0.1,0.2 0.2,0.3 0.1,0.3 -0.1,0.4 -0.2,0.7 -0.2,0.3 0.1,0.3 0.1,0.6 0,0.1 0,0.2 0,0.2 0,0.1 0,0.1 0,0.2 0,0.1 -0.1,0.3 -0.1,0.4 -0.1,0.3 -0.3,0.8 0,1 0,0 0.1,-0.1 0.1,-0.1 l 0,0.1 c 0,-0.1 0.1,-0.1 0.2,-0.1 0.1,0 0.1,-0.1 0.2,-0.1 0.1,0 0,0 0.1,0 0.5,0 0.9,-0.1 1.2,-0.4 0.2,-0.2 0.3,-0.5 0.5,-0.7 0.3,-0.3 0.7,-0.5 1.1,-0.8 0.3,-0.2 0.6,-0.4 0.9,-0.6 0.1,-0.1 0.2,-0.1 0.3,-0.1 0.1,-0.1 0.2,-0.2 0.2,-0.3 0.3,-0.3 0.6,-0.5 0.8,-0.8 0.3,-0.3 0.6,-0.6 0.8,-0.9 0.2,-0.3 0.3,-0.6 0.4,-1 0.1,-0.2 0.2,-0.4 0.3,-0.6 0,-0.1 0.1,-0.2 0.1,-0.3 0.1,-0.1 0.1,-0.1 0.2,-0.2 0.1,-0.1 0.2,-0.3 0.2,-0.4 0.1,-0.1 0.2,-0.3 0.2,-0.4 0,-0.2 0,-0.4 -0.1,-0.5 -0.1,-0.4 0.1,-0.8 0.4,-1.1 0.2,-0.3 0.6,-0.6 0.5,-1 0,-0.2 -0.1,-0.3 -0.1,-0.5 0,-0.1 0,-0.3 0,-0.4 -0.1,0 0,-0.3 0.1,-0.5 z m -36.1,82.4 c 0.1,0.1 0.2,0.1 0.3,0.2 0.1,0.1 0.2,0.2 0.3,0.3 0.1,0.1 0.2,0.2 0.2,0.3 0.1,0.1 0.1,0.2 0.2,0.4 0.1,0.1 0.2,0.3 0.3,0.4 0.1,0 0.1,0.1 0.2,0.1 l 0.2,0.1 c 0.1,0 0.2,0 0.3,0 0.1,0 0.1,-0.1 0.2,-0.1 0.2,0 0.4,0 0.5,0 0.2,0 0.4,-0.2 0.5,-0.4 0.1,-0.1 0.2,-0.2 0.3,-0.3 0.1,-0.1 0.2,-0.2 0.3,-0.4 0.2,-0.2 0.3,-0.4 0.4,-0.6 0.1,-0.2 0.3,-0.3 0.4,-0.5 0.2,-0.3 0.3,-0.6 0.4,-0.9 0.1,-0.1 0.2,-0.3 0.3,-0.4 0.2,-0.2 0.3,-0.4 0.4,-0.6 0.2,-0.3 0.5,-0.5 0.7,-0.9 0.1,-0.3 0.2,-0.5 0.3,-0.8 0.1,-0.2 0,-0.4 0.1,-0.5 0,-0.1 0,-0.2 0.1,-0.3 0,0 0.1,-0.1 0.1,-0.1 0,0 0,-0.1 0,-0.1 0,-0.1 0.1,-0.2 0.2,-0.3 0.1,-0.1 0.1,-0.2 0.2,-0.4 0.1,-0.1 0.2,-0.4 0.1,-0.5 -0.1,-0.2 -0.4,-0.2 -0.5,-0.4 -0.1,-0.2 -0.1,-0.4 -0.2,-0.7 0,-0.1 0,-0.1 -0.2,-0.2 -0.1,0 -0.1,-0.1 -0.2,-0.1 -0.2,-0.1 -0.3,-0.2 -0.5,-0.2 -0.1,-0.1 -0.3,-0.1 -0.4,-0.2 -0.1,0 -0.2,0 -0.3,0.1 -0.1,0.1 -0.2,0.2 -0.4,0.2 -0.1,0 -0.2,0.1 -0.2,0.2 -0.1,0.1 -0.3,0.2 -0.4,0.3 -0.1,0.1 -0.2,0.1 -0.2,0.1 -0.2,0.1 -0.4,0.1 -0.6,0.3 -0.1,0.1 -0.2,0.1 -0.3,0.2 -0.1,0.1 -0.2,0.2 -0.4,0.3 -0.2,0.2 -0.4,0.4 -0.6,0.5 -0.2,0.1 -0.3,0.2 -0.5,0.4 -0.2,0.1 -0.4,0.3 -0.6,0.5 -0.1,0.1 -0.1,0.2 -0.1,0.2 -0.1,0.1 -0.2,0.1 -0.2,0.2 -0.1,0.1 -0.2,0.2 -0.3,0.3 -0.1,0.1 -0.2,0.2 -0.3,0.2 -0.1,0.1 -0.3,0.2 -0.4,0.2 -0.1,0.1 -0.2,0.1 -0.3,0.2 -0.2,0.2 -0.2,0.4 -0.1,0.6 0.1,0.5 0.5,1 0.6,1.5 0,0.1 0,0.3 0,0.4 0,0.1 0.1,0.2 0.1,0.4 0,0.1 0,0.2 0.1,0.4 -0.2,0.1 -0.2,0.3 -0.1,0.4 z M 93.7,89.6 c 0,-0.1 0,-0.1 -0.1,-0.1 0,-0.1 -0.1,-0.2 -0.1,-0.4 -0.1,-0.2 -0.3,-0.4 -0.3,-0.7 0,-0.2 0.1,-0.4 0.1,-0.7 0,-0.1 -0.1,-0.2 -0.2,-0.3 C 93,87.3 93,87.2 93,87 93,86.9 93.1,86.8 93.1,86.6 93.1,86.5 93,86.4 93,86.3 92.9,86 92.6,85.7 92.5,85.4 92.4,85.1 92.2,84.9 92,84.6 c -0.1,-0.1 -0.2,-0.2 -0.3,-0.2 -0.1,0 -0.3,0 -0.4,0 -0.2,0.1 -0.3,0.4 -0.5,0.5 -0.1,0 -0.2,0 -0.3,0.1 -0.1,0.1 -0.2,0.2 -0.2,0.3 -0.1,0.1 -0.2,0.3 -0.2,0.5 0,0.1 -0.1,0.2 -0.1,0.4 -0.1,0.1 -0.1,0.2 0.1,0.3 0.1,0.1 0.2,0.1 0.3,0.1 0.1,0.1 0.1,0.1 0.2,0.2 0.1,0.2 0.1,0.6 -0.1,0.8 -0.1,0.1 -0.3,0.3 -0.4,0.4 -0.3,0.2 -0.6,0.1 -0.9,0.1 -0.1,0 -0.2,0 -0.4,0 -0.1,0 -0.2,0.1 -0.3,0.1 -0.1,0 -0.6,-0.3 -0.6,-0.4 0,-0.1 0.2,-0.2 0.2,-0.2 0.1,-0.1 0.1,-0.3 0.2,-0.4 0.1,-0.3 -0.1,-0.4 -0.3,-0.5 -0.2,-0.1 -0.5,-0.3 -0.7,-0.4 -0.1,-0.1 -0.2,0 -0.3,-0.1 0,0 -0.1,0 -0.1,0 0,0 -0.1,0 -0.2,0 -0.1,0 -0.1,0 -0.1,0 -0.1,0 -0.1,0 -0.2,0 -0.1,0 -0.2,0.1 -0.4,0.1 -0.1,0 -0.3,0 -0.5,0 0,0 -0.1,0 -0.2,0 -0.1,0 -0.2,0 -0.3,0 -0.2,0 -0.5,-0.1 -0.7,-0.1 -0.2,0 -0.3,0 -0.4,0.2 0,0.1 -0.1,0.2 -0.1,0.3 -0.1,0.2 -0.3,0.2 -0.5,0.3 -0.1,0.1 -0.3,0.2 -0.4,0.2 -0.1,0 -0.2,0 -0.4,0 -0.1,0 -0.2,-0.1 -0.3,0 -0.1,0 -0.2,0.2 -0.2,0.3 -0.1,0.1 -0.3,0.2 -0.4,0.2 -0.1,0 -0.1,0 -0.2,0 -0.1,0 -0.1,0.1 -0.1,0.1 -0.1,0 -0.1,0 -0.2,0 -0.1,0 -0.1,0.1 -0.2,0.1 -0.1,0.1 -0.2,0.1 -0.3,0.2 -0.4,0.2 -0.7,0.6 -0.9,1 -0.1,0.2 -0.2,0.4 -0.4,0.5 -0.2,0.2 -0.4,0.5 -0.5,0.7 -0.1,0.1 -0.2,0.2 -0.2,0.4 0,0.1 -0.1,0.2 -0.1,0.3 -0.1,0.2 -0.2,0.4 -0.3,0.5 -0.1,0.1 -0.2,0.2 -0.3,0.2 0,0 -0.1,0 -0.1,0.1 0,0.1 0,0.1 0,0.2 0,0.1 0,0.1 -0.1,0.1 0,0.1 0,0.1 0,0.2 0,0.1 -0.1,0.2 -0.1,0.2 -0.1,0.1 -0.2,0.2 -0.3,0.3 -0.1,0.2 -0.3,0.3 -0.4,0.4 -0.2,0.2 -0.4,0.4 -0.6,0.6 -0.1,0.1 -0.2,0.1 -0.3,0.2 -0.1,0.1 -0.1,0.2 -0.2,0.2 -0.1,0.1 -0.2,0.2 -0.3,0.3 -0.1,0.1 -0.2,0.2 -0.2,0.3 -0.3,0.3 -0.6,0.6 -0.8,1 -0.1,0.1 -0.1,0.3 0,0.4 0.1,0.1 0.2,0.2 0.3,0.2 h -0.1 c 0,0 0,0 0,0 0.1,0.1 0.3,0.2 0.5,0.2 0.2,0.1 0.3,0.1 0.5,0.1 0.3,0 0.5,-0.3 0.8,-0.4 0.3,-0.2 0.6,-0.3 0.9,-0.5 0.3,-0.1 0.5,-0.2 0.8,-0.3 0.4,-0.2 0.7,-0.4 1.1,-0.5 0.2,-0.1 0.3,-0.1 0.5,-0.2 0.2,0 0.3,-0.1 0.4,-0.2 0.2,-0.1 0.5,-0.3 0.7,-0.3 -0.1,0.1 -0.1,0.3 -0.2,0.4 -0.1,0.1 -0.1,0.3 -0.2,0.3 0.1,0.1 0,0.1 0,0.2 0,0.1 0.1,0.1 0.1,0.1 0,0.1 0,0.2 -0.1,0.3 -0.1,0.1 -0.1,0.2 -0.1,0.3 0,0.1 0,0.2 0,0.4 0,0.3 0.2,0.6 0.5,0.4 0.1,-0.1 0.2,-0.1 0.4,-0.2 0.1,0 0.3,-0.1 0.4,-0.1 0.1,0 0.2,0 0.3,0 0.1,0 0.1,-0.1 0.2,-0.1 0.1,0 0.2,0 0.2,0 0.1,0 0.1,0 0.2,-0.1 0.1,0 0.3,0 0.4,0 0.1,0 0.1,-0.1 0.2,-0.1 0.1,0 0.1,0 0.2,0 0.2,0 0.3,-0.1 0.4,-0.2 0.1,0 0.3,-0.1 0.4,-0.1 0.2,0.1 0.1,0.4 0,0.5 -0.1,0.1 -0.1,0.2 -0.2,0.4 0,0.1 0,0.2 0,0.3 0,0.2 0.1,0.3 0.2,0.4 0.1,0.1 0.2,0.1 0.3,0.2 0.1,0.1 0.1,0.2 0.2,0.3 0.1,0.1 0.2,0 0.3,-0.1 0.2,-0.1 0.3,-0.3 0.5,-0.4 0.2,-0.2 0.4,-0.4 0.5,-0.7 0.1,-0.1 0.1,-0.3 0.2,-0.4 0.1,-0.1 0.1,-0.1 0.2,-0.3 0,-0.1 0,-0.2 0.1,-0.3 0.2,-0.2 0.5,-0.3 0.7,-0.4 0.2,-0.1 0.4,-0.4 0.7,-0.5 0.1,0 0.3,0 0.4,-0.1 0.1,0 0.1,-0.1 0.2,-0.2 0.1,-0.1 0.2,-0.1 0.3,-0.1 0.1,-0.1 0.2,-0.1 0.3,-0.2 0.2,0 0.2,0 0.4,0 0.1,0 0.3,-0.1 0.4,-0.2 0.1,0 0.2,-0.1 0.2,-0.1 0.1,-0.1 0.2,-0.1 0.3,-0.1 0.2,-0.1 0.4,-0.3 0.6,-0.4 0.3,-0.2 0.6,-0.3 0.9,-0.4 0.1,0 0.2,-0.1 0.2,-0.1 0.1,0 0.1,-0.1 0.2,-0.1 0,0 0.1,0 0.1,-0.1 0.1,0 0.1,-0.1 0.1,-0.1 0.1,0 0.1,0 0.2,-0.1 0.1,-0.1 0.2,-0.1 0.3,-0.2 0.1,-0.1 0.1,-0.3 0.2,-0.4 0.1,-0.1 0.2,-0.2 0.2,-0.3 0,-0.1 0,-0.1 0.1,-0.2 0,-0.1 0.1,-0.2 0.1,-0.2 0,-0.1 0,-0.1 0.1,-0.2 0,-0.1 0.1,-0.1 0.2,-0.2 0.1,-0.1 0.1,-0.3 0.1,-0.3 0,-0.1 -0.1,-0.3 -0.1,-0.4 0,-0.3 0.1,-0.5 0.1,-0.8 -0.3,0.3 -0.3,0.3 -0.3,0.3 z m -24.9,28.7 c 0.2,0 0.3,-0.1 0.5,-0.1 0.4,0 0.7,-0.4 0.9,-0.7 0.1,-0.2 0.2,-0.4 0.2,-0.6 0,-0.3 0.1,-0.5 0.1,-0.8 0,-0.2 0,-0.4 -0.1,-0.6 -0.1,-0.2 -0.1,-0.2 -0.3,-0.2 -0.2,0 -0.3,-0.2 -0.5,-0.2 -0.2,0 -0.2,0.1 -0.3,0.2 -0.1,0.1 -0.3,0.1 -0.5,0.1 -0.2,0 -0.2,0.3 -0.2,0.4 -0.1,0.2 -0.2,0.2 -0.4,0.4 -0.2,0.2 -0.2,0.4 -0.3,0.6 -0.1,0.4 0,0.6 0.2,0.8 0.1,0.1 0.2,0.2 0.4,0.3 l -0.2,0 c 0,0.3 0.3,0.4 0.5,0.4 z m -10.5,24 c 0.1,0.1 0.1,0.2 0.2,0.4 0.1,0.2 0.1,0.3 0.2,0.5 0.1,0.1 0.2,0.1 0.3,0.2 0.1,0 0.2,0 0.3,0.1 0.1,0 0.1,0.1 0.2,0.2 0.1,0.1 0.3,0.3 0.4,0.4 0.3,0.3 0.8,0.4 1.2,0.4 0.3,0 0.7,0 1,0 0.2,0 0.4,0 0.6,0 0.1,0 0.2,-0.1 0.4,-0.1 0.2,0 0.3,0 0.5,0 0.2,0 0.3,0 0.4,0 0.1,0 0.3,0 0.5,0 0.1,0 0.2,-0.1 0.3,-0.1 0.3,0 0.6,-0.1 0.9,-0.1 0.1,0 0.2,0 0.4,0 0.1,0 0.3,0 0.4,0 0.2,0 0.3,-0.1 0.5,-0.1 0.1,0 0.2,0 0.3,0 0.2,0 0.5,-0.1 0.7,-0.1 0.2,-0.1 0.4,-0.2 0.7,-0.4 0.2,-0.1 0.3,-0.1 0.5,-0.1 0.3,0.1 0.6,0 0.9,-0.2 0.6,-0.4 1.1,-0.8 1.8,-1 0.2,-0.1 0.4,-0.1 0.6,-0.2 0.3,0 0.5,-0.1 0.8,-0.1 0.4,-0.1 0.8,-0.1 1.2,-0.2 0.1,0 0.3,-0.1 0.5,-0.1 0.1,0 0.2,0 0.2,0 0.1,0 0.2,-0.1 0.3,-0.1 0.1,0 0.1,-0.1 0.2,-0.1 0.1,-0.1 0.2,-0.1 0.3,-0.1 0.2,-0.1 0.4,-0.3 0.6,-0.4 0.1,0 0.2,0 0.3,-0.2 0,-0.1 0,-0.2 -0.1,-0.4 0,-0.1 -0.1,-0.2 -0.2,-0.4 -0.1,-0.1 -0.1,-0.2 -0.2,-0.4 0,-0.1 0,-0.2 -0.1,-0.4 -0.1,-0.2 -0.3,-0.4 -0.4,-0.6 -0.1,-0.1 -0.1,-0.1 -0.2,-0.2 0,-0.1 -0.1,-0.2 -0.1,-0.2 -0.1,-0.2 -0.1,-0.5 -0.2,-0.7 -0.1,-0.2 -0.1,-0.3 -0.2,-0.5 0,-0.2 -0.1,-0.3 -0.1,-0.5 0,-0.1 -0.1,-0.3 -0.1,-0.4 0,-0.2 0,-0.3 0,-0.5 -0.1,-0.3 0,-0.5 0,-0.8 0,-0.1 0.1,-0.2 0.1,-0.4 0,-0.3 0.1,-0.5 0.2,-0.7 0.1,-0.1 0.1,-0.3 0.1,-0.4 0,-0.1 0,-0.2 0,-0.3 0,-0.1 0.1,-0.1 0.1,-0.2 0,-0.1 0,-0.1 0,-0.2 0,-0.1 0.1,-0.2 0.1,-0.4 0,-0.1 0,-0.2 0.1,-0.4 0.1,-0.3 0.1,-0.7 0.1,-1 0,-0.3 0,-0.7 0,-1 0,-0.2 0,-0.4 -0.2,-0.6 -0.1,-0.1 -0.2,-0.3 -0.3,-0.3 -0.1,0 -0.2,-0.1 -0.2,-0.1 -0.1,0 -0.1,-0.2 -0.2,-0.2 -0.1,-0.1 -0.3,0.1 -0.4,0.1 -0.1,0 -0.3,-0.1 -0.3,-0.2 -0.1,-0.1 -0.2,-0.4 -0.4,-0.3 -0.3,0.2 -0.2,0.5 -0.3,0.7 -0.1,0.2 -0.2,0.6 -0.4,0.7 -0.1,0.1 -0.2,0.2 -0.4,0.1 -0.1,0 -0.2,-0.2 -0.3,-0.3 -0.1,-0.2 -0.3,-0.5 -0.4,-0.7 0,-0.1 0,-0.2 -0.1,-0.3 0,-0.1 0,-0.2 0,-0.2 0,-0.1 0.1,-0.3 0.2,-0.3 0.2,-0.1 0.3,-0.1 0.4,-0.3 0.1,-0.1 0,-0.2 0,-0.4 0,-0.1 0.1,-0.2 0.1,-0.3 0.1,-0.1 0.1,-0.1 0.2,-0.2 0,-0.1 0.1,-0.2 0.1,-0.3 0,-0.1 0,-0.1 0,-0.2 0,-0.1 0,-0.1 0,-0.2 0.1,-0.2 0,-0.6 -0.2,-0.7 -0.2,-0.3 -0.4,0.4 -0.6,0.2 -0.1,-0.1 0,-0.3 0.1,-0.4 0,-0.1 0,-0.3 0,-0.4 0,-0.2 0,-0.5 -0.1,-0.7 0,-0.1 -0.1,-0.1 -0.1,-0.2 0,-0.1 0,-0.1 0,-0.2 0,-0.1 -0.1,-0.2 -0.1,-0.3 -0.1,-0.3 -0.2,-0.6 -0.5,-0.7 -0.2,-0.1 -0.4,-0.1 -0.5,-0.3 -0.1,-0.3 -0.1,-0.5 -0.3,-0.7 -0.1,-0.2 -0.2,-0.5 -0.2,-0.7 0,-0.1 0.1,-0.2 0,-0.4 -0.1,-0.1 -0.1,-0.2 -0.2,-0.2 -0.2,0 -0.5,0.3 -0.5,0.4 -0.1,0.2 -0.3,0.3 -0.4,0.5 -0.2,0.2 -0.2,0.5 -0.2,0.7 0,0.1 0,0.2 0,0.4 0,0.1 0,0.1 0,0.2 0,0.1 0.1,0.1 0.1,0.1 0,0.1 0,0.2 0.1,0.4 0,0.1 0.1,0.2 0.1,0.3 0.1,0.2 0,0.5 0,0.7 0,0.3 -0.2,0.7 -0.2,1 -0.1,0.3 0,0.7 -0.1,1 -0.1,0.3 -0.2,0.7 -0.2,1 0,0.1 0,0.2 0,0.4 0,0.1 0,0.2 -0.1,0.4 0,0.2 0,0.5 0.1,0.7 0.1,0.1 0.2,0.2 0.1,0.4 0,0.2 -0.1,0.3 -0.2,0.4 -0.2,0.3 -0.3,0.6 -0.5,0.9 -0.1,0.2 -0.2,0.5 -0.3,0.7 -0.1,0.1 -0.2,0.3 -0.3,0.4 -0.2,0.2 -0.4,0.4 -0.6,0.5 -0.2,0.1 -0.5,0.2 -0.7,0.1 -0.2,-0.2 -0.3,-0.4 -0.6,-0.4 -0.4,0 -0.4,0.3 -0.4,0.6 0,0.3 -0.1,0.5 -0.2,0.8 -0.1,0.4 -0.1,0.7 0,1.1 0,0.1 0,0.2 0.1,0.3 0,0.1 0.1,0.1 0.1,0.2 0,0.1 -0.1,0.1 -0.1,0.1 0,0.1 0,0.1 0,0.2 0,0.1 -0.1,0.2 -0.2,0.3 -0.1,0.2 -0.1,0.4 -0.2,0.6 -0.1,0.2 -0.3,0.4 -0.4,0.6 -0.1,0.2 -0.2,0.5 -0.5,0.6 -0.1,0.1 -0.2,0.1 -0.3,0.2 -0.1,0.1 -0.1,0.1 -0.2,0.2 -0.2,0.2 -0.2,0.4 -0.4,0.5 -0.2,0.2 -0.4,0.2 -0.7,0.2 -0.1,0 -0.3,0 -0.4,0 -0.1,0 -0.1,-0.1 -0.1,-0.1 -0.1,0 -0.1,0 -0.2,0 -0.2,0 -0.3,-0.1 -0.4,-0.1 -0.1,0 -0.2,0 -0.3,0 0,0 -0.1,0 -0.1,0 -0.1,0 -0.1,0 -0.2,0 -0.1,0 -0.1,0 -0.2,-0.1 -0.1,0 -0.1,0 -0.2,0.1 -0.1,0 -0.1,0 -0.2,0 -0.1,0 -0.1,0 -0.2,0.1 -0.1,0 -0.2,0 -0.4,0 -0.1,0 -0.1,0 -0.2,0 -0.1,0 -0.1,-0.1 -0.1,-0.1 -0.2,0 -0.2,0 -0.3,0.1 -0.1,0.1 -0.2,0.2 -0.3,0.3 -0.1,0.1 -0.1,0.1 -0.1,0.2 -0.1,0.2 0,0.4 0,0.6 0,0.2 0.1,0.3 0.2,0.5 0,0.1 0,0.2 -0.1,0.4 -0.1,0.2 -0.3,0.5 -0.3,0.8 0,0.2 0.1,0.5 0.1,0.7 0,0.1 0,0.1 -0.1,0.2 -0.1,0.4 -0.1,0.5 0,0.7 z m 178.3,171.2 c -0.1,0.1 -0.2,0.2 -0.3,0.2 -0.1,0.1 -0.3,0 -0.4,0.1 -0.1,0 -0.1,0.2 -0.2,0.2 -0.1,0 -0.1,0.1 -0.2,0.1 -0.1,0 -0.3,0.1 -0.4,0.2 -0.1,0.1 -0.6,0.3 -0.4,0.5 0,0 0,0 -0.1,0.1 l -0.2,0.1 c 0.2,0 0.3,-0.1 0.5,-0.1 0.2,0 0.4,0 0.6,0 0.2,0 0.2,-0.1 0.4,-0.2 0.1,0 0.3,0 0.4,0 0.2,-0.1 0.4,-0.4 0.6,-0.5 0.1,-0.1 0.2,-0.2 0.2,-0.3 0,-0.1 0.2,-0.3 0.2,-0.4 0.1,-0.6 -0.6,-0.1 -0.7,0 z m 61.3,-49.9 c -0.2,-0.1 -0.5,0.3 -0.6,0.4 -0.1,0.1 -0.2,0.2 -0.3,0.3 -0.1,0.1 -0.2,0.1 -0.3,0.2 -0.2,0.1 -0.2,0.3 -0.4,0.4 -0.1,0.1 -0.3,0.2 -0.4,0.3 -0.2,0.2 -0.7,0.7 -0.6,1.1 l -0.1,0.2 c 0.1,-0.2 0.4,-0.1 0.6,-0.2 0.1,0 0.2,-0.2 0.4,-0.2 0.3,-0.1 0.5,-0.2 0.8,-0.4 0.1,-0.2 1.3,-2 0.9,-2.1 z m -15.4,21.9 c -0.3,-0.2 -0.9,0.7 -1,0.9 l 0.1,0 h 0.2 c 0.3,0.3 0.5,0 0.7,-0.3 0.1,-0.1 0.2,-0.2 0.2,-0.3 -0.1,0 -0.2,-0.3 -0.2,-0.3 z M 298.2,267 c -0.1,0.1 -0.4,0.2 -0.4,0.4 0,0.3 0.6,0.7 0.8,0.6 l -0.1,0.1 c 0.1,0 0.2,0 0.3,-0.1 0.1,0 0.2,0 0.3,0 0,0 0.1,0 0.1,-0.1 0.1,0 0.3,0 0.4,-0.1 0.1,-0.1 0.1,-0.2 0.2,-0.2 0.3,-0.2 0.6,-0.1 0.8,-0.4 0.1,-0.1 0.2,-0.3 0.3,-0.4 0.1,-0.2 0.1,-0.2 -0.1,-0.2 -0.4,0 -0.8,0 -1.1,0.2 -0.3,0.1 -0.6,0.3 -0.9,0.2 -0.1,0 -0.1,-0.1 -0.2,-0.1 -0.2,0 -0.3,0.1 -0.4,0.1 z m 5.2,-0.3 c 0.1,-0.1 0.2,-0.2 0.3,-0.3 0.3,-0.2 0.3,-0.5 0.6,-0.8 0.2,-0.2 0.4,-0.5 0.4,-0.8 -0.2,0.2 -0.4,0.4 -0.6,0.5 -0.2,0.2 -0.4,0.4 -0.6,0.6 -0.1,0.1 -0.2,0.2 -0.3,0.4 -0.1,0.2 -0.2,0.3 -0.4,0.4 -0.1,0.1 -0.3,0.5 -0.2,0.7 l 0,-0.1 0.2,0.2 c 0,-0.3 0,-0.4 0.4,-0.6 0.1,-0.1 0.1,-0.1 0.2,-0.2 z m -5.1,1.6 0.2,-0.2 c -0.1,0.1 -0.2,0.1 -0.2,0.2 z m 4.7,-2.8 c 0.1,-0.2 0.3,-0.3 0.5,-0.4 0.2,-0.1 0.3,-0.3 0.4,-0.4 0.2,-0.2 0.5,-0.3 0.7,-0.5 0.2,-0.2 0.3,-0.4 0.6,-0.6 0.2,-0.2 0.4,-0.3 0.6,-0.5 0.2,-0.2 0.4,-0.5 0.6,-0.8 0.1,-0.2 0.2,-0.6 -0.2,-0.5 -0.3,0.1 -0.4,0.4 -0.6,0.6 -0.2,0.2 -0.4,0.4 -0.6,0.5 -0.1,0.1 -0.3,0.2 -0.4,0.3 -0.2,0.1 -0.4,0.3 -0.7,0.5 -0.2,0.1 -0.3,0.3 -0.5,0.5 -0.3,0.2 -0.5,0.3 -0.7,0.4 -0.3,0.2 -0.8,0.6 -0.8,1.1 0,0.2 0.4,0.3 0.6,0.3 l 0.1,0.1 c 0.2,-0.1 0.3,-0.3 0.4,-0.6 z m -2.6,2.5 c -0.2,0.2 -0.3,0.4 -0.5,0.5 -0.2,0.1 -0.4,0.2 -0.6,0.3 -0.2,0.1 -0.3,0.3 -0.5,0.4 -0.4,0.2 -0.8,0.5 -1.2,0.8 -0.2,0.2 -0.5,0.5 -0.7,0.7 -0.2,0.2 -0.1,0.3 0.1,0.5 l 0.2,-0.2 c 0.3,-0.3 0.8,-0.4 1.2,-0.6 0.2,-0.1 0.4,-0.3 0.6,-0.4 0.2,-0.1 0.3,-0.3 0.5,-0.4 0.3,-0.2 0.6,-0.5 0.9,-0.8 0.2,-0.2 0.3,-0.5 0.5,-0.7 0.1,-0.1 0.3,-0.5 0.3,-0.7 -0.2,-0.3 -0.7,0.5 -0.8,0.6 z m -1.4,6.5 c -0.1,0 -0.1,0.1 -0.2,0.2 -0.1,0.1 -0.3,0.1 -0.5,0.2 -0.3,0.1 -0.6,0.4 -0.8,0.8 -0.2,0.3 -0.2,0.6 -0.4,0.8 -0.1,0.1 -0.2,0.2 -0.3,0.3 -0.2,0.2 -0.3,0.7 -0.7,0.8 -0.1,-0.2 0.1,-0.2 0.2,-0.4 0,-0.1 0,-0.3 0,-0.4 -0.3,0.2 -0.6,0.5 -0.9,0.7 -0.2,0.2 -0.3,0.3 -0.5,0.5 -0.1,0.2 -0.3,0.3 -0.5,0.5 -0.1,0.2 -0.1,0.3 -0.3,0.5 -0.1,0.1 -0.3,0.2 -0.4,0.3 -0.1,0.1 -0.1,0.3 -0.1,0.4 0,0.1 -0.1,0.1 -0.1,0.2 -0.2,0.2 -0.3,0.4 -0.5,0.6 -0.2,0.1 -0.4,0.2 -0.5,0.4 -0.1,0.2 -0.3,0.4 -0.4,0.5 -0.2,0.2 -0.4,0.4 -0.6,0.6 -0.1,0.2 -0.2,0.3 -0.3,0.5 0,0.1 -0.2,0.2 -0.2,0.3 0,0.2 0,0.2 -0.1,0.4 -0.1,0.3 -0.3,0.6 -0.4,0.8 -0.1,0.2 -0.1,0.4 -0.2,0.6 -0.1,0.2 -0.1,0.4 -0.2,0.5 0.1,-0.1 0.2,-0.1 0.3,-0.2 0.1,-0.1 0.2,-0.3 0.4,-0.4 0.4,-0.3 0.8,-0.5 1.1,-0.9 0.1,-0.2 0.2,-0.4 0.4,-0.6 0.1,-0.1 0.2,-0.2 0.2,-0.3 0.1,-0.1 0.1,-0.2 0.1,-0.3 0.1,-0.4 0.6,-0.6 0.9,-0.8 0.2,-0.1 0.3,-0.3 0.4,-0.5 0.2,-0.2 0.4,-0.4 0.6,-0.5 0.1,0 0.2,-0.1 0.3,-0.2 0.1,-0.1 0,-0.2 0,-0.4 0,-0.3 0.2,-0.4 0.4,-0.6 0.1,-0.1 0.1,-0.3 0.2,-0.4 0.1,-0.1 0.2,-0.1 0.2,-0.2 0.2,-0.2 0.4,-0.3 0.6,-0.5 0.2,-0.2 0.4,-0.3 0.6,-0.4 0.2,-0.1 0.4,-0.3 0.6,-0.2 0,0.1 -0.2,0.3 -0.2,0.4 -0.1,0.1 -0.1,0.2 -0.2,0.3 -0.1,0.1 -0.6,0.3 -0.6,0.5 0.2,0.1 0.9,-0.3 1.1,-0.5 0.3,-0.2 0.3,-0.4 0.5,-0.6 0.1,-0.2 0.3,-0.4 0.5,-0.6 0.3,-0.3 0.4,-0.7 0.5,-1.1 0,-0.2 0.1,-0.4 0.2,-0.6 0.1,-0.2 0.1,-0.4 0.2,-0.5 -0.3,-0.3 -0.3,-0.5 -0.4,-0.5 z m -8.3,-56.8 c 0.1,-0.1 0.2,-0.2 0.2,-0.4 l -0.2,0.4 z m -6.6,68.6 c -0.2,0 -0.5,0.3 -0.7,0.5 -0.1,0.1 -0.1,0.2 -0.2,0.4 0,0.1 -0.1,0.2 -0.2,0.3 l 0.4,-0.1 c 0.2,0 0.4,-0.1 0.5,-0.3 0.1,-0.1 0.3,-0.2 0.3,-0.3 0.3,-0.2 0.2,-0.5 -0.1,-0.5 z m 11.5,-21.8 c 0.2,-0.1 0.3,-0.3 0.5,-0.4 0.2,-0.2 0.5,-0.3 0.7,-0.5 0.2,-0.3 0.3,-0.6 0.4,-0.9 0.1,-0.3 0.3,-0.5 0.4,-0.8 0,-0.1 0.3,-0.3 0.2,-0.5 -0.1,-0.1 -0.4,0.2 -0.5,0.3 -0.4,0.2 -0.4,0.5 -0.6,0.8 -0.1,0.1 -0.2,0.2 -0.3,0.3 0,0.1 0,0.2 -0.1,0.3 -0.1,0.1 -0.1,0.1 -0.2,0.2 -0.2,0.3 -0.4,0.6 -0.7,0.9 -0.1,0.1 -0.2,0.3 -0.2,0.4 0,0 0.1,0 0.1,0 l -0.1,0.2 c 0.2,0.1 0.2,-0.1 0.4,-0.3 z m 4,-1.5 c 0.1,0 0.2,0 0.4,0 0.1,0 0.2,0.1 0.3,0.1 0.1,0 0.5,0 0.6,-0.1 l 0.2,0.3 c 0.3,0 0.5,0 0.7,-0.1 0.1,0 0.2,-0.1 0.4,-0.1 0.1,0 0.3,0 0.4,0 0.2,0 0.3,-0.1 0.5,-0.2 0.2,-0.1 0.4,-0.1 0.7,-0.2 0.2,-0.1 0.5,-0.2 0.7,-0.3 0.3,-0.2 0.6,-0.4 1,-0.5 0.3,-0.1 0.5,-0.1 0.7,-0.2 0.5,-0.2 0.8,-0.5 1.1,-0.9 0.1,-0.1 0.2,-0.2 0.2,-0.3 0.1,-0.1 0.2,-0.2 0.2,-0.4 0.1,-0.2 0.3,-0.4 0.4,-0.5 0.2,-0.3 0.4,-0.6 0.5,-0.9 0.1,-0.3 0.2,-0.6 0.3,-0.9 0.1,-0.2 0.3,-0.3 0.4,-0.6 0.1,-0.3 0.3,-0.5 0.4,-0.8 0.1,-0.2 0.3,-0.4 0.4,-0.6 0.1,-0.2 0.3,-0.4 0.2,-0.6 -0.1,0 -0.6,0.6 -0.8,0.7 -0.2,0.3 -0.2,0.7 -0.4,1 -0.2,0.3 -0.3,0.5 -0.5,0.8 -0.2,0.3 -0.4,0.5 -0.6,0.7 -0.3,0.2 -0.4,0.6 -0.7,0.8 -0.3,0.2 -0.5,0.4 -0.8,0.6 -0.2,0.1 -0.3,0.2 -0.5,0.3 -0.2,0.1 -0.3,0.1 -0.5,0.1 -0.1,0 -0.2,0.1 -0.3,0.1 -0.2,0 -0.1,0 -0.2,0 -0.2,-0.1 -0.3,-0.1 -0.5,-0.1 -0.2,0 -0.4,-0.1 -0.6,-0.1 -0.2,0 -0.3,-0.1 -0.5,-0.1 -0.3,-0.1 -0.7,0.1 -1,0.3 -0.2,0.1 -0.3,0.1 -0.4,0.2 -0.2,0.1 -0.4,0.2 -0.6,0.2 -0.1,0 -0.1,-0.1 -0.2,-0.1 -0.1,0 -0.2,0.1 -0.3,0.1 -0.1,0.1 -0.2,0.2 -0.3,0.3 -0.1,0.1 -0.3,0.3 -0.5,0.4 -0.2,0.1 -0.4,0.1 -0.5,0.3 -0.2,0.2 -0.5,0.6 -0.6,0.8 0,0.1 0.1,0.4 0.1,0.6 0.1,-0.2 0.3,-0.1 0.5,-0.1 z m -0.8,2 c -0.1,0.3 0.5,0.5 0.7,0.5 0.3,0 0.6,0.1 0.9,0.1 l 0,0.1 c 0,0.3 0.6,-0.2 0.7,-0.3 0.3,-0.2 0.5,-0.3 0.7,-0.5 0.1,-0.1 0.3,-0.3 0.1,-0.4 -0.1,-0.1 -0.2,0 -0.3,0 -0.2,0.1 -0.5,0.3 -0.7,0.4 -0.2,0 -0.4,0 -0.6,0 -0.3,0 -0.3,-0.1 -0.6,-0.2 -0.2,-0.1 -0.8,0 -0.9,0.3 z m 6.6,0.4 c -0.1,0 -0.2,0.2 -0.3,0.3 -0.2,0.2 -0.4,0.4 -0.5,0.6 -0.1,0.2 -0.2,0.3 -0.3,0.4 -0.2,0.2 -0.4,0.4 -0.6,0.6 -0.1,0.1 -1.1,0.9 -0.6,0.9 l -0.1,0.3 c 0.4,-0.2 0.7,-0.5 1,-0.8 0.3,-0.2 0.5,-0.5 0.7,-0.8 0.1,-0.2 0.3,-0.3 0.4,-0.4 0.1,-0.2 0.2,-0.4 0.3,-0.6 0.1,-0.2 0.3,-0.5 0,-0.5 z m -53,-5.3 c -0.1,0.1 -0.2,0.3 -0.3,0.4 0.2,-0.1 0.3,-0.2 0.3,-0.4 z m 8.9,-231 C 261.2,29 261.1,29 261,28.9 c -0.1,0.2 0.2,0.2 0.3,0.2 z M 327.7,210 c 0,-0.2 0,-0.4 0,-0.6 0,-0.3 -0.1,-0.6 -0.2,-0.8 0,-0.2 -0.1,-0.3 -0.1,-0.5 -0.2,0 -0.3,0.3 -0.4,0.4 -0.1,0 -0.2,0.1 -0.3,0.2 -0.1,0 -0.2,0 -0.3,0 0,0.3 -0.3,0.5 -0.5,0.6 -0.2,0.2 -0.4,0.4 -0.6,0.6 -0.1,0.2 -0.3,0.6 -0.3,0.8 0,0.1 -0.1,0.2 -0.1,0.4 0,0.1 0,0.2 0,0.4 -0.1,0.6 -0.6,1 -0.7,1.6 0,0.2 0,0.3 -0.1,0.5 0,0.1 -0.1,0.3 -0.1,0.4 0,0.1 0.2,0.2 0.3,0.2 0,0 0,0 0,0 l -0.1,0.1 c -0.1,0.5 0.5,0.5 0.8,0.5 0.2,0 0.4,0 0.5,0 0.2,0 0.4,0.2 0.6,0.1 0.2,-0.1 0.2,-0.3 0.3,-0.4 0.1,-0.1 0.2,-0.3 0.3,-0.4 0.2,-0.3 0.3,-0.6 0.3,-0.9 0.1,-0.4 0.2,-0.8 0.3,-1.2 0.1,-0.3 0.3,-0.7 0.3,-1.1 0,-0.1 0,-0.3 0,-0.4 0,-0.4 0.1,-0.4 0.1,-0.5 z m 7,-63.8 c -0.1,-0.3 -0.4,-0.5 -0.5,-0.8 -0.1,-0.3 -0.3,-0.6 -0.6,-0.7 -0.3,-0.1 -0.6,0.1 -0.8,0.3 -0.1,0.1 -0.2,0.2 -0.3,0.3 -0.1,0.1 -0.2,0.2 -0.3,0.3 -0.1,0 -0.1,0.1 -0.2,0.1 0,0.1 0,0.1 0,0.2 -0.1,0.1 -0.2,0.2 -0.3,0.4 -0.1,0.1 -0.2,0.2 -0.2,0.4 -0.1,0.2 -0.2,0.2 -0.4,0.3 -0.1,0.1 -0.2,0.2 -0.3,0.3 -0.1,0.1 -0.3,0.2 -0.4,0.3 -0.1,0 -0.3,0.1 -0.4,0.1 -0.4,-0.2 -0.1,-0.8 -0.3,-1.1 -0.1,-0.1 -0.2,-0.2 -0.3,-0.2 0.1,-0.2 0.1,-0.4 0.2,-0.6 0.1,-0.3 0.2,-0.5 0.3,-0.7 0.2,-0.4 0.2,-0.7 0.2,-1.1 0,-0.3 0.1,-0.5 0.1,-0.8 0,-0.2 0,-0.3 0,-0.5 0,-0.2 0.1,-0.3 0.1,-0.5 0.1,-0.3 0,-0.6 0,-0.9 0,-0.2 0.1,-0.4 0.3,-0.4 0.2,0 0.2,0.1 0.3,0.2 0.1,0 0.3,0.1 0.4,0.1 0,0 0.1,0 0.1,-0.1 0.1,0 0.2,0 0.3,0 0.2,-0.1 0.4,-0.5 0.4,-0.7 0,-0.3 0.1,-0.7 0.1,-1 0,-0.4 0,-0.6 -0.2,-0.9 -0.1,-0.1 -0.1,-0.3 -0.2,-0.4 -0.1,-0.1 -0.2,-0.1 -0.3,-0.1 -0.2,-0.1 -0.2,-0.1 -0.4,0.1 -0.1,0.1 -0.3,0.3 -0.4,0.4 -0.2,0.2 -0.4,0.4 -0.5,0.6 -0.1,0.1 -0.1,0.3 -0.1,0.4 -0.1,0.2 -0.1,0.3 -0.1,0.4 -0.4,0 0.2,0.5 0.1,0.7 -0.1,0.2 -0.3,0.1 -0.5,0 -0.2,-0.1 -0.3,-0.2 -0.5,-0.3 -0.4,-0.1 -0.8,-0.4 -1.2,-0.6 -0.2,-0.1 -0.3,-0.1 -0.6,-0.1 -0.2,0 -0.5,-0.2 -0.7,0 -0.2,-0.2 -0.3,0.3 -0.3,0.4 0,0.2 0,0.3 0,0.4 0,0.2 0.1,0.1 0,0.3 -0.1,0.3 -0.4,0.4 -0.6,0.6 -0.1,0.2 -0.2,0.4 -0.3,0.6 -0.1,0.2 -0.2,0.4 -0.4,0.6 0,0 -0.2,0.2 -0.2,0.2 -0.1,0.1 -0.2,0 -0.4,0 -0.1,0 -0.3,0.2 -0.4,0.3 -0.4,-0.6 -0.7,-1.1 -1,-1.8 -0.2,-0.5 -0.4,-1.1 -0.6,-1.6 -0.1,-0.4 -0.3,-0.7 -0.5,-1.1 -0.2,-0.3 -0.4,-0.7 -0.5,-1.1 0,-0.1 0,-0.2 0,-0.3 0,-0.1 -0.1,-0.2 -0.1,-0.4 0,-0.3 -0.1,-0.5 -0.1,-0.8 0,-0.4 0.3,-0.9 0.1,-1.3 -0.2,-0.3 -0.4,-0.5 -0.6,-0.8 -0.1,-0.2 -0.1,-0.4 0,-0.6 0.1,-0.1 0.3,-0.1 0.4,-0.2 0.1,-0.1 0.2,-0.2 0.2,-0.4 0,-0.1 -0.1,-0.2 -0.2,-0.3 0,-0.1 -0.1,-0.1 -0.1,-0.2 -0.1,-0.2 -0.1,-0.4 -0.2,-0.7 0,-0.2 -0.2,-0.3 -0.2,-0.5 -0.1,-0.2 0,-0.5 0,-0.7 0,-0.3 0,-0.4 0.1,-0.7 0.3,-0.8 0.8,-1.7 1,-2.5 0.1,-0.4 0.2,-0.9 0.3,-1.3 0,-0.1 0.1,-0.2 0.1,-0.4 0,-0.1 0,-0.2 0,-0.3 0,-0.1 0.1,-0.2 0.1,-0.3 0,-0.1 0,-0.2 0,-0.3 0,-0.2 0.1,-0.5 0.2,-0.7 0.1,-0.2 0,-0.4 -0.1,-0.6 -0.1,-0.4 -0.1,-0.7 -0.3,-1.1 -0.2,-0.5 -0.4,-1 -0.6,-1.5 -0.1,-0.3 0,-0.4 0,-0.6 0,-0.2 0,-0.4 0,-0.6 0,-0.5 -0.1,-0.9 -0.3,-1.4 -0.1,-0.2 -0.2,-0.5 -0.3,-0.7 -0.2,-0.3 -0.4,-0.4 -0.6,-0.7 -0.2,-0.2 -0.6,-0.6 -0.9,-0.3 -0.2,0.3 0.1,0.8 0.3,1.1 0.1,0.2 0.2,0.4 0.3,0.6 0.1,0.2 0.1,0.4 0.2,0.6 0.1,0.3 0.2,0.7 0.4,0.9 0.1,0.2 0.2,0.3 0.3,0.5 0.1,0.2 0.1,0.4 0.1,0.7 0,0.3 0.1,1.3 -0.4,1.3 0,-0.2 -0.2,-0.4 -0.2,-0.5 0,-0.2 0,-0.4 -0.1,-0.6 -0.1,-0.2 -0.1,-0.3 -0.2,-0.5 -0.1,-0.2 -0.2,-0.4 -0.3,-0.6 -0.1,-0.4 0.2,-0.8 0.1,-1.2 -0.1,-0.4 -0.5,-0.8 -0.8,-1 -0.2,-0.2 -0.4,-0.4 -0.6,-0.6 -0.1,-0.1 -0.1,-0.3 -0.2,-0.5 -0.1,-0.2 -0.1,-0.4 -0.3,-0.5 -0.1,-0.1 -0.4,-0.2 -0.5,-0.2 -0.4,-0.1 -0.7,0 -1,0.3 -0.1,0.1 -0.2,0.2 -0.3,0.2 -0.2,0.1 -0.3,-0.1 -0.6,-0.1 0,-0.3 -0.1,-0.5 -0.2,-0.8 -0.1,-0.3 -0.3,-0.4 -0.6,-0.6 -0.2,-0.1 -0.3,-0.2 -0.4,-0.4 -0.1,-0.1 0,-0.2 -0.1,-0.3 -0.1,-0.2 -0.3,-0.4 -0.4,-0.5 -0.2,-0.1 -0.4,-0.3 -0.6,-0.3 -0.3,-0.1 -0.4,-0.1 -0.6,-0.3 -0.2,-0.1 -0.5,-0.2 -0.7,-0.3 -0.2,-0.1 -0.3,-0.3 -0.5,-0.4 -0.3,-0.2 -0.6,-0.4 -0.8,-0.7 -0.2,-0.2 -0.3,-0.4 -0.5,-0.7 -0.4,-0.4 -0.7,-1 -1.1,-1.3 -0.2,-0.1 -0.3,-0.2 -0.5,-0.3 0,0 0,0 0,0 -0.1,-0.1 -0.1,-0.2 -0.2,-0.3 0,-0.1 0,-0.2 0.1,-0.3 0.1,-0.1 0.2,-0.3 0.4,-0.3 0.1,0 0.1,0 0.2,0 0.1,0 0.1,-0.1 0.2,-0.1 0.1,0 0.2,0.1 0.3,0.2 0.1,0.1 0.2,0.1 0.3,0.1 0.1,0 0.2,-0.1 0.3,-0.2 0.1,-0.1 0.2,-0.1 0.4,-0.1 0.1,0 0.3,0 0.3,-0.2 0.1,-0.1 0,-0.2 0,-0.3 -0.1,-0.2 -0.2,-0.3 -0.3,-0.4 -0.1,-0.2 -0.3,-0.3 -0.4,-0.5 -0.1,-0.1 -0.1,-0.3 -0.1,-0.4 0,-0.1 0,-0.3 0,-0.4 0,-0.1 0,-0.3 0.1,-0.4 0,-0.2 0,-0.3 -0.1,-0.5 0,-0.1 0,-0.3 0.1,-0.4 0.1,-0.1 0.2,0.1 0.3,0 0.1,-0.1 0.1,-0.3 0.1,-0.4 0,-0.2 0.1,-0.3 0.1,-0.5 0,-0.1 0,-0.2 0,-0.3 0,-0.1 0.1,-0.2 0.2,-0.3 0.1,-0.1 0.2,-0.2 0.4,-0.2 0.2,-0.1 0.3,-0.2 0.5,-0.2 0.1,0 0.2,0 0.3,0 0.1,0 0.2,0 0.3,-0.1 0.1,0 0.2,0 0.3,0 0.1,0 0.2,0 0.3,-0.1 0,0 0,0 0,0 0.4,0 0.7,0 1.1,0.1 0.1,0 0.1,0 0.2,0.1 0.1,0 0.2,0 0.3,0 0.1,0 0.3,0.1 0.4,0.1 0.1,0 0.3,0.1 0.4,0.1 0.1,0 0.2,0 0.2,0.1 0.1,0 0.2,0.1 0.3,0.1 0.1,0 0.3,0 0.4,0.1 0.1,0 0.2,0.1 0.4,0.2 0.1,0 0.1,0 0.2,0 0,0 0.2,0.1 0.1,0 0.1,0.1 0.2,0.2 0.3,0.2 0.1,0.1 0.4,0.1 0.6,0.2 0.2,0.1 0.6,0.1 0.5,0.5 0,0.1 -0.1,0.2 0,0.3 0.1,0.1 0.2,0.2 0.2,0.4 0,0.2 -0.1,0.2 0.1,0.3 0.1,0.1 0.2,0.2 0.3,0.2 0.2,0.1 0.3,0.3 0.4,0.4 0.2,0.2 0.3,0.4 0.4,0.6 0.1,0.2 0.2,0.4 0.3,0.6 0.1,0.1 0.1,0.2 0.1,0.3 0,0.2 0,0.2 -0.1,0.4 0,0.2 0.1,0.4 0.1,0.6 0,0.1 -0.1,0.2 -0.1,0.4 0,0.1 0.1,0.2 0.1,0.3 0,0.2 0,0.4 0.1,0.5 0.1,0.1 0.3,0.3 0.4,0.3 0.1,-0.3 0.3,-0.4 0.5,-0.2 0.3,0.2 0.3,0.5 0.4,0.7 0.1,0.2 0.2,0.4 0.4,0.5 0.3,0.2 0.6,0.1 0.9,0.1 0.2,0 0.3,0 0.4,-0.1 0.1,-0.1 0.2,-0.1 0.3,-0.1 0.1,0 0.2,0 0.3,0 0.1,0 0.1,0 0.2,0 0.1,0 0.1,0.1 0.1,0.1 0.1,0 0.4,0 0.5,-0.1 0.1,-0.1 0.1,-0.3 0.3,-0.4 0.1,-0.1 0.2,0 0.3,0 0.1,0 0.1,0 0.2,0 0.1,0 0.1,0.1 0.1,0.1 0.2,0 0.2,-0.1 0.3,-0.2 0.2,-0.2 0.5,-0.2 0.7,-0.2 0.1,0 0.2,0.1 0.3,0.1 0.1,0 0.1,-0.1 0.2,-0.1 0.1,0 0.2,0.1 0.3,0.1 0.1,0 0.3,0 0.4,0 0.1,0 0.2,-0.2 0.3,-0.3 0.1,-0.2 0.1,-0.5 0.1,-0.8 0,-0.3 0,-0.5 0,-0.8 0,-0.3 -0.2,-0.6 -0.3,-0.8 -0.1,-0.1 -0.2,-0.2 -0.2,-0.3 -0.1,-0.1 -0.1,-0.3 -0.2,-0.4 -0.1,-0.2 -0.2,-0.5 -0.3,-0.7 -0.2,-0.3 -0.5,-0.7 -0.4,-1.1 0.1,0 0.1,0.2 0.2,0.3 0.1,0.1 0.3,0.1 0.4,0.3 0,-0.1 -0.1,-0.3 -0.1,-0.4 -0.1,-0.2 -0.1,-0.3 -0.2,-0.5 -0.2,-0.2 -0.3,-0.5 -0.4,-0.8 -0.1,-0.1 -0.1,-0.2 -0.2,-0.4 -0.1,-0.2 -0.1,-0.4 -0.2,-0.5 -0.1,-0.3 -0.3,-0.5 -0.4,-0.8 0,0 0,-0.1 0,-0.1 0,-0.1 0,-0.2 0,-0.3 0,-0.1 0,-0.3 -0.1,-0.4 -0.1,-0.1 -0.2,-0.2 -0.3,-0.3 -0.1,-0.1 -0.2,-0.2 -0.2,-0.3 -0.1,-0.1 0,-0.2 -0.1,-0.3 -0.1,-0.3 -0.2,-0.5 -0.4,-0.7 -0.1,-0.1 -0.2,-0.2 -0.3,-0.3 -0.1,-0.1 -0.2,-0.4 -0.3,-0.4 0.1,0.2 0.1,0.5 0.2,0.7 0.1,0.2 0.2,0.3 0.4,0.5 0.1,0.1 0.4,0.6 0.2,0.6 -0.1,0 -0.3,-0.2 -0.3,-0.3 0,0 0,-0.1 0,-0.1 0,0 -0.1,0 -0.1,-0.1 0,-0.1 -0.1,-0.1 -0.1,-0.2 0,0.1 0.1,0.2 0.1,0.4 0,0.1 0,0.3 0.1,0.4 0.1,0.1 0.1,0.1 0.2,0.3 0.1,0.2 -0.1,0.3 0,0.5 0,0.1 0.1,0.2 0.2,0.3 0.1,0.2 0.1,0.3 0.1,0.4 0,0.2 0,0.3 -0.1,0.4 0,0.1 0,0.1 0,0.2 0,0.1 0.1,0.1 0.1,0.2 0.1,0.4 -0.5,0 -0.3,0.4 0.1,0.1 0.1,0.3 0.1,0.4 0,0.1 0,0.1 -0.1,0.2 0,0.1 0,0.2 0,0.3 0,0.2 -0.1,0.3 -0.1,0.5 0,0.1 0,0.3 0,0.4 -0.2,0.1 -0.4,-0.4 -0.5,-0.5 -0.1,-0.1 -0.3,0 -0.4,0 -0.1,0 -0.3,-0.1 -0.4,-0.1 -0.1,0 -0.3,0 -0.4,0 -0.1,0 -0.3,-0.1 -0.4,-0.1 -0.2,0 -0.3,-0.1 -0.5,-0.2 -0.1,0 -0.2,-0.1 -0.3,-0.1 -0.1,-0.1 -0.2,-0.2 -0.3,-0.3 -0.2,-0.2 -0.4,-0.3 -0.7,-0.3 -0.3,0 -0.5,-0.1 -0.7,-0.3 -0.2,-0.2 -0.3,-0.4 -0.3,-0.7 0,-0.1 0,-0.2 -0.1,-0.3 0,-0.1 -0.1,-0.1 -0.1,-0.1 0,0 0,-0.1 0,-0.1 -0.1,-0.1 -0.2,-0.2 -0.3,-0.2 -0.1,0 -0.2,0 -0.3,-0.1 -0.2,-0.1 -0.4,-0.5 -0.4,-0.7 0,0 0,-0.1 -0.1,-0.1 0,-0.1 0,-0.1 0,-0.1 0,-0.1 0,-0.1 0,-0.2 0,-0.1 0.1,-0.1 0.1,-0.1 0,0 0,-0.1 0,-0.1 0,-0.1 0.1,-0.1 0.1,-0.2 0,-0.1 0,-0.2 0,-0.2 0,-0.1 0,-0.1 0.1,-0.2 0,-0.4 0,-0.9 -0.1,-1.3 -0.1,-0.4 -0.5,-0.7 -0.5,-1.2 0,-0.2 0,-0.5 0,-0.7 0,-0.1 0,-0.1 0,-0.2 0,-0.1 0,-0.1 0.1,-0.1 0,-0.1 0,-0.3 0,-0.4 0,-0.2 0,-0.5 0,-0.7 -0.1,-0.2 -0.1,-0.5 -0.2,-0.7 -0.1,-0.2 -0.3,-0.3 -0.4,-0.5 -0.1,-0.2 -0.3,-0.3 -0.4,-0.5 -0.1,-0.2 -0.3,-0.5 -0.5,-0.6 -0.2,-0.2 -0.4,-0.3 -0.6,-0.5 -0.2,-0.3 -0.3,-0.6 -0.5,-1 -0.1,-0.2 -0.1,-0.3 -0.3,-0.5 0.1,0.1 0.2,0.1 0.3,0.1 0.1,0.1 0.3,0.1 0.4,0.1 0.1,0.1 0.1,0.2 0.1,0.3 0,0.2 0,0.3 0.2,0.4 0.1,0.1 0.2,0.1 0.3,0.2 0.1,0.1 0.2,0.1 0.3,0.2 0.1,0.2 0.2,0.5 0.4,0.6 0.3,0.2 0.2,-0.2 0.1,-0.3 -0.1,-0.3 -0.3,-0.5 -0.3,-0.8 0,-0.1 0,-0.3 -0.1,-0.4 0,-0.1 -0.1,-0.2 -0.1,-0.3 -0.1,-0.2 0,-0.2 0.1,-0.2 0.1,-0.1 0.2,-0.1 0.2,-0.3 0,-0.2 0,-0.3 -0.1,-0.5 0,-0.1 0,-0.1 0,-0.2 0,-0.1 -0.1,-0.1 -0.1,-0.2 -0.1,-0.3 -0.3,-0.5 -0.4,-0.8 -0.1,-0.2 -0.1,-0.7 0.2,-0.7 0.1,0 0.1,0 0.2,0 0.1,0 0.1,0 0.1,0.1 0.2,0 0.3,0 0.5,-0.1 0.1,0 0.1,0 0.2,0 0.1,0 0.1,0 0.1,-0.1 0.1,0 0.2,0 0.3,-0.1 0.1,0 0.3,-0.1 0.4,-0.1 0.1,0 0.3,-0.1 0.4,-0.1 0.2,-0.1 0.3,-0.3 0.5,-0.1 0.2,0.2 0.2,0.4 0.3,0.7 0.1,0.2 0.2,0.3 0.3,0.4 0.1,0.1 0.2,0.3 0.2,0.4 0,0.1 0.1,0.2 0.2,0.3 0,0.1 0,0.1 0,0.2 0,0.1 0.1,0.2 0.1,0.2 0.1,0.1 0.1,0.3 0.2,0.4 0.1,0.2 0.3,0.1 0.2,-0.1 0,-0.1 -0.1,-0.3 -0.1,-0.4 0,-0.1 -0.1,-0.3 -0.2,-0.3 0.4,0.2 0.5,0.7 0.6,1.1 0.1,0.3 0.3,0.6 0.4,0.9 0.1,0.1 0.2,0.2 0.3,0.3 0.1,0.1 0.1,0.2 0.1,0.3 0.1,0.2 0.1,0.5 0.1,0.7 0,0.3 0.2,0.5 0.4,0.8 0.2,0.4 0.5,0.7 0.7,1 0.3,0.4 0.4,1 0.7,1.3 C 324,96.2 324,96.1 324,96 c 0,-0.1 -0.1,-0.3 -0.1,-0.4 -0.1,-0.3 -0.2,-0.6 -0.4,-0.9 -0.1,-0.2 -0.2,-0.4 -0.3,-0.7 -0.1,-0.1 -0.2,-0.3 -0.2,-0.4 -0.2,-0.4 -0.3,-0.7 -0.4,-1.1 -0.1,-0.3 -0.2,-0.5 -0.2,-0.8 0,-0.3 -0.1,-0.6 -0.2,-0.9 -0.1,-0.3 -0.1,-0.5 -0.1,-0.8 0,-0.3 -0.1,-0.6 -0.2,-0.8 0,-0.2 -0.2,-0.4 -0.2,-0.6 -0.1,-0.3 -0.2,-0.7 -0.3,-1 -0.2,-0.5 -0.2,-1 -0.4,-1.5 -0.2,-0.5 -0.4,-1 -0.7,-1.5 -0.3,-0.5 -0.5,-1.1 -0.9,-1.5 -0.2,-0.2 -0.4,-0.5 -0.6,-0.7 -0.3,-0.4 -0.5,-0.8 -0.8,-1.1 -0.5,-0.6 -1.1,-1.2 -1.7,-1.7 -0.1,-0.2 -0.1,-0.3 -0.2,-0.5 -0.3,-0.7 -0.6,-1.4 -1,-2.1 -0.7,-1.3 -1.4,-2.7 -2.1,-4 -0.8,-1.4 -1.9,-2.6 -2.8,-3.9 -0.3,-0.5 -0.7,-0.9 -1,-1.4 -0.4,-0.6 -0.9,-1.2 -1.4,-1.8 -0.4,-0.5 -0.8,-1 -1.2,-1.6 -0.2,-0.3 -0.5,-0.7 -0.8,-1 -0.9,-0.9 -1.6,-2 -2.5,-2.9 -0.6,-0.7 -1.2,-1.4 -1.8,-2.1 -0.3,-0.4 -0.7,-0.7 -1,-1.1 -0.6,-0.7 -1.2,-1.3 -1.9,-1.9 -0.3,-0.2 -0.5,-0.5 -0.8,-0.7 -0.1,-0.1 -0.3,-0.2 -0.4,-0.4 -0.1,-0.1 -0.2,-0.2 -0.4,-0.3 -0.2,-0.1 -0.3,-0.3 -0.5,-0.4 -0.2,-0.1 -0.3,-0.3 -0.4,-0.4 -0.2,-0.2 -0.5,-0.4 -0.7,-0.6 -0.4,-0.4 -0.8,-0.7 -1.2,-1.1 -0.2,-0.1 -0.3,-0.3 -0.5,-0.5 -0.1,-0.1 -0.2,-0.2 -0.3,-0.3 -0.2,-0.2 -0.5,-0.4 -0.7,-0.6 -0.1,-0.1 -0.3,-0.2 -0.4,-0.3 -0.2,-0.2 -0.3,-0.3 -0.5,-0.5 -0.3,-0.2 -0.5,-0.4 -0.8,-0.6 -0.1,-0.1 -0.2,-0.2 -0.4,-0.4 -0.5,-0.5 -1.1,-0.9 -1.6,-1.4 -0.5,-0.4 -0.9,-0.7 -1.4,-1.1 -0.1,-0.1 -0.3,-0.2 -0.5,-0.3 -0.1,-0.1 -0.2,-0.2 -0.3,-0.3 -0.2,-0.2 -0.4,-0.4 -0.6,-0.5 -0.4,-0.3 -0.8,-0.6 -1.1,-0.8 -0.2,-0.1 -0.4,-0.3 -0.6,-0.4 -0.2,-0.1 -0.3,-0.3 -0.5,-0.5 -0.1,-0.1 -0.2,-0.1 -0.2,-0.2 -0.1,-0.1 -0.2,-0.2 -0.3,-0.3 -0.1,-0.1 -0.3,-0.2 -0.4,-0.3 -0.6,-0.5 -1.1,-1.1 -1.7,-1.6 -0.1,-0.1 -0.3,-0.2 -0.4,-0.3 -0.4,-0.5 -0.8,-1 -1.2,-1.5 -0.6,-0.7 -1.3,-1.3 -2,-1.9 -0.6,-0.5 -1.3,-1 -1.9,-1.6 -0.5,-0.5 -1.1,-0.9 -1.7,-1.3 -1,-0.7 -2.1,-1.4 -3.1,-2 -0.4,-0.2 -0.8,-0.5 -1.2,-0.7 -0.5,-0.2 -0.9,-0.6 -1.3,-0.9 -1.3,-0.9 -2.6,-1.7 -3.9,-2.5 -0.5,-0.3 -1.1,-0.7 -1.6,-0.9 -0.4,-0.2 -0.7,-0.5 -1.1,-0.6 -0.4,-0.2 -0.9,-0.4 -1.3,-0.6 -0.2,-0.1 -0.3,-0.1 -0.5,-0.2 -0.1,-0.1 -0.3,-0.2 -0.4,-0.3 -0.2,-0.1 -0.3,-0.1 -0.5,-0.2 -0.1,-0.1 -0.2,-0.1 -0.2,-0.2 -0.3,-0.1 -0.5,-0.2 -0.8,-0.4 -0.3,-0.2 -0.5,-0.3 -0.8,-0.4 -0.2,-0.1 -0.4,-0.2 -0.6,-0.3 -0.4,-0.2 -0.8,-0.4 -1.3,-0.7 -0.2,-0.1 -0.4,-0.2 -0.6,-0.3 -0.1,-0.1 -0.2,-0.2 -0.3,-0.2 -0.1,-0.1 -0.2,-0.1 -0.3,-0.2 -0.2,-0.1 -0.4,-0.3 -0.6,-0.4 -0.2,-0.1 -0.3,-0.3 -0.5,-0.4 -0.2,-0.2 -0.5,-0.4 -0.8,-0.5 -0.2,-0.1 -0.4,-0.3 -0.6,-0.4 -0.2,-0.1 -0.4,-0.2 -0.6,-0.3 -0.2,-0.1 -0.4,-0.2 -0.6,-0.3 -0.3,-0.2 -0.6,-0.3 -1,-0.4 -0.2,-0.1 -0.5,-0.3 -0.7,-0.4 -0.1,-0.1 -0.3,-0.1 -0.4,-0.2 -0.1,-0.1 -0.2,-0.2 -0.4,-0.2 -0.1,0 -0.2,-0.1 -0.4,-0.1 -0.1,-0.1 -0.3,-0.1 -0.4,-0.2 -0.1,-0.1 -0.3,-0.1 -0.4,-0.2 0,0 -0.1,-0.1 -0.1,-0.1 -0.1,0 -0.1,0 -0.1,0 -0.1,0 -0.2,-0.1 -0.3,-0.1 -0.1,-0.1 -0.1,-0.1 -0.2,-0.2 -0.1,-0.1 -0.2,-0.1 -0.4,-0.2 0,0 -0.1,-0.1 -0.1,-0.1 -0.1,-0.3 -0.2,-0.7 -0.4,-0.9 -0.3,-0.5 -0.8,-0.7 -1.2,-1 -0.5,-0.4 -1.1,-0.6 -1.7,-0.9 -0.2,-0.1 -0.5,-0.2 -0.7,-0.2 -0.4,-0.1 -0.7,-0.3 -1.1,-0.3 -0.7,-0.1 -1.3,-0.3 -1.9,-0.6 -0.8,-0.4 -1.7,-0.5 -2.5,-0.8 -0.7,-0.2 -1.4,-0.4 -2,-0.7 -0.6,-0.2 -1.1,-0.5 -1.7,-0.5 -0.2,0 -0.4,-0.1 -0.6,-0.1 -0.3,-0.1 -0.7,-0.2 -1,-0.3 -0.2,0 -0.3,0 -0.3,0.2 -0.1,0.3 0.3,0.6 0.5,0.7 l -0.3,-0.4 c 0.1,0.1 0.3,0.3 0.4,0.4 0.1,0.1 0.3,0.1 0.4,0.2 0.4,0.2 0.8,0.4 1.2,0.4 0.2,0 0.3,0.1 0.5,0.1 0.2,0 0.4,0 0.6,0.1 0.2,0 0.3,0.1 0.4,0.2 0.2,0.1 0.3,0.2 0.5,0.3 0.3,0.2 0.6,0.4 0.9,0.6 0.3,0.1 0.7,0.3 1,0.4 0.2,0 0.3,0 0.4,0.1 0.1,0 0.2,0 0.2,0.1 0.1,0 0.1,0.1 0.2,0.1 0.2,0.1 0.3,0.1 0.4,0.2 0.2,0.1 0.4,0.2 0.5,0.3 0.2,0.1 0.6,0.3 0.7,0.5 0.1,0.1 0.1,0.3 0.3,0.4 0.2,0.1 0.4,-0.1 0.5,0 0.3,0.1 0.3,0.6 0.4,0.8 0,0.1 0.1,0.2 0.1,0.2 0,0 0,0 0,0 -0.1,-0.1 -0.1,-0.3 -0.3,-0.4 -0.1,-0.1 -0.3,-0.1 -0.5,-0.2 -0.1,0 -0.3,-0.1 -0.4,-0.1 -0.2,0 -0.4,0 -0.5,-0.1 -0.2,-0.1 -0.2,-0.2 -0.3,-0.4 -0.4,-0.4 -0.9,-0.6 -1.4,-0.8 -0.4,-0.1 -0.7,-0.3 -1.1,-0.5 -0.1,0 -0.2,-0.1 -0.3,-0.1 -0.3,-0.5 -0.8,-0.7 -1.4,-0.9 -0.2,-0.1 -0.4,-0.1 -0.6,-0.2 -0.2,-0.1 -0.3,-0.1 -0.5,-0.1 -0.4,-0.1 -0.7,-0.2 -1,-0.4 -0.3,-0.2 -0.6,-0.2 -1,-0.3 -0.1,0 -0.1,0 -0.3,-0.1 -0.1,0 -0.2,-0.1 -0.3,-0.1 -0.1,-0.1 -0.2,-0.2 -0.3,-0.2 -0.1,0 -0.2,0 -0.3,0 -0.1,0 -0.2,0 -0.3,-0.1 -0.2,-0.1 -0.3,0 -0.5,0.1 -0.1,-0.1 -0.3,-0.2 -0.5,-0.3 -0.1,0 -0.2,0 -0.3,-0.1 -0.1,0 -0.1,-0.1 -0.2,-0.1 -0.1,0 -0.1,0 -0.2,0 -0.1,0 -0.1,0 -0.2,0 0,0 -0.1,0 -0.1,0 0,0 -0.1,0.1 -0.1,0 -0.1,0 -0.1,0 -0.2,0 -0.1,0 -0.1,-0.1 -0.2,-0.1 0,0 0,0 0,-0.1 -0.1,-0.1 -0.1,-0.2 -0.2,-0.3 -0.2,-0.1 -0.4,0 -0.6,0 -0.1,0 -0.1,-0.1 -0.2,-0.1 -0.1,0 -0.2,0 -0.3,0 -0.2,0 -0.3,-0.1 -0.5,-0.2 0,0 -0.2,-0.1 -0.2,-0.1 0,0 -0.1,-0.1 -0.2,-0.1 -0.2,0 0,0.3 0.1,0.4 -0.1,0 -0.1,0 -0.2,0 0,0.1 0.2,0.2 0.3,0.3 0.1,0.1 0.2,0.2 0.4,0.3 0.1,0.1 0.2,0.2 0.4,0.3 0.1,0.1 0.2,0.1 0.3,0.1 0.2,0.1 0.4,0.2 0.6,0.4 0.2,0.1 0.3,0.2 0.5,0.3 0.1,0 0.2,0.1 0.3,0.1 0.3,0.1 0.4,0.2 0.6,0.4 0.1,0.1 0.2,0.3 0.3,0.4 0.1,0.1 0.2,0.2 0.4,0.3 0.1,0 0.2,0.2 0.2,0.3 0,0 0,0 0,0 0,0 0.1,0 0.1,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 -0.1,0 -0.2,0 -0.1,0 -0.2,0 -0.3,0 0,0 0,-0.1 0,-0.1 0,0 0,0 0,-0.1 0,0 0,-0.1 0,-0.1 0,0 -0.1,0 -0.1,-0.1 0,0 0,0 -0.1,0 0,0 0,0 -0.1,0 -0.1,0 -0.2,-0.1 -0.3,-0.1 -0.1,-0.1 -0.2,-0.2 -0.3,-0.2 -0.1,0 -0.2,-0.1 -0.3,-0.1 0,0 -0.1,-0.1 -0.1,-0.1 0,0 -0.1,0 -0.1,0 -0.1,0 -0.2,0 -0.2,-0.1 -0.1,-0.1 -0.1,-0.1 -0.2,-0.2 0,0 -0.1,0 -0.1,0 h 0 c -0.1,-0.1 -0.2,-0.1 -0.3,-0.1 -0.1,0 -0.1,0 -0.2,0 0,0 0,0 0,0 0,0 0,0 -0.1,0 -0.1,0 -0.3,0 -0.4,0 0,0 -0.1,0 -0.1,0 -0.1,0 -0.2,0 -0.3,0 0,0 0,0 0,0 -0.1,0 -0.1,0 -0.2,0 -0.1,0 -0.1,0 -0.2,0 -0.1,0 -0.2,0 -0.3,0 -0.2,0 -0.3,0 -0.4,0.1 0,0 -0.1,0 -0.1,0 -0.1,0 -0.1,0 -0.2,0 0,0 0,0 0,0 0,0 -0.1,0 -0.1,0 -0.2,0 -0.3,0.1 -0.4,0.1 -0.1,0 -0.2,0 -0.3,0 0.1,0.2 0.4,0.2 0.6,0.3 0.1,0.1 0.2,0.2 0.3,0.2 0.2,0 0.4,0 0.6,0 0.2,0 0.3,0.1 0.5,0.1 0.3,0 0.5,0.1 0.8,0.1 0.2,0 0.3,0 0.4,0.1 0,0 0,0 0,0 0,0 0,0 -0.1,0.1 0,0 0,0 -0.1,0.1 -0.1,0.1 -0.2,0.1 -0.4,0 -0.1,0 -0.1,0 -0.2,0 0,0 -0.1,0 -0.1,0 0,0 -0.1,0 -0.1,0 0,0 -0.1,0 -0.1,0 -0.2,0 -0.3,0 -0.5,0 -0.1,0 -0.1,0 -0.1,0 0,0 -0.1,0 -0.1,0 -0.1,0 -0.2,0.1 -0.1,0.2 0,0.1 0.1,0.1 0.2,0.1 0.1,0 0.1,0.1 0.1,0.2 -0.2,0 -0.3,0 -0.5,0 0,0.2 0.5,0.3 0.4,0.6 -0.1,0.2 -0.7,0.1 -0.9,0.1 0,0 -0.1,0 -0.1,0 0,0 -0.1,-0.1 -0.1,-0.1 0,0 -0.1,0 -0.1,0 -0.1,0 -0.1,-0.1 -0.2,-0.1 -0.1,0 -0.1,0 -0.2,0 0,0 -0.1,0 -0.1,0 -0.1,0 -0.2,0 -0.2,0 -0.1,0 -0.1,0 -0.2,0 -0.1,0 -0.2,0 -0.2,0 0,0 -0.1,0 -0.1,0 -0.1,0 -0.2,0 -0.3,0 -0.1,0 -0.1,0 -0.2,0 0,0 -0.1,-0.1 -0.1,-0.1 -0.1,0 -0.1,0 -0.2,0 -0.1,0 -0.1,0 -0.2,0 -0.1,0 -0.1,0 -0.2,0 0,0 -0.1,0 -0.1,0 -0.1,0 -0.1,0 -0.2,0 -0.1,0 -0.1,0 -0.2,0 -0.1,0 -0.1,0 -0.2,0 -0.1,0 -0.1,-0.1 -0.2,-0.1 -0.2,-0.1 -0.4,0 -0.6,0 -0.2,0 -0.4,0.1 -0.5,0.2 -0.1,0.1 -0.2,0.2 -0.2,0.3 0,0.1 0,0.2 0,0.3 0,0.1 0,0.2 0.1,0.3 0,0.2 0,0.2 0.2,0.4 0.1,0.1 0.3,0.3 0.4,0.4 0.1,0.1 0.2,0.3 0.3,0.5 0.1,0.2 -0.1,0.4 -0.1,0.5 -0.1,0.5 0,0.7 0.3,1.1 0.2,0.2 0.7,0.4 0.4,0.7 -0.2,0.1 -0.5,0.2 -0.7,0.3 -0.2,0.1 -0.4,0.1 -0.6,0.2 -0.2,0.1 -0.3,0.1 -0.5,0.1 -0.1,0 -0.2,0.1 -0.3,0.1 -0.1,0 -0.2,0 -0.3,0 -0.2,0.1 -0.2,0.3 -0.2,0.4 0,0.1 0.1,0.2 0.1,0.3 0,0.1 0,0.2 0,0.3 0.1,0.3 0.1,0.7 0.1,1.1 0,0.2 -0.1,0.3 -0.1,0.5 -0.1,0.2 -0.2,0.3 0,0.4 0.2,0.1 0.3,0.1 0.5,0.1 0.2,0 0.3,0.1 0.4,0.1 0.1,0 0.2,0 0.4,0 0.1,0 0.2,0.1 0.3,0.1 0.2,0 0.3,0.1 0.5,0.2 0.2,0.1 0.4,0.1 0.6,0.1 0.2,0 0.3,0.1 0.5,0.1 0.2,0 0.4,0.1 0.6,0.1 0.3,0 0.4,0 0.7,0.1 0.2,0.1 0.4,0 0.5,0.1 0.1,0 0.2,0.1 0.3,0.1 0.2,0 0.4,0.1 0.5,0.1 0.1,0 0.2,0.1 0.4,0.1 0.1,0 0.2,0 0.3,0 0.2,0 0.4,0 0.5,0 0.2,0 0.4,0 0.6,0.1 0.1,0.1 0.4,0.2 0.4,0.3 -0.1,0 -0.2,0.1 -0.4,0.2 -0.2,0 -0.3,0 -0.5,0 -0.2,0 -0.3,0.1 -0.1,0.2 0.1,0.1 0.4,0.1 0.5,0.1 0.2,0 0.4,0.1 0.6,0.1 0.2,0 0.4,0 0.5,0.1 0.2,0 0.4,0.1 0.5,0.2 0.2,0 0.4,0.1 0.6,0.2 0.2,0 0.4,0 0.6,0.1 0.1,0.1 0.3,0.1 0.5,0.2 0.3,0.1 0.7,0 1,0.1 0.2,0.1 0.4,0.2 0.6,0.2 0.2,0.1 0.5,0 0.7,0.1 0.3,0.1 0.7,0.2 1.1,0.4 0.3,0.1 0.6,0.2 0.8,0.4 0.3,0.3 -0.1,0.5 -0.3,0.6 -0.1,0.1 -0.3,0.1 -0.4,0.3 -0.1,0.1 -0.1,0.3 -0.1,0.5 0,0.2 0,0.3 0.1,0.5 0,0.1 0,0.3 0.1,0.4 0.1,0.2 0.4,0.2 0.5,0.3 0.1,0.1 0.2,0.2 0.3,0.4 0.1,0.3 -0.2,0.5 -0.4,0.6 -0.1,0.1 -0.3,0.1 -0.4,0.3 0,0.1 0.2,0.3 0.2,0.4 0.2,0.3 0.4,0.5 0.6,0.7 0.1,0.1 0.3,0.4 0.4,0.5 0,0.1 0.1,0.2 0.1,0.2 0,0.1 0,0.1 0.1,0.2 0.1,0.1 0.2,0.3 0,0.4 -0.1,0.1 -0.3,0 -0.4,-0.1 -0.1,0.2 0.2,0.6 0.3,0.8 0.1,0.1 0.2,0.2 0.3,0.3 0.1,0.1 0.2,0.1 0.3,0.2 0.2,0.2 0.4,0.6 0.6,0.9 0.2,0.3 0.4,0.6 0.6,0.8 0.4,0.6 1,1.2 1.5,1.7 0.3,0.3 0.6,0.7 0.8,1.1 0.1,0.3 0.2,0.6 0.4,1 0.1,0.3 0.1,0.6 0.2,0.9 0,0.3 -0.1,0.5 -0.2,0.8 0,0.3 -0.1,0.7 0,1 0,0.1 0.1,0.1 0.1,0.2 0,0.1 0,0.2 0.1,0.3 0.1,0.1 0.2,0.2 0.3,0.4 0.1,0.2 0.1,0.3 0.1,0.5 0,0.1 0,0.3 0.1,0.5 0.1,0.3 0.6,0.6 0.9,0.7 0.2,0.1 0.5,0.2 0.7,0.4 0.3,0.1 0.7,0.3 1,0.6 0.2,0.1 0.3,0.3 0.5,0.4 -0.2,0.2 -0.4,0.4 -0.5,0.7 -0.1,0.1 -0.2,0.3 -0.3,0.4 -0.1,0.1 -0.1,0.2 -0.1,0.4 -0.1,0.2 -0.1,0.4 -0.2,0.6 0,0.1 0,0.2 0,0.3 0,0.1 -0.1,0.2 -0.1,0.4 0,0.8 1.1,1.1 1.6,1.5 0.3,0.2 0.5,0.5 0.8,0.7 0.3,0.2 0.7,0.3 1,0.5 0.3,0.2 0.3,0.7 0.4,1 0,0.2 0.1,0.4 0.3,0.5 0.2,0 0.4,0 0.5,0 0.2,0 0.4,0 0.6,0 0,0 0.2,0.1 0.2,0.1 0.1,0 0.2,0.1 0.2,0.1 0.4,0.1 0.6,0.3 1,0.5 0.2,0.1 0.3,0.2 0.5,0.4 0.1,0.1 0.2,0.3 0.3,0.4 0.2,0.3 0.4,0.5 0.7,0.7 0.1,0.1 0.2,0.1 0.3,0.2 0,0.1 0,0.2 0,0.3 0,0.1 0.1,0.3 0.2,0.5 0.1,0.2 0.1,0.3 0.2,0.5 0.1,0.1 0.1,0.2 0.1,0.3 0.1,0.1 0.2,0.2 0.3,0.3 0.1,0.1 0.2,0.4 0.3,0.5 0,0.1 0,0.4 0,0.5 0,0.3 -0.5,0.4 -0.5,0.8 0,0.4 0.5,0.7 0.6,1 0.2,0.3 0.3,0.7 0.1,1.1 -0.2,0.4 -0.5,0.6 -0.9,0.8 -0.1,0 -0.1,0.1 -0.2,0.1 -0.1,-0.2 -0.3,-0.3 -0.5,-0.4 -0.2,-0.1 -0.3,0 -0.5,-0.1 -0.2,-0.1 -0.3,-0.1 -0.4,-0.2 -0.1,-0.1 -0.2,-0.2 -0.4,-0.2 -0.1,-0.1 -0.1,-0.1 -0.3,-0.1 -0.1,0 -0.2,0 -0.3,0 -0.2,0 -0.3,-0.1 -0.5,-0.1 -0.2,0 -0.3,-0.1 -0.5,-0.1 -0.2,0 -0.4,0 -0.6,0 -0.3,0 -0.5,0.1 -0.8,0.1 -0.2,0 -0.3,-0.1 -0.5,-0.1 -0.4,0 -0.9,-0.1 -1.2,-0.3 -0.3,-0.1 -0.6,-0.5 -0.9,-0.6 -0.2,-0.1 -0.3,-0.2 -0.5,-0.2 -0.3,-0.1 -0.5,0 -0.7,-0.1 -0.2,-0.1 -0.3,-0.3 -0.4,-0.4 -0.1,-0.1 -0.3,-0.2 -0.4,-0.4 -0.3,-0.3 -0.4,-0.7 -0.7,-0.9 -0.2,-0.1 -0.4,-0.3 -0.6,-0.4 -0.3,-0.2 -0.7,-0.3 -1,-0.5 -0.3,-0.2 -0.6,-0.4 -0.8,-0.7 -0.2,-0.2 -0.4,-0.3 -0.5,-0.6 -0.1,-0.2 -0.2,-0.4 -0.3,-0.5 -0.2,-0.2 -0.4,-0.5 -0.5,-0.7 -0.1,-0.2 -0.1,-0.4 -0.2,-0.5 -0.1,-0.1 -0.2,-0.3 -0.2,-0.4 -0.1,-0.2 0,-0.3 -0.2,-0.4 -0.1,-0.1 -0.3,-0.2 -0.4,-0.2 -0.2,0 -0.4,0 -0.6,0 -0.1,0 -0.3,-0.1 -0.5,-0.2 -0.4,-0.1 -0.7,0.1 -1.1,-0.1 -0.3,-0.1 -0.6,-0.3 -0.9,-0.6 -0.3,-0.3 -0.4,-0.5 -0.8,-0.5 -0.2,0 -0.4,0 -0.6,-0.1 -0.2,-0.1 -0.4,0 -0.6,0 -0.2,0 -0.5,-0.1 -0.7,-0.1 -0.1,0 -0.2,0.1 -0.3,0.1 -0.1,0 -0.3,0 -0.4,0 -0.2,0 -0.6,0.2 -0.6,0.4 -0.1,0.2 0.1,0.4 0.2,0.5 0.2,0.2 0.4,0.5 0.6,0.8 0.3,0.3 0.6,0.7 1,1 0.2,0.1 0.5,0.3 0.6,0.5 0.1,0.2 0.2,0.4 0.4,0.6 0.1,0.1 0.1,0.2 0.2,0.4 0.1,0.1 0.2,0.2 0.3,0.3 0.1,0.2 0.2,0.4 0.4,0.5 0.2,0.3 0.4,0.5 0.3,1 0,0.1 -0.1,0.2 -0.1,0.3 0,0.1 -0.1,0.2 -0.1,0.3 -0.1,0.2 -0.2,0.2 -0.2,0.4 0,0.2 0.1,0.3 0.2,0.4 0.1,0.1 0.1,0.1 0.2,0.2 0.1,0.1 0.2,0.2 0.4,0.3 0.2,0.2 0.8,0.8 0.6,1 -0.2,0.3 -0.8,-0.1 -1,-0.3 -0.1,-0.1 -0.1,-0.2 -0.2,-0.3 -0.1,-0.1 -0.1,-0.1 -0.2,-0.2 -0.1,-0.1 -0.2,-0.1 -0.4,-0.2 -0.2,-0.1 -0.4,-0.1 -0.6,-0.2 -0.2,-0.1 -0.4,-0.1 -0.6,-0.3 -0.3,-0.3 -0.1,-0.6 0,-1 0.1,-0.1 0.1,-0.3 0.1,-0.5 0.1,-0.2 0,-0.4 0,-0.6 0,-0.2 0.2,-0.4 0.1,-0.7 0,-0.1 -0.3,-0.2 -0.4,-0.2 -0.4,-0.2 -0.8,-0.3 -1.2,-0.4 -0.2,-0.1 -0.5,-0.2 -0.7,-0.2 -0.2,0 -0.4,0 -0.6,0 -0.2,0 -0.4,0 -0.6,0 -0.2,0 -0.3,-0.1 -0.5,-0.1 -0.5,0 -0.4,0.3 -0.4,0.7 V 58 c 0,0.2 0.1,0.3 -0.2,0.4 -0.1,0 -0.3,-0.1 -0.3,0 0,0 0,0.2 0,0.3 0,0.1 -0.1,0.2 -0.1,0.3 0,0.1 0,0.2 0,0.3 0,0.2 -0.2,0.3 -0.2,0.4 -0.1,0.2 0.1,0.5 0.1,0.8 0,0.2 -0.1,0.4 -0.1,0.6 0,0.2 0.1,0.3 0.1,0.5 0,0.4 0.1,0.9 0.4,1.2 0.1,0.2 0.3,0.3 0.4,0.5 0.2,0.1 0.3,0.2 0.5,0.3 0.3,0.2 0.4,0.5 0.3,0.9 -0.5,-0.2 -1,-0.4 -1.6,-0.5 -0.1,0 -0.1,-0.1 -0.2,-0.1 -0.1,0 -0.1,0 -0.2,0 -0.2,0 -0.3,-0.1 -0.5,-0.1 -0.3,-0.1 -0.8,-0.3 -0.7,0.3 0,0.2 0.2,0.5 0.3,0.6 0.1,0.2 0.3,0.5 0.4,0.7 0.1,0.1 0.1,0.2 0.2,0.4 0.1,0.2 0.2,0.4 0.3,0.6 0.1,0.2 0.1,0.3 0.1,0.4 0,0.1 0.1,0.1 0.1,0.2 0,0.1 0,0.1 0,0.2 0,0.2 -0.1,0.3 -0.1,0.4 0,0.1 0,0.3 0,0.5 0,0.1 -0.2,0.2 -0.2,0.4 -0.1,0.2 -0.2,0.3 -0.3,0.4 -0.2,0.3 -0.4,0.4 -0.8,0.4 -0.3,0 -0.6,0.3 -1,0.3 -0.1,0 -0.3,0 -0.4,0 -0.1,0 -0.2,0.1 -0.4,0.2 -0.3,0 -0.6,0 -0.9,0 -0.1,0 -0.3,0 -0.4,0 -0.1,0 -0.4,0 -0.5,0.1 -0.1,0.1 0.1,0.6 0.3,0.6 l -0.2,0.2 c -0.2,0.1 0.2,0.4 0.3,0.5 0.2,0.2 0.3,0.4 0.5,0.5 0.4,0.3 0.8,0.5 1.3,0.7 0.1,0.1 0.2,0.1 0.4,0.2 0.1,0 0.2,0.1 0.3,0.2 0.1,0 0.2,0.1 0.3,0.1 0.1,0 0.2,0.1 0.4,0.1 0.4,0.1 0.8,0 1.1,0 0.3,0 0.6,0.2 0.9,0.3 0.3,0.1 0.5,0.1 0.8,0.2 0.1,0 0.2,0.1 0.4,0.1 0.1,0 0.3,0 0.4,0 0.2,0 0.5,0.1 0.7,0.2 0.1,0 0.2,0 0.4,0 0.2,0 0.5,0.1 0.7,0.2 0.2,0.1 0.4,0.1 0.6,0.1 0.2,0 0.3,0.1 0.5,0.1 0.2,0 0.3,0 0.5,0 0.1,0 0.2,0.1 0.4,0.1 0.3,0.1 0.7,0.2 1,0.3 0.2,0.1 0.5,0.2 0.7,0.3 0.2,0.1 0.1,0.3 0.3,0.5 0.1,0.2 0.1,0.1 0.4,0.2 0.2,0 0.3,0.1 0.4,0.1 0.2,0 0.4,0 0.5,0 h 1.2 c 0.2,0 0.4,0 0.6,0 0.3,0 0.7,-0.1 1,-0.2 0.3,0 0.5,-0.1 0.8,-0.1 0.2,0 0.3,0 0.5,0 0.5,0 1,0.3 1.5,0.3 0.2,0 0.4,-0.1 0.7,-0.1 0.2,0 0.4,0 0.6,0 0.4,0 0.8,0 1.2,0 0.4,0 0.8,-0.1 1.2,-0.2 0.4,-0.1 0.6,0 1,0.1 0.3,0 0.6,0 0.9,0 0.2,0 0.3,-0.1 0.5,-0.1 0.2,0 0.3,0 0.6,-0.2 0.1,-0.1 0.3,-0.2 0.4,-0.3 0.1,0.1 0.2,0.1 0.3,0.2 0.4,0.2 0.7,0.4 1.2,0.6 0.3,0.1 0.6,0.4 0.9,0.5 0.3,0.2 0.7,0.3 0.9,0.6 0.2,0.2 0.4,0.4 0.6,0.6 0.1,0.1 0.3,0.2 0.4,0.3 0.2,0.1 0.3,0.3 0.4,0.4 0.3,0.2 0.6,0.4 1,0.6 0.1,0.1 0.2,0.2 0.3,0.3 0.1,0.1 0.2,0.2 0.4,0.3 0.2,0.2 0.4,0.5 0.5,0.7 0.2,0.3 0.4,0.5 0.8,0.4 0.2,-0.1 1,-0.3 0.7,0.2 -0.2,0.3 -0.3,0.6 -0.5,0.8 -0.1,0.1 -0.1,0.3 -0.2,0.4 -0.1,0.2 -0.2,0.3 -0.4,0.4 -0.3,0.3 -0.3,0.6 -0.1,1 0.1,0.2 0.2,0.4 0.3,0.5 0,0.1 0.1,0.1 0.1,0.1 0.1,0.1 0,0.2 0.1,0.3 0.1,0.2 0.2,0.5 0.4,0.7 0.2,0.2 0.6,0.2 0.9,0.2 0.4,0 0.9,0.1 1.3,0 0.2,0 0.5,-0.2 0.7,-0.2 0.4,-0.1 0.7,-0.2 1.1,-0.2 0.5,-0.1 0.9,-0.2 1.4,-0.3 0.2,0 0.4,-0.1 0.6,-0.1 0.2,-0.1 0.5,-0.1 0.7,-0.2 0.2,-0.1 0.3,-0.1 0.5,-0.1 0.2,0 0.3,0.1 0.4,0.1 0.5,0 0.8,-0.4 1.2,-0.6 0.3,-0.2 0.5,-0.3 0.8,-0.3 0.2,0 0.3,0 0.5,0 0.2,-0.1 0.3,-0.1 0.5,-0.1 0.1,0 0.2,-0.1 0.3,-0.1 0.1,0 0.2,0 0.4,0 0.1,0 0.1,-0.1 0.2,-0.1 0.1,0 0.2,0 0.3,0 0.1,0 0.1,-0.1 0.2,-0.1 0.1,0 0.2,0 0.3,0 0.3,0 0.6,-0.1 0.8,-0.2 0.3,-0.1 0.6,0 0.9,0 0.2,0 0.3,-0.1 0.5,-0.1 0.1,0 0.3,0 0.4,0 0.1,0 0.2,-0.1 0.3,-0.1 0.1,0 0.2,0 0.3,0 0.4,-0.1 0.8,-0.3 1.1,0.2 0.2,0.3 0.3,0.6 0.6,0.8 0.1,0 0.1,0.1 0.2,0.1 0.1,0.1 0.2,0.1 0.3,0.2 0.2,0.1 0.3,0.2 0.5,0.3 0.2,0.1 0.3,0.2 0.4,0.3 0,0 0.1,0.1 0.2,0.1 0.1,0 0.2,0 0.3,0 0.1,0 0.1,0.1 0.2,0.1 0.1,0 0.2,0 0.3,0 0.1,0 0.1,0.1 0.3,0.1 0.1,0 0.3,0 0.4,0 0.3,-0.1 0.8,-0.3 0.8,-0.6 0,-0.2 0,-0.4 0,-0.5 0,-0.2 0.2,-0.3 0.2,-0.4 0.7,-0.1 0.7,-0.7 0.5,-1.3 -0.1,-0.3 -0.3,-0.5 -0.2,-0.8 0,-0.2 0.2,-0.5 0.4,-0.6 0.1,-0.1 0.2,-0.1 0.4,-0.1 0.2,0 0.3,-0.1 0.5,-0.2 0.2,0.1 0.3,0.1 0.5,0.2 0.1,0 0.3,0 0.4,0.1 0.2,0.1 0.3,0.2 0.5,0.4 0.2,0.2 0.4,0.4 0.7,0.6 0.1,0.1 0.3,0.2 0.4,0.3 0.2,0.1 0.4,0.2 0.5,0.3 0.1,0.1 0.3,0.1 0.4,0.2 0.1,0 0.2,0.1 0.3,0.2 0.2,0.2 0.3,0.4 0.5,0.6 0.2,0.2 0.3,0.5 0.4,0.8 0.1,0.1 0.2,0.2 0.3,0.3 0.1,0.2 0.3,0.3 0.5,0.3 0.1,0 0.3,0.1 0.3,0.3 0,0.1 0.1,0.1 0.1,0.2 0.1,0.1 0.1,0 0.1,0.1 0.3,0.2 0.5,0.3 0.8,0.5 0.3,0.2 0.4,0.4 0.6,0.6 0.1,0.2 0.4,0.3 0.6,0.5 0.2,0.2 0.3,0.3 0.5,0.4 0.2,0.1 0.5,0.1 0.8,0.2 0.3,0.2 0.8,0.1 1.1,0.3 0.2,0.1 0.4,0.2 0.6,0.4 0.1,0.1 0.2,0.2 0.2,0.2 0.1,0.1 0.1,0.2 0.1,0.3 0.2,0.3 0.4,-0.1 0.6,0 0.1,0 0.1,0.2 0.2,0.3 0.1,0.2 0.2,0.2 0.3,0.2 0.4,0.1 0.7,0.4 1,0.6 0.2,0.1 0.2,0.3 0.4,0.5 0.2,0.2 0.5,0.2 0.6,0.4 0.1,0.2 0.1,0.4 0.2,0.6 0.1,0.3 0.4,0.4 0.6,0.6 0.2,0.2 0.4,0.4 0.5,0.6 0.1,0.1 0.1,0.2 0.2,0.3 0.1,0.1 0.1,0.2 0.2,0.2 0,0 0.1,0 0.1,0.1 0.1,0.1 0.1,0.1 0.1,0.2 0.1,0.1 0.2,0.2 0.4,0.3 0.1,0.1 0.2,0.2 0.3,0.3 0.1,0.1 0.2,0.1 0.3,0.2 -0.1,0 -0.3,-0.1 -0.4,-0.1 -0.1,0.1 0.1,0.2 0.1,0.2 0.1,0.1 0.2,0.2 0.2,0.3 0,0 0.1,0.1 0.1,0.1 0.1,0.1 0.1,0.1 0.2,0.2 0.2,0.2 0.4,0.4 0.6,0.6 0.2,0.1 0.4,0.2 0.5,0.4 0.1,0.1 0.3,0.3 0.4,0.4 0.1,0.1 0.2,0.2 0.3,0.3 0.1,0.1 0.1,0.3 0.2,0.4 0.1,0.3 0.2,0.6 0.3,0.8 0.1,0.2 0.1,0.5 0.2,0.7 0.1,0.3 0.2,0.6 0.4,0.8 0.1,0.1 0.4,0.5 0.2,0.5 -0.1,0 -0.3,0 -0.4,0 -0.1,-0.1 -0.2,-0.2 -0.3,-0.2 -0.1,0 -0.2,0.1 -0.3,0.1 -0.1,0.1 -0.1,0.2 -0.2,0.3 -0.1,0.1 -0.2,0 -0.3,-0.1 -0.1,-0.1 -0.2,-0.3 -0.3,-0.4 -0.1,-0.1 -0.2,-0.1 -0.3,-0.2 -0.1,-0.1 -0.2,-0.2 -0.3,-0.3 -0.1,-0.1 -0.2,-0.2 -0.3,-0.3 -0.1,-0.1 -0.1,-0.3 -0.2,-0.4 -0.1,-0.1 -0.4,-0.4 -0.5,-0.3 -0.1,0 -0.1,0.1 -0.1,0.3 0,0.2 0.1,0.4 0.2,0.6 0.1,0.2 0.2,0.4 0.3,0.6 0.1,0.1 0.1,0.2 0.2,0.3 0.1,0.1 0.2,0.3 0.3,0.4 0.2,0.3 0.3,0.6 0.5,0.9 0.1,0.2 0.2,0.3 0.4,0.5 0.2,0.2 0.5,0.4 0.7,0.7 0.4,0.4 0.9,0.8 1.4,1.1 0.2,0.1 0.3,0.2 0.5,0.2 0,0 0.1,0.1 0.1,0.1 0.1,0.1 0.1,0.2 0.1,0.3 0.1,0.1 0.1,0.1 0.2,0.2 0.1,0.1 0.2,0.3 0.2,0.4 0.1,0.2 0.2,0.6 0.4,0.8 0.2,0.2 0.6,0 0.7,0.3 0.1,0.1 0.2,0.3 0.3,0.4 0.1,0.1 0.1,0.4 0.3,0.4 0.1,0 0.2,0.1 0.4,0.1 0.2,0 0.2,0 0.3,-0.1 0.3,-0.2 0.5,-0.1 0.6,0.3 0.1,0.3 0.1,0.7 0,1 0,0.2 0,0.4 0.1,0.5 0,0.1 0.1,0.2 0.1,0.3 0,0.1 0,0.3 0.1,0.4 0.2,0.4 0.4,0.8 0.7,1.2 0.3,0.3 0.6,0.6 1,0.8 0,0.1 0,0.1 -0.1,0.2 -0.1,0.2 -0.2,0.2 -0.4,0.2 -0.3,0.1 -0.8,0.1 -1.1,0.1 -0.3,0 -0.6,-0.2 -0.9,-0.2 -0.2,0 -0.4,-0.1 -0.6,-0.1 -0.4,-0.1 -0.8,-0.1 -1.2,-0.1 -0.3,0 -0.4,-0.1 -0.7,-0.1 -0.2,0 -0.5,0 -0.7,0 -0.3,0 -0.5,-0.1 -0.7,-0.1 -0.3,0 -0.5,0 -0.8,0 -0.2,0 -0.4,-0.1 -0.6,0 -0.1,0 -0.2,0.1 -0.3,0.1 -0.2,0 -0.4,0 -0.6,0 -0.3,0 -0.4,0.1 -0.7,0.1 -0.2,0 -0.3,0 -0.4,0.3 -0.1,0.5 0.1,1 0.3,1.5 0.1,0.4 0.4,0.8 0.6,1.3 0.1,0.3 0.2,0.5 0.3,0.8 0,0.1 0,0.2 0,0.3 0,0.1 0.1,0.2 0.1,0.3 0,0.1 0,0.2 0,0.3 0,0.1 0.1,0.2 0.1,0.4 0,0.2 0,0.4 0.1,0.6 0.1,0.4 0.3,0.9 0.5,1.3 0.2,0.3 0.4,0.6 0.5,1 0,0.2 0,0.4 0.1,0.7 0.1,0.1 0.2,0.3 0.2,0.4 0.2,0.3 0.2,0.7 0.4,1.1 0.1,0.2 0.1,0.3 0.3,0.4 0.2,0.1 0.3,0.3 0.4,0.5 0.2,0.3 0.4,0.7 0.5,1 0.2,0.4 0.3,0.7 0.5,1.1 0.1,0.1 0.2,0.3 0.1,0.5 0,0.1 -0.1,0.1 -0.1,0.2 0,0.1 0.1,0.2 0,0.3 -0.2,0.2 -0.4,-0.1 -0.5,-0.2 -0.2,-0.2 -0.3,-0.4 -0.4,-0.6 -0.1,-0.2 -0.1,-0.3 -0.1,-0.5 0,-0.1 -0.2,-0.3 -0.2,-0.4 -0.1,-0.2 -0.1,-0.4 -0.1,-0.6 -0.1,-0.2 -0.2,-0.3 -0.3,-0.5 -0.1,-0.2 -0.3,-0.2 -0.4,-0.3 -0.2,-0.1 -0.3,-0.2 -0.5,-0.3 0.1,0.1 0,0.2 0.1,0.4 0,0.1 0.1,0.2 0.1,0.3 0.1,0.2 0.2,0.3 0.2,0.5 0.3,0.4 0.6,0.7 1,1.1 0.2,0.2 0.3,0.6 0.4,0.9 0.1,0.1 0.1,0.3 0.2,0.5 0,0.2 0,0.4 0,0.6 0,0.1 0.1,0.1 0.1,0.3 0,0.1 0,0.2 0,0.3 0,0.3 -0.1,0.2 -0.4,0.2 -0.2,0 -0.4,0 -0.6,-0.1 -0.1,-0.1 -0.2,-0.2 -0.3,-0.3 -0.7,-0.5 -1.5,-1.1 -1.5,-2 0,-0.4 0,-0.9 -0.1,-1.3 -0.1,-0.2 -0.2,-0.4 -0.4,-0.5 -0.1,-0.1 -0.3,-0.2 -0.3,-0.3 -0.1,-0.1 -0.1,-0.2 -0.1,-0.3 -0.1,-0.2 -0.3,-0.4 -0.3,-0.6 -0.1,-0.2 -0.2,-0.4 -0.3,-0.6 -0.1,-0.2 -0.2,-0.3 -0.3,-0.5 -0.1,-0.1 -0.2,-0.2 -0.2,-0.3 0,-0.1 0,-0.2 -0.1,-0.2 -0.1,-0.2 -0.1,-0.3 -0.1,-0.6 0,-0.2 0,-0.3 -0.1,-0.5 -0.1,-0.1 -0.1,-0.3 -0.2,-0.4 -0.1,-0.1 -0.1,-0.1 -0.2,-0.1 -0.1,-0.1 -0.1,-0.1 -0.2,-0.2 -0.2,-0.3 -0.4,-0.7 -0.5,-1.1 0,-0.2 0,-0.4 -0.1,-0.5 -0.1,-0.1 -0.2,-0.2 -0.3,-0.3 -0.3,-0.3 -0.4,-0.5 -0.5,-0.9 -0.2,-0.3 -0.4,-0.6 -0.5,-0.9 -0.3,-0.6 -0.5,-1.3 -1.2,-1.7 -0.2,-0.1 -0.4,-0.2 -0.6,-0.3 -0.1,0 -0.3,-0.2 -0.4,-0.2 -0.4,-0.1 -0.8,0.3 -0.9,0.7 -0.1,0.2 0,0.5 0,0.7 0,0.2 -0.1,0.3 -0.2,0.5 -0.1,0.2 -0.1,0.4 -0.2,0.6 -0.1,0.1 -0.2,0.2 -0.3,0.3 -0.3,0.3 -0.4,0.7 -0.7,1.1 -0.1,0.1 -0.3,0.2 -0.3,0.3 -0.1,0.2 -0.1,0.3 -0.2,0.5 -0.1,0.4 -0.5,0.8 -0.9,1.1 -0.3,0.2 -0.6,0.5 -0.9,0.7 -0.1,0.1 -0.3,0.2 -0.4,0.4 -0.2,0.2 -0.2,0.3 -0.4,0.5 -0.2,0.1 -0.4,0.2 -0.6,0.3 -0.2,0.1 -0.3,0.3 -0.5,0.4 -0.3,0.2 -0.8,0.3 -0.9,0.7 0,0.1 0,0.2 0,0.3 0,0.1 -0.1,0.2 -0.1,0.3 0,0.2 0,0.2 0,0.3 -0.4,0.2 -0.7,0.4 -1,0.7 -0.3,0.3 -0.4,0.6 -0.7,0.9 -0.1,0.2 -0.2,0.2 -0.2,0.4 0,0.1 -0.1,0.2 -0.2,0.4 -0.1,0.2 0,0.5 0,0.7 0,0.2 0.1,0.4 0.2,0.6 0,0.2 0.1,0.3 0.1,0.5 0.1,0.3 0.2,0.8 0.1,1.2 0,0.2 -0.1,0.7 -0.5,0.7 0,0.5 -0.7,0.8 -1,1.1 -0.2,0.1 -0.4,0.3 -0.3,0.5 0,0.1 0.2,0.2 0.3,0.3 0.3,0.3 0.6,0.4 0.9,0.6 0.2,0.1 0.5,0.2 0.7,0.4 0.2,0.1 0.3,0.3 0.5,0.4 0.2,0.1 0.5,0.2 0.4,0.4 0,0.1 -0.1,0.1 -0.2,0.1 0,0 -0.1,0.2 -0.1,0.3 -0.1,0.4 0.2,0.6 0.4,1 0.2,0.3 0.3,0.6 0.4,1 0.1,0.4 -0.1,0.7 0,1.2 0,0.1 0.1,0.2 0.1,0.3 0,0.1 0,0.2 0,0.3 0,0.4 0.2,0.6 0.6,0.8 0.2,0.1 0.3,0.2 0.5,0.3 0.2,0 0.4,0 0.6,0 0.2,0 0.3,0.1 0.5,0.2 0.2,0.2 0.1,0.3 0.1,0.5 0.2,0.5 0.7,0.6 0.9,1.1 0.1,0.5 0.3,0.9 0.4,1.4 0.1,0.4 0.1,0.8 0.3,1.2 0.1,0.2 0.1,0.4 0.2,0.6 0.1,0.2 0.2,0.3 0.3,0.5 0.2,0.4 0.4,0.8 0.5,1.3 0,0.2 0,0.4 0,0.6 0,0.2 0.1,0.4 0.1,0.6 0,0.4 0.2,0.7 0.5,1 0.3,0.3 0.4,0.5 0.2,0.9 -0.1,0.1 -0.1,0.4 -0.2,0.5 -0.2,0.1 -0.3,-0.1 -0.5,0.1 -0.2,0.2 0.1,0.7 0.1,1 0,0.4 0.1,0.9 0,1.3 0,0.1 -0.1,0.1 -0.1,0.2 0,0.1 0,0.2 0,0.3 0,0.1 -0.1,0.1 -0.1,0.2 -0.2,0.1 -0.5,0.3 -0.7,0.4 -0.6,0.5 -1.1,1.2 -1.9,1.5 -0.6,0.3 -1.9,0.3 -2.3,-0.3 -0.2,0.2 -0.7,0.1 -0.9,0.1 -0.4,0 -0.6,0 -0.9,0.2 -0.3,0.2 -0.4,0.3 -0.7,0.4 -0.3,0 -0.6,0 -0.9,0 -0.1,0 -0.2,0 -0.3,0 -0.2,-0.1 -0.4,-0.3 -0.5,-0.3 -0.2,-0.1 -0.5,-0.1 -0.8,0 -0.1,0 -0.2,0 -0.3,-0.1 l -0.2,0.4 c -0.6,0.5 -0.8,1.2 -1.1,1.8 l -1,1.8 c -0.1,0 -0.1,0.1 -0.2,0.1 -0.4,0.2 -0.8,0.5 -1.2,0.6 -0.3,0.1 -0.6,0 -0.9,0 -0.3,0 -0.3,-0.1 -0.5,-0.2 -0.3,-0.2 -0.4,-0.3 -0.6,-0.6 -0.1,-0.2 -0.3,-0.4 -0.4,-0.6 -0.2,-0.2 -0.2,-0.5 -0.4,-0.7 -0.2,-0.3 -0.3,-0.5 -0.5,-0.9 -0.1,-0.3 -0.1,-0.6 -0.3,-0.8 -0.1,-0.2 -0.2,-0.4 -0.3,-0.6 -0.2,-0.6 -0.3,-1.2 -0.4,-1.8 0,-0.1 0,-0.3 0,-0.4 0,-0.2 0,-0.4 0,-0.6 0,-0.1 0,-0.1 -0.1,-0.2 0,-0.1 0.1,-0.2 0.1,-0.3 0,-0.1 0,-0.3 0,-0.4 0.1,-0.2 0.2,-0.5 0.3,-0.8 0,-0.2 0,-0.3 0,-0.5 0,-0.2 0.1,-0.2 0.1,-0.4 0,-0.6 -0.1,-1 -0.6,-1.4 -0.2,-0.2 -0.3,-0.4 -0.3,-0.6 0,-0.1 0,-0.2 0,-0.4 0,-0.1 -0.2,-0.3 -0.2,-0.4 0,-0.1 0.1,-0.1 0.1,-0.2 0,-0.1 0,-0.4 0,-0.5 0,-0.3 0,-0.5 0.1,-0.8 0.1,-0.5 0.4,-1 0.5,-1.5 0.1,-0.5 0.2,-1 0.5,-1.6 0.1,-0.3 0.2,-0.6 0.3,-0.9 0.1,-0.2 0.2,-0.6 0.1,-0.8 -0.1,-0.1 -0.5,-0.1 -0.6,-0.2 -0.2,-0.1 -0.5,-0.3 -0.6,-0.5 -0.1,-0.3 0.3,-0.6 0.1,-0.9 -0.1,-0.2 -0.4,-0.3 -0.6,-0.4 -0.4,-0.2 -0.7,-0.7 -1,-1 -0.4,-0.4 -0.7,-0.5 -1.2,-0.6 -0.1,0 -0.1,-0.1 -0.3,-0.1 -0.1,0 -0.3,0 -0.4,0 -0.3,-0.1 -0.6,-0.1 -0.9,-0.1 -0.6,0 -1.2,-0.1 -1.8,0.2 -0.2,0.1 -0.2,0.1 -0.4,0.1 -0.1,0 -0.4,0.1 -0.5,0 -0.1,0 -0.1,-0.1 -0.2,-0.1 -0.1,0 -0.3,0 -0.4,0 -0.7,-0.1 -1.2,-0.4 -1.8,-0.7 -0.5,-0.3 -1,-0.6 -1.4,-1.1 -0.3,-0.4 -0.4,-0.8 -0.7,-1.2 -0.2,-0.2 -0.3,-0.4 -0.5,-0.6 -0.2,-0.2 -0.3,-0.2 -0.5,-0.4 -0.3,-0.2 -0.6,-0.6 -1,-0.9 -0.2,-0.2 -0.5,-0.4 -0.7,-0.6 -0.2,-0.2 -0.2,-0.5 -0.5,-0.6 -0.2,-0.1 -0.4,-0.2 -0.6,-0.3 -0.4,-0.3 -0.8,-0.6 -1.3,-0.9 -0.5,-0.3 -0.6,-0.8 -1.1,-1.1 -0.9,-0.5 -1.5,-1.2 -2.1,-2 -0.3,-0.3 -0.6,-0.6 -0.7,-1 0,-0.1 0,-0.2 0,-0.4 0,-0.1 -0.1,-0.1 -0.1,-0.2 -0.1,-0.2 0,-0.6 0,-0.8 0,-0.3 0.1,-0.9 0,-1.1 -0.1,-0.2 -0.2,-0.3 -0.4,-0.4 -0.4,-0.4 -0.8,-0.9 -1.2,-1.3 -0.2,-0.2 -0.4,-0.4 -0.6,-0.6 -0.1,-0.2 -0.3,-0.3 -0.5,-0.5 -0.5,-0.4 -0.9,-0.9 -1.2,-1.3 -0.4,-0.4 -0.4,-1 -0.8,-1.4 -0.3,-0.4 -0.7,-0.6 -1,-0.9 -0.4,-0.3 -0.8,0.2 -1.1,0.5 -0.4,0.4 -0.9,0.8 -1.4,1 -0.5,0.2 -0.9,0.7 -1.2,1.1 -0.2,0.2 -0.2,0.3 -0.5,0.3 -0.2,0 -0.6,-0.2 -0.7,-0.3 -0.3,-0.4 -0.3,-1.3 -0.2,-1.8 0,-0.1 0.2,-0.3 0.2,-0.4 0,-0.2 0.1,-0.3 0.1,-0.5 0.1,-0.3 0.2,-0.5 0.3,-0.8 0.2,-0.5 0.4,-1.1 0.6,-1.6 0,-0.1 0.1,-0.2 0.1,-0.3 0,-0.1 0.1,-0.2 0.1,-0.3 0.1,-0.2 0.2,-0.5 0.3,-0.7 0.2,-0.6 0,-1 -0.5,-1.3 -0.5,-0.3 -0.9,-0.3 -1.4,-0.3 -0.3,0 -0.5,-0.1 -0.8,-0.1 -0.3,-0.1 -0.6,0 -0.9,0 h -1.8 c -0.6,0 -1.3,0.1 -1.8,-0.1 -0.3,-0.1 -0.4,-0.2 -0.8,-0.3 -0.2,0 -0.5,0.1 -0.7,-0.1 -0.3,0.1 -0.8,0.2 -1.1,0.4 -0.2,0.1 -0.7,0.6 -0.9,0.6 0,-0.1 0,-0.2 0,-0.2 -0.3,-0.1 -0.6,0 -0.9,0.1 -0.1,0 -0.2,0.1 -0.4,0.1 -0.1,0 -0.3,0 -0.4,0 -0.3,0 -0.6,0.3 -0.8,0 -0.1,-0.1 -0.1,-0.5 -0.2,-0.7 -0.1,-0.2 0,-0.3 0.1,-0.5 0,-0.1 0,-0.3 0,-0.4 0.1,-0.3 0.2,-0.6 0.2,-1 0.1,-0.7 -0.3,-1.3 -0.4,-1.9 -0.2,0.1 -0.4,0.1 -0.6,0.1 -0.2,0 -0.6,0.1 -0.8,0.2 -0.4,0.1 -0.8,0.2 -1.2,0.4 -0.2,0.1 -0.4,0.3 -0.6,0.4 -0.2,0.1 -0.5,0.1 -0.7,0.2 -0.4,0.1 -0.8,0.2 -1.1,0.3 -0.6,0 -1.1,-0.3 -1.7,-0.3 -0.3,0 -0.6,0.1 -0.9,0.3 -0.4,0.2 -0.5,0.4 -0.8,0.7 -0.2,0.3 -0.6,0.5 -0.9,0.8 -0.4,0.3 -0.5,0.8 -0.9,1.1 -0.2,0.2 -0.3,0.3 -0.4,0.5 -0.1,0.3 -0.1,0.5 -0.1,0.8 0,0.5 0.1,1 0.3,1.4 0.2,0.5 0.3,1 0.4,1.5 0.1,0.3 0.1,0.6 0.1,0.9 0,0.3 0.2,0.6 0.1,0.9 -0.2,0.6 -1,0.4 -1.4,0.2 -0.3,-0.2 -0.4,-0.5 -0.6,-0.8 -0.1,-0.1 -0.2,-0.2 -0.2,-0.3 -0.1,-0.1 -0.1,-0.2 -0.2,-0.4 -0.1,-0.2 -0.5,-0.6 -0.8,-0.7 -0.3,0 -0.6,0.2 -0.9,0.3 -0.3,0.1 -0.7,0 -1,0 -0.3,0 -0.5,0.1 -0.7,0.2 -0.3,0.2 -0.4,0.3 -0.6,0.6 -0.2,0.2 -0.3,0.3 -0.4,0.5 -0.1,0.2 -0.2,0.5 -0.3,0.7 -0.1,0.3 -0.3,0.4 -0.4,0.6 -0.1,0.2 -0.2,0.4 -0.3,0.6 -0.1,0.3 -0.3,0.7 -0.4,1 -0.1,0.4 -0.1,0.9 -0.1,1.3 0,0.3 0,0.6 -0.1,0.9 0,0.1 -0.1,0.2 -0.2,0.2 -0.2,0.1 -0.1,-0.1 -0.3,-0.1 -0.2,0 -0.4,0 -0.5,0.2 0,0.2 0,0.4 0,0.5 0,0.1 -0.1,0.2 -0.1,0.3 -0.1,0.3 0.1,0.6 0.1,0.9 -0.1,0.5 -0.3,1 -0.9,1 -0.4,0.1 -0.6,0.1 -0.8,0.4 -0.1,0.2 -0.3,0.4 -0.3,0.6 0.1,0.5 0.3,1.1 0.6,1.5 0.2,0.5 0.5,1 0.4,1.6 -0.1,0.2 -0.2,0.4 -0.1,0.6 0,0.1 0.1,0.1 0.2,0.2 0.1,0.1 0.1,0.2 0.1,0.3 0.2,0.3 0.4,0.4 0.6,0.7 0.2,0.4 0.2,0.7 0.6,0.9 0.2,0.2 0.4,0.2 0.7,0.3 0.3,0.1 0.5,0.3 0.8,0.5 0.2,0.2 0.5,0.3 0.7,0.5 0.2,0.1 0.4,0.1 0.7,0.1 0.6,0 0.9,0.4 1.5,0.4 0.7,0 1.4,-0.3 2.1,-0.3 0.5,0 1.1,-0.1 1.5,0 0.5,0.1 1,0.4 1.4,0.6 0.3,0.1 0.6,0.2 0.9,0.4 0.1,0.1 0.2,0.3 0.4,0.4 0.4,0.4 0.9,0.7 1.2,1.1 0.1,0.2 0.3,0.3 0.5,0.4 0.2,0.2 0.3,0.5 0.5,0.8 0.3,0.4 0.8,0.7 1.2,1 0.5,0.4 0.9,0.8 1.4,1.1 0.5,0.4 1,0.8 1.4,1.3 0.5,0.5 1,0.9 1.5,1.4 0.6,0.8 1.5,1.5 2.1,2.3 0.3,0.4 0.5,0.8 0.5,1.3 0,0.3 0,0.5 0.1,0.8 0.2,0.4 0.2,0.4 0,0.8 -0.2,0.4 -0.3,0.6 0,1 0.1,0.2 0.4,0.3 0.4,0.5 0.2,0.6 -0.2,0.9 -0.8,0.8 -0.2,0 -0.2,-0.1 -0.4,-0.1 -0.1,0 -0.3,0 -0.4,0 -0.3,0 -0.5,0.1 -0.8,0.2 -0.5,0.1 -1,0.2 -1.2,0.7 -0.1,0.2 -0.1,0.1 0,0.3 0,0.1 0.1,0.3 0.1,0.4 0.1,0.2 0.3,0.3 0.5,0.5 0.2,0.3 0.3,0.5 0.2,0.8 -0.1,0.3 -0.3,0.4 -0.3,0.6 -0.1,0.2 -0.1,0.6 0,0.9 0,0.3 0.1,0.4 0.1,0.6 0,0.4 -0.1,0.9 -0.5,1.1 -0.1,0 -0.3,-0.1 -0.4,-0.1 -0.3,0 -0.5,0.1 -0.8,0.1 -0.3,0 -0.6,0 -0.9,0 -0.1,0 -0.3,0 -0.4,0 -0.1,0 -0.1,-0.1 -0.2,-0.1 -0.2,-0.1 -0.6,0 -0.8,0 -0.4,0 -0.9,-0.1 -1.1,-0.5 -0.1,-0.1 0,-0.2 0,-0.4 0,-0.1 -0.1,-0.2 -0.1,-0.2 -0.1,-0.3 -0.3,-0.4 -0.5,-0.7 -0.1,-0.2 -0.2,-0.5 -0.3,-0.6 -0.1,-0.3 -0.3,-0.5 -0.4,-0.8 -0.1,-0.2 -0.1,-0.5 -0.2,-0.7 0,-0.2 -0.2,-0.4 -0.2,-0.6 -0.1,-0.6 0,-1.2 0.3,-1.7 0.1,-0.3 0.2,-0.3 0.2,-0.6 0,-0.3 0,-0.5 -0.1,-0.7 -0.2,-0.4 -0.7,-0.4 -1.1,-0.6 -0.2,-0.1 -0.5,-0.2 -0.7,-0.4 -0.2,-0.1 -0.3,-0.3 -0.5,-0.4 -0.4,-0.2 -0.8,-0.4 -1.2,-0.6 -0.4,-0.2 -1,-0.3 -1.5,-0.5 -0.3,-0.1 -0.6,-0.2 -0.8,-0.2 -0.3,0 -0.7,0.1 -0.9,0 -0.1,0 -0.1,-0.1 -0.2,-0.1 -0.2,0 -0.4,0 -0.5,0 -0.2,0 -0.2,-0.1 -0.4,-0.1 -0.1,0 -0.4,0 -0.5,0 -0.6,0 -1,0.7 -1.4,1.1 -0.3,0.3 -0.4,0.3 -0.7,0.1 -0.3,-0.2 -0.6,-0.3 -0.9,-0.2 -0.4,0 -0.8,0.1 -1.2,0.1 -0.4,0 -0.6,0.2 -0.9,0.4 -0.3,0.1 -0.6,0.1 -0.9,0.2 -0.2,0 -0.3,0.1 -0.5,0.1 -0.2,0 -0.4,-0.1 -0.5,-0.1 -0.3,-0.1 -1,-0.1 -1.3,0 -0.2,0 -0.3,0.1 -0.5,0.1 -0.2,0 -0.4,0 -0.6,0.1 -0.8,0.2 -2,0.1 -2.7,0.8 -0.2,0.2 -0.3,0.6 -0.4,0.8 0,0.1 0,0.1 -0.1,0.2 -0.1,0 -0.1,0 -0.2,0.1 -0.1,0.1 -0.1,0.1 -0.2,0.2 0,0.2 0,0.4 0,0.5 0,0.3 0.1,0.4 0.2,0.6 0.1,0.2 0.1,0.3 -0.1,0.4 -0.3,0.2 -0.5,0.3 -0.6,0.7 0,0.3 0,0.4 0.2,0.6 0.2,0.3 0.3,0.3 0.1,0.6 0,0.1 -0.1,0.1 -0.2,0.2 0,0.1 0,0.3 0,0.4 0,0.3 -0.1,0.6 0,0.9 0.1,0.2 0.2,0.5 0.3,0.7 0.1,0.3 0,0.5 0.1,0.8 0.1,0.2 0.3,0.4 0.4,0.6 0.1,0.2 0.2,0.5 0.1,0.7 -0.1,0.2 -0.2,0.2 -0.2,0.4 0,0.1 0.1,0.1 0.2,0.2 0.1,0.1 0.1,0.2 0.1,0.3 0.1,0.2 0.1,0.4 0.1,0.6 0,0.1 0.1,0.2 0.1,0.3 0,0.2 0,0.2 -0.1,0.4 0,0.1 0,0.3 0,0.4 0,0.2 -0.2,0.2 -0.1,0.4 0,0.1 0.1,0.1 0.1,0.2 0,0.1 0.1,0.3 0.1,0.4 0.1,0.3 0.1,0.5 0.2,0.8 0.1,0.6 0.1,1.2 0.1,1.8 0,0.3 0.1,0.6 0,0.9 -0.1,0.3 -0.1,0.5 -0.1,0.8 0,0.6 0,1.2 0,1.8 0,0.2 -0.1,0.5 0,0.7 0.1,0.2 0.5,0.4 0.6,0.6 0.3,0.4 0.4,1 0.7,1.4 0.1,0.2 0.2,0.3 0.3,0.5 0.1,0.2 0.1,0.4 0.4,0.6 0.1,0.1 0.4,0.2 0.5,0.4 0.1,0.2 0,0.7 0,1 0,0.3 0,0.4 0.1,0.7 0.2,0.4 0.2,0.4 0.5,0.4 0.3,0 0.4,0.1 0.6,0.1 0.3,0.1 0.4,-0.2 0.6,-0.1 0.4,0 0.7,0.5 1.1,0.6 0.3,0.1 0.4,0.1 0.6,0.3 0.1,0 0.2,0.2 0.2,0.2 0.1,0.1 0.2,0 0.3,0.1 0.2,0.1 0.2,0.1 0.5,0 0.3,-0.1 0.5,-0.1 0.8,-0.2 0.5,-0.2 0.9,-0.1 1.4,-0.3 0.4,-0.1 0.8,-0.2 1.2,-0.4 0.5,-0.2 0.9,-0.6 1.5,-0.7 0.3,-0.1 0.5,-0.1 0.8,-0.2 0.4,-0.1 0.7,-0.3 1,-0.7 0.3,-0.3 0.4,-0.4 0.7,-0.5 0.3,-0.1 0.6,-0.2 0.9,-0.4 0.6,-0.4 1.2,-0.9 1.8,-1.2 0.2,-0.1 0.4,-0.1 0.5,-0.2 0.3,-0.1 0.5,-0.4 0.7,-0.7 0.3,-0.3 0.5,-0.7 0.7,-1 0.3,-0.5 0.8,-0.9 1.2,-1.3 0.3,-0.3 0.5,-0.7 0.8,-1 0.2,-0.3 0.5,-0.7 0.7,-1 0.1,-0.2 0.5,-0.6 0.7,-0.7 0.1,0.5 0,1 -0.1,1.4 -0.2,0.5 -0.6,0.9 -0.6,1.4 0,0.3 0,0.4 -0.2,0.5 -0.2,0.2 -0.3,0.2 -0.3,0.5 0,0 0.1,0.2 0.1,0.3 0,0.1 0,0.3 0,0.4 0,0.1 -0.1,0.1 -0.1,0.2 0,0.2 0,0.4 0,0.5 0,0.5 0.4,0.8 0.1,1.3 -0.1,0.3 -0.2,0.5 -0.4,0.8 -0.1,0.2 -0.1,0.2 -0.2,0.4 -0.1,0.1 -0.1,0.2 -0.1,0.3 0,0.1 0.1,0.1 0.1,0.1 0.1,0.6 -0.1,1.1 -0.5,1.5 -0.4,0.5 -0.7,1.1 -1.1,1.5 -0.3,0.3 -0.5,0.5 -0.7,0.8 -0.1,0.1 -0.1,0.1 -0.2,0.2 -0.1,0.1 -0.1,0.2 -0.1,0.3 -0.2,0.4 -0.3,0.5 -0.1,0.9 0.1,0.1 0.1,0.3 0.2,0.4 0.1,0.2 0.3,0.2 0.4,0.4 0.2,0.2 0.1,0.4 0.1,0.7 0.2,0.5 0.8,1 0.5,1.6 -0.1,0.3 -0.3,0.4 -0.3,0.7 0,0.3 0,0.6 0,0.9 0,0.3 0,0.6 0.1,0.8 0.2,0.3 0.5,0.2 0.6,0.4 0.1,0.1 0,0.6 0,0.7 0,0.2 -0.1,0.6 0,0.8 0.1,0.2 0.3,0.3 0.5,0.4 0.3,0.2 0.3,0.4 0.5,0.7 0,0.1 0.2,0.2 0.2,0.3 0,0.1 0,0.2 0.1,0.4 0.1,0.2 0.2,0.5 0.3,0.6 0.5,0.5 1,0.9 1,1.7 0,0.3 0,0.6 0,0.9 0,0.5 0.2,0.4 0.5,0.6 0.4,0.3 0.5,1 0.3,1.5 -0.1,0.3 -0.2,0.5 -0.2,0.8 0,0.3 0,0.6 0,0.9 0,0.5 -0.4,1.2 0,1.6 0.3,0.4 0.7,0.7 1.1,1 0.2,0.2 0.3,0.4 0.5,0.6 0.1,0.1 0.2,0.1 0.3,0.2 0.2,0.1 0.2,0.1 0.4,0.2 0.9,0.4 2.3,0.9 2.9,1.8 0.2,0.3 0.5,0.6 0.6,1 0.2,0.4 0.3,0.8 0.4,1.2 0.1,0.3 0.3,0.4 0.5,0.5 0.4,0.2 0.8,0.3 1.2,0.4 0.2,0.1 0.5,0.1 0.7,0.2 0.3,0.2 0.6,0.2 1,0.3 0.4,0.1 0.7,0.3 1.1,0.3 0.4,0 0.4,0.2 0.6,0.4 0.3,0.2 0.5,0.2 0.8,0.5 0.2,0.2 0.3,0.4 0.4,0.6 0.4,0.5 1.4,0.6 1.6,1.3 0.1,0.3 0,0.4 0.3,0.6 0.2,0.1 0.4,0.1 0.6,0.1 0.2,0 0.4,0.3 0.6,0.3 0.1,0 0.3,-0.1 0.4,-0.1 0.2,0 0.4,0 0.5,0 0.3,0 0.6,0 0.9,-0.1 0.2,-0.1 0.5,-0.1 0.7,-0.2 0.4,-0.2 0.7,-0.7 0.9,-1 0.2,-0.3 0.3,-0.8 0.4,-1.2 0.1,-0.3 0.1,-0.5 0,-0.9 -0.1,-0.4 -0.3,-0.7 -0.5,-1 -0.1,-0.3 -0.2,-0.5 -0.2,-0.8 -0.1,-0.2 -0.1,-0.2 -0.1,-0.4 0,-0.2 0.2,-0.5 0.2,-0.8 0.1,-0.3 0.2,-0.5 0.4,-0.7 0.2,-0.5 0.4,-1 0.9,-1.2 0.2,-0.1 0.4,-0.1 0.6,-0.1 0.1,0 0.2,-0.1 0.4,-0.1 0.2,0 0.2,0.1 0.3,0.1 0.3,0.1 0.3,0.1 0.5,0.3 0.1,0.1 0.3,0.3 0.5,0.4 0,0 0,0 0,0 0.2,0.3 0.4,0.5 0.6,0.8 0,0.1 0,0.1 0,0.2 0,0.2 0,0.4 0,0.6 0.2,1.1 0.5,2.1 0.7,3.3 0.1,0.6 0.2,1.1 0.3,1.6 0.1,0.5 0,1.2 0,1.7 0,0.3 -0.1,0.5 -0.1,0.8 0,0.3 0.1,0.5 0.2,0.8 0.1,0.3 0.1,0.4 0,0.6 -0.1,0.2 -0.1,0.5 -0.3,0.8 -0.5,0.8 -1.2,1.4 -1.9,1.9 -0.3,0.2 -0.7,0.7 -0.6,1.1 0.1,0.5 0.3,0.9 0.7,1.3 0.1,0.2 0.3,0.3 0.4,0.5 0.2,0.2 0.3,0.4 0.5,0.6 -0.1,0.4 -0.6,0.6 -0.5,1.1 0.1,0.5 0.5,0.8 0.8,1.2 0.3,0.3 0.5,0.7 0.6,1.1 0.1,0.3 0.1,0.5 0.1,0.8 0.1,0.2 0,0.5 0,0.7 0,0.2 0.1,0.4 0.2,0.6 0,0 0,0.1 0.1,0.1 0.1,0.2 0.3,0.5 0.2,0.7 0,0.3 -0.2,0.5 -0.1,0.8 0,0.2 0.1,0.5 0.2,0.7 0.1,0.2 0.3,0.5 0.4,0.7 0,0.1 0,0.2 0,0.4 0,0.1 0.1,0.2 0.1,0.3 0.2,0.7 0.6,1.3 0.8,2 0,0 -0.1,0 -0.1,0 -0.1,0 -0.1,0.1 -0.2,0.1 -0.2,0.1 -0.4,0.1 -0.5,0.1 -0.2,0.1 -0.3,0.2 -0.6,0.2 -0.1,0 -0.2,0 -0.3,0.1 -0.1,0 -0.2,0 -0.3,0 -0.3,0.1 -0.4,0.5 -0.5,0.7 -0.1,0.2 -0.2,0.3 -0.2,0.6 0,0.2 -0.1,0.3 -0.1,0.6 0,0.2 0,0.4 -0.1,0.7 -0.1,0.2 -0.2,0.1 -0.3,0.2 -0.1,0.1 0,0.4 -0.1,0.6 0,0.2 -0.1,0.4 -0.2,0.6 -0.2,0.4 -0.3,0.8 -0.5,1.2 -0.2,0.4 -0.4,0.8 -0.6,1.2 -0.1,0.2 -0.2,0.3 -0.3,0.5 -0.1,0.1 -0.2,0.2 -0.3,0.3 -0.1,0.1 -0.1,0.2 -0.2,0.4 -0.1,0.2 -0.3,0.5 -0.5,0.6 -0.1,0.1 -0.1,0.1 -0.2,0.2 -0.2,0 -0.3,-0.1 -0.5,-0.1 -0.6,0 -1.2,0 -1.8,0 -0.3,0 -0.6,0 -0.9,0 -0.4,0 -0.5,0.1 -0.7,0.3 -0.1,0.1 -0.1,0.1 -0.3,0.1 -0.1,0 -0.2,-0.1 -0.3,-0.1 -0.2,0 -0.6,0.1 -0.8,0.3 -0.3,0.4 -0.2,1.1 -0.2,1.6 0,0 0,0 0,0 -0.1,0.1 -0.1,0.2 0,0.4 0.1,0.1 0,0.1 0.2,0.3 0,0 0.1,0.1 0.1,0.1 0.1,0.2 0.3,0.4 0.5,0.6 0.2,0.2 0.4,0.4 0.5,0.6 0.1,0.3 0.1,0.6 0.2,0.8 0.1,0.2 0.2,0.3 0.3,0.5 0.1,0.2 0.1,0.4 0.1,0.7 0,0.6 0,0.9 -0.4,1.3 -0.2,0.2 -0.4,0.3 -0.6,0.4 -0.2,0.2 -0.4,0.3 -0.6,0.5 -0.5,0.3 -0.8,0.6 -1.3,1 -0.3,0.3 -0.5,0.7 -0.8,1 -0.3,0.4 -0.5,0.8 -0.3,1.3 0,0.1 0.1,0.2 0.2,0.3 0.1,0.2 0.2,0.5 0.3,0.7 0.1,0.3 0.3,0.4 0.5,0.6 0.2,0.2 0.3,0.2 0.5,0.3 0.2,0.1 0.4,0.2 0.6,0.2 0.2,0 0.2,0.1 0.4,0.1 0.3,0.1 0.6,0 0.9,0.1 0.3,0.1 0.5,0.2 0.8,0.3 0.3,0.1 0.5,0.1 0.8,0.2 0.2,0.1 0.4,0.2 0.6,0.2 0.1,0 0.2,0 0.3,0 0.1,0 0.3,0.1 0.4,0.2 0.4,0.1 0.6,0 0.9,-0.3 0.2,-0.2 0.3,-0.3 0.6,-0.4 0.3,-0.1 0.6,0 0.9,0 0.5,0 0.7,-0.4 1.2,-0.5 0.3,-0.1 0.5,-0.2 0.8,-0.3 0.2,-0.1 0.4,0 0.6,-0.1 0.1,0 0.2,-0.1 0.3,-0.1 0.4,-0.1 0.7,0 1.1,-0.1 0.4,-0.1 0.9,0 1.3,0 0.4,0 0.8,-0.1 1.2,-0.1 0.6,0 1.1,0 1.7,0.1 0.4,0 0.8,0 1.2,0 0.3,0 0.7,0.2 1,0.3 0.2,0 0.4,0 0.6,0 0,0 0,0.1 0,0.1 -0.2,0.4 -0.5,0.6 -0.5,1 0,0.4 0.1,0.7 -0.2,1 -0.1,0.2 -0.3,0.2 -0.4,0.4 -0.1,0.1 -0.1,0.4 -0.1,0.5 0,0.1 0,0.2 0,0.3 0,0.1 0.1,0.1 0.1,0.2 0,0.2 -0.1,0.4 -0.1,0.6 -0.1,0.2 -0.1,0.4 -0.2,0.6 -0.1,0.3 -0.3,0.5 -0.3,0.8 0,0.2 0,0.4 0,0.6 0,0.2 0.2,0.3 0.2,0.5 0.1,0.2 0.1,0.4 0.1,0.7 0,0.1 0,0.2 0,0.3 0,0.1 -0.1,0.1 -0.1,0.2 -0.1,0.4 0,0.8 0,1.2 0,0.3 0,0.4 0.1,0.6 0,0.2 0,0.3 -0.1,0.5 -0.1,0.4 -0.2,0.7 -0.4,1 -0.1,0.2 -0.2,0.4 -0.3,0.5 -0.2,0.1 -0.4,0.2 -0.6,0.2 -0.4,0.1 -0.4,0.5 -0.8,0.7 -0.1,0.1 -0.2,0 -0.3,0 -0.1,0 -0.2,0.1 -0.3,0.1 -0.2,0 -0.4,0 -0.6,0 -0.2,0 -0.4,0 -0.6,0 -0.1,0 -0.2,0 -0.3,0 -0.1,0 -0.1,-0.1 -0.2,-0.1 0,0 -0.2,0.1 -0.3,0.1 -0.1,0 -0.2,0.1 -0.3,0.1 -0.1,0.1 -0.3,0.1 -0.5,0.2 -0.3,0.1 -0.7,0.4 -0.8,0.7 -0.2,0.3 -0.3,0.7 -0.4,1 -0.1,0.2 -0.1,0.3 -0.2,0.4 -0.1,0.1 -0.2,0.3 -0.2,0.4 0,0.1 0,0.2 0,0.4 0,0.1 0,0.1 -0.1,0.2 -0.1,0.2 -0.1,0.4 -0.2,0.5 -0.1,0.1 -0.2,0.2 -0.2,0.4 -0.1,0.2 -0.1,0.3 -0.2,0.4 -0.1,0.1 -0.3,0.4 -0.2,0.6 0.1,0.2 0.3,0.1 0.4,0.1 0.4,0 0.7,0 1.1,0 0.2,0 0.4,0.1 0.6,0.1 0.2,0 0.4,0 0.6,-0.1 0.3,-0.1 0.6,-0.2 0.9,-0.3 0.3,-0.1 0.6,-0.2 0.8,-0.4 0.3,-0.1 0.6,-0.2 0.8,-0.4 0.2,-0.1 0.3,-0.2 0.5,-0.3 0.1,-0.1 0.3,-0.2 0.5,-0.3 0.2,-0.1 0.4,-0.1 0.5,-0.2 0.3,-0.1 0.5,-0.3 0.8,-0.3 0.4,0 0.8,-0.2 1.2,-0.2 0.1,0 0.4,0.1 0.4,0.2 0,0 0,0 0,0 0,0 0,0 0,0 0.1,-0.2 0.3,-0.4 0.5,-0.5 0.1,-0.1 0.2,-0.2 0.3,-0.3 0.1,-0.2 0.1,-0.3 0.2,-0.5 0.1,-0.4 0.4,-0.6 0.6,-1 0,0.3 0,0.5 -0.1,0.8 -0.1,0.3 -0.1,0.6 -0.2,0.8 -0.1,0.2 -0.4,0.4 -0.4,0.7 0,0.3 0,0.4 -0.2,0.7 -0.1,0.1 -0.1,0.2 -0.1,0.3 0,0.1 0,0.3 0,0.4 0,0.3 -0.2,0.5 -0.2,0.8 0,0.2 0,0.3 -0.1,0.5 0,0.1 -0.1,0.2 -0.1,0.3 -0.1,0.2 0,0.5 0,0.7 0,0.1 -0.1,0.1 -0.1,0.2 0,0.1 0,0.1 0,0.2 0,0.1 0,0.3 -0.1,0.4 -0.1,0.1 -0.1,0.2 -0.2,0.4 0,0.1 0,0.2 0,0.3 0,0.1 -0.1,0.2 -0.2,0.4 0,0.1 -0.1,0.2 -0.1,0.3 -0.1,0.3 -0.2,0.4 0.1,0.6 0.2,0.1 0.4,0.2 0.6,0.2 0.2,0 0.5,0 0.7,0 0.3,0 0.4,0.1 0.6,0.3 0.2,0.1 0.4,0.2 0.6,0.1 0.2,0 0.2,-0.1 0.4,-0.1 0.1,0 0.2,0.1 0.3,0.1 0.2,0 0.4,0.2 0.6,0.2 0.3,0.1 0.4,0.1 0.7,0 0.2,-0.1 0.2,0 0.4,0.1 0.3,0.1 0.3,-0.1 0.5,-0.2 0.1,0 0.3,0.2 0.5,0.2 0.2,0 0.4,0 0.6,0.1 0.2,0.1 0.3,0.2 0.6,0.2 0.2,0 0.4,0 0.5,0.1 0.2,0.1 0.4,0 0.5,0.2 0,0.1 0,0.2 0.1,0.3 0,0.1 0.1,0.1 0.1,0.2 0.1,0.2 0.1,0.3 0.2,0.5 0.2,0.3 0.5,0.5 0.7,0.8 0.1,0.1 0.1,0.3 0.2,0.4 0.1,0.2 0.2,0.3 0.1,0.5 0,0.2 -0.1,0.6 -0.3,0.7 -0.1,0.1 -0.1,0 -0.2,0.1 0,0.1 0,0.2 0,0.3 0,0.2 -0.1,0.3 -0.2,0.5 -0.1,0.2 0,0.2 0,0.4 0,0.4 -0.3,0.9 -0.5,1.2 -0.2,0.3 -0.3,0.5 -0.5,0.8 -0.1,0.2 -0.2,0.3 0,0.5 0.2,0.1 0.3,0 0.5,0.1 0.1,0 0.1,0.1 0.2,0.1 0.1,0 0.2,0 0.3,0 0.2,0 0.4,0.1 0.4,0.3 0.1,0.2 0,0.4 0.1,0.7 0,0.1 0.1,0.2 0.1,0.2 0,0.1 0,0.2 -0.1,0.2 0,0.2 0,0.4 0,0.6 -0.1,0.4 -0.4,0.6 -0.6,0.8 -0.2,0.2 -0.3,0.5 -0.3,0.8 -0.1,0 -0.1,0 -0.2,0 -0.3,0 -0.3,0.2 -0.4,0.5 -0.1,0.1 -0.1,0.2 -0.2,0.3 -0.1,0.2 -0.1,0.2 -0.1,0.4 0,0.3 -0.2,0.4 -0.1,0.6 0.1,0.2 0.2,0.3 0.2,0.5 0.1,0.2 0,0.2 0,0.4 0,0.1 0,0.3 0,0.4 0,0.1 -0.1,0.2 -0.1,0.2 -0.1,0.2 -0.3,0.3 -0.4,0.5 -0.1,0.2 -0.2,0.4 -0.2,0.6 0,0.1 -0.1,0.3 0.1,0.4 0,0 0.1,0 0.1,0 l -0.1,0.1 c 0.2,0.1 0.6,0.2 0.8,0 0.2,-0.1 0.4,-0.3 0.6,-0.5 0.1,-0.1 0.2,-0.2 0.2,-0.3 0,-0.1 0,-0.2 0.1,-0.4 0.1,-0.2 0.2,-0.5 0.3,-0.7 0.2,-0.3 0.1,-0.6 0.1,-0.9 0,-0.3 0.3,-0.5 0.4,-0.8 0,0 0,-0.1 0.1,-0.1 0,0.1 0,0.1 0.1,0.2 0.1,0.1 0.4,0.1 0.6,0 0.1,0 0.2,-0.1 0.3,-0.2 0.1,-0.1 0.1,-0.1 0.3,-0.1 0.6,-0.1 1.1,-1 1.4,-1.5 0.1,-0.2 0.2,-0.4 0.4,-0.6 0.1,-0.2 0.1,-0.3 0.1,-0.5 0,-0.2 0.2,-0.2 0.3,-0.4 0.1,-0.1 0.3,-0.6 0.3,-0.7 0,0 0,0 0,-0.1 0.1,-0.1 0.1,-0.2 0.2,-0.2 0.1,-0.1 0.2,-0.3 0.3,-0.4 0.1,-0.2 0.2,-0.2 0.4,-0.3 0.2,-0.1 0.4,-0.4 0.6,-0.5 0.1,0 0.1,0 0.2,-0.1 0.1,0 0.2,-0.2 0.3,-0.1 0.2,0.1 0.1,0.4 0.1,0.5 0,0.1 -0.1,0.4 0,0.6 0.1,0.1 0.1,0.1 0.2,0.1 0.1,0 0.2,0.1 0.3,0.1 0.2,0 0.3,-0.1 0.6,-0.1 0.2,0 0.3,0.2 0.5,0.2 0,0.2 0.1,0.3 0.3,0.2 0.1,-0.1 0.2,-0.3 0.3,-0.4 0.1,-0.2 0.1,-0.3 0.2,-0.6 0,-0.2 0.1,-0.4 0.2,-0.6 0.1,-0.3 0.1,-0.2 0.4,-0.3 0.1,0 0.3,-0.1 0.4,-0.2 0.3,-0.3 0.5,-0.8 0.7,-1.1 0.1,-0.2 0.3,-0.4 0.5,-0.5 0.1,-0.1 0.3,-0.1 0.4,-0.1 0.1,-0.1 0.3,-0.1 0.4,-0.2 0.1,-0.1 0.2,-0.2 0.3,-0.3 0.2,-0.1 0.5,-0.3 0.6,-0.6 0.2,-0.3 0.4,-0.7 0.7,-1 0.1,-0.2 0.3,-0.3 0.4,-0.5 0.1,-0.1 0,-0.2 0.1,-0.3 0,0 0.1,-0.2 0.1,-0.2 0,-0.2 -0.1,-0.3 -0.1,-0.5 0,-0.2 -0.1,-0.3 -0.2,-0.5 -0.1,-0.3 -0.3,-0.6 -0.4,-0.9 -0.2,-0.4 0,-0.7 0.4,-0.8 0.3,-0.2 0.6,-0.1 0.9,-0.4 0.1,-0.1 0.3,-0.4 0.4,-0.5 0.1,-0.2 0.1,-0.4 0.2,-0.6 0.2,-0.3 0.3,-0.7 0.5,-1 0.1,-0.2 0.1,-0.3 0.3,-0.4 0.2,-0.1 0.4,-0.1 0.5,-0.2 0.1,-0.1 0.2,-0.2 0.4,-0.3 0.2,0 0.3,0.1 0.5,0.1 0.4,0.1 0.7,-0.1 1,-0.2 0.2,-0.1 0.7,-0.3 0.8,-0.6 0.1,-0.2 -0.1,-0.5 0.1,-0.6 0.3,-0.3 0.3,0.2 0.3,0.4 0,0.2 0.1,0.4 0.4,0.4 0.1,0 0.2,0 0.3,0 0.1,0 0.1,-0.1 0.2,-0.1 0.3,-0.1 0.9,-0.1 1.3,0 0.1,0 0.1,0.1 0.2,0.1 0.1,0 0.1,-0.1 0.2,-0.1 0.2,0 0.4,-0.1 0.5,0 0.1,0 0.2,0.1 0.3,0.1 0.1,0 0.2,0 0.3,0 0.2,0 0.4,0.3 0.6,0.4 0.2,0 0.3,0 0.5,0.2 0.2,0.1 0.2,0.2 0.4,0.3 0.3,0.1 0.4,0.2 0.4,0.5 0,0.2 0.1,0.5 0,0.7 -0.1,0.1 -0.2,0.3 -0.3,0.5 -0.1,0.2 -0.2,0.3 -0.4,0.5 -0.2,0.3 -0.4,0.6 -0.5,0.9 -0.2,0.4 -0.4,0.7 -0.7,1 -0.1,0.2 -0.2,0.3 -0.4,0.5 -0.1,0.1 -0.2,0.2 -0.2,0.3 0,0.1 0,0.2 0,0.4 0,0.1 -0.1,0.4 -0.2,0.5 -0.1,0.1 -0.3,0.1 -0.4,0.2 -0.1,0.1 -0.2,0.3 -0.3,0.4 -0.2,0.2 -0.4,0.2 -0.6,0.3 -0.3,0.2 -0.4,0.5 -0.6,0.8 -0.1,0.1 -0.1,0.2 -0.2,0.3 -0.1,0.1 -0.2,0.1 -0.2,0.2 -0.1,0.1 0,0.3 0,0.4 0,0.2 -0.1,0.2 -0.2,0.4 -0.1,0.2 -0.5,0.6 -0.1,0.6 0,0 0.1,-0.1 0.1,-0.1 0.1,0 0.2,0 0.3,-0.1 0.1,-0.1 0.3,-0.1 0.4,-0.2 0.2,-0.1 0.4,-0.2 0.6,-0.4 0.1,-0.1 0.2,-0.2 0.2,-0.2 0.1,-0.1 0.2,-0.1 0.3,-0.2 0.3,-0.2 0.6,-0.3 0.9,-0.5 0.3,-0.1 0.5,-0.3 0.8,-0.4 0.4,-0.2 0.7,-0.4 1,-0.6 0.3,-0.2 0.5,-0.4 0.8,-0.5 0.2,-0.1 0.4,-0.3 0.6,-0.4 0.3,-0.1 0.5,-0.3 0.8,-0.5 0.3,-0.2 0.5,-0.4 0.8,-0.6 0.2,-0.2 0.4,-0.4 0.6,-0.5 0.2,-0.1 0.3,-0.1 0.5,-0.2 0.1,-0.1 0.3,-0.2 0.4,-0.3 0.1,0.2 -0.1,0.5 -0.2,0.6 -0.1,0.1 -0.3,0.3 -0.2,0.4 0.3,-0.2 0.7,-0.4 0.9,-0.6 0.3,-0.4 0.6,-0.7 1,-1 0.3,-0.2 0.6,-0.4 0.7,-0.8 0.1,-0.2 0.1,-0.4 0.1,-0.5 0.1,-0.2 0.3,-0.4 0.4,-0.6 0.2,-0.3 0.6,-0.6 0.9,-0.8 0.4,-0.2 0.7,-0.5 1,-0.9 0.2,-0.3 0.3,-0.6 0.6,-0.9 0.4,-0.3 0.7,-0.7 1,-1.1 0.1,-0.2 0.2,-0.4 0.4,-0.6 0,-0.1 0.1,-0.2 0.2,-0.2 0.1,-0.1 0.1,0 0.2,-0.1 0.2,-0.1 0.3,-0.3 0.6,-0.4 0.3,-0.1 0.6,-0.2 0.8,-0.4 0.3,-0.2 0.5,-0.3 0.8,-0.5 0.3,-0.2 0.7,-0.3 1,-0.5 0.1,-0.1 0.3,-0.2 0.4,-0.3 0.1,-0.1 0.3,-0.1 0.5,-0.2 0.2,-0.1 0.4,-0.1 0.7,-0.2 0.1,0 0.2,-0.1 0.3,-0.2 0.3,-0.2 0.5,-0.4 0.7,-0.5 0.2,0 0.4,-0.1 0.5,-0.1 0.2,-0.1 0.4,-0.1 0.6,-0.1 0.2,0 0.3,0.1 0.5,0.2 0.2,0.1 0.4,0.2 0.6,0.3 0.2,0.1 0.4,0.2 0.6,0.3 0.3,0.2 0.4,0.4 0.7,0.2 0.1,-0.1 0.3,-0.2 0.4,-0.3 0.2,-0.1 0.3,-0.3 0.4,-0.5 0.1,-0.1 0.2,-0.2 0.3,-0.3 0.1,-0.1 0.1,-0.3 0.2,-0.4 0.1,-0.1 0.2,-0.2 0.3,-0.2 0.2,-0.1 0.3,-0.3 0.5,-0.5 0.2,-0.2 0.3,-0.2 0.4,-0.4 0.1,-0.1 0.2,-0.2 0.3,-0.4 0.2,-0.3 0.5,-0.6 0.6,-0.9 0.1,-0.3 0.3,-0.6 0.5,-0.9 0.2,-0.3 0.5,-0.5 0.7,-0.9 0.2,-0.3 0.3,-0.6 0.4,-0.9 0.2,-0.3 0.4,-0.6 0.6,-0.9 0.2,-0.4 0.2,-0.8 0.5,-1.1 0.2,-0.3 0.4,-0.6 0.6,-0.9 0.3,-0.6 0.5,-1.2 0.8,-1.8 0.2,-0.3 0.4,-0.6 0.6,-0.9 0.2,-0.3 0.2,-0.7 0.4,-1 0.2,-0.4 0.4,-0.7 0.6,-1.1 0.1,-0.1 0.1,-0.3 0.2,-0.5 0.1,-0.2 0.3,-0.4 0.5,-0.6 0.2,-0.2 0.5,-0.5 0.5,-0.7 0.2,-0.5 0.4,-1 0.6,-1.5 0.1,-0.1 0.2,-0.2 0.3,-0.3 0,0 0.1,-0.1 0.1,-0.1 0.1,-0.1 0.1,0 0.2,-0.1 0.4,-0.2 0.6,-0.6 0.9,-0.9 0.4,-0.4 0.9,-0.7 1.2,-1.2 0.2,-0.3 0.3,-0.5 0.5,-0.8 0.3,-0.4 0.6,-0.2 1,-0.3 0.1,0 0.1,-0.1 0.2,-0.1 0.1,0 0.2,0 0.3,0 0.1,0 0.3,-0.1 0.5,-0.2 0.1,-0.1 0.2,-0.2 0.3,-0.4 0.1,-0.2 0.2,-0.3 0.3,-0.5 0.2,-0.3 0.6,-0.4 0.9,-0.6 0.1,-0.1 0.3,-0.2 0.3,-0.3 0,-0.1 0,-0.2 0,-0.3 0,-0.1 0.1,-0.2 0.1,-0.3 0.1,-0.3 0.3,-0.6 0.4,-0.9 0.2,-0.2 0.4,-0.4 0.6,-0.6 0.2,-0.2 0.3,-0.4 0.5,-0.6 0.1,-0.2 0.3,-0.2 0.3,-0.5 0.1,-0.2 0.1,-0.4 0.2,-0.6 0.1,-0.2 0.2,-0.3 0.3,-0.5 0.1,-0.2 0.1,-0.4 0.3,-0.6 0.1,-0.2 0.2,-0.4 0.3,-0.6 0.1,-0.1 0.2,-0.3 0.3,-0.4 0,-0.1 0,-0.2 0,-0.3 0,-0.2 0.1,-0.4 0.2,-0.6 0.1,-0.2 0.1,-0.4 0.2,-0.6 0.1,-0.2 0.1,-0.4 0.1,-0.7 0,-0.2 0,-0.4 0.1,-0.7 0.1,-0.4 0.1,-0.8 0.1,-1.3 0,-0.2 0,-0.4 0,-0.7 0.1,-0.2 0.2,-0.5 0.2,-0.7 0,-0.2 0.2,-0.3 0.2,-0.5 0.1,-0.2 0,-0.5 0,-0.7 0,-0.4 -0.3,-0.6 -0.4,-1 -0.1,-0.4 0,-0.9 0,-1.3 0,-0.4 0,-0.7 0,-1.1 0,-0.2 -0.1,-0.3 -0.1,-0.6 0,-0.2 0,-0.4 0,-0.6 -0.1,-0.5 -0.8,-1.1 -1.2,-1.5 -0.2,-0.2 -0.5,-0.4 -0.6,-0.6 -0.2,-0.2 -0.3,-0.4 -0.6,-0.4 -0.2,0 -0.3,0 -0.5,0.2 -0.1,0.2 -0.3,0.3 -0.5,0.4 -0.1,0.1 -0.3,0.1 -0.5,0 -0.1,-0.1 -0.1,-0.2 -0.2,-0.3 -0.4,-0.2 -0.6,0.4 -0.7,0.6 -0.1,0.3 -0.2,0.5 -0.2,0.8 0,0.1 0.1,0.1 0.1,0.3 0,0 -0.1,0.1 -0.1,0.2 0,0.1 0,0.2 0,0.3 0,0.1 -0.1,0.2 -0.1,0.3 0,0.1 0,0.2 0,0.3 0,0.3 -0.2,0.4 -0.3,0.6 -0.1,0.2 -0.1,0.6 -0.3,0.7 -0.1,0 -0.2,0 -0.2,0 -0.1,0 -0.1,0.1 -0.1,0.1 -0.1,0 -0.1,0 -0.2,0.1 -0.1,0 -0.1,0.1 -0.2,0.2 -0.1,0.2 -0.3,0.3 -0.4,0.5 -0.1,0.3 -0.1,0.8 -0.1,1.1 0,0.2 -0.1,0.4 -0.1,0.6 0,0.1 0,0.2 0,0.3 0,0.1 0,0.2 0.1,0.3 0,0.2 0,0.4 0,0.5 0,0.2 0.1,0.3 0.1,0.5 0,0.2 0,0.4 0,0.6 0,0.1 0,0.2 0,0.3 0,0 -0.1,0.2 -0.1,0.3 -0.2,0.3 -0.6,0.2 -0.8,0.4 -0.2,0.1 -0.3,0.3 -0.5,0.5 -0.2,0.2 -0.4,0.3 -0.5,0.6 -0.2,0.4 -0.4,0.8 -0.6,1.2 -0.1,0.2 -0.1,0.4 -0.2,0.7 0,0.1 -0.1,0.2 -0.1,0.3 0,0.1 0,0.2 0,0.3 -0.1,0.4 -0.2,0.7 -0.3,1 -0.1,0.2 -0.1,0.3 -0.1,0.5 -0.1,0.1 -0.1,0.2 -0.2,0.4 -0.1,0.2 -0.2,0.3 -0.3,0.4 -0.1,0.1 -0.2,0.3 -0.3,0.4 -0.1,0.1 -0.2,0.2 -0.3,0.2 -0.2,0.1 -0.3,0.1 -0.5,0.2 -0.1,0.1 -0.3,0.2 -0.4,0.2 -0.2,0 -0.3,0 -0.4,0.1 -0.3,0.2 -0.7,0.5 -1,0.5 -0.1,-0.2 0.1,-0.5 0.2,-0.7 0,-0.1 0.1,-0.6 -0.1,-0.7 0.1,-0.1 0,-0.3 0,-0.5 0,-0.1 0,-0.2 0,-0.3 0,-0.1 -0.1,-0.1 -0.1,-0.2 0,-0.1 0.1,-0.4 -0.2,-0.4 -0.2,0 -0.4,0.4 -0.5,0.5 -0.1,0.2 -0.2,0.4 -0.3,0.6 -0.1,0.1 -0.2,0.2 -0.2,0.3 -0.2,0.3 -0.4,0.5 -0.6,0.8 -0.2,0.2 -0.4,0.4 -0.5,0.6 -0.1,0.2 -0.1,0.3 -0.2,0.5 -0.1,0.3 -0.3,0.6 -0.5,0.9 -0.2,0.3 -0.4,0.7 -0.6,1 -0.2,0.3 -0.4,0.6 -0.4,1 0,0.1 0,0.3 0,0.4 0,0 -0.1,0 -0.1,0 -0.1,0.1 -0.2,0.2 -0.4,0.3 -0.2,0.1 -0.4,0.2 -0.6,0.3 -0.2,0.1 -0.4,0.2 -0.5,0.4 -0.1,0.1 -0.1,0.3 -0.2,0.4 -0.1,0.2 -0.3,0.3 -0.4,0.4 -0.1,0.1 -0.2,0.2 -0.3,0.3 -0.2,0.1 -0.5,0.3 -0.6,0.5 -0.2,0.2 -0.4,0.3 -0.6,0.6 -0.2,0.2 -0.4,0.4 -0.6,0.6 -0.2,0.2 -0.5,0.4 -0.7,0.6 -0.1,0.1 -0.2,0.2 -0.3,0.4 0,0 0,0.1 -0.1,0.1 0,0 -0.1,0.1 -0.1,0.1 -0.1,0.1 -0.2,0.2 -0.3,0.3 -0.2,0.1 -0.4,0.2 -0.5,0.3 -0.2,0.1 -0.4,0.3 -0.6,0.4 -0.4,0.3 -1,0.5 -1.5,0.7 -0.2,0.1 -0.4,0.1 -0.6,0.2 -0.2,0.1 -0.4,0.2 -0.6,0.2 -0.2,0 -0.3,0.1 -0.5,0.2 -0.2,0.1 -0.3,0.1 -0.5,0.1 -0.2,0 -0.4,0.1 -0.6,0.1 -0.2,0 -0.4,-0.1 -0.5,-0.2 -0.3,-0.2 -0.6,-0.4 -0.7,-0.7 -0.1,-0.4 -0.2,-0.9 -0.2,-1.4 0,-0.3 0,-0.6 -0.1,-0.9 0,-0.1 -0.1,-0.2 -0.1,-0.4 0,-0.1 0,-0.2 0,-0.3 0,-0.1 -0.1,-0.3 -0.2,-0.5 0,-0.1 0,-0.2 0,-0.3 0,-0.1 -0.1,-0.2 -0.1,-0.3 0,-0.1 0.1,-0.1 0.1,-0.1 0.1,-0.1 0.3,-0.2 0.4,-0.4 0.1,-0.1 0.1,-0.2 0.2,-0.3 0,0 0.1,-0.1 0.1,-0.1 0,0 0,-0.1 0,-0.1 0.2,-0.3 0.4,-0.6 0.6,-1 0.3,-0.5 0.5,-0.9 0.8,-1.4 0.1,-0.2 0.2,-0.5 0.3,-0.6 0.1,-0.1 0.2,-0.3 0.3,-0.4 0.1,-0.1 0.3,-0.2 0.4,-0.4 0.1,-0.1 0.3,-0.4 0.4,-0.6 0,-0.2 0,-0.4 0,-0.6 0,-0.2 0.1,-0.3 0.1,-0.6 0,-0.2 0,-0.1 -0.1,-0.2 0,0 -0.2,-0.1 -0.2,-0.1 -0.2,0 -0.4,0.3 -0.6,0.5 -0.1,0.1 -0.1,0.2 -0.2,0.2 -0.2,0 -0.3,0 -0.5,0.1 -0.1,0 -0.1,0.1 -0.2,0.1 -0.1,0 -0.2,0 -0.4,0 -0.3,0.1 -0.3,0.1 -0.5,-0.2 -0.1,-0.2 -0.2,-0.3 -0.2,-0.6 0,-0.3 0,-0.5 -0.1,-0.7 0,-0.1 0,-0.1 -0.1,-0.2 0,0 0,0 0,0 0,-0.3 -0.1,-0.5 -0.3,-0.6 0,0 -0.1,-0.1 -0.1,-0.1 -0.3,-0.3 -0.6,-0.4 -0.9,-0.3 -0.7,0 -1.5,0 -1.5,-0.8 0,-0.1 0,-0.2 0,-0.3 0,-0.1 0.1,-0.1 0.1,-0.2 0,-0.1 0,-0.2 0,-0.3 0,-0.1 0.1,-0.1 0.1,-0.2 0,-0.2 0,-0.3 0,-0.5 0.1,-0.2 0.2,-0.3 0.3,-0.4 0.1,-0.2 0.2,-0.4 0.3,-0.6 0.1,-0.3 0.2,-0.4 0.4,-0.6 0.3,-0.2 0.5,-0.4 0.7,-0.7 0.2,-0.2 0.2,-0.4 0.3,-0.7 0.1,-0.3 0.2,-0.6 0.4,-0.9 0.3,-0.6 0.6,-1.1 0.8,-1.7 0.1,-0.2 0.1,-0.4 0.2,-0.6 0.1,-0.1 0.3,-0.2 0.4,-0.4 0.3,-0.3 0.6,-0.7 0.8,-1.1 0.2,-0.4 0.5,-0.7 0.9,-0.9 0.3,-0.2 0.5,-0.5 0.7,-0.8 0.2,-0.2 0.5,-0.4 0.7,-0.7 0.3,-0.3 0.5,-0.8 0.9,-1 0.2,-0.1 0.4,-0.2 0.6,-0.3 0.3,-0.2 0.5,-0.5 0.7,-0.8 0.2,-0.3 0.5,-0.6 0.6,-0.9 0.1,-0.2 0.1,-0.5 0.2,-0.7 0.1,-0.4 0.2,-0.9 0.6,-1.2 0.1,-0.1 0.3,-0.2 0.4,-0.4 0.2,-0.2 0.3,-0.4 0.5,-0.7 0.3,-0.5 0.4,-1 0.7,-1.5 0.2,-0.3 0.4,-0.8 0.8,-0.9 0.2,-0.1 0.4,-0.2 0.6,-0.3 0.2,-0.1 0.4,0 0.6,-0.1 0.1,0 0.2,-0.1 0.3,-0.1 0.1,0 0.2,0 0.2,-0.1 0.3,-0.1 0.4,-0.5 0.5,-0.7 0.2,-0.4 0.6,-0.8 0.7,-1.2 0.1,-0.3 0.1,-0.7 0.1,-1 0,-0.3 0.1,-0.6 0.2,-0.9 0,-0.2 0.1,-0.4 0.1,-0.5 0,-0.2 0,-0.4 0.1,-0.6 0.1,-0.1 0.2,-0.2 0.3,-0.4 0.1,-0.2 0.2,-0.3 0.3,-0.5 0.1,-0.1 0.2,-0.2 0.3,-0.3 0.1,-0.1 0.1,-0.3 0.2,-0.4 0.3,-0.4 0.5,-0.3 0.9,-0.2 0.4,0.1 0.7,0.2 1,0.4 0.1,0.2 0.1,0.4 0.1,0.6 0,0.4 -0.1,0.7 -0.1,1 0,0.3 0.1,0.5 0.2,0.7 0.1,0.3 0,0.7 0.2,1 0,0.1 0,0.2 0.1,0.3 0,0 0.1,0.1 0.1,0.1 0,0.1 0,0.2 0,0.2 0.1,0.3 0.3,0.7 0.5,0.9 0.1,0.2 0.3,0.3 0.5,0.3 0,0 0,0.1 0,0.1 0.1,0.1 0.1,0.3 0.3,0.4 0.1,0.1 0.3,0 0.5,0 0.2,-0.1 0.2,-0.2 0.2,-0.4 0,-0.1 0,-0.2 0.1,-0.3 0,-0.1 0,-0.2 0,-0.3 0,-0.2 0.2,-0.3 0.4,-0.5 0.1,-0.2 0.2,-0.4 0.3,-0.5 0.1,-0.1 0.2,-0.2 0.3,-0.3 0,-0.1 0,-0.1 0.1,-0.2 0.1,-0.1 0.2,-0.1 0.2,-0.2 0.1,-0.1 0.2,-0.3 0.3,-0.5 0.2,-0.4 0.3,-0.6 0.6,-0.8 0.2,-0.2 0.3,-0.4 0.4,-0.6 0.1,-0.2 0.4,-0.3 0.5,-0.4 0.6,-0.4 0.9,-1 1.2,-1.6 0.1,-0.3 0.3,-0.7 0.3,-1.1 0,-0.2 0,-0.4 0,-0.6 0,-0.2 -0.1,-0.4 -0.2,-0.5 -0.3,-0.8 -0.5,-1.5 -0.8,-2.2 -0.2,-0.4 -0.3,-0.8 -0.4,-1.2 0,-0.1 -0.1,-0.3 -0.2,-0.4 -0.1,-0.2 -0.1,-0.4 -0.1,-0.6 0,-0.2 -0.1,-0.4 -0.1,-0.5 0,-0.1 0,-0.2 0.1,-0.4 0,-0.1 0,-0.2 0,-0.3 0.1,-0.3 0.5,-0.5 0.8,-0.3 0.2,0.1 0.3,0.3 0.4,0.5 0.1,0.1 0.2,0.2 0.3,0.3 0.2,0.3 0.5,0.6 0.8,0.9 0.2,0.2 0.5,0.6 0.8,0.3 0.1,-0.1 0.1,-0.4 0.1,-0.6 0,-0.1 0,-0.2 0,-0.3 0,-0.1 0.1,-0.2 0.1,-0.3 0.1,-0.3 0,-0.8 -0.1,-1.1 0,-0.1 0,-0.3 0,-0.4 0.1,-0.1 0.1,-0.2 0.2,-0.3 0.2,-0.4 0.4,-0.8 0.5,-1.2 0.1,-0.4 0.3,-1 0.5,-1.4 0.1,-0.2 0.1,-0.4 0.2,-0.6 0.1,-0.2 0.2,-0.3 0.3,-0.5 0.1,-0.2 0.3,-0.3 0.4,-0.5 0.1,-0.2 0.2,-0.4 0.3,-0.5 0.2,-0.2 0.4,-0.3 0.5,-0.6 0.1,-0.2 0.2,-0.4 0.2,-0.6 0,-0.2 0.1,-0.4 0.3,-0.6 0.1,-0.2 0.1,-0.3 0.1,-0.6 0,-0.1 0,-0.2 0,-0.3 0,-0.1 0.1,-0.1 0.1,-0.2 0.1,-0.2 -0.1,-0.4 -0.1,-0.6 0,-0.1 0,-0.2 0,-0.3 0,-0.1 -0.1,-0.1 -0.1,-0.2 0,0 0.2,-0.1 0.3,-0.1 0.2,-0.1 0.2,-0.1 0.3,-0.3 0,-0.2 0,-0.4 0,-0.5 0,-0.2 0.1,-0.4 0.1,-0.6 0,-0.5 0.2,-0.9 0.3,-1.4 0,-0.2 0.1,-0.4 0.1,-0.7 0,-0.2 0.1,-0.4 0.1,-0.6 0,-0.2 -0.1,-0.4 0,-0.6 0,-0.1 0.1,-0.1 0.1,-0.2 0.1,-0.1 0.1,-0.3 0.1,-0.4 0.1,-0.1 0.2,-0.2 0.3,-0.3 0.3,-0.2 0.3,-0.1 0.4,0.1 0.1,0.2 0.2,0.3 0.4,0.2 0.2,-0.1 0.3,-0.3 0.5,-0.4 0.2,-0.1 0.3,-0.3 0.5,-0.4 0.2,-0.1 0.4,-0.3 0.5,-0.5 0.2,-0.2 0.3,-0.5 0.4,-0.7 0,-0.1 0.1,-0.1 0.1,-0.2 0.1,-0.1 0.2,-0.1 0.2,-0.2 0.2,-0.3 0.2,-0.6 0.3,-0.9 0.1,-0.2 0.2,-0.3 0.3,-0.5 0,-0.1 0.1,-0.2 0.1,-0.3 0.1,-0.2 0,-0.3 0.1,-0.4 0.1,-0.4 0.2,-0.7 0.4,-1.1 0.1,-0.2 0.2,-0.4 0.2,-0.7 0,-0.2 0,-0.4 0,-0.6 0,-0.3 0,-0.3 0,-0.6 0,-0.1 -0.1,-0.3 -0.1,-0.5 0,-0.1 0.2,-0.3 0.3,-0.4 0.1,-0.2 0.3,-0.3 0.4,-0.5 0.1,-0.2 0.2,-0.3 0.3,-0.5 0.1,-0.2 0.1,-0.3 0.1,-0.5 0,0 0.1,-0.2 0.1,-0.2 0.1,-0.1 0.1,-0.3 0.1,-0.4 0.1,-0.3 0.2,-0.8 0.1,-1.1 -0.2,0.1 0,0.4 -0.1,0.5 -0.1,0.1 -0.3,0.2 -0.4,0.1 -0.2,-0.1 -0.2,-0.2 -0.3,-0.4 -0.1,-0.2 -0.2,-0.2 -0.5,-0.2 -0.3,0 -0.3,0 -0.3,-0.3 0,-0.2 0,-0.4 0,-0.6 0,-0.4 -0.2,-0.6 -0.4,-0.9 -0.1,-0.1 -0.2,-0.2 -0.3,-0.2 -0.2,0 -0.3,0.1 -0.5,0.1 -0.1,0 -0.4,0.2 -0.5,0 0,-0.1 0,-0.2 0,-0.3 0,-0.1 -0.1,-0.2 -0.1,-0.4 0,-0.2 0,-0.4 0,-0.5 0,-0.2 0.1,-0.4 0.1,-0.7 0,-0.2 0,-0.4 0,-0.6 0,-0.1 -0.1,-0.1 -0.1,-0.2 0,-0.1 0,-0.2 0,-0.4 0,-0.1 0.1,-0.1 0.1,-0.2 0,-0.1 0,-0.2 0,-0.3 0,-0.2 0.1,-0.4 0.1,-0.6 0.1,-0.2 0.2,-0.4 0.2,-0.6 0,-0.2 -0.1,-0.5 0,-0.8 0,-0.2 0.1,-0.3 0.1,-0.6 0,-0.1 -0.1,-0.2 -0.1,-0.3 0,-0.1 0.1,-0.1 0.1,-0.2 0,-0.1 0,-0.2 0,-0.3 0,0 0.1,-0.1 0.1,-0.2 0,-0.2 0.1,-0.4 0.1,-0.6 0,-0.2 -0.1,-0.3 -0.1,-0.6 0,-0.2 0,-0.4 0,-0.6 0,-0.2 0.1,-0.4 0.1,-0.6 0,-0.2 0.1,-0.4 0.2,-0.6 0,-0.1 0,-0.2 0,-0.3 0,-0.1 0,-0.2 0.1,-0.3 0,-0.2 0.1,-0.3 0.1,-0.5 0.1,-0.3 0.3,-0.6 0.4,-0.9 0.1,-0.3 0.2,-0.7 0.2,-1 0,-0.2 0,-0.4 0,-0.6 0,-0.3 0.1,-0.3 0.2,-0.5 0.1,-0.3 0.2,-0.6 0.3,-0.9 0.1,-0.3 0.2,-0.8 0.3,-1.1 0.2,-0.4 0.2,-0.8 0.4,-1.2 0.1,-0.4 0.2,-0.7 0.4,-1.2 0.1,-0.4 0.3,-0.7 0.4,-1.1 0,-0.2 0,-0.4 0,-0.6 -0.1,1.2 0,0.9 -0.1,0.8 z M 244.9,19.9 c 0,0 0.1,0 0.1,0 l -0.1,-0.1 c 0.1,0.1 0.1,0.1 0.2,0.1 0,0 -0.1,0 -0.1,0 l 0.2,0.2 C 245.1,20 244.9,20 244.9,19.9 z m 7.5,2.1 c 0.1,0 0.2,0.1 0.3,0.2 0.1,0.1 0.3,0.2 0.4,0.3 0.1,0.1 0.3,0.1 0.4,0.2 0,0 0.1,0.1 0.1,0.1 0.1,0.1 0.1,0.1 0.2,0.1 0.1,0 0.2,0.1 0.2,0.1 0.1,0.1 0.1,0.1 0.1,0.1 0,0 0.2,0.1 0.1,0.2 -0.1,0 -0.2,-0.1 -0.3,-0.1 -0.1,0 -0.1,-0.1 -0.2,-0.1 -0.2,-0.1 -0.3,-0.2 -0.5,-0.2 -0.1,0 -0.2,-0.1 -0.3,-0.1 -0.1,0 -0.2,-0.1 -0.3,-0.1 -0.1,0 -0.2,0 -0.2,-0.1 -0.1,0 -0.1,-0.2 -0.2,-0.2 l 0.2,0 c -0.1,-0.1 -0.2,-0.2 -0.3,-0.3 -0.1,-0.1 -0.3,-0.3 -0.3,-0.4 0.2,0.2 0.4,0.2 0.6,0.3 z m 15.2,9.8 c -0.1,-0.1 -0.2,-0.1 -0.3,-0.2 -0.1,-0.1 -0.2,-0.1 -0.4,-0.1 -0.1,0 -0.1,0 -0.2,0 -0.1,0 -0.1,-0.1 -0.2,-0.1 -0.1,-0.1 -0.2,-0.1 -0.4,-0.2 -0.3,-0.1 -0.5,-0.3 -0.8,-0.4 -0.3,-0.1 -0.5,-0.2 -0.8,-0.3 -0.2,-0.2 -0.4,-0.4 -0.7,-0.5 -0.1,0 -0.1,0 -0.2,-0.1 -0.1,0 -0.1,-0.1 -0.2,-0.1 -0.1,-0.1 -0.2,-0.1 -0.3,-0.2 -0.1,-0.1 -0.2,-0.1 -0.3,-0.2 -0.1,-0.1 -0.2,-0.1 -0.3,-0.2 -0.1,0 -0.1,-0.1 -0.2,-0.1 -0.1,-0.1 -0.3,-0.1 -0.4,-0.2 -0.1,0 -0.3,-0.1 -0.4,-0.1 0,0.1 0.3,0.2 0.3,0.4 0.1,0 0.3,0 0.4,0.1 0.1,0.1 0.2,0.2 0.3,0.2 0.1,0.1 0.2,0.1 0.3,0.2 0.1,0.1 0.2,0.1 0.3,0.2 0.2,0.1 0.3,0.2 0.5,0.3 0.1,0.1 0.2,0.1 0.3,0.2 0.1,0 0.1,0 0.2,0.1 0.1,0.1 0.3,0.2 0.4,0.2 0.1,0.1 0.2,0.1 0.3,0.2 0.1,0.1 0.1,0.2 0.1,0.3 0,0.1 0.1,0.2 0.1,0.4 -0.1,0.2 -0.2,0.1 -0.3,0.1 -0.2,0 0,0.3 0,0.4 0,0.1 0,0.2 0,0.2 0,0.1 0,0.1 0,0.1 0,0 0,0.1 0,0.1 0,0 0,0.1 0,0.1 0,0 0,0 0,0.1 0,0.1 0,0.1 -0.1,0.1 -0.1,0.1 -0.2,0.1 -0.3,0.1 -0.1,0 -0.1,0 -0.2,-0.1 0,0 -0.1,-0.1 -0.1,-0.1 -0.1,0 -0.2,0 -0.2,0 -0.1,0.1 0,0.2 0,0.3 -0.1,0 -0.2,-0.1 -0.2,0 -0.1,0 -0.1,0 -0.1,0.1 -0.1,0 -0.2,0 -0.3,0.1 -0.1,-0.1 -0.2,0 -0.3,-0.1 -0.1,-0.1 0,-0.1 0,-0.2 0,-0.1 0,-0.1 0,-0.2 0,-0.1 0,-0.1 0,-0.2 0,-0.2 -0.2,-0.2 -0.3,-0.2 -0.1,-0.1 -0.2,-0.1 -0.3,-0.2 -0.2,-0.1 -0.5,-0.3 -0.4,-0.6 0,-0.1 0.1,-0.1 0.1,-0.2 0,-0.1 0,-0.1 -0.1,-0.2 0,0 -0.1,-0.1 -0.1,-0.2 0,-0.1 0,-0.1 0,-0.2 0,-0.1 -0.1,-0.1 -0.1,-0.2 0,0 0,-0.1 -0.1,-0.1 -0.1,-0.1 -0.1,-0.1 -0.2,-0.2 0,-0.1 -0.1,-0.1 -0.1,-0.2 0,-0.1 0,-0.1 0,-0.2 0,-0.1 -0.2,-0.2 -0.3,-0.2 -0.1,-0.1 -0.2,-0.1 -0.2,-0.2 -0.1,-0.1 -0.1,-0.3 -0.2,-0.4 0,-0.1 -0.1,-0.1 -0.2,-0.2 -0.1,0 -0.1,0 -0.2,0 -0.1,0 -0.1,-0.1 -0.2,-0.1 -0.1,0 -0.1,0.1 -0.2,0.1 -0.1,0 -0.1,0 -0.2,-0.1 -0.1,0 -0.1,-0.1 -0.2,-0.1 0,0 -0.1,0 -0.1,0.1 0.1,0.1 0.3,0.2 0.4,0.4 0.1,0.1 0.3,0.4 0.1,0.6 -0.1,0.1 -0.3,-0.2 -0.4,-0.3 -0.1,-0.1 -0.1,-0.2 -0.2,-0.2 -0.1,0 -0.1,-0.1 -0.2,-0.1 -0.1,-0.1 -0.2,-0.2 -0.3,-0.3 -0.1,-0.1 -0.1,-0.2 -0.2,-0.2 -0.1,-0.1 -0.2,-0.1 -0.3,-0.2 -0.2,-0.1 -0.3,-0.4 -0.6,-0.4 -0.2,0 -0.4,-0.1 -0.6,-0.2 -0.1,-0.1 -0.2,-0.2 -0.3,-0.3 -0.1,0 -0.1,0 -0.2,-0.1 0,-0.1 -0.1,-0.2 -0.1,-0.1 0,0.1 0.1,0.2 0.2,0.2 0,0 0.1,0.1 0.1,0.1 0,0 0.1,0.1 0.1,0.1 0.1,0 0.1,0.1 0.2,0.1 0.1,0 0.2,0.1 0.2,0.1 0.1,0.1 0.2,0.1 0.3,0.2 0.1,0 0.1,0.1 0.2,0.1 0.1,0.1 0.1,0.2 0.2,0.2 0,0.1 0.1,0.2 0.1,0.3 0,0.3 -0.3,0.1 -0.4,0 -0.1,-0.1 -0.4,-0.1 -0.5,-0.1 0,0.1 0.1,0.1 0.1,0.1 0.1,0 0.2,0.1 0.3,0.1 0.2,0.1 0.4,0.1 0.6,0.1 0.1,0.1 0.3,0.1 0.4,0.2 0.1,0.1 0.2,0.2 0.3,0.3 0.1,0.1 0.2,0.1 0.2,0.1 0.1,0.1 0.2,0.3 0.4,0.4 0.1,0.1 0.1,0.3 0.2,0.5 0.1,0.1 0.1,0.3 0.1,0.4 0,0.2 -0.1,0.3 -0.3,0.2 -0.1,0 -0.1,-0.1 -0.2,-0.2 -0.1,0 -0.1,-0.1 -0.2,-0.1 -0.1,-0.1 -0.2,-0.1 -0.2,-0.2 -0.1,-0.1 -0.1,-0.1 -0.2,-0.1 -0.2,-0.1 -0.4,-0.1 -0.6,-0.2 -0.1,0 -0.1,-0.1 -0.2,-0.2 -0.1,-0.1 -0.2,-0.1 -0.2,-0.1 -0.2,-0.1 -0.4,-0.2 -0.6,-0.2 -0.3,-0.1 -0.5,-0.2 -0.7,-0.3 -0.2,-0.1 -0.4,-0.3 -0.6,-0.5 -0.2,-0.1 -0.4,-0.2 -0.6,-0.4 -0.1,-0.1 -0.2,-0.2 -0.3,-0.4 -0.1,-0.2 -0.3,-0.3 -0.3,-0.5 0,-0.1 0,-0.1 0,-0.2 0,0 -0.1,-0.1 -0.1,-0.1 -0.1,-0.1 -0.1,-0.1 -0.2,-0.2 -0.1,-0.2 -0.2,-0.3 -0.4,-0.4 -0.5,-0.2 -1.1,-0.4 -1.6,-0.8 -0.2,-0.1 -0.4,-0.3 -0.6,-0.4 -0.1,-0.1 -0.3,-0.1 -0.4,-0.1 -0.1,0 -0.2,-0.1 -0.2,-0.2 -0.1,-0.1 -0.2,-0.1 -0.3,-0.2 -0.1,0 -0.2,-0.1 -0.3,-0.1 -0.2,-0.1 -0.3,-0.2 -0.5,-0.3 -0.2,-0.1 -0.3,-0.3 -0.4,-0.5 -0.1,-0.1 -0.2,-0.3 -0.2,-0.4 0,-0.2 0,-0.4 0.2,-0.5 0.1,0 0.2,0 0.2,-0.1 0,-0.1 -0.1,-0.1 -0.1,-0.2 -0.1,-0.1 -0.2,-0.2 -0.2,-0.3 0,-0.1 0,-0.2 -0.1,-0.2 -0.1,-0.1 -0.2,-0.2 -0.3,-0.3 -0.2,-0.2 -0.6,-0.4 -0.8,-0.7 -0.1,-0.1 -0.2,-0.2 -0.3,-0.3 -0.1,0 -0.1,-0.1 -0.2,-0.1 -0.2,-0.1 -0.4,-0.3 -0.6,-0.4 -0.1,-0.1 -0.2,-0.1 -0.3,-0.2 -0.1,-0.1 -0.1,-0.1 -0.2,-0.2 -0.1,-0.1 -0.1,-0.1 -0.2,-0.2 0,0 0,0 0,0 -0.1,-0.1 -0.3,-0.2 -0.4,-0.2 -0.1,-0.1 -0.2,-0.1 -0.3,-0.2 0.1,0 0.1,0.1 0.2,0.1 0.1,0 0.1,0.1 0.2,0.1 0.1,0 0.2,0.1 0.2,0.1 0,0 0.1,0.1 0.1,0.1 0.1,0 0.1,0 0.2,0 0,0 0.1,0.1 0.1,0.1 0.3,0.1 0.5,0.3 0.8,0.5 0.2,0.1 0.5,0.1 0.7,0.3 0.1,0.1 0.3,0.2 0.4,0.3 0.1,0.1 0.2,0.2 0.3,0.2 0.2,0.1 0.4,0.3 0.6,0.4 0.1,0.1 0.2,0.1 0.3,0.2 0.1,0.1 0.2,0.2 0.3,0.3 0.1,0.1 0.2,0.2 0.3,0.2 0.1,0.1 0.3,0.1 0.4,0 0,-0.1 -0.2,-0.2 -0.2,-0.2 -0.1,-0.1 -0.2,-0.1 -0.4,-0.2 -0.1,-0.1 -0.3,-0.1 -0.4,-0.3 -0.1,-0.1 -0.2,-0.2 -0.2,-0.3 -0.1,-0.1 -0.2,-0.2 -0.3,-0.2 -0.1,-0.1 -0.2,-0.2 -0.3,-0.3 -0.1,-0.1 -0.2,-0.2 -0.2,-0.2 -0.1,-0.1 -0.2,-0.2 -0.2,-0.2 0.1,0 0.2,0 0.2,0 0.1,0 0.2,0 0.2,0 0.1,0 0.3,0.1 0.4,0.2 0.2,0.1 0.3,0.2 0.5,0.3 0.1,0.1 0.2,0.1 0.3,0.1 0.1,0 0.2,0.1 0.3,0.1 0.1,0 0.1,0.1 0.2,0.1 0.1,0 0.2,0.1 0.2,0.1 0.2,0.1 0.4,0.1 0.6,0.2 0.1,0.1 0.2,0.1 0.3,0.2 0.1,0 0.2,0.1 0.3,0.2 0.2,0.1 0.3,0.1 0.5,0.2 0.2,0.1 0.4,0.2 0.6,0.2 0.1,0 0.3,0.1 0.4,0.1 0.1,0.1 0.2,0.1 0.3,0.2 0.2,0.1 0.4,0.1 0.6,0.2 0.2,0 0.3,0.1 0.5,0.2 0.3,0.1 0.6,0.4 0.9,0.5 0.2,0.1 0.4,0.1 0.5,0.2 0.1,0.1 0.3,0.2 0.4,0.3 0.2,0.1 0.4,0.3 0.5,0.4 0.2,0.1 0.4,0.3 0.7,0.2 0,-0.2 -0.5,-0.3 -0.6,-0.4 -0.2,-0.1 -0.3,-0.3 -0.5,-0.4 -0.1,-0.1 -0.2,-0.2 -0.3,-0.3 0,0 -0.1,-0.1 -0.1,-0.1 0,0 -0.1,-0.1 -0.1,-0.1 0,0 0,0 0,0 -0.1,0 -0.1,0 -0.2,0 0,0 -0.1,0 -0.1,0 -0.1,0 -0.2,-0.1 -0.1,-0.2 0.1,0 0.2,0 0.2,0.1 0.1,0 0.1,0.1 0.2,0.1 0,0 0,0 0,0 0.1,0 0.1,0.1 0.1,0.1 0.2,0.1 0.3,0.2 0.5,0.4 0.1,0.1 0.2,0.1 0.3,0.2 0.1,0.1 0.2,0.1 0.3,0.2 0.1,0 0.2,0.1 0.3,0.1 0.1,0.1 0.2,0.2 0.3,0.3 0.1,0 0.1,0 0.2,0.1 0,0 0,0.1 0.1,0.1 0.1,0.1 0.2,0.1 0.3,0.2 0.1,0.1 0.2,0.1 0.3,0.2 0.1,0 0.2,0.1 0.2,0.1 0.2,0.1 0.3,0.2 0.5,0.3 0.1,0 0.1,0.1 0.2,0.1 0.1,0 0.2,0 0.3,0.1 0.4,0.2 0.8,0.4 1.1,0.6 0.2,0.2 0.4,0.3 0.6,0.4 0.1,0.1 0.1,0.1 0.2,0.2 0.1,0 0.2,0.1 0.2,0.1 0,0 0.1,0.1 0.1,0.1 0,0 0.1,0.1 0.1,0.1 0.1,0.1 0.2,0.1 0.3,0.1 0.1,0 0.2,0 0.2,0.1 0.1,0.1 0.1,0.1 0.2,0.2 0.3,0.3 0.7,0.6 1.1,0.8 0.2,0.1 0.4,0.2 0.6,0.3 0.1,0 0.2,0 0.2,0.1 0.1,0 0.1,0.1 0.2,0.2 0.1,0.1 0.2,0.1 0.3,0.2 0.1,0.1 0.2,0.2 0.3,0.2 0,0 0.1,0.1 0.1,0.1 0,0 0.1,0 0.1,0 0.1,0 0.2,0.1 0.3,0.1 0.2,0.1 0.3,0.2 0.4,0.3 0.1,0 0.2,0.1 0.2,0.1 0.2,0.1 0.4,0.2 0.5,0.3 0.1,0.1 0.2,0.2 0.3,0.3 0,0.1 0.1,0.1 0.1,0.2 -0.2,0.6 -0.3,0.6 -0.4,0.7 z m -5.7,247.8 c 0,0.1 -0.1,0.2 -0.1,0.3 -0.1,0 -0.1,0 -0.2,0 -0.2,-0.1 -0.4,-0.1 -0.5,-0.2 0.1,0 0.3,-0.1 0.4,-0.2 H 261 c 0,0 0,0 0,0 0,-0.1 0,-0.2 0,-0.3 0.1,-0.1 0.2,-0.1 0.3,-0.1 0.2,-0.1 0.7,0.1 0.6,0.5 z m 57.6,-45.8 c 0.1,-0.1 0.4,-0.7 0.6,-0.5 0.2,0.2 -0.1,0.6 -0.2,0.8 -0.1,0.3 -0.3,0.5 -0.5,0.8 -0.3,0.5 -0.7,1 -1,1.4 -0.3,0.5 -0.6,1.1 -0.9,1.6 -0.1,0.3 -0.3,0.5 -0.5,0.7 -0.1,0.2 -0.2,0.4 -0.3,0.6 -0.1,0.1 -0.1,0.3 -0.2,0.4 -0.1,0.1 -0.1,0.2 -0.2,0.3 -0.1,0.1 -0.3,0.2 -0.4,0.3 0,0 -0.2,0 -0.2,0 -0.1,0 -0.1,-0.2 0,-0.2 0,-0.1 0.1,-0.3 0.1,-0.4 0,0 -0.1,0.1 -0.1,0.1 l 0,0.1 c 0,0 0,0 0,0 0,0 0,0 0,0 l 0.1,-0.2 c 0,0 0,0.1 0,0.1 0,0 0,0 0,0 0.1,-0.2 0.3,-0.3 0.4,-0.5 0.3,-0.4 0.6,-0.8 0.8,-1.2 0,-0.2 0.1,-0.3 0.2,-0.5 0.1,-0.2 0.2,-0.3 0.4,-0.5 0.1,-0.1 0.2,-0.2 0.3,-0.4 0.1,-0.2 0.2,-0.3 0.3,-0.5 0.1,-0.1 0.2,-0.2 0.2,-0.4 0,-0.1 0.1,-0.1 0.1,-0.2 0,0 0.1,-0.1 0.1,-0.1 0,-0.1 0.1,-0.1 0.1,-0.1 0,-0.1 0,-0.1 0.1,-0.2 0.1,-0.1 0.1,-0.2 0.2,-0.3 0.1,-0.4 0.3,-0.7 0.5,-1 z m -9.9,8.9 c 0,-0.1 0.2,-0.2 0.2,-0.3 0.1,-0.1 0.2,-0.2 0.3,-0.3 0.2,-0.2 0.2,-0.4 0.4,-0.5 0.2,-0.2 0.4,-0.4 0.6,-0.6 0.1,-0.1 0.2,-0.1 0.3,-0.1 0.1,0 0.1,-0.1 0.1,-0.2 0.1,-0.1 0.1,-0.1 0.2,-0.2 0.1,-0.1 0.1,-0.2 0.2,-0.2 0,0 0.1,-0.1 0.1,-0.1 0,0 0.1,0 0.1,-0.1 0.1,0 0.1,-0.1 0.1,-0.2 0,0 0.1,-0.1 0.1,-0.1 0.1,-0.1 0.1,-0.2 0.1,-0.2 0.1,-0.2 0.3,-0.4 0.4,-0.6 0.1,-0.2 0.3,-0.3 0.4,-0.5 0.1,-0.2 0.2,-0.3 0.3,-0.5 0.1,-0.1 0.1,-0.3 0.2,-0.4 0.1,-0.2 0.3,-0.2 0.4,-0.3 0.1,-0.1 0.2,-0.1 0.2,-0.2 0.1,-0.1 0.2,-0.2 0.4,-0.3 0.1,-0.1 0.2,-0.2 0.3,-0.3 0.1,-0.1 0.2,-0.1 0.2,-0.2 0.1,-0.1 0.2,-0.2 0.3,-0.3 0.1,-0.1 0.2,-0.2 0.3,-0.3 0.1,-0.1 0.2,-0.3 0.4,-0.4 0.1,-0.1 0.2,-0.3 0.4,-0.4 0.1,-0.1 0.3,-0.3 0.4,-0.4 0.2,-0.2 0.3,-0.4 0.5,-0.6 0.1,-0.2 0.2,-0.3 0.4,-0.5 0.1,-0.1 0.1,-0.1 0.2,-0.2 0.1,-0.1 0.2,-0.2 0.3,-0.4 0.1,-0.1 0.2,-0.2 0.3,-0.3 0.1,0 0.1,-0.1 0.1,-0.1 0.1,-0.1 0.3,-0.1 0.4,-0.2 0,0 0.1,-0.1 0.1,-0.1 0,0.1 -0.1,0.4 -0.2,0.5 -0.1,0.2 -0.2,0.3 -0.3,0.4 -0.1,0.1 -0.2,0.3 -0.3,0.4 -0.1,0.1 -0.2,0.2 -0.3,0.3 -0.1,0.1 -0.1,0.2 -0.2,0.3 0,0.1 -0.1,0.1 -0.2,0.2 -0.2,0.2 -0.3,0.5 -0.4,0.7 -0.1,0.1 -0.1,0.3 -0.1,0.4 -0.1,0.2 -0.1,0.3 -0.2,0.5 -0.1,0.3 -0.3,0.6 -0.4,0.9 -0.1,0.2 -0.4,0.4 -0.5,0.7 -0.2,0.3 -0.6,0.6 -0.9,0.9 -0.3,0.3 -0.7,0.6 -1,0.9 -0.4,0.3 -0.7,0.6 -1.1,0.9 -0.4,0.2 -0.7,0.5 -1.1,0.8 -0.3,0.2 -0.5,0.4 -0.8,0.6 -0.3,0.3 -0.6,0.6 -1,0.8 -0.1,0.1 -0.1,0.1 -0.2,0.2 0,0 -0.1,0.1 -0.1,0.1 -0.1,0 -0.1,0 -0.2,0.1 0,0 -0.1,0.1 -0.1,0.1 0,0 0,0 -0.1,0 h 0 0 c 0,0 -0.1,0 0,-0.1 z m -5.7,6.3 c 0.2,-0.2 0.5,-0.4 0.8,-0.6 0.2,-0.1 0.3,-0.3 0.5,-0.4 0.1,0 0.1,0 0.2,-0.1 0.3,-0.2 0.6,-0.4 0.8,-0.6 0.1,-0.1 0.3,-0.2 0.4,-0.3 0.1,-0.1 0.2,-0.2 0.3,-0.2 0.1,-0.1 0.2,-0.1 0.4,-0.1 0.2,-0.1 0.3,-0.2 0.5,-0.3 0.1,-0.1 0.2,-0.2 0.2,-0.3 0.1,-0.1 0.2,-0.2 0.3,-0.3 0.3,-0.3 0.5,-0.6 0.7,-0.8 0.1,-0.1 0.2,-0.2 0.3,-0.2 0.1,0 0.1,0 0.1,-0.1 0,-0.1 -0.1,-0.1 -0.1,-0.2 0,-0.1 0.2,-0.1 0.2,-0.2 0.1,-0.1 0.2,-0.1 0.3,-0.2 0,0 0.1,-0.1 0.1,-0.1 0.1,0 0,0 0.1,0.1 0,0 0.1,0 0.1,0 0,0 0.1,0.1 0.1,0.1 0.1,0 0.1,-0.2 0.1,-0.2 0,-0.1 0,-0.1 -0.1,-0.2 0,0 -0.1,0 0,-0.1 0,-0.1 0.1,-0.1 0.2,-0.2 0.2,-0.2 0.4,-0.4 0.6,-0.6 0.1,-0.1 0.2,-0.3 0.4,-0.3 0.1,0 0.2,0 0.2,0 0.1,-0.1 0.2,-0.1 0.3,-0.2 0.2,-0.2 0.4,-0.4 0.6,-0.6 0.1,-0.1 0.2,-0.2 0.3,-0.3 0.2,-0.1 0.3,-0.2 0.5,-0.3 0.3,-0.2 0.5,-0.5 0.8,-0.7 0.1,0 0.1,-0.1 0.2,-0.1 0.1,0 0.1,0 0.1,0 0.1,0.1 -0.1,0.3 -0.1,0.3 l 0,-0.1 c -0.1,0.1 -0.1,0.2 -0.2,0.3 -0.1,0.1 -0.2,0.3 -0.3,0.4 -0.1,0.1 -0.2,0.3 -0.3,0.4 -0.2,0.3 -0.5,0.5 -0.8,0.7 -0.1,0.1 -0.2,0.2 -0.3,0.3 -0.1,0.1 -0.2,0.3 -0.3,0.4 -0.1,0.1 -0.2,0.3 -0.3,0.4 0,0.1 -0.1,0.1 0,0.2 0.1,0 0.2,0 0.2,0 0.2,-0.1 0.3,-0.2 0.5,-0.4 0.1,-0.1 0.1,-0.1 0.2,-0.2 0.1,-0.1 0.1,-0.2 0.2,-0.2 0.1,-0.2 0.3,-0.3 0.4,-0.5 0.1,-0.2 0.2,-0.3 0.4,-0.5 0.1,-0.1 0.3,-0.2 0.4,-0.3 0,-0.1 0.1,-0.1 0.1,-0.2 0,0 0.1,-0.1 0.1,-0.1 0.2,-0.2 0.3,-0.4 0.6,-0.4 -0.1,0.1 -0.1,0.2 -0.2,0.3 -0.1,0.1 -0.2,0.3 -0.3,0.5 -0.1,0.2 -0.2,0.4 -0.3,0.6 -0.1,0.1 -0.1,0.2 -0.2,0.2 -0.1,0.1 -0.2,0.1 -0.3,0.2 -0.3,0.2 -0.6,0.4 -0.9,0.7 -0.2,0.2 -0.4,0.5 -0.5,0.8 -0.1,0.1 -0.1,0.3 -0.2,0.4 -0.1,0.1 -0.2,0.3 -0.3,0.3 -0.3,0.2 -0.6,0.5 -0.9,0.7 -0.1,0.1 -0.2,0.3 -0.3,0.4 -0.1,0.2 -0.2,0.3 -0.4,0.4 -0.2,0.2 -0.5,0.3 -0.7,0.5 -0.1,0.1 -0.1,0.2 -0.2,0.2 -0.1,0 -0.2,0 -0.2,0.1 -0.1,0 -0.2,0.1 -0.3,0.2 -0.1,0.1 -0.2,0.1 -0.3,0.2 -0.1,0.1 -0.2,0.1 -0.2,0.2 -0.2,0.2 -0.5,0.3 -0.7,0.3 -0.1,0 -0.3,0 -0.4,0 -0.2,0 -0.3,0.2 -0.4,0.3 -0.1,0.1 -0.1,0.1 -0.2,0.2 -0.1,0.1 -0.1,0.2 -0.2,0.3 -0.1,0.1 -0.2,0.2 -0.4,0.3 -0.1,0.1 -0.2,0.2 -0.3,0.3 -0.1,0.1 -0.2,0.2 -0.4,0.3 -0.1,0.1 -0.3,0.2 -0.5,0.3 -0.1,0.1 -0.3,0.3 -0.4,0.4 -0.1,0.1 -0.3,0.4 -0.3,0.1 -0.1,-0.3 0.2,-0.6 0.3,-0.8 0,-0.1 0.1,-0.2 0.1,-0.2 0,-0.1 0,-0.2 -0.1,-0.2 0,0 0,0 0,-0.1 0,-0.1 -0.1,0 -0.1,0.1 -0.1,0 -0.1,0.1 -0.2,0.2 -0.1,0 -0.1,0 -0.2,-0.1 -0.1,-0.2 0.1,-0.4 0.1,-0.5 z m 6.4,-74.9 c -0.2,0.3 -0.3,0.6 -0.4,0.9 -0.1,0.2 -0.3,0.4 -0.4,0.6 -0.1,0.3 -0.1,0.5 -0.2,0.8 -0.1,0.2 -0.1,0.4 -0.2,0.7 0,0.2 -0.1,0.6 -0.3,0.8 -0.2,0.3 -0.4,0.5 -0.5,0.8 -0.2,0.3 -0.2,0.7 -0.5,0.9 -0.2,0.2 -0.4,0.2 -0.5,0.4 -0.1,0.2 -0.1,0.4 -0.2,0.6 -0.1,0.2 0,0.4 0,0.7 0,0.1 -0.1,0.2 -0.1,0.4 -0.1,0.4 -0.3,0.8 -0.4,1.2 -0.2,0.7 -0.6,1.3 -0.8,2 -0.1,0.3 -0.2,0.6 -0.4,0.9 -0.2,0.3 -0.3,0.5 -0.5,0.8 0,0.1 0,0.2 -0.1,0.3 -0.1,0.5 -0.3,0.9 -0.4,1.4 -0.1,0.4 -0.3,0.9 -0.5,1.3 -0.2,0.4 -0.3,0.7 -0.5,1.1 -0.2,0.4 -0.3,0.9 -0.5,1.3 -0.2,0.4 -0.4,0.8 -0.6,1.2 -0.1,0.3 -0.3,0.6 -0.4,0.9 -0.1,0.2 -0.1,0.5 -0.2,0.7 -0.3,0.5 -0.5,0.9 -0.7,1.4 -0.1,0.2 -0.2,0.4 -0.3,0.6 -0.1,0.3 -0.3,0.5 -0.5,0.7 -0.2,0.4 -0.4,0.7 -0.7,1.1 -0.2,0.3 -0.3,0.7 -0.5,1 -0.2,0.3 -0.3,0.5 -0.6,0.8 -0.4,0.4 -0.8,0.8 -1.1,1.2 -0.1,0.1 -0.2,0.2 -0.3,0.3 -0.1,0.1 -0.2,0.1 -0.3,0.2 -0.3,0.2 -0.4,0.6 -0.5,0.8 -0.2,0.3 -0.4,0.6 -0.6,0.9 -0.2,0.3 -0.4,0.6 -0.6,0.8 -0.2,0.3 -0.3,0.5 -0.4,0.8 -0.1,0.3 -0.3,0.6 -0.3,0.9 0,0.3 0.1,0.7 0,1 -0.1,0.4 -0.3,0.8 -0.5,1.2 -0.1,0.3 -0.2,0.6 -0.3,0.9 0,0.2 -0.2,0.3 -0.2,0.5 0,0.1 0,0.2 0,0.3 0,0.1 0.1,0.1 0.1,0.2 0.1,0.4 -0.1,0.7 -0.2,1.1 0,0.2 -0.1,0.3 -0.2,0.5 0,0.1 -0.1,0.2 -0.1,0.3 0,0.1 -0.1,0.1 -0.1,0.2 -0.1,0.3 -0.1,0.7 -0.1,1 0,0.4 -0.3,0.6 -0.5,0.9 -0.1,0.1 -0.1,0.3 -0.2,0.5 -0.1,0.1 -0.2,0.3 -0.2,0.4 -0.1,0.2 -0.1,0.4 -0.1,0.5 0,0.1 -0.1,0.1 -0.1,0.2 0,0.1 0,0.2 0,0.3 0,0.2 -0.1,0.2 -0.1,0.4 0,0.1 0,0.2 0,0.3 0,0.1 -0.1,0.1 -0.1,0.2 -0.1,0.4 -0.1,0.7 -0.2,1.1 -0.1,0.3 -0.3,0.6 -0.5,0.8 -0.2,0.3 -0.2,0.6 -0.4,0.9 0,-0.1 0,-0.2 0,-0.2 0,-0.1 0,-0.2 0.1,-0.3 0,-0.1 0,-0.2 0,-0.3 0,-0.2 0,-0.2 0.1,-0.3 0.1,-0.2 0.1,-0.4 0.2,-0.5 -0.1,-0.1 -0.1,-0.3 -0.1,-0.5 0,-0.4 0,-0.8 0.1,-1.1 0.1,-0.2 0.1,-0.5 0.1,-0.7 0.1,-0.3 0.1,-0.5 0.2,-0.7 0.1,-0.3 0.2,-0.6 0.3,-0.9 0.1,-0.4 0.2,-0.9 0.4,-1.3 0.2,-0.5 0.4,-1 0.5,-1.5 0.1,-0.4 0.2,-0.8 0.4,-1.2 0.1,-0.3 0.2,-0.7 0.3,-1 0.1,-0.3 0.2,-0.6 0.3,-0.8 0.2,-0.5 0.4,-0.9 0.6,-1.3 0.1,-0.4 0.4,-0.6 0.6,-1 0.2,-0.4 0.3,-0.8 0.5,-1.2 0.2,-0.6 0.4,-1.3 0.7,-1.9 0.2,-0.4 0.5,-0.8 0.6,-1.2 0.1,-0.2 0.1,-0.4 0.2,-0.6 0,-0.1 0,-0.2 0,-0.3 0,-0.1 0,-0.3 0.1,-0.4 0,-0.1 0.1,-0.1 0.1,-0.2 0,-0.1 0,-0.2 0,-0.3 0,-0.2 0,-0.4 0,-0.6 0,-0.2 -0.1,-0.4 -0.1,-0.6 0,-0.1 0,-0.2 0,-0.3 0,-0.1 -0.1,-0.2 -0.1,-0.2 -0.1,-0.4 -0.1,-0.7 -0.2,-1.1 -0.1,-0.3 -0.3,-0.7 -0.5,-1 -0.2,-0.3 -0.4,-0.5 -0.4,-0.8 0,-0.2 0,-0.4 0,-0.5 0,-0.2 0.2,-0.4 0.2,-0.6 0,-0.1 0,-0.3 0,-0.5 0,-0.2 0.1,-0.4 0.1,-0.6 0.1,-0.3 0.2,-0.7 0.3,-1 0.1,-0.3 0.2,-0.7 0.3,-1 0,-0.1 0.1,-0.1 0.1,-0.2 0,-0.1 0,-0.2 0,-0.3 0,-0.1 0.1,-0.1 0.1,-0.2 0,-0.1 0,-0.2 0,-0.3 0.2,-0.7 0.4,-1.5 0.8,-2.1 0.2,-0.2 0.4,-0.5 0.6,-0.7 0.2,-0.1 0.5,-0.4 0.7,-0.4 0,0.1 0.1,0.1 0.1,0.2 0,0.1 0,0.3 0,0.4 0,0.3 -0.1,0.6 -0.2,0.8 -0.2,0.3 -0.2,0.6 -0.3,1 0,0.2 -0.1,0.5 -0.2,0.7 -0.1,0.3 -0.1,0.5 0.2,0.6 0.4,0.2 0.5,-0.2 0.7,-0.5 0.2,-0.5 0.5,-1.2 0.5,-1.7 0,-0.7 0.2,-1.4 0.6,-2 0.1,-0.1 0.2,-0.3 0.3,-0.4 0.1,-0.3 0.2,-0.5 0.3,-0.8 0,-0.2 0,-0.3 0,-0.4 0,-0.1 0.1,-0.2 0.1,-0.4 0,-0.3 0,-0.6 0.1,-0.9 0,-0.2 0.1,-0.3 0.1,-0.5 0,-0.2 0,-0.5 0.1,-0.7 -0.1,0 -0.1,0 -0.2,0 0.1,-0.2 0.2,-0.3 0.3,-0.5 0,0 0,-0.1 0,-0.1 0,-0.2 0.1,-0.3 0.2,-0.5 0,-0.2 0,-0.3 0,-0.5 0,-0.3 0.1,-0.6 0.2,-0.8 0.1,-0.2 0.2,-0.3 0.3,-0.5 0.1,-0.2 0.1,-0.3 0.2,-0.5 0.1,-0.2 0.3,-0.3 0.5,-0.5 0.1,-0.2 0.2,-0.4 0.3,-0.6 0.1,-0.2 0.2,-0.3 0.4,-0.5 0.1,-0.2 0.2,-0.4 0.3,-0.6 0.3,-0.5 0.8,-1 1.2,-1.4 0.3,-0.3 0.5,-0.5 0.8,-0.7 0,0 0.1,0 0.1,0 0,0 0.1,-0.1 0.1,-0.1 0.2,-0.1 0.3,-0.2 0.4,-0.1 0.2,0.1 0.3,0.4 0.3,0.6 0.1,0.2 0.2,0.4 0.2,0.7 0,0.5 0,0.9 -0.1,1.4 -0.1,0.2 -0.1,0.4 -0.2,0.6 -0.1,0.2 -0.2,0.3 -0.4,0.5 -0.1,0.2 -0.3,0.3 -0.4,0.5 -0.2,0.3 -0.4,0.6 -0.6,0.9 -0.1,0.2 -0.3,0.4 -0.4,0.6 -0.1,0.2 -0.1,0.4 -0.2,0.6 -0.2,0.4 -0.5,0.7 -0.8,1 0,0 0,0 0,0 -0.1,0.9 -0.5,1.7 -1.1,2.4 -0.1,0.1 -0.2,0.3 -0.3,0.4 0,0.1 -0.1,0.1 -0.1,0.2 -0.1,0.1 -0.1,0.2 -0.2,0.2 0,0.1 -0.1,0.1 -0.1,0.2 -0.1,0.2 -0.2,0.5 -0.4,0.7 -0.1,0.2 -0.2,0.5 -0.3,0.8 -0.1,0.3 -0.1,0.6 -0.2,0.9 -0.1,0.3 -0.1,0.6 -0.2,0.8 0,0.1 -0.1,0.5 -0.3,0.8 0,0 0,0 0,0.1 0,0.2 0.1,0.4 0.1,0.6 0,0.2 0,0.4 0,0.6 0,0.1 0,0.2 0.1,0.2 0.1,0 0.2,-0.1 0.3,-0.1 0.2,-0.2 0.4,-0.5 0.6,-0.7 0.2,-0.3 0.4,-0.6 0.5,-0.9 0.1,-0.2 0.2,-0.3 0.4,-0.5 0.1,-0.2 0.2,-0.4 0.2,-0.6 0.1,-0.4 0.3,-0.8 0.5,-1.2 0.1,-0.2 0.1,-0.4 0.2,-0.6 0.1,-0.2 0.2,-0.4 0.3,-0.6 0.2,-0.4 0.5,-0.8 0.7,-1.3 0.2,-0.4 0.3,-0.8 0.6,-1.2 0.2,-0.2 0.3,-0.4 0.4,-0.7 0.2,-0.3 0.2,-0.6 0.5,-0.8 0.2,-0.2 0.4,-0.4 0.6,-0.6 0,0 0,-0.1 0,-0.1 0.1,-0.2 0.2,-0.5 0.3,-0.7 0.1,-0.2 0.3,-0.3 0.4,-0.4 0.1,-0.2 0.3,-0.5 0.4,-0.8 0,-0.2 0.1,-0.3 0.1,-0.4 0.1,-0.1 0.1,-0.2 0.1,-0.3 0,-0.2 0,-0.5 0.1,-0.7 0,-0.1 0,-0.1 -0.1,-0.2 0,-0.1 0,-0.1 -0.1,-0.2 -0.1,-0.1 -0.1,-0.2 -0.2,-0.3 -0.1,-0.1 -0.2,-0.4 -0.2,-0.6 0,-0.4 0.6,-0.7 0.8,-0.9 0.4,-0.4 0.8,-0.8 1.1,-1.2 0.3,-0.3 0.6,-0.5 0.8,-0.9 0.2,-0.3 0.2,-0.5 0.4,-0.8 0.3,-0.3 0.5,-0.7 0.8,-1 0.1,-0.1 0.3,-0.4 0.5,-0.4 0,0.1 -0.9,2.4 -1.1,2.7 z M 261.8,29.5 c 0,0 0.3,0.2 0.3,0.1 0,-0.1 -0.2,-0.2 -0.3,-0.3 -0.1,0 -0.1,0 -0.2,0 0,0 0,0 0,0 0.1,0.1 0.1,0.2 0.2,0.2 z m 40.9,152 0,0 0.2,-0.3 c -0.1,0.1 -0.2,0.2 -0.2,0.3 z m 8,75.5 c -0.2,0.3 -0.3,0.5 -0.4,0.8 -0.1,0.2 -0.2,0.3 -0.2,0.5 -0.3,0.7 -1,1.4 -1.5,2 -0.3,0.4 -0.5,0.8 -0.8,1.1 -0.2,0.2 -0.3,0.4 -0.5,0.5 -0.3,0.3 -0.6,0.6 -0.9,0.8 -0.3,0.3 -0.6,0.5 -0.8,0.7 -0.3,0.3 -0.5,0.7 -0.2,1.1 l 0.1,-0.2 0,0.1 c 0.3,-0.1 0.5,-0.4 0.7,-0.5 0.2,-0.1 0.4,-0.4 0.5,-0.7 0.4,-0.8 1.2,-1.4 1.7,-2.1 0.3,-0.4 0.6,-0.8 0.8,-1.2 0.1,-0.3 0.4,-0.5 0.6,-0.8 0.2,-0.2 0.3,-0.4 0.4,-0.6 0.1,-0.2 0.3,-0.3 0.4,-0.6 0.2,-0.3 0.4,-0.5 0.5,-0.7 0.1,-0.1 0.6,-0.9 0.4,-1.1 -0.1,0 -0.7,0.8 -0.8,0.9 z m 1.7,-5 c 0.1,-0.1 0.2,-0.2 0.2,-0.4 0.1,-0.3 0.5,-0.6 0.6,-0.9 0.1,-0.3 0.3,-0.6 0.4,-0.9 0.2,-0.5 0.6,-0.9 0.8,-1.4 0.1,-0.3 0.3,-0.5 0.4,-0.8 0.2,-0.3 0.3,-0.6 0.5,-0.9 0.2,-0.3 0.4,-0.6 0.6,-0.9 0.1,-0.3 0.2,-0.6 0.3,-0.9 0.2,-0.4 0.5,-0.9 0.6,-1.3 0,-0.1 0.1,-0.3 0.1,-0.4 0,0 0.1,-0.3 0.1,-0.3 0,-0.2 -0.2,-0.2 -0.4,-0.1 -0.2,0.1 -0.2,0.4 -0.2,0.6 -0.1,0.1 -0.2,0.3 -0.2,0.5 -0.1,0.4 -0.2,0.8 -0.5,1.1 -0.2,0.2 -0.3,0.5 -0.4,0.7 -0.1,0.2 -0.3,0.4 -0.4,0.6 -0.1,0.2 -0.2,0.4 -0.3,0.6 0,0.1 0,0.2 -0.1,0.3 -0.1,0.2 -0.3,0.3 -0.3,0.4 -0.1,0.2 -0.1,0.5 -0.2,0.7 -0.1,0.2 -0.1,0.3 -0.3,0.5 -0.1,0.1 -0.2,0.2 -0.3,0.4 -0.1,0.2 -0.1,0.3 -0.2,0.5 -0.5,0.7 -1.1,1.5 -1.1,2.4 v 0.3 c 0,-0.1 0.3,-0.4 0.3,-0.4 z m 4.9,-6.5 c -0.2,0.1 -0.3,0.5 -0.4,0.8 -0.1,0.2 -0.3,0.4 -0.4,0.6 -0.3,0.4 -0.5,0.8 -0.7,1.3 -0.2,0.4 -0.6,0.6 -0.8,1 -0.1,0.2 -0.2,0.5 -0.4,0.8 -0.1,0.1 -0.2,0.2 -0.3,0.3 -0.1,0.1 -0.2,0.2 -0.3,0.3 -0.1,0.2 -0.2,0.4 -0.3,0.5 -0.2,0.2 -0.5,0.4 -0.6,0.7 -0.1,0.2 -0.3,0.3 -0.4,0.4 -0.1,0.2 -0.2,0.3 -0.3,0.5 -0.2,0.3 -0.3,0.6 -0.4,0.9 -0.1,0.4 -0.4,0.7 -0.6,1 -0.2,0.3 -0.3,0.7 -0.5,1 -0.1,0.1 -0.2,0.2 -0.3,0.3 -0.1,0.1 -0.2,0.2 -0.2,0.3 -0.2,0.3 -0.4,0.7 -0.6,1.1 -0.1,0.2 -0.4,0.5 -0.5,0.7 0,0.1 -0.1,0.3 -0.1,0.4 0,0 0,0 -0.1,0 l 0.2,0.2 c 0,0 0,0 0,0 0.1,-0.1 0.1,-0.3 0.2,-0.4 0.1,-0.1 0.1,-0.2 0.2,-0.4 0.1,-0.2 0.2,-0.3 0.3,-0.5 0.1,-0.2 0.2,-0.4 0.3,-0.6 0.2,-0.3 0.5,-0.6 0.7,-0.9 0.2,-0.2 0.4,-0.4 0.5,-0.6 0.2,-0.3 0.4,-0.6 0.5,-0.9 0.1,-0.3 0.4,-0.5 0.5,-0.8 0.2,-0.3 0.4,-0.6 0.6,-0.8 0.3,-0.3 0.5,-0.7 0.7,-1 0.2,-0.2 0.4,-0.4 0.5,-0.7 0.2,-0.3 0.3,-0.5 0.5,-0.7 0.3,-0.4 0.5,-0.7 0.8,-1.1 0.1,-0.1 0.2,-0.2 0.2,-0.3 0.1,-0.1 0.1,-0.3 0.2,-0.4 0.1,-0.2 0.2,-0.4 0.3,-0.6 0.2,-0.5 0.5,-0.9 0.7,-1.4 0.1,-0.2 0.2,-0.5 0.3,-0.7 0.3,-0.3 0.2,-0.4 0,-0.3 z m 12.3,-39.3 c 0,-0.2 -0.2,-0.6 -0.5,-0.5 -0.1,0.1 -0.3,0.3 -0.3,0.5 -0.2,0.4 -0.2,0.7 -0.3,1.1 0,0.1 -0.1,0.2 -0.1,0.4 0,0.1 0,0.2 0,0.4 0,0.1 -0.1,0.2 -0.1,0.3 0,0.2 0,0.3 0,0.5 -0.1,0.3 -0.1,0.6 -0.1,0.9 0,0.2 0,0.3 -0.1,0.5 0.3,0.1 0.5,-0.3 0.7,-0.5 0.2,-0.3 0.5,-0.5 0.6,-0.8 0.1,-0.2 0.2,-0.4 0.2,-0.6 0,-0.1 0,-0.2 0,-0.3 0,-0.2 0.1,-0.3 0.1,-0.5 0,-0.5 0,-1 -0.1,-1.4 z m -10.5,34.6 c 0.2,-0.4 0.5,-0.8 0.4,-1.2 -0.1,-0.5 -0.4,0 -0.5,0.2 -0.2,0.3 -0.3,0.5 -0.4,0.8 -0.1,0.3 -0.1,0.6 -0.2,0.9 -0.1,0.2 -0.2,0.4 -0.3,0.6 -0.1,0.2 -0.1,0.4 -0.1,0.5 -0.1,0.2 -0.2,0.4 -0.3,0.6 -0.1,0.2 -0.1,0.4 -0.2,0.6 -0.2,0.5 -0.5,0.9 -0.7,1.3 -0.2,0.3 -0.3,0.6 -0.5,1 -0.1,0.2 -0.2,0.5 -0.3,0.7 -0.2,0.3 -0.5,0.7 -0.5,1 l 0.2,-0.1 c 0,0 0,0 0,0 0.2,0 0.5,-0.6 0.6,-0.7 0.2,-0.3 0.4,-0.6 0.5,-1 0.1,-0.2 0.1,-0.3 0.1,-0.5 0.1,-0.2 0.1,-0.3 0.2,-0.4 0.1,-0.3 0.3,-0.5 0.5,-0.7 0.5,-0.7 0.6,-1.4 0.9,-2.1 0.3,-0.6 0.5,-1 0.6,-1.5 z m 0.7,0.8 c -0.1,0.2 -0.3,0.4 -0.4,0.7 -0.1,0.3 -0.2,0.5 -0.4,0.7 -0.2,0.2 -0.2,0.3 -0.3,0.5 -0.1,0.1 -0.1,0.2 -0.2,0.3 -0.1,0.2 -0.2,0.5 -0.4,0.6 v 0.4 c 0,-0.2 0.3,-0.4 0.4,-0.6 0.3,-0.3 0.5,-0.6 0.7,-0.9 0.1,-0.1 0.1,-0.1 0.2,-0.2 0,-0.1 0.1,-0.1 0.1,-0.2 0.1,-0.2 0.2,-0.4 0.3,-0.6 0.1,-0.3 0.2,-0.8 0,-1.1 0,0.2 0,0.2 0,0.4 z m 8.3,-31.3 c 0,0 0,0 0,0 0,0 0,0 0,0 l 0,0 z M 289.9,285 c 0,0 0,-0.1 0.1,-0.1 0,0 0,0 -0.1,0.1 l 0,0 z m -96.1,-25.7 c 0.1,0 0.2,0 0.4,0.1 0.1,0 0.2,0 0.3,0.1 0.1,0 0.2,0.1 0.3,0.1 0,0 0.1,0 0.1,-0.1 0,-0.1 0,-0.1 0,-0.1 0,-0.1 0,-0.1 0.1,-0.2 0.1,-0.1 0.2,-0.1 0.3,-0.2 0.1,0 0.3,-0.1 0.4,-0.1 0.2,0 0.5,0 0.7,0 0.1,0 0.2,0 0.3,0 0.1,0 0.2,0 0.3,0 0.1,0 0.2,0 0.3,-0.1 0.1,0 0.2,-0.1 0.3,-0.1 0.2,0 0.3,0 0.5,0 0.2,0 0.4,0 0.6,0 0.1,0 0.2,0 0.3,0.1 0.1,0 0.1,0 0.2,0 0.1,0 0.1,0 0.2,0 0.1,0 0.2,0 0.4,0.1 0.1,0 0.2,0 0.3,0.1 0.2,0 0.3,0.1 0.5,0.1 0.1,0 0.3,0 0.4,0 0.1,0 0.1,0 0.2,0 0.1,0 0.1,0 0.2,0 0.2,0 0.5,0 0.7,-0.1 0.1,0 0.2,0 0.3,0 0.1,0 0.1,0.1 0.2,0.1 0.3,0 0.5,-0.2 0.7,-0.3 0.3,-0.1 0.6,0 0.8,0 0.1,0 0.2,-0.1 0.3,-0.1 0,0 0.1,0 0.1,0 0,0 0,-0.1 0.1,-0.1 0.1,0 0.1,-0.1 0.2,-0.1 0,0 0.1,-0.1 0.1,-0.1 0.1,-0.1 0.1,-0.1 0.2,-0.2 0.1,-0.1 0.2,-0.1 0.3,-0.2 0.1,-0.1 0.2,-0.2 0.4,-0.3 0.1,-0.1 0.3,-0.2 0.4,-0.3 0.1,-0.1 0.2,-0.2 0.3,-0.3 0.1,-0.1 0.3,-0.2 0.5,-0.4 0.2,-0.1 0.3,-0.3 0.4,-0.5 0.1,-0.3 0.2,-0.6 0.3,-0.9 0.1,-0.3 0.1,-0.6 0.2,-0.9 0,-0.1 0.1,-0.3 0.1,-0.4 0,-0.1 0,-0.1 0.1,-0.2 0.1,-0.1 0.1,-0.2 0.2,-0.3 0.1,-0.3 -0.2,-0.3 -0.3,-0.5 0,-0.1 0,-0.3 0,-0.4 0,-0.2 0,-0.3 0,-0.5 0,-0.2 0.1,-0.5 0.1,-0.7 0,-0.2 0,-0.3 0,-0.5 0,-0.3 0,-0.4 -0.2,-0.7 -0.1,-0.2 -0.1,-0.4 -0.1,-0.6 0,-0.1 0,-0.2 0,-0.3 0,-0.1 0.1,-0.2 0.1,-0.2 0.1,-0.2 0.2,-0.3 0.3,-0.5 0.1,-0.2 0.2,-0.4 0.3,-0.6 0,-0.1 0,-0.2 0,-0.3 0,-0.1 0,-0.1 0,-0.2 -0.1,-0.2 -0.2,-0.4 -0.3,-0.5 0,-0.1 -0.1,-0.1 -0.1,-0.2 0,0 -0.1,-0.1 -0.1,-0.1 -0.1,-0.1 -0.1,-0.4 -0.1,-0.6 0,-0.1 0,-0.2 0,-0.3 0,-0.1 0.1,-0.2 0.1,-0.3 0,-0.1 0.1,-0.2 0.1,-0.3 0,-0.1 0,-0.2 0,-0.3 0,-0.2 0.1,-0.6 -0.1,-0.7 -0.1,-0.1 -0.2,-0.1 -0.3,-0.3 0,-0.1 -0.1,-0.1 -0.1,-0.2 0,-0.2 0,-0.4 -0.1,-0.5 -0.1,-0.1 -0.2,-0.1 -0.3,-0.2 -0.1,-0.1 -0.1,-0.3 -0.2,-0.4 0,0 0,-0.1 0,-0.1 0,0 -0.1,-0.1 -0.1,-0.1 0,-0.1 0,-0.2 0,-0.3 0,-0.1 0,-0.2 0,-0.3 0,-0.1 0,-0.3 0,-0.4 0,-0.1 -0.1,-0.2 -0.1,-0.3 0,0 0,-0.1 -0.1,-0.1 0,-0.1 0,0 -0.1,0 -0.1,0 -0.2,0 -0.3,-0.1 -0.1,0 -0.1,-0.1 -0.2,-0.1 -0.2,0 -0.3,-0.1 -0.5,-0.1 -0.1,0 -0.2,0 -0.3,0.1 -0.1,0.1 -0.1,0.1 -0.1,0.2 -0.1,0.2 -0.2,0.4 -0.4,0.4 -0.2,0 -0.4,0 -0.7,0 -0.1,0 -0.2,0 -0.3,0 -0.1,0 -0.2,0 -0.2,0.1 0.1,0 0.1,0.1 0.1,0.1 0,0 0.1,0.1 0.1,0.1 0,0.1 -0.1,0.1 -0.1,0.1 -0.2,0 -0.3,0.1 -0.5,0.2 -0.1,0 -0.1,0 -0.2,0.1 -0.1,0.1 -0.1,0.1 -0.2,0.2 -0.1,0.1 -0.1,0.1 -0.2,0.1 0,0 0,0 -0.1,0 0,0 0,0 -0.1,0 -0.1,0 -0.1,0.1 -0.2,0.2 0,0.1 -0.1,0.1 -0.2,0.2 -0.1,0.1 -0.3,0.1 -0.5,0.2 -0.2,0.2 -0.2,0.5 -0.5,0.5 -0.2,0 -0.4,0 -0.5,0 -0.2,-0.1 -0.4,-0.1 -0.5,-0.2 -0.1,-0.1 -0.1,-0.1 -0.1,-0.2 0,-0.1 0.1,-0.1 0.1,-0.2 0,-0.1 0,-0.1 0,-0.2 0,0 0,-0.1 0,-0.1 0,-0.1 0,-0.2 0,-0.3 0,-0.1 0,-0.2 0,-0.3 0,0 0,-0.1 0,-0.1 0,0 0,-0.1 0,-0.1 -0.1,-0.1 -0.4,-0.2 -0.5,-0.1 -0.1,0 -0.2,0.1 -0.2,0.1 -0.1,0 -0.2,0 -0.3,0 -0.1,0 -0.2,0 -0.4,0 -0.1,0 -0.2,0.1 -0.3,0.1 -0.1,0 -0.2,0 -0.3,0.1 -0.1,0 -0.2,0.1 -0.3,0.1 -0.2,0 -0.5,0 -0.7,0.1 -0.3,0.1 -0.5,0.1 -0.8,0.1 -0.1,0 -0.2,0.1 -0.3,0.1 -0.1,0 -0.2,0.1 -0.4,0 -0.1,0 -0.2,-0.1 -0.3,-0.1 -0.1,0 -0.1,0 -0.2,-0.1 -0.1,0.1 -0.1,0.1 -0.2,0.2 -0.1,0 -0.1,0.1 -0.2,0.1 -0.1,0 -0.2,0 -0.3,0 -0.1,0 -0.1,0.1 -0.1,0.2 0,0.2 -0.2,0.3 -0.2,0.5 0,0.2 0.2,0.3 0.2,0.4 0.1,0.1 0.2,0.3 0.2,0.4 0,0.1 0.1,0.2 0.1,0.3 0,0.1 -0.1,0.3 -0.2,0.4 0,0 -0.1,0.1 -0.1,0.1 -0.1,0 0,0 -0.1,-0.1 -0.2,-0.1 -0.3,-0.3 -0.4,-0.5 0,-0.1 0,-0.1 0,-0.2 0,-0.1 0,-0.2 0,-0.2 0,-0.1 -0.1,-0.1 -0.1,-0.2 0,0 0,-0.1 0,-0.1 -0.1,-0.1 -0.1,-0.2 -0.2,-0.2 -0.1,0 -0.2,-0.1 -0.2,-0.2 0,-0.1 0,-0.1 0,-0.2 0,-0.1 0,-0.2 0,-0.3 0,0 0,0 0,-0.1 0,-0.1 0,-0.1 0,-0.1 0,-0.1 -0.1,-0.1 -0.1,-0.2 0,-0.1 -0.1,-0.2 -0.2,-0.2 -0.2,-0.1 -0.4,-0.1 -0.7,-0.1 -0.1,0 -0.2,0.1 -0.3,0.1 -0.1,0.1 -0.2,0.1 -0.3,0.2 -0.1,0.1 -0.2,0.1 -0.3,0.1 -0.1,0 -0.2,0.1 -0.3,0.1 -0.1,0.1 -0.2,0.2 -0.4,0.2 -0.1,0 -0.2,0.1 -0.3,0.1 -0.1,0 -0.1,0 -0.2,0 0,0 -0.1,0.1 -0.1,0.1 0,0 -0.1,0.1 -0.1,0.1 -0.1,0 -0.1,0 -0.2,0 -0.1,0 -0.1,0 -0.2,0.1 -0.1,0 -0.1,0 -0.1,0 0,0 -0.1,0.1 -0.1,0.1 -0.1,0 -0.1,0.1 -0.2,0.1 -0.1,0 -0.2,0.1 -0.3,0.1 -0.1,0 -0.1,0 -0.2,0 -0.1,0.1 -0.2,0.1 -0.3,0.2 -0.2,0.1 -0.4,0.3 -0.6,0.4 -0.2,0.1 -0.3,0.3 -0.4,0.4 -0.1,0 -0.1,0 -0.2,0.1 -0.1,0.1 -0.1,0.1 -0.1,0.2 0,0.1 -0.1,0.1 -0.2,0.2 -0.1,0 -0.1,0 -0.1,0 -0.1,0.1 -0.1,0.2 -0.1,0.3 -0.1,0.1 -0.2,0.2 -0.2,0.4 0,0.1 0,0.2 -0.1,0.3 0,0.1 -0.1,0.2 -0.1,0.3 0,0.1 0,0.2 0,0.3 0,0.1 0,0.2 -0.1,0.3 0,0.1 -0.1,0.2 0,0.3 0,0.1 0.1,0.1 0,0.2 0,0.2 -0.1,0.4 -0.1,0.6 0,0.1 0,0.2 0,0.3 0,0.1 0,0.2 0,0.3 0,0.1 0.1,0.1 0.2,0.2 0.1,0.1 0.1,0.1 0.1,0.2 0,0 0.1,0.1 0.1,0.1 0,0 0.1,0.1 0.1,0.1 0.1,0.1 0.1,0.1 0.2,0.1 0.2,0.1 0.4,0.1 0.5,0.1 0.1,0 0.2,0.1 0.3,0.1 0.1,0.1 0.3,0.1 0.4,0.2 0.1,0.1 0.1,0.1 0.2,0.2 0.1,0.1 0.2,0.1 0.3,0.2 0.1,0.2 0.3,0.2 0.5,0.4 0.2,0.1 0.4,0.2 0.5,0.3 0.2,0.1 0.4,0.2 0.6,0.3 0.2,0.1 0.3,0.3 0.5,0.4 0.2,0.2 0.5,0.3 0.7,0.4 0.2,0.1 0.3,0.1 0.5,0.1 0.1,0 0.1,0 0.2,0 l -0.1,0 c 0.1,0 0.2,0.1 0.2,0.1 0.1,0.1 0,0.2 0,0.3 -0.1,0.2 -0.1,0.3 -0.3,0.4 -0.2,0.1 -0.3,0.3 -0.4,0.4 -0.2,0.1 -0.3,0.1 -0.5,0.1 -0.1,0 -0.2,0 -0.2,0.1 0,0 -0.1,0.1 -0.1,0.2 -0.1,0.2 -0.2,0.3 -0.4,0.4 -0.1,0 -0.1,0 -0.2,0.1 0,0 -0.1,0.1 -0.1,0.1 -0.1,0.1 -0.2,0 -0.3,0.1 -0.1,0 -0.1,0.1 -0.1,0.2 -0.1,0.1 -0.1,0.2 -0.2,0.3 -0.1,0.1 -0.1,0.1 -0.2,0.1 -0.4,0.1 -0.3,0.6 -0.2,0.9 0,0.1 0.1,0.2 0.1,0.4 0,0.1 -0.1,0.2 -0.1,0.2 -0.1,0.1 -0.3,0.2 -0.4,0.1 -0.1,0 -0.1,-0.1 -0.1,-0.2 0,-0.1 0,-0.2 -0.1,-0.3 -0.1,-0.1 -0.2,-0.2 -0.3,-0.3 -0.1,-0.1 -0.4,-0.2 -0.5,-0.3 -0.2,0 -0.5,0 -0.6,0.2 0,0 0,0.1 -0.1,0.1 0,0 -0.1,0.1 -0.1,0.1 -0.1,0.1 -0.2,0 -0.3,0 -0.2,0 -0.5,0 -0.7,0.1 -0.1,0 -0.2,0 -0.3,0.1 -0.1,0 -0.2,0.1 -0.3,0.2 -0.1,0.1 -0.2,0.2 -0.2,0.3 -0.1,0.1 -0.1,0.2 -0.2,0.2 -0.1,0.1 -0.3,0.4 -0.3,0.5 0,0.2 0.1,0.3 0.2,0.4 0.2,0.1 0.3,0.1 0.4,0.3 0,0.1 0,0 0,0.1 0,0.1 0,0.2 0,0.2 0,0.1 0,0.2 0,0.2 0.1,0.1 0.1,0.1 0.2,0.1 0.1,0 0.2,0.1 0.3,0.1 0.1,0 0.1,0 0.2,0 0.1,0 0.1,0 0.1,0 0.1,0 0.2,0 0.2,0.1 0.1,0.1 0,0.2 0.1,0.2 0.1,0.1 0.2,0.1 0.3,0.1 0.1,0 0.1,0 0.2,0 0,0 0.1,0 0.1,0.1 0.1,0 0.2,0 0.3,0 0.2,0 0.4,0 0.6,0.1 0.3,0.1 0.7,0.1 1,0.1 0.5,0 1,0 1.5,0 0.2,0 0.5,0 0.7,0 0.1,0 0.3,-0.1 0.4,-0.1 0.1,0 0.2,0.1 0.2,0.2 0.2,0.2 0.2,-0.1 0.4,-0.1 0.1,0 0.1,0.1 0.2,0.1 0.1,0 0.2,0 0.3,0 0.2,0 0.4,0 0.6,0 0.1,0 0.2,0 0.3,0 0.1,0 0.1,0 0.2,0 0.1,0 0.2,0 0.2,0.1 0.1,0 0.2,0 0.3,0 z m 41.1,-208.9 0,0 c 0,0.1 0,0.2 0.1,0.3 0.1,0 0.2,0.1 0.2,0.1 0,0 0.2,0.1 0.2,0.1 0.2,0.1 0.3,0.1 0.5,0.1 0.2,0 0.4,0.2 0.5,0.2 0.2,0 0.4,-0.1 0.6,-0.1 0.4,0.1 0.8,0.3 1.2,0.4 0.5,0.1 1.1,0.3 1.5,0.6 0.3,0.2 0.6,0.4 0.9,0.4 0.3,0 0.3,-0.1 0.3,-0.4 0,-0.2 -0.1,-0.2 -0.2,-0.4 -0.2,-0.4 -0.4,-0.7 -0.7,-1 -0.2,-0.3 -0.5,-0.5 -0.6,-0.9 -0.1,-0.3 -0.1,-0.7 -0.1,-1.1 0,-0.4 0,-0.8 -0.2,-1.1 -0.1,-0.3 -0.4,-0.5 -0.7,-0.7 -0.4,-0.2 -0.7,0.1 -1.1,0 -0.4,-0.1 -0.6,0 -1,0.1 -0.3,0.1 -0.5,0.1 -0.8,0.1 -0.2,0 -0.4,0 -0.6,0 -0.3,0.1 -0.3,0.6 -0.3,0.9 0,0.1 0.1,0.2 0.1,0.3 0,0 -0.1,0.1 -0.1,0.2 0,0.2 0,0.4 0,0.5 0.3,0.6 0,1.1 0.3,1.4 z M 106.4,167.5 c 0.4,0 0.8,0.1 0.9,-0.4 0.1,-0.3 -0.1,-0.5 -0.2,-0.7 -0.1,-0.4 -0.2,-1.6 -0.7,-1.6 -0.1,0 -0.6,0.3 -0.7,0.4 -0.1,0.2 0,0.6 0,0.9 0,0.3 0.1,0.6 0.2,0.9 0.1,0.2 0.2,0.6 0.2,0.7 l 0.3,-0.2 z m 78.3,88.2 c 0.1,-0.1 0.1,0 0.1,-0.2 0,-0.1 0,-0.1 0,-0.2 0,-0.1 0,-0.2 0,-0.3 0,-0.1 0.1,-0.2 0.1,-0.3 0,-0.1 -0.1,-0.2 -0.2,-0.2 0,-0.1 0,-0.2 -0.1,-0.3 0,-0.1 0,-0.2 -0.1,-0.3 0,-0.1 -0.1,-0.1 -0.1,-0.2 -0.1,-0.1 -0.2,-0.2 -0.3,-0.2 -0.2,0 -0.4,0 -0.6,0 -0.1,0 -0.2,0.1 -0.2,0.2 -0.1,0 -0.1,0.1 -0.2,0.1 -0.1,0.1 -0.2,0.1 -0.3,0.1 -0.1,0 -0.2,0 -0.3,0 -0.1,0 -0.1,0 -0.2,0 -0.1,0 -0.1,0.1 -0.2,0.1 -0.2,0.2 -0.2,0.4 -0.4,0.6 -0.1,0.1 -0.1,0.2 -0.1,0.3 0,0.1 -0.1,0.2 0,0.4 0.1,0.2 0.2,0.3 0.4,0.4 0.1,0.1 0.2,0.1 0.3,0.2 0.1,0 0.1,0 0.1,0 0.1,0 0.1,0 0.2,0 0.1,0 0.2,-0.1 0.3,0 0.1,0 0.2,0 0.2,0.1 0.1,0.1 0.2,0.2 0.3,0.2 0.1,0 0.2,0.2 0.3,0.1 0.1,0 0.1,-0.2 0.1,-0.2 0,-0.1 0.1,-0.2 0.3,-0.3 0.1,-0.1 0.1,-0.1 0.2,-0.1 0.1,-0.1 0.1,-0.1 0.1,-0.2 l 0,0.1 c 0,-0.1 0.1,-0.1 0.2,-0.1 -0.1,0.2 0,0.2 0.1,0.2 z M 230.8,48.8 c 0.1,0 0.3,0.1 0.4,0.1 0.1,0 0.1,0 0.2,-0.1 0.2,-0.1 0.3,-0.2 0.4,-0.2 0.1,-0.1 0.2,-0.1 0.4,-0.1 0,0 0.2,0 0.3,-0.1 0.2,-0.1 0,-0.3 -0.1,-0.4 -0.1,-0.1 -0.3,-0.1 -0.4,-0.2 -0.1,-0.1 -0.2,-0.2 -0.3,-0.2 -0.1,-0.1 -0.3,-0.2 -0.4,-0.2 -0.1,0 -0.3,0 -0.4,0 -0.1,0 -0.1,-0.1 -0.2,-0.1 -0.2,0 -0.4,0 -0.5,-0.1 -0.2,-0.1 -0.4,-0.3 -0.6,-0.3 -0.2,0 -0.2,0 -0.4,0.2 -0.2,0.2 -0.4,0.3 -0.3,0.6 0.1,0.1 0.2,0.3 0.3,0.4 0.1,0.2 0.3,0.4 0.5,0.5 0,0 0.1,0.1 0.1,0.1 0.2,-0.1 0.6,0.1 1,0.1 z m -1,0 c 0,0 -0.1,0 -0.1,-0.1 -0.1,0 -0.2,0 -0.3,0.1 h 0.4 z M 104.4,173.4 c 0,-0.3 0,-0.6 0.1,-0.9 0.2,-0.5 0.9,-0.9 0.9,-1.4 0.1,-0.4 0.1,-1.4 0,-1.8 -0.1,-0.2 -0.3,-0.3 -0.5,-0.4 -0.1,-0.1 -0.1,-0.3 -0.2,-0.4 -0.3,0.3 -0.4,0.7 -0.7,1.1 -0.2,0.3 -0.6,0.4 -0.9,0.6 -0.4,0.2 -0.8,0.3 -1.3,0.4 -0.3,0.1 -0.7,0.1 -0.9,0.5 -0.1,0.1 -0.2,0.3 -0.3,0.4 -0.1,0.2 0,0.5 0,0.7 -0.1,0.2 -0.2,0.3 -0.2,0.5 0,0.2 0,0.5 0,0.7 0.2,0.9 0.7,1.7 0.9,2.7 l -0.2,-0.4 c 0,1.2 1.1,1.6 1.9,0.8 0.3,-0.2 0.8,-0.6 0.9,-0.9 0.2,-0.5 0,-1.1 0.2,-1.6 0.2,-0.2 0.3,-0.4 0.3,-0.6 z m 62.3,97.1 c -0.5,-0.2 -1,-0.7 -1.5,-0.4 -0.5,0.3 -0.1,0.9 -0.4,1.4 -0.2,0.2 -0.4,0.2 -0.6,0.4 -0.1,0.2 0,0.6 0,0.8 0.1,0.3 0.4,1.3 0.8,1.1 l -0.4,0.2 c 0.4,-0.2 1.1,0.2 1.3,-0.3 0.1,-0.3 -0.2,-0.4 -0.1,-0.7 0,-0.2 0.3,-0.3 0.5,-0.4 0.5,-0.4 1.3,-0.8 1.3,-1.4 0.2,-0.6 -0.4,-0.5 -0.9,-0.7 z m 60.3,46.5 0,0 c 0,-0.1 -0.1,-0.1 0,0 -0.1,0 -0.1,0 0,0 z M 162.5,6.4 c 0,0 0,0 0,0 l -0.1,0 c 0,0 0,0 0,0 0,0 0,0 0.1,0 0,0 0,0 0,0 z m 19.9,0.7 c 0.2,0 0.4,0 0.6,0 0.1,0 0.3,0 0.4,0 0.2,0 0.4,0 0.6,0 0.2,0 0.4,0 0.5,0 0.2,0 0.4,0 0.7,0 0.5,0 1,0 1.5,0 0.1,0 0.3,0 0.4,0 0.1,0 0.2,0 0.2,0 0,-0.1 -0.2,-0.1 -0.3,-0.2 -0.1,-0.1 0.2,-0.1 0.2,-0.1 0.1,0 0.2,-0.1 0.3,-0.1 0.2,-0.1 0.5,-0.1 0.8,-0.1 0.1,0 0.2,0 0.3,0 0.1,0 0.2,0 0.3,0 0.1,0 0.2,0 0.4,0 0.2,0 0.3,0 0.5,0 0.3,0 0.6,0 1,0 0.4,0 0.7,0 1.1,-0.1 0.2,-0.1 0.4,-0.1 0.6,-0.1 0.2,0 0.4,-0.1 0.5,-0.1 0.2,0 0.4,0 0.6,0 0.1,0 0.1,0 0.2,0 0.1,0 0.3,0 0.4,0 0.1,0 0.3,0 0.4,0 0,0 0.2,0 0.2,0 0,-0.1 0,-0.1 0,-0.1 0,-0.1 0,-0.1 -0.1,-0.2 -0.1,-0.1 -0.1,-0.1 0,-0.1 0.1,-0.1 0.1,0 0.2,0 0,0 0.2,0 0.2,-0.1 0,-0.1 -0.1,0 -0.1,-0.1 0,-0.1 0,-0.1 0,-0.1 -0.1,0 -0.4,-0.2 -0.2,-0.3 -0.1,0 -0.3,0 -0.4,0 -0.1,-0.1 0,-0.1 0,-0.1 0,0 0.1,-0.1 0.1,-0.1 0.1,0 0.1,0 0.1,0 0.1,0 0.1,-0.1 0.2,-0.1 0.1,0 0.1,-0.1 0.2,0 0,0 0.1,0 0.1,0 0.1,0 0.2,0 0.3,0 0.1,0 0.3,0 0.3,0 0,0 0,-0.1 0.1,-0.1 0,0 0.1,0 0.1,0 0.1,0 0.2,0 0.2,-0.1 0.2,0.1 0.4,0 0.6,0 0.2,0 0.3,0 0.5,-0.1 0.2,0 0.3,-0.1 0.5,-0.1 0.2,0 0.3,-0.1 0.5,-0.1 0.1,0 0.2,0 0.3,0 0.1,0 0.1,0 0.2,0 h 0.3 c 0.1,0 0.2,0 0.2,0 0.1,0 0.2,0.1 0.3,0.1 0.2,0.1 0.3,0.1 0.5,0.1 0.1,0 0.1,0.1 0.2,0.1 0,0 0.1,0 0.1,0 0.1,0 0.1,0 0.2,0 0.2,0 0.3,0 0.5,0.1 0.2,0.1 0.4,0 0.5,0.2 0,0 0.1,0.1 0.2,0.2 0,0.1 -0.1,0.1 -0.2,0.1 -0.2,0 -0.4,0 -0.7,0 -0.1,0 -0.6,0.1 -0.4,0.2 0.1,0.1 0.2,0 0.3,0 0.1,0 0.1,0 0.2,0 0.1,0 0.1,0 0.2,0.1 0.1,0.1 0.4,0.1 0.4,0.3 0,0.1 0,0.1 -0.1,0.2 -0.1,0.1 -0.2,0.1 -0.3,0.1 -0.1,0 -0.2,0 -0.3,0 -0.1,0 -0.3,0 -0.4,0 h -0.5 c -0.3,0 -0.6,0 -0.9,0 -0.2,0 -0.3,0.1 -0.4,0.2 -0.1,0 -0.2,0 -0.3,0 0,0 -0.1,0 -0.1,-0.1 -0.1,0 -0.1,0 -0.2,0 -0.1,0 -0.1,-0.1 -0.2,-0.1 -0.1,0 -0.2,0 -0.3,0 -0.2,0.1 -0.4,0.1 -0.7,0.1 -0.2,0 -0.4,0 -0.5,0.1 -0.1,0 -0.2,0.1 -0.3,0.1 0,0 -0.1,0.1 -0.1,0.1 0,0 0,0 0,0.1 0,0 0,0 -0.1,0 -0.1,0.1 -0.4,0.1 -0.4,0.3 0,0.1 0.1,0.2 0.1,0.3 0,0 0,0.1 0.1,0.1 0,0 0.1,0.1 0.1,0.1 0.1,0.1 0.2,0.1 0.3,0.1 0.1,0 0.2,0 0.3,0.1 0.2,0.1 0.4,0.1 0.6,0.2 0.1,0 0.2,0.1 0.2,0.1 0.1,0.1 0.2,0.1 0.4,0.1 0.2,0 0.5,0 0.8,0 0.1,0 0.2,0.2 0.3,0.2 0.1,0.1 0.2,0.1 0.3,0.1 0.2,0 0.4,-0.1 0.6,0 0.2,0.1 0.5,0.1 0.7,0.3 0.1,0.1 0.1,0.2 0.2,0.2 0,0.1 0.1,0.1 0.2,0.2 0.1,0.1 0.1,0.2 0.2,0.3 0,0.1 0.1,0.1 0.1,0.2 0,0.1 0,0.1 0,0.2 0,0.1 0,0 0,0.1 0,0.1 0.1,0.2 0.2,0.3 0.1,0.1 0.3,0.3 0.4,0.4 0.1,0 0.2,0.1 0.2,0.2 0,0.1 -0.1,0.3 -0.2,0.3 0,0.1 0.2,0.1 0.3,0.1 0.1,0 0.1,0 0.2,0 0,0 0.1,0.1 0.1,0.1 0.1,0.1 0.2,0.1 0.3,0.2 0.1,0 0.1,0 0.2,0 0.1,0 0.2,0 0.2,0 0.1,0 0.2,0 0.3,0 0.1,0 0.1,0 0.2,0 0,0 0.1,-0.1 0.1,-0.1 0.1,0 0.1,0 0.2,0 0,-0.1 -0.1,-0.1 -0.1,-0.1 -0.1,0 -0.1,0.1 -0.2,0.1 -0.1,0 -0.1,-0.1 -0.2,-0.1 -0.1,0 -0.3,-0.1 -0.4,-0.1 -0.1,0 -0.1,0 -0.2,0 -0.1,0 -0.1,0.1 -0.1,0.2 -0.1,0.1 -0.3,0 -0.3,-0.1 -0.2,-0.3 0.1,-0.5 0.3,-0.5 0.1,0 0.1,0 0.2,-0.1 0.1,0 0.2,0 0.2,0 0.2,0.1 0.3,0.1 0.5,0.1 0.1,0 0.1,0 0.1,-0.1 0,0 0,-0.1 0.1,-0.1 0,0 0.1,-0.1 0.1,-0.1 0,-0.1 -0.1,-0.1 -0.2,-0.1 0,-0.1 0,-0.1 0,-0.2 0,0 0,-0.1 0,-0.1 0,0 0,-0.1 0,-0.1 0,-0.1 -0.1,-0.1 -0.1,-0.2 -0.1,-0.1 -0.1,-0.1 -0.1,-0.2 0,0 0,-0.1 -0.1,-0.1 0,0 0,-0.1 0,-0.1 -0.1,-0.2 -0.2,-0.2 -0.3,-0.4 -0.1,-0.1 0,-0.1 0.1,-0.1 0.1,0 0.2,0 0.3,0 0.1,0 0.1,0 0.2,0.1 0.1,0 0.2,0.1 0.3,0 0,0 0.1,0 0.1,0 0.1,0 0.1,0 0.1,0 0.1,0 0.2,0 0.3,0 0.1,0 0.1,0 0.2,0.1 0.1,0.1 0.1,0 0.2,0 0,0 0,0 0.1,0 0.1,0 0.1,0 0.1,0 0.1,0.1 0.2,0.1 0.3,0.1 0.2,0.1 0.4,0.2 0.5,0.2 0.1,0 0.2,0 0.3,0.1 0,0 0.1,0 0.1,0 0.1,0 0.1,0 0.1,0 0.1,0 0.2,0 0.2,0 0.1,0.1 -0.1,0.2 -0.2,0.2 -0.2,0.1 -0.4,0.1 -0.6,0.2 -0.1,0.1 0,0.2 0.1,0.3 0,0 0.1,0 0.1,0 0,0 0,0 0.1,0.1 0.1,0.1 0.2,0.1 0.3,0.1 0.1,0 0.1,0 0.2,0 0.1,0 0.1,-0.1 0.1,0 0.1,0.1 -0.1,0.3 -0.2,0.4 0,0.1 0,0.1 0,0.2 0,0 0.1,0.1 0.2,0.2 0.1,0 0.2,0 0.2,0 0.1,0 0.2,-0.1 0.3,-0.1 0.2,-0.1 0.3,-0.1 0.5,-0.2 0.2,0 0.3,-0.1 0.5,-0.1 0.1,0 0.2,-0.1 0.3,-0.1 0.1,0 0.1,0 0.2,0 0,0 0.1,0 0.1,0 0.2,0 0.3,-0.2 0.5,-0.2 0.2,0 0.5,0 0.8,0 0.2,0 0.4,0 0.6,0 0,0 0.1,0 0.1,0 0,0 0.1,0 0.1,0 0.1,0 0.1,-0.1 0.2,-0.2 0.2,0 0.4,0 0.5,0.1 0,0 0.1,0 0.1,0 0,0 0.1,0 0.1,0 0,0 0,0 0.1,0 0,0 0.1,0 0.1,0 0.1,0 0.2,0 0.3,0 0.1,0 0.1,-0.1 0.2,-0.1 0.1,0 0.2,0 0.3,0 0.1,0 0.2,0 0.3,0 0.2,0 0.3,0 0.5,0.1 0.1,0 0.1,0.1 0.2,0.2 0.1,0.1 0.1,0.1 0.2,0.1 0.1,0 0.1,0.1 0.2,0.1 0.1,0 0.2,0 0.3,0 0.1,0 0.1,0 0.1,0 0,0 0.1,0 0.1,0 0.1,0 0.2,0 0.3,0 0.2,0 0.4,-0.1 0.5,0 0.1,0 0.1,0.1 0.2,0.1 0.1,0 0.2,0 0.4,0.1 0.1,0 0.2,0 0.4,0.1 0.1,0.1 0.2,0.1 0.3,0.1 0.2,0.1 0.3,0.2 0.5,0.2 0.1,0 0.2,0 0.3,0 0.1,0 0.2,0 0.3,0 0.1,0 0.2,0 0.3,0 0.1,0 0.2,-0.1 0.3,-0.1 0.2,-0.1 0.2,-0.1 0.3,-0.3 0,-0.1 0,-0.1 0,-0.2 0,0 0,-0.1 0,-0.1 0,-0.1 0.1,-0.1 0.2,-0.1 0.1,0 0.2,0 0.3,0 0.1,0 0.1,0 0.2,0 0,0 0.1,0 0.1,0 0.1,0 0.1,0 0.2,0 0.1,0 0.1,0.1 0.2,0.1 0.1,0 0.2,0 0.3,0 0.1,0 0.1,0 0.2,0 0.1,0.1 0.1,0.1 0.2,0.2 0.2,0 0.3,0 0.5,0.1 0,0 0.1,0.1 0.2,0.1 0.1,0 0.2,0 0.3,0 0,0 0,0 0.1,0 0,0 0.1,-0.1 0.1,-0.1 0.1,-0.1 0,-0.1 0,-0.2 -0.1,0 -0.2,-0.1 -0.3,-0.1 -0.1,0 -0.2,-0.1 -0.3,-0.2 -0.3,-0.1 -0.5,-0.2 -0.8,-0.3 -0.1,0 -0.2,-0.1 -0.3,-0.2 -0.1,-0.1 -0.2,-0.2 -0.4,-0.2 -0.2,0 -0.5,0 -0.7,-0.1 -0.1,-0.1 -0.2,-0.1 -0.4,-0.2 -0.2,-0.1 -0.4,-0.1 -0.5,-0.1 -0.1,0 -0.1,0 -0.2,0 -0.1,0 -0.2,0 -0.3,0 0,-0.1 0,-0.2 0,-0.2 0.1,0 0.2,0 0.2,-0.1 0,-0.1 -0.1,-0.1 -0.2,-0.1 -0.1,0 -0.1,-0.1 -0.2,-0.1 -0.1,0 -0.2,-0.1 -0.2,-0.1 -0.1,0 -0.1,0 -0.1,0 -0.1,0 -0.1,-0.1 -0.2,-0.1 -0.3,-0.1 -0.6,-0.1 -0.9,-0.3 -0.1,0 -0.2,-0.1 -0.3,-0.1 0,0 -0.1,0 -0.1,0 0,0 -0.1,0 -0.1,0 -0.2,0 -0.3,-0.1 -0.5,-0.1 -0.1,0 -0.1,0 -0.2,0 -0.2,-0.1 -0.5,-0.1 -0.7,-0.2 -0.2,-0.1 -0.3,-0.1 -0.4,-0.3 0.1,0 0.2,0.1 0.3,0 0.1,0 0.1,0 0.2,0 0.1,0 0.1,0 0.2,0 0.2,0 0.4,0.2 0.7,0.2 0.1,0 0.2,0 0.3,0 0.1,0 0.1,0 0.2,0 0.1,0 0.1,0 0.2,0 0.1,0 0.1,0.1 0.2,0.1 0.1,0 0.1,0 0.2,0 0.1,0 0.1,0 0.2,0 0.1,0 0.1,0 0.2,0 0.1,0 0.2,0.1 0.3,0.2 0.1,0.1 0.1,0.2 0.2,0.2 0.1,0.1 0.2,0.1 0.3,0.1 0.1,0 0.2,0 0.3,0 0.1,0 0.1,0.1 0.2,0.1 0.1,0 0.2,0.1 0.3,0.1 0.1,0 0.2,0 0.3,0 0.1,0 0.1,0 0.2,0 0.1,0 0.1,0 0.2,0 0,-0.1 -0.1,-0.2 -0.1,-0.2 C 218.5,8.5 218.5,8.5 218.4,8.4 218.3,8.2 218.1,8.2 217.9,8.1 217.8,8 217.6,7.9 217.5,7.8 217.3,7.7 217.1,7.5 216.9,7.4 216.7,7.3 216.6,7.2 216.4,7.2 216.2,7.1 215.9,7 215.7,6.9 215.5,6.8 215.3,6.7 215.1,6.6 214.9,6.5 214.7,6.4 214.4,6.3 214.2,6.2 213.9,6.1 213.7,6 213.4,5.9 213.1,5.8 212.8,5.7 212.5,5.6 212.1,5.6 211.8,5.5 210.9,5.4 209.9,5.3 209,5.1 208.5,5 207.9,4.9 207.4,4.8 206.8,4.7 206.1,4.6 205.5,4.4 204.5,4.2 203.6,4 202.6,3.8 202,3.7 201.4,3.6 200.8,3.5 200.5,3.4 200.2,3.4 199.9,3.3 199.6,3.2 199.3,3.1 199,3.1 c -0.2,0 -0.5,0 -0.7,0 -0.5,-0.1 -1,0 -1.5,0.1 -0.2,0 -0.3,0.1 -0.4,0.2 -0.2,0 -0.5,0 -0.7,0 -0.2,0 -0.3,0 -0.5,0 -0.1,0 -0.3,0 -0.4,0 -0.3,0 -0.5,0 -0.8,0 -0.1,0 -0.2,0 -0.3,0 -0.1,0 -0.2,0 -0.4,0 -0.1,0 -0.3,0 -0.4,0 -0.1,0 -0.2,0 -0.3,-0.1 -0.1,0 -0.3,-0.1 -0.4,-0.1 -0.1,0 -0.2,0 -0.3,0 -0.1,0 -0.1,0 -0.2,0 -0.2,0 -0.4,0 -0.7,0 -0.1,0 -0.2,0 -0.3,0 -0.1,0 -0.2,0 -0.2,0 -0.1,0 -0.2,0 -0.2,0 -0.1,0 -0.1,0 -0.2,0 -0.1,0 -0.2,0 -0.3,0 -0.1,0 -0.3,0 -0.4,0 -0.2,0 -0.3,0 -0.5,0 -0.3,0 -0.5,0 -0.7,0 -0.2,0 -0.4,0 -0.6,0 -0.1,0 -0.2,0 -0.2,0 -0.1,0 -0.2,0 -0.3,0 -0.1,0 -0.2,0 -0.3,0 -0.1,0 -0.2,0 -0.2,0 -0.2,0 -0.3,0 -0.5,0 -0.1,0 -0.2,0.1 -0.3,0 0,0 -0.1,0 -0.1,0 -0.1,0 -0.2,0 -0.2,0 -0.2,0 -0.4,0 -0.7,0 -0.2,0 -0.3,0 -0.5,0 -0.1,0 -0.2,0 -0.3,0 h -0.5 c -0.1,0 -0.2,0 -0.3,0 -0.1,0 -0.2,0 -0.3,0 -0.1,0 -0.2,-0.1 -0.3,-0.1 -0.1,0 -0.2,-0.2 -0.4,-0.2 -0.4,0 -0.8,0 -1.2,0 -0.5,0 -0.9,0.1 -1.4,0.1 h -1.2 c -0.2,0 -0.5,0 -0.7,0 -0.1,0 -0.5,-0.1 -0.6,0.1 0,0.1 0,0.1 0,0.2 0,0 0.1,0 0.1,0 0.1,0.1 0.1,0.2 0,0.2 0,0 -0.1,0 -0.1,0 0,0 0,0 -0.1,0 -0.1,0 -0.1,0 -0.2,0 -0.2,0.1 -0.4,0.2 -0.7,0.2 -0.2,0.1 -0.4,0.1 -0.5,0.1 -0.1,0 -0.2,0.1 -0.4,0.1 -0.1,0 -0.2,0.1 -0.3,0.1 -0.2,0.1 -0.3,0.2 -0.5,0.3 -0.3,0.1 -0.6,0.3 -0.9,0.3 -0.1,0 -0.2,0 -0.2,-0.1 0,0 0.1,-0.1 0.1,-0.2 0.2,-0.2 0.4,-0.3 0.3,-0.5 -0.1,-0.2 -0.3,-0.1 -0.4,-0.1 -0.1,0 -0.1,0 -0.2,0 0,0 0,0 -0.1,0 -0.1,0 -0.2,0 -0.3,0 -0.1,0 -0.1,0 -0.2,0 -0.1,0 -0.1,0 -0.2,0 -0.2,0 -0.4,0.1 -0.5,0 -0.1,0 -0.1,-0.1 -0.2,-0.1 -0.1,0 -0.1,0 -0.1,0 -0.1,0 -0.3,0.1 -0.4,0.1 -0.1,0 -0.2,0.1 -0.3,0.1 -0.1,0 -0.1,0 -0.2,0.1 -0.1,0.1 -0.1,0.1 -0.2,0.1 -0.1,0 -0.1,-0.1 -0.2,0 -0.1,0 -0.2,0.2 -0.3,0.2 0,0.1 0.1,0.1 0.2,0.2 0.1,0 0.2,0.1 0.3,0.1 0.1,0 0.2,0 0.2,0.1 0,0.1 -0.1,0.1 -0.2,0.1 -0.1,0 -0.3,0 -0.4,0.1 -0.1,0 -0.3,0.1 -0.4,0.1 -0.1,0 -0.1,0 -0.2,0 -0.1,0 -0.2,0.1 -0.3,0.1 0,0 -0.1,0 -0.1,0 0,0 -0.1,0 -0.1,0 -0.1,0 -0.2,0 -0.2,-0.1 0,-0.1 0.1,-0.1 0.1,-0.2 -0.1,-0.1 -0.4,0 -0.4,-0.2 0.1,0 0.2,-0.1 0.3,-0.2 0,0 0.1,-0.1 0.1,-0.1 0,0 0,-0.1 -0.1,-0.2 0,0 -0.1,-0.1 -0.1,-0.1 -0.1,0 -0.1,0 -0.1,0 -0.1,0 -0.2,0.1 -0.3,0.1 -1,0 -1.1,0 -1.2,0 -0.1,0 -0.2,0 -0.4,0 -0.1,0 -0.3,0.1 -0.4,0.1 -0.1,0 -0.3,0.1 -0.4,0.1 -0.2,0 -0.3,0 -0.5,0.1 -0.1,0 -0.2,0.1 -0.4,0.1 -0.1,0.1 -0.3,0.1 -0.4,0.2 -0.1,0 -0.1,0 -0.2,0 -0.1,0 -0.1,0 -0.2,0 -0.1,0 -0.1,0 -0.2,0 -0.2,0.1 -0.3,0.2 -0.4,0.4 -0.1,0.1 -0.1,0.1 -0.2,0.2 -0.1,0 -0.2,0 -0.2,0 -0.1,0 -0.1,0.1 -0.1,0.2 -0.1,0.1 -0.1,0.1 -0.2,0.2 -0.1,0.1 -0.1,0.3 -0.2,0.4 0,0.1 -0.1,0.1 -0.1,0.1 L 162.6,6 c -0.1,0.1 -0.1,0.1 -0.2,0.1 0,0 0,0.1 -0.1,0.1 0,0 0,0 0,0 0,0 0,0 0,0 -0.1,0 -0.1,0 -0.1,0.1 0,0.1 0,0.1 0.1,0.2 0.1,0 0.1,0 0.2,0 0.1,0 0.1,0.1 0.2,0.1 0.1,0.1 0.2,0.1 0.3,0.1 0.1,0 0.3,-0.1 0.4,-0.1 0.2,-0.1 0.4,-0.1 0.5,0 0.1,0.1 0.3,0.2 0.4,0.2 0.1,0 0.3,0.1 0.5,0.2 0.1,0.1 0.3,0.1 0.4,0.2 0.2,0.1 0.5,0.2 0.7,0.2 0.3,0 0.5,-0.1 0.8,-0.1 h 0.6 c 0.2,0 0.3,0 0.5,0 0.1,0 0.2,0 0.2,0 0.1,0 0.2,0 0.4,0.1 0.3,0 0.6,0 0.8,0 0.2,0 0.3,-0.1 0.5,-0.1 0.1,0 0.3,0 0.4,0 0.2,0 0.3,0 0.5,0 0.2,0 0.4,0 0.5,0.1 0,0 0.1,0.1 0.1,0.1 0.1,0 0.1,0 0.2,0 0.1,0 0.2,0.1 0.3,0.1 0.2,0 0.3,0 0.4,0 0.1,0 0.2,0 0.3,-0.1 0.1,0 0.2,0 0.3,0 0.1,0 0.2,0 0.2,0 0.1,0 0.2,0 0.3,0 0.2,0 0.3,0 0.5,0 0.2,0 0.3,0.1 0.5,0 0.2,0 0.4,0 0.5,-0.1 0.2,0 0.3,0 0.5,0 0.1,0 0.2,0 0.3,0 0,0 0.1,0 0.1,0 0,0 0.1,0 0.1,0 0.2,0 0,0.2 0.1,0.3 0.1,0.2 0.2,0 0.3,0 0.2,-0.1 0.4,-0.1 0.6,-0.2 0.2,0 0.5,-0.1 0.7,-0.1 0.2,0 0.5,-0.1 0.7,-0.1 0.1,0 0.3,0 0.4,-0.1 0.2,0 0.3,0 0.5,0 0.2,0 0.4,0 0.6,0 0.4,0 0.8,0.1 1.2,0 0.3,-0.1 0.7,-0.1 1,-0.1 0.1,0.1 0.3,0 0.6,0 z m 153.3,136.2 c -0.2,-0.2 -0.3,-0.3 -0.3,-0.6 0,-0.2 -0.1,-0.4 -0.3,-0.4 -0.3,-0.1 -0.5,0 -0.7,0.2 -0.3,0.3 -0.5,1 -0.1,1.4 0.1,0.1 0.2,0.2 0.2,0.2 0,0.1 0,0.2 0,0.3 0,0.1 -0.1,0.2 -0.1,0.3 -0.1,0.2 0.1,0.5 0.2,0.6 0.1,0.2 0.2,0.5 0.3,0.7 0.1,0.2 0.4,0.3 0.6,0.3 0.2,-0.1 0.4,-0.4 0.5,-0.5 0,-0.1 0,-0.3 0,-0.4 0,-0.2 0,-0.2 0.1,-0.4 0.1,-0.2 0.1,-0.5 0,-0.7 -0.1,-0.5 -0.2,-0.8 -0.4,-1 z m 0.9,0.5 c 0,-0.1 -0.1,-0.3 -0.2,-0.4 -0.1,-0.3 -0.1,-0.7 -0.2,-1 -0.1,-0.3 -0.1,-0.6 -0.3,-0.8 0,0.1 -0.1,0.1 -0.1,0.2 0,0.1 0,0.1 0.1,0.3 0,0.1 0.1,0.3 0.1,0.4 0.1,0.2 0.2,0.4 0.3,0.7 0.1,0.3 0,0.7 0,0.9 0,0.2 0.1,0.3 0.1,0.5 0,0.1 0,0.3 0,0.4 l 0.1,0 v 0.1 c 0,-0.1 0.1,-0.3 0.1,-0.4 0,-0.2 0,-0.3 0,-0.5 0.1,0 0.1,-0.2 0,-0.4 z m -73.5,154.6 c 0,-0.2 0.3,-0.3 0.5,-0.4 0.2,-0.1 0.3,-0.3 0.5,-0.4 0.1,-0.1 0.1,-0.2 0.2,-0.3 0.1,-0.1 0.2,-0.2 0.2,-0.3 0.1,-0.2 0.1,-0.3 0.2,-0.5 0.2,-0.2 0.4,-0.4 0.6,-0.6 0.2,-0.1 0.3,-0.3 0.5,-0.5 0.1,-0.2 0.1,-0.4 0.2,-0.5 -0.1,0.1 -0.3,0.2 -0.4,0.3 -0.1,0.1 -0.1,0.1 -0.2,0.2 -0.1,0.1 -0.2,0.1 -0.3,0.1 -0.1,0.1 -0.1,0.1 -0.2,0.2 -0.1,0 -0.2,0.1 -0.3,0.1 -0.1,0.1 -0.2,0.1 -0.3,0.2 -0.1,0 -0.2,0 -0.3,0 -0.4,0.1 -0.5,0.7 -0.8,1 -0.2,0.1 -0.5,0.3 -0.7,0.2 -0.1,-0.1 -0.1,-0.4 -0.2,-0.6 -0.2,-0.4 0,-0.5 0.3,-0.9 0.1,-0.1 0.1,-0.3 0.2,-0.4 0.1,-0.2 0.2,-0.3 0.2,-0.6 0,-0.3 -0.1,-0.2 -0.4,-0.1 -0.1,0.1 -0.2,0.1 -0.4,0.2 -0.2,0 -0.4,0 -0.5,0 -0.2,0 -0.3,-0.1 -0.5,0 -0.2,0.1 -0.4,0.2 -0.4,0.4 0,0.2 0.2,0.3 0.3,0.5 0,0.1 0.1,0.4 0,0.5 -0.1,0.1 -0.3,0.2 -0.4,0.3 -0.4,0.3 -0.6,0.6 -1.1,0.7 -0.4,0.1 -0.8,0.3 -1.2,0.4 -0.4,0.1 -0.9,0.1 -1.3,0.3 -0.2,0.1 -0.4,0.1 -0.6,0.3 -0.2,0.1 -0.4,0.2 -0.6,0.3 -0.2,0 -0.4,0.1 -0.5,-0.1 -0.1,-0.2 0.1,-0.4 0.1,-0.5 0.1,-0.4 -0.2,-0.6 -0.3,-0.9 -0.1,-0.2 -0.1,-0.4 -0.2,-0.6 -0.1,-0.2 -0.2,-0.3 -0.2,-0.5 0,-0.2 0,-0.3 0.2,-0.5 0.1,-0.1 0,-0.1 0.1,-0.2 0.1,-0.1 0.2,0 0.3,-0.1 0.4,-0.2 0.6,-0.6 0.8,-0.9 0.1,-0.1 0.1,-0.2 0.2,-0.3 0.1,-0.1 0.2,-0.1 0.2,-0.2 0,-0.1 -0.2,-0.4 -0.3,-0.5 0.1,-0.1 0,-0.2 0.1,-0.3 0,-0.1 0.2,-0.2 0.1,-0.3 -0.1,-0.2 -0.4,-0.4 -0.5,-0.6 -0.1,-0.1 -0.1,-0.2 -0.2,-0.4 -0.1,-0.1 -0.2,-0.2 -0.3,-0.3 -0.2,-0.2 -0.4,-0.4 -0.6,-0.6 -0.3,-0.2 -0.5,-0.4 -0.5,-0.8 0,-0.1 0,-0.3 0,-0.5 0,-0.1 -0.1,-0.1 -0.1,-0.3 0,-0.2 0,-0.3 -0.1,-0.5 -0.1,-0.2 0,-0.3 0,-0.5 0.1,-0.3 0.2,-0.5 0.3,-0.7 0.2,-0.3 0.2,-0.8 0.3,-1.1 0,-0.2 0,-0.3 0,-0.5 0,-0.2 0.1,-0.3 0.1,-0.5 0,-0.1 -0.1,-0.3 -0.2,-0.4 -0.1,-0.2 -0.3,-0.2 -0.5,-0.2 -0.2,0 -0.3,0 -0.4,0.1 -0.1,0.1 -0.1,0.1 -0.3,0.1 0,0 -0.2,0.1 -0.3,0.1 0,0.1 0,0.1 0,0.1 -0.1,0.1 -0.2,0.2 -0.2,0.2 -0.2,0.2 -0.3,0.4 -0.3,0.7 0,0.3 -0.1,0.6 -0.2,0.9 -0.1,0.2 -0.3,0.6 -0.5,0.6 0.1,-0.1 0.1,-0.4 0.1,-0.5 0,-0.2 -0.1,-0.3 -0.1,-0.6 0,-0.2 0.1,-0.3 0.2,-0.5 0.1,-0.2 0.1,-0.3 0,-0.5 -0.2,-0.4 0.1,-0.6 0.1,-1 0,-0.1 0,-0.2 -0.1,-0.3 0,-0.1 0,-0.3 0,-0.4 0,-0.1 -0.2,-0.2 -0.3,-0.2 -0.4,-0.1 -0.5,0.3 -0.9,0.3 -0.3,-0.1 -0.8,-0.2 -1.1,0 -0.2,0.1 -0.3,0.4 -0.6,0.5 -0.2,0.1 -0.3,0.1 -0.5,0.2 -0.1,0 -0.8,0.2 -0.8,0 -0.2,0 -0.3,0 -0.4,-0.2 0,-0.1 0,-0.3 -0.1,-0.4 0,-0.1 -0.1,-0.1 -0.1,-0.1 0,0 0,-0.1 0,-0.1 -0.1,-0.1 -0.2,-0.1 -0.3,-0.2 -0.1,-0.1 -0.3,-0.2 -0.4,-0.3 0,-0.1 0,-0.2 0,-0.2 0,0 -0.1,-0.1 -0.1,-0.1 -0.1,-0.2 -0.1,-0.3 -0.1,-0.5 0,-0.1 -0.1,-0.2 -0.1,-0.4 -0.2,0 -0.4,-0.1 -0.6,-0.2 -0.1,0 -0.2,-0.1 -0.3,-0.1 -0.1,-0.1 -0.1,-0.2 -0.2,-0.2 -0.2,0 -0.3,0.4 -0.4,0.4 -0.1,0 -0.2,0.2 -0.3,0.2 -0.1,0 -0.2,0 -0.4,0 -0.1,0 -0.2,0.1 -0.3,0.2 -0.1,0 -0.2,0 -0.3,0 -0.1,0 -0.2,0.1 -0.3,0.1 -0.1,0 -0.2,0 -0.3,0 -0.5,0.1 -0.9,0.5 -1.2,0.9 -0.3,0.4 -0.7,0.6 -0.8,1.1 0,0.2 0,0.2 -0.2,0.3 -0.1,0 -0.2,0 -0.4,0 0,0 -0.1,0.1 -0.1,0.1 -0.1,0 -0.1,0 -0.2,0 -0.1,0 -0.2,0.1 -0.2,0.1 -0.2,0.1 -0.4,0.2 -0.7,0.3 -0.3,0.1 -0.4,0.2 -0.6,0.4 -0.2,0.3 -0.8,0.8 -1.2,0.5 0.1,0.1 0.3,0.2 0.3,0.3 -0.2,0 -0.3,0 -0.5,0 -0.1,0 -0.2,0.1 -0.3,0.1 -0.3,0.1 -0.5,0.1 -0.8,0.1 -0.1,0 -0.2,0 -0.3,0 -0.1,0 -0.1,-0.1 -0.2,-0.1 -0.1,0 -0.4,0.2 -0.5,0.2 -0.1,0 -0.4,0.2 -0.4,0.3 -0.1,0.2 0.1,0.2 0.3,0.3 0.1,0 0.1,0.1 0.2,0.1 0.1,0 0.2,-0.1 0.3,-0.1 0.2,0 0.4,0 0.4,0.2 0,0.2 -0.3,0.1 -0.4,0.1 -0.2,0 -0.4,0 -0.6,0.1 -0.2,0 -0.4,0 -0.6,0 -0.2,0 -0.4,0 -0.6,0.1 -0.2,0.1 -0.4,0 -0.6,0 -0.1,0 -0.2,0.1 -0.4,0.1 -0.1,0 -0.1,0.1 -0.2,0.1 -0.2,0 -0.3,0.1 -0.5,0.1 -0.3,0.1 -0.6,0.2 -0.9,0.3 -0.2,0 -0.4,0 -0.6,0 0.2,-0.1 0.5,-0.2 0.7,-0.3 0.2,-0.1 0.4,-0.1 0.6,-0.2 0.2,-0.1 0.5,-0.3 0.7,-0.3 0.2,0 0.4,0.1 0.5,-0.1 -0.3,-0.2 -0.3,-0.3 -0.7,-0.2 -0.3,0.1 -0.6,0.2 -0.9,0.4 -0.4,0.2 -0.8,0.3 -1.2,0.3 -0.5,0.1 -1,0.3 -1.5,0.2 -0.2,0 -0.3,-0.1 -0.4,-0.1 -0.4,0 -0.5,0.4 -0.8,0.5 -0.3,0.1 -0.6,0 -0.9,0.2 -0.2,0.1 -0.3,0.2 -0.4,0.4 -0.2,0.2 -0.5,0.4 -0.8,0.2 -0.2,-0.1 -0.1,-0.2 -0.2,-0.4 -0.1,-0.1 -0.2,-0.1 -0.4,0 -0.1,0 -0.3,-0.1 -0.5,-0.1 -0.2,0 -0.5,0 -0.7,0 -0.3,0 -0.6,0 -0.9,0 -0.3,0.1 -0.6,0.2 -0.9,0.3 -0.2,0.1 -0.3,0.1 -0.4,0.2 -0.1,0.1 -0.2,0.1 -0.3,0.1 -0.3,0.1 -0.6,0.3 -0.9,0.3 -0.2,0 -0.5,0.1 -0.6,-0.1 -0.1,-0.1 0,-0.3 0.1,-0.4 -0.1,0 -0.4,-0.1 -0.5,-0.1 -0.1,-0.1 -0.2,-0.3 -0.2,-0.4 0,-0.4 0.2,-0.4 0.4,-0.6 0.2,-0.2 0.3,-0.4 0.5,-0.5 0.1,-0.2 0.2,-0.4 0.4,-0.5 0.1,-0.1 0.3,-0.1 0.4,-0.3 -0.2,-0.1 -0.2,0.1 -0.4,0.1 -0.1,0 -0.2,0 -0.3,0 -0.2,0 -0.4,0.1 -0.6,0.1 -0.2,0 -0.4,0 -0.6,-0.1 -0.2,-0.1 -0.4,-0.1 -0.5,-0.1 -0.3,-0.1 -0.6,-0.4 -0.8,-0.7 -0.2,-0.3 -0.1,-0.1 -0.4,0 -0.2,0.1 -0.3,0 -0.5,0.1 -0.4,0.2 -0.7,0.4 -1,0.6 -0.4,0.3 -0.8,0.6 -1.2,0.9 -0.1,0.1 -0.3,0.1 -0.4,0.2 -0.1,0.1 -0.1,0.1 -0.2,0.2 -0.2,0.1 -0.3,0.3 -0.5,0.4 -0.4,0.4 -0.9,0.7 -1.3,1.1 -0.2,0.2 -0.3,0.3 -0.5,0.5 -0.3,0.3 -0.6,0.5 -0.9,0.7 -0.1,0.1 -0.2,0.2 -0.3,0.3 -0.1,0.1 -0.2,0.2 -0.2,0.3 -0.1,0.2 -0.1,0.4 -0.1,0.6 -0.1,0.3 -0.2,0.7 -0.4,0.9 -0.1,0.2 -0.3,0.3 -0.5,0.5 -0.1,0.1 -0.2,0.3 -0.3,0.4 -0.3,0.3 -0.7,0.7 -1,1.1 -0.1,0.1 -0.2,0.2 -0.2,0.3 -0.1,0.1 -0.4,0.1 -0.5,0.2 -0.3,0.2 -0.4,0.7 -0.8,0.9 -0.3,0.2 -0.6,0.3 -0.9,0.5 -0.5,0.3 -0.8,0.7 -1.2,1.1 -0.2,0.3 -0.6,0.5 -0.8,0.7 -0.2,0.2 -0.4,0.4 -0.6,0.5 -0.2,0.1 -0.3,0.1 -0.4,0.3 -0.2,0.2 -0.1,0.3 0,0.4 0,0.1 0,0.1 0.1,0.2 0,0 0.1,0.2 0.1,0.2 0.1,0.2 0.1,0.4 0.3,0.6 0.1,0.1 0.1,0.1 0.2,0.2 0,0.2 0,0.1 -0.1,0.2 -0.1,0.3 -0.2,0.7 -0.1,1 0.1,0.2 0.2,0.4 0.3,0.6 0,0.2 0,0.3 0.1,0.5 0.1,0.2 0.1,0.2 0.1,0.4 0,0.1 -0.1,0.3 -0.2,0.4 0,0 0.1,0.2 0.2,0.2 0.1,0 0.1,-0.1 0.2,-0.1 0.1,0 0.2,0 0.3,-0.1 0.1,0 0.2,-0.1 0.3,-0.1 0.2,0 0.4,0.1 0.6,0.1 0.2,0 0.4,0 0.6,-0.1 0.4,-0.1 0.8,0 1.2,0 0.3,-0.1 0.8,0 0.8,0.4 0,0.4 -0.6,0.5 -0.9,0.6 -0.2,0.1 -0.4,0.2 -0.5,0.3 -0.2,0.1 -0.3,0.2 -0.5,0.3 -0.3,0.2 -0.6,0.4 -0.9,0.5 -0.3,0.1 -0.7,0.3 -1,0.4 -0.3,0.1 -0.5,0.1 -0.8,0.3 -0.1,0.1 -0.2,0.2 -0.4,0.3 -0.2,0.1 -0.3,0.3 -0.5,0.4 -0.2,0.2 -0.5,0.3 -0.6,0.5 -0.2,0.2 -0.1,0.3 -0.1,0.6 0,0.1 -0.1,0.1 -0.1,0.2 0,0.1 0,0.2 -0.1,0.3 -0.2,0.4 -0.5,0.7 -0.9,0.9 -0.4,0.2 -0.8,0.4 -1.1,0.7 -0.1,0.2 -0.1,0.3 -0.1,0.5 0,0.1 -0.1,0.3 -0.2,0.5 0,0.1 0,0.2 0,0.4 0,0.1 -0.1,0.2 -0.2,0.3 -0.1,0.2 -0.2,0.3 -0.4,0.4 -0.3,0.3 -0.6,0.5 -0.9,0.7 -0.3,0.2 -0.5,0.5 -0.8,0.6 -0.4,0.2 -0.8,0.3 -1.1,0.6 -0.3,0.3 -0.5,0.6 -0.8,0.9 -0.3,0.3 -0.8,0.7 -0.2,0.9 0.2,0.1 0.4,0.1 0.6,0.1 0.2,0 0.3,0.1 0.5,0.1 0.1,0.1 0.3,0.1 0.5,0.2 0.1,0 0.2,0.1 0.3,0.1 0.1,0 0.2,0 0.3,0 0.3,0.1 0.6,0.5 0.8,0.6 0.4,0.3 0.5,0.7 0.6,1.1 0.1,0.3 0.3,0.7 0.3,1 0,0.2 0.1,0.3 0.1,0.5 0,0.1 0,0.2 0,0.3 0,0.1 0.1,0.2 0.1,0.3 0.1,0.3 -0.2,0.8 0.2,1 0.2,0.1 0.8,0 1.1,0 0.2,0 0.4,-0.1 0.6,-0.2 0.1,0 0.1,-0.1 0.1,-0.1 0.1,0 0.2,0 0.3,-0.1 0.2,-0.1 0.3,-0.2 0.5,-0.3 0.2,-0.1 0.3,-0.1 0.5,-0.2 0.2,-0.1 0.4,-0.1 0.6,0 0.2,0.1 0.1,0 0.2,0.1 0,0 0.1,0.1 0.1,0.2 0.1,0.2 -0.1,0.3 0.2,0.4 0.2,0 0.4,0 0.6,0 0.1,0 0.1,0.1 0.3,0.1 0.1,0 0.2,0 0.3,-0.1 0.2,0 0.4,0 0.6,0 0.2,0 0.4,0 0.6,0 0.3,0 0.5,0.2 0.7,0.3 0.2,0.1 0.4,0.2 0.5,0.2 0.2,0 0.4,0 0.6,0 h 0.6 c 0.1,0 0.4,0.1 0.6,0 0.1,-0.1 0.1,-0.4 0.2,-0.6 0.1,-0.2 0.1,-0.2 0.3,-0.3 0.4,-0.1 0.7,-0.3 1,-0.5 0.5,-0.3 0.9,-0.9 1.1,-1.5 0.1,-0.3 0.3,-0.9 0.6,-1 0.1,0.2 0,0.5 -0.1,0.7 0,0.2 -0.2,0.4 -0.2,0.5 -0.1,0.4 0.3,0.5 0.6,0.7 0.2,0.2 0.5,0.5 0.3,0.8 0,0.1 -0.2,0.3 -0.3,0.5 -0.1,0.2 -0.2,0.1 -0.3,0.3 -0.4,0.3 -0.6,0.7 -1,0.9 -0.2,0.1 -0.3,0.1 -0.4,0.2 -0.1,0.1 -0.3,0.2 -0.4,0.4 -0.3,0.2 -0.5,0.3 -0.8,0.6 -0.1,0.1 -0.2,0.2 -0.3,0.3 0,0.2 0.2,0.3 0.2,0.1 l 0.2,0.1 c 0,0 0,0.1 -0.1,0.1 0.3,0 0.5,-0.2 0.7,-0.3 0.3,-0.1 0.5,-0.2 0.8,-0.3 0.5,-0.2 0.9,-0.6 1.4,-0.9 0.3,-0.2 0.6,-0.3 0.9,-0.6 0.1,-0.1 0.3,-0.2 0.5,-0.3 0.3,-0.1 0.5,-0.1 0.7,-0.2 0.3,-0.1 0.5,-0.3 0.8,-0.5 0.3,-0.2 0.6,-0.4 0.9,-0.5 0.3,-0.1 0.6,-0.4 0.8,-0.6 0.1,-0.1 0.3,-0.2 0.4,-0.3 0.1,-0.1 0.2,-0.1 0.4,-0.1 0.2,-0.1 0.3,-0.3 0.6,-0.4 0.2,0 0.3,0 0.5,-0.1 0.3,-0.1 0.6,-0.3 0.9,-0.5 0.3,-0.2 0.5,-0.3 0.7,-0.5 0.2,-0.2 0.4,-0.4 0.7,-0.6 0.3,-0.2 0.6,-0.5 0.9,-0.7 0.1,-0.1 0.2,-0.1 0.3,-0.2 0.1,-0.1 0.1,-0.2 0.2,-0.3 0.3,-0.3 0.6,-0.4 0.8,-0.6 0.2,-0.2 0.4,-0.4 0.6,-0.6 0.1,-0.1 0.3,-0.3 0.4,-0.5 0.1,-0.2 0,-0.3 0.1,-0.5 0.1,-0.4 0.1,-0.7 0.3,-1 0.1,-0.1 0.1,-0.1 0.2,-0.3 0.1,0 0.1,-0.1 0.2,-0.2 0.1,-0.1 0.3,-0.2 0.4,-0.2 0.2,-0.1 0.5,-0.3 0.7,-0.5 0.1,-0.1 0.2,-0.2 0.3,-0.2 0.1,0 0.2,0 0.2,0 0.1,-0.1 0.3,-0.3 0.4,-0.3 0.2,-0.2 0.3,-0.4 0.6,-0.5 0.1,-0.1 0.2,-0.2 0.3,-0.2 0.1,-0.1 0.2,-0.1 0.3,-0.1 0.2,-0.1 0.3,-0.2 0.5,-0.3 0.1,-0.1 0.2,-0.1 0.4,-0.2 0.2,-0.1 0.3,-0.2 0.5,-0.3 0.2,-0.1 0.3,-0.1 0.5,-0.2 0.3,-0.2 0.6,-0.4 0.9,-0.6 0.1,-0.1 0.3,-0.1 0.5,-0.2 0.3,-0.2 0.7,-0.3 1,-0.4 0.1,0 0.2,0 0.4,0 0.1,0 0.2,0 0.3,-0.1 0.2,-0.1 0.3,-0.1 0.5,-0.2 0.4,-0.2 0.8,-0.3 1.2,-0.5 0.4,-0.2 0.7,-0.3 1.1,-0.5 0.2,-0.1 0.8,-0.4 1,-0.2 -0.1,0.3 -0.3,0.4 -0.6,0.6 -0.2,0.1 -0.2,0.3 -0.4,0.4 -0.1,0.1 -0.3,0.1 -0.4,0.2 -0.3,0.1 -0.5,0.3 -0.7,0.5 -0.1,0.1 -0.2,0.2 -0.4,0.3 -0.1,0.1 -0.3,0.1 -0.3,0.3 0.3,0.1 0.4,-0.1 0.6,-0.1 0.1,0 0.3,0 0.4,0 0.1,0 0.1,-0.1 0.2,-0.1 0.2,-0.1 0.5,-0.1 0.7,-0.2 0.2,-0.1 0.4,-0.3 0.6,-0.3 0.2,-0.1 0.5,-0.1 0.7,-0.2 0.2,-0.1 0.4,-0.2 0.6,-0.3 0.2,-0.1 0.4,-0.2 0.6,-0.3 0.2,-0.1 0.3,-0.2 0.5,-0.3 0.4,-0.3 0.7,-0.5 1.2,-0.6 0.3,-0.1 0.5,-0.1 0.7,-0.3 0.2,-0.1 0.4,-0.3 0.6,-0.3 0.2,-0.1 0.5,0 0.7,0 0.1,0 0.3,0 0.4,0 0.1,0 0.2,-0.1 0.3,-0.1 0.2,0 0.5,0.1 0.7,0.2 0.2,0 0.3,0 0.5,0.2 -0.2,0.2 -0.2,0.5 -0.4,0.7 -0.2,0.2 -0.4,0.3 -0.7,0.4 -0.3,0.1 -0.4,0.4 -0.7,0.6 -0.3,0.2 -0.6,0.2 -0.8,0.5 -0.2,0.2 -0.3,0.4 -0.5,0.6 -0.1,0.1 -0.2,0.2 -0.3,0.2 -0.1,0 -0.3,-0.1 -0.4,-0.1 -0.1,0 -0.2,0.1 -0.3,0.2 0,0 -0.1,0.1 -0.1,0.1 0,0 -0.1,0 -0.1,0 -0.2,0.2 -0.2,0.4 -0.3,0.6 -0.2,0.2 -0.4,0.5 -0.6,0.8 -0.1,0.1 -0.2,0.3 -0.3,0.4 -0.1,0.1 -0.3,0.1 -0.4,0.3 -0.3,0.5 0.6,0.3 0.8,0.2 0.2,-0.1 0.4,-0.2 0.6,-0.3 0.2,0 0.4,0 0.6,0 0.4,-0.1 0.9,-0.2 1.2,-0.4 0.3,-0.2 0.5,-0.3 0.8,-0.4 0.4,-0.1 0.8,-0.3 1.2,-0.5 0.3,-0.2 0.6,-0.3 1,-0.5 0.2,-0.1 0.3,-0.1 0.4,-0.2 0.2,-0.2 0.2,-0.2 0.4,-0.2 0.1,0 0.1,-0.1 0.2,-0.1 0.1,0 0.2,0 0.3,0 0.1,0 0.1,-0.1 0.2,-0.1 0.1,0 0.2,0 0.3,-0.1 0.2,-0.1 0.4,-0.2 0.6,-0.4 0.5,-0.4 1.1,-0.6 1.7,-0.8 0.2,-0.1 0.4,-0.1 0.5,-0.2 0.1,-0.1 0.3,-0.2 0.5,-0.2 0.2,0 0.3,0 0.5,-0.1 0.2,-0.1 0.4,-0.1 0.6,-0.2 0.2,-0.1 0.3,-0.1 0.6,-0.2 0.2,-0.1 0.4,-0.2 0.6,-0.3 0.1,-0.1 0.3,-0.1 0.5,-0.2 0.2,-0.1 0.3,-0.3 0.5,-0.5 0.3,-0.3 0.8,-0.3 1.1,-0.6 0.1,-0.1 0.3,-0.2 0.5,-0.3 0.2,-0.1 0.4,0 0.6,-0.1 0.1,0 0.2,-0.1 0.2,-0.1 0.1,0 0.1,0 0.2,-0.1 0.1,0 0.3,-0.1 0.4,-0.1 0.1,0 0.1,-0.1 0.2,-0.1 0.1,0 0.2,0 0.3,0 0.3,0 0.3,-0.3 0.5,-0.6 0.2,-0.3 0.6,-0.6 0.9,-0.7 0.1,-0.1 0.3,-0.1 0.4,-0.2 0.1,0 0.2,-0.1 0.3,-0.1 0.1,0 0.1,-0.1 0.2,-0.2 0.1,-0.1 0.3,-0.1 0.4,-0.1 0.1,0 0.2,-0.1 0.3,-0.1 0.2,0 0.3,-0.1 0.4,-0.2 0.2,-0.1 0.3,-0.2 0.5,-0.2 0.1,-0.1 0.3,-0.2 0.4,-0.2 0.1,-0.1 0.5,-0.1 0.4,-0.3 0,-0.2 -0.3,-0.1 -0.4,0 -0.1,0.1 -0.9,0.5 -0.7,0.1 0.1,-0.1 0.3,-0.2 0.4,-0.3 0.1,-0.1 0.2,-0.2 0.3,-0.3 0.3,-0.2 0.6,-0.4 0.8,-0.6 0.2,-0.2 0.4,-0.4 0.6,-0.6 0.3,-0.3 0.7,-0.5 1.1,-0.6 0.4,-0.2 0.9,-0.3 1.2,-0.6 0.2,-0.2 0.5,-0.4 0.6,-0.6 0.1,-0.1 0.2,-0.3 0.3,-0.4 -1.6,0.2 -1.7,0.2 -1.7,0.2 z m 3,-2.2 c 0,0 0.1,-0.1 0.2,-0.1 h -0.1 c 0,0.1 0,0.1 -0.1,0.1 z m 0.4,-0.1 c -0.1,0 -0.1,0 0,0 -0.1,0 -0.1,0 -0.2,0 h 0.2 z m -0.1,0.8 c -0.2,0 -0.3,0.2 -0.5,0.3 -0.2,0.1 -0.3,0 -0.5,0.2 -0.1,0.2 -0.2,0.2 -0.4,0.4 -0.3,0.2 -0.3,0.4 -0.5,0.6 -0.2,0.2 -0.4,0.4 -0.6,0.5 -0.2,0.2 -0.4,0.4 -0.5,0.6 0,0 -0.1,0.1 -0.1,0.1 0,0 0,0 0,0 0.1,0 0.2,0 0.3,0 0.1,-0.1 0.3,-0.3 0.4,-0.4 0.3,-0.3 0.6,-0.3 0.9,-0.5 0.2,-0.1 0.3,-0.2 0.5,-0.4 0.2,-0.1 0.3,-0.2 0.5,-0.4 0.1,-0.2 0.2,-0.3 0.4,-0.5 0.1,-0.1 0.3,-0.3 0.4,-0.4 0.1,-0.2 -0.1,-0.2 -0.3,-0.1 z m 4.5,-4.8 c -0.2,0 -0.2,-0.1 -0.4,0 -0.3,0.1 -0.4,0.2 -0.7,0.4 -0.3,0.2 -0.5,0.5 -0.8,0.8 -0.2,0.1 -0.5,0.3 -0.7,0.5 -0.1,0.2 -0.3,0.4 -0.4,0.6 -0.2,0.2 -0.4,0.4 -0.6,0.6 -0.2,0.3 -0.6,0.4 -0.8,0.7 -0.1,0.1 -0.3,0.3 -0.2,0.4 0,0 0.1,0 0.1,0 0.1,0 0.2,0 0.3,0 0.3,-0.1 0.4,-0.4 0.7,-0.6 0.3,-0.1 0.5,-0.2 0.7,-0.4 0.2,-0.3 0.4,-0.5 0.6,-0.7 0.6,-0.4 1.2,-0.7 1.7,-1.2 0.2,-0.2 0.4,-0.4 0.5,-0.5 0.1,-0.1 0.4,-0.5 0.3,-0.6 0,-0.1 -0.1,0 -0.3,0 z m 3.3,-3 c -0.1,0.1 -0.3,0.3 -0.3,0.4 -0.2,0.2 -0.3,0.4 -0.6,0.6 -0.1,0.1 -0.3,0.2 -0.4,0.3 -0.1,0.1 -0.2,0.2 -0.3,0.3 -0.2,0.1 -0.4,0.3 -0.6,0.5 -0.1,0.1 -0.2,0.1 -0.3,0.3 0.1,0.1 0.2,0.2 0.3,0.2 l 0.3,-0.1 c 0,0 -0.1,0.1 -0.1,0.1 0.1,0 0.2,0 0.3,0 0.2,0 0.3,-0.1 0.4,-0.2 0.3,-0.1 0.3,0 0.5,-0.2 0.1,-0.1 0.2,-0.2 0.3,-0.4 0.2,-0.3 0.3,-0.5 0.5,-0.8 0.2,-0.3 0.5,-0.5 0.4,-0.9 -0.1,-0.2 -0.2,-0.3 -0.4,-0.1 z m 2.4,-1.5 c -0.2,0.2 -0.4,0.2 -0.7,0.4 -0.5,0.2 -0.7,0.7 -1.1,1.1 0,0 0,0 0.1,0 l 0.1,0.1 c 0,0 0,-0.1 0,-0.1 0.4,0 0.8,-0.4 1.2,-0.6 0.3,-0.2 0.9,-0.7 0.9,-1.1 -0.2,-0.2 -0.3,0 -0.5,0.2 z m -18.4,-8.3 c 0.2,-0.1 0.4,-0.1 0.6,-0.2 0.2,-0.1 0.5,-0.1 0.7,-0.3 0.2,-0.1 0.3,-0.2 0.4,-0.3 0.4,-0.2 0.8,-0.5 0.9,-0.9 0.1,-0.3 0.1,-0.5 -0.1,-0.7 -0.2,-0.2 -0.4,-0.2 -0.6,-0.1 -0.2,0.1 -0.3,0.1 -0.5,0.1 -0.1,0 -0.2,0.1 -0.4,0.1 -0.1,0 -0.2,0 -0.3,0 -0.2,0.1 -0.4,0.1 -0.6,0.2 -0.5,0.2 -0.8,0.6 -1.3,0.8 -0.2,0.1 -0.4,0.1 -0.6,0.3 -0.1,0.1 -0.1,0.2 -0.1,0.3 0,0.1 0.1,0.1 0.2,0.2 0.1,0.1 0.5,1.1 0.8,0.7 l 0.2,0.3 c 0.3,-0.2 0.4,-0.4 0.7,-0.5 z m 5,20.6 c 0.1,-0.1 0.2,-0.2 0.2,-0.3 0,0 0,-0.1 0,-0.1 l -0.2,0.4 z m -9.6,-18.3 c 0,0.1 -0.1,0.1 -0.1,0.2 0,0 -0.1,0.1 -0.1,0.1 -0.1,0.3 0.8,0.9 0.9,1.2 v -0.2 c 0.1,0.2 0.5,0.3 0.6,0.4 0.1,0 0.1,0 0.2,0.1 0,0 0.1,0.1 0.1,0.1 0.1,0.1 0.3,0.2 0.4,0.3 0.2,0.2 0.4,0.4 0.7,0.5 0.4,0.1 0.8,-0.2 1.1,-0.5 0.2,-0.2 0.2,-0.5 0.3,-0.7 0.1,-0.1 0.2,-0.3 0.3,-0.4 0.1,-0.1 0.1,-0.2 0.1,-0.3 0.2,-0.4 0.2,-0.7 0,-1 -0.2,-0.2 -0.3,-0.2 -0.6,-0.4 -0.2,-0.1 -0.4,-0.2 -0.6,-0.4 -0.1,-0.1 -0.3,-0.2 -0.4,-0.3 -0.1,-0.1 -0.3,-0.1 -0.4,-0.2 -0.2,-0.1 -0.4,-0.4 -0.6,-0.4 -0.2,0 -0.4,0.1 -0.6,0.1 -0.2,0 -0.3,0 -0.5,0.1 -0.3,0.1 -0.6,0 -0.8,0.4 -0.1,0.2 0,0.3 0.1,0.5 0,0.2 0,0.3 -0.1,0.5 0.1,0 0.1,0.1 0,0.3 z m 26.8,3.8 c -0.1,0.1 -0.2,0.2 -0.3,0.3 -0.2,0.2 -0.3,0.5 -0.5,0.6 h 0.3 c -0.1,0.3 0.3,0.2 0.4,0.1 0.2,-0.1 0.3,-0.1 0.4,-0.3 0.1,-0.1 0.4,-0.4 0.4,-0.5 0,-0.1 -0.2,-0.2 -0.2,-0.3 -0.2,0 -0.4,0 -0.5,0.1 z m -45.6,28 c 0.3,-0.3 0.7,-0.5 0.9,-0.9 0.1,-0.2 0.1,-0.3 0.2,-0.5 0.1,-0.1 0.2,-0.2 0.3,-0.3 0.2,-0.2 0.5,-0.4 0.7,-0.7 0.2,-0.2 0.4,-0.4 0.6,-0.6 0.1,-0.1 0.3,-0.2 0.1,-0.4 -0.1,-0.1 -0.3,0 -0.4,0.1 -0.3,0.2 -0.5,0.4 -0.8,0.6 -0.3,0.2 -0.8,0.2 -1.1,0.3 -0.3,0.1 -0.6,0.3 -0.9,0.4 -0.2,0.1 -0.4,0.1 -0.6,0.3 -0.1,0.1 -0.2,0.2 -0.3,0.3 -0.3,0.2 -0.6,0.4 -0.8,0.6 -0.2,0.2 -0.2,0.5 -0.5,0.7 -0.1,0.1 -0.2,0.1 -0.2,0.1 0,0 -0.1,0.1 -0.1,0.1 -0.1,0.1 -0.3,0.2 -0.4,0.3 -0.1,0.1 -0.2,0.1 -0.4,0.2 -0.2,0.1 -0.3,0.1 -0.6,0.2 -0.1,0 -0.2,0.1 -0.4,0.1 -0.1,0 -0.2,0 -0.3,0 -0.2,0 -0.4,0.1 -0.6,0.2 -0.1,0 -0.3,0.1 -0.5,0.1 -0.2,0 -0.3,0 -0.4,0.2 -0.1,0.1 -0.2,0.2 -0.2,0.3 0,0 0,0.2 -0.1,0.2 -0.1,0.2 -0.2,0.3 -0.3,0.4 0,0.1 0,0.2 -0.1,0.3 -0.1,0.1 -0.2,0.2 -0.3,0.3 -0.1,0.2 -0.3,0.3 -0.5,0.5 l 0,0.1 c 0.1,0 0.3,0.1 0.4,0.1 0.2,0 0.5,0 0.6,0 0.2,0 0.4,-0.1 0.6,-0.2 0.2,0 0.4,0 0.6,-0.1 0.3,-0.1 0.6,-0.2 0.9,-0.4 0.2,-0.1 0.3,-0.2 0.5,-0.3 0.1,-0.1 0.2,-0.1 0.3,-0.2 0.1,-0.1 0.1,-0.2 0.2,-0.3 0.1,-0.1 0.4,-0.2 0.6,-0.3 0.2,0 0.3,-0.2 0.5,-0.2 0.2,0 0.4,0 0.6,0 0.4,-0.1 1,-0.4 1.3,-0.7 0.2,-0.2 0.3,-0.4 0.5,-0.6 0.2,-0.1 0.3,-0.2 0.4,-0.3 z m 17.8,-30.8 c -0.1,0 -0.2,0.1 -0.3,0.1 -0.1,0 -0.1,0.1 -0.2,0.1 -0.1,0 -0.2,-0.1 -0.3,-0.1 -0.1,0 -0.2,0 -0.3,0 -0.3,0 -1.3,0.2 -1.3,0.5 0.2,0.1 0.4,0.2 0.6,0.4 0.1,0.1 0.1,0.1 0.3,0.1 0.1,0 0.2,0 0.3,0 0.1,0 0.1,-0.1 0.2,-0.1 0.1,0 0.1,0 0.2,0 0.1,0 0.2,0 0.4,0.1 0.1,0.1 0.3,0.3 0.4,0.3 0,-0.1 0,-0.1 0,-0.2 l 0.1,0.1 0,0.1 c 0.4,0.1 0.7,-0.2 1.1,-0.2 0,-0.2 0.1,-0.5 0,-0.7 0,-0.2 -0.1,-0.3 -0.3,-0.5 -0.2,-0.1 -0.3,-0.2 -0.5,-0.3 0,0.1 -0.2,0.2 -0.4,0.3 z M 194.5,126 c 0.1,0.1 0.3,0.1 0.4,0.2 0.4,0.1 0.9,0.2 1.3,0 0.2,-0.1 0.3,-0.2 0.3,-0.4 0.1,-0.2 0,-0.5 0,-0.7 0,-0.3 -0.2,-0.6 -0.2,-0.8 0,-0.3 -0.1,-0.6 -0.2,-1 -0.1,-0.4 -0.4,-0.6 -0.9,-0.6 -0.1,0 -0.2,0 -0.3,0.1 -0.1,0 -0.1,0.1 -0.2,0.2 -0.1,0.2 -0.3,0.4 -0.5,0.5 -0.2,0.1 -0.4,0.2 -0.5,0.5 -0.1,0.2 -0.1,0.5 -0.1,0.8 0,0.1 0.1,0.3 0.1,0.4 0.1,0.2 0.2,0.2 0.3,0.4 0.1,0.1 0.1,0.2 0.2,0.2 0,0 0.1,0.1 0.1,0.1 h -0.2 c 0.2,-0.1 0.3,0.1 0.4,0.1 z m 4.4,-4.7 c 0.1,0 0.2,0 0.3,0 0.2,0 0.3,-0.2 0.5,-0.2 0.2,0 0.3,0 0.4,-0.2 0.1,-0.1 0.1,-0.2 0.2,-0.3 0,-0.1 0.1,-0.2 0.1,-0.2 0.1,-0.1 0.1,-0.1 0.1,-0.2 0,-0.1 0.1,-0.1 0.1,-0.2 0,-0.2 -0.1,-0.4 -0.1,-0.6 -0.3,-0.5 -0.8,-0.8 -1.4,-0.9 -0.4,-0.1 -0.9,0.1 -1.3,0.4 -0.1,0.1 -0.2,0.2 -0.2,0.2 -0.1,0.1 -0.1,0.1 -0.2,0.2 -0.1,0.1 -0.2,0.2 -0.2,0.3 -0.1,0.1 -0.1,0.2 -0.1,0.3 0,0.2 0,0.5 0.2,0.7 0,0 0.1,0.1 0.1,0.1 0.1,0 0.1,0.1 0.2,0.2 0.1,0.1 0.1,0.1 0.2,0.2 0.2,0.1 0.4,0.1 0.6,0.2 0.1,0 0.2,0 0.2,0.1 0,0 0.1,0 0.1,0 l -0.1,0.1 c 0.2,-0.1 0.3,-0.2 0.3,-0.2 z m 3.7,-5.8 c 0.1,-0.1 0.1,-0.1 0.1,-0.2 0,-0.1 0.1,-0.1 0.1,-0.2 0.1,-0.1 0.1,-0.2 0.2,-0.3 0.1,-0.1 0.2,-0.2 0.2,-0.3 0.1,-0.3 0.2,-0.5 0,-0.8 -0.1,-0.2 -0.3,-0.4 -0.4,-0.5 -0.1,-0.1 -0.2,-0.3 -0.4,-0.3 -0.3,-0.1 -0.7,0 -0.9,0.2 -0.1,0.2 -0.2,0.4 -0.4,0.5 -0.1,0.1 -0.3,0.2 -0.4,0.3 -0.2,0.3 -0.2,0.5 0,0.8 0.1,0.1 0.2,0.2 0.3,0.4 0.1,0.1 0.1,0.1 0.2,0.2 0.1,0 0.1,0.1 0.1,0.1 l -0.3,0.1 c 0.1,0 0.2,0.1 0.3,0.1 0.1,0 0.1,0.1 0.2,0.1 0.2,0 0.4,0 0.5,0 0.5,0 0.5,-0.1 0.6,-0.2 z m -5,11 c 0.1,0.5 0.4,1 0.8,1.4 0.4,0.3 0.8,0.6 1.3,0.8 0.3,0.2 0.8,0.2 1.2,0.3 0.1,0 0.2,0 0.2,0 0.1,0 0.1,0 0.2,-0.1 0.2,0 0.2,0 0.3,-0.2 0.1,-0.1 0.2,-0.3 0.3,-0.4 0,-0.1 0.1,-0.2 0.1,-0.4 l 0,0 c 0.1,-0.1 0,-0.2 0.1,-0.2 0,-0.1 0,-0.2 0,-0.3 0,-0.1 0,-0.2 -0.1,-0.3 0,-0.1 0,-0.2 0,-0.2 0,-0.1 -0.1,-0.2 -0.1,-0.3 -0.1,-0.2 -0.2,-0.3 -0.3,-0.5 -0.2,-0.2 -0.4,-0.4 -0.4,-0.7 -0.1,-0.3 -0.1,-0.5 0.1,-0.8 0,-0.1 0.1,-0.2 0.1,-0.4 0,-0.1 0,-0.2 0,-0.3 0,-0.2 0,-0.4 -0.1,-0.6 0,-0.1 -0.1,-0.1 -0.1,-0.2 0,-0.1 0,-0.2 -0.1,-0.3 -0.2,-0.3 -0.5,-0.3 -0.8,-0.4 -0.1,0 -0.2,-0.1 -0.2,-0.1 -0.1,-0.1 -0.1,-0.1 -0.2,-0.1 -0.2,0 -0.3,-0.1 -0.5,-0.1 -0.2,0 -0.3,0.1 -0.4,0.2 -0.2,0.1 -0.2,0.2 -0.5,0.2 -0.1,0 -0.2,0 -0.2,0.1 -0.1,0 -0.2,0.1 -0.2,0.1 -0.1,0.1 -0.3,0.2 -0.4,0.3 0.1,0.2 0.1,0.3 0.1,0.5 0,0.2 -0.1,0.3 -0.2,0.4 -0.1,0.3 -0.3,0.6 -0.2,0.9 0.1,0.2 0.2,0.4 0.3,0.6 -0.1,0.5 -0.2,0.8 -0.1,1.1 z m -1.2,18.9 c 0,0 0,0 0,0 0,-0.1 0,-0.2 0,-0.2 v 0.2 z m 0,0.1 v -0.2 c 0,0.1 0,0.2 0,0.2 z m 18,21.5 c 0,0.1 0,0.1 0,0 0,0.1 0,0.1 0,0 l 0,0 z m -0.6,0.5 c -0.1,0.2 -0.2,0.3 -0.3,0.5 -0.1,0.2 -0.1,0.5 -0.3,0.7 -0.3,0.4 -0.8,0.8 -1.2,1 -0.3,0.2 -0.6,0 -0.8,0.2 -0.2,0.1 -0.3,0.3 -0.4,0.5 -0.4,0.4 -0.9,0.1 -1.5,0.2 -0.1,0 -0.2,0.1 -0.3,0.2 -0.1,0.1 -0.3,0.1 -0.5,0.1 -0.2,0.1 -0.4,0.2 -0.7,0.3 -0.2,0.1 -0.5,0 -0.8,0 -0.4,0 -0.5,0.1 -0.8,0.3 -0.5,0.2 -1,0.2 -1.5,0.2 -0.5,0 -0.8,0.2 -1.3,0.4 -0.2,0.1 -0.6,0.2 -0.7,0.3 -0.3,0.2 -0.4,0.5 -0.6,0.7 -0.5,0.4 0,0.8 0.3,1.2 0,0.1 0.2,0.2 0.2,0.2 0.1,0.1 0,0.2 0.1,0.3 0.1,0.3 0.1,0.5 0.2,0.7 0,0.1 0.1,0.2 0.1,0.3 0,0.1 0,0.3 0,0.4 0,0.4 0.1,0.5 0.4,0.8 0.1,0.1 0.1,0.2 0.3,0.2 0.1,0 0.3,0.1 0.4,0.1 0.3,0.1 0.6,0.1 0.8,-0.1 0.3,-0.2 0.5,-0.7 0.9,-0.8 0.2,-0.1 0.5,0 0.8,0 0.1,0 0.2,-0.1 0.3,-0.1 0.2,0 0.3,0 0.5,-0.1 0.6,-0.1 0.9,-0.7 1.1,-1.1 0.2,-0.4 0.7,-0.6 0.9,-1 0.3,-0.4 0.7,-0.9 1,-1.3 0.4,-0.5 1,-0.7 1.3,-1.2 0.1,-0.2 0.3,-0.4 0.5,-0.5 0.1,-0.1 0.1,-0.3 0.1,-0.4 0.1,-0.2 0.2,-0.4 0.4,-0.5 0.2,-0.1 0.3,-0.2 0.5,-0.4 0.2,-0.2 0.4,-0.5 0.7,-0.6 0.4,-0.3 0.9,-0.4 1.1,-0.9 0.1,-0.2 0.1,-0.6 0,-0.8 -0.1,-0.2 -0.3,-0.3 -0.4,-0.4 0,-0.1 -0.1,-0.1 -0.2,-0.2 l 0,0.1 c 0,0 0,0 0,-0.1 0,0 -0.1,-0.1 -0.2,-0.1 -0.2,0.3 -0.3,0.6 -0.4,0.7 z" /><radialGradient
+         gradientUnits="userSpaceOnUse"
+         gradientTransform="matrix(1,0,0,-0.9474,-22.5352,271.0349)"
+         r="248.1958"
+         cy="93.960899"
+         cx="167.2603"
+         id="SVGID_13_"><stop
+           id="stop144"
+           style="stop-color:#8ED3F5;stop-opacity:0"
+           offset="0.6157" /><stop
+           id="stop146"
+           style="stop-color:#7ACDF2"
+           offset="0.7131" /></radialGradient><path
+         style="opacity:0.4;fill:url(#radialGradient5937)"
+         inkscape:connector-curvature="0"
+         id="path148"
+         d="m 100.2,63.3 c 1.3,-1.7 2.7,-3.2 4.2,-4.6 0.5,-0.5 1.2,-0.7 1.9,-0.7 2.9,-3.3 7.1,-6.3 8.9,-7.2 0.7,-0.4 1.6,-0.4 2.4,0 4,-2.6 9.7,-5.8 15.1,-7 0.2,-0.1 0.5,-0.1 0.7,-0.1 0.5,0 1,0.1 1.4,0.4 0.8,-0.2 1.7,-0.4 2.8,-0.6 1.3,-0.3 2.6,-0.4 4,-0.4 2.9,0 8,0.4 8.7,3.3 0.3,1.3 -0.2,2.5 -1.4,3.2 -0.2,0.1 -0.8,0.4 -1.5,0.8 -0.3,0.1 -0.7,0.3 -1.1,0.5 -0.1,0.7 -0.5,1.3 -1,1.8 -9.2,7.5 -15.5,16.9 -18.7,27.9 0.3,0.6 0.6,1.3 1,1.9 0.4,0.7 0.9,1.5 1.5,2.3 3.3,4.7 7.6,7.2 12.7,7.2 h 0.1 c 1.4,0 2.7,0 3.9,0 22.1,0 29.2,1.1 29.6,7.2 0.2,4.4 -0.7,8.1 -2.3,11.1 -1.7,3.6 -6,7.4 -9.2,9.8 -0.5,0.4 -1.8,1.1 -4.7,2.7 -12.7,7.2 -20.1,11.9 -22.1,14.2 0.2,0.4 0.4,0.9 0.5,1.3 0.2,0.4 0.3,0.7 0.3,1.2 0,0.7 -0.2,1.3 -0.7,1.8 0.1,0.6 0.2,1.3 0.3,2.1 0.1,0.5 0.2,1.2 0.3,1.9 0.7,4.5 0,7.5 -0.6,10 -0.1,0.5 -0.2,1 -0.3,1.4 -0.1,0.5 -0.3,0.9 -0.7,1.3 0.7,2.3 -0.5,3.8 -1.4,4.4 -1.2,0.8 -2.8,0.4 -3.6,-0.8 l 0,0 c 0,0 -0.8,-1.1 -3.1,-2.2 -0.9,-0.5 -2.4,-1.1 -3.9,-1.7 -0.5,0.7 -1.3,1.3 -2.3,1.2 -0.4,0 -0.9,-0.1 -1.2,-0.3 0,0 -0.9,-0.5 -2.4,-1 -3,2.2 -4.5,6 -4.5,8.8 v 0.1 c 0,5.3 0,13.2 17.3,23.5 6.1,3.6 11.9,5.3 17.8,5.3 7.3,0 13.7,-2.8 19.4,-5.2 3.1,-1.3 6,-2.6 8.8,-3.3 3.4,-0.9 6.7,-1.3 10,-1.3 12,0 21.5,5.9 26.3,11.5 2.8,3.2 3.6,7.2 2.1,10.5 -1.4,3.1 -4.5,5 -8.1,5 -0.8,0 -1.6,-0.1 -2.4,-0.3 -4.3,-1 -10.1,3.1 -18.6,9 -1.6,1.1 -3.3,2.3 -5.1,3.6 -8.9,6.1 -21.9,9.5 -35.6,9.5 -3.4,0 -6.8,-0.2 -10.1,-0.6 4,3.7 8.6,7.6 12.1,8.7 2.5,0.8 5.4,1.2 8.3,1.6 5.5,0.7 11.1,1.5 14.5,4.9 0.6,0.5 0.9,1.2 0.9,2 0,1 -0.6,1.9 -1.5,2.4 7.7,2.5 15.5,3.7 23.1,3.7 5,0 8.5,-0.5 10.4,-0.8 l 0.5,-0.1 c 10,-1.5 14.5,-4.7 16.5,-6.1 l 0.2,-0.1 c 1,-0.7 2.4,-0.6 3.4,0.2 0.1,0.1 0.3,0.3 0.4,0.4 0.2,-0.2 0.4,-0.4 0.6,-0.7 0.8,-0.9 1.7,-1.8 2.6,-2.8 5.5,-5.7 10.9,-8.4 11.2,-8.5 0.7,-0.4 1.6,-0.4 2.3,0 0.7,0.4 1.3,1.1 1.4,1.9 0.3,1.5 0.1,2.8 0,3.9 0,0.1 0,0.2 0,0.3 C 283,262.6 363.2,38.2 179.2,24.8 133.4,23.1 96,42.3 81.8,61.6 c 8.8,0 12.8,0.5 18.4,1.7 z"
+         enable-background="new    " /><linearGradient
+         gradientTransform="matrix(1,0,0,-1,-22.5352,286.4424)"
+         y2="10.5182"
+         x2="257.41061"
+         y1="119.4014"
+         x1="178.0381"
+         gradientUnits="userSpaceOnUse"
+         id="SVGID_14_"><stop
+           id="stop151"
+           style="stop-color:#1D406F"
+           offset="0" /><stop
+           id="stop153"
+           style="stop-color:#141728"
+           offset="1" /></linearGradient><path
+         style="fill:url(#linearGradient5939)"
+         inkscape:connector-curvature="0"
+         id="path155"
+         d="m 177.6,205.1 c -1,1 0.1,3.9 1.4,3.8 1.3,-0.1 3.2,-0.7 3.2,-0.7 0,0 1,1.9 0,2.5 -1,0.5 -3.8,0.3 -0.1,1.7 3.8,1.4 4.8,1 5,0.3 0.3,-0.7 1.5,-3.1 2.2,-2.9 0.6,-1.2 -2,-2.4 -0.6,-3.2 1.4,-0.8 0.3,-3.9 0.3,-3.9 0,0 -2,0.1 -2.8,1.5 -0.8,1.4 -2,-0.1 -2.8,-0.1 -0.1,0.8 -0.7,1.5 -0.7,1.5 l -0.6,-1.3 c 0.1,-0.1 -3.8,-0.2 -4.5,0.8 z" /><g
+         id="g157"><defs
+           id="defs159"><path
+             inkscape:connector-curvature="0"
+             d="m 175.7,337 c 93,0 168.4,-75.4 168.4,-168.5 C 344.1,75.4 268.7,0 175.7,0 82.7,0 7.3,75.4 7.3,168.5 7.3,261.5 82.7,337 175.7,337 z"
+             id="SVGID_15_" /></defs><clipPath
+           id="SVGID_16_"><use
+             height="372.79999"
+             width="352.20001"
+             y="0"
+             x="0"
+             style="overflow:visible"
+             id="use163"
+             overflow="visible"
+             xlink:href="#SVGID_15_" /></clipPath></g><g
+         id="g165"><defs
+           id="defs167"><path
+             inkscape:connector-curvature="0"
+             d="m 175.5,337.9 c 93.1,0 168.6,-75.5 168.6,-168.7 C 344.1,76 268.6,0.5 175.5,0.5 82.4,0.5 6.9,76.1 6.9,169.2 c 0,93.2 75.5,168.7 168.6,168.7 z"
+             id="SVGID_17_" /></defs><clipPath
+           id="SVGID_18_"><use
+             height="372.79999"
+             width="352.20001"
+             y="0"
+             x="0"
+             style="overflow:visible"
+             id="use171"
+             overflow="visible"
+             xlink:href="#SVGID_17_" /></clipPath><radialGradient
+           gradientUnits="userSpaceOnUse"
+           gradientTransform="matrix(0.9408,0,0,-0.9578,-1.4635,284.0533)"
+           r="210.28371"
+           cy="85.356903"
+           cx="187.3291"
+           id="SVGID_19_"><stop
+             id="stop174"
+             style="stop-color:#00A9D4;stop-opacity:0"
+             offset="0.7949" /><stop
+             id="stop176"
+             style="stop-color:#50B6E7;stop-opacity:0.4489"
+             offset="0.9065" /><stop
+             id="stop178"
+             style="stop-color:#70CAF2"
+             offset="0.9807" /></radialGradient><path
+           style="fill:url(#radialGradient5941)"
+           inkscape:connector-curvature="0"
+           id="path180"
+           d="m 175.5,337.9 c 93,0 168.3,-75.4 168.3,-168.4 C 343.8,76.5 268.5,1 175.5,1 82.5,1 7.2,76.5 7.2,169.5 c 0,93 75.3,168.4 168.3,168.4 z"
+           clip-path="url(#SVGID_18_)" /><radialGradient
+           gradientUnits="userSpaceOnUse"
+           gradientTransform="matrix(1,0,0,-0.9811,-22.5352,278.7874)"
+           r="191.4198"
+           cy="226.07471"
+           cx="215.1821"
+           id="SVGID_20_"><stop
+             id="stop183"
+             style="stop-color:#00A3DE"
+             offset="0.1335" /><stop
+             id="stop185"
+             style="stop-color:#009ED9"
+             offset="0.1726" /><stop
+             id="stop187"
+             style="stop-color:#0292CE"
+             offset="0.2331" /><stop
+             id="stop189"
+             style="stop-color:#1D7EBE"
+             offset="0.307" /><stop
+             id="stop191"
+             style="stop-color:#2276B8"
+             offset="0.3342" /><stop
+             id="stop193"
+             style="stop-color:#2468A5"
+             offset="0.44" /><stop
+             id="stop195"
+             style="stop-color:#1F4276"
+             offset="0.6546" /><stop
+             id="stop197"
+             style="stop-color:#1D204E"
+             offset="0.8622" /></radialGradient><path
+           style="opacity:0.6;fill:url(#radialGradient5943)"
+           inkscape:connector-curvature="0"
+           id="path199"
+           d="m 302.7,277.3 c 9.7,-18.2 22.8,-28.8 29.9,-41.4 9.4,-16.7 27.2,-63.8 13.8,-101.7 6.2,23.8 4.2,47.9 -15.4,60 6.3,-16.7 10.3,-53.5 3.8,-86.6 -4.3,-21.5 -17.7,-40.8 -26.5,-46.8 8.1,6.1 14.6,27.8 14.4,37.7 C 305.8,70 278.2,42.8 236.6,31.3 269,52.7 281.1,70.8 288.7,86.9 280,78.1 265.2,68.8 255.2,68 c 15,11.2 40.1,44.3 37.5,94.4 -3.9,-8.1 -10.9,-20.7 -15.9,-25.2 5.4,49.3 0.7,59.9 -2.6,72.9 -0.7,-6 -2.9,-10.5 -4.1,-13.3 0,0 -0.6,15.4 -10.6,37.3 -7.6,16.6 -15.4,21.7 -18.9,21.2 -3.1,-0.5 -1,-3.5 -1.5,-6.4 0,0 -5.2,2.5 -10.4,7.9 -4.9,5.1 -9.3,10.7 -11.6,9.1 1.7,-1.4 3,-3.8 4.3,-6.1 -1.9,1.3 -6.8,5 -17.8,6.6 -4.5,0.7 -23.6,4.1 -49,-8.6 3.7,-0.4 9.2,-1.7 13.5,0.8 -4.2,-4.6 -14.4,-3.7 -21.7,-6 -6.4,-2 -14.7,-11 -19.5,-15.5 19.5,4.8 40.3,1.3 52.3,-6.9 12.1,-8.3 19.3,-14.4 25.7,-12.9 6.4,1.4 10.7,-5 5.7,-10.8 -5,-5.7 -17.1,-13.5 -33.6,-9.3 -14.2,3.5 -26,15.9 -47.9,2.9 -18.7,-11.1 -18.6,-20.1 -18.6,-25.8 0,-3.9 2.4,-9.3 6.9,-11.8 2.4,0.9 3.9,1.7 3.9,1.7 0,0 -1.1,-1.7 -1.8,-2.6 0.2,-0.1 0.3,-0.1 0.5,-0.2 2,0.7 6.4,2.3 8.7,3.5 3.1,1.5 4.1,3.1 4.1,3.1 0,0 0.7,-0.4 0,-2 -0.3,-0.7 -1.4,-2.6 -4.4,-4.4 0.1,0 0.1,0 0.2,0 1.6,0.6 3.3,1.4 5.1,2.5 0.6,-2.7 1.7,-5.5 1,-10.4 -0.5,-3.5 -0.5,-4.3 -1.3,-5.6 -0.7,-1.1 0.2,-1.5 1.3,-0.6 -0.3,-0.8 -0.7,-1.7 -1.1,-2.6 0,0 0,0 0,0 1,-4.2 26.2,-17.5 28.1,-18.9 2.6,-1.9 5.3,-4.9 7,-8.4 1.2,-2.2 2.1,-5.3 1.8,-9.8 -0.2,-3.3 -2.1,-5.2 -29.1,-5 -7.4,0.1 -12.2,-4.2 -15.1,-8.3 -0.6,-0.9 -1.1,-1.7 -1.6,-2.5 -0.6,-1.1 -1.1,-2.2 -1.4,-3 3.2,-11.7 9.7,-21.9 19.8,-30.1 0.6,-0.5 -2.4,0.3 -1.8,-0.2 0.7,-0.6 4.9,-2.7 5.7,-3.1 1,-0.6 -4.6,-2.1 -9.5,-1.1 -4.9,1 -5.8,1.6 -8.3,2.9 1,-1.1 4.3,-2.7 3.5,-2.6 -5.3,1.2 -11.5,4.7 -16.8,8.4 0,-0.5 0,-0.9 0.1,-1.6 -2.5,1.3 -8.6,6 -10.1,9.5 0,-0.8 0,-1.2 -0.1,-2 -1.7,1.6 -3.4,3.4 -4.9,5.5 0,0 0,0 -0.1,0.1 -15.8,-3.9 -29.2,-3 -40.4,0.6 -2.7,-1.9 -7,-4.9 -13.7,-15.4 -0.4,-0.6 -0.4,1.4 -0.8,0.8 -2.7,-4.8 -4.9,-12.9 -5.2,-18.8 0,0 -4.3,2.5 -7.2,11.5 -0.5,1.6 -0.9,2.5 -1.2,3.4 -0.1,0.3 0.2,-2.9 0.1,-2.6 -0.5,1.1 -2.1,2.9 -2.6,4.9 -0.4,1.5 -1,2.4 -1.2,4.3 0,0 0,0.1 -0.1,0.1 0,-0.5 -0.1,-2.2 -0.2,-1.9 -1.3,3.3 -2.4,7.1 -3.4,11.4 -1.4,6.8 -2.8,16.1 -1.9,27.8 0,1 0.1,1.9 0.1,2.7 -4.2,5.8 -7,10.9 -8.1,13.4 -5.2,10.1 -10.5,25.6 -14.8,49.7 0,0 2.9,-9.1 8.6,-19.4 -4.2,13 -7.6,33.1 -5.6,63.4 0.1,-1 1,-8.6 3.2,-18.9 1.1,20.1 5.9,44.8 21.5,71.7 11.9,20.4 43.4,67.9 122.3,85.7 -8.7,-2.5 -14,-7.5 -14,-7.5 0,0 29.5,9.5 51,8.7 -6.7,-1.2 -8.1,-4.4 -8.1,-4.4 0,0 76.5,4.3 103,-31.8 -9.1,10.6 -32,13.6 -40.6,13.7 13.2,-12.1 42.3,-11.8 73.9,-42.9 17.3,-17 19.2,-30 21.1,-42.1 -2.9,16.3 -18,25.8 -33.8,34.5 z"
+           clip-path="url(#SVGID_18_)" /></g><path
+         style="fill:#8ed8f8"
+         inkscape:connector-curvature="0"
+         id="path201"
+         d="M 176.2,1.8 C 241.5,1.8 298.1,39 326,93.4 298.4,38.2 241.4,0.3 175.5,0.3 82.5,0.3 7.2,75.7 7.2,168.7 c 0,27.7 6.7,53.8 18.5,76.8 C 14.3,222.8 8,197.2 8,170.2 7.9,77.2 83.3,1.8 176.2,1.8 z" /><radialGradient
+         gradientUnits="userSpaceOnUse"
+         gradientTransform="matrix(1,0,0,-0.9811,-22.5352,278.7942)"
+         r="322.2244"
+         cy="216.9194"
+         cx="278.95999"
+         id="SVGID_21_"><stop
+           id="stop204"
+           style="stop-color:#FFFFFF"
+           offset="0.119" /><stop
+           id="stop206"
+           style="stop-color:#FFFFFA"
+           offset="0.1221" /><stop
+           id="stop208"
+           style="stop-color:#FFE560"
+           offset="0.2502" /><stop
+           id="stop210"
+           style="stop-color:#FFDF56"
+           offset="0.2866" /><stop
+           id="stop212"
+           style="stop-color:#F8D03B"
+           offset="0.3468" /><stop
+           id="stop214"
+           style="stop-color:#F0BE1B"
+           offset="0.4061" /><stop
+           id="stop216"
+           style="stop-color:#EB9D23"
+           offset="0.4726" /><stop
+           id="stop218"
+           style="stop-color:#E57C27"
+           offset="0.5478" /><stop
+           id="stop220"
+           style="stop-color:#DD5626"
+           offset="0.7647" /><stop
+           id="stop222"
+           style="stop-color:#C33A28"
+           offset="0.903" /><stop
+           id="stop224"
+           style="stop-color:#B02228"
+           offset="1" /></radialGradient><path
+         style="fill:url(#radialGradient5945)"
+         inkscape:connector-curvature="0"
+         id="path226"
+         d="m 303.4,269.6 c 9.7,-18.2 22.8,-28.9 29.9,-41.5 9.4,-16.8 27.3,-63.9 13.8,-102 6.2,23.8 4.2,48 -15.4,60.2 6.4,-16.8 10.3,-53.6 3.8,-86.8 -4.3,-21.6 -17.8,-40.9 -26.5,-46.9 8.1,6.1 14.6,27.8 14.4,37.8 C 306.5,61.9 278.8,34.6 237,23.1 269.5,44.5 281.6,62.7 289.2,78.9 280.5,70 265.7,60.8 255.6,60 c 15,11.2 40.2,44.4 37.5,94.7 -3.9,-8.1 -10.9,-20.8 -15.9,-25.2 5.4,49.4 0.7,60 -2.6,73.1 -0.7,-6 -2.9,-10.6 -4.1,-13.3 0,0 -0.6,15.4 -10.6,37.4 -7.6,16.7 -15.4,21.8 -18.9,21.2 -0.9,-0.1 -1.4,-0.5 -1.4,-0.5 0.2,-2.2 0.5,-4.4 -0.1,-5.9 0,0 -3.2,1.1 -5.3,4 -0.8,1.2 -1.9,2.3 -3.3,3.4 -0.2,0.2 2.3,-3.2 2.1,-3.1 -1.2,1 -2.6,2.2 -3.9,3.6 -4.9,5.1 -9.4,10.8 -11.7,9.2 2.1,-0.7 3.9,-3.4 4.3,-6.1 -1.9,1.4 -6.8,5 -17.8,6.7 -4.5,0.7 -23.6,4.2 -49.1,-8.6 3.7,-0.4 9.3,-1.7 13.5,0.8 -4.2,-4.6 -14.5,-3.7 -21.8,-6 -6.4,-2 -14.7,-11 -19.5,-15.5 19.6,4.8 40.4,1.3 52.4,-6.9 12.2,-8.3 19.4,-14.4 25.8,-12.9 6.4,1.4 10.7,-5 5.7,-10.8 -5,-5.8 -17.2,-13.5 -33.7,-9.4 -12.7,3.2 -23.4,13.3 -41.2,6.3 -1.1,-0.4 -2.2,-0.9 -3.3,-1.5 -1.1,-0.6 3.7,0.7 2.5,0 -3.4,-1.3 -9.6,-4.1 -11.2,-5.2 -0.3,-0.2 2.6,0.5 2.3,0.3 -16.9,-10 -15.8,-18 -15.8,-22.9 0,-4 2.4,-9.3 6.9,-11.8 2.4,0.9 3.9,1.7 3.9,1.7 0,0 -1.1,-1.7 -1.8,-2.6 0.2,-0.1 0.3,-0.1 0.5,-0.2 2,0.7 6.5,2.3 8.7,3.5 3.1,1.5 4.1,3.1 4.1,3.1 0,0 0.7,-0.5 0,-2 -0.3,-0.7 -1.4,-2.6 -4.4,-4.4 0.1,0 0.1,0 0.1,0 1.6,0.6 3.3,1.4 5.1,2.5 0.6,-2.7 1.7,-5.5 1,-10.4 -0.6,-3.5 -0.5,-4.3 -1.3,-5.6 -0.7,-1.1 0.2,-1.5 1.3,-0.6 -0.3,-0.9 -0.7,-1.7 -1.1,-2.6 0,0 0,0 0,0 0.9,-4.3 26.3,-17.6 28.2,-19 2.6,-1.9 5.3,-4.9 7,-8.4 1.2,-2.2 2.1,-5.3 1.9,-9.9 -0.2,-3.3 -2.1,-5.3 -29.2,-5 -7.4,0.1 -12.2,-4.2 -15.1,-8.3 -0.6,-0.9 -1.1,-1.7 -1.6,-2.5 -0.6,-1.1 -1.1,-2.2 -1.4,-3 3.2,-11.7 9.7,-21.9 19.8,-30.2 0.6,-0.5 -2.4,0.3 -1.8,-0.2 0.7,-0.6 5,-2.7 5.8,-3.1 1,-0.6 -4.7,-2.1 -9.5,-1.1 -4.9,1 -5.8,1.6 -8.4,2.9 1,-1.1 4.3,-2.7 3.5,-2.6 -5.3,1.2 -11.6,4.7 -16.9,8.4 0,-0.5 0,-0.9 0.1,-1.6 -2.5,1.3 -8.6,6 -10.1,9.5 0,-0.8 0,-1.2 -0.1,-2 -1.7,1.6 -3.4,3.5 -4.9,5.5 0,0 0,0.1 -0.1,0.1 C 84.9,63.1 71.5,64 60.2,67.6 57.5,65.7 53.2,62.7 46.4,52.2 46,51.6 46,53.6 45.6,53 42.9,48.2 40.7,40 40.4,34.2 c 0,0 -4.4,2.5 -7.2,11.5 -0.5,1.6 -0.9,2.5 -1.2,3.4 -0.1,0.3 0.2,-2.9 0.1,-2.6 -0.5,1.1 -2.1,2.9 -2.6,4.9 -0.4,1.5 -1,2.4 -1.2,4.3 0,0 0,0.1 -0.1,0.1 0,-0.5 -0.1,-2.2 -0.2,-1.9 -1.3,3.3 -2.4,7.1 -3.4,11.4 -1.4,6.8 -2.8,16.1 -1.9,27.9 0,1 0.1,1.9 0.1,2.7 -4.3,5.9 -7,10.9 -8.1,13.4 -5.2,10.1 -10.5,25.7 -14.8,49.9 0,0 2.9,-9.1 8.6,-19.4 -4.2,13 -7.6,33.2 -5.6,63.5 0.1,-1 1,-8.7 3.2,-19 1.1,20.2 5.9,44.9 21.6,71.8 12,20.5 43.5,68.1 122.6,85.9 -8.7,-2.5 -14.1,-7.5 -14.1,-7.5 0,0 29.6,9.5 51.1,8.7 -6.8,-1.2 -8.1,-4.4 -8.1,-4.4 0,0 76.7,4.3 103.2,-31.8 -9.1,10.6 -32,13.6 -40.7,13.7 13.2,-12.1 42.4,-11.9 74.1,-43 17.4,-17.1 19.2,-30.1 21.1,-42.2 -2.5,15.8 -17.7,25.4 -33.5,34.1 z" /><radialGradient
+         gradientUnits="userSpaceOnUse"
+         gradientTransform="matrix(1,0,0,-0.9759,-22.5352,277.9357)"
+         r="239.543"
+         cy="165.92191"
+         cx="224.4688"
+         id="SVGID_22_"><stop
+           id="stop229"
+           style="stop-color:#B02228;stop-opacity:0"
+           offset="0.656" /><stop
+           id="stop231"
+           style="stop-color:#B02127;stop-opacity:0.6581"
+           offset="0.8716" /><stop
+           id="stop233"
+           style="stop-color:#B21F24;stop-opacity:0.9669"
+           offset="0.9728" /><stop
+           id="stop235"
+           style="stop-color:#B21F24"
+           offset="0.9837" /></radialGradient><path
+         style="fill:url(#radialGradient5947)"
+         inkscape:connector-curvature="0"
+         id="path237"
+         d="m 303.4,269.6 c 9.7,-18.2 22.8,-28.9 29.9,-41.5 9.4,-16.8 27.3,-63.9 13.8,-102 6.2,23.8 4.2,48 -15.4,60.2 6.4,-16.8 10.3,-53.6 3.8,-86.8 -4.3,-21.6 -17.8,-40.9 -26.5,-46.9 8.1,6.1 14.6,27.8 14.4,37.8 C 306.5,61.9 278.8,34.6 237,23.1 269.5,44.5 281.6,62.7 289.2,78.9 280.5,70 265.7,60.8 255.6,60 c 15,11.2 40.2,44.4 37.5,94.7 -3.9,-8.1 -10.9,-20.8 -15.9,-25.2 5.4,49.4 0.7,60 -2.6,73.1 -0.7,-6 -2.9,-10.6 -4.1,-13.3 0,0 -0.6,15.4 -10.6,37.4 -7.6,16.7 -15.4,21.8 -18.9,21.2 -0.9,-0.1 -1.4,-0.5 -1.4,-0.5 0.2,-2.2 0.5,-4.4 -0.1,-5.9 0,0 -3.2,1.1 -5.3,4 -0.8,1.2 -1.9,2.3 -3.3,3.4 -0.2,0.2 2.3,-3.2 2.1,-3.1 -1.2,1 -2.6,2.2 -3.9,3.6 -4.9,5.1 -9.4,10.8 -11.7,9.2 2.1,-0.7 3.9,-3.4 4.3,-6.1 -1.9,1.4 -6.8,5 -17.8,6.7 -4.5,0.7 -23.6,4.2 -49.1,-8.6 3.7,-0.4 9.3,-1.7 13.5,0.8 -4.2,-4.6 -14.5,-3.7 -21.8,-6 -6.4,-2 -14.7,-11 -19.5,-15.5 19.6,4.8 40.4,1.3 52.4,-6.9 12.2,-8.3 19.4,-14.4 25.8,-12.9 6.4,1.4 10.7,-5 5.7,-10.8 -5,-5.8 -17.2,-13.5 -33.7,-9.4 -12.7,3.2 -23.4,13.3 -41.2,6.3 -1.1,-0.4 -2.2,-0.9 -3.3,-1.5 -1.1,-0.6 3.7,0.7 2.5,0 -3.4,-1.3 -9.6,-4.1 -11.2,-5.2 -0.3,-0.2 2.6,0.5 2.3,0.3 -16.9,-10 -15.8,-18 -15.8,-22.9 0,-4 2.4,-9.3 6.9,-11.8 2.4,0.9 3.9,1.7 3.9,1.7 0,0 -1.1,-1.7 -1.8,-2.6 0.2,-0.1 0.3,-0.1 0.5,-0.2 2,0.7 6.5,2.3 8.7,3.5 3.1,1.5 4.1,3.1 4.1,3.1 0,0 0.7,-0.5 0,-2 -0.3,-0.7 -1.4,-2.6 -4.4,-4.4 0.1,0 0.1,0 0.1,0 1.6,0.6 3.3,1.4 5.1,2.5 0.6,-2.7 1.7,-5.5 1,-10.4 -0.6,-3.5 -0.5,-4.3 -1.3,-5.6 -0.7,-1.1 0.2,-1.5 1.3,-0.6 -0.3,-0.9 -0.7,-1.7 -1.1,-2.6 0,0 0,0 0,0 0.9,-4.3 26.3,-17.6 28.2,-19 2.6,-1.9 5.3,-4.9 7,-8.4 1.2,-2.2 2.1,-5.3 1.9,-9.9 -0.2,-3.3 -2.1,-5.3 -29.2,-5 -7.4,0.1 -12.2,-4.2 -15.1,-8.3 -0.6,-0.9 -1.1,-1.7 -1.6,-2.5 -0.6,-1.1 -1.1,-2.2 -1.4,-3 3.2,-11.7 9.7,-21.9 19.8,-30.2 0.6,-0.5 -2.4,0.3 -1.8,-0.2 0.7,-0.6 5,-2.7 5.8,-3.1 1,-0.6 -4.7,-2.1 -9.5,-1.1 -4.9,1 -5.8,1.6 -8.4,2.9 1,-1.1 4.3,-2.7 3.5,-2.6 -5.3,1.2 -11.6,4.7 -16.9,8.4 0,-0.5 0,-0.9 0.1,-1.6 -2.5,1.3 -8.6,6 -10.1,9.5 0,-0.8 0,-1.2 -0.1,-2 -1.7,1.6 -3.4,3.5 -4.9,5.5 0,0 0,0.1 -0.1,0.1 C 84.9,63.1 71.5,64 60.2,67.6 57.5,65.7 53.2,62.7 46.4,52.2 46,51.6 46,53.6 45.6,53 42.9,48.2 40.7,40 40.4,34.2 c 0,0 -4.4,2.5 -7.2,11.5 -0.5,1.6 -0.9,2.5 -1.2,3.4 -0.1,0.3 0.2,-2.9 0.1,-2.6 -0.5,1.1 -2.1,2.9 -2.6,4.9 -0.4,1.5 -1,2.4 -1.2,4.3 0,0 0,0.1 -0.1,0.1 0,-0.5 -0.1,-2.2 -0.2,-1.9 -1.3,3.3 -2.4,7.1 -3.4,11.4 -1.4,6.8 -2.8,16.1 -1.9,27.9 0,1 0.1,1.9 0.1,2.7 -4.3,5.9 -7,10.9 -8.1,13.4 -5.2,10.1 -10.5,25.7 -14.8,49.9 0,0 2.9,-9.1 8.6,-19.4 -4.2,13 -7.6,33.2 -5.6,63.5 0.1,-1 1,-8.7 3.2,-19 1.1,20.2 5.9,44.9 21.6,71.8 12,20.5 43.5,68.1 122.6,85.9 -8.7,-2.5 -14.1,-7.5 -14.1,-7.5 0,0 29.6,9.5 51.1,8.7 -6.8,-1.2 -8.1,-4.4 -8.1,-4.4 0,0 76.7,4.3 103.2,-31.8 -9.1,10.6 -32,13.6 -40.7,13.7 13.2,-12.1 42.4,-11.9 74.1,-43 17.4,-17.1 19.2,-30.1 21.1,-42.2 -2.5,15.8 -17.7,25.4 -33.5,34.1 z" /><radialGradient
+         gradientUnits="userSpaceOnUse"
+         gradientTransform="matrix(0.5289,-0.8327,-0.8392,-0.5131,164.8274,444.5247)"
+         r="244.5468"
+         cy="84.769501"
+         cx="246.6787"
+         id="SVGID_23_"><stop
+           id="stop240"
+           style="stop-color:#ED6624;stop-opacity:0"
+           offset="0.7099" /><stop
+           id="stop242"
+           style="stop-color:#ED6824;stop-opacity:0.4893"
+           offset="0.8351" /><stop
+           id="stop244"
+           style="stop-color:#EE6D24;stop-opacity:0.6655"
+           offset="0.8801" /><stop
+           id="stop246"
+           style="stop-color:#EF7624;stop-opacity:0.7911"
+           offset="0.9123" /><stop
+           id="stop248"
+           style="stop-color:#F28223;stop-opacity:0.8926"
+           offset="0.9382" /><stop
+           id="stop250"
+           style="stop-color:#F59123;stop-opacity:0.9786"
+           offset="0.9602" /><stop
+           id="stop252"
+           style="stop-color:#F69622"
+           offset="0.9657" /></radialGradient><path
+         style="fill:url(#radialGradient5949)"
+         inkscape:connector-curvature="0"
+         id="path254"
+         d="m 303.4,269.6 c 9.7,-18.2 22.8,-28.9 29.9,-41.5 9.4,-16.8 27.3,-63.9 13.8,-102 6.2,23.8 4.2,48 -15.4,60.2 6.4,-16.8 10.3,-53.6 3.8,-86.8 -4.3,-21.6 -17.8,-40.9 -26.5,-46.9 8.1,6.1 14.6,27.8 14.4,37.8 C 306.5,61.9 278.8,34.6 237,23.1 269.5,44.5 281.6,62.7 289.2,78.9 280.5,70 265.7,60.8 255.6,60 c 15,11.2 40.2,44.4 37.5,94.7 -3.9,-8.1 -10.9,-20.8 -15.9,-25.2 5.4,49.4 0.7,60 -2.6,73.1 -0.7,-6 -2.9,-10.6 -4.1,-13.3 0,0 -0.6,15.4 -10.6,37.4 -7.6,16.7 -15.4,21.8 -18.9,21.2 -0.9,-0.1 -1.4,-0.5 -1.4,-0.5 0.2,-2.2 0.5,-4.4 -0.1,-5.9 0,0 -3.2,1.1 -5.3,4 -0.8,1.2 -1.9,2.3 -3.3,3.4 -0.2,0.2 2.3,-3.2 2.1,-3.1 -1.2,1 -2.6,2.2 -3.9,3.6 -4.9,5.1 -9.4,10.8 -11.7,9.2 2.1,-0.7 3.9,-3.4 4.3,-6.1 -1.9,1.4 -6.8,5 -17.8,6.7 -4.5,0.7 -23.6,4.2 -49.1,-8.6 3.7,-0.4 9.3,-1.7 13.5,0.8 -4.2,-4.6 -14.5,-3.7 -21.8,-6 -6.4,-2 -14.7,-11 -19.5,-15.5 19.6,4.8 40.4,1.3 52.4,-6.9 12.2,-8.3 19.4,-14.4 25.8,-12.9 6.4,1.4 10.7,-5 5.7,-10.8 -5,-5.8 -17.2,-13.5 -33.7,-9.4 -12.7,3.2 -23.4,13.3 -41.2,6.3 -1.1,-0.4 -2.2,-0.9 -3.3,-1.5 -1.1,-0.6 3.7,0.7 2.5,0 -3.4,-1.3 -9.6,-4.1 -11.2,-5.2 -0.3,-0.2 2.6,0.5 2.3,0.3 -16.9,-10 -15.8,-18 -15.8,-22.9 0,-4 2.4,-9.3 6.9,-11.8 2.4,0.9 3.9,1.7 3.9,1.7 0,0 -1.1,-1.7 -1.8,-2.6 0.2,-0.1 0.3,-0.1 0.5,-0.2 2,0.7 6.5,2.3 8.7,3.5 3.1,1.5 4.1,3.1 4.1,3.1 0,0 0.7,-0.5 0,-2 -0.3,-0.7 -1.4,-2.6 -4.4,-4.4 0.1,0 0.1,0 0.1,0 1.6,0.6 3.3,1.4 5.1,2.5 0.6,-2.7 1.7,-5.5 1,-10.4 -0.6,-3.5 -0.5,-4.3 -1.3,-5.6 -0.7,-1.1 0.2,-1.5 1.3,-0.6 -0.3,-0.9 -0.7,-1.7 -1.1,-2.6 0,0 0,0 0,0 0.9,-4.3 26.3,-17.6 28.2,-19 2.6,-1.9 5.3,-4.9 7,-8.4 1.2,-2.2 2.1,-5.3 1.9,-9.9 -0.2,-3.3 -2.1,-5.3 -29.2,-5 -7.4,0.1 -12.2,-4.2 -15.1,-8.3 -0.6,-0.9 -1.1,-1.7 -1.6,-2.5 -0.6,-1.1 -1.1,-2.2 -1.4,-3 3.2,-11.7 9.7,-21.9 19.8,-30.2 0.6,-0.5 -2.4,0.3 -1.8,-0.2 0.7,-0.6 5,-2.7 5.8,-3.1 1,-0.6 -4.7,-2.1 -9.5,-1.1 -4.9,1 -5.8,1.6 -8.4,2.9 1,-1.1 4.3,-2.7 3.5,-2.6 -5.3,1.2 -11.6,4.7 -16.9,8.4 0,-0.5 0,-0.9 0.1,-1.6 -2.5,1.3 -8.6,6 -10.1,9.5 0,-0.8 0,-1.2 -0.1,-2 -1.7,1.6 -3.4,3.5 -4.9,5.5 0,0 0,0.1 -0.1,0.1 C 84.9,63.1 71.5,64 60.2,67.6 57.5,65.7 53.2,62.7 46.4,52.2 46,51.6 46,53.6 45.6,53 42.9,48.2 40.7,40 40.4,34.2 c 0,0 -4.4,2.5 -7.2,11.5 -0.5,1.6 -0.9,2.5 -1.2,3.4 -0.1,0.3 0.2,-2.9 0.1,-2.6 -0.5,1.1 -2.1,2.9 -2.6,4.9 -0.4,1.5 -1,2.4 -1.2,4.3 0,0 0,0.1 -0.1,0.1 0,-0.5 -0.1,-2.2 -0.2,-1.9 -1.3,3.3 -2.4,7.1 -3.4,11.4 -1.4,6.8 -2.8,16.1 -1.9,27.9 0,1 0.1,1.9 0.1,2.7 -4.3,5.9 -7,10.9 -8.1,13.4 -5.2,10.1 -10.5,25.7 -14.8,49.9 0,0 2.9,-9.1 8.6,-19.4 -4.2,13 -7.6,33.2 -5.6,63.5 0.1,-1 1,-8.7 3.2,-19 1.1,20.2 5.9,44.9 21.6,71.8 12,20.5 43.5,68.1 122.6,85.9 -8.7,-2.5 -14.1,-7.5 -14.1,-7.5 0,0 29.6,9.5 51.1,8.7 -6.8,-1.2 -8.1,-4.4 -8.1,-4.4 0,0 76.7,4.3 103.2,-31.8 -9.1,10.6 -32,13.6 -40.7,13.7 13.2,-12.1 42.4,-11.9 74.1,-43 17.4,-17.1 19.2,-30.1 21.1,-42.2 -2.5,15.8 -17.7,25.4 -33.5,34.1 z" /><radialGradient
+         gradientUnits="userSpaceOnUse"
+         gradientTransform="matrix(1,0,0,-0.6267,-22.5352,146.1352)"
+         r="78.672302"
+         cy="84.111801"
+         cx="179.4165"
+         id="SVGID_24_"><stop
+           id="stop257"
+           style="stop-color:#E05A27;stop-opacity:0.1"
+           offset="0" /><stop
+           id="stop259"
+           style="stop-color:#DE5926;stop-opacity:0.845"
+           offset="0.3058" /><stop
+           id="stop261"
+           style="stop-color:#B02228"
+           offset="0.5559" /></radialGradient><path
+         style="fill:url(#radialGradient5951)"
+         inkscape:connector-curvature="0"
+         id="path263"
+         d="m 171,100.4 c -0.2,-3.3 -2.3,-5.6 -29.4,-5.4 -11.1,0.1 -16.3,-9.6 -18.1,-13.7 -2.9,10.5 -3.4,21.3 -1.2,34 1.4,8.4 7.4,15.5 10.7,20.5 0.8,0.8 1.2,1 1.4,0.5 1.2,-2.6 25,-16.1 26.9,-17.6 2,-1.3 10.2,-8.3 9.7,-18.3 z" /><radialGradient
+         gradientUnits="userSpaceOnUse"
+         gradientTransform="matrix(0.9539,-0.2859,-0.1382,-0.4185,33.3089,94.9034)"
+         r="66.229103"
+         cy="-77.954597"
+         cx="111.9854"
+         id="SVGID_25_"><stop
+           id="stop266"
+           style="stop-color:#E05A27;stop-opacity:0"
+           offset="0" /><stop
+           id="stop268"
+           style="stop-color:#DD5A26;stop-opacity:0.8"
+           offset="0.446" /><stop
+           id="stop270"
+           style="stop-color:#B02228"
+           offset="0.7224" /></radialGradient><path
+         style="fill:url(#radialGradient5953)"
+         inkscape:connector-curvature="0"
+         id="path272"
+         d="m 133.9,97.3 c 0,0 9.4,4.6 10.8,7.5 0.4,0.9 -4.8,-1.6 -4.5,-0.6 0.3,1 6.8,4.3 7,5.9 0.2,1.2 -3.6,-1.3 -5.6,-1.6 1.2,1 2.8,2.5 1.9,3.5 -0.9,1 -4.2,1.4 -4.8,1.8 -8.6,5.5 12.2,6.8 19.7,2.7 7.5,-4 12.2,-9.9 12.4,-10.8 0.3,-0.9 2.7,-8.8 -13,-6.1 -9.9,1.8 -16.1,1.6 -23.9,-2.3 z" /><radialGradient
+         gradientUnits="userSpaceOnUse"
+         gradientTransform="matrix(1,0,0,-1,-22.5352,286.4424)"
+         r="178.2486"
+         cy="127.7866"
+         cx="243.2402"
+         id="SVGID_26_"><stop
+           id="stop275"
+           style="stop-color:#F0B91C"
+           offset="0.4632" /><stop
+           id="stop277"
+           style="stop-color:#E36024"
+           offset="0.722" /><stop
+           id="stop279"
+           style="stop-color:#DB5825"
+           offset="0.7821" /><stop
+           id="stop281"
+           style="stop-color:#C74127"
+           offset="0.8762" /><stop
+           id="stop283"
+           style="stop-color:#B02228"
+           offset="0.9698" /></radialGradient><path
+         style="fill:url(#radialGradient5955)"
+         inkscape:connector-curvature="0"
+         id="path285"
+         d="m 262,303.1 c -9.1,5 -30.6,11.6 -36.7,11.9 37.5,-11.6 49.6,-27.3 55.8,-37.7 19.4,-3.8 54.8,-21.4 56.2,-41.9 -1.5,28 -24.6,47.4 -41.2,58.6 -19.6,13.3 -36.2,14.4 -50.3,23.4 4.3,-3 9.9,-6.9 16.2,-14.3 z" /><g
+         id="g287"><radialGradient
+           gradientUnits="userSpaceOnUse"
+           gradientTransform="matrix(1,0,0,-1,-22.5352,286.4424)"
+           r="215.60429"
+           cy="228.6978"
+           cx="368.27249"
+           id="SVGID_27_"><stop
+             id="stop290"
+             style="stop-color:#FFE300"
+             offset="0.3064" /><stop
+             id="stop292"
+             style="stop-color:#F8C91E"
+             offset="0.482" /><stop
+             id="stop294"
+             style="stop-color:#E36024"
+             offset="0.8355" /><stop
+             id="stop296"
+             style="stop-color:#E36024"
+             offset="1" /></radialGradient><path
+           style="fill:url(#radialGradient5957)"
+           inkscape:connector-curvature="0"
+           id="path298"
+           d="m 347.2,126.4 c 11.7,38.1 -7.5,54.6 -15.6,59.7 10.3,-28.4 14,-63.7 2.8,-94.7 C 325.1,65.5 309,52.6 309,52.6 c 22.6,24.7 20,52 13.4,71.2 3.1,18.1 -7.3,68.4 5.7,66.1 -3.1,28.1 -15.2,62.6 -20.6,73.1 9,-14.2 21.9,-27.4 27.8,-38.5 11.2,-21.1 24.3,-62.6 11.9,-98.1 z" /></g><radialGradient
+         gradientUnits="userSpaceOnUse"
+         gradientTransform="matrix(1,0,0,-1,-22.5352,286.4424)"
+         r="87.662003"
+         cy="146.6909"
+         cx="304.44431"
+         id="SVGID_28_"><stop
+           id="stop301"
+           style="stop-color:#FFFFFF"
+           offset="8.950000e-002" /><stop
+           id="stop303"
+           style="stop-color:#FFFEF7"
+           offset="0.1151" /><stop
+           id="stop305"
+           style="stop-color:#FFFBE8"
+           offset="0.1509" /><stop
+           id="stop307"
+           style="stop-color:#FFF7D0"
+           offset="0.1928" /><stop
+           id="stop309"
+           style="stop-color:#FFF2AF"
+           offset="0.2392" /><stop
+           id="stop311"
+           style="stop-color:#FFEC85"
+           offset="0.2894" /><stop
+           id="stop313"
+           style="stop-color:#FFE643"
+           offset="0.342" /><stop
+           id="stop315"
+           style="stop-color:#FFE300"
+           offset="0.3727" /><stop
+           id="stop317"
+           style="stop-color:#FFDB00"
+           offset="0.4184" /><stop
+           id="stop319"
+           style="stop-color:#F6C713"
+           offset="0.4944" /><stop
+           id="stop321"
+           style="stop-color:#F0B91C"
+           offset="0.5378" /><stop
+           id="stop323"
+           style="stop-color:#E36024"
+           offset="1" /></radialGradient><path
+         style="fill:url(#radialGradient5959)"
+         inkscape:connector-curvature="0"
+         id="path325"
+         d="m 301.3,135.3 c 0,0 -5,9.7 -4.6,28.6 -6.4,-24.7 -19.3,-34.6 -19.3,-34.6 1.7,19.9 5.2,48.8 -2.5,73.5 0.9,7.2 2.7,24.9 -4.2,44 11.3,-13 26.3,-23.5 28.5,-34 0,-0.3 0.1,-0.7 0.1,-1 3.8,0.7 9.1,-2.2 13.7,-6.8 3.8,-6.5 13.8,-25.9 14.7,-36.3 -23.7,-9.5 -26.4,-33.4 -26.4,-33.4 z" /><radialGradient
+         gradientUnits="userSpaceOnUse"
+         gradientTransform="matrix(1,0,0,-1,-22.5352,286.4424)"
+         r="159.0979"
+         cy="157.2822"
+         cx="321.4375"
+         id="SVGID_29_"><stop
+           id="stop328"
+           style="stop-color:#FFFFFF"
+           offset="8.950000e-002" /><stop
+           id="stop330"
+           style="stop-color:#FFFEF7"
+           offset="0.1151" /><stop
+           id="stop332"
+           style="stop-color:#FFFBE8"
+           offset="0.1509" /><stop
+           id="stop334"
+           style="stop-color:#FFF7D0"
+           offset="0.1928" /><stop
+           id="stop336"
+           style="stop-color:#FFF2AF"
+           offset="0.2392" /><stop
+           id="stop338"
+           style="stop-color:#FFEC85"
+           offset="0.2894" /><stop
+           id="stop340"
+           style="stop-color:#FFE643"
+           offset="0.342" /><stop
+           id="stop342"
+           style="stop-color:#FFE300"
+           offset="0.3727" /><stop
+           id="stop344"
+           style="stop-color:#FFDB00"
+           offset="0.4184" /><stop
+           id="stop346"
+           style="stop-color:#F6C713"
+           offset="0.4944" /><stop
+           id="stop348"
+           style="stop-color:#F0B91C"
+           offset="0.5378" /><stop
+           id="stop350"
+           style="stop-color:#E27327"
+           offset="0.741" /><stop
+           id="stop352"
+           style="stop-color:#DD5A26"
+           offset="0.9424" /></radialGradient><path
+         style="fill:url(#radialGradient5961)"
+         inkscape:connector-curvature="0"
+         id="path354"
+         d="m 297.1,200.1 c 30.8,-43.1 20.1,-88 16.8,-101.8 44.2,72.5 -1.1,156.7 -10.3,170.8 -2.5,2 -16.7,7.3 -22.5,7.9 1.9,-2.9 6.8,-13 6.2,-24.9 -6.7,16.4 -30.5,28.6 -43.7,33.1 22.8,-16.5 49,-62.5 53.5,-85.1 z" /><g
+         id="g356"><radialGradient
+           gradientUnits="userSpaceOnUse"
+           gradientTransform="matrix(1,0,0,-1,-22.5352,286.4424)"
+           r="134.6922"
+           cy="115.8423"
+           cx="296.0918"
+           id="SVGID_30_"><stop
+             id="stop359"
+             style="stop-color:#FFFFFF"
+             offset="8.950000e-002" /><stop
+             id="stop361"
+             style="stop-color:#FFFEF7"
+             offset="0.1064" /><stop
+             id="stop363"
+             style="stop-color:#FFFBE8"
+             offset="0.1301" /><stop
+             id="stop365"
+             style="stop-color:#FFF7D0"
+             offset="0.1579" /><stop
+             id="stop367"
+             style="stop-color:#FFF2AF"
+             offset="0.1886" /><stop
+             id="stop369"
+             style="stop-color:#FFEC85"
+             offset="0.2219" /><stop
+             id="stop371"
+             style="stop-color:#FFE643"
+             offset="0.2567" /><stop
+             id="stop373"
+             style="stop-color:#FFE300"
+             offset="0.277" /><stop
+             id="stop375"
+             style="stop-color:#FFDB00"
+             offset="0.3194" /><stop
+             id="stop377"
+             style="stop-color:#F6C713"
+             offset="0.39" /><stop
+             id="stop379"
+             style="stop-color:#F0B91C"
+             offset="0.4303" /><stop
+             id="stop381"
+             style="stop-color:#EA9E23"
+             offset="0.5051" /><stop
+             id="stop383"
+             style="stop-color:#E27327"
+             offset="0.6316" /><stop
+             id="stop385"
+             style="stop-color:#DF6427"
+             offset="0.8006" /><stop
+             id="stop387"
+             style="stop-color:#DD5A26"
+             offset="0.9483" /></radialGradient><path
+           style="fill:url(#radialGradient5963)"
+           inkscape:connector-curvature="0"
+           id="path389"
+           d="m 291.9,167.7 c 0,0 2.5,37.5 -16.4,67.5 5.1,-28.3 -4.8,-46.1 -4.8,-46.1 0,0 -1.4,15.3 -7.4,30.1 -10.4,25.5 -19.8,30.7 -23.5,28 -8,31.7 -60.9,30.2 -60.9,30.2 12,3 54.1,5.3 85,-17.4 -1.7,4 -11.2,23.1 -34,32.9 22.5,-1.4 52.2,-25.2 57.5,-40.9 0.4,11.8 -3.4,20 -5.9,24.7 37.5,-42 10.4,-109 10.4,-109 z" /></g><linearGradient
+         gradientTransform="matrix(0.9995,-0.0314,-0.0314,-0.9995,-20.7532,313.0438)"
+         y2="-11.7535"
+         x2="232.1376"
+         y1="86.784698"
+         x1="254.7529"
+         gradientUnits="userSpaceOnUse"
+         id="SVGID_31_"><stop
+           id="stop392"
+           style="stop-color:#FFF038"
+           offset="0" /><stop
+           id="stop394"
+           style="stop-color:#FFEC33"
+           offset="2.800000e-003" /><stop
+           id="stop396"
+           style="stop-color:#FFD92F"
+           offset="5.125774e-002" /><stop
+           id="stop398"
+           style="stop-color:#FCBC29"
+           offset="0.136" /><stop
+           id="stop400"
+           style="stop-color:#F9A725"
+           offset="0.2136" /><stop
+           id="stop402"
+           style="stop-color:#F79B23"
+           offset="0.2807" /><stop
+           id="stop404"
+           style="stop-color:#F69622"
+           offset="0.3298" /><stop
+           id="stop406"
+           style="stop-color:#DE5B26;stop-opacity:5.920000e-002"
+           offset="0.8202" /></linearGradient><path
+         style="fill:url(#linearGradient5965)"
+         inkscape:connector-curvature="0"
+         id="path408"
+         d="m 172.6,298.2 c 19.6,-1.8 35.6,-6.2 46.4,-20.4 -17.7,3 -31.7,1.7 -40.4,-0.3 0,0 13.9,0.6 31.5,-3.9 20.4,-5.1 45.7,-17 60.2,-44.3 -0.7,65 -66.6,77.9 -97.7,68.9 z" /><linearGradient
+         gradientTransform="matrix(1,0,0,-1,-22.5352,286.4424)"
+         y2="247.3716"
+         x2="47.5672"
+         y1="195.7646"
+         x1="67.7061"
+         gradientUnits="userSpaceOnUse"
+         id="SVGID_32_"><stop
+           id="stop411"
+           style="stop-color:#B02228"
+           offset="0.1688" /><stop
+           id="stop413"
+           style="stop-color:#BF3628;stop-opacity:0.7444"
+           offset="0.4056" /><stop
+           id="stop415"
+           style="stop-color:#C84228;stop-opacity:0.5097"
+           offset="0.623" /><stop
+           id="stop417"
+           style="stop-color:#E05A27;stop-opacity:0"
+           offset="1" /></linearGradient><path
+         style="fill:url(#linearGradient5967)"
+         inkscape:connector-curvature="0"
+         id="path419"
+         d="M 46.7,52.2 C 46.3,51.6 46.3,53.6 45.9,53 43.2,48.2 41,40 40.7,34.2 c 0,0 -4.4,2.5 -7.2,11.5 -0.5,1.6 -0.9,2.5 -1.2,3.4 -0.1,0.3 0.2,-2.9 0.1,-2.6 -0.5,1.1 -2.1,2.9 -2.6,4.9 -0.4,1.6 -1,2.5 -1.3,4.5 C 28.4,56.5 28.4,53.5 28.3,54 21.3,71.6 22.1,97.3 23,96.2 39.6,74.6 60.5,67.7 60.5,67.7 58,66 52.6,61.7 46.7,52.2 z" /><g
+         id="g421"><linearGradient
+           gradientTransform="matrix(1,0,0,-1,-22.5352,286.4424)"
+           y2="168.7469"
+           x2="176.00079"
+           y1="156.94189"
+           x1="149.1714"
+           gradientUnits="userSpaceOnUse"
+           id="SVGID_33_"><stop
+             id="stop424"
+             style="stop-color:#DD5A26"
+             offset="7.460000e-002" /><stop
+             id="stop426"
+             style="stop-color:#E9986D"
+             offset="0.2983" /><stop
+             id="stop428"
+             style="stop-color:#F4D4AC"
+             offset="0.6668" /><stop
+             id="stop430"
+             style="stop-color:#F9F7C9"
+             offset="1" /></linearGradient><path
+           style="fill:url(#linearGradient5969)"
+           inkscape:connector-curvature="0"
+           id="path432"
+           d="m 163.1,117.3 c 1.4,-1.1 6.3,-5.6 7.5,-10.9 -0.9,0.4 -1,-0.7 -2,-0.2 -1.8,1.9 -6.2,6.5 -11.4,9.8 1.4,-1.3 3.9,-3.2 4.5,-4.2 -5.6,3.9 -12.5,6.6 -17.9,6 -0.8,0 4,0.5 8.2,-2.8 -4.1,1.9 -11.1,1.7 -11.8,1.5 -0.6,-0.2 6.9,-1 6.2,-1.2 -3.5,-1.2 -8.1,-0.4 -9.1,0.1 -1.9,0.9 -3.8,2.2 -5.2,3.9 0.8,-1 1.1,-1.9 2,-3.4 -2.6,2.5 -6.2,5.2 -6.7,5.3 0.4,-0.8 6.3,-5.3 5.2,-4.9 -0.7,0.7 -3.2,2.1 -4.9,3.4 -0.5,0.3 3.5,-3.3 3.1,-3 -6.7,1.7 -6,5.4 -6.2,5.5 0.1,0.2 0.1,0.7 0.3,0.9 0.8,2.4 3.7,6.5 6.4,10.4 2,2.4 2.6,5.1 2.7,4.2 0.9,-4.4 27.2,-18.9 29.1,-20.4 z" /><linearGradient
+           gradientTransform="matrix(1,0,0,-1,-22.5352,286.4424)"
+           y2="188.66991"
+           x2="220.8844"
+           y1="153.88429"
+           x1="151.6367"
+           gradientUnits="userSpaceOnUse"
+           id="SVGID_34_"><stop
+             id="stop435"
+             style="stop-color:#DD5A26"
+             offset="4.350000e-002" /><stop
+             id="stop437"
+             style="stop-color:#ECA77C"
+             offset="0.2582" /><stop
+             id="stop439"
+             style="stop-color:#F9F7C9"
+             offset="1" /></linearGradient><path
+           style="fill:url(#linearGradient5971)"
+           inkscape:connector-curvature="0"
+           id="path441"
+           d="m 169.2,107.6 c -0.2,0 -0.4,-3.2 -0.1,-2.4 0.2,0.7 -0.3,7.2 -6.2,11 -1.3,0.8 -0.1,-2.1 -1.5,-0.6 -2.3,2.5 -8,10.8 -22.3,10.8 -0.5,0 5.6,-2.7 4.9,-2.5 -1.5,0.4 -3.2,0.9 -8.8,2.7 -0.5,0.2 4.7,-3.2 4.2,-3.1 -0.7,0.2 -3.8,2.3 -7.6,3.9 1.8,-1.8 3.9,-3.6 3.2,-3.3 -3,1.7 -5.2,3.6 -6.5,5.5 0.9,1.5 2,2.4 2.8,3.9 2,2.4 2.2,4.9 2.7,4.2 5.3,-6.4 26.2,-16.1 30.9,-21.1 4.8,-5.2 2.9,-4.4 4.3,-9 z" /></g><radialGradient
+         gradientUnits="userSpaceOnUse"
+         gradientTransform="matrix(1,0,0,-0.8428,-22.5352,246.0269)"
+         r="95.217201"
+         cy="30.264601"
+         cx="174.9985"
+         id="SVGID_35_"><stop
+           id="stop444"
+           style="stop-color:#E05A27;stop-opacity:0"
+           offset="0.5" /><stop
+           id="stop446"
+           style="stop-color:#DE5926;stop-opacity:0.7747"
+           offset="0.75" /><stop
+           id="stop448"
+           style="stop-color:#B02228"
+           offset="0.95" /></radialGradient><path
+         style="fill:url(#radialGradient5973)"
+         inkscape:connector-curvature="0"
+         id="path450"
+         d="M 138.2,252.4 C 111.3,244 80.6,231.6 78.2,196.3 75,150 117.6,155 117.6,155 c -1.5,0.6 -4.8,4 -5.9,7.9 -1.2,4.2 -3.4,12.4 6.2,20.9 15.2,13.4 -25,38.3 43.5,70.1 1.7,0.7 -15.3,1 -23.2,-1.5 z" /><linearGradient
+         gradientTransform="matrix(1,0,0,-1,-22.5352,286.4424)"
+         y2="200.39619"
+         x2="197.8616"
+         y1="169.3364"
+         x1="177.6851"
+         gradientUnits="userSpaceOnUse"
+         id="SVGID_36_"><stop
+           id="stop453"
+           style="stop-color:#37383A"
+           offset="0" /><stop
+           id="stop455"
+           style="stop-color:#7B3F3D"
+           offset="0.6508" /><stop
+           id="stop457"
+           style="stop-color:#DD5A26"
+           offset="1" /></linearGradient><path
+         style="fill:url(#linearGradient5975)"
+         inkscape:connector-curvature="0"
+         id="path459"
+         d="m 171.4,108.2 c 1.2,-3 2.6,-10 -1.4,-11.5 -3.3,-0.8 -6.2,-1.4 -11.6,-1.3 1.8,0.4 7,1.5 8.3,3.9 2.6,4.6 0.5,13.6 -0.4,15.9 2.7,-2.1 3.9,-4.1 5.1,-7 z" /><radialGradient
+         gradientUnits="userSpaceOnUse"
+         gradientTransform="matrix(0.9863,-0.1647,-0.1249,-0.7478,15.643,224.3614)"
+         r="87.310997"
+         cy="34.3428"
+         cx="127.8003"
+         id="SVGID_37_"><stop
+           id="stop462"
+           style="stop-color:#E05A27;stop-opacity:0"
+           offset="0.5003" /><stop
+           id="stop464"
+           style="stop-color:#DD5A26"
+           offset="0.6557" /><stop
+           id="stop466"
+           style="stop-color:#B02228"
+           offset="0.8145" /></radialGradient><path
+         style="fill:url(#radialGradient5977)"
+         inkscape:connector-curvature="0"
+         id="path468"
+         d="m 127.5,229.9 c 18.8,4.5 40,1.3 52.1,-7 8.1,-5.6 19.8,-13.9 25.1,-13 -6,-1.7 -10.6,-2.4 -15.9,-2.1 -1,0 -1.9,0.1 -2.9,0.2 -1.8,0.2 -3.7,0.4 -5.8,0.8 -3.2,0.7 -6.7,3.1 -10,3.1 -0.2,0 3.1,-1.7 2.8,-1.7 -1.7,0.5 -3.6,0.8 -5.6,1.3 -1.2,0.3 -2.4,0.5 -3.6,0.7 -37.7,7 -72.2,-13.5 -72.2,-13.5 -1.9,9.5 14.9,26.2 36,31.2 z" /><radialGradient
+         gradientUnits="userSpaceOnUse"
+         gradientTransform="matrix(0.9996,-0.0268,-0.0263,-0.9807,-11.5911,293.5543)"
+         r="164.4707"
+         cy="264.25629"
+         cx="263.41211"
+         id="SVGID_38_"><stop
+           id="stop471"
+           style="stop-color:#FFE000;stop-opacity:0"
+           offset="0" /><stop
+           id="stop473"
+           style="stop-color:#FED700;stop-opacity:0.5153"
+           offset="0.3554" /><stop
+           id="stop475"
+           style="stop-color:#FED208;stop-opacity:0.7"
+           offset="0.4827" /><stop
+           id="stop477"
+           style="stop-color:#FED208;stop-opacity:0"
+           offset="0.8565" /></radialGradient><path
+         style="fill:url(#radialGradient5979)"
+         inkscape:connector-curvature="0"
+         id="path479"
+         d="m 289.2,78.5 c 0,0 14.4,15.5 21.2,30.3 6.8,14.8 8.9,31.6 8.9,31.6 0,0 1,-14.1 -6.8,-37.8 -8.4,-25.7 -25,-47.7 -41.4,-59.8 -11,-8.3 -33.1,-19.3 -33.1,-19.3 0,0 38.1,22.6 51.2,55 z" /><radialGradient
+         gradientUnits="userSpaceOnUse"
+         r="210.72701"
+         cy="63.736801"
+         cx="126.3921"
+         id="SVGID_39_"><stop
+           id="stop482"
+           style="stop-color:#ED6624"
+           offset="0" /><stop
+           id="stop484"
+           style="stop-color:#F69622"
+           offset="1" /></radialGradient><path
+         style="opacity:0.1;fill:url(#radialGradient5981)"
+         inkscape:connector-curvature="0"
+         id="path486"
+         d="m 81.2,75.2 c 0.2,0 -7.1,0.9 -20,12.2 -5.5,4.5 -9.9,8.9 -13.3,12.7 -9.4,11.4 -14.9,22.4 -14.9,22.4 0,0 0.8,-6.8 5.1,-16.2 -13.7,21.6 -18.9,53 -18.9,53 0,0 -0.8,-14.3 2.8,-31.1 -1.4,3.9 -3.1,9.4 -4,16.7 -2.7,22 0,41.3 0,41.3 0,0 -1.2,-4.2 -2.5,-10.2 0.5,4.4 1.2,9.6 2.4,15.5 4.3,20.8 12.4,40.5 12.4,40.5 0,0 -10,-13.5 -16.6,-34.1 1.2,6.3 3.1,14.1 5.7,23.5 8.2,28.5 19.1,43.3 19.1,43.3 0,0 -8.4,-7.4 -19.3,-34.9 C 14.4,217.6 11.9,206 10.3,197.4 9.4,191.1 8.6,185.3 7.8,176.9 7.5,174 7.1,170.6 7.1,167.8 c -2.4,11.4 -3.9,21.1 -3.9,21.1 0,0 0.6,-22.8 4.3,-43.4 0.6,-3.1 1.3,-6 2.2,-8.8 -3.5,6.7 -6.2,12.3 -6.2,12.3 0,0 4.6,-12.8 9,-23.5 -4.4,7.9 -7,14.4 -7,14.4 0,0 7.7,-26.4 16.9,-39.7 5,-7.2 10,-12.1 13.6,-15.1 1.2,-1.2 2.4,-2.3 3.7,-3.2 1.3,-1 2.7,-2 3.9,-2.9 0.6,-0.5 1.3,-1 2,-1.5 12.4,-9.2 25.7,-11.4 30.2,-10.9 0.1,0 -3.9,0.2 -12.5,4.8 4.2,-1.5 7.6,-2 9.6,-1.9 0.1,0 -3,0.7 -10.1,5.3 9.2,-4.5 17.6,-5.7 21,-5.3 0.2,0 -6.5,0.4 -20.5,9.5 -0.4,0.3 -0.8,0.5 -1.2,0.8 0,0 0,0 0,0 8.4,-3.7 16,-4.7 19.1,-4.6 z m -39.4,79 c 0,0 0,0 0,0 m 0,0 c -2.5,1.2 -5.4,10.8 -3.1,32.5 1.9,17.7 9.3,27.1 9.3,27.1 0,0 -3.8,-7.1 -6.1,-31.5 -2,-21 -0.3,-27.8 -0.1,-28.1 z m 6.9,-16.7 c -3.4,17.8 1.2,42.9 1.2,42.9 0,0 -0.8,-21.1 3.8,-43 4.8,-23.4 12,-30.3 12.1,-30.1 -3.9,0.4 -13.7,12.4 -17.1,30.2 z m 9.2,-44.8 c -2.1,2.2 -3.9,4.6 -5.4,7.1 -5.6,5.5 -12,16.4 -15.2,31.5 -6,29.3 -1.7,47 -1.7,47 0,0 -0.1,-27.1 6.3,-50.3 0.9,-3.3 1.8,-6.3 2.8,-9 -1.6,6.6 -2,11.5 -2,11.5 0,0 5.2,-21.4 23.6,-39.7 C 77.9,79.2 85.8,76.9 85.9,77 c -8.6,1 -19.4,6.5 -28,15.7 z m -6.7,62.8 c -1.2,13 1.1,26.4 1.1,26.4 0,0 -0.2,-13.5 1.5,-28.7 1.7,-15.1 4,-20.9 4.1,-20.8 -2.8,1.5 -5.8,13.7 -6.7,23.1 z m 1.4,-44.1 c -5.9,10.2 -7.9,20.3 -7.9,20.3 0,0 7.4,-16.8 12.5,-24.1 5.1,-7.3 10.1,-12.1 10.1,-12 -3.1,1.3 -9.7,5.9 -14.7,15.8 z m -26.3,37.8 c 0,0 0,0 0,0 m 0,0 c -2.5,1 -6.1,10.5 -5.1,32.3 0.8,17.7 7.6,27.6 7.6,27.6 0,0 -3.3,-7.3 -4.1,-31.8 m 105.4,-128 c 0,0 -12.1,4.4 -18.9,13.1 -6.8,8.7 -8.1,17.7 -8.1,17.7 0,0 7.5,-20 27,-30.8 z m -8.5,11.1 c -8.7,11.5 -10.8,19.8 -10.8,19.8 0,0 9.7,-22.9 34.1,-32.7 0,0.1 -14.6,1.5 -23.3,12.9 z M 34.1,58.5 c 1.5,-13.4 5.3,-21.3 5.3,-21.3 0,0 -12.5,18.9 -5,42 0,0.1 -1.8,-7.3 -0.3,-20.7 z m 9.4,16.1 c 0,0 -2.8,-6.2 -3.9,-17.6 -1.1,-11.5 0.8,-18.5 0.8,-18.5 0,0 -7.5,17 3.1,36.1 z" /><radialGradient
+         gradientUnits="userSpaceOnUse"
+         gradientTransform="matrix(-0.2756,0.9504,-0.6431,-0.1776,-962.8631,1318.7604)"
+         r="53.8801"
+         cy="-1211.7964"
+         cx="-1401.499"
+         id="SVGID_40_"><stop
+           id="stop489"
+           style="stop-color:#FFFFFF"
+           offset="0" /><stop
+           id="stop491"
+           style="stop-color:#FFFBE8;stop-opacity:0.9625"
+           offset="2.670671e-002" /><stop
+           id="stop493"
+           style="stop-color:#FFF2B6;stop-opacity:0.8568"
+           offset="0.1019" /><stop
+           id="stop495"
+           style="stop-color:#FFED8C;stop-opacity:0.7558"
+           offset="0.1738" /><stop
+           id="stop497"
+           style="stop-color:#FFE967;stop-opacity:0.6624"
+           offset="0.2404" /><stop
+           id="stop499"
+           style="stop-color:#FFE645;stop-opacity:0.578"
+           offset="0.3004" /><stop
+           id="stop501"
+           style="stop-color:#FFE42C;stop-opacity:0.5057"
+           offset="0.3519" /><stop
+           id="stop503"
+           style="stop-color:#FFE421;stop-opacity:0.4538"
+           offset="0.3888" /><stop
+           id="stop505"
+           style="stop-color:#FFE300;stop-opacity:0"
+           offset="0.8092" /></radialGradient><path
+         style="opacity:0.5;fill:url(#radialGradient5983)"
+         inkscape:connector-curvature="0"
+         id="path507"
+         d="m 208.4,198.6 c -1.8,-2.4 -9.6,-8.1 -18.3,-8.7 -11.6,-0.8 -21,4.2 -21,4.2 0,0 6.4,-3.7 21.2,-2.4 10.2,0.9 18,6.6 18.1,6.9 z" /><radialGradient
+         gradientUnits="userSpaceOnUse"
+         gradientTransform="matrix(-0.3166,0.8278,-0.6529,-0.2379,-1017.1411,1149.9413)"
+         r="56.148602"
+         cy="-1158.8491"
+         cx="-1471.7295"
+         id="SVGID_41_"><stop
+           id="stop510"
+           style="stop-color:#FFFFFF"
+           offset="0" /><stop
+           id="stop512"
+           style="stop-color:#FFFBE8;stop-opacity:0.9625"
+           offset="2.670671e-002" /><stop
+           id="stop514"
+           style="stop-color:#FFF2B6;stop-opacity:0.8568"
+           offset="0.1019" /><stop
+           id="stop516"
+           style="stop-color:#FFED8C;stop-opacity:0.7558"
+           offset="0.1738" /><stop
+           id="stop518"
+           style="stop-color:#FFE967;stop-opacity:0.6624"
+           offset="0.2404" /><stop
+           id="stop520"
+           style="stop-color:#FFE645;stop-opacity:0.578"
+           offset="0.3004" /><stop
+           id="stop522"
+           style="stop-color:#FFE42C;stop-opacity:0.5057"
+           offset="0.3519" /><stop
+           id="stop524"
+           style="stop-color:#FFE421;stop-opacity:0.4538"
+           offset="0.3888" /><stop
+           id="stop526"
+           style="stop-color:#FFE300;stop-opacity:0"
+           offset="0.8092" /></radialGradient><path
+         style="opacity:0.5;fill:url(#radialGradient5985)"
+         inkscape:connector-curvature="0"
+         id="path528"
+         d="m 212.3,203.2 c -1.8,-2.5 -8.4,-8.3 -19,-10.4 -13.5,-2.6 -23.4,3.1 -23.4,3.1 0,0 7.7,-3.2 23.3,-0.7 10.7,1.8 18.9,7.8 19.1,8 z" /><radialGradient
+         gradientUnits="userSpaceOnUse"
+         gradientTransform="matrix(-0.2345,0.5201,-0.5377,-0.2307,-894.6464,746.3104)"
+         r="42.1092"
+         cy="-1332.1895"
+         cx="-1629.4243"
+         id="SVGID_42_"><stop
+           id="stop531"
+           style="stop-color:#FFFFFF"
+           offset="0" /><stop
+           id="stop533"
+           style="stop-color:#FFFBE8;stop-opacity:0.9625"
+           offset="2.670671e-002" /><stop
+           id="stop535"
+           style="stop-color:#FFF2B6;stop-opacity:0.8568"
+           offset="0.1019" /><stop
+           id="stop537"
+           style="stop-color:#FFED8C;stop-opacity:0.7558"
+           offset="0.1738" /><stop
+           id="stop539"
+           style="stop-color:#FFE967;stop-opacity:0.6624"
+           offset="0.2404" /><stop
+           id="stop541"
+           style="stop-color:#FFE645;stop-opacity:0.578"
+           offset="0.3004" /><stop
+           id="stop543"
+           style="stop-color:#FFE42C;stop-opacity:0.5057"
+           offset="0.3519" /><stop
+           id="stop545"
+           style="stop-color:#FFE421;stop-opacity:0.4538"
+           offset="0.3888" /><stop
+           id="stop547"
+           style="stop-color:#FFE300;stop-opacity:0"
+           offset="0.8092" /></radialGradient><path
+         style="opacity:0.5;fill:url(#radialGradient5987)"
+         inkscape:connector-curvature="0"
+         id="path549"
+         d="m 208.5,203.3 c -1.5,-1.4 -4.9,-3.8 -10.8,-5.5 -9.5,-2.7 -15.9,-0.2 -15.9,-0.2 0,0 3.8,-0.9 13.5,1 6,1.2 13.1,4.6 13.2,4.7 z" /><linearGradient
+         y2="346.56689"
+         x2="165.2729"
+         y1="155.66701"
+         x1="165.2729"
+         gradientUnits="userSpaceOnUse"
+         id="SVGID_43_"><stop
+           id="stop552"
+           style="stop-color:#E57C27"
+           offset="0" /><stop
+           id="stop554"
+           style="stop-color:#DD5626"
+           offset="0.5" /><stop
+           id="stop556"
+           style="stop-color:#C33A28"
+           offset="0.6469" /><stop
+           id="stop558"
+           style="stop-color:#B02228"
+           offset="0.75" /><stop
+           id="stop560"
+           style="stop-color:#AB2026"
+           offset="0.8131" /><stop
+           id="stop562"
+           style="stop-color:#9C1C21"
+           offset="0.9126" /><stop
+           id="stop564"
+           style="stop-color:#8C161A"
+           offset="1" /></linearGradient><path
+         style="fill:url(#linearGradient5989)"
+         inkscape:connector-curvature="0"
+         id="path566"
+         d="m 330.5,259 c -1.9,3.6 -4.4,7.5 -7.7,11.5 -8.1,10 -18.3,17.9 -26.7,23.6 -3.4,2.3 -6.7,4.3 -10,6 l -0.1,-1.2 c 0,0 0,0 -0.1,0 0,0 0,0 0,0 9.7,-5.1 20.2,-12 31,-22.6 6.4,-6.3 10.7,-12 13.6,-17.3 z M 33.1,47.6 c 0.4,-0.9 0.7,-1.8 1.2,-3.4 0.6,-1.8 1.2,-3.4 1.9,-4.7 -0.9,1.6 -1.9,3.6 -2.7,6.2 -0.2,0.5 -0.3,0.9 -0.4,1.3 0,0.4 0,0.7 0,0.6 z m 104.3,285.5 c 0,0 1.4,1.3 3.8,2.9 9.2,2.6 30.1,7.9 46.5,7.3 -2,-0.4 -3.6,-0.9 -4.7,-1.5 -20.8,-0.7 -45.6,-8.7 -45.6,-8.7 z M 9.6,138.4 c -0.5,0.8 -0.9,1.7 -1.4,2.5 0.1,-0.1 0.1,-0.2 0.2,-0.3 -4.2,13 -7.4,33.1 -5.4,63 0,-0.2 0.1,-0.6 0.1,-1.2 0,0.4 0,0.7 0.1,1.1 0,-0.4 0.2,-2.1 0.6,-4.7 -1.5,-28.6 1.7,-47.9 5.8,-60.4 z M 28.8,254.7 C 13.1,227.8 8.3,203 7.2,182.9 7,184 6.7,185.1 6.5,186.1 c 1.3,19.8 6.2,44 21.5,70 12,20.5 43.5,68.1 122.6,85.9 -3.6,-1 -6.7,-2.5 -9,-3.9 C 69.7,318.9 40.3,274.4 28.8,254.7 z m 253.9,51.8 c 0.3,-0.3 0.8,-0.9 0.9,-0.9 -26.5,36.2 -103.2,31.8 -103.2,31.8 0,0 0.3,0.7 1.3,1.6 10.9,0.3 62.8,0.7 91.3,-21.8 7.1,-5.3 11.7,-11.5 13.2,-17.1 0,0 -0.1,0.1 -0.4,0.2 -0.7,2.4 -2,4.6 -3.1,6.2 z M 16.8,105.9 C 11,115.8 4.9,132.1 0,159.4 c 0,0 0.1,-0.4 0.4,-1.1 -0.1,0.3 -0.1,0.7 -0.2,1 0,0 0.4,-1.1 1.1,-3.1 4.2,-23.3 9.4,-38.4 14.5,-48.3 0.2,-0.5 0.6,-1.2 1,-2 z M 29.4,54.2 c 0.2,-1.9 0.9,-2.8 1.2,-4.3 0.1,-0.4 0.3,-0.9 0.5,-1.3 -0.5,0.8 -1,1.7 -1.2,2.7 -0.2,0.6 -0.4,1.2 -0.6,1.7 0,0.4 0,1 0.1,1.2 -0.1,0.1 0,0.1 0,0 z m -5.5,40.4 c 0,-0.9 -0.1,-1.8 -0.1,-2.7 -0.8,-11.9 0.6,-21.2 1.9,-28 0.8,-3.5 1.7,-6.7 2.7,-9.6 0,-0.2 0,-0.4 -0.1,-0.4 0,0 0,0 -0.1,0 -0.2,0.5 -0.4,1.1 -0.6,1.6 0,0.1 -0.1,0.2 -0.1,0.3 -0.1,0.3 -0.2,0.5 -0.3,0.8 -0.3,0.9 -0.6,1.8 -0.9,2.8 -0.4,1.5 -0.8,3 -1.2,4.6 0,0.2 -0.1,0.4 -0.1,0.6 -0.1,0.2 -0.1,0.5 -0.2,0.7 0,0.1 0,0.2 -0.1,0.4 -0.7,3.1 -1.2,6.5 -1.6,10.2 -1.2,10.2 -0.9,18.8 -0.4,20.1 0.5,-0.5 0.8,-0.9 1.2,-1.4 z M 286,298.9 c -0.6,0.3 -5.6,2.9 -13.8,6.3 -15.4,6.4 -26,11.3 -26.9,13 0,0 4,-2.7 17.7,-8.2 14.3,-5.7 21.1,-9 22.8,-9.8 0.3,-0.1 0.4,-0.2 0.4,-0.2 l -0.2,-1.1 c 0,0 0,0 0,0 z" /><radialGradient
+         gradientUnits="userSpaceOnUse"
+         gradientTransform="matrix(0.0279,-0.9996,0.9996,0.0279,4653.8252,3342.6565)"
+         r="111.5851"
+         cy="-4629.0093"
+         cx="2912.8057"
+         id="SVGID_44_"><stop
+           id="stop569"
+           style="stop-color:#ED6624"
+           offset="0" /><stop
+           id="stop571"
+           style="stop-color:#F69622"
+           offset="1" /></radialGradient><path
+         style="opacity:0.1;fill:url(#radialGradient5991)"
+         inkscape:connector-curvature="0"
+         id="path573"
+         d="m 154.4,321.9 c 0,0 -0.1,0 0,0 m 0,-0.9 c 1,2.5 10.5,6.1 32.3,5.1 17.7,-0.8 27.6,-7.6 27.6,-7.6 0,0 -7.3,3.3 -31.8,4.2 -21.2,0.6 -27.8,-1.5 -28.1,-1.7 z M 141,314.1 c 17.7,3.9 39.7,0.5 39.7,0.5 0,0 -21.1,0.2 -42.9,-5 -23.3,-5.5 -29.9,-12.9 -29.8,-13 0.4,4 15.3,13.6 33,17.5 z m 14.9,-1.5 c 12.9,1.6 26.4,-0.3 26.4,-0.3 0,0 -13.5,-0.2 -28.7,-2.3 -15,-2.1 -20.7,-4.5 -20.7,-4.7 1.5,2.8 13.6,6.1 23,7.3 z m -43.8,-2.5 c 10.5,5.2 20.7,6.6 20.7,6.6 0,0 -17.2,-6.3 -24.9,-10.9 -7.6,-4.6 -13.8,-8.6 -14,-9 1.7,3 8.1,8.9 18.2,13.3 z m 36.8,27.2 c 0,0 0,0 0,0" /><radialGradient
+         gradientUnits="userSpaceOnUse"
+         gradientTransform="matrix(0.9569,0.2903,-0.1939,0.6392,19.5463,8.4187)"
+         r="43.930099"
+         cy="84.055199"
+         cx="75.4692"
+         id="SVGID_45_"><stop
+           id="stop576"
+           style="stop-color:#E57C27;stop-opacity:0"
+           offset="0.4869" /><stop
+           id="stop578"
+           style="stop-color:#F0BE1B"
+           offset="0.8527" /></radialGradient><path
+         style="fill:url(#radialGradient5993)"
+         inkscape:connector-curvature="0"
+         id="path580"
+         d="m 100.9,67 c 0,0 -2.7,3.2 -4.7,6.4 -2.3,3.5 -4.2,7.2 -4.2,7.2 0,0 -11.4,-8.4 -21.6,-10.1 -10.2,-1.7 -13.2,-1.4 -13.2,-1.4 0,0 17,-8.8 43.7,-2.1 z" /></g></g></svg>
\ No newline at end of file
diff --git a/src_images/JMPrope.svg b/src_images/JMPrope.svg
new file mode 100644 (file)
index 0000000..5a09a36
--- /dev/null
@@ -0,0 +1,1448 @@
+<?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:xlink="http://www.w3.org/1999/xlink"
+   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+   width="640"
+   height="640"
+   id="svg2"
+   version="1.1"
+   inkscape:version="0.48.4 r9939"
+   sodipodi:docname="JMPrope.svg"
+   inkscape:export-filename="/home/ao2/WIP/twinklerope/PoPiPaint/src_images/JMPrope.png"
+   inkscape:export-xdpi="90"
+   inkscape:export-ydpi="90">
+  <defs
+     id="defs4">
+    <mask
+       maskUnits="userSpaceOnUse"
+       id="mask14047">
+      <path
+         style="font-size:medium;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:normal;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;baseline-shift:baseline;color:#000000;fill:#fce94f;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:6.20726156;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-family:Sans;-inkscape-font-specification:Sans"
+         d="m 320.05709,1.17224 c -89.54356,0 -170.40755,36.39929 -228.222512,94.21425 -57.814956,57.81497 -93.1613634,137.20025 -93.1613634,224.65792 0,87.45768 35.3464074,166.75416 93.1613634,224.56913 57.814962,57.81488 138.678952,94.21418 228.222512,94.21418 89.54356,0 170.29338,-36.3993 228.10834,-94.21418 57.81495,-57.81497 93.16136,-137.11145 93.16136,-224.56913 0,-87.45767 -35.34641,-166.84295 -93.16136,-224.65792 C 490.35047,37.57153 409.60065,1.17224 320.05709,1.17224 z m 0,17.67073 c 81.66481,0 155.80087,32.9938 210.18391,87.37683 54.38304,54.38303 88.48046,130.07393 88.48046,213.82461 0,83.75069 -34.09742,159.35279 -88.48046,213.73582 -54.38304,54.38299 -128.5191,87.46559 -210.18391,87.46559 -81.66481,0 -155.91504,-33.0826 -210.29808,-87.46559 C 55.375969,479.3972 21.392713,403.7951 21.392713,320.04441 c 0,-83.75068 33.983256,-159.44158 88.366297,-213.82461 54.38304,-54.38303 128.63327,-87.37683 210.29808,-87.37683 z"
+         id="path14049"
+         inkscape:connector-curvature="0" />
+    </mask>
+  </defs>
+  <sodipodi:namedview
+     id="base"
+     pagecolor="#ffffff"
+     bordercolor="#666666"
+     borderopacity="1.0"
+     inkscape:pageopacity="0.0"
+     inkscape:pageshadow="2"
+     inkscape:zoom="0.59551649"
+     inkscape:cx="201.43102"
+     inkscape:cy="238.78776"
+     inkscape:document-units="px"
+     inkscape:current-layer="layer4"
+     showgrid="false"
+     inkscape:window-width="1152"
+     inkscape:window-height="756"
+     inkscape:window-x="0"
+     inkscape:window-y="29"
+     inkscape:window-maximized="1"
+     showguides="true"
+     inkscape:guide-bbox="true">
+    <sodipodi:guide
+       orientation="1,0"
+       position="320,320"
+       id="guide4161" />
+  </sodipodi:namedview>
+  <metadata
+     id="metadata7">
+    <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:groupmode="layer"
+     id="layer4"
+     inkscape:label="background">
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke-width:20;stroke-miterlimit:4;stroke-dasharray:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="path14190"
+       sodipodi:cx="-59.612118"
+       sodipodi:cy="293.24219"
+       sodipodi:rx="125.10149"
+       sodipodi:ry="126.7807"
+       d="m 65.489368,293.24219 a 125.10149,126.7807 0 1 1 -250.202968,0 125.10149,126.7807 0 1 1 250.202968,0 z"
+       transform="matrix(2.5579232,0,0,2.5240435,472.48322,-420.15604)" />
+  </g>
+  <g
+     inkscape:groupmode="layer"
+     id="layer3"
+     inkscape:label="color wheel"
+     style="display:inline"
+     sodipodi:insensitive="true">
+    <g
+       id="g13782"
+       mask="url(#mask14047)"
+       transform="matrix(0,1,-1,0,640.00009,-9.4269683e-5)">
+      <path
+         inkscape:connector-curvature="0"
+         d="m 639.46233,319.9993 c 0,2.85054 -0.0316,5.70096 -0.0963,8.55064 L 319.99461,319.9993 z"
+         style="color:#000000;fill-opacity:1;fill-rule:nonzero;stroke-width:0.62654907;stroke-miterlimit:4;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+         id="path8130" />
+      <path
+         id="use11708"
+         style="color:#000000;fill:#ff0000;fill-opacity:1;fill-rule:nonzero;stroke:#ff0000;stroke-width:0.62654907;stroke-miterlimit:4;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+         d="m 639.46233,319.9993 c 0,2.85054 -0.0316,5.70096 -0.0963,8.55064 L 319.99461,319.9993 z"
+         inkscape:connector-curvature="0" />
+      <path
+         id="use11710"
+         style="color:#000000;fill:#ff0600;fill-opacity:1;fill-rule:nonzero;stroke:#ff0600;stroke-width:0.62654907;stroke-miterlimit:4;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+         d="m 639.36697,327.80456 c -0.0697,2.84969 -0.17088,5.69848 -0.30519,8.54573 L 319.99461,319.99931 z"
+         inkscape:connector-curvature="0" />
+      <path
+         id="use11712"
+         style="color:#000000;fill:#ff0c00;fill-opacity:1;fill-rule:nonzero;stroke:#ff0c00;stroke-width:0.62654907;stroke-miterlimit:4;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+         d="m 639.08093,335.60515 c -0.13924,2.84714 -0.31005,5.69261 -0.51388,8.53573 L 319.99461,319.99932 z"
+         inkscape:connector-curvature="0" />
+      <path
+         id="use11714"
+         style="color:#000000;fill:#ff1200;fill-opacity:1;fill-rule:nonzero;stroke:#ff1200;stroke-width:0.62654907;stroke-miterlimit:4;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+         d="m 638.6044,343.39643 c -0.20877,2.84289 -0.44905,5.68334 -0.72228,8.52063 L 319.99461,319.99933 z"
+         inkscape:connector-curvature="0" />
+      <path
+         id="use11716"
+         style="color:#000000;fill:#ff1800;fill-opacity:1;fill-rule:nonzero;stroke:#ff1800;stroke-width:0.62654907;stroke-miterlimit:4;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+         d="m 637.93764,351.17373 c -0.27817,2.83694 -0.58777,5.67067 -0.93025,8.50043 L 319.99461,319.99934 z"
+         inkscape:connector-curvature="0" />
+      <path
+         id="use11718"
+         style="color:#000000;fill:#ff1f00;fill-opacity:1;fill-rule:nonzero;stroke:#ff1f00;stroke-width:0.62654907;stroke-miterlimit:4;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+         d="m 637.08106,358.93242 c -0.3474,2.82929 -0.72614,5.65462 -1.13765,8.47517 L 319.9946,319.99934 z"
+         inkscape:connector-curvature="0" />
+      <path
+         id="use11720"
+         style="color:#000000;fill:#ff2500;fill-opacity:1;fill-rule:nonzero;stroke:#ff2500;stroke-width:0.62654907;stroke-miterlimit:4;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+         d="m 636.03518,366.66788 c -0.41642,2.81996 -0.86408,5.63519 -1.34438,8.44485 L 319.9946,319.99936 z"
+         inkscape:connector-curvature="0" />
+      <path
+         id="use11722"
+         style="color:#000000;fill:#ff2b00;fill-opacity:1;fill-rule:nonzero;stroke:#ff2b00;stroke-width:0.62654907;stroke-miterlimit:4;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+         d="m 634.80062,374.37548 c -0.48519,2.80894 -1.0015,5.61239 -1.5503,8.40947 L 319.99461,319.99938 z"
+         inkscape:connector-curvature="0" />
+      <path
+         id="use11724"
+         style="color:#000000;fill:#ff3100;fill-opacity:1;fill-rule:nonzero;stroke:#ff3100;stroke-width:0.62654907;stroke-miterlimit:4;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+         d="m 633.37812,382.0506 c -0.55368,2.79625 -1.13833,5.58625 -1.75531,8.36909 l -311.6282,-70.42031 z"
+         inkscape:connector-curvature="0" />
+      <path
+         id="use11726"
+         style="color:#000000;fill:#ff3700;fill-opacity:1;fill-rule:nonzero;stroke:#ff3700;stroke-width:0.62654907;stroke-miterlimit:4;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+         d="m 631.7685,389.68868 c -0.62183,2.78189 -1.27447,5.55677 -1.95925,8.32371 l -309.81465,-78.013 z"
+         inkscape:connector-curvature="0" />
+      <path
+         id="use11728"
+         style="color:#000000;fill:#ff3d00;fill-opacity:1;fill-rule:nonzero;stroke:#ff3d00;stroke-width:0.62654907;stroke-miterlimit:4;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+         d="m 629.97277,397.28516 c -0.68961,2.76587 -1.40986,5.52398 -2.16204,8.27336 L 319.9946,319.99941 z"
+         inkscape:connector-curvature="0" />
+      <path
+         id="use11730"
+         style="color:#000000;fill:#ff4300;fill-opacity:1;fill-rule:nonzero;stroke:#ff4300;stroke-width:0.62654907;stroke-miterlimit:4;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+         d="m 627.99195,404.8355 c -0.75698,2.74819 -1.5444,5.48787 -2.36353,8.21806 L 319.99459,319.99941 z"
+         inkscape:connector-curvature="0" />
+      <path
+         id="use11732"
+         style="color:#000000;fill:#ff4900;fill-opacity:1;fill-rule:nonzero;stroke:#ff4900;stroke-width:0.62654907;stroke-miterlimit:4;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+         d="m 625.82728,412.33519 c -0.8239,2.72888 -1.67802,5.44851 -2.56361,8.15786 L 319.9946,319.99943 z"
+         inkscape:connector-curvature="0" />
+      <path
+         id="use11734"
+         style="color:#000000;fill:#ff5000;fill-opacity:1;fill-rule:nonzero;stroke:#ff5000;stroke-width:0.62654907;stroke-miterlimit:4;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+         d="m 623.47999,419.77973 c -0.89032,2.70793 -1.81064,5.40588 -2.76216,8.09279 L 319.99459,319.99942 z"
+         inkscape:connector-curvature="0" />
+      <path
+         id="use11736"
+         style="color:#000000;fill:#ff5600;fill-opacity:1;fill-rule:nonzero;stroke:#ff5600;stroke-width:0.62654907;stroke-miterlimit:4;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+         d="m 620.95153,427.16472 c -0.95623,2.68538 -1.94218,5.36003 -2.95906,8.02289 L 319.99458,319.99944 z"
+         inkscape:connector-curvature="0" />
+      <path
+         id="use11738"
+         style="color:#000000;fill:#ff5c00;fill-opacity:1;fill-rule:nonzero;stroke:#ff5c00;stroke-width:0.62654907;stroke-miterlimit:4;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+         d="m 618.2434,434.48572 c -1.02155,2.66121 -2.07255,5.31099 -3.15419,7.9482 L 319.99459,319.99944 z"
+         inkscape:connector-curvature="0" />
+      <path
+         id="use11740"
+         style="color:#000000;fill:#ff6200;fill-opacity:1;fill-rule:nonzero;stroke:#ff6200;stroke-width:0.62654907;stroke-miterlimit:4;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+         d="m 615.35719,441.73839 c -1.08626,2.63546 -2.2017,5.25876 -3.34745,7.86876 L 319.99458,319.99946 z"
+         inkscape:connector-curvature="0" />
+      <path
+         id="use11742"
+         style="color:#000000;fill:#ff6800;fill-opacity:1;fill-rule:nonzero;stroke:#ff6800;stroke-width:0.62654907;stroke-miterlimit:4;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+         d="m 612.29466,448.91837 c -1.15033,2.60813 -2.32952,5.2034 -3.5387,7.78463 L 319.99458,319.99947 z"
+         inkscape:connector-curvature="0" />
+      <path
+         id="use11744"
+         style="color:#000000;fill:#ff6e00;fill-opacity:1;fill-rule:nonzero;stroke:#ff6e00;stroke-width:0.62654907;stroke-miterlimit:4;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+         d="m 609.0576,456.02137 c -1.2137,2.57925 -2.45595,5.14493 -3.72784,7.69585 L 319.99457,319.99948 z"
+         inkscape:connector-curvature="0" />
+      <path
+         id="use11746"
+         style="color:#000000;fill:#ff7400;fill-opacity:1;fill-rule:nonzero;stroke:#ff7400;stroke-width:0.62654907;stroke-miterlimit:4;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+         d="m 605.64799,463.04318 c -1.27636,2.54883 -2.58093,5.08339 -3.91476,7.60248 L 319.99457,319.9995 z"
+         inkscape:connector-curvature="0" />
+      <path
+         id="use11748"
+         style="color:#000000;fill:#ff7a00;fill-opacity:1;fill-rule:nonzero;stroke:#ff7a00;stroke-width:0.62654907;stroke-miterlimit:4;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+         d="m 602.06782,469.97957 c -1.33825,2.51687 -2.70435,5.01881 -4.09933,7.50455 L 319.99457,319.99949 z"
+         inkscape:connector-curvature="0" />
+      <path
+         id="use11750"
+         style="color:#000000;fill:#ff8100;fill-opacity:1;fill-rule:nonzero;stroke:#ff8100;stroke-width:0.62654907;stroke-miterlimit:4;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+         d="m 598.31925,476.82643 c -1.39935,2.48343 -2.82617,4.95124 -4.28146,7.40216 L 319.99456,319.9995 z"
+         inkscape:connector-curvature="0" />
+      <path
+         id="use11752"
+         style="color:#000000;fill:#ff8700;fill-opacity:1;fill-rule:nonzero;stroke:#ff8700;stroke-width:0.62654907;stroke-miterlimit:4;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+         d="m 594.40452,483.57965 c -1.4596,2.4485 -2.94629,4.88072 -4.46103,7.29535 L 319.99456,319.9995 z"
+         inkscape:connector-curvature="0" />
+      <path
+         id="use11754"
+         style="color:#000000;fill:#ff8d00;fill-opacity:1;fill-rule:nonzero;stroke:#ff8d00;stroke-width:0.62654907;stroke-miterlimit:4;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+         d="m 590.32595,490.23524 c -1.51899,2.41211 -3.06466,4.80727 -4.63795,7.18418 L 319.99455,319.99952 z"
+         inkscape:connector-curvature="0" />
+      <path
+         id="use11756"
+         style="color:#000000;fill:#ff9300;fill-opacity:1;fill-rule:nonzero;stroke:#ff9300;stroke-width:0.62654907;stroke-miterlimit:4;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+         d="m 586.086,496.78916 c -1.57747,2.37428 -3.1812,4.73096 -4.81209,7.06872 L 319.99455,319.99952 z"
+         inkscape:connector-curvature="0" />
+      <path
+         id="use11758"
+         style="color:#000000;fill:#ff9900;fill-opacity:1;fill-rule:nonzero;stroke:#ff9900;stroke-width:0.62654907;stroke-miterlimit:4;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+         d="m 581.68717,503.23755 c -1.63501,2.33503 -3.29584,4.65183 -4.98336,6.94904 L 319.99454,319.99953 z"
+         inkscape:connector-curvature="0" />
+      <path
+         id="use11760"
+         style="color:#000000;fill:#ff9f00;fill-opacity:1;fill-rule:nonzero;stroke:#ff9f00;stroke-width:0.62654907;stroke-miterlimit:4;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+         d="m 577.13214,509.57656 c -1.69158,2.29438 -3.40852,4.56991 -5.15166,6.82521 L 319.99455,319.99955 z"
+         inkscape:connector-curvature="0" />
+      <path
+         id="use11762"
+         style="color:#000000;fill:#ffa500;fill-opacity:1;fill-rule:nonzero;stroke:#ffa500;stroke-width:0.62654907;stroke-miterlimit:4;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+         d="m 572.42355,515.80236 c -1.74713,2.25237 -3.51915,4.48527 -5.31687,6.69731 L 319.99453,319.99956 z"
+         inkscape:connector-curvature="0" />
+      <path
+         id="use11764"
+         style="color:#000000;fill:#ffab00;fill-opacity:1;fill-rule:nonzero;stroke:#ffab00;stroke-width:0.62654907;stroke-miterlimit:4;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+         d="m 567.56428,521.91127 c -1.80163,2.20901 -3.62768,4.39795 -5.47891,6.5654 L 319.99453,319.99956 z"
+         inkscape:connector-curvature="0" />
+      <path
+         id="use11766"
+         style="color:#000000;fill:#ffb100;fill-opacity:1;fill-rule:nonzero;stroke:#ffb100;stroke-width:0.62654907;stroke-miterlimit:4;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+         d="m 562.55718,527.89963 c -1.85507,2.16434 -3.73405,4.30801 -5.63769,6.42959 L 319.99451,319.99957 z"
+         inkscape:connector-curvature="0" />
+      <path
+         id="use11768"
+         style="color:#000000;fill:#ffb800;fill-opacity:1;fill-rule:nonzero;stroke:#ffb800;stroke-width:0.62654907;stroke-miterlimit:4;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+         d="m 557.4053,533.76388 c -1.9074,2.11836 -3.83819,4.2155 -5.7931,6.28993 L 319.99452,319.99958 z"
+         inkscape:connector-curvature="0" />
+      <path
+         id="use11770"
+         style="color:#000000;fill:#ffbe00;fill-opacity:1;fill-rule:nonzero;stroke:#ffbe00;stroke-width:0.62654907;stroke-miterlimit:4;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+         d="m 552.11166,539.50051 c -1.95859,2.07113 -3.94005,4.12046 -5.94505,6.14651 L 319.9945,319.99959 z"
+         inkscape:connector-curvature="0" />
+      <path
+         id="use11772"
+         style="color:#000000;fill:#ffc400;fill-opacity:1;fill-rule:nonzero;stroke:#ffc400;stroke-width:0.62654907;stroke-miterlimit:4;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+         d="m 546.67945,545.10607 c -2.0086,2.02266 -4.03954,4.02297 -6.09345,5.99943 L 319.9945,319.99958 z"
+         inkscape:connector-curvature="0" />
+      <path
+         id="use11774"
+         style="color:#000000;fill:#ffca00;fill-opacity:1;fill-rule:nonzero;stroke:#ffca00;stroke-width:0.62654907;stroke-miterlimit:4;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+         d="m 541.11189,550.57726 c -2.05742,1.97299 -4.13662,3.92308 -6.2382,5.84877 L 319.99449,319.9996 z"
+         inkscape:connector-curvature="0" />
+      <path
+         id="use11776"
+         style="color:#000000;fill:#ffd000;fill-opacity:1;fill-rule:nonzero;stroke:#ffd000;stroke-width:0.62654907;stroke-miterlimit:4;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+         d="m 535.41233,555.91078 c -2.10501,1.92212 -4.23124,3.82083 -6.37924,5.6946 L 319.99448,319.9996 z"
+         inkscape:connector-curvature="0" />
+      <path
+         id="use11778"
+         style="color:#000000;fill:#ffd600;fill-opacity:1;fill-rule:nonzero;stroke:#ffd600;stroke-width:0.62654907;stroke-miterlimit:4;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+         d="m 529.58415,561.10346 c -2.15134,1.87013 -4.32333,3.71632 -6.51647,5.53705 L 319.99447,319.99961 z"
+         inkscape:connector-curvature="0" />
+      <path
+         id="use11780"
+         style="color:#000000;fill:#ffdc00;fill-opacity:1;fill-rule:nonzero;stroke:#ffdc00;stroke-width:0.62654907;stroke-miterlimit:4;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+         d="m 523.63085,566.1522 c -2.19639,1.817 -4.41283,3.60958 -6.6498,5.37618 L 319.99446,319.99961 z"
+         inkscape:connector-curvature="0" />
+      <path
+         id="use11782"
+         style="color:#000000;fill:#ffe200;fill-opacity:1;fill-rule:nonzero;stroke:#ffe200;stroke-width:0.62654907;stroke-miterlimit:4;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+         d="m 517.55598,571.05398 c -2.24013,1.7628 -4.4997,3.50069 -6.77917,5.21211 L 319.99446,319.99963 z"
+         inkscape:connector-curvature="0" />
+      <path
+         id="use11784"
+         style="color:#000000;fill:#ffe900;fill-opacity:1;fill-rule:nonzero;stroke:#ffe900;stroke-width:0.62654907;stroke-miterlimit:4;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+         d="m 511.36315,575.80586 c -2.28253,1.70754 -4.5839,3.38971 -6.9045,5.04493 L 319.99444,319.99962 z"
+         inkscape:connector-curvature="0" />
+      <path
+         id="use11786"
+         style="color:#000000;fill:#ffef00;fill-opacity:1;fill-rule:nonzero;stroke:#ffef00;stroke-width:0.62654907;stroke-miterlimit:4;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+         d="m 505.05606,580.40505 c -2.32357,1.65126 -4.66534,3.2767 -7.02569,4.87472 L 319.99443,319.99964 z"
+         inkscape:connector-curvature="0" />
+      <path
+         id="use11788"
+         style="color:#000000;fill:#fff500;fill-opacity:1;fill-rule:nonzero;stroke:#fff500;stroke-width:0.62654907;stroke-miterlimit:4;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+         d="m 498.63851,584.84874 c -2.36322,1.594 -4.74401,3.16173 -7.1427,4.70162 L 319.99443,319.99964 z"
+         inkscape:connector-curvature="0" />
+      <path
+         id="use11790"
+         style="color:#000000;fill:#fffb00;fill-opacity:1;fill-rule:nonzero;stroke:#fffb00;stroke-width:0.62654907;stroke-miterlimit:4;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+         d="m 492.1143,589.13434 c -2.40146,1.53579 -4.81985,3.04489 -7.25544,4.52571 L 319.99442,319.99966 z"
+         inkscape:connector-curvature="0" />
+      <path
+         id="use11792"
+         style="color:#000000;fill:#fdff00;fill-opacity:1;fill-rule:nonzero;stroke:#fdff00;stroke-width:0.62654907;stroke-miterlimit:4;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+         d="m 485.48732,593.25922 c -2.43827,1.47666 -4.8928,2.92623 -7.36384,4.3471 L 319.99441,319.99965 z"
+         inkscape:connector-curvature="0" />
+      <path
+         id="use11794"
+         style="color:#000000;fill:#f7ff00;fill-opacity:1;fill-rule:nonzero;stroke:#f7ff00;stroke-width:0.62654907;stroke-miterlimit:4;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+         d="m 478.76154,597.221 c -2.47362,1.41664 -4.96283,2.8058 -7.46786,4.16588 L 319.9944,319.99966 z"
+         inkscape:connector-curvature="0" />
+      <path
+         id="use11796"
+         style="color:#000000;fill:#f1ff00;fill-opacity:1;fill-rule:nonzero;stroke:#f1ff00;stroke-width:0.62654907;stroke-miterlimit:4;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+         d="m 471.94098,601.01724 c -2.50749,1.35578 -5.0299,2.68371 -7.56741,3.98218 L 319.9944,319.99966 z"
+         inkscape:connector-curvature="0" />
+      <path
+         id="use11798"
+         style="color:#000000;fill:#ebff00;fill-opacity:1;fill-rule:nonzero;stroke:#ebff00;stroke-width:0.62654907;stroke-miterlimit:4;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+         d="m 465.02969,604.64572 c -2.53986,1.29412 -5.09397,2.56003 -7.66244,3.79611 L 319.99438,319.99967 z"
+         inkscape:connector-curvature="0" />
+      <path
+         id="use11800"
+         style="color:#000000;fill:#e4ff00;fill-opacity:1;fill-rule:nonzero;stroke:#e4ff00;stroke-width:0.62654907;stroke-miterlimit:4;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+         d="m 458.03183,608.10427 c -2.57072,1.23168 -5.15499,2.43481 -7.7529,3.60777 L 319.99438,319.99968 z"
+         inkscape:connector-curvature="0" />
+      <path
+         id="use11802"
+         style="color:#000000;fill:#deff00;fill-opacity:1;fill-rule:nonzero;stroke:#deff00;stroke-width:0.62654907;stroke-miterlimit:4;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+         d="m 450.95153,611.39081 c -2.60005,1.1685 -5.21294,2.30813 -7.83873,3.41727 L 319.99436,319.99968 z"
+         inkscape:connector-curvature="0" />
+      <path
+         id="use11804"
+         style="color:#000000;fill:#d8ff00;fill-opacity:1;fill-rule:nonzero;stroke:#d8ff00;stroke-width:0.62654907;stroke-miterlimit:4;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+         d="m 443.79309,614.50338 c -2.62783,1.10463 -5.26778,2.18008 -7.91989,3.22473 L 319.99437,319.99969 z"
+         inkscape:connector-curvature="0" />
+      <path
+         id="use11806"
+         style="color:#000000;fill:#d2ff00;fill-opacity:1;fill-rule:nonzero;stroke:#d2ff00;stroke-width:0.62654907;stroke-miterlimit:4;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+         d="m 436.5607,617.44013 c -2.65403,1.0401 -5.31948,2.05073 -7.99631,3.03027 L 319.99435,319.9997 z"
+         inkscape:connector-curvature="0" />
+      <path
+         id="use11808"
+         style="color:#000000;fill:#ccff00;fill-opacity:1;fill-rule:nonzero;stroke:#ccff00;stroke-width:0.62654907;stroke-miterlimit:4;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+         d="m 429.25872,620.19929 c -2.67865,0.97494 -5.36799,1.92015 -8.06796,2.834 L 319.99433,319.99969 z"
+         inkscape:connector-curvature="0" />
+      <path
+         id="use11810"
+         style="color:#000000;fill:#c6ff00;fill-opacity:1;fill-rule:nonzero;stroke:#c6ff00;stroke-width:0.62654907;stroke-miterlimit:4;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+         d="m 421.89153,622.77923 c -2.70166,0.9092 -5.4133,1.78842 -8.13479,2.63604 L 319.99433,319.99969 z"
+         inkscape:connector-curvature="0" />
+      <path
+         id="use11812"
+         style="color:#000000;fill:#c0ff00;fill-opacity:1;fill-rule:nonzero;stroke:#c0ff00;stroke-width:0.62654907;stroke-miterlimit:4;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+         d="m 414.46351,625.1784 c -2.72308,0.84293 -5.45538,1.65564 -8.19677,2.4365 L 319.99433,319.99969 z"
+         inkscape:connector-curvature="0" />
+      <path
+         id="use11814"
+         style="color:#000000;fill:#baff00;fill-opacity:1;fill-rule:nonzero;stroke:#baff00;stroke-width:0.62654907;stroke-miterlimit:4;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+         d="m 406.97906,627.39538 c -2.74286,0.77614 -5.4942,1.52185 -8.25385,2.23551 L 319.99431,319.9997 z"
+         inkscape:connector-curvature="0" />
+      <path
+         id="use11816"
+         style="color:#000000;fill:#b4ff00;fill-opacity:1;fill-rule:nonzero;stroke:#b4ff00;stroke-width:0.62654907;stroke-miterlimit:4;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+         d="m 399.44269,629.42883 c -2.761,0.7089 -5.52975,1.38717 -8.30601,2.03319 L 319.9943,319.9997 z"
+         inkscape:connector-curvature="0" />
+      <path
+         id="use11818"
+         style="color:#000000;fill:#adff00;fill-opacity:1;fill-rule:nonzero;stroke:#adff00;stroke-width:0.62654907;stroke-miterlimit:4;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+         d="m 391.85889,631.27755 c -2.7775,0.64123 -5.56198,1.25165 -8.3532,1.82964 L 319.99429,319.9997 z"
+         inkscape:connector-curvature="0" />
+      <path
+         id="use11820"
+         style="color:#000000;fill:#a7ff00;fill-opacity:1;fill-rule:nonzero;stroke:#a7ff00;stroke-width:0.62654907;stroke-miterlimit:4;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+         d="m 384.23219,632.94044 c -2.79234,0.57318 -5.59091,1.11538 -8.39542,1.62501 L 319.99428,319.99971 z"
+         inkscape:connector-curvature="0" />
+      <path
+         id="use11822"
+         style="color:#000000;fill:#a1ff00;fill-opacity:1;fill-rule:nonzero;stroke:#a1ff00;stroke-width:0.62654907;stroke-miterlimit:4;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+         d="m 376.56713,634.41649 c -2.8055,0.50479 -5.61649,0.97845 -8.43261,1.41941 L 319.99427,319.99971 z"
+         inkscape:connector-curvature="0" />
+      <path
+         id="use11824"
+         style="color:#000000;fill:#9bff00;fill-opacity:1;fill-rule:nonzero;stroke:#9bff00;stroke-width:0.62654907;stroke-miterlimit:4;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+         d="m 368.8683,635.70481 c -2.817,0.4361 -5.63872,0.84094 -8.46477,1.21297 L 319.99426,319.99971 z"
+         inkscape:connector-curvature="0" />
+      <path
+         id="use11826"
+         style="color:#000000;fill:#95ff00;fill-opacity:1;fill-rule:nonzero;stroke:#95ff00;stroke-width:0.62654907;stroke-miterlimit:4;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+         d="m 361.1403,636.80467 c -2.82682,0.36713 -5.65758,0.70292 -8.49188,1.00578 L 319.99426,319.99971 z"
+         inkscape:connector-curvature="0" />
+      <path
+         id="use11828"
+         style="color:#000000;fill:#8fff00;fill-opacity:1;fill-rule:nonzero;stroke:#8fff00;stroke-width:0.62654907;stroke-miterlimit:4;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+         d="m 353.38772,637.71539 c -2.83495,0.29796 -5.67307,0.56449 -8.51392,0.79802 L 319.99425,319.99972 z"
+         inkscape:connector-curvature="0" />
+      <path
+         id="use11830"
+         style="color:#000000;fill:#89ff00;fill-opacity:1;fill-rule:nonzero;stroke:#89ff00;stroke-width:0.62654907;stroke-miterlimit:4;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+         d="m 345.61521,638.43641 c -2.84138,0.22861 -5.68517,0.42571 -8.53088,0.58976 L 319.99424,319.99971 z"
+         inkscape:connector-curvature="0" />
+      <path
+         id="use11832"
+         style="color:#000000;fill:#83ff00;fill-opacity:1;fill-rule:nonzero;stroke:#83ff00;stroke-width:0.62654907;stroke-miterlimit:4;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+         d="m 337.82739,638.96732 c -2.84611,0.15912 -5.69387,0.28668 -8.54273,0.38116 L 319.99422,319.9997 z"
+         inkscape:connector-curvature="0" />
+      <path
+         id="use11834"
+         style="color:#000000;fill:#7cff00;fill-opacity:1;fill-rule:nonzero;stroke:#7cff00;stroke-width:0.62654907;stroke-miterlimit:4;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+         d="m 330.02894,639.30781 c -2.84915,0.0895 -5.69917,0.14748 -8.54949,0.17233 l -1.48523,-319.48043 z"
+         inkscape:connector-curvature="0" />
+      <path
+         id="use11836"
+         style="color:#000000;fill:#76ff00;fill-opacity:1;fill-rule:nonzero;stroke:#76ff00;stroke-width:0.62654907;stroke-miterlimit:4;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+         d="m 322.2245,639.45766 c -2.85049,0.0199 -5.70108,0.008 -8.55116,-0.0366 l 6.32087,-319.42135 z"
+         inkscape:connector-curvature="0" />
+      <path
+         id="use11838"
+         style="color:#000000;fill:#70ff00;fill-opacity:1;fill-rule:nonzero;stroke:#70ff00;stroke-width:0.62654907;stroke-miterlimit:4;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+         d="m 314.4187,639.4168 c -2.85012,-0.0498 -5.69957,-0.13109 -8.54771,-0.24552 l 14.12319,-319.17157 z"
+         inkscape:connector-curvature="0" />
+      <path
+         id="use11840"
+         style="color:#000000;fill:#6aff00;fill-opacity:1;fill-rule:nonzero;stroke:#6aff00;stroke-width:0.62654907;stroke-miterlimit:4;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+         d="m 306.61628,639.18523 c -2.84806,-0.11937 -5.69467,-0.27031 -8.53916,-0.45428 L 319.9942,319.99971 z"
+         inkscape:connector-curvature="0" />
+      <path
+         id="use11842"
+         style="color:#000000;fill:#64ff00;fill-opacity:1;fill-rule:nonzero;stroke:#64ff00;stroke-width:0.62654907;stroke-miterlimit:4;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+         d="m 298.82179,638.76309 c -2.84429,-0.18892 -5.68636,-0.40935 -8.52551,-0.66277 l 29.69789,-318.10061 z"
+         inkscape:connector-curvature="0" />
+      <path
+         id="use11844"
+         style="color:#000000;fill:#5eff00;fill-opacity:1;fill-rule:nonzero;stroke:#5eff00;stroke-width:0.62654907;stroke-miterlimit:4;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+         d="m 291.03998,638.15066 c -2.83883,-0.25835 -5.67467,-0.54816 -8.50677,-0.87087 l 37.46095,-317.28007 z"
+         inkscape:connector-curvature="0" />
+      <path
+         id="use11846"
+         style="color:#000000;fill:#58ff00;fill-opacity:1;fill-rule:nonzero;stroke:#58ff00;stroke-width:0.62654907;stroke-miterlimit:4;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+         d="m 283.27545,637.34828 c -2.83167,-0.32763 -5.65958,-0.68664 -8.48296,-1.07845 l 45.20167,-316.27011 z"
+         inkscape:connector-curvature="0" />
+      <path
+         id="use11848"
+         style="color:#000000;fill:#52ff00;fill-opacity:1;fill-rule:nonzero;stroke:#52ff00;stroke-width:0.62654907;stroke-miterlimit:4;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+         d="m 275.53283,636.35644 c -2.82282,-0.39672 -5.64111,-0.82472 -8.45407,-1.28538 l 52.91538,-315.07134 z"
+         inkscape:connector-curvature="0" />
+      <path
+         id="use11850"
+         style="color:#000000;fill:#4bff00;fill-opacity:1;fill-rule:nonzero;stroke:#4bff00;stroke-width:0.62654907;stroke-miterlimit:4;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+         d="m 267.81676,635.17571 c -2.81228,-0.46556 -5.61928,-0.96229 -8.42015,-1.49155 l 60.59752,-313.68445 z"
+         inkscape:connector-curvature="0" />
+      <path
+         id="use11852"
+         style="color:#000000;fill:#45ff00;fill-opacity:1;fill-rule:nonzero;stroke:#45ff00;stroke-width:0.62654907;stroke-miterlimit:4;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+         d="m 260.13186,633.80684 c -2.80007,-0.53414 -5.59409,-1.0993 -8.38119,-1.69683 l 68.24347,-312.1103 z"
+         inkscape:connector-curvature="0" />
+      <path
+         id="use11854"
+         style="color:#000000;fill:#3fff00;fill-opacity:1;fill-rule:nonzero;stroke:#3fff00;stroke-width:0.62654907;stroke-miterlimit:4;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+         d="m 252.48267,632.25059 c -2.78618,-0.60239 -5.56556,-1.23564 -8.33723,-1.90109 l 75.84868,-310.3498 z"
+         inkscape:connector-curvature="0" />
+      <path
+         id="use11856"
+         style="color:#000000;fill:#39ff00;fill-opacity:1;fill-rule:nonzero;stroke:#39ff00;stroke-width:0.62654907;stroke-miterlimit:4;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+         d="m 244.87379,630.50793 c -2.77063,-0.67028 -5.53372,-1.37125 -8.2883,-2.10421 L 319.9941,319.9997 z"
+         inkscape:connector-curvature="0" />
+      <path
+         id="use11858"
+         style="color:#000000;fill:#33ff00;fill-opacity:1;fill-rule:nonzero;stroke:#33ff00;stroke-width:0.62654907;stroke-miterlimit:4;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+         d="m 237.30975,628.57992 c -2.75343,-0.73777 -5.49856,-1.50604 -8.23441,-2.30609 l 90.91874,-306.27412 z"
+         inkscape:connector-curvature="0" />
+      <path
+         id="use11860"
+         style="color:#000000;fill:#2dff00;fill-opacity:1;fill-rule:nonzero;stroke:#2dff00;stroke-width:0.62654907;stroke-miterlimit:4;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+         d="m 229.7951,626.46765 c -2.73458,-0.80482 -5.46012,-1.63993 -8.17561,-2.50658 l 98.37459,-303.96136 z"
+         inkscape:connector-curvature="0" />
+      <path
+         id="use11862"
+         style="color:#000000;fill:#27ff00;fill-opacity:1;fill-rule:nonzero;stroke:#27ff00;stroke-width:0.62654907;stroke-miterlimit:4;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+         d="m 222.3343,624.17242 c -2.71409,-0.87139 -5.41842,-1.77284 -8.11192,-2.70558 L 319.99409,319.9997 z"
+         inkscape:connector-curvature="0" />
+      <path
+         id="use11864"
+         style="color:#000000;fill:#21ff00;fill-opacity:1;fill-rule:nonzero;stroke:#21ff00;stroke-width:0.62654907;stroke-miterlimit:4;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+         d="m 214.93179,621.6956 c -2.692,-0.93745 -5.37349,-1.9047 -8.0434,-2.90296 L 319.99407,319.99971 z"
+         inkscape:connector-curvature="0" />
+      <path
+         id="use11866"
+         style="color:#000000;fill:#1bff00;fill-opacity:1;fill-rule:nonzero;stroke:#1bff00;stroke-width:0.62654907;stroke-miterlimit:4;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+         d="m 207.592,619.03864 c -2.66829,-1.00294 -5.32535,-2.03542 -7.97007,-3.09862 L 319.99405,319.99969 z"
+         inkscape:connector-curvature="0" />
+      <path
+         id="use11868"
+         style="color:#000000;fill:#14ff00;fill-opacity:1;fill-rule:nonzero;stroke:#14ff00;stroke-width:0.62654907;stroke-miterlimit:4;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+         d="m 200.31934,616.20315 c -2.64299,-1.06783 -5.27403,-2.16491 -7.89199,-3.29241 L 319.99406,319.99968 z"
+         inkscape:connector-curvature="0" />
+      <path
+         id="use11870"
+         style="color:#000000;fill:#0eff00;fill-opacity:1;fill-rule:nonzero;stroke:#0eff00;stroke-width:0.62654907;stroke-miterlimit:4;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+         d="m 193.11811,613.19084 c -2.61611,-1.13209 -5.21956,-2.29313 -7.80919,-3.48425 L 319.99405,319.99968 z"
+         inkscape:connector-curvature="0" />
+      <path
+         id="use11872"
+         style="color:#000000;fill:#08ff00;fill-opacity:1;fill-rule:nonzero;stroke:#08ff00;stroke-width:0.62654907;stroke-miterlimit:4;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+         d="m 185.99264,610.00348 c -2.58768,-1.19566 -5.16198,-2.41996 -7.72174,-3.674 l 141.72314,-286.3298 z"
+         inkscape:connector-curvature="0" />
+      <path
+         id="use11874"
+         style="color:#000000;fill:#02ff00;fill-opacity:1;fill-rule:nonzero;stroke:#02ff00;stroke-width:0.62654907;stroke-miterlimit:4;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+         d="m 178.94716,606.64299 c -2.55769,-1.25853 -5.10131,-2.54536 -7.62966,-3.86156 L 319.99403,319.99968 z"
+         inkscape:connector-curvature="0" />
+      <path
+         id="use11876"
+         style="color:#000000;fill:#00ff04;fill-opacity:1;fill-rule:nonzero;stroke:#00ff04;stroke-width:0.62654907;stroke-miterlimit:4;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+         d="m 171.98588,603.11134 c -2.52617,-1.32064 -5.0376,-2.66924 -7.53304,-4.04682 L 319.99401,319.99966 z"
+         inkscape:connector-curvature="0" />
+      <path
+         id="use11878"
+         style="color:#000000;fill:#00ff0a;fill-opacity:1;fill-rule:nonzero;stroke:#00ff0a;stroke-width:0.62654907;stroke-miterlimit:4;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+         d="m 165.11301,599.4107 c -2.49315,-1.38197 -4.97088,-2.79152 -7.43192,-4.22966 L 319.99404,319.99967 z"
+         inkscape:connector-curvature="0" />
+      <path
+         id="use11880"
+         style="color:#000000;fill:#00ff10;fill-opacity:1;fill-rule:nonzero;stroke:#00ff10;stroke-width:0.62654907;stroke-miterlimit:4;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+         d="m 158.33262,595.54322 c -2.45864,-1.44247 -4.9012,-2.91213 -7.32636,-4.40997 l 168.98781,-271.1336 z"
+         inkscape:connector-curvature="0" />
+      <path
+         id="use11882"
+         style="color:#000000;fill:#00ff16;fill-opacity:1;fill-rule:nonzero;stroke:#00ff16;stroke-width:0.62654907;stroke-miterlimit:4;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+         d="m 151.64864,591.51124 c -2.42266,-1.50211 -4.82858,-3.03101 -7.21642,-4.58765 L 319.99401,319.99965 z"
+         inkscape:connector-curvature="0" />
+      <path
+         id="use11884"
+         style="color:#000000;fill:#00ff1d;fill-opacity:1;fill-rule:nonzero;stroke:#00ff1d;stroke-width:0.62654907;stroke-miterlimit:4;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+         d="m 145.06519,587.31717 c -2.38524,-1.56085 -4.75308,-3.14808 -7.10218,-4.7626 L 319.99397,319.99964 z"
+         inkscape:connector-curvature="0" />
+      <path
+         id="use11886"
+         style="color:#000000;fill:#00ff23;fill-opacity:1;fill-rule:nonzero;stroke:#00ff23;stroke-width:0.62654907;stroke-miterlimit:4;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+         d="m 138.58616,582.96351 c -2.3464,-1.61866 -4.67475,-3.26327 -6.9837,-4.9347 L 319.99391,319.99964 z"
+         inkscape:connector-curvature="0" />
+      <path
+         id="use11888"
+         style="color:#000000;fill:#00ff29;fill-opacity:1;fill-rule:nonzero;stroke:#00ff29;stroke-width:0.62654907;stroke-miterlimit:4;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+         d="m 132.21559,578.45284 c -2.30615,-1.6755 -4.59363,-3.3765 -6.86105,-5.10385 L 319.994,319.99963 z"
+         inkscape:connector-curvature="0" />
+      <path
+         id="use11890"
+         style="color:#000000;fill:#00ff2f;fill-opacity:1;fill-rule:nonzero;stroke:#00ff2f;stroke-width:0.62654907;stroke-miterlimit:4;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+         d="m 125.95696,573.78789 c -2.26452,-1.73135 -4.50976,-3.48773 -6.73431,-5.26996 L 319.99394,319.99964 z"
+         inkscape:connector-curvature="0" />
+      <path
+         id="use11892"
+         style="color:#000000;fill:#00ff35;fill-opacity:1;fill-rule:nonzero;stroke:#00ff35;stroke-width:0.62654907;stroke-miterlimit:4;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+         d="m 119.81421,568.9714 c -2.22155,-1.78616 -4.4232,-3.59687 -6.60354,-5.43291 L 319.9939,319.99962 z"
+         inkscape:connector-curvature="0" />
+      <path
+         id="use11894"
+         style="color:#000000;fill:#00ff3b;fill-opacity:1;fill-rule:nonzero;stroke:#00ff3b;stroke-width:0.62654907;stroke-miterlimit:4;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+         d="m 113.79105,564.00628 c -2.17724,-1.8399 -4.334,-3.70387 -6.46883,-5.59263 L 319.99395,319.99962 z"
+         inkscape:connector-curvature="0" />
+      <path
+         id="use11896"
+         style="color:#000000;fill:#00ff41;fill-opacity:1;fill-rule:nonzero;stroke:#00ff41;stroke-width:0.62654907;stroke-miterlimit:4;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+         d="m 107.89094,558.89548 c -2.13164,-1.89255 -4.24221,-3.80865 -6.33026,-5.74901 L 319.99393,319.99961 z"
+         inkscape:connector-curvature="0" />
+      <path
+         id="use11898"
+         style="color:#000000;fill:#00ff47;fill-opacity:1;fill-rule:nonzero;stroke:#00ff47;stroke-width:0.62654907;stroke-miterlimit:4;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+         d="m 102.11741,553.64205 c -2.08476,-1.94406 -4.147888,-3.91116 -6.1879,-5.90195 L 319.99388,319.9996 z"
+         inkscape:connector-curvature="0" />
+      <path
+         id="use11900"
+         style="color:#000000;fill:#00ff4e;fill-opacity:1;fill-rule:nonzero;stroke:#00ff4e;stroke-width:0.62654907;stroke-miterlimit:4;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+         d="m 96.474075,548.24913 c -2.036645,-1.99442 -4.051096,-4.01133 -6.041859,-6.05137 L 319.99393,319.99959 z"
+         inkscape:connector-curvature="0" />
+      <path
+         id="use11902"
+         style="color:#000000;fill:#00ff54;fill-opacity:1;fill-rule:nonzero;stroke:#00ff54;stroke-width:0.62654907;stroke-miterlimit:4;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+         d="m 90.964125,542.71996 c -1.98731,-2.04358 -3.951881,-4.10911 -5.892207,-6.19718 L 319.99392,319.9996 z"
+         inkscape:connector-curvature="0" />
+      <path
+         id="use11904"
+         style="color:#000000;fill:#00ff5a;fill-opacity:1;fill-rule:nonzero;stroke:#00ff5a;stroke-width:0.62654907;stroke-miterlimit:4;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+         d="m 85.590937,537.05779 c -1.936787,-2.09152 -3.850306,-4.20443 -5.739036,-6.33929 L 319.99394,319.99958 z"
+         inkscape:connector-curvature="0" />
+      <path
+         id="use11906"
+         style="color:#000000;fill:#00ff60;fill-opacity:1;fill-rule:nonzero;stroke:#00ff60;stroke-width:0.62654907;stroke-miterlimit:4;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+         d="m 80.35765,531.26606 c -1.885108,-2.13822 -3.746432,-4.29725 -5.582439,-6.47761 L 319.99392,319.99957 z"
+         inkscape:connector-curvature="0" />
+      <path
+         id="use11908"
+         style="color:#000000;fill:#00ff66;fill-opacity:1;fill-rule:nonzero;stroke:#00ff66;stroke-width:0.62654907;stroke-miterlimit:4;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+         d="m 75.267375,525.34818 c -1.832303,-2.18364 -3.640322,-4.3875 -5.422509,-6.61207 L 319.99385,319.99956 z"
+         inkscape:connector-curvature="0" />
+      <path
+         id="use11910"
+         style="color:#000000;fill:#00ff6c;fill-opacity:1;fill-rule:nonzero;stroke:#00ff6c;stroke-width:0.62654907;stroke-miterlimit:4;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+         d="m 70.323326,519.30771 c -1.778405,-2.22775 -3.532039,-4.47513 -5.259343,-6.74257 L 319.99389,319.99956 z"
+         inkscape:connector-curvature="0" />
+      <path
+         id="use11912"
+         style="color:#000000;fill:#00ff72;fill-opacity:1;fill-rule:nonzero;stroke:#00ff72;stroke-width:0.62654907;stroke-miterlimit:4;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+         d="m 65.528309,513.14826 c -1.723444,-2.27054 -3.421646,-4.56009 -5.093035,-6.86906 L 319.99391,319.99956 z"
+         inkscape:connector-curvature="0" />
+      <path
+         id="use11914"
+         style="color:#000000;fill:#00ff78;fill-opacity:1;fill-rule:nonzero;stroke:#00ff78;stroke-width:0.62654907;stroke-miterlimit:4;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+         d="m 60.885113,506.87347 c -1.667455,-2.31197 -3.309211,-4.64233 -4.923688,-6.99145 L 319.99382,319.99954 z"
+         inkscape:connector-curvature="0" />
+      <path
+         id="use11916"
+         style="color:#000000;fill:#00ff7e;fill-opacity:1;fill-rule:nonzero;stroke:#00ff7e;stroke-width:0.62654907;stroke-miterlimit:4;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+         d="m 56.396724,500.48713 c -1.610471,-2.35202 -3.1948,-4.72179 -4.751401,-7.10965 L 319.99385,319.99953 z"
+         inkscape:connector-curvature="0" />
+      <path
+         id="use11918"
+         style="color:#000000;fill:#00ff85;fill-opacity:1;fill-rule:nonzero;stroke:#00ff85;stroke-width:0.62654907;stroke-miterlimit:4;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+         d="m 52.06572,493.99305 c -1.552525,-2.39066 -3.078483,-4.79844 -4.576277,-7.22362 L 319.99389,319.99954 z"
+         inkscape:connector-curvature="0" />
+      <path
+         id="use11920"
+         style="color:#000000;fill:#00ff8b;fill-opacity:1;fill-rule:nonzero;stroke:#00ff8b;stroke-width:0.62654907;stroke-miterlimit:4;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+         d="m 47.894628,487.39508 c -1.493652,-2.42788 -2.960326,-4.87222 -4.398421,-7.33327 L 319.99389,319.99954 z"
+         inkscape:connector-curvature="0" />
+      <path
+         id="use11922"
+         style="color:#000000;fill:#00ff91;fill-opacity:1;fill-rule:nonzero;stroke:#00ff91;stroke-width:0.62654907;stroke-miterlimit:4;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+         d="m 43.885982,480.69715 c -1.433887,-2.46365 -2.840403,-4.94309 -4.217939,-7.43854 L 319.99388,319.99951 z"
+         inkscape:connector-curvature="0" />
+      <path
+         id="use11924"
+         style="color:#000000;fill:#00ff97;fill-opacity:1;fill-rule:nonzero;stroke:#00ff97;stroke-width:0.62654907;stroke-miterlimit:4;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+         d="m 40.042085,473.90329 c -1.373267,-2.49795 -2.718785,-5.01101 -4.03494,-7.53938 L 319.99378,319.9995 z"
+         inkscape:connector-curvature="0" />
+      <path
+         id="use11926"
+         style="color:#000000;fill:#00ff9d;fill-opacity:1;fill-rule:nonzero;stroke:#00ff9d;stroke-width:0.62654907;stroke-miterlimit:4;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+         d="m 36.365453,467.01756 c -1.311826,-2.53076 -2.595542,-5.07594 -3.849531,-7.63571 L 319.99381,319.99949 z"
+         inkscape:connector-curvature="0" />
+      <path
+         id="use11928"
+         style="color:#000000;fill:#00ffa3;fill-opacity:1;fill-rule:nonzero;stroke:#00ffa3;stroke-width:0.62654907;stroke-miterlimit:4;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+         d="m 32.858151,460.04406 c -1.249602,-2.56205 -2.47075,-5.13784 -3.661823,-7.72748 L 319.99384,319.9995 z"
+         inkscape:connector-curvature="0" />
+      <path
+         id="use11930"
+         style="color:#000000;fill:#00ffa9;fill-opacity:1;fill-rule:nonzero;stroke:#00ffa9;stroke-width:0.62654907;stroke-miterlimit:4;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+         d="m 29.522292,452.98693 c -1.186633,-2.59182 -2.344483,-5.19668 -3.47193,-7.81464 L 319.99388,319.99947 z"
+         inkscape:connector-curvature="0" />
+      <path
+         id="use11932"
+         style="color:#000000;fill:#00ffaf;fill-opacity:1;fill-rule:nonzero;stroke:#00ffaf;stroke-width:0.62654907;stroke-miterlimit:4;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+         d="m 26.359688,445.85042 c -1.122954,-2.62004 -2.216817,-5.25241 -3.279964,-7.89714 L 319.99376,319.99947 z"
+         inkscape:connector-curvature="0" />
+      <path
+         id="use11934"
+         style="color:#000000;fill:#00ffb6;fill-opacity:1;fill-rule:nonzero;stroke:#00ffb6;stroke-width:0.62654907;stroke-miterlimit:4;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+         d="m 23.372493,438.63877 c -1.058606,-2.64669 -2.087826,-5.305 -3.086039,-7.97491 L 319.99374,319.99947 z"
+         inkscape:connector-curvature="0" />
+      <path
+         id="use11936"
+         style="color:#000000;fill:#00ffbc;fill-opacity:1;fill-rule:nonzero;stroke:#00ffbc;stroke-width:0.62654907;stroke-miterlimit:4;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+         d="m 20.562452,431.35628 c -0.993625,-2.67176 -1.95759,-5.35442 -2.890273,-8.04792 L 319.99379,319.99946 z"
+         inkscape:connector-curvature="0" />
+      <path
+         id="use11938"
+         style="color:#000000;fill:#00ffc2;fill-opacity:1;fill-rule:nonzero;stroke:#00ffc2;stroke-width:0.62654907;stroke-miterlimit:4;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+         d="m 17.931089,424.0073 c -0.928051,-2.69524 -1.826184,-5.40065 -2.69278,-8.11614 L 319.99375,319.99943 z"
+         inkscape:connector-curvature="0" />
+      <path
+         id="use11940"
+         style="color:#000000;fill:#00ffc8;fill-opacity:1;fill-rule:nonzero;stroke:#00ffc8;stroke-width:0.62654907;stroke-miterlimit:4;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+         d="m 15.480188,416.59625 c -0.861922,-2.71711 -1.693688,-5.44366 -2.493679,-8.17951 L 319.99384,319.99943 z"
+         inkscape:connector-curvature="0" />
+      <path
+         id="use11942"
+         style="color:#000000;fill:#00ffce;fill-opacity:1;fill-rule:nonzero;stroke:#00ffce;stroke-width:0.62654907;stroke-miterlimit:4;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+         d="m 13.210986,409.12752 c -0.79528,-2.73736 -1.560182,-5.48341 -2.293091,-8.23799 L 319.99382,319.99942 z"
+         inkscape:connector-curvature="0" />
+      <path
+         id="use11944"
+         style="color:#000000;fill:#00ffd4;fill-opacity:1;fill-rule:nonzero;stroke:#00ffd4;stroke-width:0.62654907;stroke-miterlimit:4;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+         d="m 11.124952,401.60558 c -0.728163,-2.75597 -1.4257431,-5.51989 -2.0911328,-8.29156 L 319.99382,319.99941 z"
+         inkscape:connector-curvature="0" />
+      <path
+         id="use11946"
+         style="color:#000000;fill:#00ffda;fill-opacity:1;fill-rule:nonzero;stroke:#00ffda;stroke-width:0.62654907;stroke-miterlimit:4;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+         d="m 9.2233426,394.0349 c -0.6606107,-2.77294 -1.290454,-5.55308 -1.8879268,-8.34017 L 319.99384,319.99939 z"
+         inkscape:connector-curvature="0" />
+      <path
+         id="use11948"
+         style="color:#000000;fill:#00ffe0;fill-opacity:1;fill-rule:nonzero;stroke:#00ffe0;stroke-width:0.62654907;stroke-miterlimit:4;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+         d="M 7.5072886,386.42006 C 6.9146243,383.63181 6.3528944,380.83711 5.8236951,378.03625 L 319.99387,319.9994 z"
+         inkscape:connector-curvature="0" />
+      <path
+         id="use11950"
+         style="color:#000000;fill:#00ffe7;fill-opacity:1;fill-rule:nonzero;stroke:#00ffe7;stroke-width:0.62654907;stroke-miterlimit:4;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+         d="M 5.9777428,378.76554 C 5.4533789,375.96364 4.9600978,373.15605 4.499488,370.3431 L 319.99386,319.99938 z"
+         inkscape:connector-curvature="0" />
+      <path
+         id="use11952"
+         style="color:#000000;fill:#00ffed;fill-opacity:1;fill-rule:nonzero;stroke:#00ffed;stroke-width:0.62654907;stroke-miterlimit:4;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+         d="M 4.6356651,371.07594 C 4.1799145,368.26207 3.7553767,365.44326 3.3636313,362.6199 L 319.99384,319.99938 z"
+         inkscape:connector-curvature="0" />
+      <path
+         id="use11954"
+         style="color:#000000;fill:#00fff3;fill-opacity:1;fill-rule:nonzero;stroke:#00fff3;stroke-width:0.62654907;stroke-miterlimit:4;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+         d="m 3.4818516,363.35584 c -0.3868651,-2.82416 -0.7424062,-5.6525 -1.0650532,-8.4846 L 319.99381,319.99937 z"
+         inkscape:connector-curvature="0" />
+      <path
+         id="use11956"
+         style="color:#000000;fill:#00fff9;fill-opacity:1;fill-rule:nonzero;stroke:#00fff9;stroke-width:0.62654907;stroke-miterlimit:4;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+         d="M 2.51707,355.60986 C 2.1993214,352.77709 1.9129892,349.94091 1.6596333,347.10178 L 319.99384,319.99936 z"
+         inkscape:connector-curvature="0" />
+      <path
+         id="use11958"
+         style="color:#000000;fill:#00ffff;fill-opacity:1;fill-rule:nonzero;stroke:#00ffff;stroke-width:0.62654907;stroke-miterlimit:4;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+         d="M 1.7417574,347.84261 C 1.493315,345.00292 1.2763627,342.16059 1.092449,339.31612 L 319.99381,319.99934 z"
+         inkscape:connector-curvature="0" />
+      <path
+         id="use11960"
+         style="color:#000000;fill:#00f9ff;fill-opacity:1;fill-rule:nonzero;stroke:#00f9ff;stroke-width:0.62654907;stroke-miterlimit:4;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+         d="m 1.1565246,340.05876 c -0.17898802,-2.84492 -0.32643084,-5.6917 -0.44079251,-8.53982 L 319.99385,319.99934 z"
+         inkscape:connector-curvature="0" />
+      <path
+         id="use11962"
+         style="color:#000000;fill:#00f3ff;fill-opacity:1;fill-rule:nonzero;stroke:#00f3ff;stroke-width:0.62654907;stroke-miterlimit:4;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+         d="M 0.76145577,332.26291 C 0.65202909,329.41447 0.57418374,326.56494 0.52944239,323.71488 L 319.9937,319.99932 z"
+         inkscape:connector-curvature="0" />
+      <path
+         id="use11964"
+         style="color:#000000;fill:#00edff;fill-opacity:1;fill-rule:nonzero;stroke:#00edff;stroke-width:0.62654907;stroke-miterlimit:4;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+         d="m 0.55714816,324.45975 c -0.0398,-2.85026 -0.0480014,-5.70084 -0.0230957,-8.55115 L 319.99373,319.99932 z"
+         inkscape:connector-curvature="0" />
+      <path
+         id="use11966"
+         style="color:#000000;fill:#00e7ff;fill-opacity:1;fill-rule:nonzero;stroke:#00e7ff;stroke-width:0.62654907;stroke-miterlimit:4;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+         d="m 0.54364319,316.65394 c 0.0298504,-2.85039 0.0912978,-5.70032 0.18583565,-8.54917 L 319.99385,319.99931 z"
+         inkscape:connector-curvature="0" />
+      <path
+         id="use11968"
+         style="color:#000000;fill:#00e0ff;fill-opacity:1;fill-rule:nonzero;stroke:#00e0ff;stroke-width:0.62654907;stroke-miterlimit:4;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+         d="m 0.72069724,308.8501 c 0.0994831,-2.8488 0.23054266,-5.69639 0.39465626,-8.54207 L 319.99381,319.99929 z"
+         inkscape:connector-curvature="0" />
+      <path
+         id="use11970"
+         style="color:#000000;fill:#00daff;fill-opacity:1;fill-rule:nonzero;stroke:#00daff;stroke-width:0.62654907;stroke-miterlimit:4;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+         d="m 1.0883377,301.05294 c 0.1690562,-2.84552 0.3696497,-5.68905 0.6032411,-8.52988 L 319.99374,319.99929 z"
+         inkscape:connector-curvature="0" />
+      <path
+         id="use11972"
+         style="color:#000000;fill:#00d4ff;fill-opacity:1;fill-rule:nonzero;stroke:#00d4ff;stroke-width:0.62654907;stroke-miterlimit:4;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+         d="m 1.6464505,293.26708 c 0.2385286,-2.84054 0.5085362,-5.67832 0.8114658,-8.5126 l 317.5358337,35.2448 z"
+         inkscape:connector-curvature="0" />
+      <path
+         id="use11974"
+         style="color:#000000;fill:#00ceff;fill-opacity:1;fill-rule:nonzero;stroke:#00ceff;stroke-width:0.62654907;stroke-miterlimit:4;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+         d="m 2.3947347,285.49716 c 0.3078585,-2.83386 0.6471191,-5.6642 1.0192062,-8.49022 L 319.99388,319.99926 z"
+         inkscape:connector-curvature="0" />
+      <path
+         id="use11976"
+         style="color:#000000;fill:#00c8ff;fill-opacity:1;fill-rule:nonzero;stroke:#00c8ff;stroke-width:0.62654907;stroke-miterlimit:4;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+         d="m 3.3323659,277.74788 c 0.3770044,-2.8255 0.7853155,-5.6467 1.2263378,-8.46279 L 319.99373,319.99926 z"
+         inkscape:connector-curvature="0" />
+      <path
+         id="use11978"
+         style="color:#000000;fill:#00c2ff;fill-opacity:1;fill-rule:nonzero;stroke:#00c2ff;stroke-width:0.62654907;stroke-miterlimit:4;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+         d="m 4.4592141,270.02378 c 0.4459255,-2.81544 0.9230431,-5.62583 1.4327375,-8.4303 L 319.99376,319.99924 z"
+         inkscape:connector-curvature="0" />
+      <path
+         id="use11980"
+         style="color:#000000;fill:#00bcff;fill-opacity:1;fill-rule:nonzero;stroke:#00bcff;stroke-width:0.62654907;stroke-miterlimit:4;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+         d="m 5.7744461,262.32954 c 0.5145803,-2.80371 1.0602197,-5.6016 1.6382818,-8.39278 L 319.99378,319.99922 z"
+         inkscape:connector-curvature="0" />
+      <path
+         id="use11982"
+         style="color:#000000;fill:#00b6ff;fill-opacity:1;fill-rule:nonzero;stroke:#00b6ff;stroke-width:0.62654907;stroke-miterlimit:4;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+         d="m 7.2772473,254.66975 c 0.5829278,-2.7903 1.1967632,-5.57402 1.8428479,-8.35025 L 319.99378,319.99923 z"
+         inkscape:connector-curvature="0" />
+      <path
+         id="use11984"
+         style="color:#000000;fill:#00afff;fill-opacity:1;fill-rule:nonzero;stroke:#00afff;stroke-width:0.62654907;stroke-miterlimit:4;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+         d="m 8.9667911,247.04893 c 0.6509274,-2.77522 1.3325919,-5.54312 2.0463139,-8.30273 l 308.980715,81.25301 z"
+         inkscape:connector-curvature="0" />
+      <path
+         id="use11986"
+         style="color:#000000;fill:#00a9ff;fill-opacity:1;fill-rule:nonzero;stroke:#00a9ff;stroke-width:0.62654907;stroke-miterlimit:4;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+         d="m 10.841907,239.47168 c 0.718539,-2.75849 1.467626,-5.50891 2.248558,-8.25026 l 306.903285,88.77779 z"
+         inkscape:connector-curvature="0" />
+      <path
+         id="use11988"
+         style="color:#000000;fill:#00a3ff;fill-opacity:1;fill-rule:nonzero;stroke:#00a3ff;stroke-width:0.62654907;stroke-miterlimit:4;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+         d="m 12.901793,231.9425 c 0.78572,-2.74011 1.601783,-5.4714 2.44946,-8.19286 L 319.99388,319.9992 z"
+         inkscape:connector-curvature="0" />
+      <path
+         id="use11990"
+         style="color:#000000;fill:#009dff;fill-opacity:1;fill-rule:nonzero;stroke:#009dff;stroke-width:0.62654907;stroke-miterlimit:4;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+         d="m 15.144821,224.46591 c 0.852433,-2.72011 1.734984,-5.43064 2.648899,-8.13057 L 319.9938,319.99919 z"
+         inkscape:connector-curvature="0" />
+      <path
+         id="use11992"
+         style="color:#000000;fill:#0097ff;fill-opacity:1;fill-rule:nonzero;stroke:#0097ff;stroke-width:0.62654907;stroke-miterlimit:4;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+         d="m 17.569997,217.04631 c 0.918637,-2.69846 1.867149,-5.38662 2.846757,-8.06342 L 319.99388,319.99916 z"
+         inkscape:connector-curvature="0" />
+      <path
+         id="use11994"
+         style="color:#000000;fill:#0091ff;fill-opacity:1;fill-rule:nonzero;stroke:#0091ff;stroke-width:0.62654907;stroke-miterlimit:4;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+         d="m 20.175564,209.68822 c 0.984292,-2.67521 1.9982,-5.3394 3.042916,-7.99147 l 296.77531,118.30241 z"
+         inkscape:connector-curvature="0" />
+      <path
+         id="use11996"
+         style="color:#000000;fill:#008bff;fill-opacity:1;fill-rule:nonzero;stroke:#008bff;stroke-width:0.62654907;stroke-miterlimit:4;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+         d="m 22.960227,202.39599 c 1.04936,-2.65037 2.128058,-5.28899 3.237258,-7.91473 L 319.9938,319.99917 z"
+         inkscape:connector-curvature="0" />
+      <path
+         id="use11998"
+         style="color:#000000;fill:#0085ff;fill-opacity:1;fill-rule:nonzero;stroke:#0085ff;stroke-width:0.62654907;stroke-miterlimit:4;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+         d="m 25.922286,195.17394 c 1.113802,-2.62393 2.256645,-5.23541 3.429667,-7.83328 L 319.99387,319.99915 z"
+         inkscape:connector-curvature="0" />
+      <path
+         id="use12000"
+         style="color:#000000;fill:#007eff;fill-opacity:1;fill-rule:nonzero;stroke:#007eff;stroke-width:0.62654907;stroke-miterlimit:4;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+         d="m 29.059833,188.02642 c 1.177578,-2.59594 2.383884,-5.17872 3.620027,-7.74714 l 287.31401,139.71985 z"
+         inkscape:connector-curvature="0" />
+      <path
+         id="use12002"
+         style="color:#000000;fill:#0078ff;fill-opacity:1;fill-rule:nonzero;stroke:#0078ff;stroke-width:0.62654907;stroke-miterlimit:4;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+         d="m 32.371043,180.95771 c 1.240651,-2.5664 2.5097,-5.11893 3.808228,-7.65639 L 319.99383,319.99913 z"
+         inkscape:connector-curvature="0" />
+      <path
+         id="use12004"
+         style="color:#000000;fill:#0072ff;fill-opacity:1;fill-rule:nonzero;stroke:#0072ff;stroke-width:0.62654907;stroke-miterlimit:4;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+         d="m 35.854099,173.972 c 1.302984,-2.53532 2.634019,-5.05609 3.994155,-7.56106 L 319.99392,319.99913 z"
+         inkscape:connector-curvature="0" />
+      <path
+         id="use12006"
+         style="color:#000000;fill:#006cff;fill-opacity:1;fill-rule:nonzero;stroke:#006cff;stroke-width:0.62654907;stroke-miterlimit:4;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+         d="m 39.506558,167.07347 c 1.364539,-2.50273 2.756765,-4.99022 4.177697,-7.46122 L 319.99378,319.99912 z"
+         inkscape:connector-curvature="0" />
+      <path
+         id="use12008"
+         style="color:#000000;fill:#0066ff;fill-opacity:1;fill-rule:nonzero;stroke:#0066ff;stroke-width:0.62654907;stroke-miterlimit:4;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+         d="m 43.326752,160.26623 c 1.425279,-2.46864 2.877864,-4.92138 4.358745,-7.35693 L 319.99391,319.9991 z"
+         inkscape:connector-curvature="0" />
+      <path
+         id="use12010"
+         style="color:#000000;fill:#0060ff;fill-opacity:1;fill-rule:nonzero;stroke:#0060ff;stroke-width:0.62654907;stroke-miterlimit:4;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+         d="m 47.311977,153.55436 c 1.485168,-2.43308 2.997246,-4.84959 4.53719,-7.24823 L 319.99391,319.99909 z"
+         inkscape:connector-curvature="0" />
+      <path
+         id="use12012"
+         style="color:#000000;fill:#005aff;fill-opacity:1;fill-rule:nonzero;stroke:#005aff;stroke-width:0.62654907;stroke-miterlimit:4;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+         d="m 51.460007,146.94187 c 1.54417,-2.39607 3.114838,-4.77492 4.712927,-7.13522 L 319.9939,319.99908 z"
+         inkscape:connector-curvature="0" />
+      <path
+         id="use12014"
+         style="color:#000000;fill:#0054ff;fill-opacity:1;fill-rule:nonzero;stroke:#0054ff;stroke-width:0.62654907;stroke-miterlimit:4;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+         d="m 55.768297,140.43269 c 1.602251,-2.35763 3.23057,-4.69739 4.88585,-7.01794 L 319.99384,319.99907 z"
+         inkscape:connector-curvature="0" />
+      <path
+         id="use12016"
+         style="color:#000000;fill:#004eff;fill-opacity:1;fill-rule:nonzero;stroke:#004eff;stroke-width:0.62654907;stroke-miterlimit:4;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+         d="m 60.234392,134.03073 c 1.659375,-2.31777 3.344374,-4.61706 5.055856,-6.89647 L 319.99384,319.99908 z"
+         inkscape:connector-curvature="0" />
+      <path
+         id="use12018"
+         style="color:#000000;fill:#0047ff;fill-opacity:1;fill-rule:nonzero;stroke:#0047ff;stroke-width:0.62654907;stroke-miterlimit:4;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+         d="m 64.855595,127.73979 c 1.715508,-2.27655 3.456181,-4.53398 5.222844,-6.77089 L 319.99386,319.99907 z"
+         inkscape:connector-curvature="0" />
+      <path
+         id="use12020"
+         style="color:#000000;fill:#0041ff;fill-opacity:1;fill-rule:nonzero;stroke:#0041ff;stroke-width:0.62654907;stroke-miterlimit:4;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+         d="m 69.629131,121.56361 c 1.770617,-2.23395 3.565925,-4.44818 5.386714,-6.64127 l 244.978045,205.0767 z"
+         inkscape:connector-curvature="0" />
+      <path
+         id="use12022"
+         style="color:#000000;fill:#003bff;fill-opacity:1;fill-rule:nonzero;stroke:#003bff;stroke-width:0.62654907;stroke-miterlimit:4;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+         d="m 74.552157,115.50592 c 1.824669,-2.19002 3.67354,-4.35973 5.547367,-6.50767 L 319.99394,319.99904 z"
+         inkscape:connector-curvature="0" />
+      <path
+         id="use12024"
+         style="color:#000000;fill:#0035ff;fill-opacity:1;fill-rule:nonzero;stroke:#0035ff;stroke-width:0.62654907;stroke-miterlimit:4;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+         d="m 79.621563,109.57032 c 1.877633,-2.14478 3.778962,-4.26867 5.704709,-6.37019 L 319.99384,319.99904 z"
+         inkscape:connector-curvature="0" />
+      <path
+         id="use12026"
+         style="color:#000000;fill:#002fff;fill-opacity:1;fill-rule:nonzero;stroke:#002fff;stroke-width:0.62654907;stroke-miterlimit:4;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+         d="m 84.83458,103.76035 c 1.929474,-2.09828 3.882128,-4.175074 5.858645,-6.228921 L 319.99384,319.99903 z"
+         inkscape:connector-curvature="0" />
+      <path
+         id="use12028"
+         style="color:#000000;fill:#0029ff;fill-opacity:1;fill-rule:nonzero;stroke:#0029ff;stroke-width:0.62654907;stroke-miterlimit:4;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+         d="m 90.188037,98.079474 c 1.980164,-2.050507 3.982975,-4.078977 6.009083,-6.083921 L 319.99388,319.99902 z"
+         inkscape:connector-curvature="0" />
+      <path
+         id="use12030"
+         style="color:#000000;fill:#0023ff;fill-opacity:1;fill-rule:nonzero;stroke:#0023ff;stroke-width:0.62654907;stroke-miterlimit:4;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+         d="m 95.678697,92.531085 c 2.029671,-2.001515 4.081445,-3.980447 6.155933,-5.93529 l 218.1593,233.403215 z"
+         inkscape:connector-curvature="0" />
+      <path
+         id="use12032"
+         style="color:#000000;fill:#001dff;fill-opacity:1;fill-rule:nonzero;stroke:#001dff;stroke-width:0.62654907;stroke-miterlimit:4;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+         d="m 101.30314,87.118506 c 2.07796,-1.951329 4.17748,-3.879541 6.29911,-5.783117 L 319.99384,319.99901 z"
+         inkscape:connector-curvature="0" />
+      <path
+         id="use12034"
+         style="color:#000000;fill:#0016ff;fill-opacity:1;fill-rule:nonzero;stroke:#0016ff;stroke-width:0.62654907;stroke-miterlimit:4;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+         d="m 107.05831,81.844951 c 2.12502,-1.899978 4.27102,-3.776318 6.43852,-5.627491 l 206.49709,243.78153 z"
+         inkscape:connector-curvature="0" />
+      <path
+         id="use12036"
+         style="color:#000000;fill:#0010ff;fill-opacity:1;fill-rule:nonzero;stroke:#0010ff;stroke-width:0.62654907;stroke-miterlimit:4;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+         d="m 112.94058,76.713602 c 2.1708,-1.847492 4.362,-3.670841 6.57409,-5.468504 L 319.99396,319.999 z"
+         inkscape:connector-curvature="0" />
+      <path
+         id="use12038"
+         style="color:#000000;fill:#000aff;fill-opacity:1;fill-rule:nonzero;stroke:#000aff;stroke-width:0.62654907;stroke-miterlimit:4;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+         d="m 118.94633,71.727482 c 2.2153,-1.793903 4.45039,-3.563173 6.70574,-5.306254 L 319.99388,319.99899 z"
+         inkscape:connector-curvature="0" />
+      <path
+         id="use12040"
+         style="color:#000000;fill:#0004ff;fill-opacity:1;fill-rule:nonzero;stroke:#0004ff;stroke-width:0.62654907;stroke-miterlimit:4;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+         d="m 125.07232,66.889596 c 2.25846,-1.739243 4.53612,-3.453377 6.83338,-5.140834 L 319.994,319.99899 z"
+         inkscape:connector-curvature="0" />
+      <path
+         id="use12042"
+         style="color:#000000;fill:#0200ff;fill-opacity:1;fill-rule:nonzero;stroke:#0200ff;stroke-width:0.62654907;stroke-miterlimit:4;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+         d="m 131.31444,62.202806 c 2.30028,-1.683545 4.61914,-3.341519 6.95694,-4.972346 l 181.7225,262.76852 z"
+         inkscape:connector-curvature="0" />
+      <path
+         id="use12044"
+         style="color:#000000;fill:#0800ff;fill-opacity:1;fill-rule:nonzero;stroke:#0800ff;stroke-width:0.62654907;stroke-miterlimit:4;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+         d="m 137.66931,57.669925 c 2.34074,-1.626842 4.6994,-3.227667 7.07636,-4.80089 l 175.2482,267.129925 z"
+         inkscape:connector-curvature="0" />
+      <path
+         id="use12046"
+         style="color:#000000;fill:#0e00ff;fill-opacity:1;fill-rule:nonzero;stroke:#0e00ff;stroke-width:0.62654907;stroke-miterlimit:4;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+         d="m 144.13311,53.293673 c 2.37978,-1.569167 4.77686,-3.111887 7.19154,-4.626567 L 319.99394,319.99896 z"
+         inkscape:connector-curvature="0" />
+      <path
+         id="use12048"
+         style="color:#000000;fill:#1400ff;fill-opacity:1;fill-rule:nonzero;stroke:#1400ff;stroke-width:0.62654907;stroke-miterlimit:4;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+         d="m 150.70185,49.076647 c 2.41741,-1.510556 4.85146,-2.99425 7.30243,-4.449482 L 319.99394,319.99896 z"
+         inkscape:connector-curvature="0" />
+      <path
+         id="use12050"
+         style="color:#000000;fill:#1b00ff;fill-opacity:1;fill-rule:nonzero;stroke:#1b00ff;stroke-width:0.62654907;stroke-miterlimit:4;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+         d="m 157.37168,45.021363 c 2.4536,-1.451043 4.92318,-2.874826 7.40896,-4.269741 L 319.99399,319.99895 z"
+         inkscape:connector-curvature="0" />
+      <path
+         id="use12052"
+         style="color:#000000;fill:#2100ff;fill-opacity:1;fill-rule:nonzero;stroke:#2100ff;stroke-width:0.62654907;stroke-miterlimit:4;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+         d="m 164.13858,41.130253 c 2.48832,-1.390664 4.99194,-2.753685 7.51107,-4.087451 L 319.99399,319.99895 z"
+         inkscape:connector-curvature="0" />
+      <path
+         id="use12054"
+         style="color:#000000;fill:#2700ff;fill-opacity:1;fill-rule:nonzero;stroke:#2700ff;stroke-width:0.62654907;stroke-miterlimit:4;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+         d="m 170.99852,37.405628 c 2.52155,-1.329454 5.05773,-2.630899 7.6087,-3.90272 L 319.994,319.99894 z"
+         inkscape:connector-curvature="0" />
+      <path
+         id="use12056"
+         style="color:#000000;fill:#2d00ff;fill-opacity:1;fill-rule:nonzero;stroke:#2d00ff;stroke-width:0.62654907;stroke-miterlimit:4;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+         d="m 177.94742,33.849714 c 2.55328,-1.267451 5.1205,-2.506543 7.70177,-3.715659 L 319.994,319.99893 z"
+         inkscape:connector-curvature="0" />
+      <path
+         id="use12058"
+         style="color:#000000;fill:#3300ff;fill-opacity:1;fill-rule:nonzero;stroke:#3300ff;stroke-width:0.62654907;stroke-miterlimit:4;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+         d="m 184.98112,30.464635 c 2.58348,-1.20469 5.18021,-2.38069 7.79026,-3.526379 L 319.99401,319.99892 z"
+         inkscape:connector-curvature="0" />
+      <path
+         id="use12060"
+         style="color:#000000;fill:#3900ff;fill-opacity:1;fill-rule:nonzero;stroke:#3900ff;stroke-width:0.62654907;stroke-miterlimit:4;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+         d="m 192.09545,27.252426 c 2.61214,-1.141211 5.23683,-2.253417 7.87409,-3.334995 l 120.0245,296.081489 z"
+         inkscape:connector-curvature="0" />
+      <path
+         id="use12062"
+         style="color:#000000;fill:#3f00ff;fill-opacity:1;fill-rule:nonzero;stroke:#3f00ff;stroke-width:0.62654907;stroke-miterlimit:4;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+         d="m 199.28609,24.215004 c 2.63925,-1.07705 5.29033,-2.124798 7.95322,-3.14162 L 319.99403,319.99893 z"
+         inkscape:connector-curvature="0" />
+      <path
+         id="use12064"
+         style="color:#000000;fill:#4500ff;fill-opacity:1;fill-rule:nonzero;stroke:#4500ff;stroke-width:0.62654907;stroke-miterlimit:4;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+         d="m 206.54885,21.354143 c 2.66477,-1.012247 5.34065,-1.99491 8.0276,-2.946369 L 319.99406,319.99892 z"
+         inkscape:connector-curvature="0" />
+      <path
+         id="use12066"
+         style="color:#000000;fill:#4b00ff;fill-opacity:1;fill-rule:nonzero;stroke:#4b00ff;stroke-width:0.62654907;stroke-miterlimit:4;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+         d="m 213.8793,18.671602 c 2.68871,-0.946839 5.38781,-1.863832 8.0972,-2.749359 l 98.01756,304.076687 z"
+         inkscape:connector-curvature="0" />
+      <path
+         id="use12068"
+         style="color:#000000;fill:#5200ff;fill-opacity:1;fill-rule:nonzero;stroke:#5200ff;stroke-width:0.62654907;stroke-miterlimit:4;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+         d="m 221.27312,16.168934 c 2.71105,-0.880865 5.43174,-1.73164 8.16195,-2.550707 l 90.55901,306.380683 z"
+         inkscape:connector-curvature="0" />
+      <path
+         id="use12070"
+         style="color:#000000;fill:#5800ff;fill-opacity:1;fill-rule:nonzero;stroke:#5800ff;stroke-width:0.62654907;stroke-miterlimit:4;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+         d="m 228.72586,13.847676 c 2.73176,-0.814366 5.47242,-1.598415 8.22184,-2.350532 l 83.04637,308.501766 z"
+         inkscape:connector-curvature="0" />
+      <path
+         id="use12072"
+         style="color:#000000;fill:#5e00ff;fill-opacity:1;fill-rule:nonzero;stroke:#5e00ff;stroke-width:0.62654907;stroke-miterlimit:4;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+         d="m 236.23311,11.709207 c 2.75084,-0.747381 5.50984,-1.464236 8.27681,-2.148955 l 75.48417,310.438658 z"
+         inkscape:connector-curvature="0" />
+      <path
+         id="use12074"
+         style="color:#000000;fill:#6400ff;fill-opacity:1;fill-rule:nonzero;stroke:#6400ff;stroke-width:0.62654907;stroke-miterlimit:4;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+         d="m 243.79036,9.7547799 c 2.76827,-0.6799492 5.54397,-1.3291821 8.32684,-1.9460941 L 319.9941,319.99891 z"
+         inkscape:connector-curvature="0" />
+      <path
+         id="use12076"
+         style="color:#000000;fill:#6a00ff;fill-opacity:1;fill-rule:nonzero;stroke:#6a00ff;stroke-width:0.62654907;stroke-miterlimit:4;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+         d="m 251.3931,7.985578 c 2.78406,-0.6121116 5.57479,-1.1933348 8.3719,-1.7420715 L 319.9941,319.99891 z"
+         inkscape:connector-curvature="0" />
+      <path
+         id="use12078"
+         style="color:#000000;fill:#7000ff;fill-opacity:1;fill-rule:nonzero;stroke:#7000ff;stroke-width:0.62654907;stroke-miterlimit:4;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+         d="m 259.03679,6.4026542 c 2.79819,-0.5439087 5.60228,-1.0567753 8.41197,-1.537009 L 319.99411,319.99891 z"
+         inkscape:connector-curvature="0" />
+      <path
+         id="use12080"
+         style="color:#000000;fill:#7600ff;fill-opacity:1;fill-rule:nonzero;stroke:#7600ff;stroke-width:0.62654907;stroke-miterlimit:4;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+         d="M 266.71689,5.0069287 C 269.52752,4.5315478 272.34332,4.0873441 275.1639,3.6759 l 44.83022,316.32298 z"
+         inkscape:connector-curvature="0" />
+      <path
+         id="use12082"
+         style="color:#000000;fill:#7c00ff;fill-opacity:1;fill-rule:nonzero;stroke:#7c00ff;stroke-width:0.62654907;stroke-miterlimit:4;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+         d="m 274.4288,3.7992943 c 2.82142,-0.4065694 5.64722,-0.7818451 8.47701,-1.1242537 L 319.99414,319.99889 z"
+         inkscape:connector-curvature="0" />
+      <path
+         id="use12084"
+         style="color:#000000;fill:#8300ff;fill-opacity:1;fill-rule:nonzero;stroke:#8300ff;stroke-width:0.62654907;stroke-miterlimit:4;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+         d="m 282.1679,2.7804429 c 2.8305,-0.3375152 5.66463,-0.6436387 8.50194,-0.9168077 L 319.99414,319.9989 z"
+         inkscape:connector-curvature="0" />
+      <path
+         id="use12086"
+         style="color:#000000;fill:#8900ff;fill-opacity:1;fill-rule:nonzero;stroke:#8900ff;stroke-width:0.62654907;stroke-miterlimit:4;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+         d="m 289.92959,1.9509716 c 2.8379,-0.2682595 5.67867,-0.5050482 8.5218,-0.7088143 L 319.99415,319.99891 z"
+         inkscape:connector-curvature="0" />
+      <path
+         id="use12088"
+         style="color:#000000;fill:#8f00ff;fill-opacity:1;fill-rule:nonzero;stroke:#8f00ff;stroke-width:0.62654907;stroke-miterlimit:4;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+         d="m 297.70923,1.311355 c 2.84361,-0.1988436 5.68931,-0.36615605 8.53658,-0.50039768 L 319.99417,319.99889 z"
+         inkscape:connector-curvature="0" />
+      <path
+         id="use12090"
+         style="color:#000000;fill:#9500ff;fill-opacity:1;fill-rule:nonzero;stroke:#9500ff;stroke-width:0.62654907;stroke-miterlimit:4;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+         d="m 305.50217,0.86203133 c 2.84762,-0.12930902 5.69656,-0.22704532 8.54626,-0.29168233 l 5.94575,319.428551 z"
+         inkscape:connector-curvature="0" />
+      <path
+         id="use12092"
+         style="color:#000000;fill:#9b00ff;fill-opacity:1;fill-rule:nonzero;stroke:#9b00ff;stroke-width:0.62654907;stroke-miterlimit:4;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+         d="m 313.30376,0.6032218 c 2.84993,-0.0596972 5.70041,-0.087799 8.55084,-0.0827928 L 319.99419,319.9989 z"
+         inkscape:connector-curvature="0" />
+      <path
+         id="use12094"
+         style="color:#000000;fill:#a100ff;fill-opacity:1;fill-rule:nonzero;stroke:#a100ff;stroke-width:0.62654907;stroke-miterlimit:4;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+         d="m 321.10934,0.53509455 c 2.85054,0.00995 5.70085,0.0514997 8.55031,0.12614611 L 319.99419,319.99889 z"
+         inkscape:connector-curvature="0" />
+      <path
+         id="use12096"
+         style="color:#000000;fill:#a700ff;fill-opacity:1;fill-rule:nonzero;stroke:#a700ff;stroke-width:0.62654907;stroke-miterlimit:4;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+         d="m 328.91426,0.65770349 c 2.84945,0.0795918 5.6979,0.19076764 8.54468,0.33500975 L 319.9942,319.99889 z"
+         inkscape:connector-curvature="0" />
+      <path
+         id="use12098"
+         style="color:#000000;fill:#ad00ff;fill-opacity:1;fill-rule:nonzero;stroke:#ad00ff;stroke-width:0.62654907;stroke-miterlimit:4;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+         d="m 336.71388,0.97096278 c 2.84665,0.14918572 5.69153,0.32992172 8.53393,0.54367342 L 319.99423,319.99888 z"
+         inkscape:connector-curvature="0" />
+      <path
+         id="use12100"
+         style="color:#000000;fill:#b400ff;fill-opacity:1;fill-rule:nonzero;stroke:#b400ff;stroke-width:0.62654907;stroke-miterlimit:4;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+         d="m 344.50348,1.4747031 c 2.84215,0.2186907 5.68177,0.4688788 8.5181,0.7520124 L 319.99422,319.9989 z"
+         inkscape:connector-curvature="0" />
+      <path
+         id="use12102"
+         style="color:#000000;fill:#ba00ff;fill-opacity:1;fill-rule:nonzero;stroke:#ba00ff;stroke-width:0.62654907;stroke-miterlimit:4;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+         d="m 352.27847,2.1685939 c 2.83597,0.288065 5.66862,0.6075559 8.49719,0.9599024 L 319.99425,319.99889 z"
+         inkscape:connector-curvature="0" />
+      <path
+         id="use12104"
+         style="color:#000000;fill:#c000ff;fill-opacity:1;fill-rule:nonzero;stroke:#c000ff;stroke-width:0.62654907;stroke-miterlimit:4;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+         d="m 360.03417,3.0522309 c 2.82808,0.3572674 5.65208,0.7458703 8.4712,1.1672194 L 319.99425,319.99889 z"
+         inkscape:connector-curvature="0" />
+      <path
+         id="use12106"
+         style="color:#000000;fill:#c600ff;fill-opacity:1;fill-rule:nonzero;stroke:#c600ff;stroke-width:0.62654907;stroke-miterlimit:4;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+         d="m 367.76596,4.1251055 c 2.81851,0.4262564 5.63217,0.8837395 8.44015,1.3738395 L 319.99425,319.99889 z"
+         inkscape:connector-curvature="0" />
+      <path
+         id="use12108"
+         style="color:#000000;fill:#cc00ff;fill-opacity:1;fill-rule:nonzero;stroke:#cc00ff;stroke-width:0.62654907;stroke-miterlimit:4;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+         d="m 375.46925,5.3865747 c 2.80725,0.4949911 5.6089,1.0210811 8.40407,1.5796395 L 319.99426,319.99891 z"
+         inkscape:connector-curvature="0" />
+      <path
+         id="use12110"
+         style="color:#000000;fill:#d200ff;fill-opacity:1;fill-rule:nonzero;stroke:#d200ff;stroke-width:0.62654907;stroke-miterlimit:4;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+         d="m 383.13942,6.835842 c 2.79432,0.5634301 5.58228,1.1578129 8.36297,1.7844963 L 319.99428,319.9989 z"
+         inkscape:connector-curvature="0" />
+      <path
+         id="use12112"
+         style="color:#000000;fill:#d800ff;fill-opacity:1;fill-rule:nonzero;stroke:#d800ff;stroke-width:0.62654907;stroke-miterlimit:4;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+         d="m 390.77188,8.4721082 c 2.77972,0.6315329 5.55233,1.2938537 8.31687,1.9882878 L 319.99429,319.99891 z"
+         inkscape:connector-curvature="0" />
+      <path
+         id="use12114"
+         style="color:#000000;fill:#de00ff;fill-opacity:1;fill-rule:nonzero;stroke:#de00ff;stroke-width:0.62654907;stroke-miterlimit:4;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+         d="m 398.36209,10.294334 c 2.76346,0.699258 5.51905,1.429122 8.2658,2.190892 l -86.6336,307.513684 z"
+         inkscape:connector-curvature="0" />
+      <path
+         id="use12116"
+         style="color:#000000;fill:#e400ff;fill-opacity:1;fill-rule:nonzero;stroke:#e400ff;stroke-width:0.62654907;stroke-miterlimit:4;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+         d="m 405.90551,12.301451 c 2.74555,0.766566 5.48248,1.563536 8.20981,2.392188 L 319.9943,319.99889 z"
+         inkscape:connector-curvature="0" />
+      <path
+         id="use12118"
+         style="color:#000000;fill:#eb00ff;fill-opacity:1;fill-rule:nonzero;stroke:#eb00ff;stroke-width:0.62654907;stroke-miterlimit:4;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+         d="m 413.39763,14.492291 c 2.72601,0.833418 5.44265,1.697019 8.14892,2.592057 L 319.99431,319.9989 z"
+         inkscape:connector-curvature="0" />
+      <path
+         id="use12120"
+         style="color:#000000;fill:#f100ff;fill-opacity:1;fill-rule:nonzero;stroke:#f100ff;stroke-width:0.62654907;stroke-miterlimit:4;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+         d="m 420.83401,16.865538 c 2.70482,0.89977 5.39956,1.829486 8.08315,2.790377 L 319.99433,319.99891 z"
+         inkscape:connector-curvature="0" />
+      <path
+         id="use12122"
+         style="color:#000000;fill:#f700ff;fill-opacity:1;fill-rule:nonzero;stroke:#f700ff;stroke-width:0.62654907;stroke-miterlimit:4;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+         d="m 428.21016,19.419742 c 2.68204,0.965586 5.35326,1.960863 8.01257,2.987033 L 319.99433,319.99891 z"
+         inkscape:connector-curvature="0" />
+      <path
+         id="use12124"
+         style="color:#000000;fill:#fd00ff;fill-opacity:1;fill-rule:nonzero;stroke:#fd00ff;stroke-width:0.62654907;stroke-miterlimit:4;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+         d="m 435.52172,22.153406 c 2.65764,1.030825 5.30374,2.091068 7.93719,3.181904 L 319.99434,319.99892 z"
+         inkscape:connector-curvature="0" />
+      <path
+         id="use12126"
+         style="color:#000000;fill:#ff00fb;fill-opacity:1;fill-rule:nonzero;stroke:#ff00fb;stroke-width:0.62654907;stroke-miterlimit:4;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+         d="m 442.7643,25.064879 c 2.63166,1.095449 5.25107,2.220026 7.85708,3.374876 L 319.99435,319.99891 z"
+         inkscape:connector-curvature="0" />
+      <path
+         id="use12128"
+         style="color:#000000;fill:#ff00f5;fill-opacity:1;fill-rule:nonzero;stroke:#ff00f5;stroke-width:0.62654907;stroke-miterlimit:4;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+         d="m 449.93358,28.152447 c 2.60412,1.159419 5.19527,2.347658 7.77228,3.565833 L 319.99435,319.99892 z"
+         inkscape:connector-curvature="0" />
+      <path
+         id="use12130"
+         style="color:#000000;fill:#ff00ef;fill-opacity:1;fill-rule:nonzero;stroke:#ff00ef;stroke-width:0.62654907;stroke-miterlimit:4;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+         d="m 457.0253,31.414243 c 2.57501,1.222697 5.13636,2.473887 7.68284,3.754661 L 319.99437,319.99892 z"
+         inkscape:connector-curvature="0" />
+      <path
+         id="use12132"
+         style="color:#000000;fill:#ff00e9;fill-opacity:1;fill-rule:nonzero;stroke:#ff00e9;stroke-width:0.62654907;stroke-miterlimit:4;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+         d="m 464.03519,34.848342 c 2.54437,1.285244 5.07438,2.59864 7.58881,3.941247 L 319.99437,319.99893 z"
+         inkscape:connector-curvature="0" />
+      <path
+         id="use12134"
+         style="color:#000000;fill:#ff00e2;fill-opacity:1;fill-rule:nonzero;stroke:#ff00e2;stroke-width:0.62654907;stroke-miterlimit:4;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+         d="m 470.9591,38.452673 c 2.5122,1.347025 5.00937,2.721842 7.49025,4.12548 L 319.99438,319.99893 z"
+         inkscape:connector-curvature="0" />
+      <path
+         id="use12136"
+         style="color:#000000;fill:#ff00dc;fill-opacity:1;fill-rule:nonzero;stroke:#ff00dc;stroke-width:0.62654907;stroke-miterlimit:4;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+         d="m 477.79288,42.225095 c 2.47855,1.408002 4.94138,2.843419 7.38722,4.307251 L 319.9944,319.99894 z"
+         inkscape:connector-curvature="0" />
+      <path
+         id="use12138"
+         style="color:#000000;fill:#ff00d6;fill-opacity:1;fill-rule:nonzero;stroke:#ff00d6;stroke-width:0.62654907;stroke-miterlimit:4;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+         d="m 484.53244,46.163375 c 2.44341,1.468137 4.87043,2.963298 7.27978,4.48645 L 319.9944,319.99896 z"
+         inkscape:connector-curvature="0" />
+      <path
+         id="use12140"
+         style="color:#000000;fill:#ff00d0;fill-opacity:1;fill-rule:nonzero;stroke:#ff00d0;stroke-width:0.62654907;stroke-miterlimit:4;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+         d="m 491.17376,50.265113 c 2.40681,1.527396 4.79658,3.081408 7.16799,4.66297 L 319.9944,319.99896 z"
+         inkscape:connector-curvature="0" />
+      <path
+         id="use12142"
+         style="color:#000000;fill:#ff00ca;fill-opacity:1;fill-rule:nonzero;stroke:#ff00ca;stroke-width:0.62654907;stroke-miterlimit:4;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+         d="m 497.71292,54.527897 c 2.36877,1.585743 4.71986,3.197678 7.05192,4.836707 L 319.99443,319.99897 z"
+         inkscape:connector-curvature="0" />
+      <path
+         id="use12144"
+         style="color:#000000;fill:#ff00c4;fill-opacity:1;fill-rule:nonzero;stroke:#ff00c4;stroke-width:0.62654907;stroke-miterlimit:4;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+         d="m 504.14596,58.949179 c 2.32932,1.643144 4.64033,3.312039 6.93165,5.007556 L 319.99444,319.99898 z"
+         inkscape:connector-curvature="0" />
+      <path
+         id="use12146"
+         style="color:#000000;fill:#ff00be;fill-opacity:1;fill-rule:nonzero;stroke:#ff00be;stroke-width:0.62654907;stroke-miterlimit:4;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+         d="m 510.46903,63.526299 c 2.28848,1.699563 4.55802,3.424423 6.80723,5.175415 L 319.99443,319.99898 z"
+         inkscape:connector-curvature="0" />
+      <path
+         id="use12148"
+         style="color:#000000;fill:#ff00b8;fill-opacity:1;fill-rule:nonzero;stroke:#ff00b8;stroke-width:0.62654907;stroke-miterlimit:4;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+         d="m 516.67842,68.256549 c 2.24627,1.754968 4.47299,3.534763 6.67875,5.340185 L 319.99445,319.99898 z"
+         inkscape:connector-curvature="0" />
+      <path
+         id="use12150"
+         style="color:#000000;fill:#ff00b1;fill-opacity:1;fill-rule:nonzero;stroke:#ff00b1;stroke-width:0.62654907;stroke-miterlimit:4;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+         d="m 522.77036,73.137093 c 2.20272,1.809324 4.38529,3.642991 6.54628,5.501766 L 319.99445,319.99899 z"
+         inkscape:connector-curvature="0" />
+      <path
+         id="use12152"
+         style="color:#000000;fill:#ff00ab;fill-opacity:1;fill-rule:nonzero;stroke:#ff00ab;stroke-width:0.62654907;stroke-miterlimit:4;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+         d="m 528.74124,78.165009 c 2.15786,1.862601 4.29498,3.749045 6.40991,5.660062 L 319.99445,319.999 z"
+         inkscape:connector-curvature="0" />
+      <path
+         id="use12154"
+         style="color:#000000;fill:#ff00a5;fill-opacity:1;fill-rule:nonzero;stroke:#ff00a5;stroke-width:0.62654907;stroke-miterlimit:4;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+         d="m 534.58752,83.337298 c 2.1117,1.914767 4.20209,3.852862 6.2697,5.81498 L 319.99447,319.99899 z"
+         inkscape:connector-curvature="0" />
+      <path
+         id="use12156"
+         style="color:#000000;fill:#ff009f;fill-opacity:1;fill-rule:nonzero;stroke:#ff009f;stroke-width:0.62654907;stroke-miterlimit:4;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+         d="m 540.30565,88.650906 c 2.0643,1.965788 4.10671,3.954377 6.12576,5.966426 L 319.99447,319.999 z"
+         inkscape:connector-curvature="0" />
+      <path
+         id="use12158"
+         style="color:#000000;fill:#ff0099;fill-opacity:1;fill-rule:nonzero;stroke:#ff0099;stroke-width:0.62654907;stroke-miterlimit:4;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+         d="m 545.89228,94.102623 c 2.01565,2.015636 4.00887,4.053532 5.97816,6.114307 L 319.99449,319.99901 z"
+         inkscape:connector-curvature="0" />
+      <path
+         id="use12160"
+         style="color:#000000;fill:#ff0093;fill-opacity:1;fill-rule:nonzero;stroke:#ff0093;stroke-width:0.62654907;stroke-miterlimit:4;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+         d="m 551.34402,99.689207 c 1.9658,2.064283 3.90864,4.150263 5.82699,6.258543 L 319.99449,319.99902 z"
+         inkscape:connector-curvature="0" />
+      <path
+         id="use12162"
+         style="color:#000000;fill:#ff008d;fill-opacity:1;fill-rule:nonzero;stroke:#ff008d;stroke-width:0.62654907;stroke-miterlimit:4;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+         d="m 556.65766,105.40731 c 1.91478,2.11169 3.80607,4.24452 5.67234,6.39904 L 319.9945,319.99902 z"
+         inkscape:connector-curvature="0" />
+      <path
+         id="use12164"
+         style="color:#000000;fill:#ff0087;fill-opacity:1;fill-rule:nonzero;stroke:#ff0087;stroke-width:0.62654907;stroke-miterlimit:4;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+         d="m 561.83,111.25354 c 1.86261,2.15784 3.70122,4.33625 5.5143,6.53572 L 319.99451,319.99904 z"
+         inkscape:connector-curvature="0" />
+      <path
+         id="use12166"
+         style="color:#000000;fill:#ff0081;fill-opacity:1;fill-rule:nonzero;stroke:#ff0081;stroke-width:0.62654907;stroke-miterlimit:4;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+         d="m 566.85793,117.22441 c 1.80933,2.20271 3.59418,4.42538 5.35297,6.66849 L 319.9945,319.99906 z"
+         inkscape:connector-curvature="0" />
+      <path
+         id="use12168"
+         style="color:#000000;fill:#ff007a;fill-opacity:1;fill-rule:nonzero;stroke:#ff007a;stroke-width:0.62654907;stroke-miterlimit:4;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+         d="m 571.73852,123.31629 c 1.75497,2.24625 3.48498,4.51187 5.18844,6.79728 L 319.99452,319.99904 z"
+         inkscape:connector-curvature="0" />
+      <path
+         id="use12170"
+         style="color:#000000;fill:#ff0074;fill-opacity:1;fill-rule:nonzero;stroke:#ff0074;stroke-width:0.62654907;stroke-miterlimit:4;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+         d="m 576.46879,129.52564 c 1.69957,2.28847 3.37371,4.59567 5.02083,6.92202 l -261.4951,183.5514 z"
+         inkscape:connector-curvature="0" />
+      <path
+         id="use12172"
+         style="color:#000000;fill:#ff006e;fill-opacity:1;fill-rule:nonzero;stroke:#ff006e;stroke-width:0.62654907;stroke-miterlimit:4;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+         d="m 581.04594,135.84868 c 1.64316,2.32931 3.26042,4.67673 4.85021,7.04263 L 319.99452,319.99906 z"
+         inkscape:connector-curvature="0" />
+      <path
+         id="use12174"
+         style="color:#000000;fill:#ff0068;fill-opacity:1;fill-rule:nonzero;stroke:#ff0068;stroke-width:0.62654907;stroke-miterlimit:4;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+         d="m 585.46726,142.28167 c 1.58575,2.36876 3.14518,4.75499 4.67669,7.15902 L 319.99454,319.99906 z"
+         inkscape:connector-curvature="0" />
+      <path
+         id="use12176"
+         style="color:#000000;fill:#ff0062;fill-opacity:1;fill-rule:nonzero;stroke:#ff0062;stroke-width:0.62654907;stroke-miterlimit:4;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+         d="m 589.73007,148.82078 c 1.5274,2.40679 3.02806,4.83041 4.50038,7.27115 l -274.2359,163.90715 z"
+         inkscape:connector-curvature="0" />
+      <path
+         id="use12178"
+         style="color:#000000;fill:#ff005c;fill-opacity:1;fill-rule:nonzero;stroke:#ff005c;stroke-width:0.62654907;stroke-miterlimit:4;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+         d="m 593.83183,155.46207 c 1.46815,2.44339 2.90914,4.90295 4.32139,7.37893 L 319.99455,319.99909 z"
+         inkscape:connector-curvature="0" />
+      <path
+         id="use12180"
+         style="color:#000000;fill:#ff0056;fill-opacity:1;fill-rule:nonzero;stroke:#ff0056;stroke-width:0.62654907;stroke-miterlimit:4;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+         d="m 597.77012,162.20159 c 1.40801,2.47853 2.78848,4.97256 4.13981,7.4823 l -281.91538,150.3152 z"
+         inkscape:connector-curvature="0" />
+      <path
+         id="use12182"
+         style="color:#000000;fill:#ff0050;fill-opacity:1;fill-rule:nonzero;stroke:#ff0050;stroke-width:0.62654907;stroke-miterlimit:4;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+         d="m 601.54256,169.03533 c 1.34703,2.51219 2.66616,5.03921 3.95576,7.58122 L 319.99455,319.99911 z"
+         inkscape:connector-curvature="0" />
+      <path
+         id="use12184"
+         style="color:#000000;fill:#ff0049;fill-opacity:1;fill-rule:nonzero;stroke:#ff0049;stroke-width:0.62654907;stroke-miterlimit:4;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+         d="m 605.14692,175.9592 c 1.28525,2.54435 2.54225,5.10284 3.76936,7.6756 L 319.99456,319.99912 z"
+         inkscape:connector-curvature="0" />
+      <path
+         id="use12186"
+         style="color:#000000;fill:#ff0043;fill-opacity:1;fill-rule:nonzero;stroke:#ff0043;stroke-width:0.62654907;stroke-miterlimit:4;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+         d="m 608.58103,182.96905 c 1.22271,2.575 2.41681,5.16344 3.5807,7.7654 L 319.99457,319.99913 z"
+         inkscape:connector-curvature="0" />
+      <path
+         id="use12188"
+         style="color:#000000;fill:#ff003d;fill-opacity:1;fill-rule:nonzero;stroke:#ff003d;stroke-width:0.62654907;stroke-miterlimit:4;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+         d="m 611.84285,190.06072 c 1.15943,2.6041 2.28994,5.22094 3.38991,7.85057 L 319.99457,319.99914 z"
+         inkscape:connector-curvature="0" />
+      <path
+         id="use12190"
+         style="color:#000000;fill:#ff0037;fill-opacity:1;fill-rule:nonzero;stroke:#ff0037;stroke-width:0.62654907;stroke-miterlimit:4;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+         d="m 614.93044,197.22995 c 1.09546,2.63164 2.1617,5.27532 3.19709,7.93104 L 319.99458,319.99913 z"
+         inkscape:connector-curvature="0" />
+      <path
+         id="use12192"
+         style="color:#000000;fill:#ff0031;fill-opacity:1;fill-rule:nonzero;stroke:#ff0031;stroke-width:0.62654907;stroke-miterlimit:4;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+         d="m 617.84194,204.47249 c 1.03083,2.65762 2.03216,5.32656 3.00236,8.00679 L 319.99458,319.99915 z"
+         inkscape:connector-curvature="0" />
+      <path
+         id="use12194"
+         style="color:#000000;fill:#ff002b;fill-opacity:1;fill-rule:nonzero;stroke:#ff002b;stroke-width:0.62654907;stroke-miterlimit:4;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+         d="m 620.57562,211.784 c 0.96559,2.68202 1.90141,5.37463 2.80584,8.07775 L 319.99459,319.99916 z"
+         inkscape:connector-curvature="0" />
+      <path
+         id="use12196"
+         style="color:#000000;fill:#ff0025;fill-opacity:1;fill-rule:nonzero;stroke:#ff0025;stroke-width:0.62654907;stroke-miterlimit:4;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+         d="m 623.12984,219.16011 c 0.89978,2.70481 1.76953,5.41948 2.60764,8.1439 l -305.74289,92.69515 z"
+         inkscape:connector-curvature="0" />
+      <path
+         id="use12198"
+         style="color:#000000;fill:#ff001f;fill-opacity:1;fill-rule:nonzero;stroke:#ff001f;stroke-width:0.62654907;stroke-miterlimit:4;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+         d="m 625.5031,226.59644 c 0.83342,2.72599 1.63659,5.4611 2.40789,8.20518 L 319.9946,319.99918 z"
+         inkscape:connector-curvature="0" />
+      <path
+         id="use12200"
+         style="color:#000000;fill:#ff0018;fill-opacity:1;fill-rule:nonzero;stroke:#ff0018;stroke-width:0.62654907;stroke-miterlimit:4;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+         d="m 627.69395,234.08853 c 0.76657,2.74553 1.50267,5.49945 2.2067,8.26155 L 319.9946,319.9992 z"
+         inkscape:connector-curvature="0" />
+      <path
+         id="use12202"
+         style="color:#000000;fill:#ff0012;fill-opacity:1;fill-rule:nonzero;stroke:#ff0012;stroke-width:0.62654907;stroke-miterlimit:4;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+         d="m 629.70109,241.63188 c 0.69926,2.76344 1.36786,5.53452 2.00419,8.313 L 319.9946,319.99919 z"
+         inkscape:connector-curvature="0" />
+      <path
+         id="use12204"
+         style="color:#000000;fill:#ff000c;fill-opacity:1;fill-rule:nonzero;stroke:#ff000c;stroke-width:0.62654907;stroke-miterlimit:4;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+         d="m 631.52333,249.22204 c 0.63154,2.77971 1.23223,5.56629 1.80049,8.35949 L 319.99459,319.9992 z"
+         inkscape:connector-curvature="0" />
+      <path
+         id="use12206"
+         style="color:#000000;fill:#ff0006;fill-opacity:1;fill-rule:nonzero;stroke:#ff0006;stroke-width:0.62654907;stroke-miterlimit:4;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+         d="m 633.15959,256.85447 c 0.56344,2.7943 1.09587,5.59473 1.59571,8.40098 l -314.7607,54.74376 z"
+         inkscape:connector-curvature="0" />
+      <path
+         id="use12208"
+         style="color:#000000;fill:#ff0000;fill-opacity:1;fill-rule:nonzero;stroke:#ff0000;stroke-width:0.62654907;stroke-miterlimit:4;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+         d="m 634.60889,264.52458 c 0.49499,2.80723 0.95884,5.61984 1.38997,8.43746 L 319.9946,319.99922 z"
+         inkscape:connector-curvature="0" />
+      <path
+         id="use12210"
+         style="color:#000000;fill:#ff0600;fill-opacity:1;fill-rule:nonzero;stroke:#ff0600;stroke-width:0.62654907;stroke-miterlimit:4;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+         d="m 635.87035,272.22783 c 0.42626,2.81849 0.82126,5.64158 1.18341,8.4689 L 319.9946,319.99924 z"
+         inkscape:connector-curvature="0" />
+      <path
+         id="use12212"
+         style="color:#000000;fill:#ff0c00;fill-opacity:1;fill-rule:nonzero;stroke:#ff0c00;stroke-width:0.62654907;stroke-miterlimit:4;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+         d="m 636.94323,279.95958 c 0.35727,2.82806 0.68317,5.65997 0.97614,8.49529 l -317.92476,31.54438 z"
+         inkscape:connector-curvature="0" />
+      <path
+         id="use12214"
+         style="color:#000000;fill:#ff1200;fill-opacity:1;fill-rule:nonzero;stroke:#ff1200;stroke-width:0.62654907;stroke-miterlimit:4;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+         d="m 637.82688,287.71523 c 0.28807,2.83595 0.54469,5.67497 0.7683,8.5166 l -318.60057,23.76743 z"
+         inkscape:connector-curvature="0" />
+      <path
+         id="use12216"
+         style="color:#000000;fill:#ff1800;fill-opacity:1;fill-rule:nonzero;stroke:#ff1800;stroke-width:0.62654907;stroke-miterlimit:4;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+         d="m 638.52078,295.49017 c 0.21869,2.84214 0.40586,5.68658 0.55998,8.53283 l -319.08615,15.97627 z"
+         inkscape:connector-curvature="0" />
+      <path
+         id="use12218"
+         style="color:#000000;fill:#ff1f00;fill-opacity:1;fill-rule:nonzero;stroke:#ff1f00;stroke-width:0.62654907;stroke-miterlimit:4;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+         d="m 639.0245,303.27973 c 0.14919,2.84663 0.26681,5.6948 0.35134,8.54396 l -319.38124,8.17558 z"
+         inkscape:connector-curvature="0" />
+      <path
+         id="use12220"
+         style="color:#000000;fill:#ff2500;fill-opacity:1;fill-rule:nonzero;stroke:#ff2500;stroke-width:0.62654907;stroke-miterlimit:4;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+         d="m 639.33778,311.07928 c 0.0796,2.84943 0.12759,5.69962 0.14249,8.54999 l -319.48566,0.37002 z"
+         inkscape:connector-curvature="0" />
+    </g>
+  </g>
+  <g
+     inkscape:groupmode="layer"
+     id="layer2"
+     inkscape:label="circles"
+     style="display:inline">
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:none;stroke:#000000;stroke-width:5.10390282;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:5.19999981;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="path3764"
+       sodipodi:cx="393.9595"
+       sodipodi:cy="369.27911"
+       sodipodi:rx="48.48732"
+       sodipodi:ry="48.48732"
+       d="m 442.44682,369.27911 a 48.48732,48.48732 0 1 1 -96.97464,0 48.48732,48.48732 0 1 1 96.97464,0 z"
+       transform="matrix(0.1959285,0,0,0.19592849,242.81211,247.6477)" />
+    <path
+       transform="matrix(-0.17213458,-0.0935824,0.0935824,-0.17213457,353.25603,420.43338)"
+       d="m 927.08456,369.27911 a 533.12506,533.12506 0 1 1 -1066.25012,0 533.12506,533.12506 0 1 1 1066.25012,0 z"
+       sodipodi:ry="533.12506"
+       sodipodi:rx="533.12506"
+       sodipodi:cy="369.27911"
+       sodipodi:cx="393.9595"
+       id="path3766"
+       style="color:#000000;fill:none;stroke:#000000;stroke-width:5.10390282;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:5.19999981;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="arc" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:none;stroke:#000000;stroke-width:5.10390282;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:5.19999981;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="path3768"
+       sodipodi:cx="393.9595"
+       sodipodi:cy="369.27911"
+       sodipodi:rx="1094.1447"
+       sodipodi:ry="1094.1447"
+       d="m 1488.1042,369.27911 a 1094.1447,1094.1447 0 1 1 -2188.28935,0 1094.1447,1094.1447 0 1 1 2188.28935,0 z"
+       transform="matrix(-0.18943516,0.05002296,0.05002296,0.18943515,376.15735,230.33854)" />
+    <text
+       xml:space="preserve"
+       style="font-size:144px;font-style:normal;font-variant:normal;font-weight:900;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0.07px;word-spacing:-3.93000007px;writing-mode:lr-tb;text-anchor:start;fill:#fcaf3e;fill-opacity:1;stroke:none;font-family:Lato;-inkscape-font-specification:Lato Heavy"
+       id="text3776"
+       sodipodi:linespacing="125%"><textPath
+         xlink:href="#path3766"
+         id="textPath3787"
+         style="letter-spacing:-17.11000061px"><tspan
+           style="fill:#ff0000;fill-opacity:1"
+           id="tspan14051">J</tspan><tspan
+           style="fill:#00ff00;fill-opacity:1"
+           id="tspan14111">M</tspan><tspan
+           style="fill:#0000ff;fill-opacity:1"
+           id="tspan14149">P</tspan></textPath></text>
+    <text
+       xml:space="preserve"
+       style="font-size:144px;font-style:normal;font-variant:normal;font-weight:900;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0.07px;word-spacing:-15.52000332px;writing-mode:lr-tb;text-anchor:start;fill:#729fcf;fill-opacity:1;stroke:none;font-family:Lato;-inkscape-font-specification:Lato Heavy"
+       id="text3790"
+       sodipodi:linespacing="125%"><textPath
+         xlink:href="#path3768"
+         id="textPath3790"><tspan
+           id="tspan3792"
+           style="letter-spacing:33.31999588px;word-spacing:-15.52000332px;fill:#ffffff;fill-opacity:1"
+           dx="0 0 0.07">  rope</tspan></textPath></text>
+  </g>
+</svg>
diff --git a/src_images/NOTES.txt b/src_images/NOTES.txt
new file mode 100644 (file)
index 0000000..0c330f0
--- /dev/null
@@ -0,0 +1,2 @@
+The logos should be centered according to the center of the smallest enclosing
+circle in order to use as many LEDs as possible.
diff --git a/src_images/Openhardware.svg b/src_images/Openhardware.svg
new file mode 100644 (file)
index 0000000..447839b
--- /dev/null
@@ -0,0 +1,90 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Generator: Adobe Illustrator 13.0.2, SVG Export Plug-In . SVG Version: 6.00 Build 14948)  -->
+
+<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"
+   version="1.2"
+   id="Layer_1"
+   x="0px"
+   y="0px"
+   viewBox="0 0 135.12237 135.12237"
+   xml:space="preserve"
+   inkscape:version="0.48.4 r9939"
+   width="100%"
+   height="100%"
+   sodipodi:docname="oshw-logo.svg"
+   inkscape:export-filename="/home/ao2/WIP/twinklerope/PoPiPaint/src_images/oshw-logo.png"
+   inkscape:export-xdpi="426.28024"
+   inkscape:export-ydpi="426.28024"><metadata
+     id="metadata43"><rdf:RDF><cc:Work
+         rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type
+           rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs
+     id="defs41" /><sodipodi:namedview
+     pagecolor="#ffffff"
+     bordercolor="#666666"
+     borderopacity="1"
+     objecttolerance="10"
+     gridtolerance="10"
+     guidetolerance="10"
+     inkscape:pageopacity="0"
+     inkscape:pageshadow="2"
+     inkscape:window-width="1152"
+     inkscape:window-height="756"
+     id="namedview39"
+     showgrid="false"
+     fit-margin-top="0"
+     fit-margin-left="0"
+     fit-margin-right="0"
+     fit-margin-bottom="0"
+     showguides="true"
+     inkscape:guide-bbox="true"
+     inkscape:zoom="1.8440081"
+     inkscape:cx="-41.188649"
+     inkscape:cy="85.042573"
+     inkscape:window-x="0"
+     inkscape:window-y="29"
+     inkscape:window-maximized="1"
+     inkscape:current-layer="Layer_1"><sodipodi:guide
+       orientation="1,0"
+       position="67.61,67.61"
+       id="guide3880" /><sodipodi:guide
+       orientation="0,1"
+       position="67.61,67.61"
+       id="guide3882" /></sodipodi:namedview><path
+     d="m 133.73057,58.194923 -16.439,-3.057 c -0.4,-0.075 -0.838,-0.451 -0.973,-0.837 l -5.039,-11.756 c -0.188,-0.363 -0.152,-0.933 0.08,-1.271 l 9.578,-13.96 c 0.229,-0.336 0.184,-0.847 -0.105,-1.136 l -11.963,-11.962997 c -0.289,-0.289 -0.799,-0.336 -1.135,-0.105 l -14.204996,9.747997 c -0.336,0.231 -0.912,0.272 -1.277,0.092 l -11.396,-4.664997 c -0.387,-0.128 -0.764,-0.561 -0.84,-0.962 l -3.165,-17.0029995 c -0.074,-0.40100003 -0.469,-0.72900003 -0.877,-0.72900003 h -16.92 c -0.407,0 -0.802,0.328 -0.876,0.72900003 l -3.164,17.0029995 c -0.076,0.401 -0.452,0.834 -0.84,0.962 l -11.397,4.664997 c -0.366,0.18 -0.942,0.139 -1.277,-0.092 l -14.204,-9.747997 c -0.337,-0.231 -0.848,-0.184 -1.136,0.105 l -11.964,11.962997 c -0.288,0.289 -0.336,0.8 -0.105,1.136 l 9.579,13.96 c 0.23,0.338 0.266,0.908 0.079,1.271 l -5.04,11.756 c -0.134,0.386 -0.571,0.762 -0.973,0.837 l -16.4379996,3.057 c -0.40200002,0.076 -0.72900002,0.47 -0.72900002,0.878 l 0.001,16.919 c 0,0.408 0.328,0.805 0.72900002,0.878 l 16.0349996,2.984 c 0.401,0.073 0.83,0.454 0.952,0.843 l 5.006,12.505 c 0.179,0.367 0.137,0.941 -0.095,1.277 l -9.108,13.273007 c -0.23,0.336 -0.183,0.848 0.105,1.137 l 11.965,11.963 c 0.288,0.287 0.799,0.334 1.136,0.105 l 13.038,-8.949 c 0.336,-0.23 0.899,-0.248 1.25,-0.043 l 5.75,3.07 c 0.364,0.186 0.789,0.029 0.945,-0.348 l 11.856,-28.647007 c 0.157,-0.377 0,-0.858 -0.348,-1.071 l -1.439,-0.881 c -0.266,-0.162 -0.627,-0.441 -0.91,-0.697 -5.191,-3.324 -8.635,-9.139 -8.635,-15.761 0,-10.334 8.378,-18.711 18.711,-18.711 10.333,0 18.71,8.377 18.71,18.711 0,6.622 -3.443,12.437 -8.635,15.761 -0.281,0.256 -0.643,0.535 -0.908,0.697 l -1.439,0.881 c -0.346,0.213 -0.504,0.694 -0.348,1.071 l 11.855,28.648007 c 0.156,0.377 0.58,0.533 0.945,0.348 l 5.75,-3.07 c 0.352,-0.205 0.914,-0.188 1.25,0.043 l 13.038996,8.949 c 0.336,0.229 0.848,0.182 1.135,-0.105 l 11.965,-11.963 c 0.289,-0.289 0.336,-0.801 0.105,-1.137 l -9.109,-13.273007 c -0.23,-0.336 -0.273,-0.91 -0.094,-1.277 l 5.006,-12.505 c 0.123,-0.389 0.549,-0.77 0.951,-0.843 l 16.035,-2.984 c 0.4,-0.073 0.729,-0.47 0.729,-0.878 l 0.002,-16.919 c 0.001,-0.409 -0.327,-0.803 -0.727,-0.879"
+     id="path3"
+     inkscape:tile-cx="86.119004"
+     inkscape:tile-cy="60.256093"
+     inkscape:tile-w="133.888"
+     inkscape:tile-h="120.51219"
+     inkscape:tile-x0="19.175002"
+     inkscape:tile-y0="0"
+     inkscape:connector-curvature="0"
+     style="fill:#0099b0" /><g
+     id="g3884"><path
+       transform="matrix(0.34042555,0,0,0.34042554,20.436164,27.746416)"
+       d="m 336.8907,116.95587 a 198.46097,198.46097 0 1 1 -396.921935,0 198.46097,198.46097 0 1 1 396.921935,0 z"
+       sodipodi:ry="198.46097"
+       sodipodi:rx="198.46097"
+       sodipodi:cy="116.95587"
+       sodipodi:cx="138.42973"
+       id="path3110"
+       style="color:#000000;fill:#000000;fill-opacity:0;fill-rule:nonzero;stroke:none;stroke-width:1.50000000000000000;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="arc" /><path
+       inkscape:transform-center-y="-6.6653473"
+       style="fill:#0099b0"
+       inkscape:connector-curvature="0"
+       inkscape:tile-y0="0"
+       inkscape:tile-x0="19.175002"
+       inkscape:tile-h="120.51219"
+       inkscape:tile-w="133.888"
+       inkscape:tile-cy="60.256093"
+       inkscape:tile-cx="86.119004"
+       id="path3-0"
+       d="m 133.77818,58.194922 -16.439,-3.057 c -0.4,-0.075 -0.838,-0.451 -0.973,-0.837 l -5.039,-11.756005 c -0.188,-0.363 -0.152,-0.933 0.08,-1.271 l 9.578,-13.95999 c 0.229,-0.336 0.184,-0.847 -0.105,-1.136 l -11.963,-11.963 c -0.289,-0.289 -0.799,-0.336 -1.135,-0.105 l -14.205006,9.748 c -0.336,0.231 -0.912,0.272 -1.277,0.092 l -11.396,-4.665 c -0.386995,-0.128 -0.763995,-0.561 -0.839995,-0.962 l -3.165,-17.003 c -0.074,-0.40100003 -0.469,-0.72900003 -0.877,-0.72900003 h -16.92 c -0.407,0 -0.802,0.328 -0.876,0.72900003 l -3.164,17.003 c -0.076,0.401 -0.452,0.834 -0.84,0.962 l -11.396999,4.665 c -0.366,0.18 -0.942,0.139 -1.277,-0.092 l -14.204,-9.748 c -0.337,-0.231 -0.848,-0.184 -1.136,0.105 l -11.964,11.963 c -0.288,0.289 -0.336,0.8 -0.105,1.136 l 9.579,13.95999 c 0.23,0.338 0.266,0.908 0.079,1.271 l -5.04,11.756005 c -0.134,0.386 -0.571,0.762 -0.973,0.837 l -16.4379996,3.057 c -0.40200002,0.076 -0.72900002,0.47 -0.72900002,0.878 l 0.001,16.919 c 0,0.408 0.328,0.805 0.72900002,0.878 l 16.0349996,2.984 c 0.401,0.073 0.83,0.454 0.952,0.843 l 5.006,12.504999 c 0.179,0.367 0.137,0.941 -0.095,1.277 l -9.108,13.273009 c -0.23,0.336 -0.183,0.848 0.105,1.137 l 11.965,11.963 c 0.288,0.287 0.799,0.334 1.136,0.105 l 13.038,-8.949 c 0.336,-0.23 0.899,-0.248 1.25,-0.043 l 5.749999,3.07 c 0.364,0.186 0.789,0.029 0.945,-0.348 l 11.856,-28.647009 c 0.157,-0.377 0,-0.858 -0.348,-1.071 l -1.439,-0.881 c -0.266,-0.162 -0.627,-0.441 -0.91,-0.697 -5.191,-3.323999 -8.635,-9.138999 -8.635,-15.760999 0,-10.334 8.378,-18.711005 18.711,-18.711005 10.333,0 18.709995,8.377005 18.709995,18.711005 0,6.622 -3.443,12.437 -8.634995,15.760999 -0.281,0.256 -0.643,0.535 -0.908,0.697 l -1.439,0.881 c -0.346,0.213 -0.504,0.694 -0.348,1.071 l 11.854995,28.648009 c 0.156,0.377 0.58,0.533 0.945,0.348 l 5.75,-3.07 c 0.352,-0.205 0.914,-0.188 1.25,0.043 l 13.039006,8.949 c 0.336,0.229 0.848,0.182 1.135,-0.105 l 11.965,-11.963 c 0.289,-0.289 0.336,-0.801 0.105,-1.137 l -9.109,-13.273009 c -0.23,-0.336 -0.273,-0.91 -0.094,-1.277 l 5.006,-12.504999 c 0.123,-0.389 0.549,-0.77 0.951,-0.843 l 16.035,-2.984 c 0.4,-0.073 0.729,-0.47 0.729,-0.878 l 0.002,-16.919 c 0.001,-0.409 -0.327,-0.803 -0.727,-0.879" /></g></svg>
\ No newline at end of file
diff --git a/src_images/Opensource.svg b/src_images/Opensource.svg
new file mode 100644 (file)
index 0000000..0824766
--- /dev/null
@@ -0,0 +1,62 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Generator: Adobe Illustrator 11.0, SVG Export Plug-In  -->
+
+<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="166.83403"
+   height="166.83"
+   viewBox="-13.280273 -21.778809 166.83403 166.83"
+   xml:space="preserve"
+   id="svg2"
+   version="1.1"
+   inkscape:version="0.48.4 r9939"
+   sodipodi:docname="Opensource.svg"
+   inkscape:export-filename="/home/ao2/WIP/twinklerope/PoPiPaint/src_images/Opensource.png"
+   inkscape:export-xdpi="345.26163"
+   inkscape:export-ydpi="345.26163"><metadata
+     id="metadata36"><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><sodipodi:namedview
+     pagecolor="#ffffff"
+     bordercolor="#666666"
+     borderopacity="1"
+     objecttolerance="10"
+     gridtolerance="10"
+     guidetolerance="10"
+     inkscape:pageopacity="0"
+     inkscape:pageshadow="2"
+     inkscape:window-width="1152"
+     inkscape:window-height="756"
+     id="namedview34"
+     showgrid="false"
+     fit-margin-top="0"
+     fit-margin-left="0"
+     fit-margin-right="0"
+     fit-margin-bottom="0"
+     inkscape:zoom="2.5772541"
+     inkscape:cx="65.714273"
+     inkscape:cy="109.64073"
+     inkscape:window-x="0"
+     inkscape:window-y="29"
+     inkscape:window-maximized="1"
+     inkscape:current-layer="svg2" /><defs
+     id="defs4" /><path
+     style="fill:#40aa54;stroke:#20552a;stroke-width:5;stroke-linejoin:round"
+     inkscape:connector-curvature="0"
+     id="path8"
+     d="m 70.13672,-19.27881 c -44.678715,1e-6 -80.897951,36.219239 -80.897953,80.898437 0,34.679198 21.82764,64.251463 52.490241,75.754393 L 60.371575,87.660144 C 49.831538,83.706534 42.328126,73.540525 42.328131,61.619632 c -8e-6,-15.358401 12.45068,-27.809083 27.808581,-27.809085 15.358404,2e-6 27.809577,12.450677 27.809571,27.809082 1e-6,11.920902 -7.503902,22.086908 -18.043938,26.040524 l 18.642122,49.714037 c 30.662053,-11.50312 52.490243,-41.075195 52.490253,-75.754398 0,-44.679196 -36.21876,-80.898435 -80.89845,-80.898434 z" /><path
+     sodipodi:type="arc"
+     style="color:#000000;fill:#000000;fill-opacity:0;fill-rule:nonzero;stroke:none;stroke-width:1.5;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+     id="path3044"
+     sodipodi:cx="137.3555"
+     sodipodi:cy="166.26564"
+     sodipodi:rx="9.7002468"
+     sodipodi:ry="17.460443"
+     d="m 147.05575,166.26564 a 9.7002468,17.460443 0 1 1 -19.4005,0 9.7002468,17.460443 0 1 1 19.4005,0 z"
+     transform="translate(-71.422057,-111.41511)" /></svg>
\ No newline at end of file
diff --git a/src_images/S.S.C.Napoli.svg b/src_images/S.S.C.Napoli.svg
new file mode 100644 (file)
index 0000000..7ab7627
--- /dev/null
@@ -0,0 +1,176 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+
+<svg
+   xmlns:dc="http://purl.org/dc/elements/1.1/"
+   xmlns:cc="http://creativecommons.org/ns#"
+   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+   xmlns:svg="http://www.w3.org/2000/svg"
+   xmlns="http://www.w3.org/2000/svg"
+   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+   id="svg2"
+   sodipodi:version="0.32"
+   inkscape:version="0.48.4 r9939"
+   width="495"
+   height="495"
+   xml:space="preserve"
+   sodipodi:docname="S.S.C.Napoli.svg"
+   version="1.0"
+   inkscape:output_extension="org.inkscape.output.svg.inkscape"
+   inkscape:export-filename="/home/ao2/WIP/twinklerope/PoPiPaint/src_images/S.S.C._Napoli_logo.png"
+   inkscape:export-xdpi="116.36364"
+   inkscape:export-ydpi="116.36364"><metadata
+     id="metadata7"><rdf:RDF><cc:Work
+         rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type
+           rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title /></cc:Work></rdf:RDF></metadata><defs
+     id="defs5"><inkscape:perspective
+       sodipodi:type="inkscape:persp3d"
+       inkscape:vp_x="0 : 526.18109 : 1"
+       inkscape:vp_y="0 : 1000 : 0"
+       inkscape:vp_z="744.09448 : 526.18109 : 1"
+       inkscape:persp3d-origin="372.04724 : 350.78739 : 1"
+       id="perspective9" /><clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath17"><path
+         d="m 0,841.89 595.276,0 L 595.276,0 0,0 0,841.89 z"
+         id="path19"
+         inkscape:connector-curvature="0" /></clipPath><linearGradient
+       x1="0"
+       y1="0"
+       x2="1"
+       y2="0"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(244.58781,-244.58781,-244.58781,-244.58781,175.34424,543.23828)"
+       spreadMethod="pad"
+       id="linearGradient35"><stop
+         style="stop-opacity:1;stop-color:#7ea7d1"
+         offset="0"
+         id="stop37" /><stop
+         style="stop-opacity:1;stop-color:#2651a5"
+         offset="0.26097101"
+         id="stop39" /><stop
+         style="stop-opacity:1;stop-color:#2651a5"
+         offset="0.26097101"
+         id="stop41" /><stop
+         style="stop-opacity:1;stop-color:#2651a5"
+         offset="1"
+         id="stop43" /></linearGradient><linearGradient
+       x1="0"
+       y1="0"
+       x2="1"
+       y2="0"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(173.90959,-173.90959,-173.90959,-173.90959,210.68359,507.89893)"
+       spreadMethod="pad"
+       id="linearGradient63"><stop
+         style="stop-color:#1c7ed2;stop-opacity:1;"
+         offset="0"
+         id="stop65" /><stop
+         style="stop-color:#2fabeb;stop-opacity:1;"
+         offset="0.51832438"
+         id="stop67" /><stop
+         style="stop-opacity:1;stop-color:#6cbfea"
+         offset="0.53001648"
+         id="stop69" /><stop
+         style="stop-opacity:1;stop-color:#6cbfea"
+         offset="1"
+         id="stop71" /></linearGradient><linearGradient
+       x1="0"
+       y1="0"
+       x2="1"
+       y2="0"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(142.02281,-142.02281,-142.02281,-142.02281,223.25781,497.83008)"
+       spreadMethod="pad"
+       id="linearGradient87"><stop
+         style="stop-opacity:1;stop-color:#caedf8"
+         offset="0"
+         id="stop89" /><stop
+         style="stop-opacity:1;stop-color:#feffff"
+         offset="0.365169"
+         id="stop91" /><stop
+         style="stop-opacity:1;stop-color:#feffff"
+         offset="0.365169"
+         id="stop93" /><stop
+         style="stop-opacity:1;stop-color:#caedf8"
+         offset="0.775281"
+         id="stop95" /><stop
+         style="stop-opacity:1;stop-color:#feffff"
+         offset="1"
+         id="stop97" /></linearGradient></defs><sodipodi:namedview
+     inkscape:window-height="750"
+     inkscape:window-width="1150"
+     inkscape:pageshadow="2"
+     inkscape:pageopacity="0.0"
+     guidetolerance="10.0"
+     gridtolerance="10.0"
+     objecttolerance="10.0"
+     borderopacity="1.0"
+     bordercolor="#666666"
+     pagecolor="#ffffff"
+     id="base"
+     showgrid="false"
+     inkscape:zoom="0.76138974"
+     inkscape:cx="285.01752"
+     inkscape:cy="147.17648"
+     inkscape:window-x="0"
+     inkscape:window-y="29"
+     inkscape:current-layer="g11"
+     inkscape:window-maximized="0"
+     fit-margin-top="0"
+     fit-margin-left="0"
+     fit-margin-right="0"
+     fit-margin-bottom="0" /><g
+     id="g11"
+     inkscape:groupmode="layer"
+     inkscape:label="SSC_Napoli"
+     transform="matrix(1.25,0,0,-1.25,60.801366,791.56091)"><g
+       id="g13"
+       transform="matrix(1.0961634,0,0,1.0961604,-176.90098,-26.173963)"><g
+         id="g15"
+         clip-path="url(#clipPath17)"><path
+           d="m 478.268,420.945 c 0,-99.759 -80.871,-180.631 -180.63,-180.631 -99.76,0 -180.63,80.872 -180.63,180.631 0,99.759 80.87,180.63 180.63,180.63 99.759,0 180.63,-80.871 180.63,-180.63"
+           style="fill:#2651a5;fill-opacity:1;fill-rule:nonzero;stroke:none"
+           id="path21"
+           inkscape:connector-curvature="0" /><g
+           id="g23"><g
+             id="g25"><g
+               id="g31"><g
+                 id="g33"><path
+                   d="m 175.344,543.239 c -32.666,-32.666 -50.656,-76.098 -50.656,-122.294 0,-46.197 17.99,-89.629 50.656,-122.295 32.666,-32.666 76.097,-50.656 122.294,-50.656 46.197,0 89.628,17.99 122.294,50.656 32.666,32.666 50.656,76.098 50.656,122.295 0,46.196 -17.99,89.628 -50.656,122.294 -32.666,32.666 -76.097,50.656 -122.294,50.656 -46.197,0 -89.628,-17.99 -122.294,-50.656"
+                   style="fill:url(#linearGradient35);stroke:none"
+                   id="path45"
+                   inkscape:connector-curvature="0" /></g></g></g></g><path
+           d="m 165.008,420.945 c 0,-73.133 59.497,-132.631 132.63,-132.631 73.133,0 132.63,59.498 132.63,132.631 0,73.132 -59.497,132.63 -132.63,132.63 -73.133,0 -132.63,-59.498 -132.63,-132.63"
+           style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
+           id="path47"
+           inkscape:connector-curvature="0" /><path
+           d="m 170.127,420.945 c 0,-70.309 57.201,-127.51 127.511,-127.51 70.309,0 127.509,57.201 127.509,127.51 0,70.309 -57.2,127.51 -127.509,127.51 -70.31,0 -127.511,-57.201 -127.511,-127.51"
+           style="fill:#4393d7;fill-opacity:1;fill-rule:nonzero;stroke:none"
+           id="path49"
+           inkscape:connector-curvature="0" /><g
+           id="g51"><g
+             id="g53"><g
+               id="g59"><g
+                 id="g61"><path
+                   d="m 174.607,420.945 c 0,-67.84 55.192,-123.031 123.031,-123.031 67.839,0 123.03,55.191 123.03,123.031 0,67.839 -55.191,123.03 -123.03,123.03 -67.839,0 -123.031,-55.191 -123.031,-123.03"
+                   style="fill:url(#linearGradient63);stroke:none"
+                   id="path73"
+                   inkscape:connector-curvature="0" /></g></g></g></g><g
+           id="g75"><g
+             id="g77"><g
+               id="g83"><g
+                 id="g85" /></g></g></g></g></g><text
+       xml:space="preserve"
+       style="font-size:218.79470825px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0.10635855px;word-spacing:-5.97127247px;writing-mode:lr-tb;text-anchor:start;color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:4.80000019;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-family:Century Schoolbook L;-inkscape-font-specification:Century Schoolbook L Bold"
+       x="56.480553"
+       y="-357.02963"
+       id="text3021"
+       sodipodi:linespacing="125%"
+       transform="scale(1,-1)"><tspan
+         sodipodi:role="line"
+         id="tspan3023"
+         x="56.480553"
+         y="-357.02963">N</tspan></text>
+</g></svg>
\ No newline at end of file
diff --git a/src_images/ao2it.svg b/src_images/ao2it.svg
new file mode 100644 (file)
index 0000000..3661163
--- /dev/null
@@ -0,0 +1,88 @@
+<?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:xlink="http://www.w3.org/1999/xlink"
+   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+   width="640"
+   height="640"
+   id="svg2"
+   version="1.1"
+   inkscape:version="0.48.4 r9939"
+   sodipodi:docname="ao2it.svg"
+   inkscape:export-filename="/home/ao2/WIP/twinklerope/PoPiPaint/src_images/ao2_tag.png"
+   inkscape:export-xdpi="90"
+   inkscape:export-ydpi="90">
+  <defs
+     id="defs4" />
+  <sodipodi:namedview
+     id="base"
+     pagecolor="#ffffff"
+     bordercolor="#666666"
+     borderopacity="1.0"
+     inkscape:pageopacity="0.0"
+     inkscape:pageshadow="2"
+     inkscape:zoom="0.8421875"
+     inkscape:cx="320"
+     inkscape:cy="320"
+     inkscape:document-units="px"
+     inkscape:current-layer="layer1"
+     showgrid="false"
+     inkscape:window-width="1152"
+     inkscape:window-height="756"
+     inkscape:window-x="0"
+     inkscape:window-y="29"
+     inkscape:window-maximized="1" />
+  <metadata
+     id="metadata7">
+    <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="Livello 1"
+     inkscape:groupmode="layer"
+     id="layer1"
+     transform="translate(0,-412.36218)">
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:none;stroke:#000000;stroke-width:1.01240146;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="path2985"
+       sodipodi:cx="299.22076"
+       sodipodi:cy="364.52692"
+       sodipodi:rx="157.6377"
+       sodipodi:ry="157.6377"
+       d="m 456.85846,364.52692 c 0,87.06089 -70.5768,157.63769 -157.6377,157.63769 -87.06089,0 -157.63769,-70.5768 -157.63769,-157.63769 0,-87.0609 70.5768,-157.6377 157.63769,-157.6377 87.0609,0 157.6377,70.5768 157.6377,157.6377 z"
+       transform="matrix(-0.94855216,-0.27536339,0.27536339,-0.94855216,503.44914,1160.5294)" />
+    <text
+       xml:space="preserve"
+       style="font-size:120px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:-4.48999868px;word-spacing:-3.93000007000000018px;fill:#78b0d0;fill-opacity:1;stroke:none;font-family:Georgia;-inkscape-font-specification:Georgia"
+       id="text3755"
+       sodipodi:linespacing="125%"><textPath
+         xlink:href="#path2985"
+         id="textPath3759"
+         style="font-size:144px;font-weight:bold;letter-spacing:-4.48999882000000028px;fill:#78b0d0;fill-opacity:1;-inkscape-font-specification:Georgia Bold">ao2.it</textPath></text>
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#006699;stroke-width:9.11087226999999977;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="path3843"
+       sodipodi:cx="320.59369"
+       sodipodi:cy="293.28384"
+       sodipodi:rx="273.09833"
+       sodipodi:ry="301.59555"
+       d="m 593.69202,293.28384 c 0,166.56663 -122.27029,301.59555 -273.09833,301.59555 -150.82804,0 -273.098329,-135.02892 -273.098329,-301.59555 0,-166.56662 122.270289,-301.5955465 273.098329,-301.5955465 150.82804,0 273.09833,135.0289265 273.09833,301.5955465 z"
+       transform="matrix(1.1534307,0,0,1.0444452,-49.782603,426.04328)" />
+  </g>
+</svg>
diff --git a/src_images/convert_all.sh b/src_images/convert_all.sh
new file mode 100755 (executable)
index 0000000..6ff4c84
--- /dev/null
@@ -0,0 +1,13 @@
+#!/bin/sh
+
+WIDTH=640
+HEIGHT=640
+OUTPUT_DIR="raster/"
+
+[ -d $OUTPUT_DIR ] || mkdir $OUTPUT_DIR
+
+for file in *.svg;
+do
+  OUTPUT_FILE="$(basename "$file" .svg).png"
+  inkscape --export-background "#000000" -f "$file" -w $WIDTH -h $HEIGHT -e "$OUTPUT_DIR/$OUTPUT_FILE"
+done
diff --git a/src_images/raster/Adafuit.png b/src_images/raster/Adafuit.png
new file mode 100644 (file)
index 0000000..b23e6d3
Binary files /dev/null and b/src_images/raster/Adafuit.png differ
diff --git a/src_images/raster/Debian.png b/src_images/raster/Debian.png
new file mode 100644 (file)
index 0000000..b320bb0
Binary files /dev/null and b/src_images/raster/Debian.png differ
diff --git a/src_images/raster/Firefox.png b/src_images/raster/Firefox.png
new file mode 100644 (file)
index 0000000..639cff0
Binary files /dev/null and b/src_images/raster/Firefox.png differ
diff --git a/src_images/raster/JMPrope.png b/src_images/raster/JMPrope.png
new file mode 100644 (file)
index 0000000..e2a65db
Binary files /dev/null and b/src_images/raster/JMPrope.png differ
diff --git a/src_images/raster/Openhardware.png b/src_images/raster/Openhardware.png
new file mode 100644 (file)
index 0000000..8905010
Binary files /dev/null and b/src_images/raster/Openhardware.png differ
diff --git a/src_images/raster/Opensource.png b/src_images/raster/Opensource.png
new file mode 100644 (file)
index 0000000..fe627a1
Binary files /dev/null and b/src_images/raster/Opensource.png differ
diff --git a/src_images/raster/S.S.C.Napoli.png b/src_images/raster/S.S.C.Napoli.png
new file mode 100644 (file)
index 0000000..201aea5
Binary files /dev/null and b/src_images/raster/S.S.C.Napoli.png differ
diff --git a/src_images/raster/ao2it.png b/src_images/raster/ao2it.png
new file mode 100644 (file)
index 0000000..22af3bc
Binary files /dev/null and b/src_images/raster/ao2it.png differ
diff --git a/src_images/raster_post-processed/Adafuit.png b/src_images/raster_post-processed/Adafuit.png
new file mode 100644 (file)
index 0000000..606fa6c
Binary files /dev/null and b/src_images/raster_post-processed/Adafuit.png differ
diff --git a/src_images/raster_post-processed/Debian.png b/src_images/raster_post-processed/Debian.png
new file mode 100644 (file)
index 0000000..d1d938e
Binary files /dev/null and b/src_images/raster_post-processed/Debian.png differ
diff --git a/src_images/raster_post-processed/Firefox.png b/src_images/raster_post-processed/Firefox.png
new file mode 100644 (file)
index 0000000..48de3a2
Binary files /dev/null and b/src_images/raster_post-processed/Firefox.png differ
diff --git a/src_images/raster_post-processed/JMPrope.png b/src_images/raster_post-processed/JMPrope.png
new file mode 100644 (file)
index 0000000..1b251ea
Binary files /dev/null and b/src_images/raster_post-processed/JMPrope.png differ
diff --git a/src_images/raster_post-processed/Openhardware.png b/src_images/raster_post-processed/Openhardware.png
new file mode 100644 (file)
index 0000000..f7c7cc0
Binary files /dev/null and b/src_images/raster_post-processed/Openhardware.png differ
diff --git a/src_images/raster_post-processed/Opensource.png b/src_images/raster_post-processed/Opensource.png
new file mode 100644 (file)
index 0000000..a4c4103
Binary files /dev/null and b/src_images/raster_post-processed/Opensource.png differ
diff --git a/src_images/raster_post-processed/S.S.C.Napoli.png b/src_images/raster_post-processed/S.S.C.Napoli.png
new file mode 100644 (file)
index 0000000..c7b7a71
Binary files /dev/null and b/src_images/raster_post-processed/S.S.C.Napoli.png differ
diff --git a/src_images/raster_post-processed/ao2.png b/src_images/raster_post-processed/ao2.png
new file mode 100644 (file)
index 0000000..e02cd11
Binary files /dev/null and b/src_images/raster_post-processed/ao2.png differ
diff --git a/src_images/raster_post-processed/ao2it.png b/src_images/raster_post-processed/ao2it.png
new file mode 100644 (file)
index 0000000..f8184a4
Binary files /dev/null and b/src_images/raster_post-processed/ao2it.png differ
diff --git a/tools/Makefile b/tools/Makefile
new file mode 100644 (file)
index 0000000..fed2601
--- /dev/null
@@ -0,0 +1,4 @@
+all:
+
+clean:
+       rm -f *.svg *~
diff --git a/tools/convert_to_RLE_animation.py b/tools/convert_to_RLE_animation.py
new file mode 100755 (executable)
index 0000000..8cba1e2
--- /dev/null
@@ -0,0 +1,79 @@
+#!/usr/bin/env python
+#
+# Copyright (C) 2014  Antonio Ospite <ao2@ao2.it>
+#
+# This program is free software: you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation, either version 3 of the License, or
+# (at your option) any later version.
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with this program.  If not, see <http://www.gnu.org/licenses/>.
+
+import sys
+import Image
+
+
+def usage(program_name):
+    sys.stderr.write("usage: %s <image file> <animation file>\n" % program_name)
+    sys.exit(1)
+
+
+# The code below has been copied from the C implementation in PatternPaint:
+# https://github.com/Blinkinlabs/PatternPaint
+def save_animation(input_filename, output_filename):
+    output_file = open(output_filename, "w")
+
+    img = Image.open(input_filename).convert('RGB')
+    w, h = img.size
+    colors = img.getcolors(w*h)
+    palette = img.getpalette()
+    pixels = img.getdata()
+
+    output_file.write("const PROGMEM prog_uint8_t animationData[]  = {\n")
+
+    output_file.write("// Length of the color table - 1, in bytes. length: 1 byte\n")
+    output_file.write("   %d,\n" % (len(colors) - 1))
+
+    output_file.write("// Color table section. Each entry is 3 bytes. length: %d bytes\n" % (len(colors) * 3))
+
+    color_map = {}
+    for i, c in enumerate(colors):
+        output_file.write(" %3d, %3d, %3d,\n" % (c[1][0], c[1][1], c[1][2]))
+        color_map[c[1]] = i
+
+    output_file.write("// Pixel runs section. Each pixel run is 2 bytes. length: -1 bytes\n")
+
+    for x in range(0, w):
+        run_count = 0
+        for y in range(0, h):
+            new_color = color_map[pixels.getpixel((x, y))]
+            if run_count == 0:
+                current_color = new_color
+
+            if current_color != new_color:
+                output_file.write(" %3d, %3d,\n" % (run_count, current_color))
+                run_count = 1
+                current_color = new_color
+            else:
+                run_count += 1
+
+        output_file.write(" %3d, %3d,\n" % (run_count, current_color))
+
+    output_file.write("};\n\n")
+
+    output_file.write("#define NUM_FRAMES %d\n" % w)
+    output_file.write("#define NUM_LEDS %d\n" % h)
+    output_file.write("Animation animation(NUM_FRAMES, animationData, NUM_LEDS);\n")
+    output_file.close()
+
+if __name__ == "__main__":
+    if len(sys.argv) < 3:
+        usage(sys.argv[0])
+
+    save_animation(sys.argv[1], sys.argv[2])
diff --git a/tools/depolar_resample_IMAGEMAGICK.sh b/tools/depolar_resample_IMAGEMAGICK.sh
new file mode 100755 (executable)
index 0000000..28c2220
--- /dev/null
@@ -0,0 +1,46 @@
+#!/bin/sh
+#
+# depolar_resample_IMAGEMAGICK.sh - build a pixel map for JMPrope
+#
+# Copyright (C) 2014  Antonio Ospite <ao2@ao2.it>
+#
+# This program is free software. It comes without any warranty, to
+# the extent permitted by applicable law. You can redistribute it
+# and/or modify it under the terms of the Do What The Fuck You Want
+# To Public License, Version 2, as published by Sam Hocevar. See
+# http://sam.zoy.org/wtfpl/COPYING for more details.
+
+set -e
+
+INPUT_WIDTH=640
+INPUT_HEIGHT=640
+SCALE="0.1"
+INTERNAL_RADIUS=2
+
+[ -f "$1" -a "x$2" != "x" ] || { echo "usage: $(basename $0) <input file> <output file> [imagemagick options]" 1>&2; exit 1; }
+
+INPUT_FILENAME="$1"
+shift
+
+OUTPUT_FILENAME="$1"
+shift
+
+[ -e $OUTPUT_FILENAME ] && { echo "Error: $OUTPUT_FILENAME already exists, remove it first" 1>&2; exit 1; }
+
+WIDTH=$(identify -format "%[fx:w]" "$INPUT_FILENAME")
+HEIGHT=$(identify -format "%[fx:w]" "$INPUT_FILENAME")
+
+if [ $WIDTH -ne $INPUT_WIDTH -o $HEIGHT -ne $INPUT_HEIGHT ];
+then
+  echo "Error: image must be ${INPUT_WIDTH}x${INPUT_HEIGHT}" 1>&2
+  exit 1;
+fi
+
+CX=$(identify -format "%[fx:h/2]" "$INPUT_FILENAME")
+CY=$(identify -format "%[fx:h/2]" "$INPUT_FILENAME")
+
+OPTIONS="-interpolate NearestNeighbor -filter point -background black -flatten"
+
+convert "$INPUT_FILENAME" $OPTIONS \
+  -set option:distort:scale $SCALE +distort DePolar "0 0 $CX,$CY 0,360" \
+  -flop -crop +0+$INTERNAL_RADIUS $@ +repage "$OUTPUT_FILENAME"
diff --git a/tools/depolar_resample_PIL.py b/tools/depolar_resample_PIL.py
new file mode 100755 (executable)
index 0000000..8c18b5b
--- /dev/null
@@ -0,0 +1,76 @@
+#!/usr/bin/env python
+#
+# Copyright (C) 2014  Antonio Ospite <ao2@ao2.it>
+#
+# This program is free software: you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation, either version 3 of the License, or
+# (at your option) any later version.
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with this program.  If not, see <http://www.gnu.org/licenses/>.
+
+import sys
+from math import *
+
+import Image
+
+
+def polar2cartesian(r, theta, offset_angle=0):
+    """
+    theta expected in degrees
+    """
+    theta = radians(theta) - offset_angle
+    x = r * cos(theta)
+    y = r * sin(theta)
+
+    return x, y
+
+
+def usage(program_name):
+    sys.stderr.write("usage: %s <input file> <output file>\n" % program_name)
+    sys.exit(1)
+
+if __name__ == "__main__":
+    if len(sys.argv) < 3:
+        usage(sys.argv[0])
+
+    map_width = 101
+    map_height = 30
+    internal_radius = 2
+    scale = 10
+
+    width = (map_height + internal_radius) * 2 * scale
+    height = width
+
+    img = Image.open(sys.argv[1]).convert('RGBA')
+    w, h = img.size
+    if w != width or h != height:
+        sys.stderr.write("Error: image must be 640x640")
+
+    colors = img.getcolors(w*h)
+    palette = img.getpalette()
+    pixels = img.getdata()
+
+    output_image = Image.new("RGB", (map_width, map_height), "black")
+
+    external_radius = width / 2. - 1
+    radius = external_radius - internal_radius
+
+    for i in range(0, map_height):
+        for j in range(0, map_width):
+            r = radius / map_height * (i + 0.5) + internal_radius
+            theta = (360. / map_width) * (j + 0.5)
+            x, y = polar2cartesian(r, theta, -pi/2.)
+            px, py = int(x + radius), int(y + radius)
+            sample = img.getpixel((px, py))
+            if sample[3] != 255:
+                sample = (0, 0, 0, 255)
+            output_image.putpixel((j, i), sample)
+
+    output_image.save(sys.argv[2], "PNG")
diff --git a/tools/polar_grid.py b/tools/polar_grid.py
new file mode 100755 (executable)
index 0000000..95c0f03
--- /dev/null
@@ -0,0 +1,169 @@
+#!/usr/bin/env python
+#
+# Copyright (C) 2014  Antonio Ospite <ao2@ao2.it>
+#
+# This program is free software: you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation, either version 3 of the License, or
+# (at your option) any later version.
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with this program.  If not, see <http://www.gnu.org/licenses/>.
+import sys
+import cairo
+from math import *
+
+
+def cartesian2polar(x, y, offset_angle=0):
+    """return the polar coordinates relative to a circle
+    centered in (0,0) going counterclockwise.
+
+    returned angle is in degrees
+    """
+    r = sqrt(x*x + y*y)
+    theta = atan2(float(y), float(x)) + offset_angle
+
+    # report theta in the [0,360) range
+    theta = degrees(theta)
+    if theta < 0:
+        theta = 360 + theta
+
+    return r, theta
+
+
+def polar2cartesian(r, theta, offset_angle=0):
+    """
+    theta expected in degrees
+    """
+    theta = radians(theta) - offset_angle
+    x = r * cos(theta)
+    y = r * sin(theta)
+
+    return x, y
+
+
+class Diagram(object):
+
+    def __init__(self, filename, width, height):
+        self.filename = filename
+        self.width = width
+        self.height = height
+
+        self.surface = cairo.SVGSurface(filename + '.svg', width, height,
+                                        units="px")
+        cr = self.cr = cairo.Context(self.surface)
+
+        cr.set_line_width(1)
+
+        # draw background
+        cr.rectangle(0, 0, width, height)
+        cr.set_source_rgb(1, 1, 1)
+        cr.fill()
+
+        # center the origin
+        cr.translate(width/2., height/2.)
+
+    def save(self):
+        self.surface.write_to_png(self.filename + '.png')
+        self.show()
+
+    def show(self):
+        import Image
+        import StringIO
+        f = StringIO.StringIO()
+        self.surface.write_to_png(f)
+        f.seek(0)
+        im = Image.open(f)
+        im.show()
+
+    def draw_line(self, x1, y1, x2, y2, stroke_color=[0, 0, 0, 1]):
+        cr = self.cr
+
+        cr.move_to(x1, y1)
+        cr.line_to(x2, y2)
+
+        rf, gf, bf, alpha= stroke_color
+        cr.set_source_rgba(rf, gf, bf, alpha)
+        cr.stroke()
+
+    def draw_circle(self, cx, cy, size=10.0, stroke_color=[0, 0, 0, 1]):
+        cr = self.cr
+
+        cr.arc(cx, cy, size, 0, 2*pi)
+
+        rf, gf, bf, alpha = stroke_color
+        cr.set_source_rgba(rf, gf, bf, alpha)
+        cr.stroke()
+
+
+class PolarGridDiagram(Diagram):
+    def __init__(self, filename, sectors, rings, internal_radius, scale):
+        width = (map_height + internal_radius) * 2 * scale
+        height = width
+        Diagram.__init__(self, filename, width, height)
+
+        self.rings = rings
+        self.sectors = sectors
+
+        self.internal_radius = internal_radius * scale
+        self.external_radius = width / 2.
+        self.radius = self.external_radius - self.internal_radius
+
+    def draw_samples(self, stroke_color=[0, 0, 0, 0.5]):
+        for i in range(0, self.rings):
+            for j in range(0, self.sectors):
+                r = self.radius / self.rings * (i + 0.5) + self.internal_radius
+                theta = (360. / self.sectors) * (j + 0.5)
+                x, y = polar2cartesian(r, theta, -pi/2.)
+                self.draw_circle(x, y, 1, stroke_color)
+
+    def draw_grid(self, stroke_color=[0, 0, 0, 0.5]):
+        line_width = self.cr.get_line_width()
+
+        for i in range(0, self.rings):
+            self.draw_circle(0, 0, self.radius / self.rings * i + self.internal_radius, stroke_color)
+
+        # outmost circle
+        self.draw_circle(0, 0, self.external_radius - line_width, stroke_color)
+
+        min_r = self.internal_radius
+        max_r = self.external_radius - line_width
+        for i in range(0, self.sectors):
+            theta = (360. / self.sectors) * i
+            x1, y1 = polar2cartesian(min_r, theta, -pi/2.)
+            x2, y2 = polar2cartesian(max_r, theta, -pi/2.)
+            self.draw_line(x1, y1, x2, y2, stroke_color)
+
+    def draw_image(self, image):
+        cr = self.cr
+        img = cairo.ImageSurface.create_from_png(image)
+        cr.set_source_surface(img, -self.external_radius, -self.external_radius)
+        cr.paint()
+
+    def draw(self, bg):
+        if bg:
+            self.draw_image(bg)
+
+        self.draw_grid()
+        self.draw_samples()
+
+if __name__ == '__main__':
+
+    if len(sys.argv) > 1:
+        bg = sys.argv[1]
+    else:
+        bg = None
+
+    map_width = 101
+    map_height = 30
+    internal_radius = 2
+    scale = 10
+
+    grid = PolarGridDiagram('polar_grid', map_width, map_height, internal_radius, scale)
+    grid.draw(bg)
+    grid.show()