[kde-edu]: Re: New asymptote export filter for Kig (second try)

Maurizio Paolini paolini at dmf.unicatt.it
Mon Mar 21 01:39:56 CET 2011


I didn't forget your patch... I will have a look at your new version
and commit it if no problems arise and if Pino does not object.

I will commit on the svn repository, is it still the official
repository?

Maurizio

On Sun, Mar 20, 2011 at 11:15:15PM +0100, Raoul wrote:
> Hi *,
> 
> 
> Here is an updated version of my patch.
> 
> The grid issues are fixed now. (There is
> still a problem with the axes, but that's
> inside asymptote.)
> 
> And I limited the output line lengths because
> too long lines (which occur for conics f.e.)
> caused errors with the read latex buffers.
> 
> Maybe the patch is soon ready for inclusion?
> (Even if some odd bugs like elliptic arcs
> are not fixed yet.)
> 
> Please comment.
> 
> 
> -- Raoul

> Index: asyexporter.h
> ===================================================================
> --- asyexporter.h	(revision 0)
> +++ asyexporter.h	(revision 0)
> @@ -0,0 +1,41 @@
> +// Copyright (C) 2010, 2011 Raoul Bourquin
> +
> +// 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 2
> +// 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, write to the Free Software
> +// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
> +// 02110-1301, USA.
> +
> +#ifndef KIG_FILTERS_ASYEXPORTER_H
> +#define KIG_FILTERS_ASYEXPORTER_H
> +
> +#include "exporter.h"
> +
> +class QString;
> +class KigPart;
> +class KigWidget;
> +
> +/**
> + * Export to Asymptote.
> + */
> +class AsyExporter
> +  : public KigExporter
> +{
> +public:
> +  ~AsyExporter();
> +  QString exportToStatement() const;
> +  QString menuEntryName() const;
> +  QString menuIcon() const;
> +  void run( const KigPart& doc, KigWidget& w );
> +};
> +
> +#endif
> 
> Property changes on: asyexporter.h
> ___________________________________________________________________
> Added: svn:eol-style
>    + native
> 
> Index: asyexporter.cc
> ===================================================================
> --- asyexporter.cc	(revision 0)
> +++ asyexporter.cc	(revision 0)
> @@ -0,0 +1,148 @@
> +// Copyright (C)  2010 Raoul Bourquin
> +
> +// 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 2
> +// 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, write to the Free Software
> +// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
> +// 02110-1301, USA.
> +
> +#include "asyexporter.h"
> +#include "asyexporterimpvisitor.h"
> +#include "asyexporteroptions.h"
> +
> +#include "../misc/kigfiledialog.h"
> +
> +#include <qfile.h>
> +#include <qtextstream.h>
> +#include <kmessagebox.h>
> +
> +#ifdef HAVE_TRUNC
> +#define KDE_TRUNC(a)	trunc(a)
> +#else
> +#define KDE_TRUNC(a)	rint(a)
> +#endif
> +
> +AsyExporter::~AsyExporter()
> +{
> +}
> +
> +QString AsyExporter::exportToStatement() const
> +{
> +  return i18n( "Export to &Asymptote..." );
> +}
> +
> +QString AsyExporter::menuEntryName() const
> +{
> +  return i18n( "&Asymptote..." );
> +}
> +
> +QString AsyExporter::menuIcon() const
> +{
> +  return "text-plain";
> +}
> +
> +void AsyExporter::run( const KigPart& doc, KigWidget& w )
> +{
> +  KigFileDialog* kfd = new KigFileDialog(
> +      QString(), i18n( "*.asy|Asymptote Documents (*.asy)" ),
> +      i18n( "Export as Asymptote script" ), &w );
> +  kfd->setOptionCaption( i18n( "Asymptote Options" ) );
> +  AsyExporterOptions* opts = new AsyExporterOptions( 0L );
> +  kfd->setOptionsWidget( opts );
> +  opts->setGrid( false );
> +  opts->setAxes( false );
> +  opts->setExtraFrame( true );
> +  if ( !kfd->exec() )
> +    return;
> +
> +  QString file_name = kfd->selectedFile();
> +  bool showgrid = opts->showGrid();
> +  bool showaxes = opts->showAxes();
> +  bool showframe = opts->showExtraFrame();
> +  
> +  delete opts;
> +  delete kfd;
> +
> +  QFile file( file_name );
> +  if ( ! file.open( QIODevice::WriteOnly ) )
> +  {
> +    KMessageBox::sorry( &w, i18n( "The file \"%1\" could not be opened. Please "
> +				  "check if the file permissions are set correctly." ,
> +			  file_name ) );
> +    return;
> +  };
> +
> +  const double bottom = w.showingRect().bottom();
> +  const double left = w.showingRect().left();
> +  const double height = w.showingRect().height();
> +  const double width = w.showingRect().width();
> +
> +  std::vector<ObjectHolder*> os = doc.document().objects();
> +  QTextStream stream( &file );
> +  AsyExporterImpVisitor visitor( stream, w );
> +  
> +  // Start building the output stream containing the asymptote script commands
> +  
> +  // The file header for pure asymptote
> +  stream << "settings.outformat=\"pdf\";\n";
> +  stream << "\n";
> +  stream << "import math;\n";
> +  stream << "import graph;\n";
> +  stream << "\n";
> +  stream << "size(" << 25*width << "," << 25*height << ");\n";
> +  stream << "\n";
> +  stream << "real textboxmargin = 2mm;\n";
> +  stream << "\n";
> +  
> +  // grid
> +  if ( showgrid )
> +  {
> +    // TODO: Polar grid
> +    // vertical lines...
> +    double startingpoint = startingpoint = static_cast<double>( KDE_TRUNC( left ) );
> +    for ( double i = startingpoint; i < left+width; ++i )
> +    {
> +      stream << "draw((" << i << "," << bottom << ")--(" << i << "," << bottom+height << "),gray);\n";
> +    }
> +    // horizontal lines...
> +    startingpoint = static_cast<double>( KDE_TRUNC( bottom ) );
> +    for ( double i = startingpoint; i < bottom+height; ++i )
> +    {
> +      stream << "draw((" << left << "," << i << ")--(" << left+width << "," << i << "),gray);\n";
> +    }
> +  }
> +
> +  // axes
> +  if ( showaxes )
> +  {
> +    stream << "xaxis(\"\", Arrow);\n";
> +    stream << "yaxis(\"\", Arrow);\n";
> +  }
> +
> +  // Visit all the objects
> +  for ( std::vector<ObjectHolder*>::const_iterator i = os.begin(); i != os.end(); ++i )
> +  {
> +    visitor.visit( *i );
> +  }
> +
> +  stream << "path frame = ("<<left<<","<<bottom<<")--("
> +			    <<left<<","<<bottom+height<<")--("
> +			    <<left+width<<","<<bottom+height<<")--("
> +			    <<left+width<<","<<bottom<<")--cycle;\n";
> +  // extra frame
> +  if ( showframe )
> +  {
> +    stream << "draw(frame, black);\n";
> +  }
> +  stream << "clip(frame);\n";
> +
> +}
> 
> Property changes on: asyexporter.cc
> ___________________________________________________________________
> Added: svn:eol-style
>    + native
> 
> Index: latexexporteroptions.h
> ===================================================================
> --- latexexporteroptions.h	(revision 1224529)
> +++ latexexporteroptions.h	(working copy)
> @@ -35,6 +35,7 @@
>    {
>      PSTricks,
>      TikZ,
> +    Asymptote,
>      FormatCount
>    };
>  
> Index: latexexporteroptionswidget.ui
> ===================================================================
> --- latexexporteroptionswidget.ui	(revision 1224529)
> +++ latexexporteroptionswidget.ui	(working copy)
> @@ -40,6 +40,13 @@
>          </property>
>         </widget>
>        </item>
> +      <item>
> +       <widget class="QRadioButton" name="asyRadioButton">
> +        <property name="text">
> +         <string>Asymptote</string>
> +        </property>
> +       </widget>
> +      </item>
>       </layout>
>      </widget>
>     </item>
> Index: exporter.cc
> ===================================================================
> --- exporter.cc	(revision 1224529)
> +++ exporter.cc	(working copy)
> @@ -20,6 +20,7 @@
>  
>  #include "imageexporteroptions.h"
>  #include "latexexporter.h"
> +#include "asyexporter.h"
>  #include "svgexporter.h"
>  #include "xfigexporter.h"
>  
> @@ -139,9 +140,9 @@
>  KigExportManager::KigExportManager()
>  {
>    mexporters.push_back( new ImageExporter );
> -  // working on this one ;)
>    mexporters.push_back( new XFigExporter );
>    mexporters.push_back( new LatexExporter );
> +  mexporters.push_back( new AsyExporter );
>    mexporters.push_back( new SVGExporter );
>  }
>  
> Index: asyexporteroptions.h
> ===================================================================
> --- asyexporteroptions.h	(revision 0)
> +++ asyexporteroptions.h	(revision 0)
> @@ -0,0 +1,46 @@
> +// Copyright (C)  2010 Raoul Bourquin
> +//
> +// 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 2
> +// 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, write to the Free Software
> +// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
> +// 02110-1301, USA.
> +
> +#ifndef KIG_FILTERS_ASYEXPORTEROPTIONS_H
> +#define KIG_FILTERS_ASYEXPORTEROPTIONS_H
> +
> +#include <qwidget.h>
> +
> +class Ui_AsyExporterOptionsWidget;
> +
> +class AsyExporterOptions
> +  : public QWidget
> +{
> +  Q_OBJECT
> +
> +  Ui_AsyExporterOptionsWidget* expwidget;
> +
> +public:
> +  AsyExporterOptions( QWidget* parent );
> +  ~AsyExporterOptions();
> +
> +  void setGrid( bool grid );
> +  bool showGrid() const;
> +
> +  void setAxes( bool axes );
> +  bool showAxes() const;
> +
> +  void setExtraFrame( bool frame );
> +  bool showExtraFrame() const;
> +};
> +
> +#endif
> 
> Property changes on: asyexporteroptions.h
> ___________________________________________________________________
> Added: svn:eol-style
>    + native
> 
> Index: asyexporteroptions.cc
> ===================================================================
> --- asyexporteroptions.cc	(revision 0)
> +++ asyexporteroptions.cc	(revision 0)
> @@ -0,0 +1,68 @@
> +// Copyright (C)  2010 Raoul Bourquin
> +
> +// 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 2
> +// 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, write to the Free Software
> +// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
> +// 02110-1301, USA.
> +
> +#include "asyexporteroptions.h"
> +#include "asyexporteroptions.moc"
> +
> +#include "ui_asyexporteroptionswidget.h"
> +
> +#include <qcheckbox.h>
> +#include <qlayout.h>
> +
> +AsyExporterOptions::AsyExporterOptions( QWidget* parent )
> +  : QWidget( parent )
> +{
> +  expwidget = new Ui_AsyExporterOptionsWidget();
> +  expwidget->setupUi( this );
> +
> +  layout()->setMargin( 0 );
> +}
> +
> +AsyExporterOptions::~AsyExporterOptions()
> +{
> +  delete expwidget;
> +}
> +
> +void AsyExporterOptions::setGrid( bool grid )
> +{
> +  expwidget->showGridCheckBox->setChecked( grid );
> +}
> +
> +bool AsyExporterOptions::showGrid() const
> +{
> +  return expwidget->showGridCheckBox->isChecked();
> +}
> +
> +void AsyExporterOptions::setAxes( bool axes )
> +{
> +  expwidget->showAxesCheckBox->setChecked( axes );
> +}
> +
> +bool AsyExporterOptions::showAxes() const
> +{
> +  return expwidget->showAxesCheckBox->isChecked();
> +}
> +
> +void AsyExporterOptions::setExtraFrame( bool frame )
> +{
> +  expwidget->showFrameCheckBox->setChecked( frame );
> +}
> +
> +bool AsyExporterOptions::showExtraFrame() const
> +{
> +  return expwidget->showFrameCheckBox->isChecked();
> +}
> 
> Property changes on: asyexporteroptions.cc
> ___________________________________________________________________
> Added: svn:eol-style
>    + native
> 
> Index: latexexporteroptions.cc
> ===================================================================
> --- latexexporteroptions.cc	(revision 1224529)
> +++ latexexporteroptions.cc	(working copy)
> @@ -47,6 +47,9 @@
>      case TikZ:
>        expwidget->tikzRadioButton->setChecked(true);
>        break;
> +    case Asymptote:
> +      expwidget->asyRadioButton->setChecked(true);
> +      break;
>    }
>  }
>  
> @@ -56,10 +59,14 @@
>    {
>      return PSTricks;
>    }
> -  else
> +  else if (expwidget->tikzRadioButton->isChecked())
>    {
>      return TikZ;
> -  }
> +  } 
> +  else 
> +  {
> +    return Asymptote;
> +  } 
>  }
>  
>  void LatexExporterOptions::setStandalone(bool standalone)
> Index: asyexporterimpvisitor.h
> ===================================================================
> --- asyexporterimpvisitor.h	(revision 0)
> +++ asyexporterimpvisitor.h	(revision 0)
> @@ -0,0 +1,122 @@
> +// Copyright (C)  2010 Raoul Bourquin
> +
> +// 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 2
> +// 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, write to the Free Software
> +// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
> +// 02110-1301, USA.
> +
> +#ifndef KIG_FILTERS_ASYEXPORTERIMPVISITOR_H
> +#define KIG_FILTERS_ASYEXPORTERIMPVISITOR_H
> +
> +// #include <qcheckbox.h>
> +// #include <qcolor.h>
> +// #include <qfile.h>
> +// #include <qtextstream.h>
> +
> +#include "../kig/kig_document.h"
> +#include "../kig/kig_part.h"
> +#include "../kig/kig_view.h"
> +
> +#include "../objects/circle_imp.h"
> +#include "../objects/cubic_imp.h"
> +#include "../objects/bezier_imp.h"
> +#include "../objects/curve_imp.h"
> +#include "../objects/line_imp.h"
> +#include "../objects/locus_imp.h"
> +#include "../objects/object_drawer.h"
> +#include "../objects/object_holder.h"
> +#include "../objects/object_imp.h"
> +#include "../objects/other_imp.h"
> +#include "../objects/point_imp.h"
> +#include "../objects/polygon_imp.h"
> +#include "../objects/text_imp.h"
> +
> +
> +class AsyExporterImpVisitor
> +  : public ObjectImpVisitor
> +{
> +  QTextStream& mstream;
> +  ObjectHolder* mcurobj;
> +  const KigWidget& mw;
> +  Rect msr;
> +public:
> +  void visit( ObjectHolder* obj );
> +
> +  AsyExporterImpVisitor( QTextStream& s, const KigWidget& w )
> +    : mstream( s ), mw( w ), msr( mw.showingRect() )
> +    {
> +    }
> +  void visit( const LineImp* imp );
> +  void visit( const PointImp* imp );
> +  void visit( const TextImp* imp );
> +  void visit( const AngleImp* imp );
> +  void visit( const VectorImp* imp );
> +  void visit( const LocusImp* imp );
> +  void visit( const CircleImp* imp );
> +  void visit( const ConicImp* imp );
> +  void visit( const CubicImp* imp );
> +  void visit( const SegmentImp* imp );
> +  void visit( const RayImp* imp );
> +  void visit( const ArcImp* imp );
> +  void visit( const FilledPolygonImp* imp );
> +  void visit( const ClosedPolygonalImp* imp );
> +  void visit( const OpenPolygonalImp* imp );
> +
> +  double unit;
> +
> +private:
> +  /** Maximal line length in the output file. To avoid too long line which
> +    * can cause error in asy and latex parsing. (Note: this is not 100% strict,
> +    * the lines may have a few more characters.)
> +    */
> +  static const uint maxlinelength = 500;
> +  
> +  /**
> +   * Converts Kig coords to pstrick coord system and sends them to stream
> +   * using the format: (xcoord,ycoord)
> +   */
> +  QString emitCoord( const Coordinate& c );
> +  
> +  /**
> +   * Draws a line (segment) or a vector if vector is true.
> +   */
> +  void emitLine( const Coordinate& a, const Coordinate& b, const int width,
> +                 const Qt::PenStyle s, bool vector = false );
> +  /**
> +   * Writes the color to the stream as rgb(r,g,b)
> +   */
> +  QString emitColor( const QColor& c );
> +  
> +  /**
> +   * Writes a style definition to the stream.
> +   */
> +  QString emitStyle( Qt::PenStyle style );
> +  
> +  /**
> +   * Sends a new line character ( \n ) to stream.
> +   */
> +  void newLine();
> +
> +  /**
> +   * Use to convert a dimension "on the screen" to a dimension wrt.
> +   * Kig coordinate system.
> +   */
> +  double dimRealToCoord( int dim );
> +  
> +  /**
> +   * Plots a generic curve though its points calc'ed with getPoint.
> +   */
> +  void plotGenericCurve( const CurveImp* imp );
> +};
> +
> +#endif
> 
> Property changes on: asyexporterimpvisitor.h
> ___________________________________________________________________
> Added: svn:eol-style
>    + native
> 
> Index: asyexporterimpvisitor.cc
> ===================================================================
> --- asyexporterimpvisitor.cc	(revision 0)
> +++ asyexporterimpvisitor.cc	(revision 0)
> @@ -0,0 +1,498 @@
> +// Copyright (C)  2010 Raoul Bourquin
> +
> +// 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 2
> +// 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, write to the Free Software
> +// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
> +// 02110-1301, USA.
> +
> +#include "asyexporterimpvisitor.h"
> +
> +#include "../misc/goniometry.h"
> +#include "../objects/circle_imp.h"
> +#include "../objects/cubic_imp.h"
> +#include "../objects/bezier_imp.h"
> +#include "../objects/curve_imp.h"
> +#include "../objects/line_imp.h"
> +#include "../objects/locus_imp.h"
> +#include "../objects/object_drawer.h"
> +#include "../objects/object_holder.h"
> +#include "../objects/object_imp.h"
> +#include "../objects/other_imp.h"
> +#include "../objects/point_imp.h"
> +#include "../objects/polygon_imp.h"
> +#include "../objects/text_imp.h"
> +
> +
> +void AsyExporterImpVisitor::newLine()
> +{
> +  mstream << "\n";
> +}
> +
> +
> +QString AsyExporterImpVisitor::emitColor( const QColor& c )
> +{
> +  QString ret("");
> +  ret = "rgb(" + QString::number(c.red()) + "," + QString::number(c.green()) + "," + QString::number(c.blue()) + ")";
> +  return ret;
> +}
> +
> +
> +QString AsyExporterImpVisitor::emitStyle( Qt::PenStyle style )
> +{
> +  QString linetype("");
> +  if ( style == Qt::SolidLine ) {
> +    linetype = "solid";
> +  } else if ( style == Qt::DashLine ) {
> +    linetype = "dashed";
> +  } else if ( style == Qt::DotLine ) {
> +    linetype = "dotted";
> +  } else if ( style == Qt::DashDotLine ) {
> +    linetype = "dashdotted";
> +  } else if ( style == Qt::DashDotDotLine ) {
> +    linetype = "longdashdotted";
> +  }
> +  return linetype;
> +}
> +
> +
> +QString AsyExporterImpVisitor::emitCoord( const Coordinate& c )
> +{
> +  QString ret("");
> +  ret = "(" + QString::number(c.x) + "," + QString::number(c.y) + ")";
> +  return ret;
> +}
> +
> +
> +void AsyExporterImpVisitor::emitLine( const Coordinate& a, const Coordinate& b,
> +                                      const int width, const Qt::PenStyle s,
> +                                      bool vector )
> +{
> +  mstream << "path line = "
> +          << emitCoord( a )
> +          << "--"
> +          << emitCoord( b )
> +          << ";";
> +  newLine();
> +
> +  if ( vector == true )
> +  {
> +    mstream << "draw(line, "
> +	    << emitColor( mcurobj->drawer()->color() )
> +	    << "+"
> +	    << emitStyle( s )
> +	    << ", Arrow );";
> +  }
> +  else
> +  {
> +    mstream << "draw(line, "
> +	    << emitColor( mcurobj->drawer()->color() )
> +	    << "+"
> +	    << emitStyle( s )
> +	    << " );";
> +  }
> +  newLine();
> +}
> +
> +
> +double AsyExporterImpVisitor::dimRealToCoord( int dim )
> +{
> +  QRect qr( 0, 0, dim, dim );
> +  Rect r = mw.screenInfo().fromScreen( qr );
> +  return fabs( r.width() );
> +}
> +
> +
> +void AsyExporterImpVisitor::visit( ObjectHolder* obj )
> +{
> +  if ( ! obj->drawer()->shown() )
> +    return;
> +  mcurobj = obj;
> +  obj->imp()->visit( this );
> +}
> +
> +
> +void AsyExporterImpVisitor::plotGenericCurve( const CurveImp* imp )
> +{
> +  std::vector< std::vector< Coordinate > > coordlist;
> +  coordlist.push_back( std::vector< Coordinate >() );
> +  uint curid = 0;
> +
> +  Coordinate c;
> +  Coordinate prev = Coordinate::invalidCoord();
> +  for ( double i = 0.0; i <= 1.0; i += 0.0001 )
> +  {
> +    c = imp->getPoint( i, mw.document() );
> +    if ( !c.valid() )
> +    {
> +      if ( coordlist[curid].size() > 0 )
> +      {
> +        coordlist.push_back( std::vector< Coordinate >() );
> +        ++curid;
> +        prev = Coordinate::invalidCoord();
> +      }
> +      continue;
> +    }
> +    if ( ! ( ( fabs( c.x ) <= 10000 ) && ( fabs( c.y ) <= 10000 ) ) )
> +      continue;
> +    // if there's too much distance between this coordinate and the previous
> +    // one, then it's another piece of curve not joined with the rest
> +    if ( prev.valid() && ( c.distance( prev ) > 50.0 ) )
> +    {
> +      coordlist.push_back( std::vector< Coordinate >() );
> +      ++curid;
> +    }
> +    coordlist[curid].push_back( c );
> +    prev = c;
> +  }
> +  // special case for ellipse
> +  if ( const ConicImp* conic = dynamic_cast< const ConicImp* >( imp ) )
> +  {
> +    // if ellipse, close its path
> +    // THSI IS WRONG, think of ellipse arcs!!
> +    if ( conic->conicType() == 1 && coordlist.size() == 1 && coordlist[0].size() > 1 )
> +    {
> +      coordlist[0].push_back( coordlist[0][0] );
> +    }
> +  }
> +  for ( uint i = 0; i < coordlist.size(); ++i )
> +  {
> +    uint s = coordlist[i].size();
> +    // there's no point in draw curves empty or with only one point
> +    if ( s <= 1 )
> +      continue;
> +
> +    uint linelength = 13;
> +    QString tmp;
> +    mstream << "path curve = ";
> +    for ( uint j = 0; j < s; ++j )
> +    {
> +      tmp = emitCoord( coordlist[i][j] );
> +      // Avoid too long lines in the output file
> +      if(linelength + tmp.length() > maxlinelength)
> +      {
> +	linelength = tmp.length();
> +	newLine();
> +      }
> +      else
> +      {
> +	linelength += tmp.length();
> +      }
> +      mstream << tmp;
> +      if ( j < s-1 )
> +      {
> +	linelength += 2;
> +	mstream << "--";
> +      }
> +      else
> +      {
> +	mstream << ";";
> +	newLine();
> +	linelength = 0;
> +      }
> +    }
> +    mstream << "draw(curve, "
> +	    << emitColor( mcurobj->drawer()->color() )
> +	    << "+"
> +	    << emitStyle( mcurobj->drawer()->style() )
> +	    << " );";
> +    newLine();
> +  }
> +}
> +
> +
> +void AsyExporterImpVisitor::visit( const LineImp* imp )
> +{
> +  Coordinate a = imp->data().a;
> +  Coordinate b = imp->data().b;
> +  calcBorderPoints( a, b, msr );
> +
> +  int width = 1;
> +  emitLine( a, b, width, mcurobj->drawer()->style() );
> +}
> +
> +
> +void AsyExporterImpVisitor::visit( const PointImp* imp )
> +{
> +  mstream << "pair point = "
> +          << emitCoord( imp->coordinate() )
> +          << ";";
> +  newLine();
> +  mstream << "dot(point, "
> +	  << emitColor( mcurobj->drawer()->color() )
> +	  << ");";
> +  newLine();
> +}
> +
> +
> +void AsyExporterImpVisitor::visit( const TextImp* imp )
> +{
> +  // FIXME: support multiline texts...
> +  mstream << "pair anchor = "
> +          << emitCoord( imp->coordinate() )
> +          << ";";
> +  newLine();
> +  mstream << "Label l = Label(\""
> +	  << imp->text()
> +	  << "\", "
> +	  << emitColor( mcurobj-> drawer()->color() )
> +	  << ");";
> +  newLine();
> +  if ( imp->hasFrame() )
> +  {
> +    mstream << "draw(l, box, anchor, textboxmargin);";
> +  }
> +  else
> +  {
> +    mstream << "draw(l, anchor);";
> +  }
> +  newLine();
> +}
> +
> +
> +void AsyExporterImpVisitor::visit( const AngleImp* imp )
> +{
> +  const Coordinate center = imp->point();
> +  // TODO: How to choose radius size?
> +  const double radius = 0.5;
> +  double startangle = imp->startAngle();
> +  double endangle = startangle + imp->angle();
> +
> +  startangle = Goniometry::convert( startangle, Goniometry::Rad, Goniometry::Deg );
> +  endangle = Goniometry::convert( endangle, Goniometry::Rad, Goniometry::Deg );
> +  
> +  // TODO: Allow arrow tips?
> +  
> +  mstream << "path a = Arc("
> +	  << emitCoord(center)
> +	  << ", "
> +	  << radius
> +	  << ", "
> +	  << startangle
> +	  << ", "
> +	  << endangle
> +	  << " );";
> +  newLine();
> +  mstream << "draw(a, "
> +	  << emitColor( mcurobj->drawer()->color() )
> +	  << "+"
> +	  << emitStyle( mcurobj->drawer()->style() )
> +	  << " );";
> +  newLine();
> +}
> +
> +
> +void AsyExporterImpVisitor::visit( const VectorImp* imp )
> +{
> +  Coordinate a = imp->data().a;
> +  Coordinate b = imp->data().b;
> +
> +  int width = 1;
> +  emitLine( a, b, width, mcurobj->drawer()->style(), true );
> +}
> +
> +
> +void AsyExporterImpVisitor::visit( const LocusImp* imp )
> +{
> +  plotGenericCurve( imp );
> +}
> +
> +
> +void AsyExporterImpVisitor::visit( const CircleImp* imp )
> +{
> +  mstream << "pair center = "
> +          << emitCoord( imp->center() )
> +          << ";";
> +  newLine();
> +  mstream << "real radius = " << imp->radius()
> +          << ";";
> +  newLine();
> +  mstream << "path circle = Circle(center, radius);";
> +  newLine();
> +  mstream << "draw(circle, "
> +	  << emitColor( mcurobj->drawer()->color() )
> +	  << "+"
> +	  << emitStyle( mcurobj->drawer()->style() )
> +	  << " );";
> +  newLine();
> +}
> +
> +
> +void AsyExporterImpVisitor::visit( const ConicImp* imp )
> +{
> +  plotGenericCurve( imp );
> +}
> +
> +
> +void AsyExporterImpVisitor::visit( const CubicImp* )
> +{
> +  // FIXME: cubic are not drawn correctly with plotGenericCurve
> +  //  plotGenericCurve( imp );
> +}
> +
> +
> +void AsyExporterImpVisitor::visit( const SegmentImp* imp )
> +{
> +  Coordinate a = imp->data().a;
> +  Coordinate b = imp->data().b;
> +
> +  int width = 1;
> +  emitLine( a, b, width, mcurobj->drawer()->style() );
> +}
> +
> +
> +void AsyExporterImpVisitor::visit( const RayImp* imp )
> +{
> +  Coordinate a = imp->data().a;
> +  Coordinate b = imp->data().b;
> +  calcRayBorderPoints( a, b, msr );
> +
> +  int width = 1;
> +  emitLine( a, b, width, mcurobj->drawer()->style() );
> +}
> +
> +
> +void AsyExporterImpVisitor::visit( const ArcImp* imp )
> +{
> +  const Coordinate center = imp->center();
> +  const double radius = imp->radius();
> +  double startangle = imp->startAngle();
> +  double endangle = startangle + imp->angle();
> +
> +  startangle = Goniometry::convert( startangle, Goniometry::Rad, Goniometry::Deg );
> +  endangle = Goniometry::convert( endangle, Goniometry::Rad, Goniometry::Deg );
> +
> +  mstream << "path arc = Arc("
> +	  << emitCoord(center)
> +	  << ", "
> +	  << radius
> +	  << ", "
> +	  << startangle
> +	  << ", "
> +	  << endangle
> +	  << " );";
> +  newLine();
> +  mstream << "draw(arc, "
> +	  << emitColor( mcurobj->drawer()->color() )
> +	  << "+"
> +	  << emitStyle( mcurobj->drawer()->style() )
> +	  << " );";
> +  newLine();
> +}
> +
> +
> +void AsyExporterImpVisitor::visit( const FilledPolygonImp* imp )
> +{
> +  uint linelength = 15;
> +  QString tmp;
> +  mstream << "path polygon = ";
> +  std::vector<Coordinate> pts = imp->points();
> +  for ( uint i = 0; i < pts.size(); i++ )
> +  {
> +    tmp = emitCoord( pts[i] );
> +    tmp.append("--");
> +    if ( linelength + tmp.length() > maxlinelength )
> +    {
> +      newLine();
> +      linelength = tmp.length();
> +    }
> +    else
> +    {
> +      linelength += tmp.length();
> +    }
> +    mstream << tmp;
> +  }
> +  mstream << "cycle;";
> +  newLine();
> +  mstream << "fill(polygon, "
> +	  << emitColor( mcurobj->drawer()->color() )
> +	  << "+opacity(0.5) );";
> +  newLine();
> +  mstream << "draw(polygon, "
> +	  << emitColor( mcurobj->drawer()->color() )
> +	  << "+"
> +	  << emitStyle( mcurobj->drawer()->style() )
> +	  << " );";
> +  newLine();
> +}
> +
> +
> +void AsyExporterImpVisitor::visit(const ClosedPolygonalImp* imp)
> +{
> +  uint linelength = 15;
> +  QString tmp;
> +  mstream << "path polygon = ";
> +  std::vector<Coordinate> pts = imp->points();
> +  for ( uint i = 0; i < pts.size(); i++ )
> +  {
> +    tmp = emitCoord( pts[i] );
> +    tmp.append("--");
> +    if ( linelength + tmp.length() > maxlinelength )
> +    {
> +      newLine();
> +      linelength = tmp.length();
> +    }
> +    else
> +    {
> +      linelength += tmp.length();
> +    }
> +    mstream << tmp;
> +  } 
> +  mstream << "cycle;";
> +  newLine();
> +  mstream << "draw(polygon, "
> +	  << emitColor( mcurobj->drawer()->color() )
> +	  << "+"
> +	  << emitStyle( mcurobj->drawer()->style() )
> +	  << " );";
> +  newLine();
> +}
> +
> +
> +void AsyExporterImpVisitor::visit(const OpenPolygonalImp* imp)
> +{
> +  uint linelength = 15;
> +  QString tmp;
> +  mstream << "path polygon = ";
> +  std::vector<Coordinate> pts = imp->points();
> +  for ( uint i = 0; i < pts.size(); i++ )
> +  {
> +    tmp = emitCoord( pts[i] );
> +    if ( linelength + tmp.length() > maxlinelength )
> +    {
> +      newLine();
> +      linelength = tmp.length();
> +    }
> +    else
> +    {
> +      linelength += tmp.length();
> +    }
> +    mstream << tmp;
> +    if ( i < pts.size()-1 ) 
> +    {
> +      linelength += 2;
> +      mstream << "--";
> +    }
> +    else
> +    {
> +      linelength += 1;
> +      mstream << ";";
> +    }
> +  }
> +  newLine();
> +  mstream << "draw(polygon, "
> +	  << emitColor( mcurobj->drawer()->color() )
> +	  << "+"
> +	  << emitStyle( mcurobj->drawer()->style() )
> +	  << " );";
> +  newLine();
> +}
> 
> Property changes on: asyexporterimpvisitor.cc
> ___________________________________________________________________
> Added: svn:eol-style
>    + native
> 
> Index: latexexporter.cc
> ===================================================================
> --- latexexporter.cc	(revision 1224529)
> +++ latexexporter.cc	(working copy)
> @@ -16,7 +16,7 @@
>  // 02110-1301, USA.
>  
>  #include "latexexporter.h"
> -
> +#include "asyexporterimpvisitor.h"
>  #include "latexexporteroptions.h"
>  
>  #include "../kig/kig_document.h"
> @@ -1091,7 +1091,7 @@
>              stream << "\\end{document}\n";
>          }
>      }
> -    else // format == TikZ then
> +    else if (format == LatexExporterOptions::TikZ)
>      {
>        if (standalone)
>        {
> @@ -1173,7 +1173,88 @@
>          {
>            stream << "\\end{document}\n";
>          }
> -        file.close();
> +        
>      }
> +    else if (format == LatexExporterOptions::Asymptote)
> +    {
> +        const double bottom = w.showingRect().bottom();
> +        const double left = w.showingRect().left();
> +        const double height = w.showingRect().height();
> +        const double width = w.showingRect().width();
> +      
> +        if (standalone)
> +        {
> +	    // The header if we embed into latex
> +	    stream << "\\documentclass[a4paper,10pt]{article}\n";
> +	    stream << "\\usepackage{asymptote}\n";
> +	    stream << "\n";
> +	    stream << "\\pagestyle{empty}";
> +	    stream << "\n";
> +	    stream << "\\begin{document}\n";
> +        }
> +
> +	stream << "\\begin{asy}[width=\\the\\linewidth]\n";
> +	stream << "\n";
> +	stream << "import math;\n";
> +	stream << "import graph;\n";
> +	stream << "\n";
> +	stream << "real textboxmargin = 2mm;\n";
> +	stream << "\n";
> +      
> +	// grid
> +	if ( showgrid )
> +	{
> +	  // TODO: Polar grid
> +	  // vertical lines...
> +	  double startingpoint = startingpoint = static_cast<double>( KDE_TRUNC( left ) );
> +	  for ( double i = startingpoint; i < left+width; ++i )
> +	  {
> +	    stream << "draw((" << i << "," << bottom << ")--(" << i << "," << bottom+height << "),gray);\n";
> +	  }
> +	  // horizontal lines...
> +	  startingpoint = static_cast<double>( KDE_TRUNC( bottom ) );
> +	  for ( double i = startingpoint; i < bottom+height; ++i )
> +	  {
> +	    stream << "draw((" << left << "," << i << ")--(" << left+width << "," << i << "),gray);\n";
> +	  }
> +	}
> +
> +	// axes
> +	if ( showaxes )
> +	{
> +	  stream << "xaxis(\"\", Arrow);\n";
> +	  stream << "yaxis(\"\", Arrow);\n";
> +	}
> +        
> +        // Visit all the objects
> +        AsyExporterImpVisitor visitor( stream, w );
> +        
> +        for ( std::vector<ObjectHolder*>::const_iterator i = os.begin(); i != os.end(); ++i )
> +        {
> +            visitor.visit( *i );
> +        }
> +
> +        // extra frame for clipping
> +        stream << "path frame = ("<<left<<","<<bottom<<")--("
> +                                  <<left<<","<<bottom+height<<")--("
> +                                  <<left+width<<","<<bottom+height<<")--("
> +                                  <<left+width<<","<<bottom<<")--cycle;\n";
> +        
> +        if ( showframe )
> +        {
> +            stream << "draw(frame, black);\n";
> +        }
> +        stream << "clip(frame);\n";
> +        stream << "\n";
> +        stream << "\\end{asy}\n";
> +	
> +        // The file footer in case we embed into latex
> +        if ( standalone )
> +        {
> +	    stream << "\\end{document}\n";
> +        }
> +    }
> +    
> +    // And close the output file
> +    file.close();
>  }
> -// kate: indent-mode cstyle; space-indent on; indent-width 0; 
> Index: asyexporteroptionswidget.ui
> ===================================================================
> --- asyexporteroptionswidget.ui	(revision 0)
> +++ asyexporteroptionswidget.ui	(revision 0)
> @@ -0,0 +1,82 @@
> +<ui version="4.0" >
> + <class>AsyExporterOptionsWidget</class>
> + <widget class="QWidget" name="AsyExporterOptionsWidget" >
> +  <property name="geometry" >
> +   <rect>
> +    <x>0</x>
> +    <y>0</y>
> +    <width>403</width>
> +    <height>113</height>
> +   </rect>
> +  </property>
> +  <layout class="QVBoxLayout" >
> +   <property name="margin" >
> +    <number>8</number>
> +   </property>
> +   <property name="spacing" >
> +    <number>6</number>
> +   </property>
> +   <item>
> +    <widget class="QGroupBox" name="groupBox" >
> +     <property name="title" >
> +      <string>Options</string>
> +     </property>
> +     <layout class="QVBoxLayout" >
> +      <property name="margin" >
> +       <number>8</number>
> +      </property>
> +      <property name="spacing" >
> +       <number>6</number>
> +      </property>
> +      <item>
> +       <layout class="QGridLayout" >
> +        <property name="margin" >
> +         <number>0</number>
> +        </property>
> +        <property name="spacing" >
> +         <number>6</number>
> +        </property>
> +        <item row="1" column="0" >
> +         <widget class="QCheckBox" name="showFrameCheckBox" >
> +          <property name="text" >
> +           <string>Show Extra Frame</string>
> +          </property>
> +         </widget>
> +        </item>
> +        <item row="0" column="1" >
> +         <widget class="QCheckBox" name="showAxesCheckBox" >
> +          <property name="text" >
> +           <string>Show Axes</string>
> +          </property>
> +         </widget>
> +        </item>
> +        <item row="0" column="0" >
> +         <widget class="QCheckBox" name="showGridCheckBox" >
> +          <property name="text" >
> +           <string>Show Grid</string>
> +          </property>
> +         </widget>
> +        </item>
> +       </layout>
> +      </item>
> +     </layout>
> +    </widget>
> +   </item>
> +   <item>
> +    <spacer>
> +     <property name="orientation" >
> +      <enum>Qt::Vertical</enum>
> +     </property>
> +     <property name="sizeHint" >
> +      <size>
> +       <width>20</width>
> +       <height>5</height>
> +      </size>
> +     </property>
> +    </spacer>
> +   </item>
> +  </layout>
> + </widget>
> + <resources/>
> + <connections/>
> +</ui>
> \ No newline at end of file


> \documentclass[a4paper,10pt]{article}
> \usepackage{asymptote}
> 
> \pagestyle{empty}
> \begin{document}
> \begin{asy}[width=\the\linewidth]
> 
> import math;
> import graph;
> 
> real textboxmargin = 2mm;
> 
> draw((-7,-3.86232)--(-7,4.06054),gray);
> draw((-6,-3.86232)--(-6,4.06054),gray);
> draw((-5,-3.86232)--(-5,4.06054),gray);
> draw((-4,-3.86232)--(-4,4.06054),gray);
> draw((-3,-3.86232)--(-3,4.06054),gray);
> draw((-2,-3.86232)--(-2,4.06054),gray);
> draw((-1,-3.86232)--(-1,4.06054),gray);
> draw((0,-3.86232)--(0,4.06054),gray);
> draw((1,-3.86232)--(1,4.06054),gray);
> draw((2,-3.86232)--(2,4.06054),gray);
> draw((3,-3.86232)--(3,4.06054),gray);
> draw((4,-3.86232)--(4,4.06054),gray);
> draw((5,-3.86232)--(5,4.06054),gray);
> draw((6,-3.86232)--(6,4.06054),gray);
> draw((7,-3.86232)--(7,4.06054),gray);
> draw((-7.12823,-3)--(7.56687,-3),gray);
> draw((-7.12823,-2)--(7.56687,-2),gray);
> draw((-7.12823,-1)--(7.56687,-1),gray);
> draw((-7.12823,0)--(7.56687,0),gray);
> draw((-7.12823,1)--(7.56687,1),gray);
> draw((-7.12823,2)--(7.56687,2),gray);
> draw((-7.12823,3)--(7.56687,3),gray);
> draw((-7.12823,4)--(7.56687,4),gray);
> xaxis("", Arrow);
> yaxis("", Arrow);
> path curve = (4.87939,1.65106)--(4.87939,1.65117)--(4.8794,1.65128)--(4.8794,1.65139)--(4.8794,1.6515)--(4.87941,1.65162)--(4.87941,1.65173)--(4.87941,1.65184)--(4.87941,1.65195)--(4.87942,1.65206)--(4.87942,1.65217)--(4.87942,1.65228)--(4.87943,1.65239)--(4.87943,1.65251)--(4.87943,1.65262)--(4.87944,1.65273)--(4.87944,1.65284)--(4.87944,1.65295)--(4.87944,1.65306)--(4.87945,1.65317)--(4.87945,1.65329)--(4.87945,1.6534)--(4.87945,1.65351)--(4.87946,1.65362)--(4.87946,1.65373)--(4.87946,1.65384)--
> (4.87946,1.65395)--(4.87947,1.65407)--(4.87947,1.65418)--(4.87947,1.65429)--(4.87947,1.6544)--(4.87948,1.65451)--(4.87948,1.65462)--(4.87948,1.65473)--(4.87948,1.65485)--(4.87949,1.65496)--(4.87949,1.65507)--(4.87949,1.65518)--(4.87949,1.65529)--(4.8795,1.6554)--(4.8795,1.65552)--(4.8795,1.65563)--(4.8795,1.65574)--(4.8795,1.65585)--(4.87951,1.65596)--(4.87951,1.65607)--(4.87951,1.65618)--(4.87951,1.6563)--(4.87951,1.65641)--(4.87952,1.65652)--(4.87952,1.65663)--(4.87952,1.65674)--
> (4.87952,1.65685)--(4.87952,1.65697)--(4.87952,1.65708)--(4.87953,1.65719)--(4.87953,1.6573)--(4.87953,1.65741)--(4.87953,1.65752)--(4.87953,1.65764)--(4.87953,1.65775)--(4.87954,1.65786)--(4.87954,1.65797)--(4.87954,1.65808)--(4.87954,1.65819)--(4.87954,1.65831)--(4.87954,1.65842)--(4.87954,1.65853)--(4.87955,1.65864)--(4.87955,1.65875)--(4.87955,1.65886)--(4.87955,1.65898)--(4.87955,1.65909)--(4.87955,1.6592)--(4.87955,1.65931)--(4.87955,1.65942)--(4.87955,1.65953)--(4.87956,1.65965)--
> (4.87956,1.65976)--(4.87956,1.65987)--(4.87956,1.65998)--(4.87956,1.66009)--(4.87956,1.6602)--(4.87956,1.66032)--(4.87956,1.66043)--(4.87956,1.66054)--(4.87956,1.66065)--(4.87956,1.66076)--(4.87956,1.66088)--(4.87957,1.66099)--(4.87957,1.6611)--(4.87957,1.66121)--(4.87957,1.66132)--(4.87957,1.66143)--(4.87957,1.66155)--(4.87957,1.66166)--(4.87957,1.66177)--(4.87957,1.66188)--(4.87957,1.66199)--(4.87957,1.66211)--(4.87957,1.66222)--(4.87957,1.66233)--(4.87957,1.66244)--(4.87957,1.66255)--
> (4.87957,1.66267)--(4.87957,1.66278)--(4.87957,1.66289)--(4.87957,1.663)--(4.87957,1.66311)--(4.87957,1.66323)--(4.87957,1.66334)--(4.87957,1.66345)--(4.87957,1.66356)--(4.87957,1.66367)--(4.87957,1.66379)--(4.87957,1.6639)--(4.87957,1.66401)--(4.87957,1.66412)--(4.87957,1.66423)--(4.87957,1.66435)--(4.87957,1.66446)--(4.87957,1.66457)--(4.87957,1.66468)--(4.87957,1.66479)--(4.87957,1.66491)--(4.87957,1.66502)--(4.87957,1.66513)--(4.87957,1.66524)--(4.87957,1.66535)--(4.87957,1.66547)--
> (4.87957,1.66558)--(4.87957,1.66569)--(4.87957,1.6658)--(4.87957,1.66591)--(4.87957,1.66603)--(4.87957,1.66614)--(4.87956,1.66625)--(4.87956,1.66636)--(4.87956,1.66648)--(4.87956,1.66659)--(4.87956,1.6667)--(4.87956,1.66681)--(4.87956,1.66692)--(4.87956,1.66704)--(4.87956,1.66715)--(4.87956,1.66726)--(4.87956,1.66737)--(4.87955,1.66749)--(4.87955,1.6676)--(4.87955,1.66771)--(4.87955,1.66782)--(4.87955,1.66794)--(4.87955,1.66805)--(4.87955,1.66816)--(4.87955,1.66827)--(4.87955,1.66838)--
> (4.87954,1.6685)--(4.87954,1.66861)--(4.87954,1.66872)--(4.87954,1.66883)--(4.87954,1.66895)--(4.87954,1.66906)--(4.87954,1.66917)--(4.87953,1.66928)--(4.87953,1.6694)--(4.87953,1.66951)--(4.87953,1.66962)--(4.87953,1.66973)--(4.87953,1.66985)--(4.87952,1.66996)--(4.87952,1.67007)--(4.87952,1.67018)--(4.87952,1.6703)--(4.87952,1.67041)--(4.87952,1.67052)--(4.87951,1.67063)--(4.87951,1.67075)--(4.87951,1.67086)--(4.87951,1.67097)--(4.87951,1.67108)--(4.8795,1.6712)--(4.8795,1.67131)--
> (4.8795,1.67142)--(4.8795,1.67153)--(4.8795,1.67165)--(4.87949,1.67176)--(4.87949,1.67187)--(4.87949,1.67199)--(4.87949,1.6721)--(4.87948,1.67221)--(4.87948,1.67232)--(4.87948,1.67244)--(4.87948,1.67255)--(4.87947,1.67266)--(4.87947,1.67277)--(4.87947,1.67289)--(4.87947,1.673)--(4.87946,1.67311)--(4.87946,1.67323)--(4.87946,1.67334)--(4.87946,1.67345)--(4.87945,1.67356)--(4.87945,1.67368)--(4.87945,1.67379)--(4.87945,1.6739)--(4.87944,1.67402)--(4.87944,1.67413)--(4.87944,1.67424)--
> (4.87944,1.67435)--(4.87943,1.67447)--(4.87943,1.67458)--(4.87943,1.67469)--(4.87942,1.67481)--(4.87942,1.67492)--(4.87942,1.67503)--(4.87941,1.67514)--(4.87941,1.67526)--(4.87941,1.67537)--(4.8794,1.67548)--(4.8794,1.6756)--(4.8794,1.67571)--(4.8794,1.67582)--(4.87939,1.67594)--(4.87939,1.67605)--(4.87939,1.67616)--(4.87938,1.67627)--(4.87938,1.67639)--(4.87937,1.6765)--(4.87937,1.67661)--(4.87937,1.67673)--(4.87936,1.67684)--(4.87936,1.67695)--(4.87936,1.67707)--(4.87935,1.67718)--
> (4.87935,1.67729)--(4.87935,1.67741)--(4.87934,1.67752)--(4.87934,1.67763)--(4.87934,1.67775)--(4.87933,1.67786)--(4.87933,1.67797)--(4.87932,1.67809)--(4.87932,1.6782)--(4.87932,1.67831)--(4.87931,1.67843)--(4.87931,1.67854)--(4.8793,1.67865)--(4.8793,1.67877)--(4.8793,1.67888)--(4.87929,1.67899)--(4.87929,1.67911)--(4.87928,1.67922)--(4.87928,1.67933)--(4.87927,1.67945)--(4.87927,1.67956)--(4.87927,1.67967)--(4.87926,1.67979)--(4.87926,1.6799)--(4.87925,1.68001)--(4.87925,1.68013)--
> (4.87924,1.68024)--(4.87924,1.68035)--(4.87924,1.68047)--(4.87923,1.68058)--(4.87923,1.68069)--(4.87922,1.68081)--(4.87922,1.68092)--(4.87921,1.68104)--(4.87921,1.68115)--(4.8792,1.68126)--(4.8792,1.68138)--(4.87919,1.68149)--(4.87919,1.6816)--(4.87918,1.68172)--(4.87918,1.68183)--(4.87917,1.68194)--(4.87917,1.68206)--(4.87916,1.68217)--(4.87916,1.68229)--(4.87915,1.6824)--(4.87915,1.68251)--(4.87914,1.68263)--(4.87914,1.68274)--(4.87913,1.68286)--(4.87913,1.68297)--(4.87912,1.68308)--
> (4.87912,1.6832)--(4.87911,1.68331)--(4.87911,1.68342)--(4.8791,1.68354)--(4.8791,1.68365)--(4.87909,1.68377)--(4.87909,1.68388)--(4.87908,1.68399)--(4.87908,1.68411)--(4.87907,1.68422)--(4.87906,1.68434)--(4.87906,1.68445)--(4.87905,1.68456)--(4.87905,1.68468)--(4.87904,1.68479)--(4.87904,1.68491)--(4.87903,1.68502)--(4.87902,1.68513)--(4.87902,1.68525)--(4.87901,1.68536)--(4.87901,1.68548)--(4.879,1.68559)--(4.879,1.68571)--(4.87899,1.68582)--(4.87898,1.68593)--(4.87898,1.68605)--
> (4.87897,1.68616)--(4.87897,1.68628)--(4.87896,1.68639)--(4.87895,1.6865)--(4.87895,1.68662)--(4.87894,1.68673)--(4.87893,1.68685)--(4.87893,1.68696)--(4.87892,1.68708)--(4.87892,1.68719)--(4.87891,1.68731)--(4.8789,1.68742)--(4.8789,1.68753)--(4.87889,1.68765)--(4.87888,1.68776)--(4.87888,1.68788)--(4.87887,1.68799)--(4.87886,1.68811)--(4.87886,1.68822)--(4.87885,1.68834)--(4.87884,1.68845)--(4.87884,1.68856)--(4.87883,1.68868)--(4.87882,1.68879)--(4.87882,1.68891)--(4.87881,1.68902)--
> (4.8788,1.68914)--(4.8788,1.68925)--(4.87879,1.68937)--(4.87878,1.68948)--(4.87878,1.6896)--(4.87877,1.68971)--(4.87876,1.68983)--(4.87875,1.68994)--(4.87875,1.69006)--(4.87874,1.69017)--(4.87873,1.69028)--(4.87873,1.6904)--(4.87872,1.69051)--(4.87871,1.69063)--(4.8787,1.69074)--(4.8787,1.69086)--(4.87869,1.69097)--(4.87868,1.69109)--(4.87867,1.6912)--(4.87867,1.69132)--(4.87866,1.69143)--(4.87865,1.69155)--(4.87864,1.69166)--(4.87864,1.69178)--(4.87863,1.69189)--(4.87862,1.69201)--
> (4.87861,1.69212)--(4.87861,1.69224)--(4.8786,1.69235)--(4.87859,1.69247)--(4.87858,1.69258)--(4.87857,1.6927)--(4.87857,1.69281)--(4.87856,1.69293)--(4.87855,1.69304)--(4.87854,1.69316)--(4.87854,1.69327)--(4.87853,1.69339)--(4.87852,1.69351)--(4.87851,1.69362)--(4.8785,1.69374)--(4.87849,1.69385)--(4.87849,1.69397)--(4.87848,1.69408)--(4.87847,1.6942)--(4.87846,1.69431)--(4.87845,1.69443)--(4.87845,1.69454)--(4.87844,1.69466)--(4.87843,1.69477)--(4.87842,1.69489)--(4.87841,1.69501)--
> (4.8784,1.69512)--(4.87839,1.69524)--(4.87839,1.69535)--(4.87838,1.69547)--(4.87837,1.69558)--(4.87836,1.6957)--(4.87835,1.69581)--(4.87834,1.69593)--(4.87833,1.69605)--(4.87833,1.69616)--(4.87832,1.69628)--(4.87831,1.69639)--(4.8783,1.69651)--(4.87829,1.69662)--(4.87828,1.69674)--(4.87827,1.69686)--(4.87826,1.69697)--(4.87825,1.69709)--(4.87824,1.6972)--(4.87824,1.69732)--(4.87823,1.69743)--(4.87822,1.69755)--(4.87821,1.69767)--(4.8782,1.69778)--(4.87819,1.6979)--(4.87818,1.69801)--
> (4.87817,1.69813)--(4.87816,1.69825)--(4.87815,1.69836)--(4.87814,1.69848)--(4.87813,1.69859)--(4.87812,1.69871)--(4.87811,1.69883)--(4.8781,1.69894)--(4.8781,1.69906)--(4.87809,1.69917)--(4.87808,1.69929)--(4.87807,1.69941)--(4.87806,1.69952)--(4.87805,1.69964)--(4.87804,1.69976)--(4.87803,1.69987)--(4.87802,1.69999)--(4.87801,1.7001)--(4.878,1.70022)--(4.87799,1.70034)--(4.87798,1.70045)--(4.87797,1.70057)--(4.87796,1.70069)--(4.87795,1.7008)--(4.87794,1.70092)--(4.87793,1.70104)--
> (4.87792,1.70115)--(4.87791,1.70127)--(4.8779,1.70138)--(4.87789,1.7015)--(4.87788,1.70162)--(4.87787,1.70173)--(4.87786,1.70185)--(4.87784,1.70197)--(4.87783,1.70208)--(4.87782,1.7022)--(4.87781,1.70232)--(4.8778,1.70243)--(4.87779,1.70255)--(4.87778,1.70267)--(4.87777,1.70278)--(4.87776,1.7029)--(4.87775,1.70302)--(4.87774,1.70313)--(4.87773,1.70325)--(4.87772,1.70337)--(4.87771,1.70348)--(4.8777,1.7036)--(4.87768,1.70372)--(4.87767,1.70384)--(4.87766,1.70395)--(4.87765,1.70407)--
> (4.87764,1.70419)--(4.87763,1.7043)--(4.87762,1.70442)--(4.87761,1.70454)--(4.8776,1.70465)--(4.87759,1.70477)--(4.87757,1.70489)--(4.87756,1.70501)--(4.87755,1.70512)--(4.87754,1.70524)--(4.87753,1.70536)--(4.87752,1.70547)--(4.87751,1.70559)--(4.87749,1.70571)--(4.87748,1.70583)--(4.87747,1.70594)--(4.87746,1.70606)--(4.87745,1.70618)--(4.87744,1.7063)--(4.87742,1.70641)--(4.87741,1.70653)--(4.8774,1.70665)--(4.87739,1.70677)--(4.87738,1.70688)--(4.87737,1.707)--(4.87735,1.70712)--
> (4.87734,1.70724)--(4.87733,1.70735)--(4.87732,1.70747)--(4.87731,1.70759)--(4.87729,1.70771)--(4.87728,1.70782)--(4.87727,1.70794)--(4.87726,1.70806)--(4.87725,1.70818)--(4.87723,1.70829)--(4.87722,1.70841)--(4.87721,1.70853)--(4.8772,1.70865)--(4.87718,1.70877)--(4.87717,1.70888)--(4.87716,1.709)--(4.87715,1.70912)--(4.87713,1.70924)--(4.87712,1.70935)--(4.87711,1.70947)--(4.8771,1.70959)--(4.87708,1.70971)--(4.87707,1.70983)--(4.87706,1.70994)--(4.87705,1.71006)--(4.87703,1.71018)--
> (4.87702,1.7103)--(4.87701,1.71042)--(4.877,1.71054)--(4.87698,1.71065)--(4.87697,1.71077)--(4.87696,1.71089)--(4.87694,1.71101)--(4.87693,1.71113)--(4.87692,1.71124)--(4.8769,1.71136)--(4.87689,1.71148)--(4.87688,1.7116)--(4.87687,1.71172)--(4.87685,1.71184)--(4.87684,1.71195)--(4.87683,1.71207)--(4.87681,1.71219)--(4.8768,1.71231)--(4.87679,1.71243)--(4.87677,1.71255)--(4.87676,1.71267)--(4.87675,1.71278)--(4.87673,1.7129)--(4.87672,1.71302)--(4.8767,1.71314)--(4.87669,1.71326)--
> (4.87668,1.71338)--(4.87666,1.7135)--(4.87665,1.71362)--(4.87664,1.71373)--(4.87662,1.71385)--(4.87661,1.71397)--(4.87659,1.71409)--(4.87658,1.71421)--(4.87657,1.71433)--(4.87655,1.71445)--(4.87654,1.71457)--(4.87652,1.71469)--(4.87651,1.7148)--(4.8765,1.71492)--(4.87648,1.71504)--(4.87647,1.71516)--(4.87645,1.71528)--(4.87644,1.7154)--(4.87643,1.71552)--(4.87641,1.71564)--(4.8764,1.71576)--(4.87638,1.71588)--(4.87637,1.716)--(4.87635,1.71612)--(4.87634,1.71623)--(4.87632,1.71635)--
> (4.87631,1.71647)--(4.8763,1.71659)--(4.87628,1.71671)--(4.87627,1.71683)--(4.87625,1.71695)--(4.87624,1.71707)--(4.87622,1.71719)--(4.87621,1.71731)--(4.87619,1.71743)--(4.87618,1.71755)--(4.87616,1.71767)--(4.87615,1.71779)--(4.87613,1.71791)--(4.87612,1.71803)--(4.8761,1.71815)--(4.87609,1.71827)--(4.87607,1.71839)--(4.87606,1.71851)--(4.87604,1.71863)--(4.87603,1.71875)--(4.87601,1.71887)--(4.876,1.71899)--(4.87598,1.71911)--(4.87597,1.71922)--(4.87595,1.71934)--(4.87593,1.71946)--
> (4.87592,1.71958)--(4.8759,1.7197)--(4.87589,1.71983)--(4.87587,1.71995)--(4.87586,1.72007)--(4.87584,1.72019)--(4.87583,1.72031)--(4.87581,1.72043)--(4.87579,1.72055)--(4.87578,1.72067)--(4.87576,1.72079)--(4.87575,1.72091)--(4.87573,1.72103)--(4.87571,1.72115)--(4.8757,1.72127)--(4.87568,1.72139)--(4.87567,1.72151)--(4.87565,1.72163)--(4.87563,1.72175)--(4.87562,1.72187)--(4.8756,1.72199)--(4.87559,1.72211)--(4.87557,1.72223)--(4.87555,1.72235)--(4.87554,1.72247)--(4.87552,1.72259)--
> (4.8755,1.72271)--(4.87549,1.72284)--(4.87547,1.72296)--(4.87545,1.72308)--(4.87544,1.7232)--(4.87542,1.72332)--(4.87541,1.72344)--(4.87539,1.72356)--(4.87537,1.72368)--(4.87535,1.7238)--(4.87534,1.72392)--(4.87532,1.72404)--(4.8753,1.72416)--(4.87529,1.72429)--(4.87527,1.72441)--(4.87525,1.72453)--(4.87524,1.72465)--(4.87522,1.72477)--(4.8752,1.72489)--(4.87519,1.72501)--(4.87517,1.72513)--(4.87515,1.72526)--(4.87513,1.72538)--(4.87512,1.7255)--(4.8751,1.72562)--(4.87508,1.72574)--
> (4.87507,1.72586)--(4.87505,1.72598)--(4.87503,1.72611)--(4.87501,1.72623)--(4.875,1.72635)--(4.87498,1.72647)--(4.87496,1.72659)--(4.87494,1.72671)--(4.87492,1.72683)--(4.87491,1.72696)--(4.87489,1.72708)--(4.87487,1.7272)--(4.87485,1.72732)--(4.87484,1.72744)--(4.87482,1.72757)--(4.8748,1.72769)--(4.87478,1.72781)--(4.87476,1.72793)--(4.87475,1.72805)--(4.87473,1.72817)--(4.87471,1.7283)--(4.87469,1.72842)--(4.87467,1.72854)--(4.87466,1.72866)--(4.87464,1.72879)--(4.87462,1.72891)--
> (4.8746,1.72903)--(4.87458,1.72915)--(4.87456,1.72927)--(4.87455,1.7294)--(4.87453,1.72952)--(4.87451,1.72964)--(4.87449,1.72976)--(4.87447,1.72989)--(4.87445,1.73001)--(4.87443,1.73013)--(4.87442,1.73025)--(4.8744,1.73038)--(4.87438,1.7305)--(4.87436,1.73062)--(4.87434,1.73074)--(4.87432,1.73087)--(4.8743,1.73099)--(4.87428,1.73111)--(4.87427,1.73123)--(4.87425,1.73136)--(4.87423,1.73148)--(4.87421,1.7316)--(4.87419,1.73172)--(4.87417,1.73185)--(4.87415,1.73197)--(4.87413,1.73209)--
> (4.87411,1.73222)--(4.87409,1.73234)--(4.87407,1.73246)--(4.87405,1.73259)--(4.87403,1.73271)--(4.87402,1.73283)--(4.874,1.73295)--(4.87398,1.73308)--(4.87396,1.7332)--(4.87394,1.73332)--(4.87392,1.73345)--(4.8739,1.73357)--(4.87388,1.73369)--(4.87386,1.73382)--(4.87384,1.73394)--(4.87382,1.73406)--(4.8738,1.73419)--(4.87378,1.73431)--(4.87376,1.73444)--(4.87374,1.73456)--(4.87372,1.73468)--(4.8737,1.73481)--(4.87368,1.73493)--(4.87366,1.73505)--(4.87364,1.73518)--(4.87362,1.7353)--
> (4.8736,1.73542)--(4.87358,1.73555)--(4.87356,1.73567)--(4.87354,1.7358)--(4.87352,1.73592)--(4.8735,1.73604)--(4.87348,1.73617)--(4.87345,1.73629)--(4.87343,1.73642)--(4.87341,1.73654)--(4.87339,1.73666)--(4.87337,1.73679)--(4.87335,1.73691)--(4.87333,1.73704)--(4.87331,1.73716)--(4.87329,1.73729)--(4.87327,1.73741)--(4.87325,1.73753)--(4.87323,1.73766)--(4.87321,1.73778)--(4.87318,1.73791)--(4.87316,1.73803)--(4.87314,1.73816)--(4.87312,1.73828)--(4.8731,1.7384)--(4.87308,1.73853)--
> (4.87306,1.73865)--(4.87304,1.73878)--(4.87301,1.7389)--(4.87299,1.73903)--(4.87297,1.73915)--(4.87295,1.73928)--(4.87293,1.7394)--(4.87291,1.73953)--(4.87289,1.73965)--(4.87286,1.73978)--(4.87284,1.7399)--(4.87282,1.74003)--(4.8728,1.74015)--(4.87278,1.74028)--(4.87275,1.7404)--(4.87273,1.74053)--(4.87271,1.74065)--(4.87269,1.74078)--(4.87267,1.7409)--(4.87265,1.74103)--(4.87262,1.74115)--(4.8726,1.74128)--(4.87258,1.7414)--(4.87256,1.74153)--(4.87253,1.74166)--(4.87251,1.74178)--
> (4.87249,1.74191)--(4.87247,1.74203)--(4.87244,1.74216)--(4.87242,1.74228)--(4.8724,1.74241)--(4.87238,1.74253)--(4.87235,1.74266)--(4.87233,1.74279)--(4.87231,1.74291)--(4.87229,1.74304)--(4.87226,1.74316)--(4.87224,1.74329)--(4.87222,1.74342)--(4.8722,1.74354)--(4.87217,1.74367)--(4.87215,1.74379)--(4.87213,1.74392)--(4.8721,1.74405)--(4.87208,1.74417)--(4.87206,1.7443)--(4.87204,1.74442)--(4.87201,1.74455)--(4.87199,1.74468)--(4.87197,1.7448)--(4.87194,1.74493)--(4.87192,1.74506)--
> (4.8719,1.74518)--(4.87187,1.74531)--(4.87185,1.74544)--(4.87183,1.74556)--(4.8718,1.74569)--(4.87178,1.74581)--(4.87175,1.74594)--(4.87173,1.74607)--(4.87171,1.74619)--(4.87168,1.74632)--(4.87166,1.74645)--(4.87164,1.74658)--(4.87161,1.7467)--(4.87159,1.74683)--(4.87156,1.74696)--(4.87154,1.74708)--(4.87152,1.74721)--(4.87149,1.74734)--(4.87147,1.74746)--(4.87144,1.74759)--(4.87142,1.74772)--(4.8714,1.74785)--(4.87137,1.74797)--(4.87135,1.7481)--(4.87132,1.74823)--(4.8713,1.74835)--
> (4.87127,1.74848)--(4.87125,1.74861)--(4.87122,1.74874)--(4.8712,1.74886)--(4.87118,1.74899)--(4.87115,1.74912)--(4.87113,1.74925)--(4.8711,1.74938)--(4.87108,1.7495)--(4.87105,1.74963)--(4.87103,1.74976)--(4.871,1.74989)--(4.87098,1.75001)--(4.87095,1.75014)--(4.87093,1.75027)--(4.8709,1.7504)--(4.87088,1.75053)--(4.87085,1.75065)--(4.87083,1.75078)--(4.8708,1.75091)--(4.87078,1.75104)--(4.87075,1.75117)--(4.87073,1.75129)--(4.8707,1.75142)--(4.87067,1.75155)--(4.87065,1.75168)--
> (4.87062,1.75181)--(4.8706,1.75194)--(4.87057,1.75206)--(4.87055,1.75219)--(4.87052,1.75232)--(4.8705,1.75245)--(4.87047,1.75258)--(4.87044,1.75271)--(4.87042,1.75284)--(4.87039,1.75297)--(4.87037,1.75309)--(4.87034,1.75322)--(4.87031,1.75335)--(4.87029,1.75348)--(4.87026,1.75361)--(4.87024,1.75374)--(4.87021,1.75387)--(4.87018,1.754)--(4.87016,1.75413)--(4.87013,1.75425)--(4.8701,1.75438)--(4.87008,1.75451)--(4.87005,1.75464)--(4.87002,1.75477)--(4.87,1.7549)--(4.86997,1.75503)--
> (4.86994,1.75516)--(4.86992,1.75529)--(4.86989,1.75542)--(4.86986,1.75555)--(4.86984,1.75568)--(4.86981,1.75581)--(4.86978,1.75594)--(4.86976,1.75607)--(4.86973,1.7562)--(4.8697,1.75633)--(4.86968,1.75646)--(4.86965,1.75659)--(4.86962,1.75672)--(4.86959,1.75685)--(4.86957,1.75698)--(4.86954,1.75711)--(4.86951,1.75724)--(4.86949,1.75737)--(4.86946,1.7575)--(4.86943,1.75763)--(4.8694,1.75776)--(4.86938,1.75789)--(4.86935,1.75802)--(4.86932,1.75815)--(4.86929,1.75828)--(4.86926,1.75841)--
> (4.86924,1.75854)--(4.86921,1.75867)--(4.86918,1.7588)--(4.86915,1.75893)--(4.86913,1.75906)--(4.8691,1.75919)--(4.86907,1.75932)--(4.86904,1.75945)--(4.86901,1.75958)--(4.86898,1.75972)--(4.86896,1.75985)--(4.86893,1.75998)--(4.8689,1.76011)--(4.86887,1.76024)--(4.86884,1.76037)--(4.86881,1.7605)--(4.86879,1.76063)--(4.86876,1.76076)--(4.86873,1.7609)--(4.8687,1.76103)--(4.86867,1.76116)--(4.86864,1.76129)--(4.86861,1.76142)--(4.86859,1.76155)--(4.86856,1.76168)--(4.86853,1.76182)--
> (4.8685,1.76195)--(4.86847,1.76208)--(4.86844,1.76221)--(4.86841,1.76234)--(4.86838,1.76247)--(4.86835,1.76261)--(4.86832,1.76274)--(4.86829,1.76287)--(4.86827,1.763)--(4.86824,1.76313)--(4.86821,1.76327)--(4.86818,1.7634)--(4.86815,1.76353)--(4.86812,1.76366)--(4.86809,1.76379)--(4.86806,1.76393)--(4.86803,1.76406)--(4.868,1.76419)--(4.86797,1.76432)--(4.86794,1.76446)--(4.86791,1.76459)--(4.86788,1.76472)--(4.86785,1.76485)--(4.86782,1.76499)--(4.86779,1.76512)--(4.86776,1.76525)--
> (4.86773,1.76538)--(4.8677,1.76552)--(4.86767,1.76565)--(4.86764,1.76578)--(4.86761,1.76592)--(4.86758,1.76605)--(4.86755,1.76618)--(4.86752,1.76631)--(4.86749,1.76645)--(4.86746,1.76658)--(4.86743,1.76671)--(4.86739,1.76685)--(4.86736,1.76698)--(4.86733,1.76711)--(4.8673,1.76725)--(4.86727,1.76738)--(4.86724,1.76751)--(4.86721,1.76765)--(4.86718,1.76778)--(4.86715,1.76791)--(4.86712,1.76805)--(4.86709,1.76818)--(4.86705,1.76832)--(4.86702,1.76845)--(4.86699,1.76858)--(4.86696,1.76872)--
> (4.86693,1.76885)--(4.8669,1.76899)--(4.86687,1.76912)--(4.86683,1.76925)--(4.8668,1.76939)--(4.86677,1.76952)--(4.86674,1.76966)--(4.86671,1.76979)--(4.86668,1.76992)--(4.86664,1.77006)--(4.86661,1.77019)--(4.86658,1.77033)--(4.86655,1.77046)--(4.86652,1.7706)--(4.86649,1.77073)--(4.86645,1.77087)--(4.86642,1.771)--(4.86639,1.77114)--(4.86636,1.77127)--(4.86632,1.77141)--(4.86629,1.77154)--(4.86626,1.77168)--(4.86623,1.77181)--(4.86619,1.77195)--(4.86616,1.77208)--(4.86613,1.77222)--
> (4.8661,1.77235)--(4.86606,1.77249)--(4.86603,1.77262)--(4.866,1.77276)--(4.86597,1.77289)--(4.86593,1.77303)--(4.8659,1.77316)--(4.86587,1.7733)--(4.86583,1.77343)--(4.8658,1.77357)--(4.86577,1.77371)--(4.86573,1.77384)--(4.8657,1.77398)--(4.86567,1.77411)--(4.86563,1.77425)--(4.8656,1.77438)--(4.86557,1.77452)--(4.86553,1.77466)--(4.8655,1.77479)--(4.86547,1.77493)--(4.86543,1.77506)--(4.8654,1.7752)--(4.86537,1.77534)--(4.86533,1.77547)--(4.8653,1.77561)--(4.86527,1.77575)--(4.86523,1.77588)--
> (4.8652,1.77602)--(4.86516,1.77616)--(4.86513,1.77629)--(4.8651,1.77643)--(4.86506,1.77657)--(4.86503,1.7767)--(4.86499,1.77684)--(4.86496,1.77698)--(4.86492,1.77711)--(4.86489,1.77725)--(4.86485,1.77739)--(4.86482,1.77752)--(4.86479,1.77766)--(4.86475,1.7778)--(4.86472,1.77794)--(4.86468,1.77807)--(4.86465,1.77821)--(4.86461,1.77835)--(4.86458,1.77849)--(4.86454,1.77862)--(4.86451,1.77876)--(4.86447,1.7789)--(4.86444,1.77904)--(4.8644,1.77917)--(4.86437,1.77931)--(4.86433,1.77945)--
> (4.8643,1.77959)--(4.86426,1.77973)--(4.86423,1.77986)--(4.86419,1.78)--(4.86416,1.78014)--(4.86412,1.78028)--(4.86408,1.78042)--(4.86405,1.78055)--(4.86401,1.78069)--(4.86398,1.78083)--(4.86394,1.78097)--(4.86391,1.78111)--(4.86387,1.78125)--(4.86383,1.78138)--(4.8638,1.78152)--(4.86376,1.78166)--(4.86373,1.7818)--(4.86369,1.78194)--(4.86365,1.78208)--(4.86362,1.78222)--(4.86358,1.78236)--(4.86354,1.78249)--(4.86351,1.78263)--(4.86347,1.78277)--(4.86343,1.78291)--(4.8634,1.78305)--
> (4.86336,1.78319)--(4.86332,1.78333)--(4.86329,1.78347)--(4.86325,1.78361)--(4.86321,1.78375)--(4.86318,1.78389)--(4.86314,1.78403)--(4.8631,1.78417)--(4.86307,1.78431)--(4.86303,1.78445)--(4.86299,1.78459)--(4.86295,1.78473)--(4.86292,1.78487)--(4.86288,1.78501)--(4.86284,1.78515)--(4.86281,1.78529)--(4.86277,1.78543)--(4.86273,1.78557)--(4.86269,1.78571)--(4.86266,1.78585)--(4.86262,1.78599)--(4.86258,1.78613)--(4.86254,1.78627)--(4.8625,1.78641)--(4.86247,1.78655)--(4.86243,1.78669)--
> (4.86239,1.78683)--(4.86235,1.78697)--(4.86231,1.78711)--(4.86228,1.78725)--(4.86224,1.78739)--(4.8622,1.78753)--(4.86216,1.78768)--(4.86212,1.78782)--(4.86208,1.78796)--(4.86205,1.7881)--(4.86201,1.78824)--(4.86197,1.78838)--(4.86193,1.78852)--(4.86189,1.78866)--(4.86185,1.78881)--(4.86181,1.78895)--(4.86177,1.78909)--(4.86174,1.78923)--(4.8617,1.78937)--(4.86166,1.78951)--(4.86162,1.78966)--(4.86158,1.7898)--(4.86154,1.78994)--(4.8615,1.79008)--(4.86146,1.79022)--(4.86142,1.79037)--
> (4.86138,1.79051)--(4.86134,1.79065)--(4.8613,1.79079)--(4.86126,1.79093)--(4.86122,1.79108)--(4.86118,1.79122)--(4.86115,1.79136)--(4.86111,1.7915)--(4.86107,1.79165)--(4.86103,1.79179)--(4.86099,1.79193)--(4.86095,1.79208)--(4.86091,1.79222)--(4.86087,1.79236)--(4.86082,1.7925)--(4.86078,1.79265)--(4.86074,1.79279)--(4.8607,1.79293)--(4.86066,1.79308)--(4.86062,1.79322)--(4.86058,1.79336)--(4.86054,1.79351)--(4.8605,1.79365)--(4.86046,1.79379)--(4.86042,1.79394)--(4.86038,1.79408)--
> (4.86034,1.79422)--(4.8603,1.79437)--(4.86026,1.79451)--(4.86021,1.79466)--(4.86017,1.7948)--(4.86013,1.79494)--(4.86009,1.79509)--(4.86005,1.79523)--(4.86001,1.79538)--(4.85997,1.79552)--(4.85993,1.79567)--(4.85988,1.79581)--(4.85984,1.79595)--(4.8598,1.7961)--(4.85976,1.79624)--(4.85972,1.79639)--(4.85968,1.79653)--(4.85963,1.79668)--(4.85959,1.79682)--(4.85955,1.79697)--(4.85951,1.79711)--(4.85947,1.79726)--(4.85942,1.7974)--(4.85938,1.79755)--(4.85934,1.79769)--(4.8593,1.79784)--
> (4.85925,1.79798)--(4.85921,1.79813)--(4.85917,1.79827)--(4.85913,1.79842)--(4.85908,1.79856)--(4.85904,1.79871)--(4.859,1.79886)--(4.85896,1.799)--(4.85891,1.79915)--(4.85887,1.79929)--(4.85883,1.79944)--(4.85878,1.79959)--(4.85874,1.79973)--(4.8587,1.79988)--(4.85865,1.80002)--(4.85861,1.80017)--(4.85857,1.80032)--(4.85852,1.80046)--(4.85848,1.80061)--(4.85844,1.80076)--(4.85839,1.8009)--(4.85835,1.80105)--(4.85831,1.8012)--(4.85826,1.80134)--(4.85822,1.80149)--(4.85817,1.80164)--
> (4.85813,1.80178)--(4.85809,1.80193)--(4.85804,1.80208)--(4.858,1.80222)--(4.85795,1.80237)--(4.85791,1.80252)--(4.85787,1.80267)--(4.85782,1.80281)--(4.85778,1.80296)--(4.85773,1.80311)--(4.85769,1.80326)--(4.85764,1.8034)--(4.8576,1.80355)--(4.85755,1.8037)--(4.85751,1.80385)--(4.85746,1.804)--(4.85742,1.80414)--(4.85737,1.80429)--(4.85733,1.80444)--(4.85728,1.80459)--(4.85724,1.80474)--(4.85719,1.80488)--(4.85715,1.80503)--(4.8571,1.80518)--(4.85706,1.80533)--(4.85701,1.80548)--
> (4.85697,1.80563)--(4.85692,1.80578)--(4.85688,1.80592)--(4.85683,1.80607)--(4.85678,1.80622)--(4.85674,1.80637)--(4.85669,1.80652)--(4.85665,1.80667)--(4.8566,1.80682)--(4.85655,1.80697)--(4.85651,1.80712)--(4.85646,1.80727)--(4.85642,1.80742)--(4.85637,1.80757)--(4.85632,1.80772)--(4.85628,1.80787)--(4.85623,1.80802)--(4.85618,1.80817)--(4.85614,1.80832)--(4.85609,1.80846)--(4.85604,1.80862)--(4.856,1.80877)--(4.85595,1.80892)--(4.8559,1.80907)--(4.85585,1.80922)--(4.85581,1.80937)--
> (4.85576,1.80952)--(4.85571,1.80967)--(4.85567,1.80982)--(4.85562,1.80997)--(4.85557,1.81012)--(4.85552,1.81027)--(4.85548,1.81042)--(4.85543,1.81057)--(4.85538,1.81072)--(4.85533,1.81087)--(4.85529,1.81103)--(4.85524,1.81118)--(4.85519,1.81133)--(4.85514,1.81148)--(4.85509,1.81163)--(4.85504,1.81178)--(4.855,1.81193)--(4.85495,1.81209)--(4.8549,1.81224)--(4.85485,1.81239)--(4.8548,1.81254)--(4.85475,1.81269)--(4.85471,1.81284)--(4.85466,1.813)--(4.85461,1.81315)--(4.85456,1.8133)--
> (4.85451,1.81345)--(4.85446,1.81361)--(4.85441,1.81376)--(4.85436,1.81391)--(4.85431,1.81406)--(4.85427,1.81422)--(4.85422,1.81437)--(4.85417,1.81452)--(4.85412,1.81467)--(4.85407,1.81483)--(4.85402,1.81498)--(4.85397,1.81513)--(4.85392,1.81529)--(4.85387,1.81544)--(4.85382,1.81559)--(4.85377,1.81575)--(4.85372,1.8159)--(4.85367,1.81605)--(4.85362,1.81621)--(4.85357,1.81636)--(4.85352,1.81651)--(4.85347,1.81667)--(4.85342,1.81682)--(4.85337,1.81698)--(4.85332,1.81713)--(4.85327,1.81728)--
> (4.85322,1.81744)--(4.85317,1.81759)--(4.85312,1.81775)--(4.85306,1.8179)--(4.85301,1.81806)--(4.85296,1.81821)--(4.85291,1.81837)--(4.85286,1.81852)--(4.85281,1.81868)--(4.85276,1.81883)--(4.85271,1.81899)--(4.85266,1.81914)--(4.8526,1.8193)--(4.85255,1.81945)--(4.8525,1.81961)--(4.85245,1.81976)--(4.8524,1.81992)--(4.85235,1.82007)--(4.85229,1.82023)--(4.85224,1.82038)--(4.85219,1.82054)--(4.85214,1.8207)--(4.85209,1.82085)--(4.85203,1.82101)--(4.85198,1.82116)--(4.85193,1.82132)--
> (4.85188,1.82148)--(4.85182,1.82163)--(4.85177,1.82179)--(4.85172,1.82194)--(4.85167,1.8221)--(4.85161,1.82226)--(4.85156,1.82241)--(4.85151,1.82257)--(4.85145,1.82273)--(4.8514,1.82288)--(4.85135,1.82304)--(4.8513,1.8232)--(4.85124,1.82336)--(4.85119,1.82351)--(4.85114,1.82367)--(4.85108,1.82383)--(4.85103,1.82399)--(4.85097,1.82414)--(4.85092,1.8243)--(4.85087,1.82446)--(4.85081,1.82462)--(4.85076,1.82477)--(4.85071,1.82493)--(4.85065,1.82509)--(4.8506,1.82525)--(4.85054,1.82541)--
> (4.85049,1.82556)--(4.85043,1.82572)--(4.85038,1.82588)--(4.85033,1.82604)--(4.85027,1.8262)--(4.85022,1.82636)--(4.85016,1.82652)--(4.85011,1.82667)--(4.85005,1.82683)--(4.85,1.82699)--(4.84994,1.82715)--(4.84989,1.82731)--(4.84983,1.82747)--(4.84978,1.82763)--(4.84972,1.82779)--(4.84967,1.82795)--(4.84961,1.82811)--(4.84956,1.82827)--(4.8495,1.82843)--(4.84944,1.82859)--(4.84939,1.82875)--(4.84933,1.82891)--(4.84928,1.82907)--(4.84922,1.82923)--(4.84916,1.82939)--(4.84911,1.82955)--
> (4.84905,1.82971)--(4.849,1.82987)--(4.84894,1.83003)--(4.84888,1.83019)--(4.84883,1.83035)--(4.84877,1.83051)--(4.84871,1.83067)--(4.84866,1.83083)--(4.8486,1.83099)--(4.84854,1.83115)--(4.84849,1.83132)--(4.84843,1.83148)--(4.84837,1.83164)--(4.84832,1.8318)--(4.84826,1.83196)--(4.8482,1.83212)--(4.84814,1.83229)--(4.84809,1.83245)--(4.84803,1.83261)--(4.84797,1.83277)--(4.84791,1.83293)--(4.84786,1.8331)--(4.8478,1.83326)--(4.84774,1.83342)--(4.84768,1.83358)--(4.84762,1.83374)--
> (4.84756,1.83391)--(4.84751,1.83407)--(4.84745,1.83423)--(4.84739,1.8344)--(4.84733,1.83456)--(4.84727,1.83472)--(4.84721,1.83488)--(4.84716,1.83505)--(4.8471,1.83521)--(4.84704,1.83537)--(4.84698,1.83554)--(4.84692,1.8357)--(4.84686,1.83587)--(4.8468,1.83603)--(4.84674,1.83619)--(4.84668,1.83636)--(4.84662,1.83652)--(4.84656,1.83669)--(4.8465,1.83685)--(4.84645,1.83701)--(4.84639,1.83718)--(4.84633,1.83734)--(4.84627,1.83751)--(4.84621,1.83767)--(4.84615,1.83784)--(4.84609,1.838)--
> (4.84603,1.83817)--(4.84597,1.83833)--(4.8459,1.8385)--(4.84584,1.83866)--(4.84578,1.83883)--(4.84572,1.83899)--(4.84566,1.83916)--(4.8456,1.83932)--(4.84554,1.83949)--(4.84548,1.83965)--(4.84542,1.83982)--(4.84536,1.83999)--(4.8453,1.84015)--(4.84524,1.84032)--(4.84517,1.84048)--(4.84511,1.84065)--(4.84505,1.84082)--(4.84499,1.84098)--(4.84493,1.84115)--(4.84487,1.84132)--(4.8448,1.84148)--(4.84474,1.84165)--(4.84468,1.84182)--(4.84462,1.84198)--(4.84456,1.84215)--(4.84449,1.84232)--
> (4.84443,1.84249)--(4.84437,1.84265)--(4.84431,1.84282)--(4.84424,1.84299)--(4.84418,1.84316)--(4.84412,1.84332)--(4.84406,1.84349)--(4.84399,1.84366)--(4.84393,1.84383)--(4.84387,1.84399)--(4.8438,1.84416)--(4.84374,1.84433)--(4.84368,1.8445)--(4.84361,1.84467)--(4.84355,1.84484)--(4.84349,1.84501)--(4.84342,1.84517)--(4.84336,1.84534)--(4.8433,1.84551)--(4.84323,1.84568)--(4.84317,1.84585)--(4.8431,1.84602)--(4.84304,1.84619)--(4.84298,1.84636)--(4.84291,1.84653)--(4.84285,1.8467)--
> (4.84278,1.84687)--(4.84272,1.84704)--(4.84265,1.84721)--(4.84259,1.84738)--(4.84252,1.84755)--(4.84246,1.84772)--(4.84239,1.84789)--(4.84233,1.84806)--(4.84226,1.84823)--(4.8422,1.8484)--(4.84213,1.84857)--(4.84207,1.84874)--(4.842,1.84891)--(4.84194,1.84908)--(4.84187,1.84925)--(4.8418,1.84943)--(4.84174,1.8496)--(4.84167,1.84977)--(4.84161,1.84994)--(4.84154,1.85011)--(4.84147,1.85028)--(4.84141,1.85045)--(4.84134,1.85063)--(4.84128,1.8508)--(4.84121,1.85097)--(4.84114,1.85114)--
> (4.84108,1.85132)--(4.84101,1.85149)--(4.84094,1.85166)--(4.84087,1.85183)--(4.84081,1.85201)--(4.84074,1.85218)--(4.84067,1.85235)--(4.84061,1.85252)--(4.84054,1.8527)--(4.84047,1.85287)--(4.8404,1.85304)--(4.84033,1.85322)--(4.84027,1.85339)--(4.8402,1.85356)--(4.84013,1.85374)--(4.84006,1.85391)--(4.83999,1.85409)--(4.83993,1.85426)--(4.83986,1.85443)--(4.83979,1.85461)--(4.83972,1.85478)--(4.83965,1.85496)--(4.83958,1.85513)--(4.83951,1.85531)--(4.83945,1.85548)--(4.83938,1.85566)--
> (4.83931,1.85583)--(4.83924,1.85601)--(4.83917,1.85618)--(4.8391,1.85636)--(4.83903,1.85653)--(4.83896,1.85671)--(4.83889,1.85688)--(4.83882,1.85706)--(4.83875,1.85723)--(4.83868,1.85741)--(4.83861,1.85759)--(4.83854,1.85776)--(4.83847,1.85794)--(4.8384,1.85812)--(4.83833,1.85829)--(4.83826,1.85847)--(4.83819,1.85865)--(4.83812,1.85882)--(4.83805,1.859)--(4.83798,1.85918)--(4.83791,1.85935)--(4.83784,1.85953)--(4.83776,1.85971)--(4.83769,1.85989)--(4.83762,1.86006)--(4.83755,1.86024)--
> (4.83748,1.86042)--(4.83741,1.8606)--(4.83734,1.86077)--(4.83726,1.86095)--(4.83719,1.86113)--(4.83712,1.86131)--(4.83705,1.86149)--(4.83698,1.86167)--(4.8369,1.86184)--(4.83683,1.86202)--(4.83676,1.8622)--(4.83669,1.86238)--(4.83661,1.86256)--(4.83654,1.86274)--(4.83647,1.86292)--(4.83639,1.8631)--(4.83632,1.86328)--(4.83625,1.86346)--(4.83617,1.86364)--(4.8361,1.86382)--(4.83603,1.864)--(4.83595,1.86418)--(4.83588,1.86436)--(4.83581,1.86454)--(4.83573,1.86472)--(4.83566,1.8649)--
> (4.83558,1.86508)--(4.83551,1.86526)--(4.83544,1.86544)--(4.83536,1.86562)--(4.83529,1.8658)--(4.83521,1.86598)--(4.83514,1.86616)--(4.83506,1.86635)--(4.83499,1.86653)--(4.83491,1.86671)--(4.83484,1.86689)--(4.83476,1.86707)--(4.83469,1.86725)--(4.83461,1.86744)--(4.83454,1.86762)--(4.83446,1.8678)--(4.83439,1.86798)--(4.83431,1.86817)--(4.83424,1.86835)--(4.83416,1.86853)--(4.83408,1.86871)--(4.83401,1.8689)--(4.83393,1.86908)--(4.83385,1.86926)--(4.83378,1.86945)--(4.8337,1.86963)--
> (4.83362,1.86981)--(4.83355,1.87)--(4.83347,1.87018)--(4.83339,1.87037)--(4.83332,1.87055)--(4.83324,1.87073)--(4.83316,1.87092)--(4.83309,1.8711)--(4.83301,1.87129)--(4.83293,1.87147)--(4.83285,1.87166)--(4.83277,1.87184)--(4.8327,1.87203)--(4.83262,1.87221)--(4.83254,1.8724)--(4.83246,1.87258)--(4.83238,1.87277)--(4.83231,1.87295)--(4.83223,1.87314)--(4.83215,1.87333)--(4.83207,1.87351)--(4.83199,1.8737)--(4.83191,1.87388)--(4.83183,1.87407)--(4.83175,1.87426)--(4.83167,1.87444)--
> (4.83159,1.87463)--(4.83152,1.87482)--(4.83144,1.875)--(4.83136,1.87519)--(4.83128,1.87538)--(4.8312,1.87557)--(4.83112,1.87575)--(4.83104,1.87594)--(4.83096,1.87613)--(4.83088,1.87632)--(4.8308,1.8765)--(4.83071,1.87669)--(4.83063,1.87688)--(4.83055,1.87707)--(4.83047,1.87726)--(4.83039,1.87745)--(4.83031,1.87763)--(4.83023,1.87782)--(4.83015,1.87801)--(4.83007,1.8782)--(4.82998,1.87839)--(4.8299,1.87858)--(4.82982,1.87877)--(4.82974,1.87896)--(4.82966,1.87915)--(4.82958,1.87934)--
> (4.82949,1.87953)--(4.82941,1.87972)--(4.82933,1.87991)--(4.82925,1.8801)--(4.82916,1.88029)--(4.82908,1.88048)--(4.829,1.88067)--(4.82891,1.88086)--(4.82883,1.88105)--(4.82875,1.88124)--(4.82867,1.88143)--(4.82858,1.88163)--(4.8285,1.88182)--(4.82841,1.88201)--(4.82833,1.8822)--(4.82825,1.88239)--(4.82816,1.88258)--(4.82808,1.88278)--(4.82799,1.88297)--(4.82791,1.88316)--(4.82783,1.88335)--(4.82774,1.88355)--(4.82766,1.88374)--(4.82757,1.88393)--(4.82749,1.88412)--(4.8274,1.88432)--
> (4.82732,1.88451)--(4.82723,1.8847)--(4.82715,1.8849)--(4.82706,1.88509)--(4.82698,1.88529)--(4.82689,1.88548)--(4.8268,1.88567)--(4.82672,1.88587)--(4.82663,1.88606)--(4.82655,1.88626)--(4.82646,1.88645)--(4.82637,1.88665)--(4.82629,1.88684)--(4.8262,1.88704)--(4.82611,1.88723)--(4.82603,1.88743)--(4.82594,1.88762)--(4.82585,1.88782)--(4.82577,1.88801)--(4.82568,1.88821)--(4.82559,1.88841)--(4.8255,1.8886)--(4.82542,1.8888)--(4.82533,1.88899)--(4.82524,1.88919)--(4.82515,1.88939)--
> (4.82506,1.88958)--(4.82497,1.88978)--(4.82489,1.88998)--(4.8248,1.89018)--(4.82471,1.89037)--(4.82462,1.89057)--(4.82453,1.89077)--(4.82444,1.89097)--(4.82435,1.89116)--(4.82426,1.89136)--(4.82417,1.89156)--(4.82409,1.89176)--(4.824,1.89196)--(4.82391,1.89216)--(4.82382,1.89235)--(4.82373,1.89255)--(4.82364,1.89275)--(4.82355,1.89295)--(4.82346,1.89315)--(4.82337,1.89335)--(4.82327,1.89355)--(4.82318,1.89375)--(4.82309,1.89395)--(4.823,1.89415)--(4.82291,1.89435)--(4.82282,1.89455)--
> (4.82273,1.89475)--(4.82264,1.89495)--(4.82255,1.89515)--(4.82245,1.89535)--(4.82236,1.89555)--(4.82227,1.89575)--(4.82218,1.89596)--(4.82209,1.89616)--(4.82199,1.89636)--(4.8219,1.89656)--(4.82181,1.89676)--(4.82172,1.89696)--(4.82162,1.89717)--(4.82153,1.89737)--(4.82144,1.89757)--(4.82134,1.89777)--(4.82125,1.89798)--(4.82116,1.89818)--(4.82106,1.89838)--(4.82097,1.89859)--(4.82088,1.89879)--(4.82078,1.89899)--(4.82069,1.8992)--(4.82059,1.8994)--(4.8205,1.8996)--(4.8204,1.89981)--
> (4.82031,1.90001)--(4.82021,1.90022)--(4.82012,1.90042)--(4.82002,1.90063)--(4.81993,1.90083)--(4.81983,1.90104)--(4.81974,1.90124)--(4.81964,1.90145)--(4.81955,1.90165)--(4.81945,1.90186)--(4.81936,1.90206)--(4.81926,1.90227)--(4.81916,1.90248)--(4.81907,1.90268)--(4.81897,1.90289)--(4.81887,1.90309)--(4.81878,1.9033)--(4.81868,1.90351)--(4.81858,1.90371)--(4.81849,1.90392)--(4.81839,1.90413)--(4.81829,1.90434)--(4.81819,1.90454)--(4.8181,1.90475)--(4.818,1.90496)--(4.8179,1.90517)--
> (4.8178,1.90538)--(4.8177,1.90558)--(4.81761,1.90579)--(4.81751,1.906)--(4.81741,1.90621)--(4.81731,1.90642)--(4.81721,1.90663)--(4.81711,1.90684)--(4.81701,1.90705)--(4.81691,1.90726)--(4.81681,1.90747)--(4.81672,1.90768)--(4.81662,1.90789)--(4.81652,1.9081)--(4.81642,1.90831)--(4.81632,1.90852)--(4.81622,1.90873)--(4.81611,1.90894)--(4.81601,1.90915)--(4.81591,1.90936)--(4.81581,1.90957)--(4.81571,1.90978)--(4.81561,1.91)--(4.81551,1.91021)--(4.81541,1.91042)--(4.81531,1.91063)--
> (4.81521,1.91084)--(4.8151,1.91106)--(4.815,1.91127)--(4.8149,1.91148)--(4.8148,1.9117)--(4.81469,1.91191)--(4.81459,1.91212)--(4.81449,1.91234)--(4.81439,1.91255)--(4.81428,1.91276)--(4.81418,1.91298)--(4.81408,1.91319)--(4.81397,1.91341)--(4.81387,1.91362)--(4.81377,1.91383)--(4.81366,1.91405)--(4.81356,1.91426)--(4.81346,1.91448)--(4.81335,1.91469)--(4.81325,1.91491)--(4.81314,1.91513)--(4.81304,1.91534)--(4.81293,1.91556)--(4.81283,1.91577)--(4.81272,1.91599)--(4.81262,1.91621)--
> (4.81251,1.91642)--(4.81241,1.91664)--(4.8123,1.91686)--(4.81219,1.91707)--(4.81209,1.91729)--(4.81198,1.91751)--(4.81188,1.91773)--(4.81177,1.91794)--(4.81166,1.91816)--(4.81156,1.91838)--(4.81145,1.9186)--(4.81134,1.91882)--(4.81124,1.91904)--(4.81113,1.91925)--(4.81102,1.91947)--(4.81091,1.91969)--(4.81081,1.91991)--(4.8107,1.92013)--(4.81059,1.92035)--(4.81048,1.92057)--(4.81037,1.92079)--(4.81026,1.92101)--(4.81016,1.92123)--(4.81005,1.92145)--(4.80994,1.92167)--(4.80983,1.92189)--
> (4.80972,1.92211)--(4.80961,1.92234)--(4.8095,1.92256)--(4.80939,1.92278)--(4.80928,1.923)--(4.80917,1.92322)--(4.80906,1.92344)--(4.80895,1.92367)--(4.80884,1.92389)--(4.80873,1.92411)--(4.80862,1.92434)--(4.80851,1.92456)--(4.8084,1.92478)--(4.80828,1.92501)--(4.80817,1.92523)--(4.80806,1.92545)--(4.80795,1.92568)--(4.80784,1.9259)--(4.80773,1.92612)--(4.80761,1.92635)--(4.8075,1.92657)--(4.80739,1.9268)--(4.80728,1.92702)--(4.80716,1.92725)--(4.80705,1.92747)--(4.80694,1.9277)--
> (4.80682,1.92793)--(4.80671,1.92815)--(4.8066,1.92838)--(4.80648,1.9286)--(4.80637,1.92883)--(4.80625,1.92906)--(4.80614,1.92928)--(4.80603,1.92951)--(4.80591,1.92974)--(4.8058,1.92997)--(4.80568,1.93019)--(4.80557,1.93042)--(4.80545,1.93065)--(4.80533,1.93088)--(4.80522,1.93111)--(4.8051,1.93134)--(4.80499,1.93156)--(4.80487,1.93179)--(4.80476,1.93202)--(4.80464,1.93225)--(4.80452,1.93248)--(4.80441,1.93271)--(4.80429,1.93294)--(4.80417,1.93317)--(4.80405,1.9334)--(4.80394,1.93363)--
> (4.80382,1.93386)--(4.8037,1.93409)--(4.80358,1.93432)--(4.80346,1.93456)--(4.80335,1.93479)--(4.80323,1.93502)--(4.80311,1.93525)--(4.80299,1.93548)--(4.80287,1.93571)--(4.80275,1.93595)--(4.80263,1.93618)--(4.80251,1.93641)--(4.80239,1.93665)--(4.80227,1.93688)--(4.80215,1.93711)--(4.80203,1.93735)--(4.80191,1.93758)--(4.80179,1.93781)--(4.80167,1.93805)--(4.80155,1.93828)--(4.80143,1.93852)--(4.80131,1.93875)--(4.80119,1.93899)--(4.80107,1.93922)--(4.80094,1.93946)--(4.80082,1.93969)--
> (4.8007,1.93993)--(4.80058,1.94016)--(4.80046,1.9404)--(4.80033,1.94064)--(4.80021,1.94087)--(4.80009,1.94111)--(4.79996,1.94135)--(4.79984,1.94158)--(4.79972,1.94182)--(4.79959,1.94206)--(4.79947,1.9423)--(4.79935,1.94254)--(4.79922,1.94277)--(4.7991,1.94301)--(4.79897,1.94325)--(4.79885,1.94349)--(4.79872,1.94373)--(4.7986,1.94397)--(4.79847,1.94421)--(4.79835,1.94445)--(4.79822,1.94469)--(4.7981,1.94493)--(4.79797,1.94517)--(4.79784,1.94541)--(4.79772,1.94565)--(4.79759,1.94589)--
> (4.79746,1.94613)--(4.79734,1.94637)--(4.79721,1.94661)--(4.79708,1.94686)--(4.79696,1.9471)--(4.79683,1.94734)--(4.7967,1.94758)--(4.79657,1.94782)--(4.79644,1.94807)--(4.79631,1.94831)--(4.79619,1.94855)--(4.79606,1.9488)--(4.79593,1.94904)--(4.7958,1.94928)--(4.79567,1.94953)--(4.79554,1.94977)--(4.79541,1.95002)--(4.79528,1.95026)--(4.79515,1.95051)--(4.79502,1.95075)--(4.79489,1.951)--(4.79476,1.95124)--(4.79463,1.95149)--(4.7945,1.95174)--(4.79437,1.95198)--(4.79423,1.95223)--
> (4.7941,1.95248)--(4.79397,1.95272)--(4.79384,1.95297)--(4.79371,1.95322)--(4.79357,1.95346)--(4.79344,1.95371)--(4.79331,1.95396)--(4.79318,1.95421)--(4.79304,1.95446)--(4.79291,1.95471)--(4.79278,1.95496)--(4.79264,1.9552)--(4.79251,1.95545)--(4.79237,1.9557)--(4.79224,1.95595)--(4.79211,1.9562)--(4.79197,1.95645)--(4.79184,1.9567)--(4.7917,1.95695)--(4.79157,1.95721)--(4.79143,1.95746)--(4.79129,1.95771)--(4.79116,1.95796)--(4.79102,1.95821)--(4.79089,1.95846)--(4.79075,1.95872)--
> (4.79061,1.95897)--(4.79048,1.95922)--(4.79034,1.95948)--(4.7902,1.95973)--(4.79006,1.95998)--(4.78993,1.96024)--(4.78979,1.96049)--(4.78965,1.96074)--(4.78951,1.961)--(4.78937,1.96125)--(4.78923,1.96151)--(4.78909,1.96176)--(4.78896,1.96202)--(4.78882,1.96227)--(4.78868,1.96253)--(4.78854,1.96279)--(4.7884,1.96304)--(4.78826,1.9633)--(4.78812,1.96356)--(4.78797,1.96381)--(4.78783,1.96407)--(4.78769,1.96433)--(4.78755,1.96459)--(4.78741,1.96484)--(4.78727,1.9651)--(4.78713,1.96536)--
> (4.78698,1.96562)--(4.78684,1.96588)--(4.7867,1.96614)--(4.78656,1.9664)--(4.78641,1.96666)--(4.78627,1.96692)--(4.78613,1.96718)--(4.78598,1.96744)--(4.78584,1.9677)--(4.7857,1.96796)--(4.78555,1.96822)--(4.78541,1.96848)--(4.78526,1.96874)--(4.78512,1.96901)--(4.78497,1.96927)--(4.78483,1.96953)--(4.78468,1.96979)--(4.78454,1.97006)--(4.78439,1.97032)--(4.78424,1.97058)--(4.7841,1.97085)--(4.78395,1.97111)--(4.7838,1.97137)--(4.78366,1.97164)--(4.78351,1.9719)--(4.78336,1.97217)--
> (4.78321,1.97243)--(4.78307,1.9727)--(4.78292,1.97296)--(4.78277,1.97323)--(4.78262,1.9735)--(4.78247,1.97376)--(4.78232,1.97403)--(4.78217,1.9743)--(4.78202,1.97456)--(4.78187,1.97483)--(4.78172,1.9751)--(4.78157,1.97537)--(4.78142,1.97563)--(4.78127,1.9759)--(4.78112,1.97617)--(4.78097,1.97644)--(4.78082,1.97671)--(4.78067,1.97698)--(4.78052,1.97725)--(4.78036,1.97752)--(4.78021,1.97779)--(4.78006,1.97806)--(4.77991,1.97833)--(4.77975,1.9786)--(4.7796,1.97887)--(4.77945,1.97915)--
> (4.77929,1.97942)--(4.77914,1.97969)--(4.77898,1.97996)--(4.77883,1.98024)--(4.77868,1.98051)--(4.77852,1.98078)--(4.77837,1.98106)--(4.77821,1.98133)--(4.77805,1.9816)--(4.7779,1.98188)--(4.77774,1.98215)--(4.77759,1.98243)--(4.77743,1.9827)--(4.77727,1.98298)--(4.77712,1.98325)--(4.77696,1.98353)--(4.7768,1.98381)--(4.77664,1.98408)--(4.77649,1.98436)--(4.77633,1.98464)--(4.77617,1.98491)--(4.77601,1.98519)--(4.77585,1.98547)--(4.77569,1.98575)--(4.77553,1.98603)--(4.77537,1.9863)--
> (4.77521,1.98658)--(4.77505,1.98686)--(4.77489,1.98714)--(4.77473,1.98742)--(4.77457,1.9877)--(4.77441,1.98798)--(4.77425,1.98826)--(4.77409,1.98854)--(4.77392,1.98883)--(4.77376,1.98911)--(4.7736,1.98939)--(4.77344,1.98967)--(4.77327,1.98995)--(4.77311,1.99024)--(4.77295,1.99052)--(4.77278,1.9908)--(4.77262,1.99109)--(4.77246,1.99137)--(4.77229,1.99165)--(4.77213,1.99194)--(4.77196,1.99222)--(4.7718,1.99251)--(4.77163,1.99279)--(4.77147,1.99308)--(4.7713,1.99337)--(4.77113,1.99365)--
> (4.77097,1.99394)--(4.7708,1.99422)--(4.77063,1.99451)--(4.77047,1.9948)--(4.7703,1.99509)--(4.77013,1.99537)--(4.76996,1.99566)--(4.76979,1.99595)--(4.76963,1.99624)--(4.76946,1.99653)--(4.76929,1.99682)--(4.76912,1.99711)--(4.76895,1.9974)--(4.76878,1.99769)--(4.76861,1.99798)--(4.76844,1.99827)--(4.76827,1.99856)--(4.7681,1.99885)--(4.76793,1.99915)--(4.76775,1.99944)--(4.76758,1.99973)--(4.76741,2.00002)--(4.76724,2.00032)--(4.76706,2.00061)--(4.76689,2.0009)--(4.76672,2.0012)--
> (4.76655,2.00149)--(4.76637,2.00179)--(4.7662,2.00208)--(4.76602,2.00238)--(4.76585,2.00267)--(4.76567,2.00297)--(4.7655,2.00326)--(4.76532,2.00356)--(4.76515,2.00386)--(4.76497,2.00415)--(4.7648,2.00445)--(4.76462,2.00475)--(4.76444,2.00505)--(4.76427,2.00535)--(4.76409,2.00564)--(4.76391,2.00594)--(4.76373,2.00624)--(4.76356,2.00654)--(4.76338,2.00684)--(4.7632,2.00714)--(4.76302,2.00744)--(4.76284,2.00774)--(4.76266,2.00805)--(4.76248,2.00835)--(4.7623,2.00865)--(4.76212,2.00895)--
> (4.76194,2.00925)--(4.76176,2.00956)--(4.76158,2.00986)--(4.7614,2.01016)--(4.76121,2.01047)--(4.76103,2.01077)--(4.76085,2.01108)--(4.76067,2.01138)--(4.76048,2.01169)--(4.7603,2.01199)--(4.76012,2.0123)--(4.75993,2.0126)--(4.75975,2.01291)--(4.75956,2.01322)--(4.75938,2.01352)--(4.75919,2.01383)--(4.75901,2.01414)--(4.75882,2.01445)--(4.75864,2.01476)--(4.75845,2.01507)--(4.75826,2.01538)--(4.75808,2.01568)--(4.75789,2.01599)--(4.7577,2.0163)--(4.75752,2.01662)--(4.75733,2.01693)--
> (4.75714,2.01724)--(4.75695,2.01755)--(4.75676,2.01786)--(4.75657,2.01817)--(4.75638,2.01849)--(4.75619,2.0188)--(4.756,2.01911)--(4.75581,2.01943)--(4.75562,2.01974)--(4.75543,2.02005)--(4.75524,2.02037)--(4.75505,2.02068)--(4.75485,2.021)--(4.75466,2.02132)--(4.75447,2.02163)--(4.75428,2.02195)--(4.75408,2.02227)--(4.75389,2.02258)--(4.7537,2.0229)--(4.7535,2.02322)--(4.75331,2.02354)--(4.75311,2.02385)--(4.75292,2.02417)--(4.75272,2.02449)--(4.75252,2.02481)--(4.75233,2.02513)--
> (4.75213,2.02545)--(4.75194,2.02577)--(4.75174,2.0261)--(4.75154,2.02642)--(4.75134,2.02674)--(4.75114,2.02706)--(4.75095,2.02738)--(4.75075,2.02771)--(4.75055,2.02803)--(4.75035,2.02835)--(4.75015,2.02868)--(4.74995,2.029)--(4.74975,2.02933)--(4.74955,2.02965)--(4.74935,2.02998)--(4.74915,2.0303)--(4.74894,2.03063)--(4.74874,2.03096)--(4.74854,2.03128)--(4.74834,2.03161)--(4.74813,2.03194)--(4.74793,2.03227)--(4.74773,2.0326)--(4.74752,2.03292)--(4.74732,2.03325)--(4.74711,2.03358)--
> (4.74691,2.03391)--(4.7467,2.03424)--(4.7465,2.03458)--(4.74629,2.03491)--(4.74608,2.03524)--(4.74588,2.03557)--(4.74567,2.0359)--(4.74546,2.03624)--(4.74525,2.03657)--(4.74505,2.0369)--(4.74484,2.03724)--(4.74463,2.03757)--(4.74442,2.03791)--(4.74421,2.03824)--(4.744,2.03858)--(4.74379,2.03891)--(4.74358,2.03925)--(4.74337,2.03958)--(4.74316,2.03992)--(4.74295,2.04026)--(4.74273,2.0406)--(4.74252,2.04094)--(4.74231,2.04127)--(4.7421,2.04161)--(4.74188,2.04195)--(4.74167,2.04229)--
> (4.74145,2.04263)--(4.74124,2.04297)--(4.74102,2.04332)--(4.74081,2.04366)--(4.74059,2.044)--(4.74038,2.04434)--(4.74016,2.04468)--(4.73994,2.04503)--(4.73973,2.04537)--(4.73951,2.04571)--(4.73929,2.04606)--(4.73907,2.0464)--(4.73886,2.04675)--(4.73864,2.04709)--(4.73842,2.04744)--(4.7382,2.04779)--(4.73798,2.04813)--(4.73776,2.04848)--(4.73754,2.04883)--(4.73731,2.04918)--(4.73709,2.04953)--(4.73687,2.04987)--(4.73665,2.05022)--(4.73643,2.05057)--(4.7362,2.05092)--(4.73598,2.05128)--
> (4.73576,2.05163)--(4.73553,2.05198)--(4.73531,2.05233)--(4.73508,2.05268)--(4.73486,2.05304)--(4.73463,2.05339)--(4.7344,2.05374)--(4.73418,2.0541)--(4.73395,2.05445)--(4.73372,2.05481)--(4.7335,2.05516)--(4.73327,2.05552)--(4.73304,2.05587)--(4.73281,2.05623)--(4.73258,2.05659)--(4.73235,2.05695)--(4.73212,2.0573)--(4.73189,2.05766)--(4.73166,2.05802)--(4.73143,2.05838)--(4.7312,2.05874)--(4.73097,2.0591)--(4.73073,2.05946)--(4.7305,2.05982)--(4.73027,2.06018)--(4.73003,2.06055)--
> (4.7298,2.06091)--(4.72957,2.06127)--(4.72933,2.06164)--(4.7291,2.062)--(4.72886,2.06236)--(4.72862,2.06273)--(4.72839,2.06309)--(4.72815,2.06346)--(4.72791,2.06383)--(4.72767,2.06419)--(4.72744,2.06456)--(4.7272,2.06493)--(4.72696,2.0653)--(4.72672,2.06566)--(4.72648,2.06603)--(4.72624,2.0664)--(4.726,2.06677)--(4.72576,2.06714)--(4.72552,2.06751)--(4.72527,2.06788)--(4.72503,2.06826)--(4.72479,2.06863)--(4.72455,2.069)--(4.7243,2.06937)--(4.72406,2.06975)--(4.72381,2.07012)--(4.72357,2.0705)--
> (4.72332,2.07087)--(4.72308,2.07125)--(4.72283,2.07162)--(4.72259,2.072)--(4.72234,2.07238)--(4.72209,2.07276)--(4.72184,2.07313)--(4.72159,2.07351)--(4.72135,2.07389)--(4.7211,2.07427)--(4.72085,2.07465)--(4.7206,2.07503)--(4.72035,2.07541)--(4.72009,2.07579)--(4.71984,2.07618)--(4.71959,2.07656)--(4.71934,2.07694)--(4.71909,2.07733)--(4.71883,2.07771)--(4.71858,2.07809)--(4.71832,2.07848)--(4.71807,2.07886)--(4.71782,2.07925)--(4.71756,2.07964)--(4.7173,2.08002)--(4.71705,2.08041)--
> (4.71679,2.0808)--(4.71653,2.08119)--(4.71627,2.08158)--(4.71602,2.08197)--(4.71576,2.08236)--(4.7155,2.08275)--(4.71524,2.08314)--(4.71498,2.08353)--(4.71472,2.08392)--(4.71446,2.08432)--(4.7142,2.08471)--(4.71393,2.0851)--(4.71367,2.0855)--(4.71341,2.08589)--(4.71314,2.08629)--(4.71288,2.08668)--(4.71262,2.08708)--(4.71235,2.08748)--(4.71209,2.08787)--(4.71182,2.08827)--(4.71155,2.08867)--(4.71129,2.08907)--(4.71102,2.08947)--(4.71075,2.08987)--(4.71048,2.09027)--(4.71021,2.09067)--
> (4.70995,2.09107)--(4.70968,2.09147)--(4.70941,2.09188)--(4.70914,2.09228)--(4.70886,2.09268)--(4.70859,2.09309)--(4.70832,2.09349)--(4.70805,2.0939)--(4.70777,2.09431)--(4.7075,2.09471)--(4.70723,2.09512)--(4.70695,2.09553)--(4.70668,2.09594)--(4.7064,2.09635)--(4.70612,2.09675)--(4.70585,2.09716)--(4.70557,2.09758)--(4.70529,2.09799)--(4.70501,2.0984)--(4.70474,2.09881)--(4.70446,2.09922)--(4.70418,2.09964)--(4.7039,2.10005)--(4.70362,2.10047)--(4.70333,2.10088)--(4.70305,2.1013)--
> (4.70277,2.10171)--(4.70249,2.10213)--(4.7022,2.10255)--(4.70192,2.10297)--(4.70164,2.10338)--(4.70135,2.1038)--(4.70106,2.10422)--(4.70078,2.10464)--(4.70049,2.10506)--(4.70021,2.10549)--(4.69992,2.10591)--(4.69963,2.10633)--(4.69934,2.10675)--(4.69905,2.10718)--(4.69876,2.1076)--(4.69847,2.10803)--(4.69818,2.10845)--(4.69789,2.10888)--(4.6976,2.10931)--(4.6973,2.10973)--(4.69701,2.11016)--(4.69672,2.11059)--(4.69642,2.11102)--(4.69613,2.11145)--(4.69583,2.11188)--(4.69554,2.11231)--
> (4.69524,2.11274)--(4.69494,2.11318)--(4.69465,2.11361)--(4.69435,2.11404)--(4.69405,2.11448)--(4.69375,2.11491)--(4.69345,2.11535)--(4.69315,2.11578)--(4.69285,2.11622)--(4.69255,2.11666)--(4.69225,2.1171)--(4.69194,2.11754)--(4.69164,2.11797)--(4.69134,2.11841)--(4.69103,2.11886)--(4.69073,2.1193)--(4.69042,2.11974)--(4.69012,2.12018)--(4.68981,2.12062)--(4.6895,2.12107)--(4.68919,2.12151)--(4.68889,2.12196)--(4.68858,2.1224)--(4.68827,2.12285)--(4.68796,2.1233)--(4.68765,2.12374)--
> (4.68733,2.12419)--(4.68702,2.12464)--(4.68671,2.12509)--(4.6864,2.12554)--(4.68608,2.12599)--(4.68577,2.12645)--(4.68545,2.1269)--(4.68514,2.12735)--(4.68482,2.1278)--(4.68451,2.12826)--(4.68419,2.12871)--(4.68387,2.12917)--(4.68355,2.12963)--(4.68323,2.13008)--(4.68291,2.13054)--(4.68259,2.131)--(4.68227,2.13146)--(4.68195,2.13192)--(4.68163,2.13238)--(4.6813,2.13284)--(4.68098,2.1333)--(4.68066,2.13376)--(4.68033,2.13423)--(4.68001,2.13469)--(4.67968,2.13516)--(4.67935,2.13562)--
> (4.67902,2.13609)--(4.6787,2.13655)--(4.67837,2.13702)--(4.67804,2.13749)--(4.67771,2.13796)--(4.67738,2.13843)--(4.67705,2.1389)--(4.67672,2.13937)--(4.67638,2.13984)--(4.67605,2.14031)--(4.67572,2.14079)--(4.67538,2.14126)--(4.67505,2.14174)--(4.67471,2.14221)--(4.67437,2.14269)--(4.67404,2.14316)--(4.6737,2.14364)--(4.67336,2.14412)--(4.67302,2.1446)--(4.67268,2.14508)--(4.67234,2.14556)--(4.672,2.14604)--(4.67166,2.14652)--(4.67131,2.147)--(4.67097,2.14749)--(4.67063,2.14797)--
> (4.67028,2.14846)--(4.66994,2.14894)--(4.66959,2.14943)--(4.66924,2.14992)--(4.6689,2.1504)--(4.66855,2.15089)--(4.6682,2.15138)--(4.66785,2.15187)--(4.6675,2.15236)--(4.66715,2.15286)--(4.6668,2.15335)--(4.66645,2.15384)--(4.66609,2.15434)--(4.66574,2.15483)--(4.66539,2.15533)--(4.66503,2.15582)--(4.66467,2.15632)--(4.66432,2.15682)--(4.66396,2.15732)--(4.6636,2.15782)--(4.66324,2.15832)--(4.66288,2.15882)--(4.66252,2.15932)--(4.66216,2.15982)--(4.6618,2.16033)--(4.66144,2.16083)--
> (4.66108,2.16134)--(4.66071,2.16184)--(4.66035,2.16235)--(4.65998,2.16286)--(4.65962,2.16337)--(4.65925,2.16387)--(4.65888,2.16438)--(4.65851,2.1649)--(4.65814,2.16541)--(4.65777,2.16592)--(4.6574,2.16643)--(4.65703,2.16695)--(4.65666,2.16746)--(4.65629,2.16798)--(4.65591,2.16849)--(4.65554,2.16901)--(4.65517,2.16953)--(4.65479,2.17005)--(4.65441,2.17057)--(4.65404,2.17109)--(4.65366,2.17161)--(4.65328,2.17214)--(4.6529,2.17266)--(4.65252,2.17318)--(4.65214,2.17371)--(4.65175,2.17423)--
> (4.65137,2.17476)--(4.65099,2.17529)--(4.6506,2.17582)--(4.65022,2.17635)--(4.64983,2.17688)--(4.64944,2.17741)--(4.64906,2.17794)--(4.64867,2.17847)--(4.64828,2.17901)--(4.64789,2.17954)--(4.6475,2.18008)--(4.64711,2.18062)--(4.64671,2.18115)--(4.64632,2.18169)--(4.64593,2.18223)--(4.64553,2.18277)--(4.64513,2.18331)--(4.64474,2.18385)--(4.64434,2.1844)--(4.64394,2.18494)--(4.64354,2.18549)--(4.64314,2.18603)--(4.64274,2.18658)--(4.64234,2.18713)--(4.64194,2.18767)--(4.64153,2.18822)--
> (4.64113,2.18877)--(4.64072,2.18932)--(4.64032,2.18988)--(4.63991,2.19043)--(4.6395,2.19098)--(4.63909,2.19154)--(4.63868,2.1921)--(4.63827,2.19265)--(4.63786,2.19321)--(4.63745,2.19377)--(4.63704,2.19433)--(4.63662,2.19489)--(4.63621,2.19545)--(4.63579,2.19601)--(4.63538,2.19658)--(4.63496,2.19714)--(4.63454,2.19771)--(4.63412,2.19827)--(4.6337,2.19884)--(4.63328,2.19941)--(4.63286,2.19998)--(4.63244,2.20055)--(4.63201,2.20112)--(4.63159,2.20169)--(4.63116,2.20227)--(4.63074,2.20284)--
> (4.63031,2.20342)--(4.62988,2.20399)--(4.62945,2.20457)--(4.62902,2.20515)--(4.62859,2.20573)--(4.62816,2.20631)--(4.62772,2.20689)--(4.62729,2.20747)--(4.62686,2.20806)--(4.62642,2.20864)--(4.62598,2.20923)--(4.62554,2.20981)--(4.62511,2.2104)--(4.62467,2.21099)--(4.62423,2.21158)--(4.62378,2.21217)--(4.62334,2.21276)--(4.6229,2.21336)--(4.62245,2.21395)--(4.62201,2.21455)--(4.62156,2.21514)--(4.62111,2.21574)--(4.62067,2.21634)--(4.62022,2.21694)--(4.61977,2.21754)--(4.61931,2.21814)--
> (4.61886,2.21874)--(4.61841,2.21934)--(4.61795,2.21995)--(4.6175,2.22056)--(4.61704,2.22116)--(4.61658,2.22177)--(4.61613,2.22238)--(4.61567,2.22299)--(4.61521,2.2236)--(4.61474,2.22421)--(4.61428,2.22483)--(4.61382,2.22544)--(4.61335,2.22606)--(4.61289,2.22667)--(4.61242,2.22729)--(4.61195,2.22791)--(4.61148,2.22853)--(4.61101,2.22915)--(4.61054,2.22978)--(4.61007,2.2304)--(4.6096,2.23103)--(4.60912,2.23165)--(4.60865,2.23228)--(4.60817,2.23291)--(4.6077,2.23354)--(4.60722,2.23417)--
> (4.60674,2.2348)--(4.60626,2.23543)--(4.60578,2.23607)--(4.60529,2.2367)--(4.60481,2.23734)--(4.60432,2.23798)--(4.60384,2.23862)--(4.60335,2.23926)--(4.60286,2.2399)--(4.60237,2.24054)--(4.60188,2.24118)--(4.60139,2.24183)--(4.6009,2.24248)--(4.6004,2.24312)--(4.59991,2.24377)--(4.59941,2.24442)--(4.59892,2.24507)--(4.59842,2.24573)--(4.59792,2.24638)--(4.59742,2.24703)--(4.59692,2.24769)--(4.59641,2.24835)--(4.59591,2.24901)--(4.5954,2.24967)--(4.5949,2.25033)--(4.59439,2.25099)--
> (4.59388,2.25165)--(4.59337,2.25232)--(4.59286,2.25299)--(4.59235,2.25365)--(4.59183,2.25432)--(4.59132,2.25499)--(4.5908,2.25566)--(4.59028,2.25634)--(4.58977,2.25701)--(4.58925,2.25769)--(4.58873,2.25836)--(4.5882,2.25904)--(4.58768,2.25972)--(4.58716,2.2604)--(4.58663,2.26108)--(4.5861,2.26177)--(4.58557,2.26245)--(4.58505,2.26314)--(4.58451,2.26382)--(4.58398,2.26451)--(4.58345,2.2652)--(4.58291,2.26589)--(4.58238,2.26659)--(4.58184,2.26728)--(4.5813,2.26798)--(4.58076,2.26867)--
> (4.58022,2.26937)--(4.57968,2.27007)--(4.57914,2.27077)--(4.57859,2.27148)--(4.57805,2.27218)--(4.5775,2.27288)--(4.57695,2.27359)--(4.5764,2.2743)--(4.57585,2.27501)--(4.5753,2.27572)--(4.57474,2.27643)--(4.57419,2.27715)--(4.57363,2.27786)--(4.57307,2.27858)--(4.57251,2.2793)--(4.57195,2.28002)--(4.57139,2.28074)--(4.57083,2.28146)--(4.57026,2.28218)--(4.5697,2.28291)--(4.56913,2.28364)--(4.56856,2.28436)--(4.56799,2.28509)--(4.56742,2.28583)--(4.56685,2.28656)--(4.56627,2.28729)--
> (4.5657,2.28803)--(4.56512,2.28877)--(4.56454,2.2895)--(4.56396,2.29024)--(4.56338,2.29099)--(4.5628,2.29173)--(4.56221,2.29248)--(4.56163,2.29322)--(4.56104,2.29397)--(4.56045,2.29472)--(4.55986,2.29547)--(4.55927,2.29622)--(4.55868,2.29698)--(4.55808,2.29773)--(4.55749,2.29849)--(4.55689,2.29925)--(4.55629,2.30001)--(4.55569,2.30077)--(4.55509,2.30154)--(4.55448,2.3023)--(4.55388,2.30307)--(4.55327,2.30384)--(4.55266,2.30461)--(4.55206,2.30538)--(4.55144,2.30616)--(4.55083,2.30693)--
> (4.55022,2.30771)--(4.5496,2.30849)--(4.54899,2.30927)--(4.54837,2.31005)--(4.54775,2.31083)--(4.54713,2.31162)--(4.5465,2.3124)--(4.54588,2.31319)--(4.54525,2.31398)--(4.54462,2.31477)--(4.54399,2.31557)--(4.54336,2.31636)--(4.54273,2.31716)--(4.54209,2.31796)--(4.54146,2.31876)--(4.54082,2.31956)--(4.54018,2.32037)--(4.53954,2.32117)--(4.5389,2.32198)--(4.53825,2.32279)--(4.53761,2.3236)--(4.53696,2.32441)--(4.53631,2.32523)--(4.53566,2.32604)--(4.53501,2.32686)--(4.53436,2.32768)--
> (4.5337,2.3285)--(4.53304,2.32933)--(4.53238,2.33015)--(4.53172,2.33098)--(4.53106,2.33181)--(4.53039,2.33264)--(4.52973,2.33347)--(4.52906,2.33431)--(4.52839,2.33514)--(4.52772,2.33598)--(4.52705,2.33682)--(4.52637,2.33767)--(4.5257,2.33851)--(4.52502,2.33936)--(4.52434,2.3402)--(4.52366,2.34105)--(4.52297,2.3419)--(4.52229,2.34276)--(4.5216,2.34361)--(4.52091,2.34447)--(4.52022,2.34533)--(4.51953,2.34619)--(4.51883,2.34705)--(4.51814,2.34792)--(4.51744,2.34879)--(4.51674,2.34966)--
> (4.51604,2.35053)--(4.51533,2.3514)--(4.51463,2.35228)--(4.51392,2.35315)--(4.51321,2.35403)--(4.5125,2.35491)--(4.51179,2.3558)--(4.51107,2.35668)--(4.51036,2.35757)--(4.50964,2.35846)--(4.50892,2.35935)--(4.50819,2.36024)--(4.50747,2.36114)--(4.50674,2.36204)--(4.50601,2.36293)--(4.50528,2.36384)--(4.50455,2.36474)--(4.50382,2.36565)--(4.50308,2.36655)--(4.50234,2.36746)--(4.5016,2.36838)--(4.50086,2.36929)--(4.50011,2.37021)--(4.49937,2.37113)--(4.49862,2.37205)--(4.49787,2.37297)--
> (4.49712,2.3739)--(4.49636,2.37482)--(4.4956,2.37575)--(4.49485,2.37669)--(4.49409,2.37762)--(4.49332,2.37856)--(4.49256,2.37949)--(4.49179,2.38044)--(4.49102,2.38138)--(4.49025,2.38232)--(4.48948,2.38327)--(4.4887,2.38422)--(4.48792,2.38517)--(4.48714,2.38613)--(4.48636,2.38709)--(4.48558,2.38804)--(4.48479,2.38901)--(4.484,2.38997)--(4.48321,2.39094)--(4.48242,2.3919)--(4.48162,2.39288)--(4.48082,2.39385)--(4.48003,2.39482)--(4.47922,2.3958)--(4.47842,2.39678)--(4.47761,2.39777)--
> (4.4768,2.39875)--(4.47599,2.39974)--(4.47518,2.40073)--(4.47436,2.40172)--(4.47355,2.40272)--(4.47273,2.40371)--(4.4719,2.40471)--(4.47108,2.40572)--(4.47025,2.40672)--(4.46942,2.40773)--(4.46859,2.40874)--(4.46776,2.40975)--(4.46692,2.41077)--(4.46608,2.41178)--(4.46524,2.4128)--(4.46439,2.41383)--(4.46355,2.41485)--(4.4627,2.41588)--(4.46185,2.41691)--(4.46099,2.41794)--(4.46014,2.41898)--(4.45928,2.42002)--(4.45842,2.42106)--(4.45756,2.4221)--(4.45669,2.42315)--(4.45582,2.4242)--
> (4.45495,2.42525)--(4.45408,2.4263)--(4.4532,2.42736)--(4.45232,2.42842)--(4.45144,2.42948)--(4.45056,2.43055)--(4.44967,2.43161)--(4.44878,2.43269)--(4.44789,2.43376)--(4.44699,2.43484)--(4.4461,2.43591)--(4.4452,2.437)--(4.4443,2.43808)--(4.44339,2.43917)--(4.44248,2.44026)--(4.44157,2.44135)--(4.44066,2.44245)--(4.43974,2.44355)--(4.43883,2.44465)--(4.43791,2.44575)--(4.43698,2.44686)--(4.43606,2.44797)--(4.43513,2.44909)--(4.43419,2.4502)--(4.43326,2.45132)--(4.43232,2.45244)--
> (4.43138,2.45357)--(4.43044,2.4547)--(4.42949,2.45583)--(4.42854,2.45696)--(4.42759,2.4581)--(4.42663,2.45924)--(4.42568,2.46039)--(4.42472,2.46153)--(4.42375,2.46268)--(4.42279,2.46384)--(4.42182,2.46499)--(4.42084,2.46615)--(4.41987,2.46731)--(4.41889,2.46848)--(4.41791,2.46965)--(4.41693,2.47082)--(4.41594,2.47199)--(4.41495,2.47317)--(4.41395,2.47435)--(4.41296,2.47554)--(4.41196,2.47673)--(4.41096,2.47792)--(4.40995,2.47911)--(4.40894,2.48031)--(4.40793,2.48151)--(4.40691,2.48272)--
> (4.4059,2.48392)--(4.40487,2.48514)--(4.40385,2.48635)--(4.40282,2.48757)--(4.40179,2.48879)--(4.40076,2.49001)--(4.39972,2.49124)--(4.39868,2.49247)--(4.39763,2.49371)--(4.39659,2.49495)--(4.39554,2.49619)--(4.39448,2.49744)--(4.39342,2.49869)--(4.39236,2.49994)--(4.3913,2.50119)--(4.39023,2.50245)--(4.38916,2.50372)--(4.38809,2.50499)--(4.38701,2.50626)--(4.38593,2.50753)--(4.38484,2.50881)--(4.38376,2.51009)--(4.38266,2.51138)--(4.38157,2.51267)--(4.38047,2.51396)--(4.37937,2.51525)--
> (4.37826,2.51655)--(4.37715,2.51786)--(4.37604,2.51917)--(4.37493,2.52048)--(4.37381,2.52179)--(4.37268,2.52311)--(4.37155,2.52444)--(4.37042,2.52576)--(4.36929,2.5271)--(4.36815,2.52843)--(4.36701,2.52977)--(4.36586,2.53111)--(4.36471,2.53246)--(4.36356,2.53381)--(4.3624,2.53517)--(4.36124,2.53652)--(4.36008,2.53789)--(4.35891,2.53925)--(4.35773,2.54063)--(4.35656,2.542)--(4.35538,2.54338)--(4.35419,2.54476)--(4.35301,2.54615)--(4.35181,2.54754)--(4.35062,2.54894)--(4.34942,2.55034)--
> (4.34821,2.55174)--(4.347,2.55315)--(4.34579,2.55457)--(4.34458,2.55598)--(4.34336,2.55741)--(4.34213,2.55883)--(4.3409,2.56026)--(4.33967,2.5617)--(4.33843,2.56314)--(4.33719,2.56458)--(4.33595,2.56603)--(4.3347,2.56748)--(4.33344,2.56894)--(4.33218,2.5704)--(4.33092,2.57187)--(4.32965,2.57334)--(4.32838,2.57481)--(4.32711,2.57629)--(4.32583,2.57778)--(4.32454,2.57927)--(4.32325,2.58076)--(4.32196,2.58226)--(4.32066,2.58376)--(4.31936,2.58527)--(4.31805,2.58679)--(4.31674,2.5883)--
> (4.31543,2.58983)--(4.3141,2.59135)--(4.31278,2.59289)--(4.31145,2.59442)--(4.31012,2.59596)--(4.30878,2.59751)--(4.30743,2.59906)--(4.30608,2.60062)--(4.30473,2.60218)--(4.30337,2.60375)--(4.30201,2.60532)--(4.30064,2.6069)--(4.29927,2.60848)--(4.29789,2.61007)--(4.29651,2.61166)--(4.29512,2.61326)--(4.29373,2.61486)--(4.29233,2.61647)--(4.29093,2.61809)--(4.28952,2.61971)--(4.28811,2.62133)--(4.28669,2.62296)--(4.28527,2.62459)--(4.28384,2.62624)--(4.28241,2.62788)--(4.28097,2.62953)--
> (4.27952,2.63119)--(4.27808,2.63285)--(4.27662,2.63452)--(4.27516,2.63619)--(4.2737,2.63787)--(4.27223,2.63956)--(4.27075,2.64125)--(4.26927,2.64295)--(4.26778,2.64465)--(4.26629,2.64636)--(4.2648,2.64807)--(4.26329,2.64979)--(4.26178,2.65151)--(4.26027,2.65325)--(4.25875,2.65498)--(4.25722,2.65673)--(4.25569,2.65848)--(4.25416,2.66023)--(4.25261,2.66199)--(4.25107,2.66376)--(4.24951,2.66553)--(4.24795,2.66731)--(4.24639,2.6691)--(4.24481,2.67089)--(4.24324,2.67269)--(4.24165,2.67449)--
> (4.24006,2.67631)--(4.23847,2.67812)--(4.23686,2.67995)--(4.23526,2.68178)--(4.23364,2.68361)--(4.23202,2.68546)--(4.2304,2.68731)--(4.22876,2.68916)--(4.22712,2.69103)--(4.22548,2.6929)--(4.22383,2.69477)--(4.22217,2.69665)--(4.2205,2.69854)--(4.21883,2.70044)--(4.21715,2.70234)--(4.21547,2.70425)--(4.21378,2.70617)--(4.21208,2.7081)--(4.21038,2.71003)--(4.20867,2.71196)--(4.20695,2.71391)--(4.20522,2.71586)--(4.20349,2.71782)--(4.20176,2.71979)--(4.20001,2.72176)--(4.19826,2.72374)--
> (4.1965,2.72573)--(4.19473,2.72773)--(4.19296,2.72973)--(4.19118,2.73174)--(4.1894,2.73376)--(4.1876,2.73579)--(4.1858,2.73782)--(4.18399,2.73986)--(4.18217,2.74191)--(4.18035,2.74397)--(4.17852,2.74603)--(4.17668,2.7481)--(4.17484,2.75018)--(4.17298,2.75227)--(4.17112,2.75437)--(4.16925,2.75647)--(4.16738,2.75858)--(4.1655,2.7607)--(4.1636,2.76283)--(4.1617,2.76496)--(4.1598,2.76711)--(4.15788,2.76926)--(4.15596,2.77142)--(4.15403,2.77359)--(4.15209,2.77577)--(4.15014,2.77796)--
> (4.14819,2.78015)--(4.14622,2.78235)--(4.14425,2.78457)--(4.14227,2.78679)--(4.14028,2.78902)--(4.13829,2.79125)--(4.13628,2.7935)--(4.13427,2.79576)--(4.13225,2.79802)--(4.13022,2.8003)--(4.12818,2.80258)--(4.12613,2.80487)--(4.12407,2.80717)--(4.12201,2.80948)--(4.11993,2.8118)--(4.11785,2.81413)--(4.11576,2.81647)--(4.11366,2.81882)--(4.11154,2.82118)--(4.10943,2.82354)--(4.1073,2.82592)--(4.10516,2.82831)--(4.10301,2.8307)--(4.10085,2.83311)--(4.09869,2.83553)--(4.09651,2.83795)--
> (4.09433,2.84039)--(4.09213,2.84283)--(4.08993,2.84529)--(4.08771,2.84776)--(4.08549,2.85023)--(4.08325,2.85272)--(4.08101,2.85522)--(4.07875,2.85773)--(4.07649,2.86025)--(4.07422,2.86278)--(4.07193,2.86532)--(4.06964,2.86787)--(4.06733,2.87043)--(4.06502,2.873)--(4.06269,2.87559)--(4.06035,2.87818)--(4.05801,2.88079)--(4.05565,2.8834)--(4.05328,2.88603)--(4.0509,2.88867)--(4.04851,2.89132)--(4.04611,2.89398)--(4.04369,2.89666)--(4.04127,2.89934)--(4.03884,2.90204)--(4.03639,2.90475)--
> (4.03393,2.90747)--(4.03146,2.91021)--(4.02898,2.91295)--(4.02649,2.91571)--(4.02399,2.91848)--(4.02147,2.92126)--(4.01894,2.92406)--(4.0164,2.92686)--(4.01385,2.92968)--(4.01129,2.93251)--(4.00871,2.93536)--(4.00612,2.93822)--(4.00352,2.94109)--(4.00091,2.94397)--(3.99829,2.94687)--(3.99565,2.94978)--(3.993,2.9527)--(3.99033,2.95564)--(3.98766,2.95859)--(3.98497,2.96155)--(3.98227,2.96453)--(3.97955,2.96752)--(3.97682,2.97052)--(3.97408,2.97354)--(3.97132,2.97658)--(3.96855,2.97962)--
> (3.96577,2.98268)--(3.96298,2.98576)--(3.96017,2.98885)--(3.95734,2.99196)--(3.9545,2.99508)--(3.95165,2.99821)--(3.94878,3.00136)--(3.9459,3.00452)--(3.94301,3.0077)--(3.9401,3.0109)--(3.93717,3.01411)--(3.93423,3.01733)--(3.93128,3.02057)--(3.92831,3.02383)--(3.92532,3.0271)--(3.92232,3.03039)--(3.91931,3.03369)--(3.91628,3.03702)--(3.91323,3.04035)--(3.91017,3.04371)--(3.90709,3.04708)--(3.904,3.05046)--(3.90089,3.05386)--(3.89776,3.05729)--(3.89462,3.06072)--(3.89146,3.06418)--
> (3.88829,3.06765)--(3.88509,3.07114)--(3.88189,3.07464)--(3.87866,3.07817)--(3.87542,3.08171)--(3.87216,3.08527)--(3.86888,3.08885)--(3.86558,3.09245)--(3.86227,3.09606)--(3.85894,3.09969)--(3.85559,3.10335)--(3.85223,3.10702)--(3.84884,3.11071)--(3.84544,3.11442)--(3.84202,3.11815)--(3.83858,3.12189)--(3.83512,3.12566)--(3.83164,3.12945)--(3.82815,3.13326)--(3.82463,3.13708)--(3.8211,3.14093)--(3.81754,3.1448)--(3.81397,3.14869)--(3.81037,3.1526)--(3.80676,3.15653)--(3.80312,3.16048)--
> (3.79947,3.16445)--(3.79579,3.16845)--(3.79209,3.17246)--(3.78838,3.1765)--(3.78464,3.18056)--(3.78088,3.18464)--(3.7771,3.18875)--(3.7733,3.19287)--(3.76947,3.19702)--(3.76562,3.2012)--(3.76176,3.20539)--(3.75787,3.20961)--(3.75395,3.21385)--(3.75002,3.21812)--(3.74606,3.22241)--(3.74207,3.22672)--(3.73807,3.23106)--(3.73404,3.23542)--(3.72999,3.23981)--(3.72591,3.24422)--(3.72181,3.24866)--(3.71768,3.25313)--(3.71353,3.25761)--(3.70936,3.26213)--(3.70516,3.26667)--(3.70094,3.27124)--
> (3.69669,3.27583)--(3.69241,3.28045)--(3.68811,3.2851)--(3.68378,3.28977)--(3.67943,3.29448)--(3.67504,3.29921)--(3.67064,3.30397)--(3.6662,3.30875)--(3.66174,3.31357)--(3.65725,3.31841)--(3.65273,3.32328)--(3.64818,3.32819)--(3.64361,3.33312)--(3.63901,3.33808)--(3.63438,3.34307)--(3.62971,3.34809)--(3.62502,3.35315)--(3.6203,3.35823)--(3.61555,3.36335)--(3.61077,3.36849)--(3.60596,3.37367)--(3.60112,3.37888)--(3.59625,3.38412)--(3.59134,3.3894)--(3.58641,3.39471)--(3.58144,3.40005)--
> (3.57644,3.40543)--(3.5714,3.41084)--(3.56634,3.41628)--(3.56124,3.42176)--(3.5561,3.42728)--(3.55094,3.43283)--(3.54573,3.43841)--(3.5405,3.44404)--(3.53523,3.44969)--(3.52992,3.45539)--(3.52458,3.46112)--(3.5192,3.46689)--(3.51378,3.4727)--(3.50833,3.47855)--(3.50284,3.48443)--(3.49732,3.49036)--(3.49175,3.49632)--(3.48615,3.50232)--(3.48051,3.50837)--(3.47483,3.51445)--(3.46911,3.52058)--(3.46335,3.52674)--(3.45755,3.53295)--(3.45171,3.53921)--(3.44583,3.5455)--(3.4399,3.55184)--
> (3.43394,3.55822)--(3.42793,3.56465)--(3.42188,3.57112)--(3.41578,3.57763)--(3.40964,3.58419)--(3.40346,3.5908)--(3.39723,3.59746)--(3.39096,3.60416)--(3.38464,3.61091)--(3.37828,3.61771)--(3.37187,3.62455)--(3.36541,3.63145)--(3.3589,3.63839)--(3.35235,3.64539)--(3.34574,3.65243)--(3.33909,3.65953)--(3.33239,3.66668)--(3.32563,3.67388)--(3.31883,3.68114)--(3.31197,3.68845)--(3.30506,3.69581)--(3.2981,3.70323)--(3.29109,3.71071)--(3.28402,3.71824)--(3.2769,3.72583)--(3.26972,3.73347)--
> (3.26248,3.74117)--(3.25519,3.74894)--(3.24784,3.75676)--(3.24044,3.76464)--(3.23297,3.77258)--(3.22545,3.78059)--(3.21786,3.78866)--(3.21022,3.79679)--(3.20251,3.80498)--(3.19474,3.81324)--(3.18691,3.82157)--(3.17901,3.82996)--(3.17105,3.83842)--(3.16303,3.84694)--(3.15494,3.85554)--(3.14678,3.8642)--(3.13855,3.87294)--(3.13026,3.88175)--(3.12189,3.89063)--(3.11346,3.89958)--(3.10496,3.9086)--(3.09638,3.9177)--(3.08773,3.92688)--(3.07901,3.93613)--(3.07021,3.94547)--(3.06133,3.95488)--
> (3.05238,3.96437)--(3.04335,3.97394)--(3.03424,3.98359)--(3.02506,3.99333)--(3.01579,4.00315)--(3.00644,4.01305)--(2.99701,4.02304)--(2.98749,4.03312)--(2.97789,4.04329)--(2.9682,4.05355)--(2.95842,4.0639)--(2.94856,4.07434)--(2.9386,4.08487)--(2.92856,4.0955)--(2.91842,4.10623)--(2.90819,4.11705)--(2.89786,4.12797)--(2.88744,4.13899)--(2.87692,4.15011)--(2.8663,4.16134)--(2.85558,4.17267)--(2.84476,4.18411)--(2.83384,4.19565)--(2.82281,4.2073)--(2.81167,4.21906)--(2.80043,4.23094)--
> (2.78908,4.24293)--(2.77762,4.25503)--(2.76604,4.26725)--(2.75435,4.27959)--(2.74255,4.29205)--(2.73062,4.30463)--(2.71858,4.31734)--(2.70642,4.33017)--(2.69413,4.34313)--(2.68172,4.35622)--(2.66919,4.36944)--(2.65652,4.38279)--(2.64373,4.39628)--(2.6308,4.40991)--(2.61773,4.42368)--(2.60453,4.43759)--(2.5912,4.45165)--(2.57772,4.46585)--(2.56409,4.4802)--(2.55033,4.4947)--(2.53641,4.50936)--(2.52234,4.52417)--(2.50812,4.53914)--(2.49375,4.55427)--(2.47922,4.56957)--(2.46452,4.58503)--
> (2.44967,4.60066)--(2.43465,4.61647)--(2.41946,4.63245)--(2.4041,4.64861)--(2.38856,4.66495)--(2.37285,4.68147)--(2.35696,4.69818)--(2.34088,4.71508)--(2.32462,4.73218)--(2.30817,4.74947)--(2.29152,4.76697)--(2.27468,4.78466)--(2.25764,4.80257)--(2.2404,4.82069)--(2.22294,4.83902)--(2.20528,4.85757)--(2.1874,4.87635)--(2.16931,4.89535)--(2.15099,4.91459)--(2.13244,4.93406)--(2.11367,4.95377)--(2.09466,4.97372)--(2.0754,4.99393)--(2.05591,5.01438)--(2.03616,5.0351)--(2.01616,5.05608)--
> (1.99591,5.07733)--(1.97539,5.09886)--(1.9546,5.12066)--(1.93353,5.14275)--(1.91219,5.16513)--(1.89056,5.1878)--(1.86864,5.21078)--(1.84643,5.23407)--(1.82391,5.25767)--(1.80108,5.28159)--(1.77794,5.30584)--(1.75447,5.33043)--(1.73068,5.35536)--(1.70655,5.38063)--(1.68208,5.40626)--(1.65725,5.43226)--(1.63207,5.45863)--(1.60653,5.48538)--(1.58061,5.51251)--(1.55431,5.54005)--(1.52762,5.56799)--(1.50053,5.59634)--(1.47304,5.62512)--(1.44512,5.65433)--(1.41678,5.68398)--(1.38801,5.71409)--
> (1.35878,5.74466)--(1.3291,5.77571)--(1.29896,5.80724)--(1.26833,5.83927)--(1.23721,5.87181)--(1.20559,5.90487)--(1.17346,5.93847)--(1.1408,5.97261)--(1.1076,6.00732)--(1.07385,6.0426)--(1.03953,6.07847)--(1.00463,6.11495)--(0.969128,6.15204)--(0.933017,6.18978)--(0.896278,6.22816)--(0.858895,6.26722)--(0.820851,6.30696)--(0.782127,6.34741)--(0.742706,6.38858)--(0.702568,6.4305)--(0.661695,6.47318)--(0.620065,6.51665)--(0.577657,6.56093)--(0.53445,6.60604)--(0.49042,6.652)--(0.445544,6.69885)--
> (0.399798,6.7466)--(0.353155,6.79528)--(0.30559,6.84492)--(0.257074,6.89554)--(0.20758,6.94719)--(0.157077,6.99988)--(0.105533,7.05366)--(0.0529176,7.10855)--(-0.000804326,7.16458)--(-0.0556676,7.22181)--(-0.111709,7.28026)--(-0.168967,7.33997)--(-0.227481,7.401)--(-0.287293,7.46336)--(-0.348446,7.52713)--(-0.410988,7.59234)--(-0.474964,7.65903)--(-0.540424,7.72727)--(-0.607422,7.79711)--(-0.676012,7.86861)--(-0.746251,7.94181)--(-0.818199,8.0168)--(-0.891919,8.09362)--(-0.967478,8.17236)--
> (-1.04495,8.25308)--(-1.12439,8.33586)--(-1.2059,8.42078)--(-1.28955,8.50793)--(-1.37542,8.59738)--(-1.4636,8.68924)--(-1.55419,8.7836)--(-1.64729,8.88058)--(-1.74301,8.98026)--(-1.84145,9.08279)--(-1.94274,9.18827)--(-2.04699,9.29683)--(-2.15435,9.40862)--(-2.26495,9.52378)--(-2.37894,9.64246)--(-2.49647,9.76483)--(-2.61773,9.89106)--(-2.74288,10.0213)--(-2.87212,10.1559)--(-3.00564,10.2949)--(-3.14368,10.4385)--(-3.28645,10.5871)--(-3.43421,10.7409)--(-3.58723,10.9002)--(-3.74578,11.0652)--
> (-3.91017,11.2362)--(-4.08074,11.4137)--(-4.25784,11.598)--(-4.44185,11.7895)--(-4.63317,11.9885)--(-4.83227,12.1957)--(-5.03961,12.4114)--(-5.25573,12.6362)--(-5.48119,12.8707)--(-5.7166,13.1156)--(-5.96265,13.3716)--(-6.22008,13.6393)--(-6.48968,13.9198)--(-6.77234,14.2138)--(-7.06904,14.5224)--(-7.38085,14.8466)--(-7.70895,15.1879)--(-8.05465,15.5474)--(-8.4194,15.9267)--(-8.80484,16.3275)--(-9.21275,16.7517)--(-9.64518,17.2014)--(-10.1044,17.6789)--(-10.593,18.1869)--(-11.1138,18.7284)--
> (-11.6702,19.3069)--(-12.266,19.9263)--(-12.9054,20.5911)--(-13.5934,21.3065)--(-14.3359,22.0784)--(-15.1395,22.9138)--(-16.0122,23.821)--(-16.9631,24.8096)--(-18.0034,25.891)--(-19.1462,27.079)--(-20.4075,28.3901)--(-21.8067,29.8446)--(-23.3677,31.4673)--(-25.1204,33.2892)--(-27.1024,35.3494)--(-29.3618,37.6979)--(-31.9611,40.3997)--(-34.9833,43.5411)--(-38.541,47.239)--(-42.79,51.6554)--(-47.9536,57.0224)--(-54.3627,63.684)--(-62.5298,72.1727)--(-73.2932,83.3599)--(-88.1246,98.7752)--
> (-109.868,121.375);
> draw(curve, rgb(0,0,255)+solid );
> path curve = (138.341,-136.601)--(110.062,-107.209)--(91.6907,-88.1142)--(78.7966,-74.7123)--(69.2479,-64.7877)--(61.8922,-57.1423)--(56.0519,-51.0719)--(51.3024,-46.1353)--(47.3642,-42.0419)--(44.0458,-38.5926)--(41.2115,-35.6466)--(38.7627,-33.1012)--(36.6256,-30.8798)--(34.7444,-28.9244)--(33.0756,-27.1897)--(31.5853,-25.6405)--(30.2462,-24.2485)--(29.0364,-22.9909)--(27.9381,-21.8492)--(26.9366,-20.808)--(26.0195,-19.8546)--(25.1767,-18.9784)--(24.3995,-18.1704)--(23.6804,-17.4228)--
> (23.0133,-16.7292)--(22.3927,-16.0839)--(21.8138,-15.4821)--(21.2727,-14.9194)--(20.7657,-14.3922)--(20.2897,-13.8973)--(19.8419,-13.4317)--(19.42,-12.9929)--(19.0217,-12.5787)--(18.6451,-12.1871)--(18.2884,-11.8162)--(17.9503,-11.4645)--(17.6291,-11.1305)--(17.3237,-10.8129)--(17.033,-10.5105)--(16.7559,-10.2222)--(16.4915,-9.9472)--(16.2389,-9.68446)--(15.9974,-9.4332)--(15.7662,-9.1927)--(15.5447,-8.96228)--(15.3323,-8.74131)--(15.1285,-8.52923)--(14.9327,-8.32551)--(14.7445,-8.12966)--
> (14.5634,-7.94124)--(14.3891,-7.75984)--(14.2212,-7.58506)--(14.0592,-7.41655)--(13.903,-7.25398)--(13.7523,-7.09703)--(13.6066,-6.94544)--(13.4659,-6.79891)--(13.3297,-6.65721)--(13.198,-6.5201)--(13.0705,-6.38736)--(12.947,-6.25878)--(12.8274,-6.13417)--(12.7113,-6.01335)--(12.5988,-5.89614)--(12.4896,-5.7824)--(12.3835,-5.67197)--(12.2806,-5.56469)--(12.1805,-5.46045)--(12.0832,-5.35912)--(11.9886,-5.26057)--(11.8966,-5.16469)--(11.807,-5.07137)--(11.7198,-4.98051)--(11.6349,-4.89202)--
> (11.5521,-4.80581)--(11.4715,-4.72178)--(11.3929,-4.63986)--(11.3163,-4.55996)--(11.2415,-4.48202)--(11.1685,-4.40596)--(11.0973,-4.33171)--(11.0278,-4.25921)--(10.9599,-4.18841)--(10.8935,-4.11923)--(10.8287,-4.05163)--(10.7654,-3.98554)--(10.7034,-3.92093)--(10.6428,-3.85774)--(10.5836,-3.79593)--(10.5256,-3.73545)--(10.4689,-3.67625)--(10.4134,-3.61831)--(10.359,-3.56157)--(10.3057,-3.506)--(10.2536,-3.45157)--(10.2025,-3.39823)--(10.1524,-3.34597)--(10.1034,-3.29474)--(10.0553,-3.24451)--
> (10.0081,-3.19526)--(9.96187,-3.14696)--(9.9165,-3.09958)--(9.872,-3.05309)--(9.82833,-3.00747)--(9.78547,-2.9627)--(9.74341,-2.91875)--(9.70212,-2.87559)--(9.66157,-2.83322)--(9.62175,-2.7916)--(9.58264,-2.75071)--(9.54422,-2.71055)--(9.50647,-2.67108)--(9.46937,-2.63229)--(9.43292,-2.59416)--(9.39708,-2.55668)--(9.36185,-2.51983)--(9.32721,-2.48359)--(9.29315,-2.44795)--(9.25965,-2.4129)--(9.22669,-2.37841)--(9.19427,-2.34448)--(9.16237,-2.31109)--(9.13099,-2.27823)--(9.10009,-2.24589)--
> (9.06969,-2.21405)--(9.03976,-2.18271)--(9.01029,-2.15184)--(8.98127,-2.12145)--(8.9527,-2.09151)--(8.92456,-2.06203)--(8.89684,-2.03298)--(8.86954,-2.00437)--(8.84264,-1.97617)--(8.81613,-1.94838)--(8.79001,-1.921)--(8.76427,-1.89401)--(8.7389,-1.8674)--(8.71389,-1.84117)--(8.68924,-1.81531)--(8.66493,-1.78981)--(8.64097,-1.76466)--(8.61733,-1.73985)--(8.59403,-1.71539)--(8.57104,-1.69126)--(8.54836,-1.66745)--(8.52599,-1.64396)--(8.50392,-1.62078)--(8.48215,-1.59791)--(8.46066,-1.57534)--
> (8.43946,-1.55306)--(8.41854,-1.53108)--(8.39788,-1.50937)--(8.3775,-1.48794)--(8.35737,-1.46678)--(8.33751,-1.44589)--(8.31789,-1.42526)--(8.29852,-1.40489)--(8.27939,-1.38477)--(8.26051,-1.36489)--(8.24185,-1.34526)--(8.22343,-1.32587)--(8.20523,-1.30671)--(8.18725,-1.28778)--(8.16949,-1.26908)--(8.15194,-1.2506)--(8.1346,-1.23233)--(8.11747,-1.21428)--(8.10053,-1.19644)--(8.0838,-1.1788)--(8.06726,-1.16137)--(8.05092,-1.14414)--(8.03476,-1.1271)--(8.01879,-1.11026)--(8.003,-1.0936)--
> (7.98739,-1.07713)--(7.97196,-1.06084)--(7.95669,-1.04474)--(7.9416,-1.02881)--(7.92668,-1.01305)--(7.91192,-0.997464)--(7.89732,-0.982047)--(7.88289,-0.966795)--(7.86861,-0.951705)--(7.85448,-0.936777)--(7.84051,-0.922005)--(7.82668,-0.907389)--(7.813,-0.892925)--(7.79947,-0.878612)--(7.78608,-0.864447)--(7.77283,-0.850427)--(7.75972,-0.836551)--(7.74674,-0.822815)--(7.7339,-0.809219)--(7.72119,-0.795759)--(7.7086,-0.782435)--(7.69615,-0.769243)--(7.68382,-0.756181)--(7.67162,-0.743249)--
> (7.65954,-0.730443)--(7.64758,-0.717763)--(7.63574,-0.705205)--(7.62401,-0.692769)--(7.61241,-0.680453)--(7.60091,-0.668254)--(7.58953,-0.656171)--(7.57825,-0.644203)--(7.56709,-0.632348)--(7.55603,-0.620604)--(7.54508,-0.608969)--(7.53423,-0.597443)--(7.52348,-0.586023)--(7.51284,-0.574708)--(7.5023,-0.563497)--(7.49185,-0.552388)--(7.4815,-0.54138)--(7.47125,-0.530471)--(7.46109,-0.519661)--(7.45103,-0.508947)--(7.44105,-0.498328)--(7.43117,-0.487803)--(7.42138,-0.477372)--(7.41168,-0.467032)--
> (7.40206,-0.456782)--(7.39253,-0.446621)--(7.38308,-0.436549)--(7.37372,-0.426563)--(7.36444,-0.416663)--(7.35524,-0.406847)--(7.34612,-0.397115)--(7.33708,-0.387466)--(7.32812,-0.377898)--(7.31924,-0.36841)--(7.31044,-0.359001)--(7.30171,-0.349671)--(7.29305,-0.340418)--(7.28447,-0.331242)--(7.27596,-0.32214)--(7.26752,-0.313114)--(7.25915,-0.30416)--(7.25086,-0.29528)--(7.24263,-0.286471)--(7.23447,-0.277732)--(7.22638,-0.269064)--(7.21835,-0.260465)--(7.21039,-0.251934)--(7.2025,-0.243471)--
> (7.19467,-0.235074)--(7.18691,-0.226743)--(7.1792,-0.218477)--(7.17156,-0.210276)--(7.16398,-0.202137)--(7.15646,-0.194062)--(7.149,-0.186049)--(7.1416,-0.178097)--(7.13426,-0.170205)--(7.12697,-0.162374)--(7.11975,-0.154601)--(7.11258,-0.146887)--(7.10546,-0.139231)--(7.0984,-0.131633)--(7.0914,-0.12409)--(7.08445,-0.116604)--(7.07755,-0.109172)--(7.0707,-0.101796)--(7.06391,-0.0944732)--(7.05717,-0.087204)--(7.05048,-0.0799876)--(7.04384,-0.0728234)--(7.03725,-0.0657109)--(7.03071,-0.0586494)--
> (7.02422,-0.0516385)--(7.01778,-0.0446775)--(7.01138,-0.037766)--(7.00503,-0.0309033)--(6.99873,-0.024089)--(6.99248,-0.0173225)--(6.98627,-0.0106033)--(6.9801,-0.00393096)--(6.97398,0.00269509)--(6.96791,0.00927533)--(6.96187,0.0158102)--(6.95589,0.0223003)--(6.94994,0.028746)--(6.94404,0.0351477)--(6.93818,0.041506)--(6.93236,0.0478213)--(6.92658,0.0540941)--(6.92084,0.0603247)--(6.91515,0.0665136)--(6.90949,0.0726613)--(6.90387,0.0787682)--(6.89829,0.0848346)--(6.89275,0.0908611)--
> (6.88725,0.0968479)--(6.88179,0.102796)--(6.87636,0.108704)--(6.87097,0.114575)--(6.86562,0.120407)--(6.86031,0.126202)--(6.85503,0.131959)--(6.84978,0.13768)--(6.84457,0.143364)--(6.8394,0.149012)--(6.83426,0.154624)--(6.82916,0.160201)--(6.82409,0.165742)--(6.81905,0.171249)--(6.81405,0.176721)--(6.80908,0.182159)--(6.80414,0.187563)--(6.79923,0.192934)--(6.79436,0.198271)--(6.78952,0.203576)--(6.78471,0.208849)--(6.77993,0.214089)--(6.77518,0.219297)--(6.77047,0.224473)--(6.76578,0.229619)--
> (6.76112,0.234733)--(6.7565,0.239817)--(6.7519,0.24487)--(6.74733,0.249893)--(6.74279,0.254886)--(6.73828,0.259849)--(6.7338,0.264783)--(6.72934,0.269688)--(6.72492,0.274564)--(6.72052,0.279412)--(6.71615,0.284232)--(6.71181,0.289023)--(6.70749,0.293787)--(6.7032,0.298523)--(6.69894,0.303232)--(6.6947,0.307914)--(6.69049,0.312569)--(6.6863,0.317197)--(6.68214,0.321799)--(6.67801,0.326375)--(6.6739,0.330926)--(6.66981,0.33545)--(6.66575,0.33995)--(6.66172,0.344424)--(6.65771,0.348873)--
> (6.65372,0.353297)--(6.64975,0.357697)--(6.64581,0.362073)--(6.6419,0.366424)--(6.638,0.370752)--(6.63413,0.375056)--(6.63029,0.379336)--(6.62646,0.383593)--(6.62266,0.387827)--(6.61888,0.392038)--(6.61512,0.396227)--(6.61139,0.400392)--(6.60767,0.404536)--(6.60398,0.408658)--(6.60031,0.412757)--(6.59666,0.416835)--(6.59303,0.420891)--(6.58942,0.424926)--(6.58583,0.428939)--(6.58226,0.432932)--(6.57871,0.436903)--(6.57519,0.440854)--(6.57168,0.444785)--(6.56819,0.448695)--(6.56473,0.452584)--
> (6.56128,0.456454)--(6.55785,0.460304)--(6.55444,0.464134)--(6.55105,0.467945)--(6.54768,0.471736)--(6.54433,0.475508)--(6.54099,0.479261)--(6.53768,0.482995)--(6.53438,0.48671)--(6.5311,0.490407)--(6.52784,0.494085)--(6.52459,0.497744)--(6.52137,0.501386)--(6.51816,0.505009)--(6.51497,0.508615)--(6.5118,0.512202)--(6.50864,0.515772)--(6.5055,0.519325)--(6.50238,0.52286)--(6.49928,0.526378)--(6.49619,0.529879)--(6.49312,0.533363)--(6.49006,0.53683)--(6.48702,0.540281)--(6.484,0.543714)--
> (6.48099,0.547132)--(6.478,0.550533)--(6.47503,0.553918)--(6.47207,0.557286)--(6.46912,0.560639)--(6.46619,0.563976)--(6.46328,0.567297)--(6.46038,0.570603)--(6.4575,0.573893)--(6.45463,0.577168)--(6.45178,0.580427)--(6.44894,0.583672)--(6.44612,0.586901)--(6.44331,0.590116)--(6.44052,0.593315)--(6.43774,0.5965)--(6.43497,0.59967)--(6.43222,0.602826)--(6.42949,0.605968)--(6.42676,0.609095)--(6.42405,0.612208)--(6.42136,0.615307)--(6.41868,0.618392)--(6.41601,0.621463)--(6.41336,0.62452)--
> (6.41071,0.627564)--(6.40809,0.630594)--(6.40547,0.633611)--(6.40287,0.636614)--(6.40028,0.639604)--(6.39771,0.642581)--(6.39514,0.645545)--(6.39259,0.648495)--(6.39006,0.651433)--(6.38753,0.654358)--(6.38502,0.65727)--(6.38252,0.66017)--(6.38003,0.663057)--(6.37756,0.665932)--(6.37509,0.668794)--(6.37264,0.671644)--(6.37021,0.674482)--(6.36778,0.677307)--(6.36536,0.680121)--(6.36296,0.682923)--(6.36057,0.685712)--(6.35819,0.68849)--(6.35582,0.691257)--(6.35346,0.694011)--(6.35112,0.696754)--
> (6.34878,0.699486)--(6.34646,0.702206)--(6.34415,0.704915)--(6.34185,0.707613)--(6.33956,0.7103)--(6.33728,0.712975)--(6.33501,0.715639)--(6.33275,0.718293)--(6.33051,0.720935)--(6.32827,0.723567)--(6.32604,0.726188)--(6.32383,0.728799)--(6.32162,0.731399)--(6.31943,0.733988)--(6.31725,0.736567)--(6.31507,0.739136)--(6.31291,0.741694)--(6.31076,0.744242)--(6.30861,0.74678)--(6.30648,0.749307)--(6.30436,0.751825)--(6.30224,0.754333)--(6.30014,0.756831)--(6.29805,0.759319)--(6.29596,0.761797)--
> (6.29389,0.764266)--(6.29182,0.766724)--(6.28977,0.769174)--(6.28772,0.771613)--(6.28568,0.774044)--(6.28366,0.776464)--(6.28164,0.778876)--(6.27963,0.781278)--(6.27763,0.783671)--(6.27564,0.786055)--(6.27366,0.78843)--(6.27169,0.790795)--(6.26972,0.793152)--(6.26777,0.7955)--(6.26582,0.797839)--(6.26388,0.800169)--(6.26196,0.80249)--(6.26004,0.804803)--(6.25812,0.807106)--(6.25622,0.809402)--(6.25433,0.811688)--(6.25244,0.813967)--(6.25056,0.816236)--(6.2487,0.818498)--(6.24684,0.820751)--
> (6.24498,0.822995)--(6.24314,0.825232)--(6.2413,0.82746)--(6.23948,0.82968)--(6.23766,0.831892)--(6.23584,0.834096)--(6.23404,0.836292)--(6.23224,0.838481)--(6.23046,0.840661)--(6.22868,0.842833)--(6.2269,0.844998)--(6.22514,0.847154)--(6.22338,0.849303)--(6.22163,0.851445)--(6.21989,0.853579)--(6.21816,0.855705)--(6.21643,0.857823)--(6.21471,0.859935)--(6.213,0.862038)--(6.2113,0.864135)--(6.2096,0.866224)--(6.20791,0.868306)--(6.20623,0.87038)--(6.20455,0.872447)--(6.20289,0.874507)--
> (6.20123,0.87656)--(6.19957,0.878606)--(6.19793,0.880645)--(6.19629,0.882677)--(6.19465,0.884702)--(6.19303,0.88672)--(6.19141,0.888731)--(6.1898,0.890735)--(6.18819,0.892732)--(6.1866,0.894723)--(6.18501,0.896707)--(6.18342,0.898684)--(6.18184,0.900654)--(6.18027,0.902618)--(6.17871,0.904576)--(6.17715,0.906526)--(6.1756,0.908471)--(6.17405,0.910409)--(6.17252,0.91234)--(6.17098,0.914265)--(6.16946,0.916184)--(6.16794,0.918096)--(6.16643,0.920002)--(6.16492,0.921902)--(6.16342,0.923796)--
> (6.16193,0.925683)--(6.16044,0.927565)--(6.15896,0.92944)--(6.15748,0.931309)--(6.15601,0.933172)--(6.15455,0.93503)--(6.15309,0.936881)--(6.15164,0.938726)--(6.1502,0.940565)--(6.14876,0.942399)--(6.14733,0.944226)--(6.1459,0.946048)--(6.14448,0.947864)--(6.14306,0.949675)--(6.14165,0.951479)--(6.14025,0.953278)--(6.13885,0.955072)--(6.13746,0.956859)--(6.13607,0.958641)--(6.13469,0.960418)--(6.13331,0.962189)--(6.13194,0.963955)--(6.13058,0.965715)--(6.12922,0.967469)--(6.12787,0.969219)--
> (6.12652,0.970963)--(6.12518,0.972701)--(6.12384,0.974434)--(6.12251,0.976162)--(6.12118,0.977885)--(6.11986,0.979602)--(6.11855,0.981315)--(6.11724,0.983022)--(6.11593,0.984724)--(6.11463,0.986421)--(6.11334,0.988112)--(6.11205,0.989799)--(6.11076,0.991481)--(6.10949,0.993157)--(6.10821,0.994829)--(6.10694,0.996496)--(6.10568,0.998157)--(6.10442,0.999814)--(6.10317,1.00147)--(6.10192,1.00311)--(6.10068,1.00476)--(6.09944,1.00639)--(6.0982,1.00803)--(6.09697,1.00965)--(6.09575,1.01128)--
> (6.09453,1.0129)--(6.09332,1.01451)--(6.09211,1.01612)--(6.0909,1.01772)--(6.0897,1.01932)--(6.08851,1.02092)--(6.08732,1.02251)--(6.08613,1.0241)--(6.08495,1.02568)--(6.08377,1.02726)--(6.0826,1.02883)--(6.08144,1.0304)--(6.08027,1.03196)--(6.07912,1.03352)--(6.07796,1.03508)--(6.07681,1.03663)--(6.07567,1.03817)--(6.07453,1.03972)--(6.07339,1.04125)--(6.07226,1.04279)--(6.07114,1.04432)--(6.07001,1.04584)--(6.0689,1.04736)--(6.06778,1.04888)--(6.06667,1.05039)--(6.06557,1.0519)--
> (6.06447,1.05341)--(6.06337,1.05491)--(6.06228,1.0564)--(6.06119,1.0579)--(6.06011,1.05938)--(6.05903,1.06087)--(6.05795,1.06235)--(6.05688,1.06383)--(6.05582,1.0653)--(6.05475,1.06677)--(6.0537,1.06823)--(6.05264,1.06969)--(6.05159,1.07115)--(6.05054,1.0726)--(6.0495,1.07405)--(6.04846,1.0755)--(6.04743,1.07694)--(6.0464,1.07838)--(6.04537,1.07981)--(6.04435,1.08124)--(6.04333,1.08267)--(6.04232,1.08409)--(6.04131,1.08551)--(6.0403,1.08692)--(6.0393,1.08834)--(6.0383,1.08974)--(6.0373,1.09115)--
> (6.03631,1.09255)--(6.03533,1.09395)--(6.03434,1.09534)--(6.03336,1.09673)--(6.03239,1.09812)--(6.03141,1.0995)--(6.03044,1.10088)--(6.02948,1.10226)--(6.02852,1.10363)--(6.02756,1.105)--(6.02661,1.10637)--(6.02566,1.10773)--(6.02471,1.10909)--(6.02377,1.11045)--(6.02283,1.1118)--(6.02189,1.11315)--(6.02096,1.11449)--(6.02003,1.11584)--(6.0191,1.11718)--(6.01818,1.11851)--(6.01726,1.11985)--(6.01635,1.12118)--(6.01544,1.1225)--(6.01453,1.12383)--(6.01363,1.12515)--(6.01273,1.12646)--
> (6.01183,1.12778)--(6.01093,1.12909)--(6.01004,1.13039)--(6.00916,1.1317)--(6.00827,1.133)--(6.00739,1.1343)--(6.00652,1.13559)--(6.00564,1.13688)--(6.00477,1.13817)--(6.0039,1.13946)--(6.00304,1.14074)--(6.00218,1.14202)--(6.00132,1.1433)--(6.00047,1.14457)--(5.99962,1.14584)--(5.99877,1.14711)--(5.99792,1.14838)--(5.99708,1.14964)--(5.99625,1.1509)--(5.99541,1.15216)--(5.99458,1.15341)--(5.99375,1.15466)--(5.99292,1.15591)--(5.9921,1.15715)--(5.99128,1.15839)--(5.99047,1.15963)--
> (5.98965,1.16087)--(5.98884,1.1621)--(5.98804,1.16334)--(5.98723,1.16456)--(5.98643,1.16579)--(5.98563,1.16701)--(5.98484,1.16823)--(5.98405,1.16945)--(5.98326,1.17066)--(5.98247,1.17188)--(5.98169,1.17309)--(5.98091,1.17429)--(5.98013,1.1755)--(5.97936,1.1767)--(5.97859,1.1779)--(5.97782,1.17909)--(5.97706,1.18029)--(5.97629,1.18148)--(5.97554,1.18266)--(5.97478,1.18385)--(5.97403,1.18503)--(5.97327,1.18621)--(5.97253,1.18739)--(5.97178,1.18857)--(5.97104,1.18974)--(5.9703,1.19091)--
> (5.96956,1.19208)--(5.96883,1.19325)--(5.9681,1.19441)--(5.96737,1.19557)--(5.96664,1.19673)--(5.96592,1.19789)--(5.9652,1.19904)--(5.96448,1.20019)--(5.96377,1.20134)--(5.96306,1.20249)--(5.96235,1.20363)--(5.96164,1.20477)--(5.96094,1.20591)--(5.96024,1.20705)--(5.95954,1.20818)--(5.95884,1.20931)--(5.95815,1.21044)--(5.95746,1.21157)--(5.95677,1.2127)--(5.95609,1.21382)--(5.9554,1.21494)--(5.95472,1.21606)--(5.95405,1.21718)--(5.95337,1.21829)--(5.9527,1.2194)--(5.95203,1.22051)--
> (5.95136,1.22162)--(5.9507,1.22273)--(5.95004,1.22383)--(5.94938,1.22493)--(5.94872,1.22603)--(5.94807,1.22713)--(5.94741,1.22822)--(5.94676,1.22931)--(5.94612,1.2304)--(5.94547,1.23149)--(5.94483,1.23258)--(5.94419,1.23366)--(5.94355,1.23474)--(5.94292,1.23582)--(5.94229,1.2369)--(5.94166,1.23798)--(5.94103,1.23905)--(5.94041,1.24012)--(5.93978,1.24119)--(5.93916,1.24226)--(5.93855,1.24333)--(5.93793,1.24439)--(5.93732,1.24545)--(5.93671,1.24651)--(5.9361,1.24757)--(5.93549,1.24862)--
> (5.93489,1.24968)--(5.93429,1.25073)--(5.93369,1.25178)--(5.93309,1.25283)--(5.9325,1.25387)--(5.93191,1.25492)--(5.93132,1.25596)--(5.93073,1.257)--(5.93014,1.25804)--(5.92956,1.25908)--(5.92898,1.26011)--(5.9284,1.26114)--(5.92783,1.26217)--(5.92725,1.2632)--(5.92668,1.26423)--(5.92611,1.26526)--(5.92555,1.26628)--(5.92498,1.2673)--(5.92442,1.26832)--(5.92386,1.26934)--(5.9233,1.27036)--(5.92274,1.27137)--(5.92219,1.27238)--(5.92164,1.27339)--(5.92109,1.2744)--(5.92054,1.27541)--(5.92,1.27642)--
> (5.91945,1.27742)--(5.91891,1.27842)--(5.91837,1.27942)--(5.91784,1.28042)--(5.9173,1.28142)--(5.91677,1.28242)--(5.91624,1.28341)--(5.91571,1.2844)--(5.91519,1.28539)--(5.91466,1.28638)--(5.91414,1.28737)--(5.91362,1.28835)--(5.9131,1.28934)--(5.91259,1.29032)--(5.91208,1.2913)--(5.91156,1.29228)--(5.91105,1.29326)--(5.91055,1.29423)--(5.91004,1.29521)--(5.90954,1.29618)--(5.90904,1.29715)--(5.90854,1.29812)--(5.90804,1.29909)--(5.90755,1.30005)--(5.90705,1.30102)--(5.90656,1.30198)--
> (5.90607,1.30294)--(5.90559,1.3039)--(5.9051,1.30486)--(5.90462,1.30582)--(5.90414,1.30677)--(5.90366,1.30773)--(5.90318,1.30868)--(5.9027,1.30963)--(5.90223,1.31058)--(5.90176,1.31153)--(5.90129,1.31247)--(5.90082,1.31342)--(5.90036,1.31436)--(5.89989,1.3153)--(5.89943,1.31625)--(5.89897,1.31718)--(5.89852,1.31812)--(5.89806,1.31906)--(5.8976,1.31999)--(5.89715,1.32093)--(5.8967,1.32186)--(5.89625,1.32279)--(5.89581,1.32372)--(5.89536,1.32465)--(5.89492,1.32557)--(5.89448,1.3265)--
> (5.89404,1.32742)--(5.8936,1.32834)--(5.89317,1.32927)--(5.89273,1.33019)--(5.8923,1.3311)--(5.89187,1.33202)--(5.89144,1.33294)--(5.89102,1.33385)--(5.89059,1.33476)--(5.89017,1.33568)--(5.88975,1.33659)--(5.88933,1.33749)--(5.88892,1.3384)--(5.8885,1.33931)--(5.88809,1.34021)--(5.88767,1.34112)--(5.88727,1.34202)--(5.88686,1.34292)--(5.88645,1.34382)--(5.88605,1.34472)--(5.88564,1.34562)--(5.88524,1.34651)--(5.88484,1.34741)--(5.88445,1.3483)--(5.88405,1.34919)--(5.88366,1.35009)--
> (5.88326,1.35098)--(5.88287,1.35186)--(5.88248,1.35275)--(5.8821,1.35364)--(5.88171,1.35452)--(5.88133,1.35541)--(5.88095,1.35629)--(5.88057,1.35717)--(5.88019,1.35805)--(5.87981,1.35893)--(5.87944,1.35981)--(5.87906,1.36069)--(5.87869,1.36156)--(5.87832,1.36244)--(5.87795,1.36331)--(5.87759,1.36418)--(5.87722,1.36506)--(5.87686,1.36593)--(5.8765,1.36679)--(5.87614,1.36766)--(5.87578,1.36853)--(5.87542,1.36939)--(5.87507,1.37026)--(5.87471,1.37112)--(5.87436,1.37198)--(5.87401,1.37285)--
> (5.87366,1.37371)--(5.87331,1.37456)--(5.87297,1.37542)--(5.87263,1.37628)--(5.87228,1.37714)--(5.87194,1.37799)--(5.87161,1.37884)--(5.87127,1.3797)--(5.87093,1.38055)--(5.8706,1.3814)--(5.87027,1.38225)--(5.86994,1.3831)--(5.86961,1.38394)--(5.86928,1.38479)--(5.86895,1.38564)--(5.86863,1.38648)--(5.86831,1.38732)--(5.86799,1.38817)--(5.86767,1.38901)--(5.86735,1.38985)--(5.86703,1.39069)--(5.86672,1.39153)--(5.8664,1.39236)--(5.86609,1.3932)--(5.86578,1.39404)--(5.86547,1.39487)--
> (5.86517,1.39571)--(5.86486,1.39654)--(5.86456,1.39737)--(5.86425,1.3982)--(5.86395,1.39903)--(5.86365,1.39986)--(5.86336,1.40069)--(5.86306,1.40151)--(5.86277,1.40234)--(5.86247,1.40317)--(5.86218,1.40399)--(5.86189,1.40481)--(5.8616,1.40564)--(5.86132,1.40646)--(5.86103,1.40728)--(5.86075,1.4081)--(5.86046,1.40892)--(5.86018,1.40973)--(5.8599,1.41055)--(5.85962,1.41137)--(5.85935,1.41218)--(5.85907,1.413)--(5.8588,1.41381)--(5.85853,1.41462)--(5.85826,1.41544)--(5.85799,1.41625)--
> (5.85772,1.41706)--(5.85745,1.41787)--(5.85719,1.41868)--(5.85692,1.41948)--(5.85666,1.42029)--(5.8564,1.4211)--(5.85614,1.4219)--(5.85589,1.42271)--(5.85563,1.42351)--(5.85538,1.42431)--(5.85512,1.42512)--(5.85487,1.42592)--(5.85462,1.42672)--(5.85437,1.42752)--(5.85412,1.42832)--(5.85388,1.42911)--(5.85363,1.42991)--(5.85339,1.43071)--(5.85315,1.4315)--(5.85291,1.4323)--(5.85267,1.43309)--(5.85243,1.43389)--(5.8522,1.43468)--(5.85196,1.43547)--(5.85173,1.43626)--(5.8515,1.43705)--
> (5.85127,1.43784)--(5.85104,1.43863)--(5.85081,1.43942)--(5.85058,1.44021)--(5.85036,1.441)--(5.85014,1.44178)--(5.84991,1.44257)--(5.84969,1.44335)--(5.84948,1.44414)--(5.84926,1.44492)--(5.84904,1.4457)--(5.84883,1.44648)--(5.84861,1.44726)--(5.8484,1.44805)--(5.84819,1.44883)--(5.84798,1.4496)--(5.84777,1.45038)--(5.84757,1.45116)--(5.84736,1.45194)--(5.84716,1.45271)--(5.84695,1.45349)--(5.84675,1.45427)--(5.84655,1.45504)--(5.84635,1.45581)--(5.84616,1.45659)--(5.84596,1.45736)--
> (5.84577,1.45813)--(5.84557,1.4589)--(5.84538,1.45967)--(5.84519,1.46044)--(5.845,1.46121)--(5.84482,1.46198)--(5.84463,1.46275)--(5.84444,1.46352)--(5.84426,1.46429)--(5.84408,1.46505)--(5.8439,1.46582)--(5.84372,1.46658)--(5.84354,1.46735)--(5.84336,1.46811)--(5.84319,1.46887)--(5.84301,1.46964)--(5.84284,1.4704)--(5.84267,1.47116)--(5.8425,1.47192)--(5.84233,1.47268)--(5.84216,1.47344)--(5.842,1.4742)--(5.84183,1.47496)--(5.84167,1.47572)--(5.8415,1.47648)--(5.84134,1.47723)--
> (5.84118,1.47799)--(5.84103,1.47875)--(5.84087,1.4795)--(5.84071,1.48026)--(5.84056,1.48101)--(5.8404,1.48177)--(5.84025,1.48252)--(5.8401,1.48327)--(5.83995,1.48402)--(5.8398,1.48478)--(5.83966,1.48553)--(5.83951,1.48628)--(5.83937,1.48703)--(5.83923,1.48778)--(5.83908,1.48853)--(5.83894,1.48928)--(5.8388,1.49002)--(5.83867,1.49077)--(5.83853,1.49152)--(5.8384,1.49227)--(5.83826,1.49301)--(5.83813,1.49376)--(5.838,1.4945)--(5.83787,1.49525)--(5.83774,1.49599)--(5.83761,1.49674)--
> (5.83748,1.49748)--(5.83736,1.49822)--(5.83724,1.49897)--(5.83711,1.49971)--(5.83699,1.50045)--(5.83687,1.50119)--(5.83675,1.50193)--(5.83664,1.50267)--(5.83652,1.50341)--(5.83641,1.50415)--(5.83629,1.50489)--(5.83618,1.50563)--(5.83607,1.50637)--(5.83596,1.50711)--(5.83585,1.50785)--(5.83574,1.50858)--(5.83564,1.50932)--(5.83553,1.51006)--(5.83543,1.51079)--(5.83533,1.51153)--(5.83523,1.51226)--(5.83513,1.513)--(5.83503,1.51373)--(5.83493,1.51446)--(5.83484,1.5152)--(5.83474,1.51593)--
> (5.83465,1.51666)--(5.83455,1.5174)--(5.83446,1.51813)--(5.83437,1.51886)--(5.83429,1.51959)--(5.8342,1.52032)--(5.83411,1.52105)--(5.83403,1.52178)--(5.83394,1.52251)--(5.83386,1.52324)--(5.83378,1.52397)--(5.8337,1.5247)--(5.83362,1.52543)--(5.83354,1.52616)--(5.83347,1.52689)--(5.83339,1.52761)--(5.83332,1.52834)--(5.83325,1.52907)--(5.83318,1.52979)--(5.83311,1.53052)--(5.83304,1.53125)--(5.83297,1.53197)--(5.8329,1.5327)--(5.83284,1.53342)--(5.83277,1.53415)--(5.83271,1.53487)--
> (5.83265,1.53559)--(5.83259,1.53632)--(5.83253,1.53704)--(5.83247,1.53776)--(5.83242,1.53849)--(5.83236,1.53921)--(5.83231,1.53993)--(5.83225,1.54065)--(5.8322,1.54138)--(5.83215,1.5421)--(5.8321,1.54282)--(5.83205,1.54354)--(5.83201,1.54426)--(5.83196,1.54498)--(5.83192,1.5457)--(5.83187,1.54642)--(5.83183,1.54714)--(5.83179,1.54786)--(5.83175,1.54858)--(5.83171,1.5493)--(5.83168,1.55002)--(5.83164,1.55074)--(5.83161,1.55145)--(5.83157,1.55217)--(5.83154,1.55289)--(5.83151,1.55361)--
> (5.83148,1.55432)--(5.83145,1.55504)--(5.83142,1.55576)--(5.8314,1.55648)--(5.83137,1.55719)--(5.83135,1.55791)--(5.83133,1.55862)--(5.8313,1.55934)--(5.83128,1.56006)--(5.83126,1.56077)--(5.83125,1.56149)--(5.83123,1.5622)--(5.83121,1.56292)--(5.8312,1.56363)--(5.83119,1.56435)--(5.83118,1.56506)--(5.83117,1.56578)--(5.83116,1.56649)--(5.83115,1.5672)--(5.83114,1.56792)--(5.83114,1.56863)--(5.83113,1.56934)--(5.83113,1.57006)--(5.83112,1.57077)--(5.83112,1.57148)--(5.83112,1.5722)--
> (5.83113,1.57291)--(5.83113,1.57362)--(5.83113,1.57433)--(5.83114,1.57505)--(5.83114,1.57576)--(5.83115,1.57647)--(5.83116,1.57718)--(5.83117,1.57789)--(5.83118,1.5786)--(5.83119,1.57932)--(5.83121,1.58003)--(5.83122,1.58074)--(5.83124,1.58145)--(5.83125,1.58216)--(5.83127,1.58287)--(5.83129,1.58358)--(5.83131,1.58429)--(5.83133,1.585)--(5.83136,1.58571)--(5.83138,1.58643)--(5.83141,1.58714)--(5.83143,1.58785)--(5.83146,1.58856)--(5.83149,1.58927)--(5.83152,1.58998)--(5.83155,1.59069)--
> (5.83158,1.5914)--(5.83162,1.59211)--(5.83165,1.59282)--(5.83169,1.59353)--(5.83173,1.59423)--(5.83177,1.59494)--(5.83181,1.59565)--(5.83185,1.59636)--(5.83189,1.59707)--(5.83193,1.59778)--(5.83198,1.59849)--(5.83202,1.5992)--(5.83207,1.59991)--(5.83212,1.60062)--(5.83217,1.60133)--(5.83222,1.60204)--(5.83227,1.60275)--(5.83232,1.60346)--(5.83238,1.60416)--(5.83243,1.60487)--(5.83249,1.60558)--(5.83255,1.60629)--(5.83261,1.607)--(5.83267,1.60771)--(5.83273,1.60842)--(5.83279,1.60913)--
> (5.83286,1.60984)--(5.83292,1.61055)--(5.83299,1.61125)--(5.83305,1.61196)--(5.83312,1.61267)--(5.83319,1.61338)--(5.83326,1.61409)--(5.83334,1.6148)--(5.83341,1.61551)--(5.83349,1.61622)--(5.83356,1.61693)--(5.83364,1.61764)--(5.83372,1.61835)--(5.8338,1.61906)--(5.83388,1.61976)--(5.83396,1.62047)--(5.83404,1.62118)--(5.83413,1.62189)--(5.83421,1.6226)--(5.8343,1.62331)--(5.83439,1.62402)--(5.83448,1.62473)--(5.83457,1.62544)--(5.83466,1.62615)--(5.83475,1.62686)--(5.83485,1.62757)--
> (5.83494,1.62828)--(5.83504,1.62899)--(5.83514,1.6297)--(5.83524,1.63041)--(5.83534,1.63112)--(5.83544,1.63183)--(5.83554,1.63254)--(5.83565,1.63325)--(5.83575,1.63396)--(5.83586,1.63467)--(5.83597,1.63539)--(5.83607,1.6361)--(5.83618,1.63681)--(5.8363,1.63752)--(5.83641,1.63823)--(5.83652,1.63894)--(5.83664,1.63965)--(5.83675,1.64037)--(5.83687,1.64108)--(5.83699,1.64179)--(5.83711,1.6425)--(5.83723,1.64321)--(5.83735,1.64393)--(5.83748,1.64464)--(5.8376,1.64535)--(5.83773,1.64606)--
> (5.83786,1.64678)--(5.83799,1.64749)--(5.83812,1.6482)--(5.83825,1.64892)--(5.83838,1.64963)--(5.83851,1.65034)--(5.83865,1.65106)--(5.83878,1.65177)--(5.83892,1.65249)--(5.83906,1.6532)--(5.8392,1.65392)--(5.83934,1.65463)--(5.83948,1.65535)--(5.83963,1.65606)--(5.83977,1.65678)--(5.83992,1.65749)--(5.84007,1.65821)--(5.84021,1.65892)--(5.84036,1.65964)--(5.84052,1.66036)--(5.84067,1.66107)--(5.84082,1.66179)--(5.84098,1.66251)--(5.84113,1.66322)--(5.84129,1.66394)--(5.84145,1.66466)--
> (5.84161,1.66538)--(5.84177,1.6661)--(5.84193,1.66681)--(5.8421,1.66753)--(5.84226,1.66825)--(5.84243,1.66897)--(5.8426,1.66969)--(5.84277,1.67041)--(5.84294,1.67113)--(5.84311,1.67185)--(5.84328,1.67257)--(5.84345,1.67329)--(5.84363,1.67401)--(5.84381,1.67473)--(5.84398,1.67545)--(5.84416,1.67618)--(5.84434,1.6769)--(5.84453,1.67762)--(5.84471,1.67834)--(5.84489,1.67907)--(5.84508,1.67979)--(5.84527,1.68051)--(5.84545,1.68124)--(5.84564,1.68196)--(5.84583,1.68268)--(5.84603,1.68341)--
> (5.84622,1.68413)--(5.84641,1.68486)--(5.84661,1.68558)--(5.84681,1.68631)--(5.84701,1.68704)--(5.84721,1.68776)--(5.84741,1.68849)--(5.84761,1.68922)--(5.84782,1.68994)--(5.84802,1.69067)--(5.84823,1.6914)--(5.84843,1.69213)--(5.84864,1.69286)--(5.84885,1.69359)--(5.84907,1.69431)--(5.84928,1.69504)--(5.84949,1.69577)--(5.84971,1.69651)--(5.84993,1.69724)--(5.85015,1.69797)--(5.85037,1.6987)--(5.85059,1.69943)--(5.85081,1.70016)--(5.85103,1.7009)--(5.85126,1.70163)--(5.85149,1.70236)--
> (5.85171,1.7031)--(5.85194,1.70383)--(5.85217,1.70457)--(5.8524,1.7053)--(5.85264,1.70604)--(5.85287,1.70677)--(5.85311,1.70751)--(5.85335,1.70825)--(5.85358,1.70898)--(5.85383,1.70972)--(5.85407,1.71046)--(5.85431,1.7112)--(5.85455,1.71193)--(5.8548,1.71267)--(5.85505,1.71341)--(5.85529,1.71415)--(5.85554,1.71489)--(5.8558,1.71564)--(5.85605,1.71638)--(5.8563,1.71712)--(5.85656,1.71786)--(5.85681,1.7186)--(5.85707,1.71935)--(5.85733,1.72009)--(5.85759,1.72083)--(5.85785,1.72158)--
> (5.85812,1.72232)--(5.85838,1.72307)--(5.85865,1.72382)--(5.85892,1.72456)--(5.85919,1.72531)--(5.85946,1.72606)--(5.85973,1.72681)--(5.86,1.72755)--(5.86028,1.7283)--(5.86055,1.72905)--(5.86083,1.7298)--(5.86111,1.73055)--(5.86139,1.7313)--(5.86167,1.73206)--(5.86196,1.73281)--(5.86224,1.73356)--(5.86253,1.73431)--(5.86281,1.73507)--(5.8631,1.73582)--(5.86339,1.73658)--(5.86369,1.73733)--(5.86398,1.73809)--(5.86427,1.73884)--(5.86457,1.7396)--(5.86487,1.74036)--(5.86517,1.74112)--
> (5.86547,1.74187)--(5.86577,1.74263)--(5.86607,1.74339)--(5.86638,1.74415)--(5.86669,1.74491)--(5.86699,1.74568)--(5.8673,1.74644)--(5.86762,1.7472)--(5.86793,1.74796)--(5.86824,1.74873)--(5.86856,1.74949)--(5.86887,1.75026)--(5.86919,1.75102)--(5.86951,1.75179)--(5.86983,1.75256)--(5.87016,1.75332)--(5.87048,1.75409)--(5.87081,1.75486)--(5.87113,1.75563)--(5.87146,1.7564)--(5.87179,1.75717)--(5.87213,1.75794)--(5.87246,1.75871)--(5.87279,1.75949)--(5.87313,1.76026)--(5.87347,1.76103)--
> (5.87381,1.76181)--(5.87415,1.76258)--(5.87449,1.76336)--(5.87484,1.76414)--(5.87518,1.76491)--(5.87553,1.76569)--(5.87588,1.76647)--(5.87623,1.76725)--(5.87658,1.76803)--(5.87694,1.76881)--(5.87729,1.76959)--(5.87765,1.77037)--(5.87801,1.77116)--(5.87837,1.77194)--(5.87873,1.77272)--(5.87909,1.77351)--(5.87945,1.77429)--(5.87982,1.77508)--(5.88019,1.77587)--(5.88056,1.77666)--(5.88093,1.77744)--(5.8813,1.77823)--(5.88168,1.77902)--(5.88205,1.77981)--(5.88243,1.78061)--(5.88281,1.7814)--
> (5.88319,1.78219)--(5.88357,1.78299)--(5.88395,1.78378)--(5.88434,1.78458)--(5.88473,1.78537)--(5.88512,1.78617)--(5.88551,1.78697)--(5.8859,1.78777)--(5.88629,1.78856)--(5.88669,1.78937)--(5.88708,1.79017)--(5.88748,1.79097)--(5.88788,1.79177)--(5.88828,1.79257)--(5.88869,1.79338)--(5.88909,1.79418)--(5.8895,1.79499)--(5.88991,1.7958)--(5.89032,1.7966)--(5.89073,1.79741)--(5.89114,1.79822)--(5.89156,1.79903)--(5.89198,1.79984)--(5.8924,1.80066)--(5.89282,1.80147)--(5.89324,1.80228)--
> (5.89366,1.8031)--(5.89409,1.80391)--(5.89451,1.80473)--(5.89494,1.80555)--(5.89537,1.80636)--(5.89581,1.80718)--(5.89624,1.808)--(5.89668,1.80882)--(5.89711,1.80964)--(5.89755,1.81047)--(5.898,1.81129)--(5.89844,1.81212)--(5.89888,1.81294)--(5.89933,1.81377)--(5.89978,1.81459)--(5.90023,1.81542)--(5.90068,1.81625)--(5.90113,1.81708)--(5.90159,1.81791)--(5.90205,1.81875)--(5.90251,1.81958)--(5.90297,1.82041)--(5.90343,1.82125)--(5.90389,1.82208)--(5.90436,1.82292)--(5.90483,1.82376)--
> (5.9053,1.8246)--(5.90577,1.82544)--(5.90624,1.82628)--(5.90672,1.82712)--(5.90719,1.82796)--(5.90767,1.82881)--(5.90815,1.82965)--(5.90864,1.8305)--(5.90912,1.83135)--(5.90961,1.8322)--(5.9101,1.83305)--(5.91059,1.8339)--(5.91108,1.83475)--(5.91157,1.8356)--(5.91207,1.83645)--(5.91257,1.83731)--(5.91307,1.83816)--(5.91357,1.83902)--(5.91407,1.83988)--(5.91458,1.84074)--(5.91508,1.8416)--(5.91559,1.84246)--(5.91611,1.84332)--(5.91662,1.84419)--(5.91713,1.84505)--(5.91765,1.84592)--
> (5.91817,1.84678)--(5.91869,1.84765)--(5.91921,1.84852)--(5.91974,1.84939)--(5.92027,1.85026)--(5.92079,1.85113)--(5.92132,1.85201)--(5.92186,1.85288)--(5.92239,1.85376)--(5.92293,1.85464)--(5.92347,1.85552)--(5.92401,1.8564)--(5.92455,1.85728)--(5.9251,1.85816)--(5.92564,1.85904)--(5.92619,1.85993)--(5.92674,1.86081)--(5.9273,1.8617)--(5.92785,1.86259)--(5.92841,1.86348)--(5.92897,1.86437)--(5.92953,1.86526)--(5.93009,1.86615)--(5.93066,1.86705)--(5.93123,1.86795)--(5.9318,1.86884)--
> (5.93237,1.86974)--(5.93294,1.87064)--(5.93352,1.87154)--(5.93409,1.87244)--(5.93468,1.87335)--(5.93526,1.87425)--(5.93584,1.87516)--(5.93643,1.87607)--(5.93702,1.87698)--(5.93761,1.87789)--(5.9382,1.8788)--(5.9388,1.87971)--(5.93939,1.88063)--(5.93999,1.88154)--(5.9406,1.88246)--(5.9412,1.88338)--(5.94181,1.8843)--(5.94241,1.88522)--(5.94302,1.88614)--(5.94364,1.88707)--(5.94425,1.88799)--(5.94487,1.88892)--(5.94549,1.88985)--(5.94611,1.89078)--(5.94673,1.89171)--(5.94736,1.89264)--
> (5.94799,1.89358)--(5.94862,1.89451)--(5.94925,1.89545)--(5.94989,1.89639)--(5.95053,1.89733)--(5.95117,1.89827)--(5.95181,1.89921)--(5.95245,1.90016)--(5.9531,1.9011)--(5.95375,1.90205)--(5.9544,1.903)--(5.95506,1.90395)--(5.95571,1.9049)--(5.95637,1.90586)--(5.95703,1.90681)--(5.9577,1.90777)--(5.95836,1.90873)--(5.95903,1.90969)--(5.9597,1.91065)--(5.96037,1.91161)--(5.96105,1.91258)--(5.96173,1.91354)--(5.96241,1.91451)--(5.96309,1.91548)--(5.96378,1.91645)--(5.96446,1.91743)--
> (5.96515,1.9184)--(5.96585,1.91938)--(5.96654,1.92036)--(5.96724,1.92134)--(5.96794,1.92232)--(5.96864,1.9233)--(5.96935,1.92428)--(5.97005,1.92527)--(5.97076,1.92626)--(5.97148,1.92725)--(5.97219,1.92824)--(5.97291,1.92923)--(5.97363,1.93023)--(5.97435,1.93122)--(5.97508,1.93222)--(5.97581,1.93322)--(5.97654,1.93423)--(5.97727,1.93523)--(5.97801,1.93623)--(5.97875,1.93724)--(5.97949,1.93825)--(5.98023,1.93926)--(5.98098,1.94027)--(5.98173,1.94129)--(5.98248,1.94231)--(5.98323,1.94332)--
> (5.98399,1.94434)--(5.98475,1.94537)--(5.98551,1.94639)--(5.98628,1.94742)--(5.98705,1.94844)--(5.98782,1.94947)--(5.98859,1.95051)--(5.98937,1.95154)--(5.99015,1.95257)--(5.99093,1.95361)--(5.99171,1.95465)--(5.9925,1.95569)--(5.99329,1.95673)--(5.99409,1.95778)--(5.99488,1.95883)--(5.99568,1.95988)--(5.99648,1.96093)--(5.99729,1.96198)--(5.99809,1.96304)--(5.9989,1.96409)--(5.99972,1.96515)--(6.00053,1.96621)--(6.00135,1.96728)--(6.00217,1.96834)--(6.003,1.96941)--(6.00383,1.97048)--
> (6.00466,1.97155)--(6.00549,1.97262)--(6.00633,1.9737)--(6.00717,1.97478)--(6.00801,1.97586)--(6.00886,1.97694)--(6.0097,1.97802)--(6.01056,1.97911)--(6.01141,1.9802)--(6.01227,1.98129)--(6.01313,1.98238)--(6.01399,1.98348)--(6.01486,1.98458)--(6.01573,1.98568)--(6.0166,1.98678)--(6.01748,1.98788)--(6.01836,1.98899)--(6.01924,1.9901)--(6.02013,1.99121)--(6.02102,1.99232)--(6.02191,1.99344)--(6.0228,1.99456)--(6.0237,1.99568)--(6.0246,1.9968)--(6.02551,1.99793)--(6.02642,1.99905)--
> (6.02733,2.00018)--(6.02824,2.00131)--(6.02916,2.00245)--(6.03008,2.00359)--(6.03101,2.00473)--(6.03194,2.00587)--(6.03287,2.00701)--(6.0338,2.00816)--(6.03474,2.00931)--(6.03568,2.01046)--(6.03663,2.01161)--(6.03757,2.01277)--(6.03852,2.01393)--(6.03948,2.01509)--(6.04044,2.01625)--(6.0414,2.01742)--(6.04237,2.01859)--(6.04333,2.01976)--(6.04431,2.02094)--(6.04528,2.02211)--(6.04626,2.02329)--(6.04724,2.02448)--(6.04823,2.02566)--(6.04922,2.02685)--(6.05021,2.02804)--(6.05121,2.02923)--
> (6.05221,2.03043)--(6.05322,2.03163)--(6.05422,2.03283)--(6.05524,2.03403)--(6.05625,2.03524)--(6.05727,2.03645)--(6.05829,2.03766)--(6.05932,2.03887)--(6.06035,2.04009)--(6.06138,2.04131)--(6.06242,2.04253)--(6.06346,2.04376)--(6.06451,2.04499)--(6.06556,2.04622)--(6.06661,2.04746)--(6.06767,2.04869)--(6.06873,2.04993)--(6.06979,2.05118)--(6.07086,2.05242)--(6.07193,2.05367)--(6.07301,2.05492)--(6.07409,2.05618)--(6.07517,2.05744)--(6.07626,2.0587)--(6.07735,2.05996)--(6.07845,2.06123)--
> (6.07955,2.0625)--(6.08065,2.06377)--(6.08176,2.06505)--(6.08287,2.06633)--(6.08399,2.06761)--(6.08511,2.0689)--(6.08623,2.07019)--(6.08736,2.07148)--(6.0885,2.07277)--(6.08963,2.07407)--(6.09077,2.07538)--(6.09192,2.07668)--(6.09307,2.07799)--(6.09422,2.0793)--(6.09538,2.08061)--(6.09654,2.08193)--(6.09771,2.08325)--(6.09888,2.08458)--(6.10006,2.08591)--(6.10124,2.08724)--(6.10242,2.08857)--(6.10361,2.08991)--(6.1048,2.09125)--(6.106,2.0926)--(6.1072,2.09395)--(6.10841,2.0953)--
> (6.10962,2.09665)--(6.11084,2.09801)--(6.11206,2.09937)--(6.11328,2.10074)--(6.11451,2.10211)--(6.11574,2.10348)--(6.11698,2.10486)--(6.11822,2.10624)--(6.11947,2.10762)--(6.12072,2.10901)--(6.12198,2.1104)--(6.12324,2.1118)--(6.12451,2.11319)--(6.12578,2.1146)--(6.12706,2.116)--(6.12834,2.11741)--(6.12963,2.11883)--(6.13092,2.12024)--(6.13221,2.12166)--(6.13351,2.12309)--(6.13482,2.12452)--(6.13613,2.12595)--(6.13744,2.12739)--(6.13876,2.12883)--(6.14009,2.13027)--(6.14142,2.13172)--
> (6.14276,2.13317)--(6.1441,2.13463)--(6.14544,2.13609)--(6.14679,2.13755)--(6.14815,2.13902)--(6.14951,2.1405)--(6.15088,2.14197)--(6.15225,2.14345)--(6.15363,2.14494)--(6.15501,2.14643)--(6.1564,2.14792)--(6.15779,2.14942)--(6.15919,2.15092)--(6.1606,2.15243)--(6.162,2.15394)--(6.16342,2.15545)--(6.16484,2.15697)--(6.16627,2.15849)--(6.1677,2.16002)--(6.16913,2.16155)--(6.17058,2.16309)--(6.17203,2.16463)--(6.17348,2.16618)--(6.17494,2.16773)--(6.1764,2.16928)--(6.17788,2.17084)--
> (6.17935,2.1724)--(6.18084,2.17397)--(6.18232,2.17555)--(6.18382,2.17712)--(6.18532,2.17871)--(6.18682,2.18029)--(6.18834,2.18188)--(6.18985,2.18348)--(6.19138,2.18508)--(6.19291,2.18669)--(6.19445,2.1883)--(6.19599,2.18991)--(6.19754,2.19153)--(6.19909,2.19316)--(6.20065,2.19479)--(6.20222,2.19643)--(6.20379,2.19807)--(6.20537,2.19971)--(6.20696,2.20136)--(6.20855,2.20302)--(6.21015,2.20468)--(6.21175,2.20634)--(6.21336,2.20802)--(6.21498,2.20969)--(6.21661,2.21137)--(6.21824,2.21306)--
> (6.21987,2.21475)--(6.22152,2.21645)--(6.22317,2.21815)--(6.22483,2.21986)--(6.22649,2.22157)--(6.22816,2.22329)--(6.22984,2.22502)--(6.23153,2.22675)--(6.23322,2.22848)--(6.23492,2.23022)--(6.23662,2.23197)--(6.23833,2.23372)--(6.24005,2.23548)--(6.24178,2.23724)--(6.24351,2.23901)--(6.24525,2.24079)--(6.247,2.24257)--(6.24876,2.24435)--(6.25052,2.24615)--(6.25229,2.24794)--(6.25407,2.24975)--(6.25585,2.25156)--(6.25764,2.25337)--(6.25944,2.2552)--(6.26125,2.25702)--(6.26306,2.25886)--
> (6.26489,2.2607)--(6.26671,2.26255)--(6.26855,2.2644)--(6.2704,2.26626)--(6.27225,2.26812)--(6.27411,2.27)--(6.27598,2.27187)--(6.27785,2.27376)--(6.27974,2.27565)--(6.28163,2.27755)--(6.28353,2.27945)--(6.28544,2.28136)--(6.28736,2.28328)--(6.28928,2.2852)--(6.29121,2.28713)--(6.29315,2.28907)--(6.2951,2.29101)--(6.29706,2.29296)--(6.29903,2.29492)--(6.301,2.29688)--(6.30298,2.29886)--(6.30498,2.30083)--(6.30698,2.30282)--(6.30898,2.30481)--(6.311,2.30681)--(6.31303,2.30882)--(6.31506,2.31083)--
> (6.31711,2.31285)--(6.31916,2.31488)--(6.32122,2.31692)--(6.32329,2.31896)--(6.32537,2.32101)--(6.32746,2.32307)--(6.32956,2.32513)--(6.33167,2.3272)--(6.33378,2.32928)--(6.33591,2.33137)--(6.33804,2.33347)--(6.34019,2.33557)--(6.34234,2.33768)--(6.34451,2.3398)--(6.34668,2.34193)--(6.34886,2.34406)--(6.35106,2.3462)--(6.35326,2.34836)--(6.35547,2.35051)--(6.35769,2.35268)--(6.35993,2.35486)--(6.36217,2.35704)--(6.36442,2.35923)--(6.36668,2.36143)--(6.36896,2.36364)--(6.37124,2.36586)--
> (6.37353,2.36808)--(6.37584,2.37032)--(6.37815,2.37256)--(6.38048,2.37481)--(6.38281,2.37707)--(6.38516,2.37934)--(6.38751,2.38162)--(6.38988,2.3839)--(6.39226,2.3862)--(6.39465,2.3885)--(6.39705,2.39082)--(6.39946,2.39314)--(6.40189,2.39547)--(6.40432,2.39781)--(6.40677,2.40016)--(6.40922,2.40252)--(6.41169,2.40489)--(6.41417,2.40727)--(6.41666,2.40966)--(6.41917,2.41206)--(6.42168,2.41446)--(6.42421,2.41688)--(6.42675,2.41931)--(6.4293,2.42174)--(6.43186,2.42419)--(6.43444,2.42665)--
> (6.43702,2.42912)--(6.43962,2.43159)--(6.44223,2.43408)--(6.44486,2.43658)--(6.4475,2.43909)--(6.45015,2.44161)--(6.45281,2.44414)--(6.45548,2.44668)--(6.45817,2.44923)--(6.46087,2.45179)--(6.46359,2.45436)--(6.46631,2.45694)--(6.46906,2.45954)--(6.47181,2.46214)--(6.47458,2.46476)--(6.47736,2.46739)--(6.48015,2.47003)--(6.48296,2.47268)--(6.48578,2.47534)--(6.48862,2.47801)--(6.49147,2.4807)--(6.49433,2.48339)--(6.49721,2.4861)--(6.5001,2.48882)--(6.50301,2.49155)--(6.50593,2.4943)--
> (6.50887,2.49705)--(6.51182,2.49982)--(6.51479,2.5026)--(6.51777,2.5054)--(6.52076,2.5082)--(6.52377,2.51102)--(6.5268,2.51385)--(6.52984,2.5167)--(6.5329,2.51955)--(6.53597,2.52242)--(6.53906,2.5253)--(6.54216,2.5282)--(6.54528,2.53111)--(6.54842,2.53403)--(6.55157,2.53697)--(6.55474,2.53992)--(6.55792,2.54288)--(6.56112,2.54586)--(6.56434,2.54885)--(6.56758,2.55185)--(6.57083,2.55487)--(6.5741,2.5579)--(6.57738,2.56095)--(6.58068,2.56401)--(6.584,2.56709)--(6.58734,2.57018)--(6.5907,2.57328)--
> (6.59407,2.5764)--(6.59746,2.57954)--(6.60087,2.58269)--(6.6043,2.58585)--(6.60774,2.58903)--(6.61121,2.59223)--(6.61469,2.59544)--(6.61819,2.59867)--(6.62171,2.60191)--(6.62525,2.60517)--(6.62881,2.60844)--(6.63239,2.61173)--(6.63599,2.61504)--(6.6396,2.61836)--(6.64324,2.6217)--(6.6469,2.62506)--(6.65057,2.62843)--(6.65427,2.63182)--(6.65799,2.63523)--(6.66173,2.63865)--(6.66549,2.6421)--(6.66927,2.64556)--(6.67307,2.64903)--(6.67689,2.65253)--(6.68073,2.65604)--(6.6846,2.65957)--
> (6.68849,2.66312)--(6.6924,2.66669)--(6.69633,2.67027)--(6.70028,2.67388)--(6.70426,2.6775)--(6.70826,2.68114)--(6.71228,2.68481)--(6.71632,2.68849)--(6.72039,2.69219)--(6.72448,2.69591)--(6.7286,2.69965)--(6.73274,2.70341)--(6.7369,2.70719)--(6.74109,2.71099)--(6.7453,2.71481)--(6.74954,2.71865)--(6.7538,2.72251)--(6.75808,2.72639)--(6.76239,2.7303)--(6.76673,2.73422)--(6.77109,2.73817)--(6.77548,2.74214)--(6.7799,2.74613)--(6.78434,2.75014)--(6.78881,2.75418)--(6.7933,2.75824)--
> (6.79782,2.76232)--(6.80237,2.76642)--(6.80695,2.77055)--(6.81155,2.7747)--(6.81619,2.77887)--(6.82085,2.78307)--(6.82554,2.78729)--(6.83026,2.79154)--(6.835,2.79581)--(6.83978,2.8001)--(6.84459,2.80442)--(6.84942,2.80876)--(6.85429,2.81313)--(6.85919,2.81753)--(6.86411,2.82195)--(6.86907,2.8264)--(6.87406,2.83087)--(6.87908,2.83537)--(6.88414,2.8399)--(6.88922,2.84445)--(6.89434,2.84903)--(6.89949,2.85364)--(6.90467,2.85827)--(6.90989,2.86294)--(6.91514,2.86763)--(6.92042,2.87235)--
> (6.92574,2.8771)--(6.93109,2.88188)--(6.93648,2.88669)--(6.94191,2.89152)--(6.94736,2.89639)--(6.95286,2.90129)--(6.95839,2.90622)--(6.96396,2.91118)--(6.96956,2.91617)--(6.97521,2.92119)--(6.98089,2.92624)--(6.9866,2.93133)--(6.99236,2.93645)--(6.99816,2.9416)--(7.00399,2.94678)--(7.00987,2.952)--(7.01578,2.95725)--(7.02174,2.96253)--(7.02773,2.96785)--(7.03377,2.9732)--(7.03985,2.97859)--(7.04597,2.98402)--(7.05213,2.98948)--(7.05834,2.99497)--(7.06459,3.00051)--(7.07088,3.00608)--
> (7.07722,3.01168)--(7.0836,3.01733)--(7.09003,3.02301)--(7.0965,3.02873)--(7.10302,3.03449)--(7.10959,3.04029)--(7.1162,3.04613)--(7.12286,3.05201)--(7.12957,3.05793)--(7.13633,3.06389)--(7.14314,3.06989)--(7.14999,3.07593)--(7.1569,3.08202)--(7.16386,3.08815)--(7.17087,3.09432)--(7.17793,3.10054)--(7.18504,3.1068)--(7.19221,3.1131)--(7.19943,3.11945)--(7.2067,3.12585)--(7.21403,3.13229)--(7.22142,3.13878)--(7.22886,3.14532)--(7.23635,3.1519)--(7.24391,3.15853)--(7.25152,3.16521)--
> (7.25919,3.17194)--(7.26692,3.17873)--(7.27471,3.18556)--(7.28257,3.19244)--(7.29048,3.19937)--(7.29845,3.20636)--(7.30649,3.2134)--(7.31459,3.22049)--(7.32276,3.22764)--(7.33099,3.23484)--(7.33928,3.2421)--(7.34765,3.24941)--(7.35608,3.25678)--(7.36457,3.26421)--(7.37314,3.2717)--(7.38178,3.27924)--(7.39049,3.28685)--(7.39927,3.29451)--(7.40812,3.30224)--(7.41704,3.31002)--(7.42604,3.31787)--(7.43511,3.32579)--(7.44426,3.33377)--(7.45349,3.34181)--(7.4628,3.34992)--(7.47218,3.35809)--
> (7.48164,3.36634)--(7.49119,3.37465)--(7.50082,3.38303)--(7.51053,3.39148)--(7.52032,3.4)--(7.5302,3.40859)--(7.54016,3.41726)--(7.55022,3.426)--(7.56036,3.43481)--(7.57059,3.4437)--(7.58091,3.45267)--(7.59132,3.46171)--(7.60183,3.47084)--(7.61243,3.48004)--(7.62313,3.48932)--(7.63392,3.49869)--(7.64481,3.50814)--(7.6558,3.51767)--(7.6669,3.52729)--(7.67809,3.53699)--(7.68939,3.54678)--(7.70079,3.55667)--(7.71231,3.56664)--(7.72393,3.5767)--(7.73565,3.58686)--(7.74749,3.59711)--(7.75945,3.60745)--
> (7.77152,3.61789)--(7.7837,3.62843)--(7.796,3.63907)--(7.80842,3.64981)--(7.82096,3.66065)--(7.83363,3.6716)--(7.84642,3.68265)--(7.85933,3.69381)--(7.87238,3.70508)--(7.88555,3.71646)--(7.89886,3.72794)--(7.9123,3.73955)--(7.92588,3.75127)--(7.9396,3.7631)--(7.95346,3.77505)--(7.96746,3.78713)--(7.9816,3.79933)--(7.99589,3.81165)--(8.01033,3.82409)--(8.02493,3.83667)--(8.03967,3.84937)--(8.05458,3.86221)--(8.06964,3.87518)--(8.08486,3.88829)--(8.10025,3.90154)--(8.1158,3.91493)--
> (8.13153,3.92846)--(8.14742,3.94214)--(8.1635,3.95596)--(8.17975,3.96994)--(8.19618,3.98407)--(8.21279,3.99835)--(8.22959,4.0128)--(8.24658,4.0274)--(8.26377,4.04217)--(8.28115,4.0571)--(8.29873,4.0722)--(8.31652,4.08747)--(8.33451,4.10292)--(8.35271,4.11855)--(8.37113,4.13436)--(8.38976,4.15035)--(8.40862,4.16653)--(8.4277,4.18291)--(8.44702,4.19947)--(8.46656,4.21624)--(8.48635,4.2332)--(8.50638,4.25037)--(8.52666,4.26775)--(8.54718,4.28535)--(8.56797,4.30316)--(8.58901,4.32119)--
> (8.61033,4.33945)--(8.63191,4.35793)--(8.65377,4.37665)--(8.67591,4.39561)--(8.69834,4.41481)--(8.72106,4.43426)--(8.74408,4.45397)--(8.76741,4.47393)--(8.79105,4.49415)--(8.815,4.51464)--(8.83928,4.5354)--(8.86388,4.55645)--(8.88882,4.57777)--(8.91411,4.59939)--(8.93975,4.62131)--(8.96574,4.64352)--(8.9921,4.66605)--(9.01883,4.68889)--(9.04595,4.71206)--(9.07345,4.73555)--(9.10135,4.75938)--(9.12966,4.78355)--(9.15838,4.80808)--(9.18753,4.83296)--(9.21711,4.85821)--(9.24714,4.88384)--
> (9.27761,4.90985)--(9.30856,4.93625)--(9.33997,4.96306)--(9.37187,4.99027)--(9.40427,5.01791)--(9.43718,5.04597)--(9.47061,5.07448)--(9.50457,5.10343)--(9.53907,5.13285)--(9.57414,5.16274)--(9.60978,5.19312)--(9.646,5.22399)--(9.68283,5.25537)--(9.72027,5.28727)--(9.75834,5.31971)--(9.79706,5.35269)--(9.83645,5.38624)--(9.87652,5.42036)--(9.91728,5.45508)--(9.95877,5.4904)--(10.001,5.52634)--(10.044,5.56293)--(10.0877,5.60017)--(10.1323,5.63809)--(10.1777,5.67671)--(10.2239,5.71604)--
> (10.271,5.7561)--(10.3189,5.79691)--(10.3678,5.83851)--(10.4177,5.8809)--(10.4685,5.92411)--(10.5203,5.96817)--(10.5731,6.01309)--(10.627,6.05892)--(10.682,6.10567)--(10.7381,6.15337)--(10.7954,6.20206)--(10.8539,6.25176)--(10.9136,6.3025)--(10.9746,6.35433)--(11.0369,6.40726)--(11.1005,6.46135)--(11.1656,6.51662)--(11.2321,6.57312)--(11.3001,6.63089)--(11.3697,6.68998)--(11.4409,6.75042)--(11.5137,6.81226)--(11.5882,6.87556)--(11.6646,6.94037)--(11.7427,7.00674)--(11.8228,7.07472)--
> (11.9049,7.14439)--(11.989,7.2158)--(12.0753,7.28901)--(12.1638,7.3641)--(12.2545,7.44115)--(12.3477,7.52022)--(12.4434,7.6014)--(12.5417,7.68478)--(12.6426,7.77044)--(12.7464,7.85848)--(12.8531,7.94901)--(12.9629,8.04212)--(13.0759,8.13793)--(13.1922,8.23657)--(13.312,8.33815)--(13.4354,8.44281)--(13.5626,8.5507)--(13.6939,8.66197)--(13.8293,8.77677)--(13.969,8.89528)--(14.1134,9.01768)--(14.2626,9.14416)--(14.4169,9.27494)--(14.5765,9.41024)--(14.7418,9.5503)--(14.913,9.69536)--
> (15.0904,9.84571)--(15.2744,10.0016)--(15.4653,10.1635)--(15.6637,10.3315)--(15.8698,10.5062)--(16.0842,10.6879)--(16.3074,10.877)--(16.54,11.074)--(16.7825,11.2794)--(17.0355,11.4938)--(17.2999,11.7177)--(17.5763,11.9518)--(17.8656,12.1969)--(18.1687,12.4537)--(18.4867,12.723)--(18.8207,13.0058)--(19.1718,13.3033)--(19.5416,13.6164)--(19.9314,13.9465)--(20.3429,14.295)--(20.7781,14.6635)--(21.239,15.0538)--(21.728,15.4678)--(22.2477,15.9078)--(22.8011,16.3764)--(23.3916,16.8764)--
> (24.023,17.411)--(24.6998,17.984)--(25.4271,18.5997)--(26.2106,19.263)--(27.0572,19.9797)--(27.9748,20.7565)--(28.9728,21.6013)--(30.0621,22.5235)--(31.256,23.5341)--(32.5703,24.6466)--(34.024,25.8771)--(35.6407,27.2456)--(37.4493,28.7765)--(39.4863,30.5007)--(41.7977,32.4571)--(44.4431,34.6962)--(47.5005,37.2839)--(51.0741,40.3086)--(55.3069,43.8911)--(60.3996,48.2015)--(66.6442,53.4867)--(74.481,60.1195)--(84.6081,68.6905)--(98.2012,80.195)--(117.407,96.4498)--(146.606,121.162);
> draw(curve, rgb(0,0,255)+solid );
> path curve = (-125.621,-109.231)--(-100.255,-87.7634)--(-83.1303,-73.2696)--(-70.7912,-62.8264)--(-61.4778,-54.9439)--(-54.1987,-48.7832)--(-48.353,-43.8356)--(-43.5554,-39.775)--(-39.547,-36.3824)--(-36.148,-33.5055)--(-33.2293,-31.0351)--(-30.6957,-28.8906)--(-28.4757,-27.0116)--(-26.5145,-25.3516)--(-24.7694,-23.8745)--(-23.2065,-22.5515)--(-21.7987,-21.3599)--(-20.524,-20.2808)--(-19.3643,-19.2992)--(-18.3048,-18.4023)--(-17.3331,-17.5797)--(-16.4386,-16.8224)--(-15.6125,-16.1231)--
> (-14.8472,-15.4753)--(-14.1364,-14.8734)--(-13.4742,-14.3128)--(-12.8561,-13.7895)--(-12.2775,-13.2997)--(-11.735,-12.8403)--(-11.2252,-12.4087)--(-10.7453,-12.0023)--(-10.2927,-11.619)--(-9.86508,-11.2569)--(-9.46051,-10.9144)--(-9.07716,-10.5897)--(-8.71338,-10.2816)--(-8.36773,-9.98892)--(-8.03889,-9.71042)--(-7.72564,-9.44512)--(-7.42692,-9.19211)--(-7.14173,-8.95055)--(-6.86918,-8.71969)--(-6.60843,-8.49882)--(-6.35876,-8.28732)--(-6.11945,-8.0846)--(-5.88988,-7.89012)--(-5.66948,-7.70339)--
> (-5.45769,-7.52396)--(-5.25402,-7.3514)--(-5.05802,-7.18533)--(-4.86927,-7.02539)--(-4.68736,-6.87124)--(-4.51193,-6.72258)--(-4.34264,-6.57912)--(-4.17918,-6.44059)--(-4.02125,-6.30673)--(-3.86857,-6.17733)--(-3.72089,-6.05215)--(-3.57796,-5.93099)--(-3.43956,-5.81367)--(-3.30547,-5.70001)--(-3.17551,-5.58982)--(-3.04947,-5.48297)--(-2.92719,-5.37929)--(-2.80851,-5.27866)--(-2.69325,-5.18093)--(-2.58129,-5.08598)--(-2.47247,-4.9937)--(-2.36668,-4.90397)--(-2.26377,-4.81669)--(-2.16365,-4.73177)--
> (-2.06619,-4.6491)--(-1.97129,-4.56859)--(-1.87886,-4.49018)--(-1.78879,-4.41376)--(-1.701,-4.33928)--(-1.6154,-4.26664)--(-1.53191,-4.1958)--(-1.45046,-4.12668)--(-1.37097,-4.05922)--(-1.29337,-3.99335)--(-1.21759,-3.92904)--(-1.14358,-3.86621)--(-1.07126,-3.80482)--(-1.00059,-3.74482)--(-0.931506,-3.68617)--(-0.863955,-3.62881)--(-0.797887,-3.57271)--(-0.733255,-3.51783)--(-0.670013,-3.46412)--(-0.608115,-3.41155)--(-0.54752,-3.36008)--(-0.488187,-3.30968)--(-0.430077,-3.26032)--
> (-0.373153,-3.21195)--(-0.317378,-3.16457)--(-0.262718,-3.11812)--(-0.209141,-3.07259)--(-0.156614,-3.02795)--(-0.105107,-2.98418)--(-0.0545907,-2.94124)--(-0.00503649,-2.89912)--(0.0435827,-2.85779)--(0.091293,-2.81722)--(0.13812,-2.77741)--(0.184087,-2.73832)--(0.229218,-2.69994)--(0.273536,-2.66225)--(0.317063,-2.62523)--(0.359818,-2.58887)--(0.401824,-2.55313)--(0.443098,-2.51802)--(0.483661,-2.48351)--(0.523529,-2.44958)--(0.562722,-2.41623)--(0.601255,-2.38344)--(0.639146,-2.35119)--
> (0.67641,-2.31947)--(0.713063,-2.28827)--(0.74912,-2.25757)--(0.784594,-2.22736)--(0.8195,-2.19764)--(0.853852,-2.16839)--(0.887662,-2.13959)--(0.920944,-2.11124)--(0.953709,-2.08333)--(0.985969,-2.05585)--(1.01774,-2.02878)--(1.04902,-2.00212)--(1.07984,-1.97586)--(1.11019,-1.94999)--(1.14009,-1.92451)--(1.16956,-1.89939)--(1.19859,-1.87464)--(1.2272,-1.85024)--(1.2554,-1.8262)--(1.2832,-1.8025)--(1.3106,-1.77913)--(1.33761,-1.75608)--(1.36425,-1.73336)--(1.39051,-1.71095)--(1.41641,-1.68885)--
> (1.44196,-1.66705)--(1.46716,-1.64555)--(1.49202,-1.62433)--(1.51654,-1.6034)--(1.54074,-1.58274)--(1.56461,-1.56236)--(1.58817,-1.54224)--(1.61142,-1.52238)--(1.63437,-1.50278)--(1.65702,-1.48343)--(1.67938,-1.46433)--(1.70146,-1.44547)--(1.72325,-1.42685)--(1.74477,-1.40846)--(1.76602,-1.39029)--(1.78701,-1.37236)--(1.80774,-1.35464)--(1.82821,-1.33713)--(1.84843,-1.31984)--(1.8684,-1.30276)--(1.88814,-1.28588)--(1.90764,-1.2692)--(1.9269,-1.25272)--(1.94594,-1.23644)--(1.96475,-1.22034)--
> (1.98334,-1.20443)--(2.00171,-1.1887)--(2.01987,-1.17316)--(2.03783,-1.15779)--(2.05557,-1.14259)--(2.07311,-1.12757)--(2.09046,-1.11272)--(2.10761,-1.09803)--(2.12456,-1.0835)--(2.14133,-1.06913)--(2.15791,-1.05493)--(2.17431,-1.04087)--(2.19053,-1.02697)--(2.20658,-1.01322)--(2.22244,-0.999613)--(2.23814,-0.986153)--(2.25367,-0.972836)--(2.26903,-0.95966)--(2.28423,-0.946622)--(2.29927,-0.933719)--(2.31415,-0.920951)--(2.32888,-0.908314)--(2.34345,-0.895808)--(2.35787,-0.883429)--
> (2.37214,-0.871175)--(2.38627,-0.859046)--(2.40025,-0.847039)--(2.41409,-0.835151)--(2.42779,-0.823382)--(2.44136,-0.81173)--(2.45479,-0.800192)--(2.46808,-0.788768)--(2.48124,-0.777455)--(2.49428,-0.766251)--(2.50718,-0.755156)--(2.51996,-0.744168)--(2.53262,-0.733285)--(2.54515,-0.722505)--(2.55756,-0.711827)--(2.56986,-0.70125)--(2.58204,-0.690772)--(2.5941,-0.680392)--(2.60605,-0.670108)--(2.61788,-0.65992)--(2.62961,-0.649825)--(2.64122,-0.639823)--(2.65273,-0.629911)--(2.66413,-0.62009)--
> (2.67543,-0.610357)--(2.68662,-0.600712)--(2.69772,-0.591153)--(2.70871,-0.581679)--(2.7196,-0.57229)--(2.7304,-0.562983)--(2.7411,-0.553758)--(2.7517,-0.544613)--(2.76221,-0.535548)--(2.77262,-0.526562)--(2.78295,-0.517653)--(2.79318,-0.508821)--(2.80333,-0.500064)--(2.81339,-0.491382)--(2.82336,-0.482773)--(2.83324,-0.474237)--(2.84305,-0.465773)--(2.85276,-0.45738)--(2.8624,-0.449056)--(2.87195,-0.440802)--(2.88142,-0.432616)--(2.89082,-0.424497)--(2.90013,-0.416444)--(2.90937,-0.408457)--
> (2.91853,-0.400535)--(2.92761,-0.392678)--(2.93662,-0.384883)--(2.94556,-0.377151)--(2.95443,-0.369481)--(2.96322,-0.361871)--(2.97194,-0.354322)--(2.98059,-0.346833)--(2.98917,-0.339402)--(2.99768,-0.332029)--(3.00613,-0.324714)--(3.01451,-0.317456)--(3.02282,-0.310254)--(3.03106,-0.303107)--(3.03925,-0.296015)--(3.04736,-0.288977)--(3.05542,-0.281993)--(3.06341,-0.275061)--(3.07134,-0.268182)--(3.07921,-0.261355)--(3.08702,-0.254579)--(3.09477,-0.247853)--(3.10246,-0.241177)--
> (3.11009,-0.234551)--(3.11767,-0.227974)--(3.12519,-0.221445)--(3.13265,-0.214963)--(3.14005,-0.208529)--(3.1474,-0.202142)--(3.1547,-0.195801)--(3.16194,-0.189505)--(3.16913,-0.183255)--(3.17627,-0.177049)--(3.18335,-0.170888)--(3.19039,-0.16477)--(3.19737,-0.158696)--(3.2043,-0.152664)--(3.21118,-0.146675)--(3.21801,-0.140728)--(3.22479,-0.134822)--(3.23153,-0.128957)--(3.23822,-0.123133)--(3.24486,-0.117349)--(3.25145,-0.111605)--(3.25799,-0.1059)--(3.26449,-0.100234)--(3.27095,-0.0946061)--
> (3.27736,-0.0890166)--(3.28373,-0.0834648)--(3.29005,-0.0779504)--(3.29633,-0.0724729)--(3.30256,-0.067032)--(3.30875,-0.0616273)--(3.3149,-0.0562584)--(3.32101,-0.050925)--(3.32708,-0.0456268)--(3.3331,-0.0403633)--(3.33909,-0.0351342)--(3.34503,-0.0299392)--(3.35094,-0.0247779)--(3.35681,-0.0196501)--(3.36263,-0.0145553)--(3.36842,-0.00949323)--(3.37417,-0.00446363)--(3.37988,0.000533854)--(3.38556,0.00549954)--(3.3912,0.0104337)--(3.3968,0.0153367)--(3.40236,0.0202088)--(3.40789,0.0250503)--
> (3.41338,0.0298616)--(3.41884,0.0346428)--(3.42426,0.0393942)--(3.42965,0.0441163)--(3.43501,0.0488091)--(3.44033,0.0534731)--(3.44561,0.0581084)--(3.45086,0.0627154)--(3.45608,0.0672943)--(3.46127,0.0718454)--(3.46642,0.0763689)--(3.47155,0.0808651)--(3.47664,0.0853342)--(3.48169,0.0897765)--(3.48672,0.0941923)--(3.49172,0.0985817)--(3.49668,0.102945)--(3.50162,0.107282)--(3.50652,0.111594)--(3.5114,0.115881)--(3.51624,0.120142)--(3.52106,0.124379)--(3.52585,0.12859)--(3.5306,0.132777)--
> (3.53533,0.13694)--(3.54003,0.141079)--(3.54471,0.145194)--(3.54935,0.149286)--(3.55397,0.153353)--(3.55856,0.157398)--(3.56312,0.16142)--(3.56766,0.165419)--(3.57217,0.169395)--(3.57665,0.173349)--(3.58111,0.177281)--(3.58554,0.18119)--(3.58995,0.185078)--(3.59433,0.188944)--(3.59868,0.192788)--(3.60301,0.196612)--(3.60732,0.200414)--(3.6116,0.204195)--(3.61585,0.207956)--(3.62008,0.211695)--(3.62429,0.215415)--(3.62848,0.219114)--(3.63264,0.222793)--(3.63677,0.226452)--(3.64089,0.230092)--
> (3.64498,0.233712)--(3.64904,0.237312)--(3.65309,0.240894)--(3.65711,0.244456)--(3.66111,0.247999)--(3.66509,0.251523)--(3.66905,0.255029)--(3.67298,0.258516)--(3.67689,0.261985)--(3.68078,0.265436)--(3.68465,0.268869)--(3.6885,0.272283)--(3.69233,0.275681)--(3.69614,0.27906)--(3.69993,0.282422)--(3.70369,0.285767)--(3.70744,0.289094)--(3.71117,0.292404)--(3.71487,0.295698)--(3.71856,0.298974)--(3.72223,0.302234)--(3.72587,0.305478)--(3.7295,0.308705)--(3.73311,0.311916)--(3.7367,0.31511)--
> (3.74027,0.318289)--(3.74383,0.321452)--(3.74736,0.324599)--(3.75088,0.32773)--(3.75437,0.330846)--(3.75785,0.333946)--(3.76131,0.337031)--(3.76476,0.340101)--(3.76818,0.343155)--(3.77159,0.346195)--(3.77498,0.34922)--(3.77836,0.35223)--(3.78171,0.355226)--(3.78505,0.358207)--(3.78837,0.361174)--(3.79168,0.364126)--(3.79497,0.367064)--(3.79824,0.369988)--(3.8015,0.372898)--(3.80474,0.375795)--(3.80796,0.378677)--(3.81117,0.381546)--(3.81436,0.384401)--(3.81753,0.387243)--(3.82069,0.390071)--
> (3.82384,0.392886)--(3.82697,0.395688)--(3.83008,0.398477)--(3.83318,0.401252)--(3.83626,0.404015)--(3.83933,0.406765)--(3.84238,0.409503)--(3.84542,0.412228)--(3.84844,0.41494)--(3.85145,0.417639)--(3.85445,0.420327)--(3.85743,0.423002)--(3.86039,0.425665)--(3.86334,0.428316)--(3.86628,0.430954)--(3.8692,0.433581)--(3.87211,0.436196)--(3.87501,0.438799)--(3.87789,0.441391)--(3.88076,0.443971)--(3.88361,0.446539)--(3.88645,0.449096)--(3.88928,0.451642)--(3.8921,0.454176)--(3.8949,0.4567)--
> (3.89769,0.459212)--(3.90046,0.461712)--(3.90323,0.464202)--(3.90598,0.466681)--(3.90871,0.46915)--(3.91144,0.471607)--(3.91415,0.474054)--(3.91685,0.47649)--(3.91954,0.478916)--(3.92221,0.481331)--(3.92487,0.483736)--(3.92752,0.48613)--(3.93016,0.488514)--(3.93279,0.490888)--(3.9354,0.493252)--(3.93801,0.495606)--(3.9406,0.497949)--(3.94318,0.500283)--(3.94574,0.502607)--(3.9483,0.504921)--(3.95085,0.507226)--(3.95338,0.50952)--(3.9559,0.511806)--(3.95841,0.514081)--(3.96091,0.516347)--
> (3.9634,0.518604)--(3.96588,0.520851)--(3.96835,0.523089)--(3.9708,0.525318)--(3.97325,0.527538)--(3.97568,0.529748)--(3.97811,0.53195)--(3.98052,0.534142)--(3.98293,0.536325)--(3.98532,0.5385)--(3.9877,0.540666)--(3.99007,0.542823)--(3.99244,0.544971)--(3.99479,0.54711)--(3.99713,0.549241)--(3.99946,0.551364)--(4.00178,0.553477)--(4.00409,0.555583)--(4.0064,0.55768)--(4.00869,0.559768)--(4.01097,0.561849)--(4.01324,0.563921)--(4.01551,0.565985)--(4.01776,0.56804)--(4.02,0.570088)--
> (4.02224,0.572127)--(4.02446,0.574159)--(4.02668,0.576183)--(4.02889,0.578198)--(4.03108,0.580206)--(4.03327,0.582206)--(4.03545,0.584199)--(4.03762,0.586183)--(4.03978,0.58816)--(4.04194,0.590129)--(4.04408,0.592091)--(4.04621,0.594045)--(4.04834,0.595992)--(4.05046,0.597931)--(4.05257,0.599863)--(4.05467,0.601788)--(4.05676,0.603705)--(4.05884,0.605615)--(4.06092,0.607518)--(4.06298,0.609413)--(4.06504,0.611302)--(4.06709,0.613183)--(4.06913,0.615058)--(4.07116,0.616925)--(4.07319,0.618785)--
> (4.07521,0.620639)--(4.07721,0.622485)--(4.07922,0.624325)--(4.08121,0.626158)--(4.08319,0.627984)--(4.08517,0.629803)--(4.08714,0.631616)--(4.0891,0.633422)--(4.09105,0.635221)--(4.093,0.637014)--(4.09494,0.6388)--(4.09687,0.64058)--(4.09879,0.642353)--(4.10071,0.64412)--(4.10262,0.64588)--(4.10452,0.647635)--(4.10641,0.649382)--(4.1083,0.651124)--(4.11018,0.652859)--(4.11205,0.654588)--(4.11391,0.656311)--(4.11577,0.658028)--(4.11762,0.659739)--(4.11946,0.661443)--(4.1213,0.663142)--
> (4.12313,0.664834)--(4.12495,0.666521)--(4.12676,0.668201)--(4.12857,0.669876)--(4.13037,0.671545)--(4.13217,0.673208)--(4.13395,0.674865)--(4.13574,0.676516)--(4.13751,0.678162)--(4.13928,0.679802)--(4.14104,0.681436)--(4.14279,0.683065)--(4.14454,0.684687)--(4.14628,0.686305)--(4.14801,0.687917)--(4.14974,0.689523)--(4.15146,0.691124)--(4.15318,0.692719)--(4.15489,0.694309)--(4.15659,0.695893)--(4.15829,0.697472)--(4.15998,0.699046)--(4.16166,0.700614)--(4.16334,0.702177)--(4.16501,0.703735)--
> (4.16668,0.705288)--(4.16834,0.706835)--(4.16999,0.708377)--(4.17164,0.709914)--(4.17328,0.711446)--(4.17491,0.712972)--(4.17654,0.714494)--(4.17817,0.716011)--(4.17978,0.717522)--(4.1814,0.719029)--(4.183,0.72053)--(4.1846,0.722027)--(4.1862,0.723519)--(4.18778,0.725006)--(4.18937,0.726488)--(4.19095,0.727965)--(4.19252,0.729437)--(4.19408,0.730904)--(4.19564,0.732367)--(4.1972,0.733825)--(4.19875,0.735278)--(4.20029,0.736727)--(4.20183,0.738171)--(4.20337,0.73961)--(4.20489,0.741044)--
> (4.20642,0.742474)--(4.20793,0.7439)--(4.20945,0.745321)--(4.21095,0.746737)--(4.21245,0.748149)--(4.21395,0.749556)--(4.21544,0.750959)--(4.21693,0.752357)--(4.21841,0.753751)--(4.21988,0.755141)--(4.22135,0.756526)--(4.22282,0.757907)--(4.22428,0.759283)--(4.22573,0.760655)--(4.22718,0.762023)--(4.22863,0.763387)--(4.23007,0.764746)--(4.23151,0.766101)--(4.23294,0.767452)--(4.23436,0.768799)--(4.23578,0.770142)--(4.2372,0.77148)--(4.23861,0.772814)--(4.24002,0.774145)--(4.24142,0.775471)--
> (4.24281,0.776793)--(4.24421,0.778111)--(4.24559,0.779425)--(4.24698,0.780735)--(4.24836,0.782041)--(4.24973,0.783343)--(4.2511,0.784641)--(4.25246,0.785935)--(4.25382,0.787225)--(4.25518,0.788512)--(4.25653,0.789794)--(4.25788,0.791073)--(4.25922,0.792347)--(4.26056,0.793618)--(4.26189,0.794885)--(4.26322,0.796149)--(4.26454,0.797408)--(4.26586,0.798664)--(4.26718,0.799916)--(4.26849,0.801165)--(4.2698,0.80241)--(4.2711,0.803651)--(4.2724,0.804888)--(4.27369,0.806122)--(4.27498,0.807352)--
> (4.27627,0.808578)--(4.27755,0.809801)--(4.27883,0.811021)--(4.2801,0.812236)--(4.28137,0.813449)--(4.28263,0.814657)--(4.2839,0.815863)--(4.28515,0.817064)--(4.28641,0.818263)--(4.28766,0.819457)--(4.2889,0.820649)--(4.29014,0.821837)--(4.29138,0.823021)--(4.29261,0.824202)--(4.29384,0.82538)--(4.29507,0.826554)--(4.29629,0.827725)--(4.29751,0.828893)--(4.29872,0.830057)--(4.29993,0.831218)--(4.30114,0.832376)--(4.30234,0.833531)--(4.30354,0.834682)--(4.30473,0.83583)--(4.30592,0.836975)--
> (4.30711,0.838116)--(4.30829,0.839254)--(4.30947,0.84039)--(4.31065,0.841522)--(4.31182,0.84265)--(4.31299,0.843776)--(4.31416,0.844899)--(4.31532,0.846018)--(4.31648,0.847134)--(4.31763,0.848248)--(4.31878,0.849358)--(4.31993,0.850465)--(4.32107,0.851569)--(4.32221,0.85267)--(4.32335,0.853768)--(4.32448,0.854863)--(4.32561,0.855955)--(4.32674,0.857044)--(4.32786,0.85813)--(4.32898,0.859213)--(4.3301,0.860293)--(4.33121,0.86137)--(4.33232,0.862444)--(4.33343,0.863516)--(4.33453,0.864584)--
> (4.33563,0.86565)--(4.33672,0.866713)--(4.33782,0.867772)--(4.33891,0.868829)--(4.33999,0.869884)--(4.34107,0.870935)--(4.34215,0.871984)--(4.34323,0.873029)--(4.3443,0.874072)--(4.34537,0.875113)--(4.34644,0.87615)--(4.3475,0.877185)--(4.34856,0.878217)--(4.34962,0.879246)--(4.35068,0.880273)--(4.35173,0.881296)--(4.35278,0.882318)--(4.35382,0.883336)--(4.35486,0.884352)--(4.3559,0.885365)--(4.35694,0.886376)--(4.35797,0.887383)--(4.359,0.888389)--(4.36002,0.889391)--(4.36105,0.890391)--
> (4.36207,0.891389)--(4.36309,0.892384)--(4.3641,0.893376)--(4.36511,0.894366)--(4.36612,0.895353)--(4.36713,0.896338)--(4.36813,0.89732)--(4.36913,0.898299)--(4.37013,0.899277)--(4.37112,0.900251)--(4.37211,0.901223)--(4.3731,0.902193)--(4.37409,0.90316)--(4.37507,0.904125)--(4.37605,0.905087)--(4.37703,0.906047)--(4.378,0.907005)--(4.37897,0.90796)--(4.37994,0.908912)--(4.38091,0.909863)--(4.38187,0.91081)--(4.38283,0.911756)--(4.38379,0.912699)--(4.38474,0.91364)--(4.3857,0.914578)--
> (4.38665,0.915514)--(4.38759,0.916448)--(4.38854,0.91738)--(4.38948,0.918309)--(4.39042,0.919235)--(4.39135,0.92016)--(4.39229,0.921082)--(4.39322,0.922002)--(4.39415,0.92292)--(4.39507,0.923835)--(4.396,0.924749)--(4.39692,0.92566)--(4.39783,0.926568)--(4.39875,0.927475)--(4.39966,0.928379)--(4.40057,0.929281)--(4.40148,0.930181)--(4.40239,0.931079)--(4.40329,0.931975)--(4.40419,0.932868)--(4.40509,0.933759)--(4.40598,0.934649)--(4.40688,0.935536)--(4.40777,0.93642)--(4.40866,0.937303)--
> (4.40954,0.938184)--(4.41043,0.939062)--(4.41131,0.939939)--(4.41218,0.940813)--(4.41306,0.941685)--(4.41393,0.942555)--(4.41481,0.943423)--(4.41567,0.944289)--(4.41654,0.945153)--(4.41741,0.946015)--(4.41827,0.946875)--(4.41913,0.947733)--(4.41998,0.948589)--(4.42084,0.949443)--(4.42169,0.950295)--(4.42254,0.951144)--(4.42339,0.951992)--(4.42424,0.952838)--(4.42508,0.953682)--(4.42592,0.954524)--(4.42676,0.955364)--(4.4276,0.956202)--(4.42843,0.957038)--(4.42926,0.957872)--(4.43009,0.958704)--
> (4.43092,0.959534)--(4.43175,0.960363)--(4.43257,0.961189)--(4.43339,0.962014)--(4.43421,0.962837)--(4.43503,0.963657)--(4.43584,0.964476)--(4.43665,0.965293)--(4.43746,0.966108)--(4.43827,0.966922)--(4.43908,0.967733)--(4.43988,0.968543)--(4.44068,0.96935)--(4.44148,0.970156)--(4.44228,0.970961)--(4.44308,0.971763)--(4.44387,0.972563)--(4.44466,0.973362)--(4.44545,0.974159)--(4.44624,0.974954)--(4.44702,0.975747)--(4.44781,0.976539)--(4.44859,0.977329)--(4.44937,0.978117)--(4.45015,0.978903)--
> (4.45092,0.979687)--(4.45169,0.98047)--(4.45247,0.981251)--(4.45323,0.98203)--(4.454,0.982808)--(4.45477,0.983584)--(4.45553,0.984358)--(4.45629,0.98513)--(4.45705,0.985901)--(4.45781,0.98667)--(4.45856,0.987437)--(4.45932,0.988203)--(4.46007,0.988967)--(4.46082,0.989729)--(4.46157,0.99049)--(4.46231,0.991249)--(4.46306,0.992006)--(4.4638,0.992762)--(4.46454,0.993516)--(4.46528,0.994268)--(4.46601,0.995019)--(4.46675,0.995768)--(4.46748,0.996515)--(4.46821,0.997261)--(4.46894,0.998006)--
> (4.46967,0.998748)--(4.4704,0.999489)--(4.47112,1.00023)--(4.47184,1.00097)--(4.47256,1.0017)--(4.47328,1.00244)--(4.474,1.00317)--(4.47471,1.0039)--(4.47542,1.00463)--(4.47613,1.00536)--(4.47684,1.00609)--(4.47755,1.00681)--(4.47826,1.00754)--(4.47896,1.00826)--(4.47966,1.00898)--(4.48036,1.0097)--(4.48106,1.01042)--(4.48176,1.01113)--(4.48246,1.01185)--(4.48315,1.01256)--(4.48384,1.01327)--(4.48453,1.01398)--(4.48522,1.01469)--(4.48591,1.0154)--(4.48659,1.01611)--(4.48728,1.01681)--
> (4.48796,1.01751)--(4.48864,1.01822)--(4.48932,1.01892)--(4.48999,1.01961)--(4.49067,1.02031)--(4.49134,1.02101)--(4.49201,1.0217)--(4.49269,1.02239)--(4.49335,1.02309)--(4.49402,1.02378)--(4.49469,1.02446)--(4.49535,1.02515)--(4.49601,1.02584)--(4.49667,1.02652)--(4.49733,1.02721)--(4.49799,1.02789)--(4.49865,1.02857)--(4.4993,1.02925)--(4.49995,1.02992)--(4.5006,1.0306)--(4.50125,1.03127)--(4.5019,1.03195)--(4.50255,1.03262)--(4.50319,1.03329)--(4.50384,1.03396)--(4.50448,1.03463)--
> (4.50512,1.03529)--(4.50576,1.03596)--(4.5064,1.03662)--(4.50703,1.03729)--(4.50767,1.03795)--(4.5083,1.03861)--(4.50893,1.03927)--(4.50956,1.03992)--(4.51019,1.04058)--(4.51082,1.04124)--(4.51144,1.04189)--(4.51207,1.04254)--(4.51269,1.04319)--(4.51331,1.04384)--(4.51393,1.04449)--(4.51455,1.04514)--(4.51516,1.04578)--(4.51578,1.04643)--(4.51639,1.04707)--(4.51701,1.04771)--(4.51762,1.04835)--(4.51823,1.04899)--(4.51883,1.04963)--(4.51944,1.05027)--(4.52005,1.0509)--(4.52065,1.05154)--
> (4.52125,1.05217)--(4.52185,1.0528)--(4.52245,1.05344)--(4.52305,1.05407)--(4.52365,1.05469)--(4.52424,1.05532)--(4.52484,1.05595)--(4.52543,1.05657)--(4.52602,1.0572)--(4.52661,1.05782)--(4.5272,1.05844)--(4.52779,1.05906)--(4.52838,1.05968)--(4.52896,1.0603)--(4.52954,1.06091)--(4.53013,1.06153)--(4.53071,1.06214)--(4.53129,1.06276)--(4.53186,1.06337)--(4.53244,1.06398)--(4.53302,1.06459)--(4.53359,1.0652)--(4.53416,1.0658)--(4.53474,1.06641)--(4.53531,1.06701)--(4.53587,1.06762)--
> (4.53644,1.06822)--(4.53701,1.06882)--(4.53757,1.06942)--(4.53814,1.07002)--(4.5387,1.07062)--(4.53926,1.07122)--(4.53982,1.07181)--(4.54038,1.07241)--(4.54094,1.073)--(4.54149,1.0736)--(4.54205,1.07419)--(4.5426,1.07478)--(4.54316,1.07537)--(4.54371,1.07596)--(4.54426,1.07654)--(4.54481,1.07713)--(4.54535,1.07771)--(4.5459,1.0783)--(4.54645,1.07888)--(4.54699,1.07946)--(4.54753,1.08004)--(4.54808,1.08062)--(4.54862,1.0812)--(4.54916,1.08178)--(4.54969,1.08236)--(4.55023,1.08293)--
> (4.55077,1.08351)--(4.5513,1.08408)--(4.55183,1.08465)--(4.55237,1.08523)--(4.5529,1.0858)--(4.55343,1.08637)--(4.55396,1.08693)--(4.55448,1.0875)--(4.55501,1.08807)--(4.55554,1.08863)--(4.55606,1.0892)--(4.55658,1.08976)--(4.5571,1.09032)--(4.55762,1.09088)--(4.55814,1.09144)--(4.55866,1.092)--(4.55918,1.09256)--(4.5597,1.09312)--(4.56021,1.09368)--(4.56073,1.09423)--(4.56124,1.09478)--(4.56175,1.09534)--(4.56226,1.09589)--(4.56277,1.09644)--(4.56328,1.09699)--(4.56379,1.09754)--
> (4.56429,1.09809)--(4.5648,1.09864)--(4.5653,1.09918)--(4.5658,1.09973)--(4.56631,1.10027)--(4.56681,1.10082)--(4.56731,1.10136)--(4.56781,1.1019)--(4.5683,1.10244)--(4.5688,1.10298)--(4.5693,1.10352)--(4.56979,1.10406)--(4.57028,1.1046)--(4.57078,1.10513)--(4.57127,1.10567)--(4.57176,1.1062)--(4.57225,1.10674)--(4.57274,1.10727)--(4.57322,1.1078)--(4.57371,1.10833)--(4.57419,1.10886)--(4.57468,1.10939)--(4.57516,1.10992)--(4.57564,1.11045)--(4.57612,1.11097)--(4.5766,1.1115)--(4.57708,1.11202)--
> (4.57756,1.11255)--(4.57804,1.11307)--(4.57851,1.11359)--(4.57899,1.11411)--(4.57946,1.11463)--(4.57994,1.11515)--(4.58041,1.11567)--(4.58088,1.11619)--(4.58135,1.1167)--(4.58182,1.11722)--(4.58229,1.11773)--(4.58275,1.11825)--(4.58322,1.11876)--(4.58369,1.11927)--(4.58415,1.11978)--(4.58461,1.12029)--(4.58508,1.1208)--(4.58554,1.12131)--(4.586,1.12182)--(4.58646,1.12233)--(4.58692,1.12283)--(4.58737,1.12334)--(4.58783,1.12384)--(4.58829,1.12435)--(4.58874,1.12485)--(4.58919,1.12535)--
> (4.58965,1.12585)--(4.5901,1.12635)--(4.59055,1.12685)--(4.591,1.12735)--(4.59145,1.12785)--(4.5919,1.12835)--(4.59235,1.12884)--(4.59279,1.12934)--(4.59324,1.12983)--(4.59368,1.13033)--(4.59413,1.13082)--(4.59457,1.13131)--(4.59501,1.1318)--(4.59545,1.13229)--(4.59589,1.13278)--(4.59633,1.13327)--(4.59677,1.13376)--(4.59721,1.13425)--(4.59764,1.13474)--(4.59808,1.13522)--(4.59852,1.13571)--(4.59895,1.13619)--(4.59938,1.13668)--(4.59981,1.13716)--(4.60025,1.13764)--(4.60068,1.13812)--
> (4.60111,1.1386)--(4.60154,1.13908)--(4.60196,1.13956)--(4.60239,1.14004)--(4.60282,1.14052)--(4.60324,1.14099)--(4.60367,1.14147)--(4.60409,1.14194)--(4.60451,1.14242)--(4.60493,1.14289)--(4.60536,1.14337)--(4.60578,1.14384)--(4.6062,1.14431)--(4.60661,1.14478)--(4.60703,1.14525)--(4.60745,1.14572)--(4.60787,1.14619)--(4.60828,1.14666)--(4.6087,1.14712)--(4.60911,1.14759)--(4.60952,1.14805)--(4.60993,1.14852)--(4.61035,1.14898)--(4.61076,1.14945)--(4.61117,1.14991)--(4.61157,1.15037)--
> (4.61198,1.15083)--(4.61239,1.15129)--(4.6128,1.15175)--(4.6132,1.15221)--(4.61361,1.15267)--(4.61401,1.15313)--(4.61441,1.15358)--(4.61482,1.15404)--(4.61522,1.1545)--(4.61562,1.15495)--(4.61602,1.15541)--(4.61642,1.15586)--(4.61682,1.15631)--(4.61722,1.15676)--(4.61761,1.15722)--(4.61801,1.15767)--(4.6184,1.15812)--(4.6188,1.15857)--(4.61919,1.15901)--(4.61959,1.15946)--(4.61998,1.15991)--(4.62037,1.16036)--(4.62076,1.1608)--(4.62115,1.16125)--(4.62154,1.16169)--(4.62193,1.16214)--
> (4.62232,1.16258)--(4.6227,1.16302)--(4.62309,1.16346)--(4.62348,1.16391)--(4.62386,1.16435)--(4.62425,1.16479)--(4.62463,1.16523)--(4.62501,1.16566)--(4.62539,1.1661)--(4.62578,1.16654)--(4.62616,1.16698)--(4.62654,1.16741)--(4.62692,1.16785)--(4.62729,1.16828)--(4.62767,1.16872)--(4.62805,1.16915)--(4.62842,1.16958)--(4.6288,1.17001)--(4.62917,1.17045)--(4.62955,1.17088)--(4.62992,1.17131)--(4.63029,1.17174)--(4.63067,1.17217)--(4.63104,1.17259)--(4.63141,1.17302)--(4.63178,1.17345)--
> (4.63215,1.17388)--(4.63252,1.1743)--(4.63288,1.17473)--(4.63325,1.17515)--(4.63362,1.17558)--(4.63398,1.176)--(4.63435,1.17642)--(4.63471,1.17684)--(4.63508,1.17726)--(4.63544,1.17769)--(4.6358,1.17811)--(4.63616,1.17853)--(4.63652,1.17894)--(4.63688,1.17936)--(4.63724,1.17978)--(4.6376,1.1802)--(4.63796,1.18062)--(4.63832,1.18103)--(4.63868,1.18145)--(4.63903,1.18186)--(4.63939,1.18228)--(4.63974,1.18269)--(4.6401,1.1831)--(4.64045,1.18352)--(4.6408,1.18393)--(4.64116,1.18434)--
> (4.64151,1.18475)--(4.64186,1.18516)--(4.64221,1.18557)--(4.64256,1.18598)--(4.64291,1.18639)--(4.64326,1.18679)--(4.64361,1.1872)--(4.64395,1.18761)--(4.6443,1.18801)--(4.64464,1.18842)--(4.64499,1.18883)--(4.64533,1.18923)--(4.64568,1.18963)--(4.64602,1.19004)--(4.64636,1.19044)--(4.64671,1.19084)--(4.64705,1.19124)--(4.64739,1.19164)--(4.64773,1.19205)--(4.64807,1.19245)--(4.64841,1.19284)--(4.64875,1.19324)--(4.64908,1.19364)--(4.64942,1.19404)--(4.64976,1.19444)--(4.65009,1.19483)--
> (4.65043,1.19523)--(4.65076,1.19562)--(4.6511,1.19602)--(4.65143,1.19641)--(4.65177,1.19681)--(4.6521,1.1972)--(4.65243,1.19759)--(4.65276,1.19799)--(4.65309,1.19838)--(4.65342,1.19877)--(4.65375,1.19916)--(4.65408,1.19955)--(4.65441,1.19994)--(4.65473,1.20033)--(4.65506,1.20072)--(4.65539,1.20111)--(4.65571,1.20149)--(4.65604,1.20188)--(4.65636,1.20227)--(4.65669,1.20265)--(4.65701,1.20304)--(4.65733,1.20342)--(4.65766,1.20381)--(4.65798,1.20419)--(4.6583,1.20457)--(4.65862,1.20496)--
> (4.65894,1.20534)--(4.65926,1.20572)--(4.65958,1.2061)--(4.6599,1.20648)--(4.66021,1.20686)--(4.66053,1.20724)--(4.66085,1.20762)--(4.66116,1.208)--(4.66148,1.20838)--(4.6618,1.20876)--(4.66211,1.20913)--(4.66242,1.20951)--(4.66274,1.20989)--(4.66305,1.21026)--(4.66336,1.21064)--(4.66367,1.21101)--(4.66398,1.21139)--(4.6643,1.21176)--(4.66461,1.21213)--(4.66491,1.21251)--(4.66522,1.21288)--(4.66553,1.21325)--(4.66584,1.21362)--(4.66615,1.21399)--(4.66645,1.21436)--(4.66676,1.21473)--
> (4.66707,1.2151)--(4.66737,1.21547)--(4.66768,1.21584)--(4.66798,1.21621)--(4.66828,1.21657)--(4.66859,1.21694)--(4.66889,1.21731)--(4.66919,1.21767)--(4.66949,1.21804)--(4.66979,1.2184)--(4.67009,1.21877)--(4.67039,1.21913)--(4.67069,1.21949)--(4.67099,1.21986)--(4.67129,1.22022)--(4.67159,1.22058)--(4.67189,1.22094)--(4.67218,1.22131)--(4.67248,1.22167)--(4.67277,1.22203)--(4.67307,1.22239)--(4.67336,1.22275)--(4.67366,1.22311)--(4.67395,1.22346)--(4.67425,1.22382)--(4.67454,1.22418)--
> (4.67483,1.22454)--(4.67512,1.22489)--(4.67541,1.22525)--(4.6757,1.2256)--(4.676,1.22596)--(4.67628,1.22631)--(4.67657,1.22667)--(4.67686,1.22702)--(4.67715,1.22738)--(4.67744,1.22773)--(4.67773,1.22808)--(4.67801,1.22843)--(4.6783,1.22879)--(4.67859,1.22914)--(4.67887,1.22949)--(4.67916,1.22984)--(4.67944,1.23019)--(4.67972,1.23054)--(4.68001,1.23089)--(4.68029,1.23124)--(4.68057,1.23158)--(4.68085,1.23193)--(4.68114,1.23228)--(4.68142,1.23263)--(4.6817,1.23297)--(4.68198,1.23332)--
> (4.68226,1.23366)--(4.68254,1.23401)--(4.68281,1.23435)--(4.68309,1.2347)--(4.68337,1.23504)--(4.68365,1.23539)--(4.68392,1.23573)--(4.6842,1.23607)--(4.68448,1.23641)--(4.68475,1.23676)--(4.68503,1.2371)--(4.6853,1.23744)--(4.68558,1.23778)--(4.68585,1.23812)--(4.68612,1.23846)--(4.6864,1.2388)--(4.68667,1.23914)--(4.68694,1.23948)--(4.68721,1.23981)--(4.68748,1.24015)--(4.68775,1.24049)--(4.68802,1.24082)--(4.68829,1.24116)--(4.68856,1.2415)--(4.68883,1.24183)--(4.6891,1.24217)--
> (4.68936,1.2425)--(4.68963,1.24284)--(4.6899,1.24317)--(4.69016,1.2435)--(4.69043,1.24384)--(4.6907,1.24417)--(4.69096,1.2445)--(4.69123,1.24483)--(4.69149,1.24517)--(4.69175,1.2455)--(4.69202,1.24583)--(4.69228,1.24616)--(4.69254,1.24649)--(4.6928,1.24682)--(4.69307,1.24715)--(4.69333,1.24748)--(4.69359,1.2478)--(4.69385,1.24813)--(4.69411,1.24846)--(4.69437,1.24879)--(4.69463,1.24911)--(4.69489,1.24944)--(4.69514,1.24977)--(4.6954,1.25009)--(4.69566,1.25042)--(4.69592,1.25074)--
> (4.69617,1.25107)--(4.69643,1.25139)--(4.69668,1.25172)--(4.69694,1.25204)--(4.69719,1.25236)--(4.69745,1.25268)--(4.6977,1.25301)--(4.69796,1.25333)--(4.69821,1.25365)--(4.69846,1.25397)--(4.69871,1.25429)--(4.69897,1.25461)--(4.69922,1.25493)--(4.69947,1.25525)--(4.69972,1.25557)--(4.69997,1.25589)--(4.70022,1.25621)--(4.70047,1.25653)--(4.70072,1.25685)--(4.70097,1.25716)--(4.70121,1.25748)--(4.70146,1.2578)--(4.70171,1.25811)--(4.70196,1.25843)--(4.7022,1.25874)--(4.70245,1.25906)--
> (4.7027,1.25937)--(4.70294,1.25969)--(4.70319,1.26)--(4.70343,1.26032)--(4.70368,1.26063)--(4.70392,1.26094)--(4.70416,1.26126)--(4.70441,1.26157)--(4.70465,1.26188)--(4.70489,1.26219)--(4.70513,1.2625)--(4.70538,1.26281)--(4.70562,1.26313)--(4.70586,1.26344)--(4.7061,1.26375)--(4.70634,1.26406)--(4.70658,1.26436)--(4.70682,1.26467)--(4.70706,1.26498)--(4.70729,1.26529)--(4.70753,1.2656)--(4.70777,1.26591)--(4.70801,1.26621)--(4.70824,1.26652)--(4.70848,1.26683)--(4.70872,1.26713)--
> (4.70895,1.26744)--(4.70919,1.26774)--(4.70942,1.26805)--(4.70966,1.26835)--(4.70989,1.26866)--(4.71013,1.26896)--(4.71036,1.26926)--(4.71059,1.26957)--(4.71083,1.26987)--(4.71106,1.27017)--(4.71129,1.27048)--(4.71152,1.27078)--(4.71176,1.27108)--(4.71199,1.27138)--(4.71222,1.27168)--(4.71245,1.27198)--(4.71268,1.27228)--(4.71291,1.27258)--(4.71314,1.27288)--(4.71337,1.27318)--(4.71359,1.27348)--(4.71382,1.27378)--(4.71405,1.27408)--(4.71428,1.27438)--(4.71451,1.27467)--(4.71473,1.27497)--
> (4.71496,1.27527)--(4.71519,1.27557)--(4.71541,1.27586)--(4.71564,1.27616)--(4.71586,1.27645)--(4.71609,1.27675)--(4.71631,1.27705)--(4.71653,1.27734)--(4.71676,1.27763)--(4.71698,1.27793)--(4.7172,1.27822)--(4.71743,1.27852)--(4.71765,1.27881)--(4.71787,1.2791)--(4.71809,1.27939)--(4.71831,1.27969)--(4.71854,1.27998)--(4.71876,1.28027)--(4.71898,1.28056)--(4.7192,1.28085)--(4.71942,1.28114)--(4.71963,1.28143)--(4.71985,1.28172)--(4.72007,1.28201)--(4.72029,1.2823)--(4.72051,1.28259)--
> (4.72073,1.28288)--(4.72094,1.28317)--(4.72116,1.28346)--(4.72138,1.28375)--(4.72159,1.28403)--(4.72181,1.28432)--(4.72202,1.28461)--(4.72224,1.2849)--(4.72245,1.28518)--(4.72267,1.28547)--(4.72288,1.28575)--(4.7231,1.28604)--(4.72331,1.28633)--(4.72352,1.28661)--(4.72374,1.28689)--(4.72395,1.28718)--(4.72416,1.28746)--(4.72437,1.28775)--(4.72459,1.28803)--(4.7248,1.28831)--(4.72501,1.2886)--(4.72522,1.28888)--(4.72543,1.28916)--(4.72564,1.28944)--(4.72585,1.28972)--(4.72606,1.29001)--
> (4.72627,1.29029)--(4.72648,1.29057)--(4.72668,1.29085)--(4.72689,1.29113)--(4.7271,1.29141)--(4.72731,1.29169)--(4.72752,1.29197)--(4.72772,1.29225)--(4.72793,1.29253)--(4.72814,1.2928)--(4.72834,1.29308)--(4.72855,1.29336)--(4.72875,1.29364)--(4.72896,1.29392)--(4.72916,1.29419)--(4.72937,1.29447)--(4.72957,1.29475)--(4.72977,1.29502)--(4.72998,1.2953)--(4.73018,1.29557)--(4.73038,1.29585)--(4.73059,1.29612)--(4.73079,1.2964)--(4.73099,1.29667)--(4.73119,1.29695)--(4.73139,1.29722)--
> (4.7316,1.2975)--(4.7318,1.29777)--(4.732,1.29804)--(4.7322,1.29832)--(4.7324,1.29859)--(4.7326,1.29886)--(4.7328,1.29913)--(4.73299,1.2994)--(4.73319,1.29968)--(4.73339,1.29995)--(4.73359,1.30022)--(4.73379,1.30049)--(4.73398,1.30076)--(4.73418,1.30103)--(4.73438,1.3013)--(4.73458,1.30157)--(4.73477,1.30184)--(4.73497,1.30211)--(4.73516,1.30238)--(4.73536,1.30264)--(4.73555,1.30291)--(4.73575,1.30318)--(4.73594,1.30345)--(4.73614,1.30372)--(4.73633,1.30398)--(4.73653,1.30425)--(4.73672,1.30452)--
> (4.73691,1.30478)--(4.73711,1.30505)--(4.7373,1.30532)--(4.73749,1.30558)--(4.73768,1.30585)--(4.73787,1.30611)--(4.73807,1.30638)--(4.73826,1.30664)--(4.73845,1.3069)--(4.73864,1.30717)--(4.73883,1.30743)--(4.73902,1.3077)--(4.73921,1.30796)--(4.7394,1.30822)--(4.73959,1.30849)--(4.73978,1.30875)--(4.73997,1.30901)--(4.74015,1.30927)--(4.74034,1.30953)--(4.74053,1.3098)--(4.74072,1.31006)--(4.74091,1.31032)--(4.74109,1.31058)--(4.74128,1.31084)--(4.74147,1.3111)--(4.74165,1.31136)--
> (4.74184,1.31162)--(4.74202,1.31188)--(4.74221,1.31214)--(4.74239,1.3124)--(4.74258,1.31266)--(4.74276,1.31291)--(4.74295,1.31317)--(4.74313,1.31343)--(4.74332,1.31369)--(4.7435,1.31395)--(4.74368,1.3142)--(4.74387,1.31446)--(4.74405,1.31472)--(4.74423,1.31497)--(4.74441,1.31523)--(4.7446,1.31549)--(4.74478,1.31574)--(4.74496,1.316)--(4.74514,1.31625)--(4.74532,1.31651)--(4.7455,1.31676)--(4.74568,1.31702)--(4.74586,1.31727)--(4.74604,1.31753)--(4.74622,1.31778)--(4.7464,1.31803)--
> (4.74658,1.31829)--(4.74676,1.31854)--(4.74694,1.31879)--(4.74712,1.31905)--(4.7473,1.3193)--(4.74747,1.31955)--(4.74765,1.3198)--(4.74783,1.32005)--(4.74801,1.32031)--(4.74818,1.32056)--(4.74836,1.32081)--(4.74854,1.32106)--(4.74871,1.32131)--(4.74889,1.32156)--(4.74906,1.32181)--(4.74924,1.32206)--(4.74941,1.32231)--(4.74959,1.32256)--(4.74976,1.32281)--(4.74994,1.32306)--(4.75011,1.32331)--(4.75029,1.32355)--(4.75046,1.3238)--(4.75063,1.32405)--(4.75081,1.3243)--(4.75098,1.32455)--
> (4.75115,1.32479)--(4.75132,1.32504)--(4.7515,1.32529)--(4.75167,1.32553)--(4.75184,1.32578)--(4.75201,1.32603)--(4.75218,1.32627)--(4.75235,1.32652)--(4.75252,1.32676)--(4.75269,1.32701)--(4.75286,1.32725)--(4.75303,1.3275)--(4.7532,1.32774)--(4.75337,1.32799)--(4.75354,1.32823)--(4.75371,1.32848)--(4.75388,1.32872)--(4.75405,1.32896)--(4.75422,1.32921)--(4.75439,1.32945)--(4.75455,1.32969)--(4.75472,1.32994)--(4.75489,1.33018)--(4.75506,1.33042)--(4.75522,1.33066)--(4.75539,1.3309)--
> (4.75556,1.33115)--(4.75572,1.33139)--(4.75589,1.33163)--(4.75605,1.33187)--(4.75622,1.33211)--(4.75638,1.33235)--(4.75655,1.33259)--(4.75671,1.33283)--(4.75688,1.33307)--(4.75704,1.33331)--(4.75721,1.33355)--(4.75737,1.33379)--(4.75753,1.33403)--(4.7577,1.33427)--(4.75786,1.33451)--(4.75802,1.33474)--(4.75819,1.33498)--(4.75835,1.33522)--(4.75851,1.33546)--(4.75867,1.3357)--(4.75884,1.33593)--(4.759,1.33617)--(4.75916,1.33641)--(4.75932,1.33664)--(4.75948,1.33688)--(4.75964,1.33712)--
> (4.7598,1.33735)--(4.75996,1.33759)--(4.76012,1.33782)--(4.76028,1.33806)--(4.76044,1.33829)--(4.7606,1.33853)--(4.76076,1.33876)--(4.76092,1.339)--(4.76108,1.33923)--(4.76124,1.33947)--(4.7614,1.3397)--(4.76155,1.33994)--(4.76171,1.34017)--(4.76187,1.3404)--(4.76203,1.34064)--(4.76218,1.34087)--(4.76234,1.3411)--(4.7625,1.34133)--(4.76265,1.34157)--(4.76281,1.3418)--(4.76297,1.34203)--(4.76312,1.34226)--(4.76328,1.34249)--(4.76343,1.34273)--(4.76359,1.34296)--(4.76374,1.34319)--(4.7639,1.34342)--
> (4.76405,1.34365)--(4.76421,1.34388)--(4.76436,1.34411)--(4.76452,1.34434)--(4.76467,1.34457)--(4.76482,1.3448)--(4.76498,1.34503)--(4.76513,1.34526)--(4.76528,1.34549)--(4.76544,1.34572)--(4.76559,1.34595)--(4.76574,1.34617)--(4.76589,1.3464)--(4.76605,1.34663)--(4.7662,1.34686)--(4.76635,1.34709)--(4.7665,1.34731)--(4.76665,1.34754)--(4.7668,1.34777)--(4.76695,1.348)--(4.7671,1.34822)--(4.76725,1.34845)--(4.7674,1.34867)--(4.76755,1.3489)--(4.7677,1.34913)--(4.76785,1.34935)--(4.768,1.34958)--
> (4.76815,1.3498)--(4.7683,1.35003)--(4.76845,1.35025)--(4.7686,1.35048)--(4.76875,1.3507)--(4.76889,1.35093)--(4.76904,1.35115)--(4.76919,1.35138)--(4.76934,1.3516)--(4.76949,1.35182)--(4.76963,1.35205)--(4.76978,1.35227)--(4.76993,1.35249)--(4.77007,1.35272)--(4.77022,1.35294)--(4.77037,1.35316)--(4.77051,1.35339)--(4.77066,1.35361)--(4.7708,1.35383)--(4.77095,1.35405)--(4.77109,1.35427)--(4.77124,1.3545)--(4.77138,1.35472)--(4.77153,1.35494)--(4.77167,1.35516)--(4.77182,1.35538)--
> (4.77196,1.3556)--(4.7721,1.35582)--(4.77225,1.35604)--(4.77239,1.35626)--(4.77253,1.35648)--(4.77268,1.3567)--(4.77282,1.35692)--(4.77296,1.35714)--(4.77311,1.35736)--(4.77325,1.35758)--(4.77339,1.3578)--(4.77353,1.35802)--(4.77367,1.35823)--(4.77381,1.35845)--(4.77396,1.35867)--(4.7741,1.35889)--(4.77424,1.35911)--(4.77438,1.35932)--(4.77452,1.35954)--(4.77466,1.35976)--(4.7748,1.35998)--(4.77494,1.36019)--(4.77508,1.36041)--(4.77522,1.36063)--(4.77536,1.36084)--(4.7755,1.36106)--
> (4.77564,1.36128)--(4.77578,1.36149)--(4.77592,1.36171)--(4.77605,1.36192)--(4.77619,1.36214)--(4.77633,1.36235)--(4.77647,1.36257)--(4.77661,1.36278)--(4.77674,1.363)--(4.77688,1.36321)--(4.77702,1.36343)--(4.77716,1.36364)--(4.77729,1.36386)--(4.77743,1.36407)--(4.77757,1.36428)--(4.7777,1.3645)--(4.77784,1.36471)--(4.77797,1.36492)--(4.77811,1.36514)--(4.77825,1.36535)--(4.77838,1.36556)--(4.77852,1.36577)--(4.77865,1.36599)--(4.77879,1.3662)--(4.77892,1.36641)--(4.77906,1.36662)--
> (4.77919,1.36683)--(4.77933,1.36705)--(4.77946,1.36726)--(4.77959,1.36747)--(4.77973,1.36768)--(4.77986,1.36789)--(4.77999,1.3681)--(4.78013,1.36831)--(4.78026,1.36852)--(4.78039,1.36873)--(4.78053,1.36894)--(4.78066,1.36915)--(4.78079,1.36936)--(4.78092,1.36957)--(4.78106,1.36978)--(4.78119,1.36999)--(4.78132,1.3702)--(4.78145,1.37041)--(4.78158,1.37062)--(4.78171,1.37083)--(4.78184,1.37104)--(4.78197,1.37124)--(4.78211,1.37145)--(4.78224,1.37166)--(4.78237,1.37187)--(4.7825,1.37208)--
> (4.78263,1.37228)--(4.78276,1.37249)--(4.78289,1.3727)--(4.78302,1.3729)--(4.78314,1.37311)--(4.78327,1.37332)--(4.7834,1.37352)--(4.78353,1.37373)--(4.78366,1.37394)--(4.78379,1.37414)--(4.78392,1.37435)--(4.78404,1.37456)--(4.78417,1.37476)--(4.7843,1.37497)--(4.78443,1.37517)--(4.78456,1.37538)--(4.78468,1.37558)--(4.78481,1.37579)--(4.78494,1.37599)--(4.78506,1.3762)--(4.78519,1.3764)--(4.78532,1.37661)--(4.78544,1.37681)--(4.78557,1.37701)--(4.7857,1.37722)--(4.78582,1.37742)--
> (4.78595,1.37762)--(4.78607,1.37783)--(4.7862,1.37803)--(4.78632,1.37823)--(4.78645,1.37844)--(4.78657,1.37864)--(4.7867,1.37884)--(4.78682,1.37904)--(4.78695,1.37925)--(4.78707,1.37945)--(4.7872,1.37965)--(4.78732,1.37985)--(4.78744,1.38005)--(4.78757,1.38026)--(4.78769,1.38046)--(4.78781,1.38066)--(4.78794,1.38086)--(4.78806,1.38106)--(4.78818,1.38126)--(4.78831,1.38146)--(4.78843,1.38166)--(4.78855,1.38186)--(4.78867,1.38206)--(4.78879,1.38226)--(4.78892,1.38246)--(4.78904,1.38266)--
> (4.78916,1.38286)--(4.78928,1.38306)--(4.7894,1.38326)--(4.78952,1.38346)--(4.78964,1.38366)--(4.78976,1.38386)--(4.78989,1.38406)--(4.79001,1.38426)--(4.79013,1.38446)--(4.79025,1.38465)--(4.79037,1.38485)--(4.79049,1.38505)--(4.79061,1.38525)--(4.79073,1.38545)--(4.79085,1.38564)--(4.79096,1.38584)--(4.79108,1.38604)--(4.7912,1.38624)--(4.79132,1.38643)--(4.79144,1.38663)--(4.79156,1.38683)--(4.79168,1.38702)--(4.7918,1.38722)--(4.79191,1.38742)--(4.79203,1.38761)--(4.79215,1.38781)--
> (4.79227,1.38801)--(4.79238,1.3882)--(4.7925,1.3884)--(4.79262,1.38859)--(4.79274,1.38879)--(4.79285,1.38898)--(4.79297,1.38918)--(4.79309,1.38937)--(4.7932,1.38957)--(4.79332,1.38976)--(4.79344,1.38996)--(4.79355,1.39015)--(4.79367,1.39035)--(4.79378,1.39054)--(4.7939,1.39073)--(4.79401,1.39093)--(4.79413,1.39112)--(4.79424,1.39132)--(4.79436,1.39151)--(4.79447,1.3917)--(4.79459,1.3919)--(4.7947,1.39209)--(4.79482,1.39228)--(4.79493,1.39247)--(4.79505,1.39267)--(4.79516,1.39286)--
> (4.79527,1.39305)--(4.79539,1.39325)--(4.7955,1.39344)--(4.79562,1.39363)--(4.79573,1.39382)--(4.79584,1.39401)--(4.79596,1.3942)--(4.79607,1.3944)--(4.79618,1.39459)--(4.79629,1.39478)--(4.79641,1.39497)--(4.79652,1.39516)--(4.79663,1.39535)--(4.79674,1.39554)--(4.79685,1.39573)--(4.79697,1.39592)--(4.79708,1.39611)--(4.79719,1.3963)--(4.7973,1.39649)--(4.79741,1.39668)--(4.79752,1.39687)--(4.79763,1.39706)--(4.79774,1.39725)--(4.79786,1.39744)--(4.79797,1.39763)--(4.79808,1.39782)--
> (4.79819,1.39801)--(4.7983,1.3982)--(4.79841,1.39839)--(4.79852,1.39858)--(4.79863,1.39877)--(4.79874,1.39895)--(4.79884,1.39914)--(4.79895,1.39933)--(4.79906,1.39952)--(4.79917,1.39971)--(4.79928,1.39989)--(4.79939,1.40008)--(4.7995,1.40027)--(4.79961,1.40046)--(4.79972,1.40064)--(4.79982,1.40083)--(4.79993,1.40102)--(4.80004,1.4012)--(4.80015,1.40139)--(4.80026,1.40158)--(4.80036,1.40176)--(4.80047,1.40195)--(4.80058,1.40214)--(4.80068,1.40232)--(4.80079,1.40251)--(4.8009,1.4027)--
> (4.80101,1.40288)--(4.80111,1.40307)--(4.80122,1.40325)--(4.80133,1.40344)--(4.80143,1.40362)--(4.80154,1.40381)--(4.80164,1.40399)--(4.80175,1.40418)--(4.80185,1.40436)--(4.80196,1.40455)--(4.80207,1.40473)--(4.80217,1.40492)--(4.80228,1.4051)--(4.80238,1.40529)--(4.80249,1.40547)--(4.80259,1.40565)--(4.8027,1.40584)--(4.8028,1.40602)--(4.80291,1.40621)--(4.80301,1.40639)--(4.80311,1.40657)--(4.80322,1.40676)--(4.80332,1.40694)--(4.80343,1.40712)--(4.80353,1.4073)--(4.80363,1.40749)--
> (4.80374,1.40767)--(4.80384,1.40785)--(4.80394,1.40803)--(4.80405,1.40822)--(4.80415,1.4084)--(4.80425,1.40858)--(4.80435,1.40876)--(4.80446,1.40895)--(4.80456,1.40913)--(4.80466,1.40931)--(4.80476,1.40949)--(4.80487,1.40967)--(4.80497,1.40985)--(4.80507,1.41003)--(4.80517,1.41021)--(4.80527,1.4104)--(4.80537,1.41058)--(4.80548,1.41076)--(4.80558,1.41094)--(4.80568,1.41112)--(4.80578,1.4113)--(4.80588,1.41148)--(4.80598,1.41166)--(4.80608,1.41184)--(4.80618,1.41202)--(4.80628,1.4122)--
> (4.80638,1.41238)--(4.80648,1.41256)--(4.80658,1.41274)--(4.80668,1.41292)--(4.80678,1.4131)--(4.80688,1.41327)--(4.80698,1.41345)--(4.80708,1.41363)--(4.80718,1.41381)--(4.80728,1.41399)--(4.80738,1.41417)--(4.80748,1.41435)--(4.80757,1.41453)--(4.80767,1.4147)--(4.80777,1.41488)--(4.80787,1.41506)--(4.80797,1.41524)--(4.80807,1.41542)--(4.80816,1.41559)--(4.80826,1.41577)--(4.80836,1.41595)--(4.80846,1.41613)--(4.80856,1.4163)--(4.80865,1.41648)--(4.80875,1.41666)--(4.80885,1.41683)--
> (4.80894,1.41701)--(4.80904,1.41719)--(4.80914,1.41736)--(4.80924,1.41754)--(4.80933,1.41772)--(4.80943,1.41789)--(4.80952,1.41807)--(4.80962,1.41824)--(4.80972,1.41842)--(4.80981,1.4186)--(4.80991,1.41877)--(4.81001,1.41895)--(4.8101,1.41912)--(4.8102,1.4193)--(4.81029,1.41947)--(4.81039,1.41965)--(4.81048,1.41982)--(4.81058,1.42)--(4.81067,1.42017)--(4.81077,1.42035)--(4.81086,1.42052)--(4.81096,1.4207)--(4.81105,1.42087)--(4.81115,1.42105)--(4.81124,1.42122)--(4.81133,1.42139)--
> (4.81143,1.42157)--(4.81152,1.42174)--(4.81162,1.42192)--(4.81171,1.42209)--(4.8118,1.42226)--(4.8119,1.42244)--(4.81199,1.42261)--(4.81208,1.42278)--(4.81218,1.42296)--(4.81227,1.42313)--(4.81236,1.4233)--(4.81246,1.42348)--(4.81255,1.42365)--(4.81264,1.42382)--(4.81274,1.42399)--(4.81283,1.42417)--(4.81292,1.42434)--(4.81301,1.42451)--(4.8131,1.42468)--(4.8132,1.42485)--(4.81329,1.42503)--(4.81338,1.4252)--(4.81347,1.42537)--(4.81356,1.42554)--(4.81365,1.42571)--(4.81375,1.42588)--
> (4.81384,1.42606)--(4.81393,1.42623)--(4.81402,1.4264)--(4.81411,1.42657)--(4.8142,1.42674)--(4.81429,1.42691)--(4.81438,1.42708)--(4.81447,1.42725)--(4.81456,1.42742)--(4.81465,1.42759)--(4.81474,1.42776)--(4.81483,1.42793)--(4.81492,1.4281)--(4.81501,1.42827)--(4.8151,1.42844)--(4.81519,1.42861)--(4.81528,1.42878)--(4.81537,1.42895)--(4.81546,1.42912)--(4.81555,1.42929)--(4.81564,1.42946)--(4.81573,1.42963)--(4.81582,1.4298)--(4.81591,1.42997)--(4.816,1.43014)--(4.81608,1.43031)--
> (4.81617,1.43048)--(4.81626,1.43064)--(4.81635,1.43081)--(4.81644,1.43098)--(4.81653,1.43115)--(4.81661,1.43132)--(4.8167,1.43149)--(4.81679,1.43165)--(4.81688,1.43182)--(4.81696,1.43199)--(4.81705,1.43216)--(4.81714,1.43232)--(4.81723,1.43249)--(4.81731,1.43266)--(4.8174,1.43283)--(4.81749,1.43299)--(4.81757,1.43316)--(4.81766,1.43333)--(4.81775,1.4335)--(4.81783,1.43366)--(4.81792,1.43383)--(4.81801,1.434)--(4.81809,1.43416)--(4.81818,1.43433)--(4.81827,1.4345)--(4.81835,1.43466)--
> (4.81844,1.43483)--(4.81852,1.43499)--(4.81861,1.43516)--(4.81869,1.43533)--(4.81878,1.43549)--(4.81886,1.43566)--(4.81895,1.43582)--(4.81903,1.43599)--(4.81912,1.43616)--(4.8192,1.43632)--(4.81929,1.43649)--(4.81937,1.43665)--(4.81946,1.43682)--(4.81954,1.43698)--(4.81963,1.43715)--(4.81971,1.43731)--(4.8198,1.43748)--(4.81988,1.43764)--(4.81996,1.43781)--(4.82005,1.43797)--(4.82013,1.43813)--(4.82022,1.4383)--(4.8203,1.43846)--(4.82038,1.43863)--(4.82047,1.43879)--(4.82055,1.43896)--
> (4.82063,1.43912)--(4.82072,1.43928)--(4.8208,1.43945)--(4.82088,1.43961)--(4.82097,1.43977)--(4.82105,1.43994)--(4.82113,1.4401)--(4.82121,1.44026)--(4.8213,1.44043)--(4.82138,1.44059)--(4.82146,1.44075)--(4.82154,1.44092)--(4.82162,1.44108)--(4.82171,1.44124)--(4.82179,1.4414)--(4.82187,1.44157)--(4.82195,1.44173)--(4.82203,1.44189)--(4.82212,1.44205)--(4.8222,1.44222)--(4.82228,1.44238)--(4.82236,1.44254)--(4.82244,1.4427)--(4.82252,1.44286)--(4.8226,1.44303)--(4.82268,1.44319)--
> (4.82276,1.44335)--(4.82284,1.44351)--(4.82293,1.44367)--(4.82301,1.44383)--(4.82309,1.44399)--(4.82317,1.44416)--(4.82325,1.44432)--(4.82333,1.44448)--(4.82341,1.44464)--(4.82349,1.4448)--(4.82357,1.44496)--(4.82365,1.44512)--(4.82373,1.44528)--(4.82381,1.44544)--(4.82388,1.4456)--(4.82396,1.44576)--(4.82404,1.44592)--(4.82412,1.44608)--(4.8242,1.44624)--(4.82428,1.4464)--(4.82436,1.44656)--(4.82444,1.44672)--(4.82452,1.44688)--(4.8246,1.44704)--(4.82467,1.4472)--(4.82475,1.44736)--
> (4.82483,1.44752)--(4.82491,1.44768)--(4.82499,1.44784)--(4.82507,1.448)--(4.82514,1.44816)--(4.82522,1.44832)--(4.8253,1.44847)--(4.82538,1.44863)--(4.82545,1.44879)--(4.82553,1.44895)--(4.82561,1.44911)--(4.82569,1.44927)--(4.82576,1.44943)--(4.82584,1.44958)--(4.82592,1.44974)--(4.826,1.4499)--(4.82607,1.45006)--(4.82615,1.45022)--(4.82623,1.45037)--(4.8263,1.45053)--(4.82638,1.45069)--(4.82646,1.45085)--(4.82653,1.45101)--(4.82661,1.45116)--(4.82668,1.45132)--(4.82676,1.45148)--
> (4.82684,1.45164)--(4.82691,1.45179)--(4.82699,1.45195)--(4.82706,1.45211)--(4.82714,1.45226)--(4.82722,1.45242)--(4.82729,1.45258)--(4.82737,1.45273)--(4.82744,1.45289)--(4.82752,1.45305)--(4.82759,1.4532)--(4.82767,1.45336)--(4.82774,1.45352)--(4.82782,1.45367)--(4.82789,1.45383)--(4.82797,1.45398)--(4.82804,1.45414)--(4.82812,1.4543)--(4.82819,1.45445)--(4.82826,1.45461)--(4.82834,1.45476)--(4.82841,1.45492)--(4.82849,1.45507)--(4.82856,1.45523)--(4.82864,1.45539)--(4.82871,1.45554)--
> (4.82878,1.4557)--(4.82886,1.45585)--(4.82893,1.45601)--(4.829,1.45616)--(4.82908,1.45632)--(4.82915,1.45647)--(4.82922,1.45663)--(4.8293,1.45678)--(4.82937,1.45693)--(4.82944,1.45709)--(4.82952,1.45724)--(4.82959,1.4574)--(4.82966,1.45755)--(4.82973,1.45771)--(4.82981,1.45786)--(4.82988,1.45801)--(4.82995,1.45817)--(4.83002,1.45832)--(4.8301,1.45848)--(4.83017,1.45863)--(4.83024,1.45878)--(4.83031,1.45894)--(4.83039,1.45909)--(4.83046,1.45924)--(4.83053,1.4594)--(4.8306,1.45955)--
> (4.83067,1.4597)--(4.83074,1.45986)--(4.83082,1.46001)--(4.83089,1.46016)--(4.83096,1.46032)--(4.83103,1.46047)--(4.8311,1.46062)--(4.83117,1.46077)--(4.83124,1.46093)--(4.83131,1.46108)--(4.83138,1.46123)--(4.83145,1.46138)--(4.83153,1.46154)--(4.8316,1.46169)--(4.83167,1.46184)--(4.83174,1.46199)--(4.83181,1.46215)--(4.83188,1.4623)--(4.83195,1.46245)--(4.83202,1.4626)--(4.83209,1.46275)--(4.83216,1.4629)--(4.83223,1.46306)--(4.8323,1.46321)--(4.83237,1.46336)--(4.83244,1.46351)--
> (4.83251,1.46366)--(4.83258,1.46381)--(4.83264,1.46396)--(4.83271,1.46412)--(4.83278,1.46427)--(4.83285,1.46442)--(4.83292,1.46457)--(4.83299,1.46472)--(4.83306,1.46487)--(4.83313,1.46502)--(4.8332,1.46517)--(4.83327,1.46532)--(4.83333,1.46547)--(4.8334,1.46562)--(4.83347,1.46577)--(4.83354,1.46592)--(4.83361,1.46607)--(4.83368,1.46622)--(4.83374,1.46637)--(4.83381,1.46652)--(4.83388,1.46667)--(4.83395,1.46682)--(4.83402,1.46697)--(4.83408,1.46712)--(4.83415,1.46727)--(4.83422,1.46742)--
> (4.83429,1.46757)--(4.83435,1.46772)--(4.83442,1.46787)--(4.83449,1.46802)--(4.83456,1.46817)--(4.83462,1.46832)--(4.83469,1.46847)--(4.83476,1.46862)--(4.83482,1.46876)--(4.83489,1.46891)--(4.83496,1.46906)--(4.83502,1.46921)--(4.83509,1.46936)--(4.83516,1.46951)--(4.83522,1.46966)--(4.83529,1.46981)--(4.83536,1.46995)--(4.83542,1.4701)--(4.83549,1.47025)--(4.83555,1.4704)--(4.83562,1.47055)--(4.83569,1.47069)--(4.83575,1.47084)--(4.83582,1.47099)--(4.83588,1.47114)--(4.83595,1.47129)--
> (4.83601,1.47143)--(4.83608,1.47158)--(4.83614,1.47173)--(4.83621,1.47188)--(4.83628,1.47202)--(4.83634,1.47217)--(4.83641,1.47232)--(4.83647,1.47247)--(4.83654,1.47261)--(4.8366,1.47276)--(4.83667,1.47291)--(4.83673,1.47305)--(4.83679,1.4732)--(4.83686,1.47335)--(4.83692,1.47349)--(4.83699,1.47364)--(4.83705,1.47379)--(4.83712,1.47393)--(4.83718,1.47408)--(4.83724,1.47423)--(4.83731,1.47437)--(4.83737,1.47452)--(4.83744,1.47467)--(4.8375,1.47481)--(4.83756,1.47496)--(4.83763,1.47511)--
> (4.83769,1.47525)--(4.83776,1.4754)--(4.83782,1.47554)--(4.83788,1.47569)--(4.83795,1.47583)--(4.83801,1.47598)--(4.83807,1.47613)--(4.83813,1.47627)--(4.8382,1.47642)--(4.83826,1.47656)--(4.83832,1.47671)--(4.83839,1.47685)--(4.83845,1.477)--(4.83851,1.47714)--(4.83857,1.47729)--(4.83864,1.47743)--(4.8387,1.47758)--(4.83876,1.47772)--(4.83882,1.47787)--(4.83889,1.47801)--(4.83895,1.47816)--(4.83901,1.4783)--(4.83907,1.47845)--(4.83913,1.47859)--(4.8392,1.47874)--(4.83926,1.47888)--
> (4.83932,1.47903)--(4.83938,1.47917)--(4.83944,1.47931)--(4.83951,1.47946)--(4.83957,1.4796)--(4.83963,1.47975)--(4.83969,1.47989)--(4.83975,1.48003)--(4.83981,1.48018)--(4.83987,1.48032)--(4.83993,1.48047)--(4.83999,1.48061)--(4.84006,1.48075)--(4.84012,1.4809)--(4.84018,1.48104)--(4.84024,1.48118)--(4.8403,1.48133)--(4.84036,1.48147)--(4.84042,1.48161)--(4.84048,1.48176)--(4.84054,1.4819)--(4.8406,1.48204)--(4.84066,1.48219)--(4.84072,1.48233)--(4.84078,1.48247)--(4.84084,1.48261)--
> (4.8409,1.48276)--(4.84096,1.4829)--(4.84102,1.48304)--(4.84108,1.48319)--(4.84114,1.48333)--(4.8412,1.48347)--(4.84126,1.48361)--(4.84132,1.48375)--(4.84138,1.4839)--(4.84144,1.48404)--(4.8415,1.48418)--(4.84156,1.48432)--(4.84162,1.48447)--(4.84167,1.48461)--(4.84173,1.48475)--(4.84179,1.48489)--(4.84185,1.48503)--(4.84191,1.48518)--(4.84197,1.48532)--(4.84203,1.48546)--(4.84209,1.4856)--(4.84214,1.48574)--(4.8422,1.48588)--(4.84226,1.48602)--(4.84232,1.48617)--(4.84238,1.48631)--
> (4.84244,1.48645)--(4.84249,1.48659)--(4.84255,1.48673)--(4.84261,1.48687)--(4.84267,1.48701)--(4.84273,1.48715)--(4.84278,1.48729)--(4.84284,1.48744)--(4.8429,1.48758)--(4.84296,1.48772)--(4.84302,1.48786)--(4.84307,1.488)--(4.84313,1.48814)--(4.84319,1.48828)--(4.84324,1.48842)--(4.8433,1.48856)--(4.84336,1.4887)--(4.84342,1.48884)--(4.84347,1.48898)--(4.84353,1.48912)--(4.84359,1.48926)--(4.84364,1.4894)--(4.8437,1.48954)--(4.84376,1.48968)--(4.84381,1.48982)--(4.84387,1.48996)--
> (4.84393,1.4901)--(4.84398,1.49024)--(4.84404,1.49038)--(4.8441,1.49052)--(4.84415,1.49066)--(4.84421,1.4908)--(4.84427,1.49094)--(4.84432,1.49108)--(4.84438,1.49122)--(4.84443,1.49136)--(4.84449,1.4915)--(4.84454,1.49163)--(4.8446,1.49177)--(4.84466,1.49191)--(4.84471,1.49205)--(4.84477,1.49219)--(4.84482,1.49233)--(4.84488,1.49247)--(4.84493,1.49261)--(4.84499,1.49275)--(4.84504,1.49289)--(4.8451,1.49302)--(4.84515,1.49316)--(4.84521,1.4933)--(4.84526,1.49344)--(4.84532,1.49358)--
> (4.84537,1.49372)--(4.84543,1.49385)--(4.84548,1.49399)--(4.84554,1.49413)--(4.84559,1.49427)--(4.84565,1.49441)--(4.8457,1.49455)--(4.84576,1.49468)--(4.84581,1.49482)--(4.84587,1.49496)--(4.84592,1.4951)--(4.84597,1.49523)--(4.84603,1.49537)--(4.84608,1.49551)--(4.84614,1.49565)--(4.84619,1.49578)--(4.84624,1.49592)--(4.8463,1.49606)--(4.84635,1.4962)--(4.84641,1.49633)--(4.84646,1.49647)--(4.84651,1.49661)--(4.84657,1.49675)--(4.84662,1.49688)--(4.84667,1.49702)--(4.84673,1.49716)--
> (4.84678,1.49729)--(4.84683,1.49743)--(4.84689,1.49757)--(4.84694,1.49771)--(4.84699,1.49784)--(4.84705,1.49798)--(4.8471,1.49812)--(4.84715,1.49825)--(4.8472,1.49839)--(4.84726,1.49853)--(4.84731,1.49866)--(4.84736,1.4988)--(4.84741,1.49893)--(4.84747,1.49907)--(4.84752,1.49921)--(4.84757,1.49934)--(4.84762,1.49948)--(4.84768,1.49962)--(4.84773,1.49975)--(4.84778,1.49989)--(4.84783,1.50002)--(4.84788,1.50016)--(4.84794,1.5003)--(4.84799,1.50043)--(4.84804,1.50057)--(4.84809,1.5007)--
> (4.84814,1.50084)--(4.8482,1.50097)--(4.84825,1.50111)--(4.8483,1.50125)--(4.84835,1.50138)--(4.8484,1.50152)--(4.84845,1.50165)--(4.8485,1.50179)--(4.84856,1.50192)--(4.84861,1.50206)--(4.84866,1.50219)--(4.84871,1.50233)--(4.84876,1.50246)--(4.84881,1.5026)--(4.84886,1.50273)--(4.84891,1.50287)--(4.84896,1.503)--(4.84901,1.50314)--(4.84906,1.50327)--(4.84912,1.50341)--(4.84917,1.50354)--(4.84922,1.50368)--(4.84927,1.50381)--(4.84932,1.50395)--(4.84937,1.50408)--(4.84942,1.50421)--
> (4.84947,1.50435)--(4.84952,1.50448)--(4.84957,1.50462)--(4.84962,1.50475)--(4.84967,1.50489)--(4.84972,1.50502)--(4.84977,1.50515)--(4.84982,1.50529)--(4.84987,1.50542)--(4.84992,1.50556)--(4.84997,1.50569)--(4.85002,1.50582)--(4.85007,1.50596)--(4.85012,1.50609)--(4.85016,1.50623)--(4.85021,1.50636)--(4.85026,1.50649)--(4.85031,1.50663)--(4.85036,1.50676)--(4.85041,1.50689)--(4.85046,1.50703)--(4.85051,1.50716)--(4.85056,1.50729)--(4.85061,1.50743)--(4.85066,1.50756)--(4.8507,1.50769)--
> (4.85075,1.50783)--(4.8508,1.50796)--(4.85085,1.50809)--(4.8509,1.50823)--(4.85095,1.50836)--(4.851,1.50849)--(4.85104,1.50862)--(4.85109,1.50876)--(4.85114,1.50889)--(4.85119,1.50902)--(4.85124,1.50916)--(4.85129,1.50929)--(4.85133,1.50942)--(4.85138,1.50955)--(4.85143,1.50969)--(4.85148,1.50982)--(4.85153,1.50995)--(4.85157,1.51008)--(4.85162,1.51022)--(4.85167,1.51035)--(4.85172,1.51048)--(4.85176,1.51061)--(4.85181,1.51074)--(4.85186,1.51088)--(4.85191,1.51101)--(4.85195,1.51114)--
> (4.852,1.51127)--(4.85205,1.5114)--(4.8521,1.51154)--(4.85214,1.51167)--(4.85219,1.5118)--(4.85224,1.51193)--(4.85228,1.51206)--(4.85233,1.5122)--(4.85238,1.51233)--(4.85242,1.51246)--(4.85247,1.51259)--(4.85252,1.51272)--(4.85256,1.51285)--(4.85261,1.51298)--(4.85266,1.51312)--(4.8527,1.51325)--(4.85275,1.51338)--(4.8528,1.51351)--(4.85284,1.51364)--(4.85289,1.51377)--(4.85294,1.5139)--(4.85298,1.51403)--(4.85303,1.51417)--(4.85307,1.5143)--(4.85312,1.51443)--(4.85317,1.51456)--
> (4.85321,1.51469)--(4.85326,1.51482)--(4.8533,1.51495)--(4.85335,1.51508)--(4.85339,1.51521)--(4.85344,1.51534)--(4.85349,1.51547)--(4.85353,1.5156)--(4.85358,1.51573)--(4.85362,1.51586)--(4.85367,1.516)--(4.85371,1.51613)--(4.85376,1.51626)--(4.8538,1.51639)--(4.85385,1.51652)--(4.85389,1.51665)--(4.85394,1.51678)--(4.85398,1.51691)--(4.85403,1.51704)--(4.85407,1.51717)--(4.85412,1.5173)--(4.85416,1.51743)--(4.85421,1.51756)--(4.85425,1.51769)--(4.8543,1.51782)--(4.85434,1.51795)--
> (4.85439,1.51808)--(4.85443,1.51821)--(4.85448,1.51834)--(4.85452,1.51847)--(4.85456,1.5186)--(4.85461,1.51872)--(4.85465,1.51885)--(4.8547,1.51898)--(4.85474,1.51911)--(4.85478,1.51924)--(4.85483,1.51937)--(4.85487,1.5195)--(4.85492,1.51963)--(4.85496,1.51976)--(4.855,1.51989)--(4.85505,1.52002)--(4.85509,1.52015)--(4.85514,1.52028)--(4.85518,1.52041)--(4.85522,1.52053)--(4.85527,1.52066)--(4.85531,1.52079)--(4.85535,1.52092)--(4.8554,1.52105)--(4.85544,1.52118)--(4.85548,1.52131)--
> (4.85553,1.52144)--(4.85557,1.52156)--(4.85561,1.52169)--(4.85566,1.52182)--(4.8557,1.52195)--(4.85574,1.52208)--(4.85578,1.52221)--(4.85583,1.52234)--(4.85587,1.52246)--(4.85591,1.52259)--(4.85596,1.52272)--(4.856,1.52285)--(4.85604,1.52298)--(4.85608,1.52311)--(4.85613,1.52323)--(4.85617,1.52336)--(4.85621,1.52349)--(4.85625,1.52362)--(4.8563,1.52375)--(4.85634,1.52387)--(4.85638,1.524)--(4.85642,1.52413)--(4.85646,1.52426)--(4.85651,1.52439)--(4.85655,1.52451)--(4.85659,1.52464)--
> (4.85663,1.52477)--(4.85667,1.5249)--(4.85672,1.52502)--(4.85676,1.52515)--(4.8568,1.52528)--(4.85684,1.52541)--(4.85688,1.52553)--(4.85692,1.52566)--(4.85697,1.52579)--(4.85701,1.52592)--(4.85705,1.52604)--(4.85709,1.52617)--(4.85713,1.5263)--(4.85717,1.52643)--(4.85721,1.52655)--(4.85725,1.52668)--(4.8573,1.52681)--(4.85734,1.52693)--(4.85738,1.52706)--(4.85742,1.52719)--(4.85746,1.52731)--(4.8575,1.52744)--(4.85754,1.52757)--(4.85758,1.52769)--(4.85762,1.52782)--(4.85766,1.52795)--
> (4.8577,1.52808)--(4.85775,1.5282)--(4.85779,1.52833)--(4.85783,1.52846)--(4.85787,1.52858)--(4.85791,1.52871)--(4.85795,1.52883)--(4.85799,1.52896)--(4.85803,1.52909)--(4.85807,1.52921)--(4.85811,1.52934)--(4.85815,1.52947)--(4.85819,1.52959)--(4.85823,1.52972)--(4.85827,1.52985)--(4.85831,1.52997)--(4.85835,1.5301)--(4.85839,1.53022)--(4.85843,1.53035)--(4.85847,1.53048)--(4.85851,1.5306)--(4.85855,1.53073)--(4.85859,1.53085)--(4.85863,1.53098)--(4.85867,1.53111)--(4.8587,1.53123)--
> (4.85874,1.53136)--(4.85878,1.53148)--(4.85882,1.53161)--(4.85886,1.53173)--(4.8589,1.53186)--(4.85894,1.53199)--(4.85898,1.53211)--(4.85902,1.53224)--(4.85906,1.53236)--(4.8591,1.53249)--(4.85914,1.53261)--(4.85917,1.53274)--(4.85921,1.53286)--(4.85925,1.53299)--(4.85929,1.53311)--(4.85933,1.53324)--(4.85937,1.53336)--(4.85941,1.53349)--(4.85945,1.53361)--(4.85948,1.53374)--(4.85952,1.53387)--(4.85956,1.53399)--(4.8596,1.53412)--(4.85964,1.53424)--(4.85968,1.53437)--(4.85971,1.53449)--
> (4.85975,1.53461)--(4.85979,1.53474)--(4.85983,1.53486)--(4.85987,1.53499)--(4.8599,1.53511)--(4.85994,1.53524)--(4.85998,1.53536)--(4.86002,1.53549)--(4.86006,1.53561)--(4.86009,1.53574)--(4.86013,1.53586)--(4.86017,1.53599)--(4.86021,1.53611)--(4.86024,1.53624)--(4.86028,1.53636)--(4.86032,1.53648)--(4.86036,1.53661)--(4.86039,1.53673)--(4.86043,1.53686)--(4.86047,1.53698)--(4.86051,1.53711)--(4.86054,1.53723)--(4.86058,1.53735)--(4.86062,1.53748)--(4.86066,1.5376)--(4.86069,1.53773)--
> (4.86073,1.53785)--(4.86077,1.53797)--(4.8608,1.5381)--(4.86084,1.53822)--(4.86088,1.53835)--(4.86091,1.53847)--(4.86095,1.53859)--(4.86099,1.53872)--(4.86102,1.53884)--(4.86106,1.53896)--(4.8611,1.53909)--(4.86113,1.53921)--(4.86117,1.53934)--(4.86121,1.53946)--(4.86124,1.53958)--(4.86128,1.53971)--(4.86132,1.53983)--(4.86135,1.53995)--(4.86139,1.54008)--(4.86142,1.5402)--(4.86146,1.54032)--(4.8615,1.54045)--(4.86153,1.54057)--(4.86157,1.54069)--(4.8616,1.54082)--(4.86164,1.54094)--
> (4.86168,1.54106)--(4.86171,1.54119)--(4.86175,1.54131)--(4.86178,1.54143)--(4.86182,1.54155)--(4.86185,1.54168)--(4.86189,1.5418)--(4.86193,1.54192)--(4.86196,1.54205)--(4.862,1.54217)--(4.86203,1.54229)--(4.86207,1.54242)--(4.8621,1.54254)--(4.86214,1.54266)--(4.86217,1.54278)--(4.86221,1.54291)--(4.86224,1.54303)--(4.86228,1.54315)--(4.86231,1.54327)--(4.86235,1.5434)--(4.86238,1.54352)--(4.86242,1.54364)--(4.86245,1.54376)--(4.86249,1.54389)--(4.86252,1.54401)--(4.86256,1.54413)--
> (4.86259,1.54425)--(4.86263,1.54438)--(4.86266,1.5445)--(4.8627,1.54462)--(4.86273,1.54474)--(4.86277,1.54487)--(4.8628,1.54499)--(4.86283,1.54511)--(4.86287,1.54523)--(4.8629,1.54535)--(4.86294,1.54548)--(4.86297,1.5456)--(4.86301,1.54572)--(4.86304,1.54584)--(4.86307,1.54596)--(4.86311,1.54609)--(4.86314,1.54621)--(4.86318,1.54633)--(4.86321,1.54645)--(4.86324,1.54657)--(4.86328,1.5467)--(4.86331,1.54682)--(4.86335,1.54694)--(4.86338,1.54706)--(4.86341,1.54718)--(4.86345,1.5473)--
> (4.86348,1.54743)--(4.86351,1.54755)--(4.86355,1.54767)--(4.86358,1.54779)--(4.86361,1.54791)--(4.86365,1.54803)--(4.86368,1.54815)--(4.86371,1.54828)--(4.86375,1.5484)--(4.86378,1.54852)--(4.86381,1.54864)--(4.86385,1.54876)--(4.86388,1.54888)--(4.86391,1.549)--(4.86395,1.54912)--(4.86398,1.54925)--(4.86401,1.54937)--(4.86405,1.54949)--(4.86408,1.54961)--(4.86411,1.54973)--(4.86414,1.54985)--(4.86418,1.54997)--(4.86421,1.55009)--(4.86424,1.55021)--(4.86427,1.55034)--(4.86431,1.55046)--
> (4.86434,1.55058)--(4.86437,1.5507)--(4.8644,1.55082)--(4.86444,1.55094)--(4.86447,1.55106)--(4.8645,1.55118)--(4.86453,1.5513)--(4.86457,1.55142)--(4.8646,1.55154)--(4.86463,1.55166)--(4.86466,1.55178)--(4.86469,1.5519)--(4.86473,1.55203)--(4.86476,1.55215)--(4.86479,1.55227)--(4.86482,1.55239)--(4.86485,1.55251)--(4.86489,1.55263)--(4.86492,1.55275)--(4.86495,1.55287)--(4.86498,1.55299)--(4.86501,1.55311)--(4.86504,1.55323)--(4.86508,1.55335)--(4.86511,1.55347)--(4.86514,1.55359)--
> (4.86517,1.55371)--(4.8652,1.55383)--(4.86523,1.55395)--(4.86527,1.55407)--(4.8653,1.55419)--(4.86533,1.55431)--(4.86536,1.55443)--(4.86539,1.55455)--(4.86542,1.55467)--(4.86545,1.55479)--(4.86548,1.55491)--(4.86551,1.55503)--(4.86555,1.55515)--(4.86558,1.55527)--(4.86561,1.55539)--(4.86564,1.55551)--(4.86567,1.55563)--(4.8657,1.55575)--(4.86573,1.55587)--(4.86576,1.55599)--(4.86579,1.55611)--(4.86582,1.55623)--(4.86585,1.55635)--(4.86588,1.55647)--(4.86591,1.55659)--(4.86594,1.55671)--
> (4.86597,1.55683)--(4.86601,1.55694)--(4.86604,1.55706)--(4.86607,1.55718)--(4.8661,1.5573)--(4.86613,1.55742)--(4.86616,1.55754)--(4.86619,1.55766)--(4.86622,1.55778)--(4.86625,1.5579)--(4.86628,1.55802)--(4.86631,1.55814)--(4.86634,1.55826)--(4.86637,1.55838)--(4.8664,1.5585)--(4.86643,1.55861)--(4.86646,1.55873)--(4.86649,1.55885)--(4.86652,1.55897)--(4.86655,1.55909)--(4.86657,1.55921)--(4.8666,1.55933)--(4.86663,1.55945)--(4.86666,1.55957)--(4.86669,1.55969)--(4.86672,1.5598)--
> (4.86675,1.55992)--(4.86678,1.56004)--(4.86681,1.56016)--(4.86684,1.56028)--(4.86687,1.5604)--(4.8669,1.56052)--(4.86693,1.56064)--(4.86696,1.56075)--(4.86699,1.56087)--(4.86701,1.56099)--(4.86704,1.56111)--(4.86707,1.56123)--(4.8671,1.56135)--(4.86713,1.56147)--(4.86716,1.56158)--(4.86719,1.5617)--(4.86722,1.56182)--(4.86725,1.56194)--(4.86727,1.56206)--(4.8673,1.56218)--(4.86733,1.5623)--(4.86736,1.56241)--(4.86739,1.56253)--(4.86742,1.56265)--(4.86745,1.56277)--(4.86747,1.56289)--
> (4.8675,1.56301)--(4.86753,1.56312)--(4.86756,1.56324)--(4.86759,1.56336)--(4.86762,1.56348)--(4.86764,1.5636)--(4.86767,1.56371)--(4.8677,1.56383)--(4.86773,1.56395)--(4.86776,1.56407)--(4.86778,1.56419)--(4.86781,1.5643)--(4.86784,1.56442)--(4.86787,1.56454)--(4.8679,1.56466)--(4.86792,1.56478)--(4.86795,1.56489)--(4.86798,1.56501)--(4.86801,1.56513)--(4.86803,1.56525)--(4.86806,1.56536)--(4.86809,1.56548)--(4.86812,1.5656)--(4.86814,1.56572)--(4.86817,1.56584)--(4.8682,1.56595)--
> (4.86823,1.56607)--(4.86825,1.56619)--(4.86828,1.56631)--(4.86831,1.56642)--(4.86834,1.56654)--(4.86836,1.56666)--(4.86839,1.56678)--(4.86842,1.56689)--(4.86844,1.56701)--(4.86847,1.56713)--(4.8685,1.56725)--(4.86853,1.56736)--(4.86855,1.56748)--(4.86858,1.5676)--(4.86861,1.56772)--(4.86863,1.56783)--(4.86866,1.56795)--(4.86869,1.56807)--(4.86871,1.56819)--(4.86874,1.5683)--(4.86877,1.56842)--(4.86879,1.56854)--(4.86882,1.56865)--(4.86885,1.56877)--(4.86887,1.56889)--(4.8689,1.56901)--
> (4.86893,1.56912)--(4.86895,1.56924)--(4.86898,1.56936)--(4.869,1.56947)--(4.86903,1.56959)--(4.86906,1.56971)--(4.86908,1.56982)--(4.86911,1.56994)--(4.86914,1.57006)--(4.86916,1.57018)--(4.86919,1.57029)--(4.86921,1.57041)--(4.86924,1.57053)--(4.86927,1.57064)--(4.86929,1.57076)--(4.86932,1.57088)--(4.86934,1.57099)--(4.86937,1.57111)--(4.86939,1.57123)--(4.86942,1.57134)--(4.86945,1.57146)--(4.86947,1.57158)--(4.8695,1.57169)--(4.86952,1.57181)--(4.86955,1.57193)--(4.86957,1.57204)--
> (4.8696,1.57216)--(4.86963,1.57228)--(4.86965,1.57239)--(4.86968,1.57251)--(4.8697,1.57263)--(4.86973,1.57274)--(4.86975,1.57286)--(4.86978,1.57297)--(4.8698,1.57309)--(4.86983,1.57321)--(4.86985,1.57332)--(4.86988,1.57344)--(4.8699,1.57356)--(4.86993,1.57367)--(4.86995,1.57379)--(4.86998,1.57391)--(4.87,1.57402)--(4.87003,1.57414)--(4.87005,1.57425)--(4.87008,1.57437)--(4.8701,1.57449)--(4.87013,1.5746)--(4.87015,1.57472)--(4.87018,1.57484)--(4.8702,1.57495)--(4.87022,1.57507)--
> (4.87025,1.57518)--(4.87027,1.5753)--(4.8703,1.57542)--(4.87032,1.57553)--(4.87035,1.57565)--(4.87037,1.57576)--(4.8704,1.57588)--(4.87042,1.576)--(4.87044,1.57611)--(4.87047,1.57623)--(4.87049,1.57634)--(4.87052,1.57646)--(4.87054,1.57657)--(4.87056,1.57669)--(4.87059,1.57681)--(4.87061,1.57692)--(4.87064,1.57704)--(4.87066,1.57715)--(4.87068,1.57727)--(4.87071,1.57738)--(4.87073,1.5775)--(4.87076,1.57762)--(4.87078,1.57773)--(4.8708,1.57785)--(4.87083,1.57796)--(4.87085,1.57808)--
> (4.87087,1.57819)--(4.8709,1.57831)--(4.87092,1.57843)--(4.87094,1.57854)--(4.87097,1.57866)--(4.87099,1.57877)--(4.87101,1.57889)--(4.87104,1.579)--(4.87106,1.57912)--(4.87108,1.57923)--(4.87111,1.57935)--(4.87113,1.57946)--(4.87115,1.57958)--(4.87118,1.5797)--(4.8712,1.57981)--(4.87122,1.57993)--(4.87125,1.58004)--(4.87127,1.58016)--(4.87129,1.58027)--(4.87132,1.58039)--(4.87134,1.5805)--(4.87136,1.58062)--(4.87138,1.58073)--(4.87141,1.58085)--(4.87143,1.58096)--(4.87145,1.58108)--
> (4.87148,1.58119)--(4.8715,1.58131)--(4.87152,1.58142)--(4.87154,1.58154)--(4.87157,1.58165)--(4.87159,1.58177)--(4.87161,1.58188)--(4.87163,1.582)--(4.87166,1.58211)--(4.87168,1.58223)--(4.8717,1.58234)--(4.87172,1.58246)--(4.87174,1.58257)--(4.87177,1.58269)--(4.87179,1.5828)--(4.87181,1.58292)--(4.87183,1.58303)--(4.87186,1.58315)--(4.87188,1.58326)--(4.8719,1.58338)--(4.87192,1.58349)--(4.87194,1.58361)--(4.87197,1.58372)--(4.87199,1.58384)--(4.87201,1.58395)--(4.87203,1.58407)--
> (4.87205,1.58418)--(4.87207,1.5843)--(4.8721,1.58441)--(4.87212,1.58452)--(4.87214,1.58464)--(4.87216,1.58475)--(4.87218,1.58487)--(4.8722,1.58498)--(4.87223,1.5851)--(4.87225,1.58521)--(4.87227,1.58533)--(4.87229,1.58544)--(4.87231,1.58556)--(4.87233,1.58567)--(4.87235,1.58578)--(4.87238,1.5859)--(4.8724,1.58601)--(4.87242,1.58613)--(4.87244,1.58624)--(4.87246,1.58636)--(4.87248,1.58647)--(4.8725,1.58659)--(4.87252,1.5867)--(4.87254,1.58681)--(4.87257,1.58693)--(4.87259,1.58704)--
> (4.87261,1.58716)--(4.87263,1.58727)--(4.87265,1.58739)--(4.87267,1.5875)--(4.87269,1.58761)--(4.87271,1.58773)--(4.87273,1.58784)--(4.87275,1.58796)--(4.87277,1.58807)--(4.87279,1.58819)--(4.87281,1.5883)--(4.87283,1.58841)--(4.87286,1.58853)--(4.87288,1.58864)--(4.8729,1.58876)--(4.87292,1.58887)--(4.87294,1.58898)--(4.87296,1.5891)--(4.87298,1.58921)--(4.873,1.58933)--(4.87302,1.58944)--(4.87304,1.58955)--(4.87306,1.58967)--(4.87308,1.58978)--(4.8731,1.5899)--(4.87312,1.59001)--
> (4.87314,1.59012)--(4.87316,1.59024)--(4.87318,1.59035)--(4.8732,1.59047)--(4.87322,1.59058)--(4.87324,1.59069)--(4.87326,1.59081)--(4.87328,1.59092)--(4.8733,1.59104)--(4.87332,1.59115)--(4.87334,1.59126)--(4.87336,1.59138)--(4.87338,1.59149)--(4.8734,1.5916)--(4.87342,1.59172)--(4.87344,1.59183)--(4.87345,1.59195)--(4.87347,1.59206)--(4.87349,1.59217)--(4.87351,1.59229)--(4.87353,1.5924)--(4.87355,1.59251)--(4.87357,1.59263)--(4.87359,1.59274)--(4.87361,1.59285)--(4.87363,1.59297)--
> (4.87365,1.59308)--(4.87367,1.59319)--(4.87369,1.59331)--(4.8737,1.59342)--(4.87372,1.59354)--(4.87374,1.59365)--(4.87376,1.59376)--(4.87378,1.59388)--(4.8738,1.59399)--(4.87382,1.5941)--(4.87384,1.59422)--(4.87386,1.59433)--(4.87387,1.59444)--(4.87389,1.59456)--(4.87391,1.59467)--(4.87393,1.59478)--(4.87395,1.5949)--(4.87397,1.59501)--(4.87399,1.59512)--(4.87401,1.59524)--(4.87402,1.59535)--(4.87404,1.59546)--(4.87406,1.59558)--(4.87408,1.59569)--(4.8741,1.5958)--(4.87412,1.59592)--
> (4.87413,1.59603)--(4.87415,1.59614)--(4.87417,1.59626)--(4.87419,1.59637)--(4.87421,1.59648)--(4.87423,1.5966)--(4.87424,1.59671)--(4.87426,1.59682)--(4.87428,1.59694)--(4.8743,1.59705)--(4.87432,1.59716)--(4.87433,1.59727)--(4.87435,1.59739)--(4.87437,1.5975)--(4.87439,1.59761)--(4.8744,1.59773)--(4.87442,1.59784)--(4.87444,1.59795)--(4.87446,1.59807)--(4.87448,1.59818)--(4.87449,1.59829)--(4.87451,1.59841)--(4.87453,1.59852)--(4.87455,1.59863)--(4.87456,1.59874)--(4.87458,1.59886)--
> (4.8746,1.59897)--(4.87462,1.59908)--(4.87463,1.5992)--(4.87465,1.59931)--(4.87467,1.59942)--(4.87469,1.59953)--(4.8747,1.59965)--(4.87472,1.59976)--(4.87474,1.59987)--(4.87475,1.59999)--(4.87477,1.6001)--(4.87479,1.60021)--(4.87481,1.60032)--(4.87482,1.60044)--(4.87484,1.60055)--(4.87486,1.60066)--(4.87487,1.60078)--(4.87489,1.60089)--(4.87491,1.601)--(4.87492,1.60111)--(4.87494,1.60123)--(4.87496,1.60134)--(4.87497,1.60145)--(4.87499,1.60156)--(4.87501,1.60168)--(4.87502,1.60179)--
> (4.87504,1.6019)--(4.87506,1.60202)--(4.87507,1.60213)--(4.87509,1.60224)--(4.87511,1.60235)--(4.87512,1.60247)--(4.87514,1.60258)--(4.87516,1.60269)--(4.87517,1.6028)--(4.87519,1.60292)--(4.87521,1.60303)--(4.87522,1.60314)--(4.87524,1.60325)--(4.87525,1.60337)--(4.87527,1.60348)--(4.87529,1.60359)--(4.8753,1.6037)--(4.87532,1.60382)--(4.87534,1.60393)--(4.87535,1.60404)--(4.87537,1.60415)--(4.87538,1.60427)--(4.8754,1.60438)--(4.87541,1.60449)--(4.87543,1.6046)--(4.87545,1.60472)--
> (4.87546,1.60483)--(4.87548,1.60494)--(4.87549,1.60505)--(4.87551,1.60517)--(4.87553,1.60528)--(4.87554,1.60539)--(4.87556,1.6055)--(4.87557,1.60562)--(4.87559,1.60573)--(4.8756,1.60584)--(4.87562,1.60595)--(4.87563,1.60606)--(4.87565,1.60618)--(4.87566,1.60629)--(4.87568,1.6064)--(4.8757,1.60651)--(4.87571,1.60663)--(4.87573,1.60674)--(4.87574,1.60685)--(4.87576,1.60696)--(4.87577,1.60707)--(4.87579,1.60719)--(4.8758,1.6073)--(4.87582,1.60741)--(4.87583,1.60752)--(4.87585,1.60764)--
> (4.87586,1.60775)--(4.87588,1.60786)--(4.87589,1.60797)--(4.87591,1.60808)--(4.87592,1.6082)--(4.87594,1.60831)--(4.87595,1.60842)--(4.87597,1.60853)--(4.87598,1.60864)--(4.876,1.60876)--(4.87601,1.60887)--(4.87602,1.60898)--(4.87604,1.60909)--(4.87605,1.60921)--(4.87607,1.60932)--(4.87608,1.60943)--(4.8761,1.60954)--(4.87611,1.60965)--(4.87613,1.60977)--(4.87614,1.60988)--(4.87616,1.60999)--(4.87617,1.6101)--(4.87618,1.61021)--(4.8762,1.61033)--(4.87621,1.61044)--(4.87623,1.61055)--
> (4.87624,1.61066)--(4.87625,1.61077)--(4.87627,1.61089)--(4.87628,1.611)--(4.8763,1.61111)--(4.87631,1.61122)--(4.87632,1.61133)--(4.87634,1.61144)--(4.87635,1.61156)--(4.87637,1.61167)--(4.87638,1.61178)--(4.87639,1.61189)--(4.87641,1.612)--(4.87642,1.61212)--(4.87644,1.61223)--(4.87645,1.61234)--(4.87646,1.61245)--(4.87648,1.61256)--(4.87649,1.61268)--(4.8765,1.61279)--(4.87652,1.6129)--(4.87653,1.61301)--(4.87654,1.61312)--(4.87656,1.61323)--(4.87657,1.61335)--(4.87658,1.61346)--
> (4.8766,1.61357)--(4.87661,1.61368)--(4.87662,1.61379)--(4.87664,1.61391)--(4.87665,1.61402)--(4.87666,1.61413)--(4.87668,1.61424)--(4.87669,1.61435)--(4.8767,1.61446)--(4.87672,1.61458)--(4.87673,1.61469)--(4.87674,1.6148)--(4.87676,1.61491)--(4.87677,1.61502)--(4.87678,1.61513)--(4.87679,1.61525)--(4.87681,1.61536)--(4.87682,1.61547)--(4.87683,1.61558)--(4.87685,1.61569)--(4.87686,1.6158)--(4.87687,1.61592)--(4.87688,1.61603)--(4.8769,1.61614)--(4.87691,1.61625)--(4.87692,1.61636)--
> (4.87693,1.61647)--(4.87695,1.61659)--(4.87696,1.6167)--(4.87697,1.61681)--(4.87698,1.61692)--(4.877,1.61703)--(4.87701,1.61714)--(4.87702,1.61725)--(4.87703,1.61737)--(4.87705,1.61748)--(4.87706,1.61759)--(4.87707,1.6177)--(4.87708,1.61781)--(4.8771,1.61792)--(4.87711,1.61804)--(4.87712,1.61815)--(4.87713,1.61826)--(4.87714,1.61837)--(4.87716,1.61848)--(4.87717,1.61859)--(4.87718,1.6187)--(4.87719,1.61882)--(4.8772,1.61893)--(4.87722,1.61904)--(4.87723,1.61915)--(4.87724,1.61926)--
> (4.87725,1.61937)--(4.87726,1.61948)--(4.87727,1.6196)--(4.87729,1.61971)--(4.8773,1.61982)--(4.87731,1.61993)--(4.87732,1.62004)--(4.87733,1.62015)--(4.87734,1.62026)--(4.87736,1.62038)--(4.87737,1.62049)--(4.87738,1.6206)--(4.87739,1.62071)--(4.8774,1.62082)--(4.87741,1.62093)--(4.87742,1.62104)--(4.87743,1.62116)--(4.87745,1.62127)--(4.87746,1.62138)--(4.87747,1.62149)--(4.87748,1.6216)--(4.87749,1.62171)--(4.8775,1.62182)--(4.87751,1.62194)--(4.87752,1.62205)--(4.87754,1.62216)--
> (4.87755,1.62227)--(4.87756,1.62238)--(4.87757,1.62249)--(4.87758,1.6226)--(4.87759,1.62272)--(4.8776,1.62283)--(4.87761,1.62294)--(4.87762,1.62305)--(4.87763,1.62316)--(4.87764,1.62327)--(4.87765,1.62338)--(4.87766,1.62349)--(4.87768,1.62361)--(4.87769,1.62372)--(4.8777,1.62383)--(4.87771,1.62394)--(4.87772,1.62405)--(4.87773,1.62416)--(4.87774,1.62427)--(4.87775,1.62438)--(4.87776,1.6245)--(4.87777,1.62461)--(4.87778,1.62472)--(4.87779,1.62483)--(4.8778,1.62494)--(4.87781,1.62505)--
> (4.87782,1.62516)--(4.87783,1.62527)--(4.87784,1.62539)--(4.87785,1.6255)--(4.87786,1.62561)--(4.87787,1.62572)--(4.87788,1.62583)--(4.87789,1.62594)--(4.8779,1.62605)--(4.87791,1.62616)--(4.87792,1.62628)--(4.87793,1.62639)--(4.87794,1.6265)--(4.87795,1.62661)--(4.87796,1.62672)--(4.87797,1.62683)--(4.87798,1.62694)--(4.87799,1.62705)--(4.878,1.62717)--(4.87801,1.62728)--(4.87802,1.62739)--(4.87803,1.6275)--(4.87804,1.62761)--(4.87805,1.62772)--(4.87806,1.62783)--(4.87807,1.62794)--
> (4.87808,1.62805)--(4.87809,1.62817)--(4.87809,1.62828)--(4.8781,1.62839)--(4.87811,1.6285)--(4.87812,1.62861)--(4.87813,1.62872)--(4.87814,1.62883)--(4.87815,1.62894)--(4.87816,1.62905)--(4.87817,1.62917)--(4.87818,1.62928)--(4.87819,1.62939)--(4.8782,1.6295)--(4.8782,1.62961)--(4.87821,1.62972)--(4.87822,1.62983)--(4.87823,1.62994)--(4.87824,1.63006)--(4.87825,1.63017)--(4.87826,1.63028)--(4.87827,1.63039)--(4.87828,1.6305)--(4.87828,1.63061)--(4.87829,1.63072)--(4.8783,1.63083)--
> (4.87831,1.63094)--(4.87832,1.63106)--(4.87833,1.63117)--(4.87834,1.63128)--(4.87834,1.63139)--(4.87835,1.6315)--(4.87836,1.63161)--(4.87837,1.63172)--(4.87838,1.63183)--(4.87839,1.63194)--(4.8784,1.63205)--(4.8784,1.63217)--(4.87841,1.63228)--(4.87842,1.63239)--(4.87843,1.6325)--(4.87844,1.63261)--(4.87844,1.63272)--(4.87845,1.63283)--(4.87846,1.63294)--(4.87847,1.63305)--(4.87848,1.63317)--(4.87849,1.63328)--(4.87849,1.63339)--(4.8785,1.6335)--(4.87851,1.63361)--(4.87852,1.63372)--
> (4.87852,1.63383)--(4.87853,1.63394)--(4.87854,1.63405)--(4.87855,1.63417)--(4.87856,1.63428)--(4.87856,1.63439)--(4.87857,1.6345)--(4.87858,1.63461)--(4.87859,1.63472)--(4.87859,1.63483)--(4.8786,1.63494)--(4.87861,1.63505)--(4.87862,1.63517)--(4.87862,1.63528)--(4.87863,1.63539)--(4.87864,1.6355)--(4.87865,1.63561)--(4.87865,1.63572)--(4.87866,1.63583)--(4.87867,1.63594)--(4.87868,1.63605)--(4.87868,1.63616)--(4.87869,1.63628)--(4.8787,1.63639)--(4.8787,1.6365)--(4.87871,1.63661)--
> (4.87872,1.63672)--(4.87873,1.63683)--(4.87873,1.63694)--(4.87874,1.63705)--(4.87875,1.63716)--(4.87875,1.63728)--(4.87876,1.63739)--(4.87877,1.6375)--(4.87878,1.63761)--(4.87878,1.63772)--(4.87879,1.63783)--(4.8788,1.63794)--(4.8788,1.63805)--(4.87881,1.63816)--(4.87882,1.63827)--(4.87882,1.63839)--(4.87883,1.6385)--(4.87884,1.63861)--(4.87884,1.63872)--(4.87885,1.63883)--(4.87886,1.63894)--(4.87886,1.63905)--(4.87887,1.63916)--(4.87887,1.63927)--(4.87888,1.63939)--(4.87889,1.6395)--
> (4.87889,1.63961)--(4.8789,1.63972)--(4.87891,1.63983)--(4.87891,1.63994)--(4.87892,1.64005)--(4.87892,1.64016)--(4.87893,1.64027)--(4.87894,1.64039)--(4.87894,1.6405)--(4.87895,1.64061)--(4.87896,1.64072)--(4.87896,1.64083)--(4.87897,1.64094)--(4.87897,1.64105)--(4.87898,1.64116)--(4.87899,1.64127)--(4.87899,1.64139)--(4.879,1.6415)--(4.879,1.64161)--(4.87901,1.64172)--(4.87901,1.64183)--(4.87902,1.64194)--(4.87903,1.64205)--(4.87903,1.64216)--(4.87904,1.64227)--(4.87904,1.64238)--
> (4.87905,1.6425)--(4.87905,1.64261)--(4.87906,1.64272)--(4.87906,1.64283)--(4.87907,1.64294)--(4.87908,1.64305)--(4.87908,1.64316)--(4.87909,1.64327)--(4.87909,1.64338)--(4.8791,1.6435)--(4.8791,1.64361)--(4.87911,1.64372)--(4.87911,1.64383)--(4.87912,1.64394)--(4.87912,1.64405)--(4.87913,1.64416)--(4.87913,1.64427)--(4.87914,1.64439)--(4.87914,1.6445)--(4.87915,1.64461)--(4.87915,1.64472)--(4.87916,1.64483)--(4.87916,1.64494)--(4.87917,1.64505)--(4.87917,1.64516)--(4.87918,1.64527)--
> (4.87918,1.64539)--(4.87919,1.6455)--(4.87919,1.64561)--(4.8792,1.64572)--(4.8792,1.64583)--(4.87921,1.64594)--(4.87921,1.64605)--(4.87922,1.64616)--(4.87922,1.64627)--(4.87922,1.64639)--(4.87923,1.6465)--(4.87923,1.64661)--(4.87924,1.64672)--(4.87924,1.64683)--(4.87925,1.64694)--(4.87925,1.64705)--(4.87926,1.64716)--(4.87926,1.64728)--(4.87926,1.64739)--(4.87927,1.6475)--(4.87927,1.64761)--(4.87928,1.64772)--(4.87928,1.64783)--(4.87929,1.64794)--(4.87929,1.64805)--(4.87929,1.64817)--
> (4.8793,1.64828)--(4.8793,1.64839)--(4.87931,1.6485)--(4.87931,1.64861)--(4.87931,1.64872)--(4.87932,1.64883)--(4.87932,1.64894)--(4.87932,1.64906)--(4.87933,1.64917)--(4.87933,1.64928)--(4.87934,1.64939)--(4.87934,1.6495)--(4.87934,1.64961)--(4.87935,1.64972)--(4.87935,1.64983)--(4.87935,1.64995)--(4.87936,1.65006)--(4.87936,1.65017)--(4.87937,1.65028)--(4.87937,1.65039)--(4.87937,1.6505)--(4.87938,1.65061)--(4.87938,1.65072)--(4.87938,1.65084)--(4.87939,1.65095)--(4.87939,1.65106);
> draw(curve, rgb(0,0,255)+solid );
> path line = (7.56687,3.4893)--(-1.11955,-3.86232);
> draw(line, rgb(255,0,0)+solid );
> pair point = (-4.52343,-2.19002);
> dot(point, rgb(0,0,255));
> pair point = (-2.83742,-1.17567);
> dot(point, rgb(0,0,255));
> path line = (3.00492,4.06054)--(7.56687,-0.68094);
> draw(line, rgb(255,0,0)+solid );
> pair point = (-5.51036,-3.49222);
> dot(point, rgb(0,0,255));
> pair point = (7.49792,-0.558843);
> dot(point, rgb(0,0,255));
> pair point = (0.945808,2.8817);
> dot(point, rgb(0,0,255));
> pair point = (6.03124,1.09975);
> dot(point, rgb(0,0,255));
> path curve = (1.14782,-1.17567)--(1.14934,-1.17317)--(1.15085,-1.17066)--(1.15237,-1.16815)--(1.15388,-1.16564)--(1.15539,-1.16313)--(1.1569,-1.16061)--(1.1584,-1.1581)--(1.15991,-1.15558)--(1.16141,-1.15306)--(1.16291,-1.15053)--(1.16441,-1.14801)--(1.1659,-1.14549)--(1.1674,-1.14296)--(1.16889,-1.14043)--(1.17038,-1.1379)--(1.17186,-1.13536)--(1.17335,-1.13283)--(1.17483,-1.13029)--(1.17631,-1.12775)--(1.17779,-1.12521)--(1.17927,-1.12267)--(1.18074,-1.12012)--(1.18222,-1.11758)--
> (1.18369,-1.11503)--(1.18515,-1.11248)--(1.18662,-1.10993)--(1.18809,-1.10737)--(1.18955,-1.10482)--(1.19101,-1.10226)--(1.19246,-1.0997)--(1.19392,-1.09714)--(1.19537,-1.09457)--(1.19682,-1.09201)--(1.19827,-1.08944)--(1.19972,-1.08687)--(1.20116,-1.0843)--(1.20261,-1.08173)--(1.20405,-1.07916)--(1.20548,-1.07658)--(1.20692,-1.074)--(1.20835,-1.07142)--(1.20978,-1.06884)--(1.21121,-1.06626)--(1.21264,-1.06367)--(1.21407,-1.06109)--(1.21549,-1.0585)--(1.21691,-1.05591)--(1.21833,-1.05331)--
> (1.21974,-1.05072)--(1.22115,-1.04812)--(1.22257,-1.04553)--(1.22397,-1.04293)--(1.22538,-1.04033)--(1.22679,-1.03772)--(1.22819,-1.03512)--(1.22959,-1.03251)--(1.23098,-1.0299)--(1.23238,-1.02729)--(1.23377,-1.02468)--(1.23516,-1.02206)--(1.23655,-1.01945)--(1.23794,-1.01683)--(1.23932,-1.01421)--(1.2407,-1.01159)--(1.24208,-1.00897)--(1.24346,-1.00634)--(1.24483,-1.00372)--(1.2462,-1.00109)--(1.24757,-0.998458)--(1.24894,-0.995826)--(1.25031,-0.993193)--(1.25167,-0.990558)--(1.25303,-0.987921)--
> (1.25439,-0.985282)--(1.25574,-0.982641)--(1.25709,-0.979999)--(1.25845,-0.977355)--(1.25979,-0.974709)--(1.26114,-0.972062)--(1.26248,-0.969413)--(1.26382,-0.966762)--(1.26516,-0.964109)--(1.2665,-0.961455)--(1.26783,-0.958798)--(1.26916,-0.956141)--(1.27049,-0.953481)--(1.27182,-0.95082)--(1.27314,-0.948157)--(1.27447,-0.945492)--(1.27578,-0.942825)--(1.2771,-0.940157)--(1.27842,-0.937487)--(1.27973,-0.934816)--(1.28104,-0.932143)--(1.28234,-0.929468)--(1.28365,-0.926791)--(1.28495,-0.924113)--
> (1.28625,-0.921433)--(1.28755,-0.918751)--(1.28884,-0.916068)--(1.29013,-0.913383)--(1.29142,-0.910696)--(1.29271,-0.908007)--(1.29399,-0.905317)--(1.29528,-0.902626)--(1.29656,-0.899932)--(1.29783,-0.897237)--(1.29911,-0.89454)--(1.30038,-0.891842)--(1.30165,-0.889142)--(1.30291,-0.88644)--(1.30418,-0.883737)--(1.30544,-0.881032)--(1.3067,-0.878325)--(1.30796,-0.875617)--(1.30921,-0.872907)--(1.31046,-0.870195)--(1.31171,-0.867482)--(1.31296,-0.864767)--(1.3142,-0.862051)--(1.31544,-0.859333)--
> (1.31668,-0.856613)--(1.31791,-0.853892)--(1.31915,-0.851169)--(1.32038,-0.848444)--(1.32161,-0.845718)--(1.32283,-0.84299)--(1.32405,-0.840261)--(1.32527,-0.83753)--(1.32649,-0.834798)--(1.3277,-0.832063)--(1.32892,-0.829328)--(1.33013,-0.82659)--(1.33133,-0.823851)--(1.33254,-0.821111)--(1.33374,-0.818369)--(1.33494,-0.815625)--(1.33613,-0.81288)--(1.33733,-0.810133)--(1.33852,-0.807385)--(1.3397,-0.804635)--(1.34089,-0.801884)--(1.34207,-0.799131)--(1.34325,-0.796376)--(1.34443,-0.79362)--
> (1.3456,-0.790862)--(1.34678,-0.788103)--(1.34794,-0.785342)--(1.34911,-0.78258)--(1.35027,-0.779816)--(1.35144,-0.777051)--(1.35259,-0.774284)--(1.35375,-0.771516)--(1.3549,-0.768746)--(1.35605,-0.765974)--(1.3572,-0.763202)--(1.35834,-0.760427)--(1.35948,-0.757651)--(1.36062,-0.754874)--(1.36176,-0.752095)--(1.36289,-0.749314)--(1.36402,-0.746532)--(1.36515,-0.743749)--(1.36627,-0.740964)--(1.36739,-0.738178)--(1.36851,-0.73539)--(1.36963,-0.7326)--(1.37074,-0.72981)--(1.37185,-0.727017)--
> (1.37296,-0.724223)--(1.37407,-0.721428)--(1.37517,-0.718632)--(1.37627,-0.715833)--(1.37736,-0.713034)--(1.37846,-0.710233)--(1.37955,-0.70743)--(1.38064,-0.704626)--(1.38172,-0.701821)--(1.3828,-0.699014)--(1.38388,-0.696206)--(1.38496,-0.693396)--(1.38603,-0.690585)--(1.3871,-0.687773)--(1.38817,-0.684959)--(1.38923,-0.682144)--(1.3903,-0.679327)--(1.39135,-0.676509)--(1.39241,-0.673689)--(1.39346,-0.670868)--(1.39451,-0.668046)--(1.39556,-0.665222)--(1.3966,-0.662397)--(1.39765,-0.65957)--
> (1.39868,-0.656743)--(1.39972,-0.653913)--(1.40075,-0.651083)--(1.40178,-0.648251)--(1.40281,-0.645417)--(1.40383,-0.642583)--(1.40485,-0.639746)--(1.40587,-0.636909)--(1.40688,-0.63407)--(1.4079,-0.63123)--(1.4089,-0.628389)--(1.40991,-0.625546)--(1.41091,-0.622702)--(1.41191,-0.619856)--(1.41291,-0.617009)--(1.4139,-0.614161)--(1.41489,-0.611312)--(1.41588,-0.608461)--(1.41686,-0.605609)--(1.41785,-0.602755)--(1.41882,-0.599901)--(1.4198,-0.597045)--(1.42077,-0.594187)--(1.42174,-0.591329)--
> (1.42271,-0.588469)--(1.42367,-0.585608)--(1.42463,-0.582745)--(1.42559,-0.579881)--(1.42654,-0.577016)--(1.42749,-0.57415)--(1.42844,-0.571283)--(1.42938,-0.568414)--(1.43033,-0.565544)--(1.43126,-0.562672)--(1.4322,-0.5598)--(1.43313,-0.556926)--(1.43406,-0.554051)--(1.43499,-0.551175)--(1.43591,-0.548297)--(1.43683,-0.545418)--(1.43775,-0.542538)--(1.43866,-0.539657)--(1.43957,-0.536775)--(1.44048,-0.533891)--(1.44138,-0.531006)--(1.44228,-0.52812)--(1.44318,-0.525233)--(1.44408,-0.522345)--
> (1.44497,-0.519455)--(1.44585,-0.516564)--(1.44674,-0.513672)--(1.44762,-0.510779)--(1.4485,-0.507884)--(1.44938,-0.504989)--(1.45025,-0.502092)--(1.45112,-0.499194)--(1.45198,-0.496295)--(1.45285,-0.493395)--(1.45371,-0.490494)--(1.45456,-0.487591)--(1.45541,-0.484688)--(1.45626,-0.481783)--(1.45711,-0.478877)--(1.45795,-0.47597)--(1.45879,-0.473062)--(1.45963,-0.470152)--(1.46047,-0.467242)--(1.4613,-0.464331)--(1.46212,-0.461418)--(1.46295,-0.458504)--(1.46377,-0.455589)--(1.46458,-0.452674)--
> (1.4654,-0.449757)--(1.46621,-0.446838)--(1.46702,-0.443919)--(1.46782,-0.440999)--(1.46862,-0.438078)--(1.46942,-0.435155)--(1.47021,-0.432232)--(1.471,-0.429307)--(1.47179,-0.426382)--(1.47258,-0.423455)--(1.47336,-0.420527)--(1.47414,-0.417599)--(1.47491,-0.414669)--(1.47568,-0.411738)--(1.47645,-0.408806)--(1.47721,-0.405874)--(1.47797,-0.40294)--(1.47873,-0.400005)--(1.47949,-0.397069)--(1.48024,-0.394132)--(1.48099,-0.391194)--(1.48173,-0.388255)--(1.48247,-0.385315)--(1.48321,-0.382375)--
> (1.48394,-0.379433)--(1.48467,-0.37649)--(1.4854,-0.373546)--(1.48612,-0.370601)--(1.48684,-0.367656)--(1.48756,-0.364709)--(1.48828,-0.361761)--(1.48899,-0.358813)--(1.48969,-0.355863)--(1.4904,-0.352913)--(1.4911,-0.349961)--(1.49179,-0.347009)--(1.49249,-0.344056)--(1.49318,-0.341101)--(1.49386,-0.338146)--(1.49455,-0.33519)--(1.49523,-0.332233)--(1.4959,-0.329275)--(1.49657,-0.326317)--(1.49724,-0.323357)--(1.49791,-0.320397)--(1.49857,-0.317435)--(1.49923,-0.314473)--(1.49989,-0.31151)--
> (1.50054,-0.308546)--(1.50119,-0.305581)--(1.50183,-0.302615)--(1.50247,-0.299648)--(1.50311,-0.296681)--(1.50374,-0.293713)--(1.50437,-0.290743)--(1.505,-0.287773)--(1.50563,-0.284803)--(1.50625,-0.281831)--(1.50686,-0.278858)--(1.50748,-0.275885)--(1.50809,-0.272911)--(1.50869,-0.269936)--(1.5093,-0.26696)--(1.50989,-0.263984)--(1.51049,-0.261007)--(1.51108,-0.258029)--(1.51167,-0.25505)--(1.51226,-0.25207)--(1.51284,-0.24909)--(1.51341,-0.246108)--(1.51399,-0.243126)--(1.51456,-0.240144)--
> (1.51513,-0.23716)--(1.51569,-0.234176)--(1.51625,-0.231191)--(1.51681,-0.228205)--(1.51736,-0.225219)--(1.51791,-0.222232)--(1.51845,-0.219244)--(1.519,-0.216255)--(1.51953,-0.213266)--(1.52007,-0.210276)--(1.5206,-0.207285)--(1.52113,-0.204294)--(1.52165,-0.201302)--(1.52217,-0.198309)--(1.52269,-0.195316)--(1.5232,-0.192322)--(1.52371,-0.189327)--(1.52422,-0.186331)--(1.52472,-0.183335)--(1.52522,-0.180338)--(1.52571,-0.177341)--(1.5262,-0.174343)--(1.52669,-0.171344)--(1.52718,-0.168345)--
> (1.52766,-0.165345)--(1.52813,-0.162344)--(1.5286,-0.159343)--(1.52907,-0.156341)--(1.52954,-0.153339)--(1.53,-0.150336)--(1.53046,-0.147332)--(1.53091,-0.144328)--(1.53136,-0.141323)--(1.53181,-0.138317)--(1.53225,-0.135311)--(1.53269,-0.132305)--(1.53313,-0.129298)--(1.53356,-0.12629)--(1.53399,-0.123282)--(1.53442,-0.120273)--(1.53484,-0.117264)--(1.53525,-0.114254)--(1.53567,-0.111243)--(1.53608,-0.108232)--(1.53648,-0.105221)--(1.53689,-0.102209)--(1.53728,-0.0991965)--(1.53768,-0.0961834)--
> (1.53807,-0.0931699)--(1.53846,-0.0901559)--(1.53884,-0.0871414)--(1.53922,-0.0841264)--(1.5396,-0.081111)--(1.53997,-0.078095)--(1.54034,-0.0750786)--(1.5407,-0.0720618)--(1.54106,-0.0690444)--(1.54142,-0.0660267)--(1.54177,-0.0630084)--(1.54212,-0.0599897)--(1.54247,-0.0569706)--(1.54281,-0.0539511)--(1.54315,-0.0509311)--(1.54348,-0.0479107)--(1.54381,-0.0448899)--(1.54414,-0.0418687)--(1.54446,-0.0388471)--(1.54478,-0.0358251)--(1.5451,-0.0328027)--(1.54541,-0.0297799)--(1.54572,-0.0267567)--
> (1.54602,-0.0237332)--(1.54632,-0.0207093)--(1.54662,-0.017685)--(1.54691,-0.0146604)--(1.5472,-0.0116354)--(1.54748,-0.00861003)--(1.54776,-0.00558434)--(1.54804,-0.00255832)--(1.54831,0.000468027)--(1.54858,0.0034947)--(1.54885,0.0065217)--(1.54911,0.00954901)--(1.54937,0.0125766)--(1.54962,0.0156045)--(1.54987,0.0186328)--(1.55012,0.0216613)--(1.55036,0.0246901)--(1.5506,0.0277191)--(1.55083,0.0307485)--(1.55106,0.0337781)--(1.55129,0.036808)--(1.55151,0.0398381)--(1.55173,0.0428685)--
> (1.55194,0.0458991)--(1.55215,0.04893)--(1.55236,0.0519611)--(1.55256,0.0549925)--(1.55276,0.058024)--(1.55296,0.0610558)--(1.55315,0.0640878)--(1.55334,0.06712)--(1.55352,0.0701524)--(1.5537,0.0731849)--(1.55388,0.0762177)--(1.55405,0.0792507)--(1.55421,0.0822838)--(1.55438,0.0853171)--(1.55454,0.0883506)--(1.55469,0.0913842)--(1.55485,0.094418)--(1.55499,0.0974519)--(1.55514,0.100486)--(1.55528,0.10352)--(1.55541,0.106555)--(1.55555,0.109589)--(1.55567,0.112624)--(1.5558,0.115658)--
> (1.55592,0.118693)--(1.55603,0.121728)--(1.55615,0.124763)--(1.55626,0.127798)--(1.55636,0.130833)--(1.55646,0.133868)--(1.55656,0.136904)--(1.55665,0.139939)--(1.55674,0.142975)--(1.55682,0.14601)--(1.5569,0.149046)--(1.55698,0.152081)--(1.55705,0.155117)--(1.55712,0.158152)--(1.55718,0.161188)--(1.55724,0.164224)--(1.5573,0.167259)--(1.55735,0.170295)--(1.5574,0.173331)--(1.55744,0.176366)--(1.55748,0.179402)--(1.55752,0.182438)--(1.55755,0.185473)--(1.55758,0.188509)--(1.5576,0.191545)--
> (1.55762,0.19458)--(1.55764,0.197616)--(1.55765,0.200651)--(1.55766,0.203686)--(1.55766,0.206722)--(1.55766,0.209757)--(1.55766,0.212792)--(1.55765,0.215827)--(1.55764,0.218862)--(1.55762,0.221897)--(1.5576,0.224932)--(1.55758,0.227966)--(1.55755,0.231001)--(1.55751,0.234035)--(1.55748,0.23707)--(1.55744,0.240104)--(1.55739,0.243138)--(1.55734,0.246172)--(1.55729,0.249205)--(1.55723,0.252239)--(1.55717,0.255272)--(1.55711,0.258306)--(1.55704,0.261339)--(1.55696,0.264372)--(1.55688,0.267404)--
> (1.5568,0.270437)--(1.55672,0.273469)--(1.55663,0.276501)--(1.55653,0.279533)--(1.55643,0.282565)--(1.55633,0.285596)--(1.55623,0.288627)--(1.55611,0.291658)--(1.556,0.294689)--(1.55588,0.297719)--(1.55576,0.30075)--(1.55563,0.30378)--(1.5555,0.306809)--(1.55537,0.309839)--(1.55523,0.312868)--(1.55508,0.315897)--(1.55493,0.318925)--(1.55478,0.321953)--(1.55463,0.324981)--(1.55447,0.328009)--(1.5543,0.331036)--(1.55413,0.334063)--(1.55396,0.33709)--(1.55379,0.340116)--(1.5536,0.343142)--
> (1.55342,0.346168)--(1.55323,0.349193)--(1.55304,0.352218)--(1.55284,0.355242)--(1.55264,0.358267)--(1.55243,0.36129)--(1.55222,0.364314)--(1.55201,0.367337)--(1.55179,0.370359)--(1.55157,0.373382)--(1.55134,0.376403)--(1.55111,0.379425)--(1.55088,0.382446)--(1.55064,0.385466)--(1.55039,0.388486)--(1.55015,0.391506)--(1.5499,0.394525)--(1.54964,0.397544)--(1.54938,0.400562)--(1.54912,0.40358)--(1.54885,0.406597)--(1.54857,0.409614)--(1.5483,0.41263)--(1.54802,0.415646)--(1.54773,0.418662)--
> (1.54744,0.421677)--(1.54715,0.424691)--(1.54685,0.427705)--(1.54655,0.430718)--(1.54624,0.433731)--(1.54593,0.436743)--(1.54562,0.439755)--(1.5453,0.442766)--(1.54498,0.445776)--(1.54465,0.448786)--(1.54432,0.451796)--(1.54399,0.454805)--(1.54365,0.457813)--(1.5433,0.460821)--(1.54295,0.463828)--(1.5426,0.466834)--(1.54225,0.46984)--(1.54189,0.472846)--(1.54152,0.47585)--(1.54115,0.478854)--(1.54078,0.481858)--(1.5404,0.48486)--(1.54002,0.487863)--(1.53963,0.490864)--(1.53924,0.493865)--
> (1.53885,0.496865)--(1.53845,0.499865)--(1.53805,0.502863)--(1.53764,0.505861)--(1.53723,0.508859)--(1.53681,0.511856)--(1.53639,0.514852)--(1.53597,0.517847)--(1.53554,0.520842)--(1.53511,0.523835)--(1.53467,0.526829)--(1.53423,0.529821)--(1.53379,0.532813)--(1.53334,0.535804)--(1.53288,0.538794)--(1.53243,0.541783)--(1.53196,0.544772)--(1.5315,0.54776)--(1.53103,0.550747)--(1.53055,0.553733)--(1.53007,0.556719)--(1.52959,0.559703)--(1.5291,0.562687)--(1.52861,0.56567)--(1.52812,0.568653)--
> (1.52762,0.571634)--(1.52711,0.574615)--(1.5266,0.577594)--(1.52609,0.580573)--(1.52557,0.583551)--(1.52505,0.586529)--(1.52453,0.589505)--(1.524,0.592481)--(1.52346,0.595455)--(1.52292,0.598429)--(1.52238,0.601402)--(1.52183,0.604374)--(1.52128,0.607345)--(1.52073,0.610315)--(1.52017,0.613284)--(1.5196,0.616253)--(1.51904,0.61922)--(1.51846,0.622186)--(1.51789,0.625152)--(1.51731,0.628117)--(1.51672,0.63108)--(1.51613,0.634043)--(1.51554,0.637005)--(1.51494,0.639965)--(1.51434,0.642925)--
> (1.51373,0.645884)--(1.51312,0.648842)--(1.51251,0.651798)--(1.51189,0.654754)--(1.51126,0.657709)--(1.51063,0.660663)--(1.51,0.663615)--(1.50937,0.666567)--(1.50873,0.669518)--(1.50808,0.672467)--(1.50743,0.675416)--(1.50678,0.678363)--(1.50612,0.68131)--(1.50546,0.684255)--(1.50479,0.687199)--(1.50412,0.690143)--(1.50345,0.693085)--(1.50277,0.696026)--(1.50209,0.698966)--(1.5014,0.701905)--(1.50071,0.704842)--(1.50001,0.707779)--(1.49931,0.710715)--(1.49861,0.713649)--(1.4979,0.716582)--
> (1.49719,0.719514)--(1.49647,0.722445)--(1.49575,0.725375)--(1.49502,0.728303)--(1.49429,0.731231)--(1.49356,0.734157)--(1.49282,0.737082)--(1.49208,0.740006)--(1.49133,0.742929)--(1.49058,0.74585)--(1.48982,0.74877)--(1.48906,0.75169)--(1.4883,0.754607)--(1.48753,0.757524)--(1.48676,0.760439)--(1.48598,0.763353)--(1.4852,0.766266)--(1.48441,0.769178)--(1.48362,0.772088)--(1.48283,0.774997)--(1.48203,0.777905)--(1.48123,0.780812)--(1.48042,0.783717)--(1.47961,0.786621)--(1.4788,0.789524)--
> (1.47798,0.792425)--(1.47715,0.795325)--(1.47633,0.798224)--(1.47549,0.801121)--(1.47466,0.804018)--(1.47382,0.806912)--(1.47297,0.809806)--(1.47212,0.812698)--(1.47127,0.815588)--(1.47041,0.818478)--(1.46955,0.821366)--(1.46868,0.824252)--(1.46781,0.827138)--(1.46694,0.830022)--(1.46606,0.832904)--(1.46518,0.835785)--(1.46429,0.838665)--(1.4634,0.841543)--(1.4625,0.84442)--(1.4616,0.847295)--(1.4607,0.850169)--(1.45979,0.853042)--(1.45887,0.855913)--(1.45796,0.858782)--(1.45704,0.861651)--
> (1.45611,0.864517)--(1.45518,0.867383)--(1.45425,0.870246)--(1.45331,0.873109)--(1.45236,0.875969)--(1.45142,0.878829)--(1.45047,0.881687)--(1.44951,0.884543)--(1.44855,0.887398)--(1.44759,0.890251)--(1.44662,0.893103)--(1.44565,0.895953)--(1.44467,0.898802)--(1.44369,0.901649)--(1.44271,0.904494)--(1.44172,0.907338)--(1.44072,0.910181)--(1.43973,0.913022)--(1.43872,0.915861)--(1.43772,0.918699)--(1.43671,0.921535)--(1.43569,0.92437)--(1.43468,0.927203)--(1.43365,0.930034)--(1.43263,0.932864)--
> (1.43159,0.935692)--(1.43056,0.938518)--(1.42952,0.941343)--(1.42848,0.944167)--(1.42743,0.946988)--(1.42638,0.949808)--(1.42532,0.952626)--(1.42426,0.955443)--(1.42319,0.958258)--(1.42212,0.961071)--(1.42105,0.963883)--(1.41997,0.966693)--(1.41889,0.969501)--(1.41781,0.972308)--(1.41672,0.975113)--(1.41562,0.977916)--(1.41452,0.980717)--(1.41342,0.983517)--(1.41231,0.986315)--(1.4112,0.989111)--(1.41009,0.991905)--(1.40897,0.994698)--(1.40784,0.997489)--(1.40672,1.00028)--(1.40558,1.00307)--
> (1.40445,1.00585)--(1.40331,1.00864)--(1.40216,1.01142)--(1.40101,1.0142)--(1.39986,1.01698)--(1.3987,1.01975)--(1.39754,1.02253)--(1.39638,1.0253)--(1.39521,1.02807)--(1.39404,1.03084)--(1.39286,1.03361)--(1.39168,1.03638)--(1.39049,1.03914)--(1.3893,1.0419)--(1.3881,1.04466)--(1.38691,1.04742)--(1.3857,1.05018)--(1.3845,1.05293)--(1.38329,1.05568)--(1.38207,1.05844)--(1.38085,1.06118)--(1.37963,1.06393)--(1.3784,1.06668)--(1.37717,1.06942)--(1.37593,1.07216)--(1.37469,1.0749)--
> (1.37345,1.07764)--(1.3722,1.08037)--(1.37095,1.08311)--(1.36969,1.08584)--(1.36843,1.08857)--(1.36717,1.0913)--(1.3659,1.09402)--(1.36462,1.09675)--(1.36335,1.09947)--(1.36207,1.10219)--(1.36078,1.10491)--(1.35949,1.10762)--(1.3582,1.11034)--(1.3569,1.11305)--(1.3556,1.11576)--(1.35429,1.11847)--(1.35298,1.12117)--(1.35167,1.12388)--(1.35035,1.12658)--(1.34903,1.12928)--(1.3477,1.13197)--(1.34637,1.13467)--(1.34504,1.13736)--(1.3437,1.14006)--(1.34236,1.14275)--(1.34101,1.14543)--
> (1.33966,1.14812)--(1.33831,1.1508)--(1.33695,1.15348)--(1.33558,1.15616)--(1.33422,1.15884)--(1.33285,1.16151)--(1.33147,1.16419)--(1.33009,1.16686)--(1.32871,1.16953)--(1.32732,1.17219)--(1.32593,1.17486)--(1.32454,1.17752)--(1.32314,1.18018)--(1.32173,1.18284)--(1.32033,1.18549)--(1.31892,1.18814)--(1.3175,1.1908)--(1.31608,1.19345)--(1.31466,1.19609)--(1.31323,1.19874)--(1.3118,1.20138)--(1.31036,1.20402)--(1.30892,1.20666)--(1.30748,1.20929)--(1.30603,1.21193)--(1.30458,1.21456)--
> (1.30313,1.21719)--(1.30167,1.21982)--(1.3002,1.22244)--(1.29874,1.22506)--(1.29726,1.22768)--(1.29579,1.2303)--(1.29431,1.23292)--(1.29283,1.23553)--(1.29134,1.23814)--(1.28985,1.24075)--(1.28835,1.24336)--(1.28685,1.24596)--(1.28535,1.24856)--(1.28384,1.25116)--(1.28233,1.25376)--(1.28082,1.25636)--(1.2793,1.25895)--(1.27777,1.26154)--(1.27625,1.26413)--(1.27472,1.26671)--(1.27318,1.2693)--(1.27164,1.27188)--(1.2701,1.27446)--(1.26855,1.27703)--(1.267,1.27961)--(1.26545,1.28218)--
> (1.26389,1.28475)--(1.26233,1.28732)--(1.26076,1.28988)--(1.25919,1.29244)--(1.25762,1.295)--(1.25604,1.29756)--(1.25446,1.30012)--(1.25287,1.30267)--(1.25128,1.30522)--(1.24969,1.30777)--(1.24809,1.31031)--(1.24649,1.31286)--(1.24489,1.3154)--(1.24328,1.31794)--(1.24166,1.32047)--(1.24005,1.323)--(1.23843,1.32554)--(1.2368,1.32806)--(1.23517,1.33059)--(1.23354,1.33311)--(1.23191,1.33563)--(1.23027,1.33815)--(1.22862,1.34067)--(1.22697,1.34318)--(1.22532,1.34569)--(1.22367,1.3482)--
> (1.22201,1.35071)--(1.22035,1.35321)--(1.21868,1.35571)--(1.21701,1.35821)--(1.21533,1.36071)--(1.21366,1.3632)--(1.21197,1.36569)--(1.21029,1.36818)--(1.2086,1.37067)--(1.20691,1.37315)--(1.20521,1.37563)--(1.20351,1.37811)--(1.2018,1.38058)--(1.20009,1.38306)--(1.19838,1.38553)--(1.19667,1.388)--(1.19495,1.39046)--(1.19322,1.39292)--(1.1915,1.39538)--(1.18976,1.39784)--(1.18803,1.4003)--(1.18629,1.40275)--(1.18455,1.4052)--(1.1828,1.40765)--(1.18105,1.41009)--(1.1793,1.41253)--
> (1.17754,1.41497)--(1.17578,1.41741)--(1.17402,1.41984)--(1.17225,1.42227)--(1.17048,1.4247)--(1.1687,1.42713)--(1.16692,1.42955)--(1.16514,1.43197)--(1.16335,1.43439)--(1.16156,1.43681)--(1.15977,1.43922)--(1.15797,1.44163)--(1.15617,1.44404)--(1.15436,1.44644)--(1.15255,1.44884)--(1.15074,1.45124)--(1.14892,1.45364)--(1.1471,1.45603)--(1.14528,1.45842)--(1.14345,1.46081)--(1.14162,1.4632)--(1.13979,1.46558)--(1.13795,1.46796)--(1.13611,1.47034)--(1.13426,1.47271)--(1.13241,1.47508)--
> (1.13056,1.47745)--(1.1287,1.47982)--(1.12684,1.48218)--(1.12498,1.48454)--(1.12311,1.4869)--(1.12124,1.48926)--(1.11937,1.49161)--(1.11749,1.49396)--(1.11561,1.49631)--(1.11372,1.49865)--(1.11183,1.50099)--(1.10994,1.50333)--(1.10805,1.50567)--(1.10615,1.508)--(1.10424,1.51033)--(1.10234,1.51266)--(1.10043,1.51498)--(1.09851,1.5173)--(1.0966,1.51962)--(1.09467,1.52194)--(1.09275,1.52425)--(1.09082,1.52656)--(1.08889,1.52887)--(1.08696,1.53117)--(1.08502,1.53347)--(1.08308,1.53577)--
> (1.08113,1.53807)--(1.07918,1.54036)--(1.07723,1.54265)--(1.07527,1.54494)--(1.07332,1.54722)--(1.07135,1.54951)--(1.06939,1.55178)--(1.06742,1.55406)--(1.06544,1.55633)--(1.06347,1.5586)--(1.06149,1.56087)--(1.0595,1.56313)--(1.05752,1.56539)--(1.05553,1.56765)--(1.05353,1.56991)--(1.05154,1.57216)--(1.04953,1.57441)--(1.04753,1.57666)--(1.04552,1.5789)--(1.04351,1.58114)--(1.0415,1.58338)--(1.03948,1.58561)--(1.03746,1.58785)--(1.03543,1.59007)--(1.03341,1.5923)--(1.03137,1.59452)--
> (1.02934,1.59674)--(1.0273,1.59896)--(1.02526,1.60117)--(1.02322,1.60339)--(1.02117,1.60559)--(1.01912,1.6078)--(1.01706,1.61)--(1.015,1.6122)--(1.01294,1.6144)--(1.01088,1.61659)--(1.00881,1.61878)--(1.00674,1.62097)--(1.00466,1.62315)--(1.00258,1.62533)--(1.0005,1.62751)--(0.998418,1.62968)--(0.99633,1.63186)--(0.994239,1.63402)--(0.992144,1.63619)--(0.990046,1.63835)--(0.987945,1.64051)--(0.985841,1.64267)--(0.983733,1.64482)--(0.981622,1.64697)--(0.979508,1.64912)--(0.97739,1.65126)--
> (0.97527,1.65341)--(0.973146,1.65554)--(0.971019,1.65768)--(0.968888,1.65981)--(0.966755,1.66194)--(0.964618,1.66407)--(0.962478,1.66619)--(0.960334,1.66831)--(0.958188,1.67043)--(0.956038,1.67254)--(0.953885,1.67465)--(0.951729,1.67676)--(0.94957,1.67886)--(0.947408,1.68096)--(0.945242,1.68306)--(0.943074,1.68515)--(0.940902,1.68725)--(0.938727,1.68933)--(0.936548,1.69142)--(0.934367,1.6935)--(0.932183,1.69558)--(0.929995,1.69766)--(0.927804,1.69973)--(0.92561,1.7018)--(0.923413,1.70387)--
> (0.921213,1.70593)--(0.91901,1.70799)--(0.916804,1.71005)--(0.914594,1.7121)--(0.912382,1.71415)--(0.910166,1.7162)--(0.907948,1.71824)--(0.905726,1.72029)--(0.903501,1.72232)--(0.901274,1.72436)--(0.899043,1.72639)--(0.896809,1.72842)--(0.894572,1.73044)--(0.892332,1.73247)--(0.890089,1.73448)--(0.887843,1.7365)--(0.885594,1.73851)--(0.883341,1.74052)--(0.881086,1.74253)--(0.878828,1.74453)--(0.876567,1.74653)--(0.874303,1.74853)--(0.872036,1.75052)--(0.869766,1.75251)--(0.867493,1.7545)--
> (0.865217,1.75648)--(0.862938,1.75846)--(0.860656,1.76044)--(0.858371,1.76241)--(0.856083,1.76438)--(0.853792,1.76635)--(0.851498,1.76831)--(0.849202,1.77027)--(0.846902,1.77223)--(0.8446,1.77418)--(0.842294,1.77613)--(0.839986,1.77808)--(0.837675,1.78003)--(0.835361,1.78197)--(0.833044,1.78391)--(0.830724,1.78584)--(0.828401,1.78777)--(0.826075,1.7897)--(0.823747,1.79162)--(0.821415,1.79355)--(0.819081,1.79546)--(0.816744,1.79738)--(0.814404,1.79929)--(0.812061,1.8012)--(0.809716,1.8031)--
> (0.807367,1.80501)--(0.805016,1.8069)--(0.802662,1.8088)--(0.800305,1.81069)--(0.797946,1.81258)--(0.795583,1.81446)--(0.793218,1.81635)--(0.79085,1.81822)--(0.788479,1.8201)--(0.786106,1.82197)--(0.783729,1.82384)--(0.78135,1.8257)--(0.778968,1.82757)--(0.776584,1.82942)--(0.774196,1.83128)--(0.771806,1.83313)--(0.769413,1.83498)--(0.767018,1.83683)--(0.76462,1.83867)--(0.762219,1.84051)--(0.759815,1.84234)--(0.757409,1.84417)--(0.754999,1.846)--(0.752588,1.84783)--(0.750173,1.84965)--
> (0.747756,1.85147)--(0.745336,1.85328)--(0.742914,1.85509)--(0.740489,1.8569)--(0.738061,1.8587)--(0.735631,1.86051)--(0.733198,1.8623)--(0.730762,1.8641)--(0.728324,1.86589)--(0.725883,1.86768)--(0.723439,1.86946)--(0.720993,1.87124)--(0.718544,1.87302)--(0.716093,1.8748)--(0.713639,1.87657)--(0.711182,1.87833)--(0.708723,1.8801)--(0.706262,1.88186)--(0.703797,1.88362)--(0.701331,1.88537)--(0.698861,1.88712)--(0.696389,1.88887)--(0.693915,1.89061)--(0.691438,1.89235)--(0.688958,1.89409)--
> (0.686476,1.89582)--(0.683992,1.89755)--(0.681505,1.89928)--(0.679015,1.901)--(0.676523,1.90272)--(0.674028,1.90444)--(0.671531,1.90615)--(0.669032,1.90786)--(0.66653,1.90957)--(0.664025,1.91127)--(0.661518,1.91297)--(0.659009,1.91466)--(0.656497,1.91636)--(0.653983,1.91805)--(0.651466,1.91973)--(0.648947,1.92141)--(0.646425,1.92309)--(0.643902,1.92477)--(0.641375,1.92644)--(0.638846,1.92811)--(0.636315,1.92977)--(0.633782,1.93143)--(0.631246,1.93309)--(0.628707,1.93474)--(0.626166,1.9364)--
> (0.623623,1.93804)--(0.621078,1.93969)--(0.61853,1.94133)--(0.61598,1.94297)--(0.613427,1.9446)--(0.610873,1.94623)--(0.608315,1.94786)--(0.605756,1.94948)--(0.603194,1.9511)--(0.60063,1.95271)--(0.598064,1.95433)--(0.595495,1.95594)--(0.592924,1.95754)--(0.590351,1.95915)--(0.587775,1.96074)--(0.585197,1.96234)--(0.582617,1.96393)--(0.580035,1.96552)--(0.57745,1.9671)--(0.574863,1.96869)--(0.572274,1.97026)--(0.569683,1.97184)--(0.567089,1.97341)--(0.564493,1.97498)--(0.561895,1.97654)--
> (0.559295,1.9781)--(0.556693,1.97966)--(0.554088,1.98121)--(0.551481,1.98276)--(0.548872,1.98431)--(0.546261,1.98585)--(0.543648,1.98739)--(0.541032,1.98893)--(0.538415,1.99046)--(0.535795,1.99199)--(0.533173,1.99352)--(0.530549,1.99504)--(0.527923,1.99656)--(0.525294,1.99807)--(0.522664,1.99958)--(0.520031,2.00109)--(0.517397,2.0026)--(0.51476,2.0041)--(0.512121,2.00559)--(0.50948,2.00709)--(0.506837,2.00858)--(0.504192,2.01006)--(0.501545,2.01155)--(0.498896,2.01303)--(0.496244,2.0145)--
> (0.493591,2.01598)--(0.490936,2.01745)--(0.488278,2.01891)--(0.485619,2.02037)--(0.482957,2.02183)--(0.480294,2.02329)--(0.477628,2.02474)--(0.474961,2.02619)--(0.472291,2.02763)--(0.46962,2.02907)--(0.466947,2.03051)--(0.464271,2.03195)--(0.461594,2.03338)--(0.458914,2.0348)--(0.456233,2.03623)--(0.45355,2.03765)--(0.450865,2.03906)--(0.448177,2.04048)--(0.445488,2.04189)--(0.442797,2.04329)--(0.440104,2.04469)--(0.43741,2.04609)--(0.434713,2.04749)--(0.432014,2.04888)--(0.429314,2.05027)--
> (0.426611,2.05165)--(0.423907,2.05303)--(0.421201,2.05441)--(0.418493,2.05579)--(0.415783,2.05716)--(0.413071,2.05852)--(0.410357,2.05989)--(0.407642,2.06125)--(0.404925,2.0626)--(0.402206,2.06396)--(0.399485,2.0653)--(0.396762,2.06665)--(0.394037,2.06799)--(0.391311,2.06933)--(0.388583,2.07067)--(0.385853,2.072)--(0.383121,2.07333)--(0.380388,2.07465)--(0.377652,2.07597)--(0.374915,2.07729)--(0.372177,2.0786)--(0.369436,2.07991)--(0.366694,2.08122)--(0.36395,2.08252)--(0.361204,2.08382)--
> (0.358457,2.08512)--(0.355707,2.08641)--(0.352956,2.0877)--(0.350204,2.08899)--(0.34745,2.09027)--(0.344694,2.09155)--(0.341936,2.09282)--(0.339177,2.09409)--(0.336416,2.09536)--(0.333653,2.09662)--(0.330888,2.09788)--(0.328122,2.09914)--(0.325355,2.10039)--(0.322586,2.10164)--(0.319815,2.10289)--(0.317042,2.10413)--(0.314268,2.10537)--(0.311492,2.10661)--(0.308715,2.10784)--(0.305936,2.10907)--(0.303155,2.11029)--(0.300373,2.11152)--(0.297589,2.11273)--(0.294804,2.11395)--(0.292017,2.11516)--
> (0.289229,2.11637)--(0.286439,2.11757)--(0.283647,2.11877)--(0.280854,2.11997)--(0.278059,2.12116)--(0.275263,2.12235)--(0.272465,2.12354)--(0.269666,2.12472)--(0.266866,2.1259)--(0.264063,2.12707)--(0.26126,2.12825)--(0.258454,2.12941)--(0.255648,2.13058)--(0.25284,2.13174)--(0.25003,2.1329)--(0.247219,2.13405)--(0.244406,2.1352)--(0.241592,2.13635)--(0.238777,2.13749)--(0.23596,2.13863)--(0.233142,2.13977)--(0.230322,2.1409)--(0.227501,2.14203)--(0.224678,2.14316)--(0.221854,2.14428)--
> (0.219029,2.1454)--(0.216202,2.14652)--(0.213374,2.14763)--(0.210544,2.14873)--(0.207713,2.14984)--(0.204881,2.15094)--(0.202047,2.15204)--(0.199212,2.15313)--(0.196376,2.15422)--(0.193538,2.15531)--(0.190699,2.15639)--(0.187859,2.15747)--(0.185017,2.15855)--(0.182174,2.15962)--(0.17933,2.16069)--(0.176484,2.16176)--(0.173637,2.16282)--(0.170789,2.16388)--(0.167939,2.16493)--(0.165089,2.16598)--(0.162237,2.16703)--(0.159383,2.16808)--(0.156529,2.16912)--(0.153673,2.17016)--(0.150816,2.17119)--
> (0.147958,2.17222)--(0.145098,2.17325)--(0.142237,2.17427)--(0.139375,2.17529)--(0.136512,2.17631)--(0.133648,2.17732)--(0.130782,2.17833)--(0.127915,2.17933)--(0.125047,2.18034)--(0.122178,2.18134)--(0.119308,2.18233)--(0.116436,2.18332)--(0.113563,2.18431)--(0.11069,2.18529)--(0.107815,2.18628)--(0.104938,2.18725)--(0.102061,2.18823)--(0.0991828,2.1892)--(0.0963032,2.19017)--(0.0934226,2.19113)--(0.0905408,2.19209)--(0.0876579,2.19305)--(0.084774,2.194)--(0.0818889,2.19495)--
> (0.0790027,2.19589)--(0.0761155,2.19684)--(0.0732272,2.19778)--(0.0703378,2.19871)--(0.0674474,2.19964)--(0.0645559,2.20057)--(0.0616633,2.2015)--(0.0587697,2.20242)--(0.0558751,2.20334)--(0.0529794,2.20425)--(0.0500827,2.20516)--(0.047185,2.20607)--(0.0442863,2.20697)--(0.0413866,2.20787)--(0.0384859,2.20877)--(0.0355842,2.20966)--(0.0326815,2.21055)--(0.0297778,2.21144)--(0.0268731,2.21232)--(0.0239675,2.2132)--(0.0210609,2.21408)--(0.0181534,2.21495)--(0.0152449,2.21582)--(0.0123354,2.21669)--
> (0.00942506,2.21755)--(0.00651375,2.21841)--(0.00360152,2.21926)--(0.000688374,2.22011)--(-0.00222569,2.22096)--(-0.00514065,2.22181)--(-0.00805652,2.22265)--(-0.0109733,2.22349)--(-0.0138909,2.22432)--(-0.0168095,2.22515)--(-0.0197289,2.22598)--(-0.0226491,2.2268)--(-0.0255703,2.22762)--(-0.0284923,2.22844)--(-0.0314151,2.22925)--(-0.0343388,2.23006)--(-0.0372633,2.23087)--(-0.0401887,2.23167)--(-0.0431149,2.23247)--(-0.0460419,2.23327)--(-0.0489697,2.23406)--(-0.0518984,2.23485)--
> (-0.0548278,2.23564)--(-0.057758,2.23642)--(-0.060689,2.2372)--(-0.0636208,2.23798)--(-0.0665534,2.23875)--(-0.0694867,2.23952)--(-0.0724209,2.24028)--(-0.0753557,2.24104)--(-0.0782914,2.2418)--(-0.0812277,2.24256)--(-0.0841648,2.24331)--(-0.0871027,2.24406)--(-0.0900413,2.2448)--(-0.0929806,2.24554)--(-0.0959206,2.24628)--(-0.0988613,2.24702)--(-0.101803,2.24775)--(-0.104745,2.24847)--(-0.107688,2.2492)--(-0.110631,2.24992)--(-0.113575,2.25064)--(-0.11652,2.25135)--(-0.119466,2.25206)--
> (-0.122412,2.25277)--(-0.125359,2.25347)--(-0.128306,2.25417)--(-0.131254,2.25487)--(-0.134203,2.25556)--(-0.137153,2.25625)--(-0.140103,2.25694)--(-0.143053,2.25762)--(-0.146005,2.2583)--(-0.148957,2.25898)--(-0.151909,2.25965)--(-0.154862,2.26032)--(-0.157816,2.26099)--(-0.16077,2.26165)--(-0.163725,2.26231)--(-0.16668,2.26296)--(-0.169636,2.26362)--(-0.172593,2.26427)--(-0.17555,2.26491)--(-0.178508,2.26555)--(-0.181466,2.26619)--(-0.184425,2.26683)--(-0.187384,2.26746)--(-0.190344,2.26809)--
> (-0.193304,2.26872)--(-0.196265,2.26934)--(-0.199226,2.26996)--(-0.202188,2.27057)--(-0.20515,2.27118)--(-0.208113,2.27179)--(-0.211076,2.2724)--(-0.21404,2.273)--(-0.217004,2.2736)--(-0.219969,2.27419)--(-0.222934,2.27479)--(-0.2259,2.27537)--(-0.228866,2.27596)--(-0.231833,2.27654)--(-0.2348,2.27712)--(-0.237767,2.2777)--(-0.240735,2.27827)--(-0.243703,2.27884)--(-0.246672,2.2794)--(-0.249641,2.27996)--(-0.25261,2.28052)--(-0.25558,2.28108)--(-0.258551,2.28163)--(-0.261521,2.28218)--
> (-0.264492,2.28272)--(-0.267464,2.28327)--(-0.270436,2.2838)--(-0.273408,2.28434)--(-0.27638,2.28487)--(-0.279353,2.2854)--(-0.282326,2.28593)--(-0.2853,2.28645)--(-0.288274,2.28697)--(-0.291248,2.28748)--(-0.294223,2.28799)--(-0.297198,2.2885)--(-0.300173,2.28901)--(-0.303148,2.28951)--(-0.306124,2.29001)--(-0.3091,2.29051)--(-0.312077,2.291)--(-0.315053,2.29149)--(-0.31803,2.29197)--(-0.321007,2.29246)--(-0.323985,2.29293)--(-0.326963,2.29341)--(-0.329941,2.29388)--(-0.332919,2.29435)--
> (-0.335898,2.29482)--(-0.338876,2.29528)--(-0.341855,2.29574)--(-0.344835,2.2962)--(-0.347814,2.29665)--(-0.350794,2.2971)--(-0.353774,2.29755)--(-0.356754,2.29799)--(-0.359734,2.29843)--(-0.362715,2.29887)--(-0.365695,2.2993)--(-0.368676,2.29973)--(-0.371657,2.30016)--(-0.374638,2.30058)--(-0.37762,2.301)--(-0.380601,2.30142)--(-0.383583,2.30183)--(-0.386565,2.30225)--(-0.389547,2.30265)--(-0.392529,2.30306)--(-0.395511,2.30346)--(-0.398494,2.30386)--(-0.401476,2.30425)--(-0.404459,2.30464)--
> (-0.407442,2.30503)--(-0.410425,2.30542)--(-0.413408,2.3058)--(-0.416391,2.30618)--(-0.419374,2.30655)--(-0.422358,2.30693)--(-0.425341,2.30729)--(-0.428324,2.30766)--(-0.431308,2.30802)--(-0.434292,2.30838)--(-0.437275,2.30874)--(-0.440259,2.30909)--(-0.443243,2.30944)--(-0.446227,2.30979)--(-0.44921,2.31013)--(-0.452194,2.31047)--(-0.455178,2.31081)--(-0.458162,2.31115)--(-0.461146,2.31148)--(-0.46413,2.3118)--(-0.467114,2.31213)--(-0.470098,2.31245)--(-0.473082,2.31277)--(-0.476066,2.31308)--
> (-0.47905,2.3134)--(-0.482034,2.3137)--(-0.485018,2.31401)--(-0.488002,2.31431)--(-0.490986,2.31461)--(-0.49397,2.31491)--(-0.496954,2.3152)--(-0.499938,2.31549)--(-0.502921,2.31578)--(-0.505905,2.31606)--(-0.508889,2.31634)--(-0.511872,2.31662)--(-0.514856,2.3169)--(-0.517839,2.31717)--(-0.520822,2.31744)--(-0.523806,2.3177)--(-0.526789,2.31796)--(-0.529772,2.31822)--(-0.532755,2.31848)--(-0.535737,2.31873)--(-0.53872,2.31898)--(-0.541703,2.31923)--(-0.544685,2.31947)--(-0.547668,2.31971)--
> (-0.55065,2.31995)--(-0.553632,2.32018)--(-0.556614,2.32041)--(-0.559596,2.32064)--(-0.562577,2.32086)--(-0.565559,2.32109)--(-0.56854,2.3213)--(-0.571521,2.32152)--(-0.574502,2.32173)--(-0.577483,2.32194)--(-0.580463,2.32215)--(-0.583444,2.32235)--(-0.586424,2.32255)--(-0.589404,2.32275)--(-0.592384,2.32294)--(-0.595364,2.32314)--(-0.598343,2.32332)--(-0.601322,2.32351)--(-0.604301,2.32369)--(-0.60728,2.32387)--(-0.610259,2.32405)--(-0.613237,2.32422)--(-0.616215,2.32439)--(-0.619193,2.32456)--
> (-0.62217,2.32472)--(-0.625147,2.32488)--(-0.628125,2.32504)--(-0.631101,2.32519)--(-0.634078,2.32535)--(-0.637054,2.32549)--(-0.64003,2.32564)--(-0.643006,2.32578)--(-0.645981,2.32592)--(-0.648956,2.32606)--(-0.651931,2.32619)--(-0.654905,2.32633)--(-0.65788,2.32645)--(-0.660853,2.32658)--(-0.663827,2.3267)--(-0.6668,2.32682)--(-0.669773,2.32694)--(-0.672746,2.32705)--(-0.675718,2.32716)--(-0.67869,2.32727)--(-0.681661,2.32737)--(-0.684633,2.32747)--(-0.687603,2.32757)--(-0.690574,2.32766)--
> (-0.693544,2.32776)--(-0.696514,2.32785)--(-0.699483,2.32793)--(-0.702452,2.32802)--(-0.705421,2.3281)--(-0.708389,2.32817)--(-0.711357,2.32825)--(-0.714324,2.32832)--(-0.717291,2.32839)--(-0.720258,2.32846)--(-0.723224,2.32852)--(-0.72619,2.32858)--(-0.729156,2.32864)--(-0.732121,2.32869)--(-0.735085,2.32874)--(-0.738049,2.32879)--(-0.741013,2.32884)--(-0.743976,2.32888)--(-0.746939,2.32892)--(-0.749902,2.32896)--(-0.752863,2.32899)--(-0.755825,2.32902)--(-0.758786,2.32905)--(-0.761746,2.32907)--
> (-0.764707,2.3291)--(-0.767666,2.32912)--(-0.770625,2.32913)--(-0.773584,2.32915)--(-0.776542,2.32916)--(-0.7795,2.32917)--(-0.782457,2.32917)--(-0.785413,2.32917)--(-0.78837,2.32917)--(-0.791325,2.32917)--(-0.79428,2.32916)--(-0.797235,2.32916)--(-0.800189,2.32914)--(-0.803143,2.32913)--(-0.806096,2.32911)--(-0.809048,2.32909)--(-0.812,2.32907)--(-0.814951,2.32904)--(-0.817902,2.32901)--(-0.820853,2.32898)--(-0.823802,2.32895)--(-0.826752,2.32891)--(-0.8297,2.32887)--(-0.832648,2.32883)--
> (-0.835596,2.32878)--(-0.838543,2.32874)--(-0.841489,2.32868)--(-0.844435,2.32863)--(-0.84738,2.32857)--(-0.850324,2.32851)--(-0.853268,2.32845)--(-0.856212,2.32839)--(-0.859154,2.32832)--(-0.862097,2.32825)--(-0.865038,2.32818)--(-0.867979,2.3281)--(-0.870919,2.32802)--(-0.873859,2.32794)--(-0.876798,2.32785)--(-0.879736,2.32777)--(-0.882674,2.32768)--(-0.885611,2.32758)--(-0.888548,2.32749)--(-0.891483,2.32739)--(-0.894419,2.32729)--(-0.897353,2.32719)--(-0.900287,2.32708)--(-0.90322,2.32697)--
> (-0.906152,2.32686)--(-0.909084,2.32675)--(-0.912015,2.32663)--(-0.914946,2.32651)--(-0.917876,2.32639)--(-0.920805,2.32626)--(-0.923733,2.32613)--(-0.926661,2.326)--(-0.929588,2.32587)--(-0.932514,2.32573)--(-0.93544,2.32559)--(-0.938364,2.32545)--(-0.941289,2.32531)--(-0.944212,2.32516)--(-0.947135,2.32501)--(-0.950057,2.32486)--(-0.952978,2.3247)--(-0.955898,2.32455)--(-0.958818,2.32439)--(-0.961737,2.32422)--(-0.964655,2.32406)--(-0.967573,2.32389)--(-0.970489,2.32372)--(-0.973405,2.32355)--
> (-0.976321,2.32337)--(-0.979235,2.32319)--(-0.982149,2.32301)--(-0.985062,2.32283)--(-0.987974,2.32264)--(-0.990885,2.32245)--(-0.993796,2.32226)--(-0.996705,2.32206)--(-0.999614,2.32187)--(-1.00252,2.32167)--(-1.00543,2.32146)--(-1.00834,2.32126)--(-1.01124,2.32105)--(-1.01415,2.32084)--(-1.01705,2.32063)--(-1.01995,2.32041)--(-1.02286,2.3202)--(-1.02576,2.31998)--(-1.02866,2.31975)--(-1.03156,2.31953)--(-1.03446,2.3193)--(-1.03736,2.31907)--(-1.04025,2.31883)--(-1.04315,2.3186)--
> (-1.04605,2.31836)--(-1.04894,2.31812)--(-1.05184,2.31788)--(-1.05473,2.31763)--(-1.05762,2.31738)--(-1.06051,2.31713)--(-1.0634,2.31688)--(-1.06629,2.31662)--(-1.06918,2.31636)--(-1.07207,2.3161)--(-1.07496,2.31584)--(-1.07784,2.31557)--(-1.08073,2.3153)--(-1.08361,2.31503)--(-1.0865,2.31475)--(-1.08938,2.31448)--(-1.09226,2.3142)--(-1.09514,2.31392)--(-1.09802,2.31363)--(-1.1009,2.31335)--(-1.10378,2.31306)--(-1.10666,2.31277)--(-1.10953,2.31247)--(-1.11241,2.31218)--(-1.11528,2.31188)--
> (-1.11815,2.31158)--(-1.12103,2.31127)--(-1.1239,2.31097)--(-1.12677,2.31066)--(-1.12964,2.31035)--(-1.13251,2.31003)--(-1.13537,2.30972)--(-1.13824,2.3094)--(-1.14111,2.30908)--(-1.14397,2.30875)--(-1.14684,2.30843)--(-1.1497,2.3081)--(-1.15256,2.30777)--(-1.15542,2.30743)--(-1.15828,2.3071)--(-1.16114,2.30676)--(-1.164,2.30642)--(-1.16686,2.30608)--(-1.16971,2.30573)--(-1.17257,2.30538)--(-1.17542,2.30503)--(-1.17827,2.30468)--(-1.18112,2.30433)--(-1.18398,2.30397)--(-1.18683,2.30361)--
> (-1.18967,2.30325)--(-1.19252,2.30288)--(-1.19537,2.30251)--(-1.19821,2.30214)--(-1.20106,2.30177)--(-1.2039,2.3014)--(-1.20675,2.30102)--(-1.20959,2.30064)--(-1.21243,2.30026)--(-1.21527,2.29988)--(-1.21811,2.29949)--(-1.22094,2.2991)--(-1.22378,2.29871)--(-1.22662,2.29832)--(-1.22945,2.29793)--(-1.23228,2.29753)--(-1.23512,2.29713)--(-1.23795,2.29672)--(-1.24078,2.29632)--(-1.24361,2.29591)--(-1.24643,2.2955)--(-1.24926,2.29509)--(-1.25209,2.29468)--(-1.25491,2.29426)--(-1.25773,2.29384)--
> (-1.26056,2.29342)--(-1.26338,2.293)--(-1.2662,2.29257)--(-1.26902,2.29215)--(-1.27184,2.29172)--(-1.27465,2.29128)--(-1.27747,2.29085)--(-1.28028,2.29041)--(-1.2831,2.28997)--(-1.28591,2.28953)--(-1.28872,2.28909)--(-1.29153,2.28864)--(-1.29434,2.28819)--(-1.29715,2.28774)--(-1.29995,2.28729)--(-1.30276,2.28683)--(-1.30556,2.28638)--(-1.30837,2.28592)--(-1.31117,2.28546)--(-1.31397,2.28499)--(-1.31677,2.28453)--(-1.31957,2.28406)--(-1.32237,2.28359)--(-1.32516,2.28311)--(-1.32796,2.28264)--
> (-1.33075,2.28216)--(-1.33355,2.28168)--(-1.33634,2.2812)--(-1.33913,2.28072)--(-1.34192,2.28023)--(-1.34471,2.27974)--(-1.34749,2.27925)--(-1.35028,2.27876)--(-1.35307,2.27826)--(-1.35585,2.27776)--(-1.35863,2.27727)--(-1.36141,2.27676)--(-1.36419,2.27626)--(-1.36697,2.27575)--(-1.36975,2.27525)--(-1.37253,2.27474)--(-1.3753,2.27422)--(-1.37807,2.27371)--(-1.38085,2.27319)--(-1.38362,2.27267)--(-1.38639,2.27215)--(-1.38916,2.27163)--(-1.39193,2.2711)--(-1.39469,2.27058)--(-1.39746,2.27005)--
> (-1.40022,2.26951)--(-1.40299,2.26898)--(-1.40575,2.26844)--(-1.40851,2.26791)--(-1.41127,2.26737)--(-1.41403,2.26682)--(-1.41678,2.26628)--(-1.41954,2.26573)--(-1.42229,2.26518)--(-1.42505,2.26463)--(-1.4278,2.26408)--(-1.43055,2.26352)--(-1.4333,2.26297)--(-1.43605,2.26241)--(-1.43879,2.26185)--(-1.44154,2.26128)--(-1.44428,2.26072)--(-1.44703,2.26015)--(-1.44977,2.25958)--(-1.45251,2.25901)--(-1.45525,2.25844)--(-1.45799,2.25786)--(-1.46072,2.25728)--(-1.46346,2.2567)--(-1.46619,2.25612)--
> (-1.46892,2.25554)--(-1.47166,2.25495)--(-1.47439,2.25436)--(-1.47711,2.25377)--(-1.47984,2.25318)--(-1.48257,2.25259)--(-1.48529,2.25199)--(-1.48802,2.25139)--(-1.49074,2.25079)--(-1.49346,2.25019)--(-1.49618,2.24958)--(-1.4989,2.24898)--(-1.50162,2.24837)--(-1.50433,2.24776)--(-1.50705,2.24715)--(-1.50976,2.24653)--(-1.51247,2.24592)--(-1.51518,2.2453)--(-1.51789,2.24468)--(-1.5206,2.24406)--(-1.52331,2.24343)--(-1.52601,2.24281)--(-1.52872,2.24218)--(-1.53142,2.24155)--(-1.53412,2.24091)--
> (-1.53682,2.24028)--(-1.53952,2.23964)--(-1.54222,2.23901)--(-1.54491,2.23837)--(-1.54761,2.23772)--(-1.5503,2.23708)--(-1.55299,2.23644)--(-1.55568,2.23579)--(-1.55837,2.23514)--(-1.56106,2.23449)--(-1.56374,2.23383)--(-1.56643,2.23318)--(-1.56911,2.23252)--(-1.5718,2.23186)--(-1.57448,2.2312)--(-1.57716,2.23054)--(-1.57983,2.22987)--(-1.58251,2.2292)--(-1.58519,2.22854)--(-1.58786,2.22786)--(-1.59053,2.22719)--(-1.5932,2.22652)--(-1.59587,2.22584)--(-1.59854,2.22516)--(-1.60121,2.22448)--
> (-1.60388,2.2238)--(-1.60654,2.22312)--(-1.6092,2.22243)--(-1.61186,2.22174)--(-1.61452,2.22105)--(-1.61718,2.22036)--(-1.61984,2.21967)--(-1.6225,2.21897)--(-1.62515,2.21828)--(-1.6278,2.21758)--(-1.63046,2.21688)--(-1.63311,2.21618)--(-1.63575,2.21547)--(-1.6384,2.21476)--(-1.64105,2.21406)--(-1.64369,2.21335)--(-1.64634,2.21264)--(-1.64898,2.21192)--(-1.65162,2.21121)--(-1.65426,2.21049)--(-1.65689,2.20977)--(-1.65953,2.20905)--(-1.66217,2.20833)--(-1.6648,2.2076)--(-1.66743,2.20688)--
> (-1.67006,2.20615)--(-1.67269,2.20542)--(-1.67532,2.20469)--(-1.67794,2.20395)--(-1.68057,2.20322)--(-1.68319,2.20248)--(-1.68581,2.20174)--(-1.68843,2.201)--(-1.69105,2.20026)--(-1.69367,2.19952)--(-1.69628,2.19877)--(-1.6989,2.19802)--(-1.70151,2.19728)--(-1.70412,2.19652)--(-1.70673,2.19577)--(-1.70934,2.19502)--(-1.71195,2.19426)--(-1.71455,2.1935)--(-1.71716,2.19274)--(-1.71976,2.19198)--(-1.72236,2.19122)--(-1.72496,2.19045)--(-1.72756,2.18969)--(-1.73016,2.18892)--(-1.73275,2.18815)--
> (-1.73535,2.18738)--(-1.73794,2.1866)--(-1.74053,2.18583)--(-1.74312,2.18505)--(-1.74571,2.18427)--(-1.74829,2.18349)--(-1.75088,2.18271)--(-1.75346,2.18193)--(-1.75604,2.18114)--(-1.75863,2.18036)--(-1.7612,2.17957)--(-1.76378,2.17878)--(-1.76636,2.17799)--(-1.76893,2.17719)--(-1.77151,2.1764)--(-1.77408,2.1756)--(-1.77665,2.1748)--(-1.77922,2.174)--(-1.78178,2.1732)--(-1.78435,2.17239)--(-1.78691,2.17159)--(-1.78947,2.17078)--(-1.79204,2.16997)--(-1.7946,2.16916)--(-1.79715,2.16835)--
> (-1.79971,2.16754)--(-1.80226,2.16672)--(-1.80482,2.16591)--(-1.80737,2.16509)--(-1.80992,2.16427)--(-1.81247,2.16345)--(-1.81502,2.16262)--(-1.81756,2.1618)--(-1.82011,2.16097)--(-1.82265,2.16014)--(-1.82519,2.15932)--(-1.82773,2.15848)--(-1.83027,2.15765)--(-1.83281,2.15682)--(-1.83534,2.15598)--(-1.83787,2.15514)--(-1.84041,2.1543)--(-1.84294,2.15346)--(-1.84547,2.15262)--(-1.84799,2.15178)--(-1.85052,2.15093)--(-1.85304,2.15009)--(-1.85557,2.14924)--(-1.85809,2.14839)--(-1.86061,2.14753)--
> (-1.86313,2.14668)--(-1.86564,2.14583)--(-1.86816,2.14497)--(-1.87067,2.14411)--(-1.87318,2.14325)--(-1.87569,2.14239)--(-1.8782,2.14153)--(-1.88071,2.14067)--(-1.88322,2.1398)--(-1.88572,2.13893)--(-1.88822,2.13807)--(-1.89072,2.1372)--(-1.89322,2.13632)--(-1.89572,2.13545)--(-1.89822,2.13458)--(-1.90071,2.1337)--(-1.90321,2.13282)--(-1.9057,2.13194)--(-1.90819,2.13106)--(-1.91068,2.13018)--(-1.91316,2.1293)--(-1.91565,2.12841)--(-1.91813,2.12753)--(-1.92062,2.12664)--(-1.9231,2.12575)--
> (-1.92558,2.12486)--(-1.92805,2.12396)--(-1.93053,2.12307)--(-1.933,2.12218)--(-1.93548,2.12128)--(-1.93795,2.12038)--(-1.94042,2.11948)--(-1.94289,2.11858)--(-1.94535,2.11768)--(-1.94782,2.11677)--(-1.95028,2.11587)--(-1.95274,2.11496)--(-1.9552,2.11405)--(-1.95766,2.11314)--(-1.96012,2.11223)--(-1.96257,2.11132)--(-1.96503,2.1104)--(-1.96748,2.10949)--(-1.96993,2.10857)--(-1.97238,2.10765)--(-1.97483,2.10673)--(-1.97727,2.10581)--(-1.97972,2.10489)--(-1.98216,2.10396)--(-1.9846,2.10304)--
> (-1.98704,2.10211)--(-1.98948,2.10118)--(-1.99192,2.10025)--(-1.99435,2.09932)--(-1.99678,2.09839)--(-1.99922,2.09746)--(-2.00165,2.09652)--(-2.00407,2.09559)--(-2.0065,2.09465)--(-2.00893,2.09371)--(-2.01135,2.09277)--(-2.01377,2.09183)--(-2.01619,2.09088)--(-2.01861,2.08994)--(-2.02103,2.08899)--(-2.02344,2.08804)--(-2.02586,2.0871)--(-2.02827,2.08615)--(-2.03068,2.08519)--(-2.03309,2.08424)--(-2.0355,2.08329)--(-2.0379,2.08233)--(-2.04031,2.08138)--(-2.04271,2.08042)--(-2.04511,2.07946)--
> (-2.04751,2.0785)--(-2.04991,2.07754)--(-2.0523,2.07657)--(-2.0547,2.07561)--(-2.05709,2.07464)--(-2.05948,2.07367)--(-2.06187,2.0727)--(-2.06426,2.07174)--(-2.06664,2.07076)--(-2.06903,2.06979)--(-2.07141,2.06882)--(-2.07379,2.06784)--(-2.07617,2.06687)--(-2.07855,2.06589)--(-2.08093,2.06491)--(-2.0833,2.06393)--(-2.08568,2.06295)--(-2.08805,2.06196)--(-2.09042,2.06098)--(-2.09279,2.06)--(-2.09515,2.05901)--(-2.09752,2.05802)--(-2.09988,2.05703)--(-2.10224,2.05604)--(-2.1046,2.05505)--
> (-2.10696,2.05406)--(-2.10932,2.05306)--(-2.11168,2.05207)--(-2.11403,2.05107)--(-2.11638,2.05007)--(-2.11873,2.04907)--(-2.12108,2.04807)--(-2.12343,2.04707)--(-2.12577,2.04607)--(-2.12812,2.04507)--(-2.13046,2.04406)--(-2.1328,2.04305)--(-2.13514,2.04205)--(-2.13748,2.04104)--(-2.13981,2.04003)--(-2.14215,2.03902)--(-2.14448,2.038)--(-2.14681,2.03699)--(-2.14914,2.03597)--(-2.15147,2.03496)--(-2.15379,2.03394)--(-2.15611,2.03292)--(-2.15844,2.0319)--(-2.16076,2.03088)--(-2.16308,2.02986)--
> (-2.16539,2.02884)--(-2.16771,2.02781)--(-2.17003,2.02679)--(-2.17234,2.02576)--(-2.17465,2.02473)--(-2.17696,2.0237)--(-2.17927,2.02267)--(-2.18157,2.02164)--(-2.18388,2.02061)--(-2.18618,2.01958)--(-2.18848,2.01854)--(-2.19078,2.0175)--(-2.19308,2.01647)--(-2.19537,2.01543)--(-2.19767,2.01439)--(-2.19996,2.01335)--(-2.20225,2.01231)--(-2.20454,2.01126)--(-2.20683,2.01022)--(-2.20911,2.00918)--(-2.2114,2.00813)--(-2.21368,2.00708)--(-2.21596,2.00603)--(-2.21824,2.00498)--(-2.22052,2.00393)--
> (-2.2228,2.00288)--(-2.22507,2.00183)--(-2.22734,2.00078)--(-2.22961,1.99972)--(-2.23188,1.99866)--(-2.23415,1.99761)--(-2.23642,1.99655)--(-2.23868,1.99549)--(-2.24094,1.99443)--(-2.24321,1.99337)--(-2.24547,1.9923)--(-2.24772,1.99124)--(-2.24998,1.99018)--(-2.25223,1.98911)--(-2.25449,1.98804)--(-2.25674,1.98697)--(-2.25899,1.98591)--(-2.26124,1.98483)--(-2.26348,1.98376)--(-2.26573,1.98269)--(-2.26797,1.98162)--(-2.27021,1.98054)--(-2.27245,1.97947)--(-2.27469,1.97839)--(-2.27692,1.97731)--
> (-2.27916,1.97624)--(-2.28139,1.97516)--(-2.28362,1.97407)--(-2.28585,1.97299)--(-2.28808,1.97191)--(-2.29031,1.97083)--(-2.29253,1.96974)--(-2.29475,1.96866)--(-2.29697,1.96757)--(-2.29919,1.96648)--(-2.30141,1.96539)--(-2.30363,1.9643)--(-2.30584,1.96321)--(-2.30805,1.96212)--(-2.31027,1.96103)--(-2.31248,1.95993)--(-2.31468,1.95884)--(-2.31689,1.95774)--(-2.31909,1.95664)--(-2.3213,1.95555)--(-2.3235,1.95445)--(-2.3257,1.95335)--(-2.32789,1.95225)--(-2.33009,1.95114)--(-2.33228,1.95004)--
> (-2.33448,1.94894)--(-2.33667,1.94783)--(-2.33886,1.94673)--(-2.34105,1.94562)--(-2.34323,1.94451)--(-2.34542,1.9434)--(-2.3476,1.94229)--(-2.34978,1.94118)--(-2.35196,1.94007)--(-2.35414,1.93896)--(-2.35631,1.93785)--(-2.35849,1.93673)--(-2.36066,1.93562)--(-2.36283,1.9345)--(-2.365,1.93338)--(-2.36717,1.93226)--(-2.36933,1.93115)--(-2.3715,1.93003)--(-2.37366,1.9289)--(-2.37582,1.92778)--(-2.37798,1.92666)--(-2.38014,1.92554)--(-2.38229,1.92441)--(-2.38445,1.92329)--(-2.3866,1.92216)--
> (-2.38875,1.92103)--(-2.3909,1.9199)--(-2.39305,1.91877)--(-2.39519,1.91764)--(-2.39734,1.91651)--(-2.39948,1.91538)--(-2.40162,1.91425)--(-2.40376,1.91311)--(-2.4059,1.91198)--(-2.40803,1.91084)--(-2.41017,1.90971)--(-2.4123,1.90857)--(-2.41443,1.90743)--(-2.41656,1.90629)--(-2.41869,1.90515)--(-2.42081,1.90401)--(-2.42294,1.90287)--(-2.42506,1.90173)--(-2.42718,1.90058)--(-2.4293,1.89944)--(-2.43142,1.89829)--(-2.43353,1.89715)--(-2.43564,1.896)--(-2.43776,1.89485)--(-2.43987,1.8937)--
> (-2.44198,1.89255)--(-2.44408,1.8914)--(-2.44619,1.89025)--(-2.44829,1.8891)--(-2.4504,1.88795)--(-2.4525,1.88679)--(-2.45459,1.88564)--(-2.45669,1.88448)--(-2.45879,1.88333)--(-2.46088,1.88217)--(-2.46297,1.88101)--(-2.46506,1.87985)--(-2.46715,1.87869)--(-2.46924,1.87753)--(-2.47132,1.87637)--(-2.47341,1.87521)--(-2.47549,1.87405)--(-2.47757,1.87288)--(-2.47965,1.87172)--(-2.48173,1.87055)--(-2.4838,1.86939)--(-2.48588,1.86822)--(-2.48795,1.86705)--(-2.49002,1.86588)--(-2.49209,1.86472)--
> (-2.49415,1.86355)--(-2.49622,1.86237)--(-2.49828,1.8612)--(-2.50034,1.86003)--(-2.50241,1.85886)--(-2.50446,1.85768)--(-2.50652,1.85651)--(-2.50858,1.85533)--(-2.51063,1.85416)--(-2.51268,1.85298)--(-2.51473,1.8518)--(-2.51678,1.85062)--(-2.51883,1.84944)--(-2.52087,1.84826)--(-2.52292,1.84708)--(-2.52496,1.8459)--(-2.527,1.84472)--(-2.52904,1.84353)--(-2.53107,1.84235)--(-2.53311,1.84116)--(-2.53514,1.83998)--(-2.53717,1.83879)--(-2.5392,1.83761)--(-2.54123,1.83642)--(-2.54326,1.83523)--
> (-2.54528,1.83404)--(-2.54731,1.83285)--(-2.54933,1.83166)--(-2.55135,1.83047)--(-2.55337,1.82928)--(-2.55539,1.82808)--(-2.5574,1.82689)--(-2.55941,1.82569)--(-2.56143,1.8245)--(-2.56344,1.8233)--(-2.56544,1.82211)--(-2.56745,1.82091)--(-2.56946,1.81971)--(-2.57146,1.81851)--(-2.57346,1.81731)--(-2.57546,1.81611)--(-2.57746,1.81491)--(-2.57946,1.81371)--(-2.58145,1.81251)--(-2.58345,1.81131)--(-2.58544,1.8101)--(-2.58743,1.8089)--(-2.58942,1.80769)--(-2.5914,1.80649)--(-2.59339,1.80528)--
> (-2.59537,1.80408)--(-2.59735,1.80287)--(-2.59933,1.80166)--(-2.60131,1.80045)--(-2.60329,1.79924)--(-2.60526,1.79803)--(-2.60724,1.79682)--(-2.60921,1.79561)--(-2.61118,1.7944)--(-2.61315,1.79318)--(-2.61512,1.79197)--(-2.61708,1.79075)--(-2.61904,1.78954)--(-2.62101,1.78832)--(-2.62297,1.78711)--(-2.62492,1.78589)--(-2.62688,1.78467)--(-2.62884,1.78345)--(-2.63079,1.78224)--(-2.63274,1.78102)--(-2.63469,1.7798)--(-2.63664,1.77857)--(-2.63859,1.77735)--(-2.64053,1.77613)--(-2.64248,1.77491)--
> (-2.64442,1.77368)--(-2.64636,1.77246)--(-2.6483,1.77124)--(-2.65024,1.77001)--(-2.65217,1.76878)--(-2.6541,1.76756)--(-2.65604,1.76633)--(-2.65797,1.7651)--(-2.6599,1.76387)--(-2.66182,1.76265)--(-2.66375,1.76142)--(-2.66567,1.76019)--(-2.66759,1.75896)--(-2.66951,1.75772)--(-2.67143,1.75649)--(-2.67335,1.75526)--(-2.67527,1.75403)--(-2.67718,1.75279)--(-2.67909,1.75156)--(-2.681,1.75032)--(-2.68291,1.74909)--(-2.68482,1.74785)--(-2.68672,1.74661)--(-2.68863,1.74538)--(-2.69053,1.74414)--
> (-2.69243,1.7429)--(-2.69433,1.74166)--(-2.69623,1.74042)--(-2.69812,1.73918)--(-2.70002,1.73794)--(-2.70191,1.7367)--(-2.7038,1.73546)--(-2.70569,1.73422)--(-2.70758,1.73297)--(-2.70946,1.73173)--(-2.71135,1.73048)--(-2.71323,1.72924)--(-2.71511,1.72799)--(-2.71699,1.72675)--(-2.71887,1.7255)--(-2.72074,1.72426)--(-2.72262,1.72301)--(-2.72449,1.72176)--(-2.72636,1.72051)--(-2.72823,1.71926)--(-2.7301,1.71801)--(-2.73197,1.71676)--(-2.73383,1.71551)--(-2.73569,1.71426)--(-2.73755,1.71301)--
> (-2.73941,1.71176)--(-2.74127,1.7105)--(-2.74313,1.70925)--(-2.74498,1.708)--(-2.74684,1.70674)--(-2.74869,1.70549)--(-2.75054,1.70423)--(-2.75239,1.70297)--(-2.75423,1.70172)--(-2.75608,1.70046)--(-2.75792,1.6992)--(-2.75976,1.69795)--(-2.7616,1.69669)--(-2.76344,1.69543)--(-2.76528,1.69417)--(-2.76711,1.69291)--(-2.76895,1.69165)--(-2.77078,1.69039)--(-2.77261,1.68912)--(-2.77444,1.68786)--(-2.77626,1.6866)--(-2.77809,1.68534)--(-2.77991,1.68407)--(-2.78174,1.68281)--(-2.78356,1.68154)--
> (-2.78538,1.68028)--(-2.78719,1.67901)--(-2.78901,1.67775)--(-2.79082,1.67648)--(-2.79263,1.67521)--(-2.79445,1.67395)--(-2.79625,1.67268)--(-2.79806,1.67141)--(-2.79987,1.67014)--(-2.80167,1.66887)--(-2.80348,1.6676)--(-2.80528,1.66633)--(-2.80708,1.66506)--(-2.80887,1.66379)--(-2.81067,1.66252)--(-2.81246,1.66125)--(-2.81426,1.65997)--(-2.81605,1.6587)--(-2.81784,1.65743)--(-2.81963,1.65615)--(-2.82141,1.65488)--(-2.8232,1.65361)--(-2.82498,1.65233)--(-2.82676,1.65105)--(-2.82854,1.64978)--
> (-2.83032,1.6485)--(-2.8321,1.64722)--(-2.83387,1.64595)--(-2.83565,1.64467)--(-2.83742,1.64339)--(-2.83919,1.64211)--(-2.84096,1.64083)--(-2.84273,1.63955)--(-2.84449,1.63827)--(-2.84626,1.63699)--(-2.84802,1.63571)--(-2.84978,1.63443)--(-2.85154,1.63315)--(-2.8533,1.63187)--(-2.85505,1.63058)--(-2.85681,1.6293)--(-2.85856,1.62802)--(-2.86031,1.62673)--(-2.86206,1.62545)--(-2.86381,1.62417)--(-2.86556,1.62288)--(-2.8673,1.6216)--(-2.86904,1.62031)--(-2.87078,1.61902)--(-2.87252,1.61774)--
> (-2.87426,1.61645)--(-2.876,1.61516)--(-2.87774,1.61387)--(-2.87947,1.61259)--(-2.8812,1.6113)--(-2.88293,1.61001)--(-2.88466,1.60872)--(-2.88639,1.60743)--(-2.88811,1.60614)--(-2.88984,1.60485)--(-2.89156,1.60356)--(-2.89328,1.60227)--(-2.895,1.60098)--(-2.89672,1.59968)--(-2.89843,1.59839)--(-2.90015,1.5971)--(-2.90186,1.59581)--(-2.90357,1.59451)--(-2.90528,1.59322)--(-2.90699,1.59192)--(-2.9087,1.59063)--(-2.9104,1.58933)--(-2.91211,1.58804)--(-2.91381,1.58674)--(-2.91551,1.58545)--
> (-2.91721,1.58415)--(-2.91891,1.58285)--(-2.9206,1.58156)--(-2.9223,1.58026)--(-2.92399,1.57896)--(-2.92568,1.57766)--(-2.92737,1.57637)--(-2.92906,1.57507)--(-2.93074,1.57377)--(-2.93243,1.57247)--(-2.93411,1.57117)--(-2.93579,1.56987)--(-2.93747,1.56857)--(-2.93915,1.56727)--(-2.94083,1.56597)--(-2.9425,1.56466)--(-2.94418,1.56336)--(-2.94585,1.56206)--(-2.94752,1.56076)--(-2.94919,1.55946)--(-2.95085,1.55815)--(-2.95252,1.55685)--(-2.95418,1.55554)--(-2.95585,1.55424)--(-2.95751,1.55294)--
> (-2.95917,1.55163)--(-2.96083,1.55033)--(-2.96248,1.54902)--(-2.96414,1.54772)--(-2.96579,1.54641)--(-2.96744,1.5451)--(-2.96909,1.5438)--(-2.97074,1.54249)--(-2.97239,1.54118)--(-2.97403,1.53987)--(-2.97568,1.53857)--(-2.97732,1.53726)--(-2.97896,1.53595)--(-2.9806,1.53464)--(-2.98224,1.53333)--(-2.98387,1.53202)--(-2.98551,1.53071)--(-2.98714,1.5294)--(-2.98877,1.52809)--(-2.9904,1.52678)--(-2.99203,1.52547)--(-2.99366,1.52416)--(-2.99528,1.52285)--(-2.99691,1.52154)--(-2.99853,1.52023)--
> (-3.00015,1.51891)--(-3.00177,1.5176)--(-3.00339,1.51629)--(-3.005,1.51498)--(-3.00662,1.51366)--(-3.00823,1.51235)--(-3.00984,1.51104)--(-3.01145,1.50972)--(-3.01306,1.50841)--(-3.01467,1.50709)--(-3.01627,1.50578)--(-3.01788,1.50446)--(-3.01948,1.50315)--(-3.02108,1.50183)--(-3.02268,1.50052)--(-3.02428,1.4992)--(-3.02587,1.49788)--(-3.02747,1.49657)--(-3.02906,1.49525)--(-3.03065,1.49393)--(-3.03224,1.49262)--(-3.03383,1.4913)--(-3.03542,1.48998)--(-3.037,1.48866)--(-3.03859,1.48734)--
> (-3.04017,1.48602)--(-3.04175,1.48471)--(-3.04333,1.48339)--(-3.04491,1.48207)--(-3.04648,1.48075)--(-3.04806,1.47943)--(-3.04963,1.47811)--(-3.0512,1.47679)--(-3.05277,1.47547)--(-3.05434,1.47415)--(-3.05591,1.47283)--(-3.05748,1.4715)--(-3.05904,1.47018)--(-3.0606,1.46886)--(-3.06216,1.46754)--(-3.06372,1.46622)--(-3.06528,1.46489)--(-3.06684,1.46357)--(-3.06839,1.46225)--(-3.06995,1.46093)--(-3.0715,1.4596)--(-3.07305,1.45828)--(-3.0746,1.45696)--(-3.07615,1.45563)--(-3.07769,1.45431)--
> (-3.07924,1.45298)--(-3.08078,1.45166)--(-3.08232,1.45033)--(-3.08386,1.44901)--(-3.0854,1.44768)--(-3.08694,1.44636)--(-3.08847,1.44503)--(-3.09001,1.44371)--(-3.09154,1.44238)--(-3.09307,1.44106)--(-3.0946,1.43973)--(-3.09613,1.4384)--(-3.09765,1.43708)--(-3.09918,1.43575)--(-3.1007,1.43442)--(-3.10222,1.4331)--(-3.10375,1.43177)--(-3.10526,1.43044)--(-3.10678,1.42911)--(-3.1083,1.42778)--(-3.10981,1.42646)--(-3.11133,1.42513)--(-3.11284,1.4238)--(-3.11435,1.42247)--(-3.11586,1.42114)--
> (-3.11736,1.41981)--(-3.11887,1.41848)--(-3.12037,1.41715)--(-3.12188,1.41582)--(-3.12338,1.41449)--(-3.12488,1.41316)--(-3.12637,1.41183)--(-3.12787,1.4105)--(-3.12937,1.40917)--(-3.13086,1.40784)--(-3.13235,1.40651)--(-3.13384,1.40518)--(-3.13533,1.40385)--(-3.13682,1.40252)--(-3.13831,1.40119)--(-3.13979,1.39986)--(-3.14128,1.39852)--(-3.14276,1.39719)--(-3.14424,1.39586)--(-3.14572,1.39453)--(-3.1472,1.3932)--(-3.14867,1.39186)--(-3.15015,1.39053)--(-3.15162,1.3892)--(-3.15309,1.38787)--
> (-3.15456,1.38653)--(-3.15603,1.3852)--(-3.1575,1.38387)--(-3.15896,1.38253)--(-3.16043,1.3812)--(-3.16189,1.37987)--(-3.16335,1.37853)--(-3.16481,1.3772)--(-3.16627,1.37586)--(-3.16773,1.37453)--(-3.16918,1.37319)--(-3.17064,1.37186)--(-3.17209,1.37052)--(-3.17354,1.36919)--(-3.17499,1.36786)--(-3.17644,1.36652)--(-3.17789,1.36518)--(-3.17933,1.36385)--(-3.18078,1.36251)--(-3.18222,1.36118)--(-3.18366,1.35984)--(-3.1851,1.35851)--(-3.18654,1.35717)--(-3.18797,1.35583)--(-3.18941,1.3545)--
> (-3.19084,1.35316)--(-3.19228,1.35183)--(-3.19371,1.35049)--(-3.19514,1.34915)--(-3.19657,1.34782)--(-3.19799,1.34648)--(-3.19942,1.34514)--(-3.20084,1.3438)--(-3.20226,1.34247)--(-3.20368,1.34113)--(-3.2051,1.33979)--(-3.20652,1.33846)--(-3.20794,1.33712)--(-3.20935,1.33578)--(-3.21077,1.33444)--(-3.21218,1.3331)--(-3.21359,1.33177)--(-3.215,1.33043)--(-3.21641,1.32909)--(-3.21781,1.32775)--(-3.21922,1.32641)--(-3.22062,1.32508)--(-3.22203,1.32374)--(-3.22343,1.3224)--(-3.22483,1.32106)--
> (-3.22622,1.31972)--(-3.22762,1.31838)--(-3.22902,1.31704)--(-3.23041,1.3157)--(-3.2318,1.31436)--(-3.23319,1.31302)--(-3.23458,1.31169)--(-3.23597,1.31035)--(-3.23736,1.30901)--(-3.23874,1.30767)--(-3.24013,1.30633)--(-3.24151,1.30499)--(-3.24289,1.30365)--(-3.24427,1.30231)--(-3.24565,1.30097)--(-3.24703,1.29963)--(-3.2484,1.29829)--(-3.24977,1.29695)--(-3.25115,1.29561)--(-3.25252,1.29427)--(-3.25389,1.29293)--(-3.25526,1.29159)--(-3.25662,1.29025)--(-3.25799,1.28891)--(-3.25935,1.28756)--
> (-3.26072,1.28622)--(-3.26208,1.28488)--(-3.26344,1.28354)--(-3.2648,1.2822)--(-3.26615,1.28086)--(-3.26751,1.27952)--(-3.26886,1.27818)--(-3.27022,1.27684)--(-3.27157,1.2755)--(-3.27292,1.27416)--(-3.27427,1.27281)--(-3.27561,1.27147)--(-3.27696,1.27013)--(-3.2783,1.26879)--(-3.27965,1.26745)--(-3.28099,1.26611)--(-3.28233,1.26477)--(-3.28367,1.26342)--(-3.28501,1.26208)--(-3.28634,1.26074)--(-3.28768,1.2594)--(-3.28901,1.25806)--(-3.29034,1.25672)--(-3.29167,1.25537)--(-3.293,1.25403)--
> (-3.29433,1.25269)--(-3.29566,1.25135)--(-3.29698,1.25001)--(-3.29831,1.24866)--(-3.29963,1.24732)--(-3.30095,1.24598)--(-3.30227,1.24464)--(-3.30359,1.2433)--(-3.30491,1.24195)--(-3.30622,1.24061)--(-3.30754,1.23927)--(-3.30885,1.23793)--(-3.31016,1.23658)--(-3.31147,1.23524)--(-3.31278,1.2339)--(-3.31409,1.23256)--(-3.31539,1.23122)--(-3.3167,1.22987)--(-3.318,1.22853)--(-3.3193,1.22719)--(-3.3206,1.22585)--(-3.3219,1.2245)--(-3.3232,1.22316)--(-3.3245,1.22182)--(-3.32579,1.22048)--
> (-3.32709,1.21913)--(-3.32838,1.21779)--(-3.32967,1.21645)--(-3.33096,1.21511)--(-3.33225,1.21376)--(-3.33353,1.21242)--(-3.33482,1.21108)--(-3.3361,1.20974)--(-3.33739,1.20839)--(-3.33867,1.20705)--(-3.33995,1.20571)--(-3.34123,1.20437)--(-3.34251,1.20302)--(-3.34378,1.20168)--(-3.34506,1.20034)--(-3.34633,1.199)--(-3.3476,1.19765)--(-3.34887,1.19631)--(-3.35014,1.19497)--(-3.35141,1.19363)--(-3.35268,1.19228)--(-3.35394,1.19094)--(-3.35521,1.1896)--(-3.35647,1.18826)--(-3.35773,1.18691)--
> (-3.35899,1.18557)--(-3.36025,1.18423)--(-3.36151,1.18289)--(-3.36276,1.18154)--(-3.36402,1.1802)--(-3.36527,1.17886)--(-3.36653,1.17752)--(-3.36778,1.17617)--(-3.36903,1.17483)--(-3.37027,1.17349)--(-3.37152,1.17215)--(-3.37277,1.1708)--(-3.37401,1.16946)--(-3.37525,1.16812)--(-3.37649,1.16678)--(-3.37773,1.16543)--(-3.37897,1.16409)--(-3.38021,1.16275)--(-3.38145,1.16141)--(-3.38268,1.16007)--(-3.38392,1.15872)--(-3.38515,1.15738)--(-3.38638,1.15604)--(-3.38761,1.1547)--(-3.38884,1.15336)--
> (-3.39006,1.15201)--(-3.39129,1.15067)--(-3.39251,1.14933)--(-3.39374,1.14799)--(-3.39496,1.14665)--(-3.39618,1.1453)--(-3.3974,1.14396)--(-3.39862,1.14262)--(-3.39983,1.14128)--(-3.40105,1.13994)--(-3.40226,1.1386)--(-3.40347,1.13725)--(-3.40469,1.13591)--(-3.4059,1.13457)--(-3.4071,1.13323)--(-3.40831,1.13189)--(-3.40952,1.13055)--(-3.41072,1.12921)--(-3.41193,1.12787)--(-3.41313,1.12652)--(-3.41433,1.12518)--(-3.41553,1.12384)--(-3.41673,1.1225)--(-3.41792,1.12116)--(-3.41912,1.11982)--
> (-3.42032,1.11848)--(-3.42151,1.11714)--(-3.4227,1.1158)--(-3.42389,1.11446)--(-3.42508,1.11311)--(-3.42627,1.11177)--(-3.42745,1.11043)--(-3.42864,1.10909)--(-3.42982,1.10775)--(-3.43101,1.10641)--(-3.43219,1.10507)--(-3.43337,1.10373)--(-3.43455,1.10239)--(-3.43573,1.10105)--(-3.4369,1.09971)--(-3.43808,1.09837)--(-3.43925,1.09703)--(-3.44042,1.09569)--(-3.4416,1.09435)--(-3.44277,1.09301)--(-3.44393,1.09167)--(-3.4451,1.09033)--(-3.44627,1.08899)--(-3.44743,1.08765)--(-3.4486,1.08631)--
> (-3.44976,1.08497)--(-3.45092,1.08363)--(-3.45208,1.0823)--(-3.45324,1.08096)--(-3.4544,1.07962)--(-3.45555,1.07828)--(-3.45671,1.07694)--(-3.45786,1.0756)--(-3.45901,1.07426)--(-3.46016,1.07292)--(-3.46131,1.07158)--(-3.46246,1.07025)--(-3.46361,1.06891)--(-3.46476,1.06757)--(-3.4659,1.06623)--(-3.46705,1.06489)--(-3.46819,1.06355)--(-3.46933,1.06222)--(-3.47047,1.06088)--(-3.47161,1.05954)--(-3.47274,1.0582)--(-3.47388,1.05687)--(-3.47501,1.05553)--(-3.47615,1.05419)--(-3.47728,1.05285)--
> (-3.47841,1.05152)--(-3.47954,1.05018)--(-3.48067,1.04884)--(-3.4818,1.0475)--(-3.48292,1.04617)--(-3.48405,1.04483)--(-3.48517,1.04349)--(-3.48629,1.04216)--(-3.48742,1.04082)--(-3.48853,1.03948)--(-3.48965,1.03815)--(-3.49077,1.03681)--(-3.49189,1.03547)--(-3.493,1.03414)--(-3.49412,1.0328)--(-3.49523,1.03147)--(-3.49634,1.03013)--(-3.49745,1.02879)--(-3.49856,1.02746)--(-3.49967,1.02612)--(-3.50077,1.02479)--(-3.50188,1.02345)--(-3.50298,1.02212)--(-3.50408,1.02078)--(-3.50518,1.01945)--
> (-3.50628,1.01811)--(-3.50738,1.01678)--(-3.50848,1.01544)--(-3.50958,1.01411)--(-3.51067,1.01277)--(-3.51177,1.01144)--(-3.51286,1.0101)--(-3.51395,1.00877)--(-3.51504,1.00744)--(-3.51613,1.0061)--(-3.51722,1.00477)--(-3.51831,1.00343)--(-3.51939,1.0021)--(-3.52048,1.00077)--(-3.52156,0.999434)--(-3.52264,0.998101)--(-3.52372,0.996768)--(-3.5248,0.995435)--(-3.52588,0.994102)--(-3.52696,0.992769)--(-3.52803,0.991437)--(-3.52911,0.990104)--(-3.53018,0.988772)--(-3.53125,0.987439)--
> (-3.53232,0.986107)--(-3.53339,0.984775)--(-3.53446,0.983443)--(-3.53553,0.982111)--(-3.5366,0.980779)--(-3.53766,0.979448)--(-3.53872,0.978116)--(-3.53979,0.976785)--(-3.54085,0.975454)--(-3.54191,0.974123)--(-3.54297,0.972792)--(-3.54403,0.971461)--(-3.54508,0.97013)--(-3.54614,0.9688)--(-3.54719,0.967469)--(-3.54824,0.966139)--(-3.5493,0.964809)--(-3.55035,0.963479)--(-3.5514,0.962149)--(-3.55245,0.960819)--(-3.55349,0.959489)--(-3.55454,0.95816)--(-3.55558,0.95683)--(-3.55663,0.955501)--
> (-3.55767,0.954172)--(-3.55871,0.952843)--(-3.55975,0.951514)--(-3.56079,0.950185)--(-3.56183,0.948857)--(-3.56286,0.947528)--(-3.5639,0.9462)--(-3.56493,0.944872)--(-3.56597,0.943544)--(-3.567,0.942216)--(-3.56803,0.940888)--(-3.56906,0.939561)--(-3.57009,0.938233)--(-3.57111,0.936906)--(-3.57214,0.935579)--(-3.57316,0.934252)--(-3.57419,0.932925)--(-3.57521,0.931598)--(-3.57623,0.930271)--(-3.57725,0.928945)--(-3.57827,0.927619)--(-3.57929,0.926292)--(-3.5803,0.924966)--(-3.58132,0.92364)--
> (-3.58233,0.922315)--(-3.58335,0.920989)--(-3.58436,0.919664)--(-3.58537,0.918338)--(-3.58638,0.917013)--(-3.58739,0.915688)--(-3.5884,0.914364)--(-3.5894,0.913039)--(-3.59041,0.911714)--(-3.59141,0.91039)--(-3.59241,0.909066)--(-3.59341,0.907742)--(-3.59442,0.906418)--(-3.59541,0.905094)--(-3.59641,0.903771)--(-3.59741,0.902447)--(-3.59841,0.901124)--(-3.5994,0.899801)--(-3.60039,0.898478)--(-3.60139,0.897155)--(-3.60238,0.895832)--(-3.60337,0.89451)--(-3.60436,0.893188)--(-3.60534,0.891865)--
> (-3.60633,0.890543)--(-3.60732,0.889222)--(-3.6083,0.8879)--(-3.60928,0.886578)--(-3.61027,0.885257)--(-3.61125,0.883936)--(-3.61223,0.882615)--(-3.61321,0.881294)--(-3.61418,0.879973)--(-3.61516,0.878653)--(-3.61613,0.877332)--(-3.61711,0.876012)--(-3.61808,0.874692)--(-3.61905,0.873372)--(-3.62002,0.872053)--(-3.62099,0.870733)--(-3.62196,0.869414)--(-3.62293,0.868095)--(-3.6239,0.866776)--(-3.62486,0.865457)--(-3.62583,0.864138)--(-3.62679,0.86282)--(-3.62775,0.861501)--(-3.62871,0.860183)--
> (-3.62967,0.858865)--(-3.63063,0.857547)--(-3.63159,0.85623)--(-3.63254,0.854912)--(-3.6335,0.853595)--(-3.63445,0.852278)--(-3.6354,0.850961)--(-3.63636,0.849644)--(-3.63731,0.848327)--(-3.63826,0.847011)--(-3.6392,0.845695)--(-3.64015,0.844379)--(-3.6411,0.843063)--(-3.64204,0.841747)--(-3.64299,0.840432)--(-3.64393,0.839116)--(-3.64487,0.837801)--(-3.64581,0.836486)--(-3.64675,0.835171)--(-3.64769,0.833857)--(-3.64863,0.832542)--(-3.64956,0.831228)--(-3.6505,0.829914)--(-3.65143,0.8286)--
> (-3.65237,0.827287)--(-3.6533,0.825973)--(-3.65423,0.82466)--(-3.65516,0.823347)--(-3.65609,0.822034)--(-3.65701,0.820721)--(-3.65794,0.819408)--(-3.65887,0.818096)--(-3.65979,0.816784)--(-3.66071,0.815472)--(-3.66163,0.81416)--(-3.66256,0.812848)--(-3.66348,0.811537)--(-3.66439,0.810226)--(-3.66531,0.808914)--(-3.66623,0.807604)--(-3.66714,0.806293)--(-3.66806,0.804982)--(-3.66897,0.803672)--(-3.66988,0.802362)--(-3.67079,0.801052)--(-3.6717,0.799742)--(-3.67261,0.798433)--(-3.67352,0.797123)--
> (-3.67443,0.795814)--(-3.67533,0.794505)--(-3.67624,0.793197)--(-3.67714,0.791888)--(-3.67804,0.79058)--(-3.67895,0.789272)--(-3.67985,0.787964)--(-3.68075,0.786656)--(-3.68164,0.785348)--(-3.68254,0.784041)--(-3.68344,0.782734)--(-3.68433,0.781427)--(-3.68523,0.78012)--(-3.68612,0.778813)--(-3.68701,0.777507)--(-3.6879,0.776201)--(-3.68879,0.774895)--(-3.68968,0.773589)--(-3.69057,0.772283)--(-3.69145,0.770978)--(-3.69234,0.769673)--(-3.69322,0.768368)--(-3.69411,0.767063)--(-3.69499,0.765759)--
> (-3.69587,0.764454)--(-3.69675,0.76315)--(-3.69763,0.761846)--(-3.69851,0.760542)--(-3.69938,0.759239)--(-3.70026,0.757936)--(-3.70113,0.756632)--(-3.70201,0.75533)--(-3.70288,0.754027)--(-3.70375,0.752724)--(-3.70462,0.751422)--(-3.70549,0.75012)--(-3.70636,0.748818)--(-3.70723,0.747516)--(-3.70809,0.746215)--(-3.70896,0.744914)--(-3.70982,0.743613)--(-3.71069,0.742312)--(-3.71155,0.741011)--(-3.71241,0.739711)--(-3.71327,0.738411)--(-3.71413,0.737111)--(-3.71499,0.735811)--(-3.71584,0.734511)--
> (-3.7167,0.733212)--(-3.71755,0.731913)--(-3.71841,0.730614)--(-3.71926,0.729315)--(-3.72011,0.728017)--(-3.72096,0.726719)--(-3.72181,0.725421)--(-3.72266,0.724123)--(-3.72351,0.722825)--(-3.72436,0.721528)--(-3.7252,0.72023)--(-3.72605,0.718933)--(-3.72689,0.717637)--(-3.72773,0.71634)--(-3.72857,0.715044)--(-3.72941,0.713748)--(-3.73025,0.712452)--(-3.73109,0.711156)--(-3.73193,0.709861)--(-3.73277,0.708566)--(-3.7336,0.707271)--(-3.73444,0.705976)--(-3.73527,0.704681)--(-3.7361,0.703387)--
> (-3.73693,0.702093)--(-3.73776,0.700799)--(-3.73859,0.699505)--(-3.73942,0.698212)--(-3.74025,0.696919)--(-3.74107,0.695626)--(-3.7419,0.694333)--(-3.74272,0.69304)--(-3.74355,0.691748)--(-3.74437,0.690456)--(-3.74519,0.689164)--(-3.74601,0.687872)--(-3.74683,0.686581)--(-3.74765,0.68529)--(-3.74846,0.683999)--(-3.74928,0.682708)--(-3.75009,0.681417)--(-3.75091,0.680127)--(-3.75172,0.678837)--(-3.75253,0.677547)--(-3.75334,0.676258)--(-3.75415,0.674968)--(-3.75496,0.673679)--(-3.75577,0.67239)--
> (-3.75658,0.671101)--(-3.75738,0.669813)--(-3.75819,0.668525)--(-3.75899,0.667237)--(-3.75979,0.665949)--(-3.7606,0.664661)--(-3.7614,0.663374)--(-3.7622,0.662087)--(-3.763,0.6608)--(-3.76379,0.659514)--(-3.76459,0.658227)--(-3.76539,0.656941)--(-3.76618,0.655655)--(-3.76698,0.654369)--(-3.76777,0.653084)--(-3.76856,0.651799)--(-3.76935,0.650514)--(-3.77014,0.649229)--(-3.77093,0.647944)--(-3.77172,0.64666)--(-3.77251,0.645376)--(-3.77329,0.644092)--(-3.77408,0.642809)--(-3.77486,0.641525)--
> (-3.77565,0.640242)--(-3.77643,0.638959)--(-3.77721,0.637677)--(-3.77799,0.636394)--(-3.77877,0.635112)--(-3.77955,0.63383)--(-3.78032,0.632549)--(-3.7811,0.631267)--(-3.78188,0.629986)--(-3.78265,0.628705)--(-3.78342,0.627424)--(-3.7842,0.626144)--(-3.78497,0.624864)--(-3.78574,0.623584)--(-3.78651,0.622304)--(-3.78728,0.621025)--(-3.78804,0.619745)--(-3.78881,0.618466)--(-3.78958,0.617187)--(-3.79034,0.615909)--(-3.7911,0.614631)--(-3.79187,0.613353)--(-3.79263,0.612075)--(-3.79339,0.610797)--
> (-3.79415,0.60952)--(-3.79491,0.608243)--(-3.79567,0.606966)--(-3.79642,0.605689)--(-3.79718,0.604413)--(-3.79793,0.603137)--(-3.79869,0.601861)--(-3.79944,0.600585)--(-3.80019,0.59931)--(-3.80094,0.598035)--(-3.80169,0.59676)--(-3.80244,0.595485)--(-3.80319,0.594211)--(-3.80394,0.592937)--(-3.80469,0.591663)--(-3.80543,0.590389)--(-3.80618,0.589116)--(-3.80692,0.587843)--(-3.80766,0.58657)--(-3.8084,0.585297)--(-3.80914,0.584025)--(-3.80988,0.582753)--(-3.81062,0.581481)--(-3.81136,0.580209)--
> (-3.8121,0.578938)--(-3.81283,0.577666)--(-3.81357,0.576396)--(-3.8143,0.575125)--(-3.81504,0.573854)--(-3.81577,0.572584)--(-3.8165,0.571314)--(-3.81723,0.570045)--(-3.81796,0.568775)--(-3.81869,0.567506)--(-3.81942,0.566237)--(-3.82014,0.564969)--(-3.82087,0.5637)--(-3.82159,0.562432)--(-3.82232,0.561164)--(-3.82304,0.559897)--(-3.82376,0.558629)--(-3.82448,0.557362)--(-3.8252,0.556095)--(-3.82592,0.554829)--(-3.82664,0.553562)--(-3.82736,0.552296)--(-3.82807,0.55103)--(-3.82879,0.549765)--
> (-3.8295,0.548499)--(-3.83022,0.547234)--(-3.83093,0.545969)--(-3.83164,0.544705)--(-3.83235,0.543441)--(-3.83306,0.542176)--(-3.83377,0.540913)--(-3.83448,0.539649)--(-3.83518,0.538386)--(-3.83589,0.537123)--(-3.8366,0.53586)--(-3.8373,0.534597)--(-3.838,0.533335)--(-3.83871,0.532073)--(-3.83941,0.530811)--(-3.84011,0.52955)--(-3.84081,0.528289)--(-3.84151,0.527028)--(-3.8422,0.525767)--(-3.8429,0.524507)--(-3.8436,0.523246)--(-3.84429,0.521987)--(-3.84499,0.520727)--(-3.84568,0.519467)--
> (-3.84637,0.518208)--(-3.84706,0.516949)--(-3.84776,0.515691)--(-3.84844,0.514432)--(-3.84913,0.513174)--(-3.84982,0.511916)--(-3.85051,0.510659)--(-3.85119,0.509402)--(-3.85188,0.508145)--(-3.85256,0.506888)--(-3.85325,0.505631)--(-3.85393,0.504375)--(-3.85461,0.503119)--(-3.85529,0.501863)--(-3.85597,0.500608)--(-3.85665,0.499352)--(-3.85733,0.498098)--(-3.85801,0.496843)--(-3.85868,0.495588)--(-3.85936,0.494334)--(-3.86003,0.49308)--(-3.86071,0.491827)--(-3.86138,0.490573)--(-3.86205,0.48932)--
> (-3.86272,0.488067)--(-3.86339,0.486815)--(-3.86406,0.485563)--(-3.86473,0.484311)--(-3.86539,0.483059)--(-3.86606,0.481807)--(-3.86673,0.480556)--(-3.86739,0.479305)--(-3.86805,0.478054)--(-3.86872,0.476804)--(-3.86938,0.475554)--(-3.87004,0.474304)--(-3.8707,0.473054)--(-3.87136,0.471805)--(-3.87202,0.470556)--(-3.87268,0.469307)--(-3.87333,0.468058)--(-3.87399,0.46681)--(-3.87464,0.465562)--(-3.8753,0.464314)--(-3.87595,0.463067)--(-3.8766,0.46182)--(-3.87725,0.460573)--(-3.8779,0.459326)--
> (-3.87855,0.458079)--(-3.8792,0.456833)--(-3.87985,0.455587)--(-3.8805,0.454342)--(-3.88114,0.453097)--(-3.88179,0.451851)--(-3.88243,0.450607)--(-3.88308,0.449362)--(-3.88372,0.448118)--(-3.88436,0.446874)--(-3.885,0.44563)--(-3.88564,0.444387)--(-3.88628,0.443144)--(-3.88692,0.441901)--(-3.88756,0.440658)--(-3.88819,0.439416)--(-3.88883,0.438174)--(-3.88946,0.436932)--(-3.8901,0.43569)--(-3.89073,0.434449)--(-3.89136,0.433208)--(-3.892,0.431967)--(-3.89263,0.430727)--(-3.89326,0.429487)--
> (-3.89388,0.428247)--(-3.89451,0.427007)--(-3.89514,0.425768)--(-3.89577,0.424529)--(-3.89639,0.42329)--(-3.89702,0.422052)--(-3.89764,0.420813)--(-3.89826,0.419575)--(-3.89888,0.418338)--(-3.89951,0.4171)--(-3.90013,0.415863)--(-3.90074,0.414626)--(-3.90136,0.41339)--(-3.90198,0.412153)--(-3.9026,0.410917)--(-3.90321,0.409682)--(-3.90383,0.408446)--(-3.90444,0.407211)--(-3.90506,0.405976)--(-3.90567,0.404741)--(-3.90628,0.403507)--(-3.90689,0.402273)--(-3.9075,0.401039)--(-3.90811,0.399805)--
> (-3.90872,0.398572)--(-3.90933,0.397339)--(-3.90993,0.396106)--(-3.91054,0.394874)--(-3.91115,0.393642)--(-3.91175,0.39241)--(-3.91235,0.391178)--(-3.91296,0.389947)--(-3.91356,0.388716)--(-3.91416,0.387485)--(-3.91476,0.386255)--(-3.91536,0.385025)--(-3.91596,0.383795)--(-3.91655,0.382565)--(-3.91715,0.381336)--(-3.91775,0.380106)--(-3.91834,0.378878)--(-3.91894,0.377649)--(-3.91953,0.376421)--(-3.92012,0.375193)--(-3.92071,0.373965)--(-3.9213,0.372738)--(-3.92189,0.371511)--(-3.92248,0.370284)--
> (-3.92307,0.369057)--(-3.92366,0.367831)--(-3.92425,0.366605)--(-3.92483,0.365379)--(-3.92542,0.364154)--(-3.926,0.362929)--(-3.92659,0.361704)--(-3.92717,0.360479)--(-3.92775,0.359255)--(-3.92833,0.358031)--(-3.92891,0.356807)--(-3.92949,0.355583)--(-3.93007,0.35436)--(-3.93065,0.353137)--(-3.93122,0.351915)--(-3.9318,0.350692)--(-3.93238,0.34947)--(-3.93295,0.348248)--(-3.93352,0.347027)--(-3.9341,0.345806)--(-3.93467,0.344585)--(-3.93524,0.343364)--(-3.93581,0.342144)--(-3.93638,0.340924)--
> (-3.93695,0.339704)--(-3.93752,0.338484)--(-3.93808,0.337265)--(-3.93865,0.336046)--(-3.93922,0.334827)--(-3.93978,0.333609)--(-3.94035,0.332391)--(-3.94091,0.331173)--(-3.94147,0.329955)--(-3.94203,0.328738)--(-3.94259,0.327521)--(-3.94315,0.326305)--(-3.94371,0.325088)--(-3.94427,0.323872)--(-3.94483,0.322656)--(-3.94539,0.321441)--(-3.94594,0.320225)--(-3.9465,0.31901)--(-3.94705,0.317796)--(-3.9476,0.316581)--(-3.94816,0.315367)--(-3.94871,0.314153)--(-3.94926,0.31294)--(-3.94981,0.311727)--
> (-3.95036,0.310514)--(-3.95091,0.309301)--(-3.95146,0.308088)--(-3.952,0.306876)--(-3.95255,0.305664)--(-3.9531,0.304453)--(-3.95364,0.303242)--(-3.95419,0.302031)--(-3.95473,0.30082)--(-3.95527,0.29961)--(-3.95581,0.298399)--(-3.95635,0.29719)--(-3.95689,0.29598)--(-3.95743,0.294771)--(-3.95797,0.293562)--(-3.95851,0.292353)--(-3.95905,0.291145)--(-3.95958,0.289937)--(-3.96012,0.288729)--(-3.96065,0.287521)--(-3.96119,0.286314)--(-3.96172,0.285107)--(-3.96225,0.2839)--(-3.96278,0.282694)--
> (-3.96331,0.281488)--(-3.96384,0.280282)--(-3.96437,0.279077)--(-3.9649,0.277871)--(-3.96543,0.276667)--(-3.96596,0.275462)--(-3.96648,0.274258)--(-3.96701,0.273053)--(-3.96753,0.27185)--(-3.96806,0.270646)--(-3.96858,0.269443)--(-3.9691,0.26824)--(-3.96962,0.267037)--(-3.97014,0.265835)--(-3.97066,0.264633)--(-3.97118,0.263431)--(-3.9717,0.26223)--(-3.97222,0.261029)--(-3.97274,0.259828)--(-3.97325,0.258627)--(-3.97377,0.257427)--(-3.97428,0.256227)--(-3.9748,0.255027)--(-3.97531,0.253828)--
> (-3.97582,0.252628)--(-3.97633,0.25143)--(-3.97684,0.250231)--(-3.97735,0.249033)--(-3.97786,0.247835)--(-3.97837,0.246637)--(-3.97888,0.24544)--(-3.97939,0.244242)--(-3.97989,0.243046)--(-3.9804,0.241849)--(-3.9809,0.240653)--(-3.98141,0.239457)--(-3.98191,0.238261)--(-3.98241,0.237066)--(-3.98291,0.235871)--(-3.98341,0.234676)--(-3.98391,0.233481)--(-3.98441,0.232287)--(-3.98491,0.231093)--(-3.98541,0.2299)--(-3.98591,0.228706)--(-3.9864,0.227513)--(-3.9869,0.226321)--(-3.98739,0.225128)--
> (-3.98789,0.223936)--(-3.98838,0.222744)--(-3.98887,0.221552)--(-3.98937,0.220361)--(-3.98986,0.21917)--(-3.99035,0.217979)--(-3.99084,0.216789)--(-3.99133,0.215599)--(-3.99181,0.214409)--(-3.9923,0.213219)--(-3.99279,0.21203)--(-3.99327,0.210841)--(-3.99376,0.209653)--(-3.99424,0.208464)--(-3.99473,0.207276)--(-3.99521,0.206088)--(-3.99569,0.204901)--(-3.99617,0.203714)--(-3.99665,0.202527)--(-3.99713,0.20134)--(-3.99761,0.200154)--(-3.99809,0.198968)--(-3.99857,0.197782)--(-3.99905,0.196596)--
> (-3.99952,0.195411)--(-4,0.194226)--(-4.00047,0.193042)--(-4.00095,0.191858)--(-4.00142,0.190674)--(-4.00189,0.18949)--(-4.00237,0.188307)--(-4.00284,0.187123)--(-4.00331,0.185941)--(-4.00378,0.184758)--(-4.00425,0.183576)--(-4.00471,0.182394)--(-4.00518,0.181212)--(-4.00565,0.180031)--(-4.00612,0.17885)--(-4.00658,0.177669)--(-4.00705,0.176489)--(-4.00751,0.175308)--(-4.00797,0.174129)--(-4.00843,0.172949)--(-4.0089,0.17177)--(-4.00936,0.170591)--(-4.00982,0.169412)--(-4.01028,0.168234)--
> (-4.01074,0.167056)--(-4.01119,0.165878)--(-4.01165,0.1647)--(-4.01211,0.163523)--(-4.01256,0.162346)--(-4.01302,0.161169)--(-4.01347,0.159993)--(-4.01393,0.158817)--(-4.01438,0.157641)--(-4.01483,0.156466)--(-4.01529,0.155291)--(-4.01574,0.154116)--(-4.01619,0.152941)--(-4.01664,0.151767)--(-4.01709,0.150593)--(-4.01753,0.149419)--(-4.01798,0.148246)--(-4.01843,0.147073)--(-4.01887,0.1459)--(-4.01932,0.144727)--(-4.01976,0.143555)--(-4.02021,0.142383)--(-4.02065,0.141212)--(-4.02109,0.14004)--
> (-4.02153,0.138869)--(-4.02198,0.137698)--(-4.02242,0.136528)--(-4.02286,0.135358)--(-4.02329,0.134188)--(-4.02373,0.133018)--(-4.02417,0.131849)--(-4.02461,0.13068)--(-4.02504,0.129511)--(-4.02548,0.128343)--(-4.02591,0.127175)--(-4.02635,0.126007)--(-4.02678,0.12484)--(-4.02721,0.123672)--(-4.02765,0.122506)--(-4.02808,0.121339)--(-4.02851,0.120173)--(-4.02894,0.119007)--(-4.02937,0.117841)--(-4.02979,0.116675)--(-4.03022,0.11551)--(-4.03065,0.114345)--(-4.03108,0.113181)--(-4.0315,0.112017)--
> (-4.03193,0.110853)--(-4.03235,0.109689)--(-4.03277,0.108526)--(-4.0332,0.107363)--(-4.03362,0.1062)--(-4.03404,0.105037)--(-4.03446,0.103875)--(-4.03488,0.102713)--(-4.0353,0.101552)--(-4.03572,0.10039)--(-4.03614,0.0992294)--(-4.03656,0.0980687)--(-4.03697,0.0969083)--(-4.03739,0.0957482)--(-4.0378,0.0945883)--(-4.03822,0.0934288)--(-4.03863,0.0922696)--(-4.03905,0.0911107)--(-4.03946,0.0899521)--(-4.03987,0.0887937)--(-4.04028,0.0876357)--(-4.04069,0.0864779)--(-4.0411,0.0853205)--
> (-4.04151,0.0841633)--(-4.04192,0.0830065)--(-4.04233,0.0818499)--(-4.04273,0.0806937)--(-4.04314,0.0795377)--(-4.04355,0.078382)--(-4.04395,0.0772267)--(-4.04436,0.0760716)--(-4.04476,0.0749168)--(-4.04516,0.0737623)--(-4.04557,0.0726081)--(-4.04597,0.0714543)--(-4.04637,0.0703007)--(-4.04677,0.0691474)--(-4.04717,0.0679944)--(-4.04757,0.0668416)--(-4.04797,0.0656892)--(-4.04836,0.0645371)--(-4.04876,0.0633853)--(-4.04916,0.0622338)--(-4.04955,0.0610826)--(-4.04995,0.0599316)--
> (-4.05034,0.058781)--(-4.05074,0.0576307)--(-4.05113,0.0564806)--(-4.05152,0.0553309)--(-4.05191,0.0541814)--(-4.0523,0.0530323)--(-4.05269,0.0518834)--(-4.05308,0.0507349)--(-4.05347,0.0495866)--(-4.05386,0.0484386)--(-4.05425,0.047291)--(-4.05464,0.0461436)--(-4.05502,0.0449965)--(-4.05541,0.0438498)--(-4.05579,0.0427033)--(-4.05618,0.0415571)--(-4.05656,0.0404112)--(-4.05694,0.0392656)--(-4.05733,0.0381203)--(-4.05771,0.0369753)--(-4.05809,0.0358306)--(-4.05847,0.0346862)--
> (-4.05885,0.0335421)--(-4.05923,0.0323983)--(-4.05961,0.0312547)--(-4.05999,0.0301115)--(-4.06036,0.0289686)--(-4.06074,0.027826)--(-4.06111,0.0266836)--(-4.06149,0.0255416)--(-4.06186,0.0243999)--(-4.06224,0.0232584)--(-4.06261,0.0221173)--(-4.06298,0.0209764)--(-4.06336,0.0198359)--(-4.06373,0.0186956)--(-4.0641,0.0175556)--(-4.06447,0.016416)--(-4.06484,0.0152766)--(-4.06521,0.0141375)--(-4.06557,0.0129988)--(-4.06594,0.0118603)--(-4.06631,0.0107221)--(-4.06667,0.00958422)--
> (-4.06704,0.00844663)--(-4.0674,0.00730934)--(-4.06777,0.00617234)--(-4.06813,0.00503564)--(-4.0685,0.00389923)--(-4.06886,0.00276312)--(-4.06922,0.00162731)--(-4.06958,0.000491796)--(-4.06994,-0.000643423)--(-4.0703,-0.00177835)--(-4.07066,-0.00291297)--(-4.07102,-0.0040473)--(-4.07138,-0.00518134)--(-4.07173,-0.00631508)--(-4.07209,-0.00744852)--(-4.07244,-0.00858166)--(-4.0728,-0.00971451)--(-4.07315,-0.0108471)--(-4.07351,-0.0119793)--(-4.07386,-0.0131113)--(-4.07421,-0.0142429)--
> (-4.07457,-0.0153743)--(-4.07492,-0.0165054)--(-4.07527,-0.0176362)--(-4.07562,-0.0187666)--(-4.07597,-0.0198968)--(-4.07632,-0.0210267)--(-4.07666,-0.0221563)--(-4.07701,-0.0232856)--(-4.07736,-0.0244146)--(-4.07771,-0.0255433)--(-4.07805,-0.0266717)--(-4.0784,-0.0277998)--(-4.07874,-0.0289276)--(-4.07908,-0.0300552)--(-4.07943,-0.0311824)--(-4.07977,-0.0323093)--(-4.08011,-0.0334359)--(-4.08045,-0.0345623)--(-4.08079,-0.0356883)--(-4.08113,-0.036814)--(-4.08147,-0.0379395)--
> (-4.08181,-0.0390646)--(-4.08215,-0.0401895)--(-4.08249,-0.0413141)--(-4.08283,-0.0424383)--(-4.08316,-0.0435623)--(-4.0835,-0.044686)--(-4.08383,-0.0458093)--(-4.08417,-0.0469324)--(-4.0845,-0.0480552)--(-4.08483,-0.0491777)--(-4.08517,-0.0502999)--(-4.0855,-0.0514218)--(-4.08583,-0.0525434)--(-4.08616,-0.0536647)--(-4.08649,-0.0547857)--(-4.08682,-0.0559064)--(-4.08715,-0.0570268)--(-4.08748,-0.058147)--(-4.0878,-0.0592668)--(-4.08813,-0.0603863)--(-4.08846,-0.0615056)--(-4.08878,-0.0626245)--
> (-4.08911,-0.0637432)--(-4.08943,-0.0648615)--(-4.08976,-0.0659796)--(-4.09008,-0.0670973)--(-4.0904,-0.0682148)--(-4.09073,-0.069332)--(-4.09105,-0.0704488)--(-4.09137,-0.0715654)--(-4.09169,-0.0726817)--(-4.09201,-0.0737977)--(-4.09233,-0.0749134)--(-4.09265,-0.0760288)--(-4.09296,-0.0771439)--(-4.09328,-0.0782587)--(-4.0936,-0.0793732)--(-4.09391,-0.0804874)--(-4.09423,-0.0816013)--(-4.09454,-0.082715)--(-4.09486,-0.0838283)--(-4.09517,-0.0849413)--(-4.09548,-0.0860541)--(-4.0958,-0.0871665)--
> (-4.09611,-0.0882787)--(-4.09642,-0.0893906)--(-4.09673,-0.0905021)--(-4.09704,-0.0916134)--(-4.09735,-0.0927244)--(-4.09766,-0.093835)--(-4.09797,-0.0949454)--(-4.09827,-0.0960555)--(-4.09858,-0.0971653)--(-4.09889,-0.0982748)--(-4.09919,-0.099384)--(-4.0995,-0.100493)--(-4.0998,-0.101602)--(-4.10011,-0.10271)--(-4.10041,-0.103818)--(-4.10071,-0.104926)--(-4.10102,-0.106033)--(-4.10132,-0.10714)--(-4.10162,-0.108247)--(-4.10192,-0.109354)--(-4.10222,-0.11046)--(-4.10252,-0.111566)--
> (-4.10282,-0.112672)--(-4.10311,-0.113777)--(-4.10341,-0.114882)--(-4.10371,-0.115987)--(-4.104,-0.117091)--(-4.1043,-0.118195)--(-4.1046,-0.119299)--(-4.10489,-0.120403)--(-4.10518,-0.121506)--(-4.10548,-0.122609)--(-4.10577,-0.123712)--(-4.10606,-0.124815)--(-4.10635,-0.125917)--(-4.10664,-0.127019)--(-4.10694,-0.12812)--(-4.10722,-0.129221)--(-4.10751,-0.130322)--(-4.1078,-0.131423)--(-4.10809,-0.132523)--(-4.10838,-0.133623)--(-4.10867,-0.134723)--(-4.10895,-0.135823)--(-4.10924,-0.136922)--
> (-4.10952,-0.138021)--(-4.10981,-0.13912)--(-4.11009,-0.140218)--(-4.11037,-0.141316)--(-4.11066,-0.142414)--(-4.11094,-0.143511)--(-4.11122,-0.144608)--(-4.1115,-0.145705)--(-4.11178,-0.146802)--(-4.11206,-0.147898)--(-4.11234,-0.148994)--(-4.11262,-0.15009)--(-4.1129,-0.151185)--(-4.11318,-0.15228)--(-4.11345,-0.153375)--(-4.11373,-0.15447)--(-4.11401,-0.155564)--(-4.11428,-0.156658)--(-4.11455,-0.157751)--(-4.11483,-0.158845)--(-4.1151,-0.159938)--(-4.11538,-0.161031)--(-4.11565,-0.162123)--
> (-4.11592,-0.163215)--(-4.11619,-0.164307)--(-4.11646,-0.165399)--(-4.11673,-0.16649)--(-4.117,-0.167581)--(-4.11727,-0.168672)--(-4.11754,-0.169762)--(-4.11781,-0.170852)--(-4.11807,-0.171942)--(-4.11834,-0.173032)--(-4.11861,-0.174121)--(-4.11887,-0.17521)--(-4.11914,-0.176299)--(-4.1194,-0.177387)--(-4.11967,-0.178475)--(-4.11993,-0.179563)--(-4.12019,-0.18065)--(-4.12045,-0.181738)--(-4.12072,-0.182824)--(-4.12098,-0.183911)--(-4.12124,-0.184997)--(-4.1215,-0.186084)--(-4.12176,-0.187169)--
> (-4.12201,-0.188255)--(-4.12227,-0.18934)--(-4.12253,-0.190425)--(-4.12279,-0.191509)--(-4.12304,-0.192594)--(-4.1233,-0.193678)--(-4.12356,-0.194761)--(-4.12381,-0.195845)--(-4.12406,-0.196928)--(-4.12432,-0.198011)--(-4.12457,-0.199093)--(-4.12482,-0.200176)--(-4.12508,-0.201258)--(-4.12533,-0.202339)--(-4.12558,-0.203421)--(-4.12583,-0.204502)--(-4.12608,-0.205583)--(-4.12633,-0.206663)--(-4.12658,-0.207743)--(-4.12683,-0.208823)--(-4.12707,-0.209903)--(-4.12732,-0.210982)--
> (-4.12757,-0.212061)--(-4.12781,-0.21314)--(-4.12806,-0.214219)--(-4.1283,-0.215297)--(-4.12855,-0.216375)--(-4.12879,-0.217452)--(-4.12903,-0.21853)--(-4.12928,-0.219607)--(-4.12952,-0.220684)--(-4.12976,-0.22176)--(-4.13,-0.222836)--(-4.13024,-0.223912)--(-4.13048,-0.224988)--(-4.13072,-0.226063)--(-4.13096,-0.227138)--(-4.1312,-0.228213)--(-4.13144,-0.229287)--(-4.13167,-0.230361)--(-4.13191,-0.231435)--(-4.13215,-0.232509)--(-4.13238,-0.233582)--(-4.13262,-0.234655)--(-4.13285,-0.235728)--
> (-4.13308,-0.2368)--(-4.13332,-0.237872)--(-4.13355,-0.238944)--(-4.13378,-0.240015)--(-4.13401,-0.241087)--(-4.13425,-0.242158)--(-4.13448,-0.243228)--(-4.13471,-0.244299)--(-4.13494,-0.245369)--(-4.13517,-0.246439)--(-4.13539,-0.247508)--(-4.13562,-0.248577)--(-4.13585,-0.249646)--(-4.13608,-0.250715)--(-4.1363,-0.251783)--(-4.13653,-0.252851)--(-4.13675,-0.253919)--(-4.13698,-0.254987)--(-4.1372,-0.256054)--(-4.13743,-0.257121)--(-4.13765,-0.258188)--(-4.13787,-0.259254)--(-4.13809,-0.26032)--
> (-4.13831,-0.261386)--(-4.13854,-0.262451)--(-4.13876,-0.263516)--(-4.13898,-0.264581)--(-4.1392,-0.265646)--(-4.13941,-0.26671)--(-4.13963,-0.267774)--(-4.13985,-0.268838)--(-4.14007,-0.269902)--(-4.14028,-0.270965)--(-4.1405,-0.272028)--(-4.14072,-0.27309)--(-4.14093,-0.274153)--(-4.14115,-0.275215)--(-4.14136,-0.276276)--(-4.14157,-0.277338)--(-4.14179,-0.278399)--(-4.142,-0.27946)--(-4.14221,-0.28052)--(-4.14242,-0.281581)--(-4.14263,-0.282641)--(-4.14284,-0.283701)--(-4.14305,-0.28476)--
> (-4.14326,-0.285819)--(-4.14347,-0.286878)--(-4.14368,-0.287937)--(-4.14389,-0.288995)--(-4.14409,-0.290053)--(-4.1443,-0.291111)--(-4.14451,-0.292168)--(-4.14471,-0.293225)--(-4.14492,-0.294282)--(-4.14512,-0.295339)--(-4.14533,-0.296395)--(-4.14553,-0.297451)--(-4.14573,-0.298507)--(-4.14594,-0.299562)--(-4.14614,-0.300618)--(-4.14634,-0.301672)--(-4.14654,-0.302727)--(-4.14674,-0.303781)--(-4.14694,-0.304835)--(-4.14714,-0.305889)--(-4.14734,-0.306943)--(-4.14754,-0.307996)--
> (-4.14774,-0.309049)--(-4.14793,-0.310101)--(-4.14813,-0.311154)--(-4.14833,-0.312206)--(-4.14852,-0.313257)--(-4.14872,-0.314309)--(-4.14891,-0.31536)--(-4.14911,-0.316411)--(-4.1493,-0.317461)--(-4.14949,-0.318512)--(-4.14969,-0.319562)--(-4.14988,-0.320612)--(-4.15007,-0.321661)--(-4.15026,-0.32271)--(-4.15045,-0.323759)--(-4.15064,-0.324808)--(-4.15083,-0.325856)--(-4.15102,-0.326904)--(-4.15121,-0.327952)--(-4.1514,-0.328999)--(-4.15158,-0.330047)--(-4.15177,-0.331093)--(-4.15196,-0.33214)--
> (-4.15214,-0.333186)--(-4.15233,-0.334233)--(-4.15252,-0.335278)--(-4.1527,-0.336324)--(-4.15288,-0.337369)--(-4.15307,-0.338414)--(-4.15325,-0.339459)--(-4.15343,-0.340503)--(-4.15361,-0.341547)--(-4.1538,-0.342591)--(-4.15398,-0.343634)--(-4.15416,-0.344678)--(-4.15434,-0.345721)--(-4.15452,-0.346763)--(-4.1547,-0.347806)--(-4.15487,-0.348848)--(-4.15505,-0.349889)--(-4.15523,-0.350931)--(-4.15541,-0.351972)--(-4.15558,-0.353013)--(-4.15576,-0.354054)--(-4.15594,-0.355094)--
> (-4.15611,-0.356134)--(-4.15628,-0.357174)--(-4.15646,-0.358214)--(-4.15663,-0.359253)--(-4.1568,-0.360292)--(-4.15698,-0.361331)--(-4.15715,-0.362369)--(-4.15732,-0.363407)--(-4.15749,-0.364445)--(-4.15766,-0.365483)--(-4.15783,-0.36652)--(-4.158,-0.367557)--(-4.15817,-0.368594)--(-4.15834,-0.369631)--(-4.15851,-0.370667)--(-4.15867,-0.371703)--(-4.15884,-0.372738)--(-4.15901,-0.373774)--(-4.15917,-0.374809)--(-4.15934,-0.375843)--(-4.15951,-0.376878)--(-4.15967,-0.377912)--(-4.15983,-0.378946)--
> (-4.16,-0.37998)--(-4.16016,-0.381013)--(-4.16032,-0.382046)--(-4.16048,-0.383079)--(-4.16065,-0.384112)--(-4.16081,-0.385144)--(-4.16097,-0.386176)--(-4.16113,-0.387208)--(-4.16129,-0.388239)--(-4.16145,-0.38927)--(-4.16161,-0.390301)--(-4.16176,-0.391332)--(-4.16192,-0.392362)--(-4.16208,-0.393392)--(-4.16224,-0.394422)--(-4.16239,-0.395451)--(-4.16255,-0.39648)--(-4.1627,-0.397509)--(-4.16286,-0.398538)--(-4.16301,-0.399566)--(-4.16317,-0.400594)--(-4.16332,-0.401622)--(-4.16347,-0.402649)--
> (-4.16362,-0.403677)--(-4.16378,-0.404704)--(-4.16393,-0.40573)--(-4.16408,-0.406757)--(-4.16423,-0.407783)--(-4.16438,-0.408809)--(-4.16453,-0.409834)--(-4.16468,-0.41086)--(-4.16483,-0.411885)--(-4.16497,-0.412909)--(-4.16512,-0.413934)--(-4.16527,-0.414958)--(-4.16541,-0.415982)--(-4.16556,-0.417005)--(-4.16571,-0.418029)--(-4.16585,-0.419052)--(-4.166,-0.420075)--(-4.16614,-0.421097)--(-4.16628,-0.422119)--(-4.16643,-0.423141)--(-4.16657,-0.424163)--(-4.16671,-0.425184)--(-4.16685,-0.426205)--
> (-4.167,-0.427226)--(-4.16714,-0.428247)--(-4.16728,-0.429267)--(-4.16742,-0.430287)--(-4.16756,-0.431307)--(-4.16769,-0.432326)--(-4.16783,-0.433346)--(-4.16797,-0.434364)--(-4.16811,-0.435383)--(-4.16825,-0.436401)--(-4.16838,-0.43742)--(-4.16852,-0.438437)--(-4.16865,-0.439455)--(-4.16879,-0.440472)--(-4.16892,-0.441489)--(-4.16906,-0.442506)--(-4.16919,-0.443522)--(-4.16933,-0.444538)--(-4.16946,-0.445554)--(-4.16959,-0.44657)--(-4.16972,-0.447585)--(-4.16985,-0.4486)--(-4.16998,-0.449615)--
> (-4.17011,-0.450629)--(-4.17024,-0.451644)--(-4.17037,-0.452658)--(-4.1705,-0.453671)--(-4.17063,-0.454685)--(-4.17076,-0.455698)--(-4.17089,-0.456711)--(-4.17101,-0.457723)--(-4.17114,-0.458736)--(-4.17127,-0.459748)--(-4.17139,-0.460759)--(-4.17152,-0.461771)--(-4.17164,-0.462782)--(-4.17177,-0.463793)--(-4.17189,-0.464804)--(-4.17202,-0.465814)--(-4.17214,-0.466824)--(-4.17226,-0.467834)--(-4.17238,-0.468843)--(-4.1725,-0.469853)--(-4.17263,-0.470862)--(-4.17275,-0.47187)--
> (-4.17287,-0.472879)--(-4.17299,-0.473887)--(-4.17311,-0.474895)--(-4.17322,-0.475903)--(-4.17334,-0.47691)--(-4.17346,-0.477917)--(-4.17358,-0.478924)--(-4.1737,-0.47993)--(-4.17381,-0.480937)--(-4.17393,-0.481943)--(-4.17404,-0.482948)--(-4.17416,-0.483954)--(-4.17427,-0.484959)--(-4.17439,-0.485964)--(-4.1745,-0.486969)--(-4.17462,-0.487973)--(-4.17473,-0.488977)--(-4.17484,-0.489981)--(-4.17495,-0.490984)--(-4.17506,-0.491988)--(-4.17517,-0.492991)--(-4.17529,-0.493994)--(-4.1754,-0.494996)--
> (-4.17551,-0.495998)--(-4.17561,-0.497)--(-4.17572,-0.498002)--(-4.17583,-0.499003)--(-4.17594,-0.500004)--(-4.17605,-0.501005)--(-4.17615,-0.502006)--(-4.17626,-0.503006)--(-4.17637,-0.504006)--(-4.17647,-0.505006)--(-4.17658,-0.506005)--(-4.17668,-0.507004)--(-4.17679,-0.508003)--(-4.17689,-0.509002)--(-4.17699,-0.51)--(-4.1771,-0.510999)--(-4.1772,-0.511996)--(-4.1773,-0.512994)--(-4.1774,-0.513991)--(-4.1775,-0.514988)--(-4.1776,-0.515985)--(-4.1777,-0.516982)--(-4.1778,-0.517978)--
> (-4.1779,-0.518974)--(-4.178,-0.51997)--(-4.1781,-0.520965)--(-4.1782,-0.52196)--(-4.1783,-0.522955)--(-4.17839,-0.52395)--(-4.17849,-0.524944)--(-4.17859,-0.525938)--(-4.17868,-0.526932)--(-4.17878,-0.527925)--(-4.17887,-0.528919)--(-4.17897,-0.529912)--(-4.17906,-0.530904)--(-4.17915,-0.531897)--(-4.17925,-0.532889)--(-4.17934,-0.533881)--(-4.17943,-0.534873)--(-4.17952,-0.535864)--(-4.17962,-0.536855)--(-4.17971,-0.537846)--(-4.1798,-0.538837)--(-4.17989,-0.539827)--(-4.17998,-0.540817)--
> (-4.18007,-0.541807)--(-4.18015,-0.542796)--(-4.18024,-0.543786)--(-4.18033,-0.544775)--(-4.18042,-0.545763)--(-4.1805,-0.546752)--(-4.18059,-0.54774)--(-4.18068,-0.548728)--(-4.18076,-0.549716)--(-4.18085,-0.550703)--(-4.18093,-0.55169)--(-4.18102,-0.552677)--(-4.1811,-0.553664)--(-4.18118,-0.55465)--(-4.18127,-0.555636)--(-4.18135,-0.556622)--(-4.18143,-0.557607)--(-4.18151,-0.558592)--(-4.1816,-0.559577)--(-4.18168,-0.560562)--(-4.18176,-0.561547)--(-4.18184,-0.562531)--(-4.18192,-0.563515)--
> (-4.18199,-0.564498)--(-4.18207,-0.565482)--(-4.18215,-0.566465)--(-4.18223,-0.567448)--(-4.18231,-0.56843)--(-4.18238,-0.569413)--(-4.18246,-0.570395)--(-4.18254,-0.571376)--(-4.18261,-0.572358)--(-4.18269,-0.573339)--(-4.18276,-0.57432)--(-4.18284,-0.575301)--(-4.18291,-0.576282)--(-4.18298,-0.577262)--(-4.18306,-0.578242)--(-4.18313,-0.579221)--(-4.1832,-0.580201)--(-4.18327,-0.58118)--(-4.18334,-0.582159)--(-4.18342,-0.583137)--(-4.18349,-0.584116)--(-4.18356,-0.585094)--(-4.18363,-0.586072)--
> (-4.18369,-0.587049)--(-4.18376,-0.588027)--(-4.18383,-0.589004)--(-4.1839,-0.58998)--(-4.18397,-0.590957)--(-4.18403,-0.591933)--(-4.1841,-0.592909)--(-4.18417,-0.593885)--(-4.18423,-0.59486)--(-4.1843,-0.595835)--(-4.18436,-0.59681)--(-4.18443,-0.597785)--(-4.18449,-0.598759)--(-4.18456,-0.599734)--(-4.18462,-0.600707)--(-4.18468,-0.601681)--(-4.18474,-0.602654)--(-4.18481,-0.603628)--(-4.18487,-0.6046)--(-4.18493,-0.605573)--(-4.18499,-0.606545)--(-4.18505,-0.607517)--(-4.18511,-0.608489)--
> (-4.18517,-0.609461)--(-4.18523,-0.610432)--(-4.18529,-0.611403)--(-4.18534,-0.612374)--(-4.1854,-0.613344)--(-4.18546,-0.614314)--(-4.18552,-0.615284)--(-4.18557,-0.616254)--(-4.18563,-0.617223)--(-4.18569,-0.618192)--(-4.18574,-0.619161)--(-4.1858,-0.62013)--(-4.18585,-0.621098)--(-4.1859,-0.622067)--(-4.18596,-0.623034)--(-4.18601,-0.624002)--(-4.18606,-0.624969)--(-4.18612,-0.625936)--(-4.18617,-0.626903)--(-4.18622,-0.62787)--(-4.18627,-0.628836)--(-4.18632,-0.629802)--(-4.18637,-0.630768)--
> (-4.18642,-0.631733)--(-4.18647,-0.632699)--(-4.18652,-0.633664)--(-4.18657,-0.634628)--(-4.18662,-0.635593)--(-4.18666,-0.636557)--(-4.18671,-0.637521)--(-4.18676,-0.638485)--(-4.1868,-0.639448)--(-4.18685,-0.640411)--(-4.1869,-0.641374)--(-4.18694,-0.642337)--(-4.18699,-0.643299)--(-4.18703,-0.644262)--(-4.18708,-0.645224)--(-4.18712,-0.646185)--(-4.18716,-0.647147)--(-4.18721,-0.648108)--(-4.18725,-0.649068)--(-4.18729,-0.650029)--(-4.18733,-0.650989)--(-4.18737,-0.65195)--
> (-4.18741,-0.652909)--(-4.18745,-0.653869)--(-4.18749,-0.654828)--(-4.18753,-0.655787)--(-4.18757,-0.656746)--(-4.18761,-0.657705)--(-4.18765,-0.658663)--(-4.18769,-0.659621)--(-4.18772,-0.660579)--(-4.18776,-0.661536)--(-4.1878,-0.662493)--(-4.18784,-0.66345)--(-4.18787,-0.664407)--(-4.18791,-0.665364)--(-4.18794,-0.66632)--(-4.18798,-0.667276)--(-4.18801,-0.668232)--(-4.18804,-0.669187)--(-4.18808,-0.670142)--(-4.18811,-0.671097)--(-4.18814,-0.672052)--(-4.18818,-0.673006)--(-4.18821,-0.67396)--
> (-4.18824,-0.674914)--(-4.18827,-0.675868)--(-4.1883,-0.676821)--(-4.18833,-0.677775)--(-4.18836,-0.678727)--(-4.18839,-0.67968)--(-4.18842,-0.680633)--(-4.18845,-0.681585)--(-4.18848,-0.682537)--(-4.1885,-0.683488)--(-4.18853,-0.68444)--(-4.18856,-0.685391)--(-4.18859,-0.686341)--(-4.18861,-0.687292)--(-4.18864,-0.688242)--(-4.18866,-0.689193)--(-4.18869,-0.690142)--(-4.18871,-0.691092)--(-4.18874,-0.692041)--(-4.18876,-0.69299)--(-4.18878,-0.693939)--(-4.18881,-0.694888)--(-4.18883,-0.695836)--
> (-4.18885,-0.696784)--(-4.18887,-0.697732)--(-4.1889,-0.698679)--(-4.18892,-0.699627)--(-4.18894,-0.700574)--(-4.18896,-0.701521)--(-4.18898,-0.702467)--(-4.189,-0.703413)--(-4.18902,-0.704359)--(-4.18904,-0.705305)--(-4.18905,-0.706251)--(-4.18907,-0.707196)--(-4.18909,-0.708141)--(-4.18911,-0.709086)--(-4.18912,-0.71003)--(-4.18914,-0.710975)--(-4.18916,-0.711919)--(-4.18917,-0.712862)--(-4.18919,-0.713806)--(-4.1892,-0.714749)--(-4.18921,-0.715692)--(-4.18923,-0.716635)--(-4.18924,-0.717577)--
> (-4.18926,-0.71852)--(-4.18927,-0.719462)--(-4.18928,-0.720403)--(-4.18929,-0.721345)--(-4.1893,-0.722286)--(-4.18932,-0.723227)--(-4.18933,-0.724168)--(-4.18934,-0.725108)--(-4.18935,-0.726049)--(-4.18936,-0.726988)--(-4.18937,-0.727928)--(-4.18938,-0.728868)--(-4.18938,-0.729807)--(-4.18939,-0.730746)--(-4.1894,-0.731685)--(-4.18941,-0.732623)--(-4.18941,-0.733561)--(-4.18942,-0.734499)--(-4.18943,-0.735437)--(-4.18943,-0.736375)--(-4.18944,-0.737312)--(-4.18944,-0.738249)--
> (-4.18945,-0.739185)--(-4.18945,-0.740122)--(-4.18946,-0.741058)--(-4.18946,-0.741994)--(-4.18946,-0.74293)--(-4.18946,-0.743865)--(-4.18947,-0.744801)--(-4.18947,-0.745736)--(-4.18947,-0.74667)--(-4.18947,-0.747605)--(-4.18947,-0.748539)--(-4.18947,-0.749473)--(-4.18947,-0.750407)--(-4.18947,-0.75134)--(-4.18947,-0.752274)--(-4.18947,-0.753207)--(-4.18947,-0.754139)--(-4.18947,-0.755072)--(-4.18947,-0.756004)--(-4.18946,-0.756936)--(-4.18946,-0.757868)--(-4.18946,-0.758799)--
> (-4.18945,-0.759731)--(-4.18945,-0.760662)--(-4.18944,-0.761592)--(-4.18944,-0.762523)--(-4.18943,-0.763453)--(-4.18943,-0.764383)--(-4.18942,-0.765313)--(-4.18942,-0.766242)--(-4.18941,-0.767172)--(-4.1894,-0.768101)--(-4.18939,-0.769029)--(-4.18939,-0.769958)--(-4.18938,-0.770886)--(-4.18937,-0.771814)--(-4.18936,-0.772742)--(-4.18935,-0.77367)--(-4.18934,-0.774597)--(-4.18933,-0.775524)--(-4.18932,-0.776451)--(-4.18931,-0.777377)--(-4.1893,-0.778304)--(-4.18928,-0.77923)--(-4.18927,-0.780156)--
> (-4.18926,-0.781081)--(-4.18925,-0.782007)--(-4.18923,-0.782932)--(-4.18922,-0.783857)--(-4.18921,-0.784781)--(-4.18919,-0.785705)--(-4.18918,-0.78663)--(-4.18916,-0.787553)--(-4.18915,-0.788477)--(-4.18913,-0.7894)--(-4.18911,-0.790324)--(-4.1891,-0.791246)--(-4.18908,-0.792169)--(-4.18906,-0.793092)--(-4.18905,-0.794014)--(-4.18903,-0.794936)--(-4.18901,-0.795857)--(-4.18899,-0.796779)--(-4.18897,-0.7977)--(-4.18895,-0.798621)--(-4.18893,-0.799541)--(-4.18891,-0.800462)--(-4.18889,-0.801382)--
> (-4.18887,-0.802302)--(-4.18885,-0.803222)--(-4.18883,-0.804141)--(-4.1888,-0.80506)--(-4.18878,-0.805979)--(-4.18876,-0.806898)--(-4.18873,-0.807817)--(-4.18871,-0.808735)--(-4.18869,-0.809653)--(-4.18866,-0.810571)--(-4.18864,-0.811488)--(-4.18861,-0.812406)--(-4.18859,-0.813323)--(-4.18856,-0.814239)--(-4.18853,-0.815156)--(-4.18851,-0.816072)--(-4.18848,-0.816988)--(-4.18845,-0.817904)--(-4.18843,-0.81882)--(-4.1884,-0.819735)--(-4.18837,-0.82065)--(-4.18834,-0.821565)--(-4.18831,-0.82248)--
> (-4.18828,-0.823394)--(-4.18825,-0.824308)--(-4.18822,-0.825222)--(-4.18819,-0.826136)--(-4.18816,-0.827049)--(-4.18813,-0.827962)--(-4.1881,-0.828875)--(-4.18806,-0.829788)--(-4.18803,-0.8307)--(-4.188,-0.831613)--(-4.18797,-0.832525)--(-4.18793,-0.833436)--(-4.1879,-0.834348)--(-4.18786,-0.835259)--(-4.18783,-0.83617)--(-4.18779,-0.837081)--(-4.18776,-0.837991)--(-4.18772,-0.838902)--(-4.18769,-0.839812)--(-4.18765,-0.840721)--(-4.18761,-0.841631)--(-4.18758,-0.84254)--(-4.18754,-0.843449)--
> (-4.1875,-0.844358)--(-4.18746,-0.845267)--(-4.18742,-0.846175)--(-4.18738,-0.847083)--(-4.18734,-0.847991)--(-4.18731,-0.848899)--(-4.18727,-0.849806)--(-4.18722,-0.850713)--(-4.18718,-0.85162)--(-4.18714,-0.852527)--(-4.1871,-0.853434)--(-4.18706,-0.85434)--(-4.18702,-0.855246)--(-4.18697,-0.856151)--(-4.18693,-0.857057)--(-4.18689,-0.857962)--(-4.18684,-0.858867)--(-4.1868,-0.859772)--(-4.18676,-0.860677)--(-4.18671,-0.861581)--(-4.18667,-0.862485)--(-4.18662,-0.863389)--(-4.18657,-0.864292)--
> (-4.18653,-0.865196)--(-4.18648,-0.866099)--(-4.18643,-0.867002)--(-4.18639,-0.867904)--(-4.18634,-0.868807)--(-4.18629,-0.869709)--(-4.18624,-0.870611)--(-4.18619,-0.871513)--(-4.18615,-0.872414)--(-4.1861,-0.873315)--(-4.18605,-0.874216)--(-4.186,-0.875117)--(-4.18595,-0.876018)--(-4.18589,-0.876918)--(-4.18584,-0.877818)--(-4.18579,-0.878718)--(-4.18574,-0.879617)--(-4.18569,-0.880517)--(-4.18563,-0.881416)--(-4.18558,-0.882315)--(-4.18553,-0.883213)--(-4.18547,-0.884112)--(-4.18542,-0.88501)--
> (-4.18537,-0.885908)--(-4.18531,-0.886806)--(-4.18526,-0.887703)--(-4.1852,-0.8886)--(-4.18515,-0.889497)--(-4.18509,-0.890394)--(-4.18503,-0.89129)--(-4.18498,-0.892187)--(-4.18492,-0.893083)--(-4.18486,-0.893979)--(-4.1848,-0.894874)--(-4.18474,-0.89577)--(-4.18469,-0.896665)--(-4.18463,-0.89756)--(-4.18457,-0.898454)--(-4.18451,-0.899349)--(-4.18445,-0.900243)--(-4.18439,-0.901137)--(-4.18433,-0.90203)--(-4.18427,-0.902924)--(-4.1842,-0.903817)--(-4.18414,-0.90471)--(-4.18408,-0.905603)--
> (-4.18402,-0.906495)--(-4.18396,-0.907388)--(-4.18389,-0.90828)--(-4.18383,-0.909172)--(-4.18376,-0.910063)--(-4.1837,-0.910955)--(-4.18364,-0.911846)--(-4.18357,-0.912737)--(-4.18351,-0.913627)--(-4.18344,-0.914518)--(-4.18337,-0.915408)--(-4.18331,-0.916298)--(-4.18324,-0.917188)--(-4.18317,-0.918077)--(-4.18311,-0.918966)--(-4.18304,-0.919856)--(-4.18297,-0.920744)--(-4.1829,-0.921633)--(-4.18283,-0.922521)--(-4.18277,-0.923409)--(-4.1827,-0.924297)--(-4.18263,-0.925185)--(-4.18256,-0.926072)--
> (-4.18249,-0.92696)--(-4.18241,-0.927847)--(-4.18234,-0.928733)--(-4.18227,-0.92962)--(-4.1822,-0.930506)--(-4.18213,-0.931392)--(-4.18206,-0.932278)--(-4.18198,-0.933164)--(-4.18191,-0.934049)--(-4.18184,-0.934934)--(-4.18176,-0.935819)--(-4.18169,-0.936704)--(-4.18161,-0.937588)--(-4.18154,-0.938472)--(-4.18146,-0.939356)--(-4.18139,-0.94024)--(-4.18131,-0.941123)--(-4.18124,-0.942007)--(-4.18116,-0.94289)--(-4.18108,-0.943773)--(-4.181,-0.944655)--(-4.18093,-0.945537)--(-4.18085,-0.94642)--
> (-4.18077,-0.947301)--(-4.18069,-0.948183)--(-4.18061,-0.949065)--(-4.18053,-0.949946)--(-4.18045,-0.950827)--(-4.18037,-0.951708)--(-4.18029,-0.952588)--(-4.18021,-0.953468)--(-4.18013,-0.954348)--(-4.18005,-0.955228)--(-4.17997,-0.956108)--(-4.17989,-0.956987)--(-4.1798,-0.957866)--(-4.17972,-0.958745)--(-4.17964,-0.959624)--(-4.17956,-0.960503)--(-4.17947,-0.961381)--(-4.17939,-0.962259)--(-4.1793,-0.963137)--(-4.17922,-0.964014)--(-4.17913,-0.964892)--(-4.17905,-0.965769)--
> (-4.17896,-0.966646)--(-4.17888,-0.967522)--(-4.17879,-0.968399)--(-4.1787,-0.969275)--(-4.17862,-0.970151)--(-4.17853,-0.971027)--(-4.17844,-0.971902)--(-4.17835,-0.972777)--(-4.17826,-0.973652)--(-4.17817,-0.974527)--(-4.17809,-0.975402)--(-4.178,-0.976276)--(-4.17791,-0.97715)--(-4.17782,-0.978024)--(-4.17773,-0.978898)--(-4.17763,-0.979772)--(-4.17754,-0.980645)--(-4.17745,-0.981518)--(-4.17736,-0.982391)--(-4.17727,-0.983263)--(-4.17718,-0.984136)--(-4.17708,-0.985008)--(-4.17699,-0.98588)--
> (-4.1769,-0.986751)--(-4.1768,-0.987623)--(-4.17671,-0.988494)--(-4.17661,-0.989365)--(-4.17652,-0.990236)--(-4.17642,-0.991106)--(-4.17633,-0.991977)--(-4.17623,-0.992847)--(-4.17614,-0.993717)--(-4.17604,-0.994586)--(-4.17594,-0.995456)--(-4.17585,-0.996325)--(-4.17575,-0.997194)--(-4.17565,-0.998063)--(-4.17555,-0.998931)--(-4.17545,-0.999799)--(-4.17536,-1.00067)--(-4.17526,-1.00154)--(-4.17516,-1.0024)--(-4.17506,-1.00327)--(-4.17496,-1.00414)--(-4.17486,-1.005)--(-4.17476,-1.00587)--
> (-4.17466,-1.00674)--(-4.17455,-1.0076)--(-4.17445,-1.00847)--(-4.17435,-1.00934)--(-4.17425,-1.0102)--(-4.17414,-1.01107)--(-4.17404,-1.01193)--(-4.17394,-1.0128)--(-4.17383,-1.01366)--(-4.17373,-1.01453)--(-4.17363,-1.01539)--(-4.17352,-1.01625)--(-4.17342,-1.01712)--(-4.17331,-1.01798)--(-4.17321,-1.01885)--(-4.1731,-1.01971)--(-4.17299,-1.02057)--(-4.17289,-1.02143)--(-4.17278,-1.0223)--(-4.17267,-1.02316)--(-4.17256,-1.02402)--(-4.17246,-1.02488)--(-4.17235,-1.02575)--(-4.17224,-1.02661)--
> (-4.17213,-1.02747)--(-4.17202,-1.02833)--(-4.17191,-1.02919)--(-4.1718,-1.03005)--(-4.17169,-1.03091)--(-4.17158,-1.03177)--(-4.17147,-1.03263)--(-4.17136,-1.03349)--(-4.17125,-1.03435)--(-4.17114,-1.03521)--(-4.17102,-1.03607)--(-4.17091,-1.03693)--(-4.1708,-1.03778)--(-4.17068,-1.03864)--(-4.17057,-1.0395)--(-4.17046,-1.04036)--(-4.17034,-1.04122)--(-4.17023,-1.04207)--(-4.17011,-1.04293)--(-4.17,-1.04379)--(-4.16988,-1.04465)--(-4.16977,-1.0455)--(-4.16965,-1.04636)--(-4.16954,-1.04721)--
> (-4.16942,-1.04807)--(-4.1693,-1.04893)--(-4.16918,-1.04978)--(-4.16907,-1.05064)--(-4.16895,-1.05149)--(-4.16883,-1.05235)--(-4.16871,-1.0532)--(-4.16859,-1.05406)--(-4.16847,-1.05491)--(-4.16835,-1.05576)--(-4.16823,-1.05662)--(-4.16811,-1.05747)--(-4.16799,-1.05832)--(-4.16787,-1.05918)--(-4.16775,-1.06003)--(-4.16763,-1.06088)--(-4.16751,-1.06173)--(-4.16738,-1.06259)--(-4.16726,-1.06344)--(-4.16714,-1.06429)--(-4.16702,-1.06514)--(-4.16689,-1.06599)--(-4.16677,-1.06684)--(-4.16665,-1.0677)--
> (-4.16652,-1.06855)--(-4.1664,-1.0694)--(-4.16627,-1.07025)--(-4.16615,-1.0711)--(-4.16602,-1.07195)--(-4.16589,-1.0728)--(-4.16577,-1.07365)--(-4.16564,-1.07449)--(-4.16551,-1.07534)--(-4.16539,-1.07619)--(-4.16526,-1.07704)--(-4.16513,-1.07789)--(-4.165,-1.07874)--(-4.16487,-1.07959)--(-4.16475,-1.08043)--(-4.16462,-1.08128)--(-4.16449,-1.08213)--(-4.16436,-1.08297)--(-4.16423,-1.08382)--(-4.1641,-1.08467)--(-4.16397,-1.08551)--(-4.16383,-1.08636)--(-4.1637,-1.08721)--(-4.16357,-1.08805)--
> (-4.16344,-1.0889)--(-4.16331,-1.08974)--(-4.16317,-1.09059)--(-4.16304,-1.09143)--(-4.16291,-1.09228)--(-4.16277,-1.09312)--(-4.16264,-1.09397)--(-4.16251,-1.09481)--(-4.16237,-1.09565)--(-4.16224,-1.0965)--(-4.1621,-1.09734)--(-4.16197,-1.09818)--(-4.16183,-1.09903)--(-4.16169,-1.09987)--(-4.16156,-1.10071)--(-4.16142,-1.10155)--(-4.16128,-1.1024)--(-4.16115,-1.10324)--(-4.16101,-1.10408)--(-4.16087,-1.10492)--(-4.16073,-1.10576)--(-4.16059,-1.1066)--(-4.16046,-1.10744)--(-4.16032,-1.10828)--
> (-4.16018,-1.10912)--(-4.16004,-1.10997)--(-4.1599,-1.11081)--(-4.15976,-1.11164)--(-4.15962,-1.11248)--(-4.15947,-1.11332)--(-4.15933,-1.11416)--(-4.15919,-1.115)--(-4.15905,-1.11584)--(-4.15891,-1.11668)--(-4.15876,-1.11752)--(-4.15862,-1.11835)--(-4.15848,-1.11919)--(-4.15833,-1.12003)--(-4.15819,-1.12087)--(-4.15805,-1.1217)--(-4.1579,-1.12254)--(-4.15776,-1.12338)--(-4.15761,-1.12421)--(-4.15747,-1.12505)--(-4.15732,-1.12589)--(-4.15717,-1.12672)--(-4.15703,-1.12756)--(-4.15688,-1.12839)--
> (-4.15673,-1.12923)--(-4.15659,-1.13006)--(-4.15644,-1.1309)--(-4.15629,-1.13173)--(-4.15614,-1.13257)--(-4.15599,-1.1334)--(-4.15584,-1.13424)--(-4.1557,-1.13507)--(-4.15555,-1.1359)--(-4.1554,-1.13674)--(-4.15525,-1.13757)--(-4.1551,-1.1384)--(-4.15495,-1.13924)--(-4.15479,-1.14007)--(-4.15464,-1.1409)--(-4.15449,-1.14173)--(-4.15434,-1.14257)--(-4.15419,-1.1434)--(-4.15403,-1.14423)--(-4.15388,-1.14506)--(-4.15373,-1.14589)--(-4.15357,-1.14672)--(-4.15342,-1.14755)--(-4.15327,-1.14838)--
> (-4.15311,-1.14921)--(-4.15296,-1.15004)--(-4.1528,-1.15087)--(-4.15265,-1.1517)--(-4.15249,-1.15253)--(-4.15234,-1.15336)--(-4.15218,-1.15419)--(-4.15202,-1.15502)--(-4.15187,-1.15585)--(-4.15171,-1.15668)--(-4.15155,-1.1575)--(-4.15139,-1.15833)--(-4.15124,-1.15916)--(-4.15108,-1.15999)--(-4.15092,-1.16081)--(-4.15076,-1.16164)--(-4.1506,-1.16247)--(-4.15044,-1.16329)--(-4.15028,-1.16412)--(-4.15012,-1.16495)--(-4.14996,-1.16577)--(-4.1498,-1.1666)--(-4.14964,-1.16742)--(-4.14948,-1.16825)--
> (-4.14932,-1.16908)--(-4.14915,-1.1699)--(-4.14899,-1.17073)--(-4.14883,-1.17155)--(-4.14867,-1.17237)--(-4.1485,-1.1732)--(-4.14834,-1.17402)--(-4.14817,-1.17485)--(-4.14801,-1.17567)--(-4.14785,-1.17649)--(-4.14768,-1.17732)--(-4.14752,-1.17814)--(-4.14735,-1.17896)--(-4.14719,-1.17978)--(-4.14702,-1.18061)--(-4.14685,-1.18143)--(-4.14669,-1.18225)--(-4.14652,-1.18307)--(-4.14635,-1.18389)--(-4.14618,-1.18472)--(-4.14602,-1.18554)--(-4.14585,-1.18636)--(-4.14568,-1.18718)--(-4.14551,-1.188)--
> (-4.14534,-1.18882)--(-4.14517,-1.18964)--(-4.145,-1.19046)--(-4.14483,-1.19128)--(-4.14466,-1.1921)--(-4.14449,-1.19292)--(-4.14432,-1.19374)--(-4.14415,-1.19456)--(-4.14398,-1.19537)--(-4.14381,-1.19619)--(-4.14364,-1.19701)--(-4.14346,-1.19783)--(-4.14329,-1.19865)--(-4.14312,-1.19946)--(-4.14295,-1.20028)--(-4.14277,-1.2011)--(-4.1426,-1.20192)--(-4.14242,-1.20273)--(-4.14225,-1.20355)--(-4.14208,-1.20437)--(-4.1419,-1.20518)--(-4.14172,-1.206)--(-4.14155,-1.20681)--(-4.14137,-1.20763)--
> (-4.1412,-1.20844)--(-4.14102,-1.20926)--(-4.14084,-1.21007)--(-4.14067,-1.21089)--(-4.14049,-1.2117)--(-4.14031,-1.21252)--(-4.14013,-1.21333)--(-4.13996,-1.21415)--(-4.13978,-1.21496)--(-4.1396,-1.21577)--(-4.13942,-1.21659)--(-4.13924,-1.2174)--(-4.13906,-1.21821)--(-4.13888,-1.21903)--(-4.1387,-1.21984)--(-4.13852,-1.22065)--(-4.13834,-1.22146)--(-4.13816,-1.22227)--(-4.13798,-1.22309)--(-4.13779,-1.2239)--(-4.13761,-1.22471)--(-4.13743,-1.22552)--(-4.13725,-1.22633)--(-4.13706,-1.22714)--
> (-4.13688,-1.22795)--(-4.1367,-1.22876)--(-4.13651,-1.22957)--(-4.13633,-1.23038)--(-4.13614,-1.23119)--(-4.13596,-1.232)--(-4.13577,-1.23281)--(-4.13559,-1.23362)--(-4.1354,-1.23443)--(-4.13522,-1.23524)--(-4.13503,-1.23605)--(-4.13484,-1.23685)--(-4.13466,-1.23766)--(-4.13447,-1.23847)--(-4.13428,-1.23928)--(-4.1341,-1.24009)--(-4.13391,-1.24089)--(-4.13372,-1.2417)--(-4.13353,-1.24251)--(-4.13334,-1.24331)--(-4.13315,-1.24412)--(-4.13296,-1.24493)--(-4.13277,-1.24573)--(-4.13258,-1.24654)--
> (-4.13239,-1.24734)--(-4.1322,-1.24815)--(-4.13201,-1.24896)--(-4.13182,-1.24976)--(-4.13163,-1.25057)--(-4.13144,-1.25137)--(-4.13124,-1.25217)--(-4.13105,-1.25298)--(-4.13086,-1.25378)--(-4.13067,-1.25459)--(-4.13047,-1.25539)--(-4.13028,-1.25619)--(-4.13009,-1.257)--(-4.12989,-1.2578)--(-4.1297,-1.2586)--(-4.1295,-1.25941)--(-4.12931,-1.26021)--(-4.12911,-1.26101)--(-4.12892,-1.26181)--(-4.12872,-1.26262)--(-4.12852,-1.26342)--(-4.12833,-1.26422)--(-4.12813,-1.26502)--(-4.12793,-1.26582)--
> (-4.12774,-1.26662)--(-4.12754,-1.26742)--(-4.12734,-1.26822)--(-4.12714,-1.26902)--(-4.12694,-1.26982)--(-4.12674,-1.27062)--(-4.12655,-1.27142)--(-4.12635,-1.27222)--(-4.12615,-1.27302)--(-4.12595,-1.27382)--(-4.12575,-1.27462)--(-4.12555,-1.27542)--(-4.12534,-1.27622)--(-4.12514,-1.27702)--(-4.12494,-1.27781)--(-4.12474,-1.27861)--(-4.12454,-1.27941)--(-4.12434,-1.28021)--(-4.12413,-1.281)--(-4.12393,-1.2818)--(-4.12373,-1.2826)--(-4.12352,-1.2834)--(-4.12332,-1.28419)--(-4.12312,-1.28499)--
> (-4.12291,-1.28579)--(-4.12271,-1.28658)--(-4.1225,-1.28738)--(-4.1223,-1.28817)--(-4.12209,-1.28897)--(-4.12189,-1.28976)--(-4.12168,-1.29056)--(-4.12147,-1.29135)--(-4.12127,-1.29215)--(-4.12106,-1.29294)--(-4.12085,-1.29374)--(-4.12064,-1.29453)--(-4.12044,-1.29532)--(-4.12023,-1.29612)--(-4.12002,-1.29691)--(-4.11981,-1.2977)--(-4.1196,-1.2985)--(-4.11939,-1.29929)--(-4.11918,-1.30008)--(-4.11897,-1.30088)--(-4.11876,-1.30167)--(-4.11855,-1.30246)--(-4.11834,-1.30325)--(-4.11813,-1.30404)--
> (-4.11792,-1.30484)--(-4.11771,-1.30563)--(-4.1175,-1.30642)--(-4.11729,-1.30721)--(-4.11707,-1.308)--(-4.11686,-1.30879)--(-4.11665,-1.30958)--(-4.11643,-1.31037)--(-4.11622,-1.31116)--(-4.11601,-1.31195)--(-4.11579,-1.31274)--(-4.11558,-1.31353)--(-4.11536,-1.31432)--(-4.11515,-1.31511)--(-4.11493,-1.3159)--(-4.11472,-1.31668)--(-4.1145,-1.31747)--(-4.11429,-1.31826)--(-4.11407,-1.31905)--(-4.11385,-1.31984)--(-4.11364,-1.32063)--(-4.11342,-1.32141)--(-4.1132,-1.3222)--(-4.11298,-1.32299)--
> (-4.11276,-1.32377)--(-4.11255,-1.32456)--(-4.11233,-1.32535)--(-4.11211,-1.32613)--(-4.11189,-1.32692)--(-4.11167,-1.32771)--(-4.11145,-1.32849)--(-4.11123,-1.32928)--(-4.11101,-1.33006)--(-4.11079,-1.33085)--(-4.11057,-1.33163)--(-4.11035,-1.33242)--(-4.11013,-1.3332)--(-4.1099,-1.33399)--(-4.10968,-1.33477)--(-4.10946,-1.33555)--(-4.10924,-1.33634)--(-4.10901,-1.33712)--(-4.10879,-1.3379)--(-4.10857,-1.33869)--(-4.10834,-1.33947)--(-4.10812,-1.34025)--(-4.10789,-1.34104)--(-4.10767,-1.34182)--
> (-4.10744,-1.3426)--(-4.10722,-1.34338)--(-4.10699,-1.34417)--(-4.10677,-1.34495)--(-4.10654,-1.34573)--(-4.10632,-1.34651)--(-4.10609,-1.34729)--(-4.10586,-1.34807)--(-4.10564,-1.34885)--(-4.10541,-1.34963)--(-4.10518,-1.35041)--(-4.10495,-1.35119)--(-4.10472,-1.35197)--(-4.1045,-1.35275)--(-4.10427,-1.35353)--(-4.10404,-1.35431)--(-4.10381,-1.35509)--(-4.10358,-1.35587)--(-4.10335,-1.35665)--(-4.10312,-1.35743)--(-4.10289,-1.35821)--(-4.10266,-1.35899)--(-4.10243,-1.35976)--(-4.10219,-1.36054)--
> (-4.10196,-1.36132)--(-4.10173,-1.3621)--(-4.1015,-1.36287)--(-4.10127,-1.36365)--(-4.10103,-1.36443)--(-4.1008,-1.3652)--(-4.10057,-1.36598)--(-4.10033,-1.36676)--(-4.1001,-1.36753)--(-4.09986,-1.36831)--(-4.09963,-1.36909)--(-4.09939,-1.36986)--(-4.09916,-1.37064)--(-4.09892,-1.37141)--(-4.09869,-1.37219)--(-4.09845,-1.37296)--(-4.09822,-1.37374)--(-4.09798,-1.37451)--(-4.09774,-1.37529)--(-4.09751,-1.37606)--(-4.09727,-1.37683)--(-4.09703,-1.37761)--(-4.09679,-1.37838)--(-4.09656,-1.37915)--
> (-4.09632,-1.37993)--(-4.09608,-1.3807)--(-4.09584,-1.38147)--(-4.0956,-1.38225)--(-4.09536,-1.38302)--(-4.09512,-1.38379)--(-4.09488,-1.38456)--(-4.09464,-1.38533)--(-4.0944,-1.38611)--(-4.09416,-1.38688)--(-4.09392,-1.38765)--(-4.09368,-1.38842)--(-4.09343,-1.38919)--(-4.09319,-1.38996)--(-4.09295,-1.39073)--(-4.09271,-1.3915)--(-4.09246,-1.39227)--(-4.09222,-1.39304)--(-4.09198,-1.39381)--(-4.09173,-1.39458)--(-4.09149,-1.39535)--(-4.09125,-1.39612)--(-4.091,-1.39689)--(-4.09076,-1.39766)--
> (-4.09051,-1.39843)--(-4.09027,-1.3992)--(-4.09002,-1.39997)--(-4.08977,-1.40073)--(-4.08953,-1.4015)--(-4.08928,-1.40227)--(-4.08903,-1.40304)--(-4.08879,-1.4038)--(-4.08854,-1.40457)--(-4.08829,-1.40534)--(-4.08804,-1.40611)--(-4.0878,-1.40687)--(-4.08755,-1.40764)--(-4.0873,-1.4084)--(-4.08705,-1.40917)--(-4.0868,-1.40994)--(-4.08655,-1.4107)--(-4.0863,-1.41147)--(-4.08605,-1.41223)--(-4.0858,-1.413)--(-4.08555,-1.41376)--(-4.0853,-1.41453)--(-4.08505,-1.41529)--(-4.0848,-1.41606)--
> (-4.08454,-1.41682)--(-4.08429,-1.41759)--(-4.08404,-1.41835)--(-4.08379,-1.41911)--(-4.08353,-1.41988)--(-4.08328,-1.42064)--(-4.08303,-1.4214)--(-4.08277,-1.42217)--(-4.08252,-1.42293)--(-4.08227,-1.42369)--(-4.08201,-1.42445)--(-4.08176,-1.42522)--(-4.0815,-1.42598)--(-4.08125,-1.42674)--(-4.08099,-1.4275)--(-4.08073,-1.42826)--(-4.08048,-1.42903)--(-4.08022,-1.42979)--(-4.07997,-1.43055)--(-4.07971,-1.43131)--(-4.07945,-1.43207)--(-4.07919,-1.43283)--(-4.07894,-1.43359)--(-4.07868,-1.43435)--
> (-4.07842,-1.43511)--(-4.07816,-1.43587)--(-4.0779,-1.43663)--(-4.07764,-1.43739)--(-4.07738,-1.43815)--(-4.07712,-1.43891)--(-4.07686,-1.43966)--(-4.0766,-1.44042)--(-4.07634,-1.44118)--(-4.07608,-1.44194)--(-4.07582,-1.4427)--(-4.07556,-1.44346)--(-4.0753,-1.44421)--(-4.07504,-1.44497)--(-4.07477,-1.44573)--(-4.07451,-1.44649)--(-4.07425,-1.44724)--(-4.07398,-1.448)--(-4.07372,-1.44876)--(-4.07346,-1.44951)--(-4.07319,-1.45027)--(-4.07293,-1.45102)--(-4.07267,-1.45178)--(-4.0724,-1.45254)--
> (-4.07214,-1.45329)--(-4.07187,-1.45405)--(-4.0716,-1.4548)--(-4.07134,-1.45556)--(-4.07107,-1.45631)--(-4.07081,-1.45707)--(-4.07054,-1.45782)--(-4.07027,-1.45857)--(-4.07001,-1.45933)--(-4.06974,-1.46008)--(-4.06947,-1.46084)--(-4.0692,-1.46159)--(-4.06893,-1.46234)--(-4.06867,-1.4631)--(-4.0684,-1.46385)--(-4.06813,-1.4646)--(-4.06786,-1.46535)--(-4.06759,-1.46611)--(-4.06732,-1.46686)--(-4.06705,-1.46761)--(-4.06678,-1.46836)--(-4.06651,-1.46911)--(-4.06624,-1.46987)--(-4.06597,-1.47062)--
> (-4.06569,-1.47137)--(-4.06542,-1.47212)--(-4.06515,-1.47287)--(-4.06488,-1.47362)--(-4.0646,-1.47437)--(-4.06433,-1.47512)--(-4.06406,-1.47587)--(-4.06379,-1.47662)--(-4.06351,-1.47737)--(-4.06324,-1.47812)--(-4.06296,-1.47887)--(-4.06269,-1.47962)--(-4.06241,-1.48037)--(-4.06214,-1.48112)--(-4.06186,-1.48187)--(-4.06159,-1.48261)--(-4.06131,-1.48336)--(-4.06104,-1.48411)--(-4.06076,-1.48486)--(-4.06048,-1.48561)--(-4.06021,-1.48635)--(-4.05993,-1.4871)--(-4.05965,-1.48785)--(-4.05937,-1.4886)--
> (-4.0591,-1.48934)--(-4.05882,-1.49009)--(-4.05854,-1.49084)--(-4.05826,-1.49158)--(-4.05798,-1.49233)--(-4.0577,-1.49307)--(-4.05742,-1.49382)--(-4.05714,-1.49457)--(-4.05686,-1.49531)--(-4.05658,-1.49606)--(-4.0563,-1.4968)--(-4.05602,-1.49755)--(-4.05574,-1.49829)--(-4.05546,-1.49904)--(-4.05517,-1.49978)--(-4.05489,-1.50052)--(-4.05461,-1.50127)--(-4.05433,-1.50201)--(-4.05404,-1.50276)--(-4.05376,-1.5035)--(-4.05348,-1.50424)--(-4.05319,-1.50499)--(-4.05291,-1.50573)--(-4.05262,-1.50647)--
> (-4.05234,-1.50721)--(-4.05206,-1.50796)--(-4.05177,-1.5087)--(-4.05148,-1.50944)--(-4.0512,-1.51018)--(-4.05091,-1.51092)--(-4.05063,-1.51167)--(-4.05034,-1.51241)--(-4.05005,-1.51315)--(-4.04977,-1.51389)--(-4.04948,-1.51463)--(-4.04919,-1.51537)--(-4.0489,-1.51611)--(-4.04862,-1.51685)--(-4.04833,-1.51759)--(-4.04804,-1.51833)--(-4.04775,-1.51907)--(-4.04746,-1.51981)--(-4.04717,-1.52055)--(-4.04688,-1.52129)--(-4.04659,-1.52203)--(-4.0463,-1.52277)--(-4.04601,-1.52351)--(-4.04572,-1.52425)--
> (-4.04543,-1.52498)--(-4.04514,-1.52572)--(-4.04485,-1.52646)--(-4.04455,-1.5272)--(-4.04426,-1.52794)--(-4.04397,-1.52867)--(-4.04368,-1.52941)--(-4.04338,-1.53015)--(-4.04309,-1.53088)--(-4.0428,-1.53162)--(-4.0425,-1.53236)--(-4.04221,-1.53309)--(-4.04192,-1.53383)--(-4.04162,-1.53457)--(-4.04133,-1.5353)--(-4.04103,-1.53604)--(-4.04074,-1.53677)--(-4.04044,-1.53751)--(-4.04014,-1.53824)--(-4.03985,-1.53898)--(-4.03955,-1.53971)--(-4.03926,-1.54045)--(-4.03896,-1.54118)--(-4.03866,-1.54192)--
> (-4.03836,-1.54265)--(-4.03807,-1.54339)--(-4.03777,-1.54412)--(-4.03747,-1.54485)--(-4.03717,-1.54559)--(-4.03687,-1.54632)--(-4.03657,-1.54705)--(-4.03627,-1.54779)--(-4.03597,-1.54852)--(-4.03567,-1.54925)--(-4.03537,-1.54998)--(-4.03507,-1.55072)--(-4.03477,-1.55145)--(-4.03447,-1.55218)--(-4.03417,-1.55291)--(-4.03387,-1.55364)--(-4.03357,-1.55437)--(-4.03326,-1.55511)--(-4.03296,-1.55584)--(-4.03266,-1.55657)--(-4.03236,-1.5573)--(-4.03205,-1.55803)--(-4.03175,-1.55876)--
> (-4.03145,-1.55949)--(-4.03114,-1.56022)--(-4.03084,-1.56095)--(-4.03053,-1.56168)--(-4.03023,-1.56241)--(-4.02992,-1.56314)--(-4.02962,-1.56387)--(-4.02931,-1.5646)--(-4.02901,-1.56533)--(-4.0287,-1.56605)--(-4.0284,-1.56678)--(-4.02809,-1.56751)--(-4.02778,-1.56824)--(-4.02747,-1.56897)--(-4.02717,-1.56969)--(-4.02686,-1.57042)--(-4.02655,-1.57115)--(-4.02624,-1.57188)--(-4.02593,-1.5726)--(-4.02563,-1.57333)--(-4.02532,-1.57406)--(-4.02501,-1.57478)--(-4.0247,-1.57551)--(-4.02439,-1.57624)--
> (-4.02408,-1.57696)--(-4.02377,-1.57769)--(-4.02346,-1.57841)--(-4.02315,-1.57914)--(-4.02284,-1.57986)--(-4.02252,-1.58059)--(-4.02221,-1.58132)--(-4.0219,-1.58204)--(-4.02159,-1.58276)--(-4.02128,-1.58349)--(-4.02096,-1.58421)--(-4.02065,-1.58494)--(-4.02034,-1.58566)--(-4.02002,-1.58639)--(-4.01971,-1.58711)--(-4.01939,-1.58783)--(-4.01908,-1.58856)--(-4.01877,-1.58928)--(-4.01845,-1.59)--(-4.01814,-1.59072)--(-4.01782,-1.59145)--(-4.0175,-1.59217)--(-4.01719,-1.59289)--(-4.01687,-1.59361)--
> (-4.01656,-1.59434)--(-4.01624,-1.59506)--(-4.01592,-1.59578)--(-4.0156,-1.5965)--(-4.01529,-1.59722)--(-4.01497,-1.59794)--(-4.01465,-1.59866)--(-4.01433,-1.59938)--(-4.01401,-1.60011)--(-4.0137,-1.60083)--(-4.01338,-1.60155)--(-4.01306,-1.60227)--(-4.01274,-1.60299)--(-4.01242,-1.60371)--(-4.0121,-1.60443)--(-4.01178,-1.60514)--(-4.01146,-1.60586)--(-4.01113,-1.60658)--(-4.01081,-1.6073)--(-4.01049,-1.60802)--(-4.01017,-1.60874)--(-4.00985,-1.60946)--(-4.00953,-1.61018)--(-4.0092,-1.61089)--
> (-4.00888,-1.61161)--(-4.00856,-1.61233)--(-4.00823,-1.61305)--(-4.00791,-1.61376)--(-4.00759,-1.61448)--(-4.00726,-1.6152)--(-4.00694,-1.61591)--(-4.00661,-1.61663)--(-4.00629,-1.61735)--(-4.00596,-1.61806)--(-4.00564,-1.61878)--(-4.00531,-1.6195)--(-4.00498,-1.62021)--(-4.00466,-1.62093)--(-4.00433,-1.62164)--(-4.004,-1.62236)--(-4.00368,-1.62307)--(-4.00335,-1.62379)--(-4.00302,-1.6245)--(-4.00269,-1.62522)--(-4.00237,-1.62593)--(-4.00204,-1.62665)--(-4.00171,-1.62736)--(-4.00138,-1.62808)--
> (-4.00105,-1.62879)--(-4.00072,-1.6295)--(-4.00039,-1.63022)--(-4.00006,-1.63093)--(-3.99973,-1.63164)--(-3.9994,-1.63236)--(-3.99907,-1.63307)--(-3.99874,-1.63378)--(-3.99841,-1.63449)--(-3.99808,-1.63521)--(-3.99774,-1.63592)--(-3.99741,-1.63663)--(-3.99708,-1.63734)--(-3.99675,-1.63805)--(-3.99641,-1.63876)--(-3.99608,-1.63948)--(-3.99575,-1.64019)--(-3.99541,-1.6409)--(-3.99508,-1.64161)--(-3.99474,-1.64232)--(-3.99441,-1.64303)--(-3.99407,-1.64374)--(-3.99374,-1.64445)--(-3.9934,-1.64516)--
> (-3.99307,-1.64587)--(-3.99273,-1.64658)--(-3.9924,-1.64729)--(-3.99206,-1.648)--(-3.99172,-1.64871)--(-3.99139,-1.64942)--(-3.99105,-1.65013)--(-3.99071,-1.65083)--(-3.99037,-1.65154)--(-3.99004,-1.65225)--(-3.9897,-1.65296)--(-3.98936,-1.65367)--(-3.98902,-1.65437)--(-3.98868,-1.65508)--(-3.98834,-1.65579)--(-3.988,-1.6565)--(-3.98766,-1.6572)--(-3.98732,-1.65791)--(-3.98698,-1.65862)--(-3.98664,-1.65932)--(-3.9863,-1.66003)--(-3.98596,-1.66074)--(-3.98562,-1.66144)--(-3.98528,-1.66215)--
> (-3.98493,-1.66286)--(-3.98459,-1.66356)--(-3.98425,-1.66427)--(-3.98391,-1.66497)--(-3.98356,-1.66568)--(-3.98322,-1.66638)--(-3.98288,-1.66709)--(-3.98253,-1.66779)--(-3.98219,-1.6685)--(-3.98184,-1.6692)--(-3.9815,-1.6699)--(-3.98115,-1.67061)--(-3.98081,-1.67131)--(-3.98046,-1.67202)--(-3.98012,-1.67272)--(-3.97977,-1.67342)--(-3.97943,-1.67413)--(-3.97908,-1.67483)--(-3.97873,-1.67553)--(-3.97839,-1.67623)--(-3.97804,-1.67694)--(-3.97769,-1.67764)--(-3.97734,-1.67834)--(-3.977,-1.67904)--
> (-3.97665,-1.67974)--(-3.9763,-1.68045)--(-3.97595,-1.68115)--(-3.9756,-1.68185)--(-3.97525,-1.68255)--(-3.9749,-1.68325)--(-3.97455,-1.68395)--(-3.9742,-1.68465)--(-3.97385,-1.68535)--(-3.9735,-1.68605)--(-3.97315,-1.68675)--(-3.9728,-1.68745)--(-3.97245,-1.68815)--(-3.97209,-1.68885)--(-3.97174,-1.68955)--(-3.97139,-1.69025)--(-3.97104,-1.69095)--(-3.97068,-1.69165)--(-3.97033,-1.69235)--(-3.96998,-1.69305)--(-3.96962,-1.69375)--(-3.96927,-1.69445)--(-3.96892,-1.69514)--(-3.96856,-1.69584)--
> (-3.96821,-1.69654)--(-3.96785,-1.69724)--(-3.9675,-1.69793)--(-3.96714,-1.69863)--(-3.96679,-1.69933)--(-3.96643,-1.70003)--(-3.96607,-1.70072)--(-3.96572,-1.70142)--(-3.96536,-1.70212)--(-3.965,-1.70281)--(-3.96465,-1.70351)--(-3.96429,-1.70421)--(-3.96393,-1.7049)--(-3.96357,-1.7056)--(-3.96321,-1.70629)--(-3.96285,-1.70699)--(-3.9625,-1.70768)--(-3.96214,-1.70838)--(-3.96178,-1.70907)--(-3.96142,-1.70977)--(-3.96106,-1.71046)--(-3.9607,-1.71116)--(-3.96034,-1.71185)--(-3.95998,-1.71255)--
> (-3.95961,-1.71324)--(-3.95925,-1.71393)--(-3.95889,-1.71463)--(-3.95853,-1.71532)--(-3.95817,-1.71601)--(-3.95781,-1.71671)--(-3.95744,-1.7174)--(-3.95708,-1.71809)--(-3.95672,-1.71879)--(-3.95635,-1.71948)--(-3.95599,-1.72017)--(-3.95563,-1.72086)--(-3.95526,-1.72155)--(-3.9549,-1.72225)--(-3.95453,-1.72294)--(-3.95417,-1.72363)--(-3.9538,-1.72432)--(-3.95344,-1.72501)--(-3.95307,-1.7257)--(-3.9527,-1.72639)--(-3.95234,-1.72708)--(-3.95197,-1.72778)--(-3.9516,-1.72847)--(-3.95124,-1.72916)--
> (-3.95087,-1.72985)--(-3.9505,-1.73054)--(-3.95013,-1.73123)--(-3.94977,-1.73191)--(-3.9494,-1.7326)--(-3.94903,-1.73329)--(-3.94866,-1.73398)--(-3.94829,-1.73467)--(-3.94792,-1.73536)--(-3.94755,-1.73605)--(-3.94718,-1.73674)--(-3.94681,-1.73743)--(-3.94644,-1.73811)--(-3.94607,-1.7388)--(-3.9457,-1.73949)--(-3.94533,-1.74018)--(-3.94496,-1.74086)--(-3.94458,-1.74155)--(-3.94421,-1.74224)--(-3.94384,-1.74293)--(-3.94347,-1.74361)--(-3.94309,-1.7443)--(-3.94272,-1.74499)--(-3.94235,-1.74567)--
> (-3.94197,-1.74636)--(-3.9416,-1.74704)--(-3.94123,-1.74773)--(-3.94085,-1.74842)--(-3.94048,-1.7491)--(-3.9401,-1.74979)--(-3.93973,-1.75047)--(-3.93935,-1.75116)--(-3.93897,-1.75184)--(-3.9386,-1.75253)--(-3.93822,-1.75321)--(-3.93785,-1.7539)--(-3.93747,-1.75458)--(-3.93709,-1.75526)--(-3.93671,-1.75595)--(-3.93634,-1.75663)--(-3.93596,-1.75732)--(-3.93558,-1.758)--(-3.9352,-1.75868)--(-3.93482,-1.75937)--(-3.93444,-1.76005)--(-3.93406,-1.76073)--(-3.93368,-1.76141)--(-3.9333,-1.7621)--
> (-3.93292,-1.76278)--(-3.93254,-1.76346)--(-3.93216,-1.76414)--(-3.93178,-1.76483)--(-3.9314,-1.76551)--(-3.93102,-1.76619)--(-3.93064,-1.76687)--(-3.93026,-1.76755)--(-3.92987,-1.76823)--(-3.92949,-1.76891)--(-3.92911,-1.76959)--(-3.92873,-1.77027)--(-3.92834,-1.77095)--(-3.92796,-1.77163)--(-3.92758,-1.77231)--(-3.92719,-1.77299)--(-3.92681,-1.77367)--(-3.92642,-1.77435)--(-3.92604,-1.77503)--(-3.92565,-1.77571)--(-3.92527,-1.77639)--(-3.92488,-1.77707)--(-3.9245,-1.77775)--(-3.92411,-1.77843)--
> (-3.92372,-1.77911)--(-3.92334,-1.77979)--(-3.92295,-1.78046)--(-3.92256,-1.78114)--(-3.92217,-1.78182)--(-3.92179,-1.7825)--(-3.9214,-1.78317)--(-3.92101,-1.78385)--(-3.92062,-1.78453)--(-3.92023,-1.78521)--(-3.91984,-1.78588)--(-3.91945,-1.78656)--(-3.91907,-1.78724)--(-3.91868,-1.78791)--(-3.91829,-1.78859)--(-3.91789,-1.78927)--(-3.9175,-1.78994)--(-3.91711,-1.79062)--(-3.91672,-1.79129)--(-3.91633,-1.79197)--(-3.91594,-1.79264)--(-3.91555,-1.79332)--(-3.91515,-1.79399)--(-3.91476,-1.79467)--
> (-3.91437,-1.79534)--(-3.91398,-1.79602)--(-3.91358,-1.79669)--(-3.91319,-1.79737)--(-3.9128,-1.79804)--(-3.9124,-1.79871)--(-3.91201,-1.79939)--(-3.91161,-1.80006)--(-3.91122,-1.80074)--(-3.91082,-1.80141)--(-3.91043,-1.80208)--(-3.91003,-1.80275)--(-3.90963,-1.80343)--(-3.90924,-1.8041)--(-3.90884,-1.80477)--(-3.90845,-1.80544)--(-3.90805,-1.80612)--(-3.90765,-1.80679)--(-3.90725,-1.80746)--(-3.90686,-1.80813)--(-3.90646,-1.8088)--(-3.90606,-1.80948)--(-3.90566,-1.81015)--(-3.90526,-1.81082)--
> (-3.90486,-1.81149)--(-3.90446,-1.81216)--(-3.90406,-1.81283)--(-3.90366,-1.8135)--(-3.90326,-1.81417)--(-3.90286,-1.81484)--(-3.90246,-1.81551)--(-3.90206,-1.81618)--(-3.90166,-1.81685)--(-3.90126,-1.81752)--(-3.90086,-1.81819)--(-3.90045,-1.81886)--(-3.90005,-1.81953)--(-3.89965,-1.8202)--(-3.89925,-1.82086)--(-3.89884,-1.82153)--(-3.89844,-1.8222)--(-3.89804,-1.82287)--(-3.89763,-1.82354)--(-3.89723,-1.82421)--(-3.89682,-1.82487)--(-3.89642,-1.82554)--(-3.89601,-1.82621)--(-3.89561,-1.82688)--
> (-3.8952,-1.82754)--(-3.8948,-1.82821)--(-3.89439,-1.82888)--(-3.89398,-1.82954)--(-3.89358,-1.83021)--(-3.89317,-1.83088)--(-3.89276,-1.83154)--(-3.89236,-1.83221)--(-3.89195,-1.83287)--(-3.89154,-1.83354)--(-3.89113,-1.8342)--(-3.89072,-1.83487)--(-3.89032,-1.83554)--(-3.88991,-1.8362)--(-3.8895,-1.83687)--(-3.88909,-1.83753)--(-3.88868,-1.83819)--(-3.88827,-1.83886)--(-3.88786,-1.83952)--(-3.88745,-1.84019)--(-3.88704,-1.84085)--(-3.88662,-1.84152)--(-3.88621,-1.84218)--(-3.8858,-1.84284)--
> (-3.88539,-1.84351)--(-3.88498,-1.84417)--(-3.88456,-1.84483)--(-3.88415,-1.84549)--(-3.88374,-1.84616)--(-3.88333,-1.84682)--(-3.88291,-1.84748)--(-3.8825,-1.84814)--(-3.88208,-1.84881)--(-3.88167,-1.84947)--(-3.88126,-1.85013)--(-3.88084,-1.85079)--(-3.88043,-1.85145)--(-3.88001,-1.85212)--(-3.87959,-1.85278)--(-3.87918,-1.85344)--(-3.87876,-1.8541)--(-3.87835,-1.85476)--(-3.87793,-1.85542)--(-3.87751,-1.85608)--(-3.87709,-1.85674)--(-3.87668,-1.8574)--(-3.87626,-1.85806)--(-3.87584,-1.85872)--
> (-3.87542,-1.85938)--(-3.875,-1.86004)--(-3.87459,-1.8607)--(-3.87417,-1.86136)--(-3.87375,-1.86202)--(-3.87333,-1.86267)--(-3.87291,-1.86333)--(-3.87249,-1.86399)--(-3.87207,-1.86465)--(-3.87165,-1.86531)--(-3.87122,-1.86597)--(-3.8708,-1.86662)--(-3.87038,-1.86728)--(-3.86996,-1.86794)--(-3.86954,-1.8686)--(-3.86912,-1.86925)--(-3.86869,-1.86991)--(-3.86827,-1.87057)--(-3.86785,-1.87123)--(-3.86742,-1.87188)--(-3.867,-1.87254)--(-3.86658,-1.87319)--(-3.86615,-1.87385)--(-3.86573,-1.87451)--
> (-3.8653,-1.87516)--(-3.86488,-1.87582)--(-3.86445,-1.87647)--(-3.86403,-1.87713)--(-3.8636,-1.87778)--(-3.86317,-1.87844)--(-3.86275,-1.87909)--(-3.86232,-1.87975)--(-3.86189,-1.8804)--(-3.86147,-1.88106)--(-3.86104,-1.88171)--(-3.86061,-1.88237)--(-3.86018,-1.88302)--(-3.85976,-1.88367)--(-3.85933,-1.88433)--(-3.8589,-1.88498)--(-3.85847,-1.88564)--(-3.85804,-1.88629)--(-3.85761,-1.88694)--(-3.85718,-1.88759)--(-3.85675,-1.88825)--(-3.85632,-1.8889)--(-3.85589,-1.88955)--(-3.85546,-1.8902)--
> (-3.85503,-1.89086)--(-3.8546,-1.89151)--(-3.85416,-1.89216)--(-3.85373,-1.89281)--(-3.8533,-1.89346)--(-3.85287,-1.89411)--(-3.85243,-1.89477)--(-3.852,-1.89542)--(-3.85157,-1.89607)--(-3.85113,-1.89672)--(-3.8507,-1.89737)--(-3.85027,-1.89802)--(-3.84983,-1.89867)--(-3.8494,-1.89932)--(-3.84896,-1.89997)--(-3.84853,-1.90062)--(-3.84809,-1.90127)--(-3.84766,-1.90192)--(-3.84722,-1.90257)--(-3.84678,-1.90322)--(-3.84635,-1.90387)--(-3.84591,-1.90452)--(-3.84547,-1.90516)--(-3.84504,-1.90581)--
> (-3.8446,-1.90646)--(-3.84416,-1.90711)--(-3.84372,-1.90776)--(-3.84328,-1.90841)--(-3.84284,-1.90905)--(-3.84241,-1.9097)--(-3.84197,-1.91035)--(-3.84153,-1.911)--(-3.84109,-1.91164)--(-3.84065,-1.91229)--(-3.84021,-1.91294)--(-3.83977,-1.91358)--(-3.83933,-1.91423)--(-3.83888,-1.91488)--(-3.83844,-1.91552)--(-3.838,-1.91617)--(-3.83756,-1.91681)--(-3.83712,-1.91746)--(-3.83667,-1.91811)--(-3.83623,-1.91875)--(-3.83579,-1.9194)--(-3.83534,-1.92004)--(-3.8349,-1.92069)--(-3.83446,-1.92133)--
> (-3.83401,-1.92198)--(-3.83357,-1.92262)--(-3.83312,-1.92327)--(-3.83268,-1.92391)--(-3.83223,-1.92455)--(-3.83179,-1.9252)--(-3.83134,-1.92584)--(-3.8309,-1.92649)--(-3.83045,-1.92713)--(-3.83,-1.92777)--(-3.82956,-1.92842)--(-3.82911,-1.92906)--(-3.82866,-1.9297)--(-3.82821,-1.93034)--(-3.82777,-1.93099)--(-3.82732,-1.93163)--(-3.82687,-1.93227)--(-3.82642,-1.93291)--(-3.82597,-1.93356)--(-3.82552,-1.9342)--(-3.82507,-1.93484)--(-3.82462,-1.93548)--(-3.82417,-1.93612)--(-3.82372,-1.93676)--
> (-3.82327,-1.9374)--(-3.82282,-1.93804)--(-3.82237,-1.93869)--(-3.82192,-1.93933)--(-3.82147,-1.93997)--(-3.82102,-1.94061)--(-3.82056,-1.94125)--(-3.82011,-1.94189)--(-3.81966,-1.94253)--(-3.8192,-1.94317)--(-3.81875,-1.94381)--(-3.8183,-1.94444)--(-3.81784,-1.94508)--(-3.81739,-1.94572)--(-3.81694,-1.94636)--(-3.81648,-1.947)--(-3.81603,-1.94764)--(-3.81557,-1.94828)--(-3.81512,-1.94892)--(-3.81466,-1.94955)--(-3.8142,-1.95019)--(-3.81375,-1.95083)--(-3.81329,-1.95147)--(-3.81283,-1.9521)--
> (-3.81238,-1.95274)--(-3.81192,-1.95338)--(-3.81146,-1.95402)--(-3.811,-1.95465)--(-3.81054,-1.95529)--(-3.81009,-1.95593)--(-3.80963,-1.95656)--(-3.80917,-1.9572)--(-3.80871,-1.95784)--(-3.80825,-1.95847)--(-3.80779,-1.95911)--(-3.80733,-1.95974)--(-3.80687,-1.96038)--(-3.80641,-1.96101)--(-3.80595,-1.96165)--(-3.80549,-1.96228)--(-3.80502,-1.96292)--(-3.80456,-1.96355)--(-3.8041,-1.96419)--(-3.80364,-1.96482)--(-3.80318,-1.96546)--(-3.80271,-1.96609)--(-3.80225,-1.96672)--(-3.80179,-1.96736)--
> (-3.80132,-1.96799)--(-3.80086,-1.96863)--(-3.80039,-1.96926)--(-3.79993,-1.96989)--(-3.79947,-1.97053)--(-3.799,-1.97116)--(-3.79853,-1.97179)--(-3.79807,-1.97242)--(-3.7976,-1.97306)--(-3.79714,-1.97369)--(-3.79667,-1.97432)--(-3.7962,-1.97495)--(-3.79574,-1.97558)--(-3.79527,-1.97622)--(-3.7948,-1.97685)--(-3.79433,-1.97748)--(-3.79387,-1.97811)--(-3.7934,-1.97874)--(-3.79293,-1.97937)--(-3.79246,-1.98)--(-3.79199,-1.98063)--(-3.79152,-1.98126)--(-3.79105,-1.98189)--(-3.79058,-1.98252)--
> (-3.79011,-1.98315)--(-3.78964,-1.98378)--(-3.78917,-1.98441)--(-3.7887,-1.98504)--(-3.78823,-1.98567)--(-3.78776,-1.9863)--(-3.78728,-1.98693)--(-3.78681,-1.98756)--(-3.78634,-1.98819)--(-3.78587,-1.98882)--(-3.78539,-1.98945)--(-3.78492,-1.99007)--(-3.78445,-1.9907)--(-3.78397,-1.99133)--(-3.7835,-1.99196)--(-3.78302,-1.99259)--(-3.78255,-1.99321)--(-3.78207,-1.99384)--(-3.7816,-1.99447)--(-3.78112,-1.99509)--(-3.78065,-1.99572)--(-3.78017,-1.99635)--(-3.7797,-1.99697)--(-3.77922,-1.9976)--
> (-3.77874,-1.99823)--(-3.77827,-1.99885)--(-3.77779,-1.99948)--(-3.77731,-2.00011)--(-3.77683,-2.00073)--(-3.77635,-2.00136)--(-3.77588,-2.00198)--(-3.7754,-2.00261)--(-3.77492,-2.00323)--(-3.77444,-2.00386)--(-3.77396,-2.00448)--(-3.77348,-2.00511)--(-3.773,-2.00573)--(-3.77252,-2.00636)--(-3.77204,-2.00698)--(-3.77156,-2.0076)--(-3.77107,-2.00823)--(-3.77059,-2.00885)--(-3.77011,-2.00948)--(-3.76963,-2.0101)--(-3.76915,-2.01072)--(-3.76866,-2.01134)--(-3.76818,-2.01197)--(-3.7677,-2.01259)--
> (-3.76721,-2.01321)--(-3.76673,-2.01384)--(-3.76625,-2.01446)--(-3.76576,-2.01508)--(-3.76528,-2.0157)--(-3.76479,-2.01632)--(-3.76431,-2.01695)--(-3.76382,-2.01757)--(-3.76334,-2.01819)--(-3.76285,-2.01881)--(-3.76236,-2.01943)--(-3.76188,-2.02005)--(-3.76139,-2.02067)--(-3.7609,-2.02129)--(-3.76042,-2.02191)--(-3.75993,-2.02253)--(-3.75944,-2.02315)--(-3.75895,-2.02377)--(-3.75846,-2.02439)--(-3.75797,-2.02501)--(-3.75749,-2.02563)--(-3.757,-2.02625)--(-3.75651,-2.02687)--(-3.75602,-2.02749)--
> (-3.75553,-2.02811)--(-3.75504,-2.02873)--(-3.75455,-2.02935)--(-3.75405,-2.02997)--(-3.75356,-2.03059)--(-3.75307,-2.0312)--(-3.75258,-2.03182)--(-3.75209,-2.03244)--(-3.7516,-2.03306)--(-3.7511,-2.03367)--(-3.75061,-2.03429)--(-3.75012,-2.03491)--(-3.74962,-2.03553)--(-3.74913,-2.03614)--(-3.74863,-2.03676)--(-3.74814,-2.03738)--(-3.74765,-2.03799)--(-3.74715,-2.03861)--(-3.74666,-2.03923)--(-3.74616,-2.03984)--(-3.74566,-2.04046)--(-3.74517,-2.04107)--(-3.74467,-2.04169)--(-3.74418,-2.04231)--
> (-3.74368,-2.04292)--(-3.74318,-2.04354)--(-3.74268,-2.04415)--(-3.74219,-2.04477)--(-3.74169,-2.04538)--(-3.74119,-2.04599)--(-3.74069,-2.04661)--(-3.74019,-2.04722)--(-3.73969,-2.04784)--(-3.73919,-2.04845)--(-3.73869,-2.04907)--(-3.73819,-2.04968)--(-3.73769,-2.05029)--(-3.73719,-2.05091)--(-3.73669,-2.05152)--(-3.73619,-2.05213)--(-3.73569,-2.05274)--(-3.73519,-2.05336)--(-3.73469,-2.05397)--(-3.73418,-2.05458)--(-3.73368,-2.05519)--(-3.73318,-2.05581)--(-3.73268,-2.05642)--
> (-3.73217,-2.05703)--(-3.73167,-2.05764)--(-3.73116,-2.05825)--(-3.73066,-2.05887)--(-3.73016,-2.05948)--(-3.72965,-2.06009)--(-3.72915,-2.0607)--(-3.72864,-2.06131)--(-3.72814,-2.06192)--(-3.72763,-2.06253)--(-3.72712,-2.06314)--(-3.72662,-2.06375)--(-3.72611,-2.06436)--(-3.7256,-2.06497)--(-3.7251,-2.06558)--(-3.72459,-2.06619)--(-3.72408,-2.0668)--(-3.72357,-2.06741)--(-3.72306,-2.06802)--(-3.72256,-2.06863)--(-3.72205,-2.06923)--(-3.72154,-2.06984)--(-3.72103,-2.07045)--(-3.72052,-2.07106)--
> (-3.72001,-2.07167)--(-3.7195,-2.07228)--(-3.71899,-2.07288)--(-3.71848,-2.07349)--(-3.71796,-2.0741)--(-3.71745,-2.07471)--(-3.71694,-2.07531)--(-3.71643,-2.07592)--(-3.71592,-2.07653)--(-3.7154,-2.07713)--(-3.71489,-2.07774)--(-3.71438,-2.07835)--(-3.71386,-2.07895)--(-3.71335,-2.07956)--(-3.71284,-2.08017)--(-3.71232,-2.08077)--(-3.71181,-2.08138)--(-3.71129,-2.08198)--(-3.71078,-2.08259)--(-3.71026,-2.08319)--(-3.70975,-2.0838)--(-3.70923,-2.0844)--(-3.70871,-2.08501)--(-3.7082,-2.08561)--
> (-3.70768,-2.08622)--(-3.70716,-2.08682)--(-3.70664,-2.08743)--(-3.70613,-2.08803)--(-3.70561,-2.08863)--(-3.70509,-2.08924)--(-3.70457,-2.08984)--(-3.70405,-2.09044)--(-3.70353,-2.09105)--(-3.70301,-2.09165)--(-3.70249,-2.09225)--(-3.70197,-2.09286)--(-3.70145,-2.09346)--(-3.70093,-2.09406)--(-3.70041,-2.09466)--(-3.69989,-2.09527)--(-3.69937,-2.09587)--(-3.69885,-2.09647)--(-3.69833,-2.09707)--(-3.6978,-2.09767)--(-3.69728,-2.09827)--(-3.69676,-2.09888)--(-3.69623,-2.09948)--
> (-3.69571,-2.10008)--(-3.69519,-2.10068)--(-3.69466,-2.10128)--(-3.69414,-2.10188)--(-3.69361,-2.10248)--(-3.69309,-2.10308)--(-3.69256,-2.10368)--(-3.69204,-2.10428)--(-3.69151,-2.10488)--(-3.69099,-2.10548)--(-3.69046,-2.10608)--(-3.68993,-2.10668)--(-3.68941,-2.10728)--(-3.68888,-2.10788)--(-3.68835,-2.10847)--(-3.68782,-2.10907)--(-3.6873,-2.10967)--(-3.68677,-2.11027)--(-3.68624,-2.11087)--(-3.68571,-2.11147)--(-3.68518,-2.11206)--(-3.68465,-2.11266)--(-3.68412,-2.11326)--
> (-3.68359,-2.11386)--(-3.68306,-2.11445)--(-3.68253,-2.11505)--(-3.682,-2.11565)--(-3.68147,-2.11624)--(-3.68094,-2.11684)--(-3.6804,-2.11744)--(-3.67987,-2.11803)--(-3.67934,-2.11863)--(-3.67881,-2.11923)--(-3.67827,-2.11982)--(-3.67774,-2.12042)--(-3.67721,-2.12101)--(-3.67667,-2.12161)--(-3.67614,-2.1222)--(-3.67561,-2.1228)--(-3.67507,-2.12339)--(-3.67454,-2.12399)--(-3.674,-2.12458)--(-3.67346,-2.12518)--(-3.67293,-2.12577)--(-3.67239,-2.12637)--(-3.67186,-2.12696)--(-3.67132,-2.12755)--
> (-3.67078,-2.12815)--(-3.67024,-2.12874)--(-3.66971,-2.12934)--(-3.66917,-2.12993)--(-3.66863,-2.13052)--(-3.66809,-2.13111)--(-3.66755,-2.13171)--(-3.66701,-2.1323)--(-3.66648,-2.13289)--(-3.66594,-2.13348)--(-3.6654,-2.13408)--(-3.66486,-2.13467)--(-3.66431,-2.13526)--(-3.66377,-2.13585)--(-3.66323,-2.13644)--(-3.66269,-2.13704)--(-3.66215,-2.13763)--(-3.66161,-2.13822)--(-3.66107,-2.13881)--(-3.66052,-2.1394)--(-3.65998,-2.13999)--(-3.65944,-2.14058)--(-3.65889,-2.14117)--(-3.65835,-2.14176)--
> (-3.65781,-2.14235)--(-3.65726,-2.14294)--(-3.65672,-2.14353)--(-3.65617,-2.14412)--(-3.65563,-2.14471)--(-3.65508,-2.1453)--(-3.65454,-2.14589)--(-3.65399,-2.14648)--(-3.65344,-2.14707)--(-3.6529,-2.14765)--(-3.65235,-2.14824)--(-3.6518,-2.14883)--(-3.65125,-2.14942)--(-3.65071,-2.15001)--(-3.65016,-2.1506)--(-3.64961,-2.15118)--(-3.64906,-2.15177)--(-3.64851,-2.15236)--(-3.64796,-2.15295)--(-3.64741,-2.15353)--(-3.64686,-2.15412)--(-3.64631,-2.15471)--(-3.64576,-2.15529)--(-3.64521,-2.15588)--
> (-3.64466,-2.15647)--(-3.64411,-2.15705)--(-3.64356,-2.15764)--(-3.64301,-2.15822)--(-3.64245,-2.15881)--(-3.6419,-2.15939)--(-3.64135,-2.15998)--(-3.6408,-2.16057)--(-3.64024,-2.16115)--(-3.63969,-2.16174)--(-3.63913,-2.16232)--(-3.63858,-2.1629)--(-3.63803,-2.16349)--(-3.63747,-2.16407)--(-3.63692,-2.16466)--(-3.63636,-2.16524)--(-3.6358,-2.16583)--(-3.63525,-2.16641)--(-3.63469,-2.16699)--(-3.63413,-2.16758)--(-3.63358,-2.16816)--(-3.63302,-2.16874)--(-3.63246,-2.16932)--(-3.63191,-2.16991)--
> (-3.63135,-2.17049)--(-3.63079,-2.17107)--(-3.63023,-2.17165)--(-3.62967,-2.17224)--(-3.62911,-2.17282)--(-3.62855,-2.1734)--(-3.62799,-2.17398)--(-3.62743,-2.17456)--(-3.62687,-2.17515)--(-3.62631,-2.17573)--(-3.62575,-2.17631)--(-3.62519,-2.17689)--(-3.62463,-2.17747)--(-3.62406,-2.17805)--(-3.6235,-2.17863)--(-3.62294,-2.17921)--(-3.62238,-2.17979)--(-3.62181,-2.18037)--(-3.62125,-2.18095)--(-3.62069,-2.18153)--(-3.62012,-2.18211)--(-3.61956,-2.18269)--(-3.61899,-2.18327)--(-3.61843,-2.18385)--
> (-3.61786,-2.18443)--(-3.6173,-2.185)--(-3.61673,-2.18558)--(-3.61616,-2.18616)--(-3.6156,-2.18674)--(-3.61503,-2.18732)--(-3.61446,-2.1879)--(-3.6139,-2.18847)--(-3.61333,-2.18905)--(-3.61276,-2.18963)--(-3.61219,-2.19021)--(-3.61162,-2.19078)--(-3.61106,-2.19136)--(-3.61049,-2.19194)--(-3.60992,-2.19251)--(-3.60935,-2.19309)--(-3.60878,-2.19367)--(-3.60821,-2.19424)--(-3.60764,-2.19482)--(-3.60707,-2.19539)--(-3.60649,-2.19597)--(-3.60592,-2.19654)--(-3.60535,-2.19712)--(-3.60478,-2.1977)--
> (-3.60421,-2.19827)--(-3.60363,-2.19885)--(-3.60306,-2.19942)--(-3.60249,-2.2)--(-3.60191,-2.20057)--(-3.60134,-2.20114)--(-3.60076,-2.20172)--(-3.60019,-2.20229)--(-3.59962,-2.20287)--(-3.59904,-2.20344)--(-3.59846,-2.20401)--(-3.59789,-2.20459)--(-3.59731,-2.20516)--(-3.59674,-2.20573)--(-3.59616,-2.20631)--(-3.59558,-2.20688)--(-3.59501,-2.20745)--(-3.59443,-2.20802)--(-3.59385,-2.2086)--(-3.59327,-2.20917)--(-3.59269,-2.20974)--(-3.59211,-2.21031)--(-3.59154,-2.21088)--(-3.59096,-2.21145)--
> (-3.59038,-2.21203)--(-3.5898,-2.2126)--(-3.58922,-2.21317)--(-3.58864,-2.21374)--(-3.58805,-2.21431)--(-3.58747,-2.21488)--(-3.58689,-2.21545)--(-3.58631,-2.21602)--(-3.58573,-2.21659)--(-3.58515,-2.21716)--(-3.58456,-2.21773)--(-3.58398,-2.2183)--(-3.5834,-2.21887)--(-3.58281,-2.21944)--(-3.58223,-2.22001)--(-3.58164,-2.22058)--(-3.58106,-2.22115)--(-3.58048,-2.22171)--(-3.57989,-2.22228)--(-3.5793,-2.22285)--(-3.57872,-2.22342)--(-3.57813,-2.22399)--(-3.57755,-2.22455)--(-3.57696,-2.22512)--
> (-3.57637,-2.22569)--(-3.57579,-2.22626)--(-3.5752,-2.22682)--(-3.57461,-2.22739)--(-3.57402,-2.22796)--(-3.57343,-2.22853)--(-3.57284,-2.22909)--(-3.57225,-2.22966)--(-3.57167,-2.23022)--(-3.57108,-2.23079)--(-3.57049,-2.23136)--(-3.5699,-2.23192)--(-3.5693,-2.23249)--(-3.56871,-2.23305)--(-3.56812,-2.23362)--(-3.56753,-2.23418)--(-3.56694,-2.23475)--(-3.56635,-2.23531)--(-3.56575,-2.23588)--(-3.56516,-2.23644)--(-3.56457,-2.23701)--(-3.56397,-2.23757)--(-3.56338,-2.23814)--(-3.56279,-2.2387)--
> (-3.56219,-2.23926)--(-3.5616,-2.23983)--(-3.561,-2.24039)--(-3.56041,-2.24095)--(-3.55981,-2.24152)--(-3.55922,-2.24208)--(-3.55862,-2.24264)--(-3.55802,-2.2432)--(-3.55743,-2.24377)--(-3.55683,-2.24433)--(-3.55623,-2.24489)--(-3.55563,-2.24545)--(-3.55504,-2.24602)--(-3.55444,-2.24658)--(-3.55384,-2.24714)--(-3.55324,-2.2477)--(-3.55264,-2.24826)--(-3.55204,-2.24882)--(-3.55144,-2.24938)--(-3.55084,-2.24994)--(-3.55024,-2.2505)--(-3.54964,-2.25106)--(-3.54904,-2.25162)--(-3.54844,-2.25218)--
> (-3.54784,-2.25274)--(-3.54723,-2.2533)--(-3.54663,-2.25386)--(-3.54603,-2.25442)--(-3.54543,-2.25498)--(-3.54482,-2.25554)--(-3.54422,-2.2561)--(-3.54361,-2.25666)--(-3.54301,-2.25722)--(-3.54241,-2.25778)--(-3.5418,-2.25833)--(-3.5412,-2.25889)--(-3.54059,-2.25945)--(-3.53998,-2.26001)--(-3.53938,-2.26057)--(-3.53877,-2.26112)--(-3.53817,-2.26168)--(-3.53756,-2.26224)--(-3.53695,-2.2628)--(-3.53634,-2.26335)--(-3.53573,-2.26391)--(-3.53513,-2.26447)--(-3.53452,-2.26502)--(-3.53391,-2.26558)--
> (-3.5333,-2.26613)--(-3.53269,-2.26669)--(-3.53208,-2.26725)--(-3.53147,-2.2678)--(-3.53086,-2.26836)--(-3.53025,-2.26891)--(-3.52964,-2.26947)--(-3.52903,-2.27002)--(-3.52841,-2.27058)--(-3.5278,-2.27113)--(-3.52719,-2.27169)--(-3.52658,-2.27224)--(-3.52596,-2.27279)--(-3.52535,-2.27335)--(-3.52474,-2.2739)--(-3.52412,-2.27445)--(-3.52351,-2.27501)--(-3.52289,-2.27556)--(-3.52228,-2.27611)--(-3.52166,-2.27667)--(-3.52105,-2.27722)--(-3.52043,-2.27777)--(-3.51982,-2.27833)--(-3.5192,-2.27888)--
> (-3.51858,-2.27943)--(-3.51797,-2.27998)--(-3.51735,-2.28053)--(-3.51673,-2.28109)--(-3.51611,-2.28164)--(-3.5155,-2.28219)--(-3.51488,-2.28274)--(-3.51426,-2.28329)--(-3.51364,-2.28384)--(-3.51302,-2.28439)--(-3.5124,-2.28494)--(-3.51178,-2.28549)--(-3.51116,-2.28604)--(-3.51054,-2.28659)--(-3.50992,-2.28714)--(-3.50929,-2.28769)--(-3.50867,-2.28824)--(-3.50805,-2.28879)--(-3.50743,-2.28934)--(-3.5068,-2.28989)--(-3.50618,-2.29044)--(-3.50556,-2.29099)--(-3.50493,-2.29154)--(-3.50431,-2.29208)--
> (-3.50369,-2.29263)--(-3.50306,-2.29318)--(-3.50244,-2.29373)--(-3.50181,-2.29428)--(-3.50119,-2.29482)--(-3.50056,-2.29537)--(-3.49993,-2.29592)--(-3.49931,-2.29647)--(-3.49868,-2.29701)--(-3.49805,-2.29756)--(-3.49742,-2.29811)--(-3.4968,-2.29865)--(-3.49617,-2.2992)--(-3.49554,-2.29974)--(-3.49491,-2.30029)--(-3.49428,-2.30084)--(-3.49365,-2.30138)--(-3.49302,-2.30193)--(-3.49239,-2.30247)--(-3.49176,-2.30302)--(-3.49113,-2.30356)--(-3.4905,-2.30411)--(-3.48987,-2.30465)--(-3.48924,-2.3052)--
> (-3.48861,-2.30574)--(-3.48797,-2.30629)--(-3.48734,-2.30683)--(-3.48671,-2.30737)--(-3.48607,-2.30792)--(-3.48544,-2.30846)--(-3.48481,-2.309)--(-3.48417,-2.30955)--(-3.48354,-2.31009)--(-3.4829,-2.31063)--(-3.48227,-2.31117)--(-3.48163,-2.31172)--(-3.481,-2.31226)--(-3.48036,-2.3128)--(-3.47972,-2.31334)--(-3.47909,-2.31389)--(-3.47845,-2.31443)--(-3.47781,-2.31497)--(-3.47717,-2.31551)--(-3.47653,-2.31605)--(-3.4759,-2.31659)--(-3.47526,-2.31713)--(-3.47462,-2.31767)--(-3.47398,-2.31821)--
> (-3.47334,-2.31875)--(-3.4727,-2.31929)--(-3.47206,-2.31983)--(-3.47142,-2.32037)--(-3.47078,-2.32091)--(-3.47014,-2.32145)--(-3.46949,-2.32199)--(-3.46885,-2.32253)--(-3.46821,-2.32307)--(-3.46757,-2.32361)--(-3.46692,-2.32415)--(-3.46628,-2.32469)--(-3.46564,-2.32523)--(-3.46499,-2.32576)--(-3.46435,-2.3263)--(-3.4637,-2.32684)--(-3.46306,-2.32738)--(-3.46241,-2.32791)--(-3.46177,-2.32845)--(-3.46112,-2.32899)--(-3.46047,-2.32953)--(-3.45983,-2.33006)--(-3.45918,-2.3306)--(-3.45853,-2.33114)--
> (-3.45789,-2.33167)--(-3.45724,-2.33221)--(-3.45659,-2.33274)--(-3.45594,-2.33328)--(-3.45529,-2.33382)--(-3.45464,-2.33435)--(-3.45399,-2.33489)--(-3.45334,-2.33542)--(-3.45269,-2.33596)--(-3.45204,-2.33649)--(-3.45139,-2.33703)--(-3.45074,-2.33756)--(-3.45009,-2.33809)--(-3.44944,-2.33863)--(-3.44879,-2.33916)--(-3.44813,-2.3397)--(-3.44748,-2.34023)--(-3.44683,-2.34076)--(-3.44617,-2.3413)--(-3.44552,-2.34183)--(-3.44487,-2.34236)--(-3.44421,-2.3429)--(-3.44356,-2.34343)--(-3.4429,-2.34396)--
> (-3.44225,-2.34449)--(-3.44159,-2.34503)--(-3.44093,-2.34556)--(-3.44028,-2.34609)--(-3.43962,-2.34662)--(-3.43896,-2.34715)--(-3.43831,-2.34768)--(-3.43765,-2.34821)--(-3.43699,-2.34874)--(-3.43633,-2.34928)--(-3.43567,-2.34981)--(-3.43501,-2.35034)--(-3.43435,-2.35087)--(-3.43369,-2.3514)--(-3.43303,-2.35193)--(-3.43237,-2.35246)--(-3.43171,-2.35299)--(-3.43105,-2.35352)--(-3.43039,-2.35404)--(-3.42973,-2.35457)--(-3.42907,-2.3551)--(-3.4284,-2.35563)--(-3.42774,-2.35616)--(-3.42708,-2.35669)--
> (-3.42641,-2.35722)--(-3.42575,-2.35774)--(-3.42509,-2.35827)--(-3.42442,-2.3588)--(-3.42376,-2.35933)--(-3.42309,-2.35985)--(-3.42243,-2.36038)--(-3.42176,-2.36091)--(-3.42109,-2.36144)--(-3.42043,-2.36196)--(-3.41976,-2.36249)--(-3.41909,-2.36302)--(-3.41843,-2.36354)--(-3.41776,-2.36407)--(-3.41709,-2.36459)--(-3.41642,-2.36512)--(-3.41575,-2.36564)--(-3.41508,-2.36617)--(-3.41442,-2.36669)--(-3.41375,-2.36722)--(-3.41308,-2.36774)--(-3.4124,-2.36827)--(-3.41173,-2.36879)--(-3.41106,-2.36932)--
> (-3.41039,-2.36984)--(-3.40972,-2.37037)--(-3.40905,-2.37089)--(-3.40837,-2.37141)--(-3.4077,-2.37194)--(-3.40703,-2.37246)--(-3.40636,-2.37298)--(-3.40568,-2.3735)--(-3.40501,-2.37403)--(-3.40433,-2.37455)--(-3.40366,-2.37507)--(-3.40298,-2.37559)--(-3.40231,-2.37612)--(-3.40163,-2.37664)--(-3.40096,-2.37716)--(-3.40028,-2.37768)--(-3.3996,-2.3782)--(-3.39892,-2.37872)--(-3.39825,-2.37924)--(-3.39757,-2.37977)--(-3.39689,-2.38029)--(-3.39621,-2.38081)--(-3.39553,-2.38133)--(-3.39485,-2.38185)--
> (-3.39417,-2.38237)--(-3.39349,-2.38289)--(-3.39281,-2.38341)--(-3.39213,-2.38393)--(-3.39145,-2.38444)--(-3.39077,-2.38496)--(-3.39009,-2.38548)--(-3.38941,-2.386)--(-3.38873,-2.38652)--(-3.38804,-2.38704)--(-3.38736,-2.38756)--(-3.38668,-2.38807)--(-3.38599,-2.38859)--(-3.38531,-2.38911)--(-3.38462,-2.38963)--(-3.38394,-2.39014)--(-3.38325,-2.39066)--(-3.38257,-2.39118)--(-3.38188,-2.3917)--(-3.3812,-2.39221)--(-3.38051,-2.39273)--(-3.37982,-2.39324)--(-3.37914,-2.39376)--(-3.37845,-2.39428)--
> (-3.37776,-2.39479)--(-3.37707,-2.39531)--(-3.37639,-2.39582)--(-3.3757,-2.39634)--(-3.37501,-2.39685)--(-3.37432,-2.39737)--(-3.37363,-2.39788)--(-3.37294,-2.3984)--(-3.37225,-2.39891)--(-3.37156,-2.39943)--(-3.37087,-2.39994)--(-3.37017,-2.40045)--(-3.36948,-2.40097)--(-3.36879,-2.40148)--(-3.3681,-2.40199)--(-3.3674,-2.40251)--(-3.36671,-2.40302)--(-3.36602,-2.40353)--(-3.36532,-2.40404)--(-3.36463,-2.40456)--(-3.36393,-2.40507)--(-3.36324,-2.40558)--(-3.36254,-2.40609)--(-3.36185,-2.4066)--
> (-3.36115,-2.40712)--(-3.36046,-2.40763)--(-3.35976,-2.40814)--(-3.35906,-2.40865)--(-3.35836,-2.40916)--(-3.35767,-2.40967)--(-3.35697,-2.41018)--(-3.35627,-2.41069)--(-3.35557,-2.4112)--(-3.35487,-2.41171)--(-3.35417,-2.41222)--(-3.35347,-2.41273)--(-3.35277,-2.41324)--(-3.35207,-2.41375)--(-3.35137,-2.41426)--(-3.35067,-2.41477)--(-3.34997,-2.41527)--(-3.34927,-2.41578)--(-3.34856,-2.41629)--(-3.34786,-2.4168)--(-3.34716,-2.41731)--(-3.34646,-2.41781)--(-3.34575,-2.41832)--(-3.34505,-2.41883)--
> (-3.34434,-2.41934)--(-3.34364,-2.41984)--(-3.34293,-2.42035)--(-3.34223,-2.42086)--(-3.34152,-2.42136)--(-3.34082,-2.42187)--(-3.34011,-2.42237)--(-3.3394,-2.42288)--(-3.3387,-2.42339)--(-3.33799,-2.42389)--(-3.33728,-2.4244)--(-3.33657,-2.4249)--(-3.33586,-2.42541)--(-3.33515,-2.42591)--(-3.33444,-2.42642)--(-3.33373,-2.42692)--(-3.33302,-2.42743)--(-3.33231,-2.42793)--(-3.3316,-2.42843)--(-3.33089,-2.42894)--(-3.33018,-2.42944)--(-3.32947,-2.42994)--(-3.32876,-2.43045)--(-3.32804,-2.43095)--
> (-3.32733,-2.43145)--(-3.32662,-2.43196)--(-3.32591,-2.43246)--(-3.32519,-2.43296)--(-3.32448,-2.43346)--(-3.32376,-2.43396)--(-3.32305,-2.43447)--(-3.32233,-2.43497)--(-3.32162,-2.43547)--(-3.3209,-2.43597)--(-3.32018,-2.43647)--(-3.31947,-2.43697)--(-3.31875,-2.43747)--(-3.31803,-2.43797)--(-3.31732,-2.43847)--(-3.3166,-2.43897)--(-3.31588,-2.43947)--(-3.31516,-2.43997)--(-3.31444,-2.44047)--(-3.31372,-2.44097)--(-3.313,-2.44147)--(-3.31228,-2.44197)--(-3.31156,-2.44247)--(-3.31084,-2.44297)--
> (-3.31012,-2.44346)--(-3.3094,-2.44396)--(-3.30867,-2.44446)--(-3.30795,-2.44496)--(-3.30723,-2.44546)--(-3.30651,-2.44595)--(-3.30578,-2.44645)--(-3.30506,-2.44695)--(-3.30433,-2.44744)--(-3.30361,-2.44794)--(-3.30288,-2.44844)--(-3.30216,-2.44893)--(-3.30143,-2.44943)--(-3.30071,-2.44993)--(-3.29998,-2.45042)--(-3.29925,-2.45092)--(-3.29853,-2.45141)--(-3.2978,-2.45191)--(-3.29707,-2.4524)--(-3.29634,-2.4529)--(-3.29562,-2.45339)--(-3.29489,-2.45389)--(-3.29416,-2.45438)--(-3.29343,-2.45487)--
> (-3.2927,-2.45537)--(-3.29197,-2.45586)--(-3.29124,-2.45636)--(-3.29051,-2.45685)--(-3.28977,-2.45734)--(-3.28904,-2.45783)--(-3.28831,-2.45833)--(-3.28758,-2.45882)--(-3.28684,-2.45931)--(-3.28611,-2.4598)--(-3.28538,-2.4603)--(-3.28464,-2.46079)--(-3.28391,-2.46128)--(-3.28317,-2.46177)--(-3.28244,-2.46226)--(-3.2817,-2.46275)--(-3.28097,-2.46324)--(-3.28023,-2.46374)--(-3.2795,-2.46423)--(-3.27876,-2.46472)--(-3.27802,-2.46521)--(-3.27728,-2.4657)--(-3.27655,-2.46619)--(-3.27581,-2.46668)--
> (-3.27507,-2.46716)--(-3.27433,-2.46765)--(-3.27359,-2.46814)--(-3.27285,-2.46863)--(-3.27211,-2.46912)--(-3.27137,-2.46961)--(-3.27063,-2.4701)--(-3.26989,-2.47059)--(-3.26915,-2.47107)--(-3.2684,-2.47156)--(-3.26766,-2.47205)--(-3.26692,-2.47254)--(-3.26618,-2.47302)--(-3.26543,-2.47351)--(-3.26469,-2.474)--(-3.26395,-2.47448)--(-3.2632,-2.47497)--(-3.26246,-2.47545)--(-3.26171,-2.47594)--(-3.26097,-2.47643)--(-3.26022,-2.47691)--(-3.25947,-2.4774)--(-3.25873,-2.47788)--(-3.25798,-2.47837)--
> (-3.25723,-2.47885)--(-3.25648,-2.47934)--(-3.25574,-2.47982)--(-3.25499,-2.48031)--(-3.25424,-2.48079)--(-3.25349,-2.48127)--(-3.25274,-2.48176)--(-3.25199,-2.48224)--(-3.25124,-2.48272)--(-3.25049,-2.48321)--(-3.24974,-2.48369)--(-3.24898,-2.48417)--(-3.24823,-2.48465)--(-3.24748,-2.48514)--(-3.24673,-2.48562)--(-3.24598,-2.4861)--(-3.24522,-2.48658)--(-3.24447,-2.48706)--(-3.24371,-2.48754)--(-3.24296,-2.48803)--(-3.2422,-2.48851)--(-3.24145,-2.48899)--(-3.24069,-2.48947)--(-3.23994,-2.48995)--
> (-3.23918,-2.49043)--(-3.23842,-2.49091)--(-3.23767,-2.49139)--(-3.23691,-2.49187)--(-3.23615,-2.49235)--(-3.23539,-2.49283)--(-3.23464,-2.4933)--(-3.23388,-2.49378)--(-3.23312,-2.49426)--(-3.23236,-2.49474)--(-3.2316,-2.49522)--(-3.23084,-2.4957)--(-3.23008,-2.49617)--(-3.22931,-2.49665)--(-3.22855,-2.49713)--(-3.22779,-2.49761)--(-3.22703,-2.49808)--(-3.22627,-2.49856)--(-3.2255,-2.49904)--(-3.22474,-2.49951)--(-3.22398,-2.49999)--(-3.22321,-2.50046)--(-3.22245,-2.50094)--(-3.22168,-2.50142)--
> (-3.22092,-2.50189)--(-3.22015,-2.50237)--(-3.21938,-2.50284)--(-3.21862,-2.50332)--(-3.21785,-2.50379)--(-3.21708,-2.50427)--(-3.21632,-2.50474)--(-3.21555,-2.50521)--(-3.21478,-2.50569)--(-3.21401,-2.50616)--(-3.21324,-2.50663)--(-3.21247,-2.50711)--(-3.2117,-2.50758)--(-3.21093,-2.50805)--(-3.21016,-2.50853)--(-3.20939,-2.509)--(-3.20862,-2.50947)--(-3.20785,-2.50994)--(-3.20708,-2.51041)--(-3.2063,-2.51089)--(-3.20553,-2.51136)--(-3.20476,-2.51183)--(-3.20398,-2.5123)--(-3.20321,-2.51277)--
> (-3.20243,-2.51324)--(-3.20166,-2.51371)--(-3.20088,-2.51418)--(-3.20011,-2.51465)--(-3.19933,-2.51512)--(-3.19856,-2.51559)--(-3.19778,-2.51606)--(-3.197,-2.51653)--(-3.19623,-2.517)--(-3.19545,-2.51747)--(-3.19467,-2.51793)--(-3.19389,-2.5184)--(-3.19311,-2.51887)--(-3.19233,-2.51934)--(-3.19155,-2.51981)--(-3.19077,-2.52027)--(-3.18999,-2.52074)--(-3.18921,-2.52121)--(-3.18843,-2.52168)--(-3.18765,-2.52214)--(-3.18687,-2.52261)--(-3.18608,-2.52308)--(-3.1853,-2.52354)--(-3.18452,-2.52401)--
> (-3.18373,-2.52447)--(-3.18295,-2.52494)--(-3.18217,-2.5254)--(-3.18138,-2.52587)--(-3.1806,-2.52633)--(-3.17981,-2.5268)--(-3.17902,-2.52726)--(-3.17824,-2.52773)--(-3.17745,-2.52819)--(-3.17666,-2.52866)--(-3.17588,-2.52912)--(-3.17509,-2.52958)--(-3.1743,-2.53005)--(-3.17351,-2.53051)--(-3.17272,-2.53097)--(-3.17193,-2.53143)--(-3.17114,-2.5319)--(-3.17035,-2.53236)--(-3.16956,-2.53282)--(-3.16877,-2.53328)--(-3.16798,-2.53374)--(-3.16719,-2.53421)--(-3.1664,-2.53467)--(-3.1656,-2.53513)--
> (-3.16481,-2.53559)--(-3.16402,-2.53605)--(-3.16322,-2.53651)--(-3.16243,-2.53697)--(-3.16164,-2.53743)--(-3.16084,-2.53789)--(-3.16005,-2.53835)--(-3.15925,-2.53881)--(-3.15845,-2.53927)--(-3.15766,-2.53973)--(-3.15686,-2.54018)--(-3.15606,-2.54064)--(-3.15527,-2.5411)--(-3.15447,-2.54156)--(-3.15367,-2.54202)--(-3.15287,-2.54247)--(-3.15207,-2.54293)--(-3.15127,-2.54339)--(-3.15047,-2.54385)--(-3.14967,-2.5443)--(-3.14887,-2.54476)--(-3.14807,-2.54522)--(-3.14727,-2.54567)--(-3.14647,-2.54613)--
> (-3.14566,-2.54658)--(-3.14486,-2.54704)--(-3.14406,-2.54749)--(-3.14326,-2.54795)--(-3.14245,-2.5484)--(-3.14165,-2.54886)--(-3.14084,-2.54931)--(-3.14004,-2.54977)--(-3.13923,-2.55022)--(-3.13843,-2.55068)--(-3.13762,-2.55113)--(-3.13681,-2.55158)--(-3.13601,-2.55204)--(-3.1352,-2.55249)--(-3.13439,-2.55294)--(-3.13358,-2.55339)--(-3.13277,-2.55385)--(-3.13197,-2.5543)--(-3.13116,-2.55475)--(-3.13035,-2.5552)--(-3.12954,-2.55565)--(-3.12873,-2.5561)--(-3.12791,-2.55656)--(-3.1271,-2.55701)--
> (-3.12629,-2.55746)--(-3.12548,-2.55791)--(-3.12467,-2.55836)--(-3.12385,-2.55881)--(-3.12304,-2.55926)--(-3.12223,-2.55971)--(-3.12141,-2.56016)--(-3.1206,-2.5606)--(-3.11978,-2.56105)--(-3.11897,-2.5615)--(-3.11815,-2.56195)--(-3.11734,-2.5624)--(-3.11652,-2.56285)--(-3.1157,-2.56329)--(-3.11488,-2.56374)--(-3.11407,-2.56419)--(-3.11325,-2.56464)--(-3.11243,-2.56508)--(-3.11161,-2.56553)--(-3.11079,-2.56598)--(-3.10997,-2.56642)--(-3.10915,-2.56687)--(-3.10833,-2.56732)--(-3.10751,-2.56776)--
> (-3.10669,-2.56821)--(-3.10587,-2.56865)--(-3.10505,-2.5691)--(-3.10422,-2.56954)--(-3.1034,-2.56999)--(-3.10258,-2.57043)--(-3.10175,-2.57087)--(-3.10093,-2.57132)--(-3.1001,-2.57176)--(-3.09928,-2.5722)--(-3.09845,-2.57265)--(-3.09763,-2.57309)--(-3.0968,-2.57353)--(-3.09597,-2.57398)--(-3.09515,-2.57442)--(-3.09432,-2.57486)--(-3.09349,-2.5753)--(-3.09266,-2.57574)--(-3.09184,-2.57619)--(-3.09101,-2.57663)--(-3.09018,-2.57707)--(-3.08935,-2.57751)--(-3.08852,-2.57795)--(-3.08769,-2.57839)--
> (-3.08686,-2.57883)--(-3.08602,-2.57927)--(-3.08519,-2.57971)--(-3.08436,-2.58015)--(-3.08353,-2.58059)--(-3.08269,-2.58103)--(-3.08186,-2.58147)--(-3.08103,-2.5819)--(-3.08019,-2.58234)--(-3.07936,-2.58278)--(-3.07852,-2.58322)--(-3.07769,-2.58366)--(-3.07685,-2.58409)--(-3.07601,-2.58453)--(-3.07518,-2.58497)--(-3.07434,-2.5854)--(-3.0735,-2.58584)--(-3.07266,-2.58628)--(-3.07183,-2.58671)--(-3.07099,-2.58715)--(-3.07015,-2.58758)--(-3.06931,-2.58802)--(-3.06847,-2.58846)--(-3.06763,-2.58889)--
> (-3.06679,-2.58932)--(-3.06595,-2.58976)--(-3.0651,-2.59019)--(-3.06426,-2.59063)--(-3.06342,-2.59106)--(-3.06258,-2.5915)--(-3.06173,-2.59193)--(-3.06089,-2.59236)--(-3.06005,-2.59279)--(-3.0592,-2.59323)--(-3.05836,-2.59366)--(-3.05751,-2.59409)--(-3.05666,-2.59452)--(-3.05582,-2.59496)--(-3.05497,-2.59539)--(-3.05412,-2.59582)--(-3.05328,-2.59625)--(-3.05243,-2.59668)--(-3.05158,-2.59711)--(-3.05073,-2.59754)--(-3.04988,-2.59797)--(-3.04903,-2.5984)--(-3.04818,-2.59883)--(-3.04733,-2.59926)--
> (-3.04648,-2.59969)--(-3.04563,-2.60012)--(-3.04478,-2.60055)--(-3.04393,-2.60098)--(-3.04307,-2.6014)--(-3.04222,-2.60183)--(-3.04137,-2.60226)--(-3.04051,-2.60269)--(-3.03966,-2.60312)--(-3.03881,-2.60354)--(-3.03795,-2.60397)--(-3.0371,-2.6044)--(-3.03624,-2.60482)--(-3.03538,-2.60525)--(-3.03453,-2.60567)--(-3.03367,-2.6061)--(-3.03281,-2.60653)--(-3.03195,-2.60695)--(-3.0311,-2.60738)--(-3.03024,-2.6078)--(-3.02938,-2.60823)--(-3.02852,-2.60865)--(-3.02766,-2.60907)--(-3.0268,-2.6095)--
> (-3.02594,-2.60992)--(-3.02508,-2.61034)--(-3.02421,-2.61077)--(-3.02335,-2.61119)--(-3.02249,-2.61161)--(-3.02163,-2.61204)--(-3.02076,-2.61246)--(-3.0199,-2.61288)--(-3.01904,-2.6133)--(-3.01817,-2.61372)--(-3.01731,-2.61414)--(-3.01644,-2.61457)--(-3.01557,-2.61499)--(-3.01471,-2.61541)--(-3.01384,-2.61583)--(-3.01297,-2.61625)--(-3.01211,-2.61667)--(-3.01124,-2.61709)--(-3.01037,-2.61751)--(-3.0095,-2.61793)--(-3.00863,-2.61834)--(-3.00776,-2.61876)--(-3.00689,-2.61918)--(-3.00602,-2.6196)--
> (-3.00515,-2.62002)--(-3.00428,-2.62044)--(-3.00341,-2.62085)--(-3.00253,-2.62127)--(-3.00166,-2.62169)--(-3.00079,-2.6221)--(-2.99991,-2.62252)--(-2.99904,-2.62294)--(-2.99817,-2.62335)--(-2.99729,-2.62377)--(-2.99642,-2.62418)--(-2.99554,-2.6246)--(-2.99466,-2.62501)--(-2.99379,-2.62543)--(-2.99291,-2.62584)--(-2.99203,-2.62626)--(-2.99116,-2.62667)--(-2.99028,-2.62709)--(-2.9894,-2.6275)--(-2.98852,-2.62791)--(-2.98764,-2.62833)--(-2.98676,-2.62874)--(-2.98588,-2.62915)--(-2.985,-2.62956)--
> (-2.98412,-2.62998)--(-2.98324,-2.63039)--(-2.98235,-2.6308)--(-2.98147,-2.63121)--(-2.98059,-2.63162)--(-2.9797,-2.63203)--(-2.97882,-2.63244)--(-2.97794,-2.63285)--(-2.97705,-2.63326)--(-2.97617,-2.63367)--(-2.97528,-2.63408)--(-2.97439,-2.63449)--(-2.97351,-2.6349)--(-2.97262,-2.63531)--(-2.97173,-2.63572)--(-2.97085,-2.63613)--(-2.96996,-2.63654)--(-2.96907,-2.63695)--(-2.96818,-2.63735)--(-2.96729,-2.63776)--(-2.9664,-2.63817)--(-2.96551,-2.63857)--(-2.96462,-2.63898)--(-2.96373,-2.63939)--
> (-2.96284,-2.63979)--(-2.96194,-2.6402)--(-2.96105,-2.64061)--(-2.96016,-2.64101)--(-2.95927,-2.64142)--(-2.95837,-2.64182)--(-2.95748,-2.64223)--(-2.95658,-2.64263)--(-2.95569,-2.64303)--(-2.95479,-2.64344)--(-2.9539,-2.64384)--(-2.953,-2.64425)--(-2.9521,-2.64465)--(-2.95121,-2.64505)--(-2.95031,-2.64545)--(-2.94941,-2.64586)--(-2.94851,-2.64626)--(-2.94761,-2.64666)--(-2.94671,-2.64706)--(-2.94581,-2.64746)--(-2.94491,-2.64787)--(-2.94401,-2.64827)--(-2.94311,-2.64867)--(-2.94221,-2.64907)--
> (-2.94131,-2.64947)--(-2.9404,-2.64987)--(-2.9395,-2.65027)--(-2.9386,-2.65067)--(-2.93769,-2.65107)--(-2.93679,-2.65147)--(-2.93588,-2.65186)--(-2.93498,-2.65226)--(-2.93407,-2.65266)--(-2.93317,-2.65306)--(-2.93226,-2.65346)--(-2.93135,-2.65385)--(-2.93044,-2.65425)--(-2.92954,-2.65465)--(-2.92863,-2.65504)--(-2.92772,-2.65544)--(-2.92681,-2.65584)--(-2.9259,-2.65623)--(-2.92499,-2.65663)--(-2.92408,-2.65702)--(-2.92317,-2.65742)--(-2.92226,-2.65781)--(-2.92135,-2.65821)--(-2.92043,-2.6586)--
> (-2.91952,-2.659)--(-2.91861,-2.65939)--(-2.91769,-2.65978)--(-2.91678,-2.66018)--(-2.91586,-2.66057)--(-2.91495,-2.66096)--(-2.91403,-2.66135)--(-2.91312,-2.66175)--(-2.9122,-2.66214)--(-2.91128,-2.66253)--(-2.91037,-2.66292)--(-2.90945,-2.66331)--(-2.90853,-2.6637)--(-2.90761,-2.66409)--(-2.90669,-2.66449)--(-2.90577,-2.66488)--(-2.90485,-2.66527)--(-2.90393,-2.66565)--(-2.90301,-2.66604)--(-2.90209,-2.66643)--(-2.90117,-2.66682)--(-2.90025,-2.66721)--(-2.89932,-2.6676)--(-2.8984,-2.66799)--
> (-2.89748,-2.66837)--(-2.89655,-2.66876)--(-2.89563,-2.66915)--(-2.8947,-2.66954)--(-2.89378,-2.66992)--(-2.89285,-2.67031)--(-2.89193,-2.6707)--(-2.891,-2.67108)--(-2.89007,-2.67147)--(-2.88914,-2.67185)--(-2.88822,-2.67224)--(-2.88729,-2.67262)--(-2.88636,-2.67301)--(-2.88543,-2.67339)--(-2.8845,-2.67378)--(-2.88357,-2.67416)--(-2.88264,-2.67454)--(-2.88171,-2.67493)--(-2.88078,-2.67531)--(-2.87984,-2.67569)--(-2.87891,-2.67607)--(-2.87798,-2.67646)--(-2.87704,-2.67684)--(-2.87611,-2.67722)--
> (-2.87518,-2.6776)--(-2.87424,-2.67798)--(-2.87331,-2.67836)--(-2.87237,-2.67874)--(-2.87143,-2.67912)--(-2.8705,-2.6795)--(-2.86956,-2.67988)--(-2.86862,-2.68026)--(-2.86768,-2.68064)--(-2.86674,-2.68102)--(-2.86581,-2.6814)--(-2.86487,-2.68178)--(-2.86393,-2.68216)--(-2.86299,-2.68253)--(-2.86204,-2.68291)--(-2.8611,-2.68329)--(-2.86016,-2.68367)--(-2.85922,-2.68404)--(-2.85828,-2.68442)--(-2.85733,-2.68479)--(-2.85639,-2.68517)--(-2.85545,-2.68555)--(-2.8545,-2.68592)--(-2.85356,-2.6863)--
> (-2.85261,-2.68667)--(-2.85166,-2.68705)--(-2.85072,-2.68742)--(-2.84977,-2.68779)--(-2.84882,-2.68817)--(-2.84788,-2.68854)--(-2.84693,-2.68891)--(-2.84598,-2.68929)--(-2.84503,-2.68966)--(-2.84408,-2.69003)--(-2.84313,-2.6904)--(-2.84218,-2.69078)--(-2.84123,-2.69115)--(-2.84028,-2.69152)--(-2.83933,-2.69189)--(-2.83837,-2.69226)--(-2.83742,-2.69263)--(-2.83647,-2.693)--(-2.83551,-2.69337)--(-2.83456,-2.69374)--(-2.8336,-2.69411)--(-2.83265,-2.69448)--(-2.83169,-2.69485)--(-2.83074,-2.69522)--
> (-2.82978,-2.69558)--(-2.82882,-2.69595)--(-2.82787,-2.69632)--(-2.82691,-2.69669)--(-2.82595,-2.69705)--(-2.82499,-2.69742)--(-2.82403,-2.69779)--(-2.82307,-2.69815)--(-2.82211,-2.69852)--(-2.82115,-2.69888)--(-2.82019,-2.69925)--(-2.81923,-2.69961)--(-2.81826,-2.69998)--(-2.8173,-2.70034)--(-2.81634,-2.70071)--(-2.81537,-2.70107)--(-2.81441,-2.70143)--(-2.81345,-2.7018)--(-2.81248,-2.70216)--(-2.81152,-2.70252)--(-2.81055,-2.70289)--(-2.80958,-2.70325)--(-2.80862,-2.70361)--(-2.80765,-2.70397)--
> (-2.80668,-2.70433)--(-2.80571,-2.70469)--(-2.80474,-2.70505)--(-2.80377,-2.70541)--(-2.8028,-2.70577)--(-2.80183,-2.70613)--(-2.80086,-2.70649)--(-2.79989,-2.70685)--(-2.79892,-2.70721)--(-2.79795,-2.70757)--(-2.79698,-2.70793)--(-2.796,-2.70829)--(-2.79503,-2.70865)--(-2.79405,-2.709)--(-2.79308,-2.70936)--(-2.7921,-2.70972)--(-2.79113,-2.71007)--(-2.79015,-2.71043)--(-2.78918,-2.71079)--(-2.7882,-2.71114)--(-2.78722,-2.7115)--(-2.78624,-2.71185)--(-2.78527,-2.71221)--(-2.78429,-2.71256)--
> (-2.78331,-2.71292)--(-2.78233,-2.71327)--(-2.78135,-2.71362)--(-2.78037,-2.71398)--(-2.77939,-2.71433)--(-2.7784,-2.71468)--(-2.77742,-2.71504)--(-2.77644,-2.71539)--(-2.77546,-2.71574)--(-2.77447,-2.71609)--(-2.77349,-2.71644)--(-2.7725,-2.71679)--(-2.77152,-2.71714)--(-2.77053,-2.71749)--(-2.76955,-2.71784)--(-2.76856,-2.71819)--(-2.76757,-2.71854)--(-2.76659,-2.71889)--(-2.7656,-2.71924)--(-2.76461,-2.71959)--(-2.76362,-2.71994)--(-2.76263,-2.72029)--(-2.76164,-2.72063)--(-2.76065,-2.72098)--
> (-2.75966,-2.72133)--(-2.75867,-2.72168)--(-2.75768,-2.72202)--(-2.75669,-2.72237)--(-2.75569,-2.72272)--(-2.7547,-2.72306)--(-2.75371,-2.72341)--(-2.75271,-2.72375)--(-2.75172,-2.7241)--(-2.75072,-2.72444)--(-2.74973,-2.72478)--(-2.74873,-2.72513)--(-2.74773,-2.72547)--(-2.74674,-2.72581)--(-2.74574,-2.72616)--(-2.74474,-2.7265)--(-2.74374,-2.72684)--(-2.74274,-2.72718)--(-2.74174,-2.72753)--(-2.74074,-2.72787)--(-2.73974,-2.72821)--(-2.73874,-2.72855)--(-2.73774,-2.72889)--(-2.73674,-2.72923)--
> (-2.73574,-2.72957)--(-2.73473,-2.72991)--(-2.73373,-2.73025)--(-2.73272,-2.73059)--(-2.73172,-2.73093)--(-2.73072,-2.73126)--(-2.72971,-2.7316)--(-2.7287,-2.73194)--(-2.7277,-2.73228)--(-2.72669,-2.73261)--(-2.72568,-2.73295)--(-2.72468,-2.73329)--(-2.72367,-2.73362)--(-2.72266,-2.73396)--(-2.72165,-2.7343)--(-2.72064,-2.73463)--(-2.71963,-2.73497)--(-2.71862,-2.7353)--(-2.71761,-2.73563)--(-2.71659,-2.73597)--(-2.71558,-2.7363)--(-2.71457,-2.73663)--(-2.71356,-2.73697)--(-2.71254,-2.7373)--
> (-2.71153,-2.73763)--(-2.71051,-2.73796)--(-2.7095,-2.7383)--(-2.70848,-2.73863)--(-2.70747,-2.73896)--(-2.70645,-2.73929)--(-2.70543,-2.73962)--(-2.70441,-2.73995)--(-2.7034,-2.74028)--(-2.70238,-2.74061)--(-2.70136,-2.74094)--(-2.70034,-2.74127)--(-2.69932,-2.7416)--(-2.6983,-2.74192)--(-2.69728,-2.74225)--(-2.69625,-2.74258)--(-2.69523,-2.74291)--(-2.69421,-2.74323)--(-2.69319,-2.74356)--(-2.69216,-2.74389)--(-2.69114,-2.74421)--(-2.69011,-2.74454)--(-2.68909,-2.74486)--(-2.68806,-2.74519)--
> (-2.68704,-2.74551)--(-2.68601,-2.74584)--(-2.68498,-2.74616)--(-2.68395,-2.74649)--(-2.68293,-2.74681)--(-2.6819,-2.74713)--(-2.68087,-2.74746)--(-2.67984,-2.74778)--(-2.67881,-2.7481)--(-2.67778,-2.74842)--(-2.67675,-2.74874)--(-2.67571,-2.74906)--(-2.67468,-2.74939)--(-2.67365,-2.74971)--(-2.67262,-2.75003)--(-2.67158,-2.75035)--(-2.67055,-2.75067)--(-2.66951,-2.75099)--(-2.66848,-2.7513)--(-2.66744,-2.75162)--(-2.6664,-2.75194)--(-2.66537,-2.75226)--(-2.66433,-2.75258)--(-2.66329,-2.75289)--
> (-2.66225,-2.75321)--(-2.66122,-2.75353)--(-2.66018,-2.75384)--(-2.65914,-2.75416)--(-2.6581,-2.75447)--(-2.65706,-2.75479)--(-2.65601,-2.7551)--(-2.65497,-2.75542)--(-2.65393,-2.75573)--(-2.65289,-2.75605)--(-2.65184,-2.75636)--(-2.6508,-2.75667)--(-2.64975,-2.75699)--(-2.64871,-2.7573)--(-2.64766,-2.75761)--(-2.64662,-2.75792)--(-2.64557,-2.75824)--(-2.64453,-2.75855)--(-2.64348,-2.75886)--(-2.64243,-2.75917)--(-2.64138,-2.75948)--(-2.64033,-2.75979)--(-2.63928,-2.7601)--(-2.63823,-2.76041)--
> (-2.63718,-2.76072)--(-2.63613,-2.76102)--(-2.63508,-2.76133)--(-2.63403,-2.76164)--(-2.63297,-2.76195)--(-2.63192,-2.76226)--(-2.63087,-2.76256)--(-2.62981,-2.76287)--(-2.62876,-2.76318)--(-2.6277,-2.76348)--(-2.62665,-2.76379)--(-2.62559,-2.76409)--(-2.62454,-2.7644)--(-2.62348,-2.7647)--(-2.62242,-2.76501)--(-2.62136,-2.76531)--(-2.6203,-2.76561)--(-2.61924,-2.76592)--(-2.61818,-2.76622)--(-2.61712,-2.76652)--(-2.61606,-2.76682)--(-2.615,-2.76712)--(-2.61394,-2.76743)--(-2.61288,-2.76773)--
> (-2.61181,-2.76803)--(-2.61075,-2.76833)--(-2.60969,-2.76863)--(-2.60862,-2.76893)--(-2.60756,-2.76923)--(-2.60649,-2.76953)--(-2.60543,-2.76982)--(-2.60436,-2.77012)--(-2.60329,-2.77042)--(-2.60223,-2.77072)--(-2.60116,-2.77102)--(-2.60009,-2.77131)--(-2.59902,-2.77161)--(-2.59795,-2.77191)--(-2.59688,-2.7722)--(-2.59581,-2.7725)--(-2.59474,-2.77279)--(-2.59367,-2.77309)--(-2.59259,-2.77338)--(-2.59152,-2.77368)--(-2.59045,-2.77397)--(-2.58937,-2.77426)--(-2.5883,-2.77456)--(-2.58722,-2.77485)--
> (-2.58615,-2.77514)--(-2.58507,-2.77543)--(-2.584,-2.77572)--(-2.58292,-2.77602)--(-2.58184,-2.77631)--(-2.58076,-2.7766)--(-2.57969,-2.77689)--(-2.57861,-2.77718)--(-2.57753,-2.77747)--(-2.57645,-2.77776)--(-2.57537,-2.77804)--(-2.57428,-2.77833)--(-2.5732,-2.77862)--(-2.57212,-2.77891)--(-2.57104,-2.7792)--(-2.56995,-2.77948)--(-2.56887,-2.77977)--(-2.56779,-2.78006)--(-2.5667,-2.78034)--(-2.56562,-2.78063)--(-2.56453,-2.78091)--(-2.56344,-2.7812)--(-2.56236,-2.78148)--(-2.56127,-2.78177)--
> (-2.56018,-2.78205)--(-2.55909,-2.78233)--(-2.558,-2.78262)--(-2.55691,-2.7829)--(-2.55582,-2.78318)--(-2.55473,-2.78346)--(-2.55364,-2.78374)--(-2.55255,-2.78402)--(-2.55146,-2.78431)--(-2.55036,-2.78459)--(-2.54927,-2.78487)--(-2.54818,-2.78515)--(-2.54708,-2.78543)--(-2.54599,-2.7857)--(-2.54489,-2.78598)--(-2.5438,-2.78626)--(-2.5427,-2.78654)--(-2.5416,-2.78682)--(-2.54051,-2.78709)--(-2.53941,-2.78737)--(-2.53831,-2.78765)--(-2.53721,-2.78792)--(-2.53611,-2.7882)--(-2.53501,-2.78847)--
> (-2.53391,-2.78875)--(-2.53281,-2.78902)--(-2.53171,-2.7893)--(-2.5306,-2.78957)--(-2.5295,-2.78984)--(-2.5284,-2.79012)--(-2.52729,-2.79039)--(-2.52619,-2.79066)--(-2.52508,-2.79093)--(-2.52398,-2.79121)--(-2.52287,-2.79148)--(-2.52176,-2.79175)--(-2.52066,-2.79202)--(-2.51955,-2.79229)--(-2.51844,-2.79256)--(-2.51733,-2.79283)--(-2.51622,-2.7931)--(-2.51511,-2.79337)--(-2.514,-2.79363)--(-2.51289,-2.7939)--(-2.51178,-2.79417)--(-2.51067,-2.79444)--(-2.50955,-2.7947)--(-2.50844,-2.79497)--
> (-2.50733,-2.79523)--(-2.50621,-2.7955)--(-2.5051,-2.79577)--(-2.50398,-2.79603)--(-2.50287,-2.79629)--(-2.50175,-2.79656)--(-2.50063,-2.79682)--(-2.49952,-2.79709)--(-2.4984,-2.79735)--(-2.49728,-2.79761)--(-2.49616,-2.79787)--(-2.49504,-2.79813)--(-2.49392,-2.7984)--(-2.4928,-2.79866)--(-2.49168,-2.79892)--(-2.49056,-2.79918)--(-2.48943,-2.79944)--(-2.48831,-2.7997)--(-2.48719,-2.79996)--(-2.48606,-2.80021)--(-2.48494,-2.80047)--(-2.48381,-2.80073)--(-2.48269,-2.80099)--(-2.48156,-2.80124)--
> (-2.48043,-2.8015)--(-2.47931,-2.80176)--(-2.47818,-2.80201)--(-2.47705,-2.80227)--(-2.47592,-2.80252)--(-2.47479,-2.80278)--(-2.47366,-2.80303)--(-2.47253,-2.80329)--(-2.4714,-2.80354)--(-2.47027,-2.80379)--(-2.46914,-2.80405)--(-2.468,-2.8043)--(-2.46687,-2.80455)--(-2.46574,-2.8048)--(-2.4646,-2.80505)--(-2.46347,-2.8053)--(-2.46233,-2.80555)--(-2.46119,-2.8058)--(-2.46006,-2.80605)--(-2.45892,-2.8063)--(-2.45778,-2.80655)--(-2.45664,-2.8068)--(-2.4555,-2.80705)--(-2.45437,-2.8073)--
> (-2.45322,-2.80754)--(-2.45208,-2.80779)--(-2.45094,-2.80804)--(-2.4498,-2.80828)--(-2.44866,-2.80853)--(-2.44752,-2.80877)--(-2.44637,-2.80902)--(-2.44523,-2.80926)--(-2.44408,-2.80951)--(-2.44294,-2.80975)--(-2.44179,-2.80999)--(-2.44065,-2.81024)--(-2.4395,-2.81048)--(-2.43835,-2.81072)--(-2.43721,-2.81096)--(-2.43606,-2.8112)--(-2.43491,-2.81144)--(-2.43376,-2.81168)--(-2.43261,-2.81192)--(-2.43146,-2.81216)--(-2.43031,-2.8124)--(-2.42916,-2.81264)--(-2.428,-2.81288)--(-2.42685,-2.81312)--
> (-2.4257,-2.81336)--(-2.42454,-2.81359)--(-2.42339,-2.81383)--(-2.42223,-2.81407)--(-2.42108,-2.8143)--(-2.41992,-2.81454)--(-2.41877,-2.81477)--(-2.41761,-2.81501)--(-2.41645,-2.81524)--(-2.41529,-2.81547)--(-2.41413,-2.81571)--(-2.41297,-2.81594)--(-2.41181,-2.81617)--(-2.41065,-2.8164)--(-2.40949,-2.81664)--(-2.40833,-2.81687)--(-2.40717,-2.8171)--(-2.406,-2.81733)--(-2.40484,-2.81756)--(-2.40368,-2.81779)--(-2.40251,-2.81802)--(-2.40135,-2.81825)--(-2.40018,-2.81848)--(-2.39901,-2.8187)--
> (-2.39785,-2.81893)--(-2.39668,-2.81916)--(-2.39551,-2.81938)--(-2.39434,-2.81961)--(-2.39317,-2.81984)--(-2.392,-2.82006)--(-2.39083,-2.82029)--(-2.38966,-2.82051)--(-2.38849,-2.82074)--(-2.38732,-2.82096)--(-2.38615,-2.82118)--(-2.38497,-2.82141)--(-2.3838,-2.82163)--(-2.38263,-2.82185)--(-2.38145,-2.82207)--(-2.38028,-2.82229)--(-2.3791,-2.82251)--(-2.37792,-2.82273)--(-2.37675,-2.82295)--(-2.37557,-2.82317)--(-2.37439,-2.82339)--(-2.37321,-2.82361)--(-2.37203,-2.82383)--(-2.37085,-2.82405)--
> (-2.36967,-2.82426)--(-2.36849,-2.82448)--(-2.36731,-2.8247)--(-2.36613,-2.82491)--(-2.36494,-2.82513)--(-2.36376,-2.82534)--(-2.36258,-2.82556)--(-2.36139,-2.82577)--(-2.36021,-2.82599)--(-2.35902,-2.8262)--(-2.35783,-2.82641)--(-2.35665,-2.82663)--(-2.35546,-2.82684)--(-2.35427,-2.82705)--(-2.35308,-2.82726)--(-2.35189,-2.82747)--(-2.3507,-2.82768)--(-2.34951,-2.82789)--(-2.34832,-2.8281)--(-2.34713,-2.82831)--(-2.34594,-2.82852)--(-2.34475,-2.82873)--(-2.34355,-2.82894)--(-2.34236,-2.82914)--
> (-2.34117,-2.82935)--(-2.33997,-2.82956)--(-2.33878,-2.82976)--(-2.33758,-2.82997)--(-2.33638,-2.83017)--(-2.33519,-2.83038)--(-2.33399,-2.83058)--(-2.33279,-2.83079)--(-2.33159,-2.83099)--(-2.33039,-2.83119)--(-2.32919,-2.83139)--(-2.32799,-2.8316)--(-2.32679,-2.8318)--(-2.32559,-2.832)--(-2.32438,-2.8322)--(-2.32318,-2.8324)--(-2.32198,-2.8326)--(-2.32077,-2.8328)--(-2.31957,-2.833)--(-2.31836,-2.8332)--(-2.31716,-2.83339)--(-2.31595,-2.83359)--(-2.31474,-2.83379)--(-2.31354,-2.83399)--
> (-2.31233,-2.83418)--(-2.31112,-2.83438)--(-2.30991,-2.83457)--(-2.3087,-2.83477)--(-2.30749,-2.83496)--(-2.30628,-2.83515)--(-2.30507,-2.83535)--(-2.30385,-2.83554)--(-2.30264,-2.83573)--(-2.30143,-2.83593)--(-2.30021,-2.83612)--(-2.299,-2.83631)--(-2.29778,-2.8365)--(-2.29657,-2.83669)--(-2.29535,-2.83688)--(-2.29413,-2.83707)--(-2.29292,-2.83726)--(-2.2917,-2.83745)--(-2.29048,-2.83763)--(-2.28926,-2.83782)--(-2.28804,-2.83801)--(-2.28682,-2.83819)--(-2.2856,-2.83838)--(-2.28438,-2.83857)--
> (-2.28315,-2.83875)--(-2.28193,-2.83894)--(-2.28071,-2.83912)--(-2.27948,-2.8393)--(-2.27826,-2.83949)--(-2.27703,-2.83967)--(-2.27581,-2.83985)--(-2.27458,-2.84003)--(-2.27335,-2.84022)--(-2.27213,-2.8404)--(-2.2709,-2.84058)--(-2.26967,-2.84076)--(-2.26844,-2.84094)--(-2.26721,-2.84112)--(-2.26598,-2.84129)--(-2.26475,-2.84147)--(-2.26352,-2.84165)--(-2.26228,-2.84183)--(-2.26105,-2.842)--(-2.25982,-2.84218)--(-2.25858,-2.84236)--(-2.25735,-2.84253)--(-2.25611,-2.84271)--(-2.25488,-2.84288)--
> (-2.25364,-2.84305)--(-2.2524,-2.84323)--(-2.25117,-2.8434)--(-2.24993,-2.84357)--(-2.24869,-2.84374)--(-2.24745,-2.84392)--(-2.24621,-2.84409)--(-2.24497,-2.84426)--(-2.24373,-2.84443)--(-2.24249,-2.8446)--(-2.24124,-2.84476)--(-2.24,-2.84493)--(-2.23876,-2.8451)--(-2.23751,-2.84527)--(-2.23627,-2.84544)--(-2.23502,-2.8456)--(-2.23378,-2.84577)--(-2.23253,-2.84593)--(-2.23128,-2.8461)--(-2.23003,-2.84626)--(-2.22879,-2.84643)--(-2.22754,-2.84659)--(-2.22629,-2.84676)--(-2.22504,-2.84692)--
> (-2.22379,-2.84708)--(-2.22253,-2.84724)--(-2.22128,-2.8474)--(-2.22003,-2.84756)--(-2.21878,-2.84772)--(-2.21752,-2.84788)--(-2.21627,-2.84804)--(-2.21501,-2.8482)--(-2.21376,-2.84836)--(-2.2125,-2.84852)--(-2.21124,-2.84868)--(-2.20999,-2.84883)--(-2.20873,-2.84899)--(-2.20747,-2.84914)--(-2.20621,-2.8493)--(-2.20495,-2.84945)--(-2.20369,-2.84961)--(-2.20243,-2.84976)--(-2.20117,-2.84992)--(-2.1999,-2.85007)--(-2.19864,-2.85022)--(-2.19738,-2.85037)--(-2.19611,-2.85052)--(-2.19485,-2.85068)--
> (-2.19358,-2.85083)--(-2.19232,-2.85098)--(-2.19105,-2.85112)--(-2.18978,-2.85127)--(-2.18852,-2.85142)--(-2.18725,-2.85157)--(-2.18598,-2.85172)--(-2.18471,-2.85186)--(-2.18344,-2.85201)--(-2.18217,-2.85216)--(-2.1809,-2.8523)--(-2.17962,-2.85245)--(-2.17835,-2.85259)--(-2.17708,-2.85273)--(-2.1758,-2.85288)--(-2.17453,-2.85302)--(-2.17325,-2.85316)--(-2.17198,-2.8533)--(-2.1707,-2.85345)--(-2.16942,-2.85359)--(-2.16815,-2.85373)--(-2.16687,-2.85387)--(-2.16559,-2.854)--(-2.16431,-2.85414)--
> (-2.16303,-2.85428)--(-2.16175,-2.85442)--(-2.16047,-2.85456)--(-2.15919,-2.85469)--(-2.1579,-2.85483)--(-2.15662,-2.85496)--(-2.15534,-2.8551)--(-2.15405,-2.85523)--(-2.15277,-2.85537)--(-2.15148,-2.8555)--(-2.1502,-2.85563)--(-2.14891,-2.85577)--(-2.14762,-2.8559)--(-2.14633,-2.85603)--(-2.14505,-2.85616)--(-2.14376,-2.85629)--(-2.14247,-2.85642)--(-2.14118,-2.85655)--(-2.13989,-2.85668)--(-2.13859,-2.85681)--(-2.1373,-2.85694)--(-2.13601,-2.85706)--(-2.13471,-2.85719)--(-2.13342,-2.85732)--
> (-2.13213,-2.85744)--(-2.13083,-2.85757)--(-2.12953,-2.85769)--(-2.12824,-2.85781)--(-2.12694,-2.85794)--(-2.12564,-2.85806)--(-2.12434,-2.85818)--(-2.12305,-2.85831)--(-2.12175,-2.85843)--(-2.12045,-2.85855)--(-2.11914,-2.85867)--(-2.11784,-2.85879)--(-2.11654,-2.85891)--(-2.11524,-2.85903)--(-2.11393,-2.85914)--(-2.11263,-2.85926)--(-2.11133,-2.85938)--(-2.11002,-2.85949)--(-2.10871,-2.85961)--(-2.10741,-2.85973)--(-2.1061,-2.85984)--(-2.10479,-2.85996)--(-2.10348,-2.86007)--
> (-2.10217,-2.86018)--(-2.10087,-2.8603)--(-2.09955,-2.86041)--(-2.09824,-2.86052)--(-2.09693,-2.86063)--(-2.09562,-2.86074)--(-2.09431,-2.86085)--(-2.09299,-2.86096)--(-2.09168,-2.86107)--(-2.09037,-2.86118)--(-2.08905,-2.86129)--(-2.08773,-2.86139)--(-2.08642,-2.8615)--(-2.0851,-2.86161)--(-2.08378,-2.86171)--(-2.08246,-2.86182)--(-2.08114,-2.86192)--(-2.07983,-2.86202)--(-2.0785,-2.86213)--(-2.07718,-2.86223)--(-2.07586,-2.86233)--(-2.07454,-2.86243)--(-2.07322,-2.86254)--(-2.07189,-2.86264)--
> (-2.07057,-2.86274)--(-2.06925,-2.86284)--(-2.06792,-2.86294)--(-2.06659,-2.86303)--(-2.06527,-2.86313)--(-2.06394,-2.86323)--(-2.06261,-2.86333)--(-2.06128,-2.86342)--(-2.05995,-2.86352)--(-2.05862,-2.86361)--(-2.05729,-2.86371)--(-2.05596,-2.8638)--(-2.05463,-2.86389)--(-2.0533,-2.86399)--(-2.05197,-2.86408)--(-2.05063,-2.86417)--(-2.0493,-2.86426)--(-2.04796,-2.86435)--(-2.04663,-2.86444)--(-2.04529,-2.86453)--(-2.04396,-2.86462)--(-2.04262,-2.86471)--(-2.04128,-2.8648)--(-2.03994,-2.86488)--
> (-2.0386,-2.86497)--(-2.03726,-2.86506)--(-2.03592,-2.86514)--(-2.03458,-2.86523)--(-2.03324,-2.86531)--(-2.0319,-2.86539)--(-2.03055,-2.86548)--(-2.02921,-2.86556)--(-2.02787,-2.86564)--(-2.02652,-2.86572)--(-2.02518,-2.8658)--(-2.02383,-2.86588)--(-2.02248,-2.86596)--(-2.02113,-2.86604)--(-2.01979,-2.86612)--(-2.01844,-2.8662)--(-2.01709,-2.86628)--(-2.01574,-2.86635)--(-2.01439,-2.86643)--(-2.01304,-2.86651)--(-2.01168,-2.86658)--(-2.01033,-2.86666)--(-2.00898,-2.86673)--(-2.00762,-2.8668)--
> (-2.00627,-2.86688)--(-2.00492,-2.86695)--(-2.00356,-2.86702)--(-2.0022,-2.86709)--(-2.00085,-2.86716)--(-1.99949,-2.86723)--(-1.99813,-2.8673)--(-1.99677,-2.86737)--(-1.99541,-2.86744)--(-1.99405,-2.8675)--(-1.99269,-2.86757)--(-1.99133,-2.86764)--(-1.98997,-2.8677)--(-1.9886,-2.86777)--(-1.98724,-2.86783)--(-1.98588,-2.86789)--(-1.98451,-2.86796)--(-1.98315,-2.86802)--(-1.98178,-2.86808)--(-1.98041,-2.86814)--(-1.97905,-2.8682)--(-1.97768,-2.86826)--(-1.97631,-2.86832)--(-1.97494,-2.86838)--
> (-1.97357,-2.86844)--(-1.9722,-2.8685)--(-1.97083,-2.86856)--(-1.96946,-2.86861)--(-1.96808,-2.86867)--(-1.96671,-2.86872)--(-1.96534,-2.86878)--(-1.96396,-2.86883)--(-1.96259,-2.86889)--(-1.96121,-2.86894)--(-1.95984,-2.86899)--(-1.95846,-2.86904)--(-1.95708,-2.8691)--(-1.9557,-2.86915)--(-1.95432,-2.8692)--(-1.95294,-2.86924)--(-1.95156,-2.86929)--(-1.95018,-2.86934)--(-1.9488,-2.86939)--(-1.94742,-2.86944)--(-1.94604,-2.86948)--(-1.94465,-2.86953)--(-1.94327,-2.86957)--(-1.94188,-2.86962)--
> (-1.9405,-2.86966)--(-1.93911,-2.8697)--(-1.93773,-2.86975)--(-1.93634,-2.86979)--(-1.93495,-2.86983)--(-1.93356,-2.86987)--(-1.93217,-2.86991)--(-1.93078,-2.86995)--(-1.92939,-2.86999)--(-1.928,-2.87003)--(-1.92661,-2.87006)--(-1.92522,-2.8701)--(-1.92382,-2.87014)--(-1.92243,-2.87017)--(-1.92103,-2.87021)--(-1.91964,-2.87024)--(-1.91824,-2.87028)--(-1.91685,-2.87031)--(-1.91545,-2.87034)--(-1.91405,-2.87037)--(-1.91265,-2.8704)--(-1.91125,-2.87044)--(-1.90985,-2.87047)--(-1.90845,-2.87049)--
> (-1.90705,-2.87052)--(-1.90565,-2.87055)--(-1.90425,-2.87058)--(-1.90285,-2.87061)--(-1.90144,-2.87063)--(-1.90004,-2.87066)--(-1.89863,-2.87068)--(-1.89723,-2.87071)--(-1.89582,-2.87073)--(-1.89441,-2.87075)--(-1.89301,-2.87078)--(-1.8916,-2.8708)--(-1.89019,-2.87082)--(-1.88878,-2.87084)--(-1.88737,-2.87086)--(-1.88596,-2.87088)--(-1.88455,-2.8709)--(-1.88313,-2.87091)--(-1.88172,-2.87093)--(-1.88031,-2.87095)--(-1.87889,-2.87096)--(-1.87748,-2.87098)--(-1.87606,-2.87099)--(-1.87465,-2.87101)--
> (-1.87323,-2.87102)--(-1.87181,-2.87103)--(-1.8704,-2.87104)--(-1.86898,-2.87106)--(-1.86756,-2.87107)--(-1.86614,-2.87108)--(-1.86472,-2.87109)--(-1.86329,-2.87109)--(-1.86187,-2.8711)--(-1.86045,-2.87111)--(-1.85903,-2.87112)--(-1.8576,-2.87112)--(-1.85618,-2.87113)--(-1.85475,-2.87113)--(-1.85333,-2.87114)--(-1.8519,-2.87114)--(-1.85047,-2.87114)--(-1.84904,-2.87115)--(-1.84762,-2.87115)--(-1.84619,-2.87115)--(-1.84476,-2.87115)--(-1.84333,-2.87115)--(-1.84189,-2.87115)--(-1.84046,-2.87114)--
> (-1.83903,-2.87114)--(-1.8376,-2.87114)--(-1.83616,-2.87113)--(-1.83473,-2.87113)--(-1.83329,-2.87112)--(-1.83186,-2.87112)--(-1.83042,-2.87111)--(-1.82898,-2.8711)--(-1.82754,-2.8711)--(-1.82611,-2.87109)--(-1.82467,-2.87108)--(-1.82323,-2.87107)--(-1.82179,-2.87106)--(-1.82035,-2.87105)--(-1.8189,-2.87103)--(-1.81746,-2.87102)--(-1.81602,-2.87101)--(-1.81457,-2.87099)--(-1.81313,-2.87098)--(-1.81168,-2.87096)--(-1.81024,-2.87095)--(-1.80879,-2.87093)--(-1.80734,-2.87091)--(-1.8059,-2.8709)--
> (-1.80445,-2.87088)--(-1.803,-2.87086)--(-1.80155,-2.87084)--(-1.8001,-2.87082)--(-1.79865,-2.87079)--(-1.79719,-2.87077)--(-1.79574,-2.87075)--(-1.79429,-2.87073)--(-1.79283,-2.8707)--(-1.79138,-2.87068)--(-1.78993,-2.87065)--(-1.78847,-2.87062)--(-1.78701,-2.8706)--(-1.78556,-2.87057)--(-1.7841,-2.87054)--(-1.78264,-2.87051)--(-1.78118,-2.87048)--(-1.77972,-2.87045)--(-1.77826,-2.87042)--(-1.7768,-2.87039)--(-1.77534,-2.87035)--(-1.77387,-2.87032)--(-1.77241,-2.87029)--(-1.77095,-2.87025)--
> (-1.76948,-2.87022)--(-1.76802,-2.87018)--(-1.76655,-2.87014)--(-1.76508,-2.8701)--(-1.76362,-2.87007)--(-1.76215,-2.87003)--(-1.76068,-2.86999)--(-1.75921,-2.86995)--(-1.75774,-2.86991)--(-1.75627,-2.86986)--(-1.7548,-2.86982)--(-1.75333,-2.86978)--(-1.75185,-2.86973)--(-1.75038,-2.86969)--(-1.74891,-2.86964)--(-1.74743,-2.8696)--(-1.74596,-2.86955)--(-1.74448,-2.8695)--(-1.743,-2.86945)--(-1.74153,-2.8694)--(-1.74005,-2.86935)--(-1.73857,-2.8693)--(-1.73709,-2.86925)--(-1.73561,-2.8692)--
> (-1.73413,-2.86915)--(-1.73265,-2.86909)--(-1.73117,-2.86904)--(-1.72968,-2.86899)--(-1.7282,-2.86893)--(-1.72672,-2.86887)--(-1.72523,-2.86882)--(-1.72375,-2.86876)--(-1.72226,-2.8687)--(-1.72077,-2.86864)--(-1.71929,-2.86858)--(-1.7178,-2.86852)--(-1.71631,-2.86846)--(-1.71482,-2.8684)--(-1.71333,-2.86833)--(-1.71184,-2.86827)--(-1.71035,-2.8682)--(-1.70885,-2.86814)--(-1.70736,-2.86807)--(-1.70587,-2.86801)--(-1.70437,-2.86794)--(-1.70288,-2.86787)--(-1.70138,-2.8678)--(-1.69989,-2.86773)--
> (-1.69839,-2.86766)--(-1.69689,-2.86759)--(-1.69539,-2.86752)--(-1.69389,-2.86745)--(-1.6924,-2.86737)--(-1.69089,-2.8673)--(-1.68939,-2.86722)--(-1.68789,-2.86715)--(-1.68639,-2.86707)--(-1.68489,-2.867)--(-1.68338,-2.86692)--(-1.68188,-2.86684)--(-1.68037,-2.86676)--(-1.67887,-2.86668)--(-1.67736,-2.8666)--(-1.67585,-2.86652)--(-1.67435,-2.86643)--(-1.67284,-2.86635)--(-1.67133,-2.86627)--(-1.66982,-2.86618)--(-1.66831,-2.8661)--(-1.6668,-2.86601)--(-1.66529,-2.86592)--(-1.66377,-2.86584)--
> (-1.66226,-2.86575)--(-1.66075,-2.86566)--(-1.65923,-2.86557)--(-1.65772,-2.86548)--(-1.6562,-2.86539)--(-1.65468,-2.86529)--(-1.65317,-2.8652)--(-1.65165,-2.86511)--(-1.65013,-2.86501)--(-1.64861,-2.86492)--(-1.64709,-2.86482)--(-1.64557,-2.86472)--(-1.64405,-2.86463)--(-1.64253,-2.86453)--(-1.641,-2.86443)--(-1.63948,-2.86433)--(-1.63796,-2.86423)--(-1.63643,-2.86413)--(-1.63491,-2.86402)--(-1.63338,-2.86392)--(-1.63185,-2.86382)--(-1.63033,-2.86371)--(-1.6288,-2.86361)--(-1.62727,-2.8635)--
> (-1.62574,-2.86339)--(-1.62421,-2.86329)--(-1.62268,-2.86318)--(-1.62115,-2.86307)--(-1.61961,-2.86296)--(-1.61808,-2.86285)--(-1.61655,-2.86273)--(-1.61501,-2.86262)--(-1.61348,-2.86251)--(-1.61194,-2.86239)--(-1.61041,-2.86228)--(-1.60887,-2.86216)--(-1.60733,-2.86205)--(-1.60579,-2.86193)--(-1.60425,-2.86181)--(-1.60272,-2.86169)--(-1.60117,-2.86157)--(-1.59963,-2.86145)--(-1.59809,-2.86133)--(-1.59655,-2.86121)--(-1.59501,-2.86109)--(-1.59346,-2.86096)--(-1.59192,-2.86084)--
> (-1.59037,-2.86071)--(-1.58883,-2.86059)--(-1.58728,-2.86046)--(-1.58573,-2.86033)--(-1.58418,-2.8602)--(-1.58264,-2.86007)--(-1.58109,-2.85994)--(-1.57954,-2.85981)--(-1.57799,-2.85968)--(-1.57643,-2.85955)--(-1.57488,-2.85941)--(-1.57333,-2.85928)--(-1.57178,-2.85914)--(-1.57022,-2.85901)--(-1.56867,-2.85887)--(-1.56711,-2.85873)--(-1.56556,-2.8586)--(-1.564,-2.85846)--(-1.56244,-2.85832)--(-1.56088,-2.85818)--(-1.55932,-2.85803)--(-1.55776,-2.85789)--(-1.5562,-2.85775)--(-1.55464,-2.8576)--
> (-1.55308,-2.85746)--(-1.55152,-2.85731)--(-1.54996,-2.85717)--(-1.54839,-2.85702)--(-1.54683,-2.85687)--(-1.54526,-2.85672)--(-1.5437,-2.85657)--(-1.54213,-2.85642)--(-1.54056,-2.85627)--(-1.539,-2.85612)--(-1.53743,-2.85597)--(-1.53586,-2.85581)--(-1.53429,-2.85566)--(-1.53272,-2.8555)--(-1.53115,-2.85534)--(-1.52958,-2.85519)--(-1.528,-2.85503)--(-1.52643,-2.85487)--(-1.52486,-2.85471)--(-1.52328,-2.85455)--(-1.52171,-2.85439)--(-1.52013,-2.85422)--(-1.51855,-2.85406)--(-1.51698,-2.8539)--
> (-1.5154,-2.85373)--(-1.51382,-2.85357)--(-1.51224,-2.8534)--(-1.51066,-2.85323)--(-1.50908,-2.85306)--(-1.5075,-2.85289)--(-1.50591,-2.85272)--(-1.50433,-2.85255)--(-1.50275,-2.85238)--(-1.50116,-2.85221)--(-1.49958,-2.85204)--(-1.49799,-2.85186)--(-1.49641,-2.85169)--(-1.49482,-2.85151)--(-1.49323,-2.85133)--(-1.49164,-2.85115)--(-1.49005,-2.85098)--(-1.48846,-2.8508)--(-1.48687,-2.85062)--(-1.48528,-2.85043)--(-1.48369,-2.85025)--(-1.4821,-2.85007)--(-1.48051,-2.84989)--(-1.47891,-2.8497)--
> (-1.47732,-2.84952)--(-1.47572,-2.84933)--(-1.47413,-2.84914)--(-1.47253,-2.84895)--(-1.47093,-2.84876)--(-1.46933,-2.84857)--(-1.46774,-2.84838)--(-1.46614,-2.84819)--(-1.46454,-2.848)--(-1.46293,-2.84781)--(-1.46133,-2.84761)--(-1.45973,-2.84742)--(-1.45813,-2.84722)--(-1.45653,-2.84702)--(-1.45492,-2.84682)--(-1.45332,-2.84663)--(-1.45171,-2.84643)--(-1.4501,-2.84623)--(-1.4485,-2.84602)--(-1.44689,-2.84582)--(-1.44528,-2.84562)--(-1.44367,-2.84541)--(-1.44206,-2.84521)--(-1.44045,-2.845)--
> (-1.43884,-2.8448)--(-1.43723,-2.84459)--(-1.43562,-2.84438)--(-1.434,-2.84417)--(-1.43239,-2.84396)--(-1.43078,-2.84375)--(-1.42916,-2.84354)--(-1.42754,-2.84332)--(-1.42593,-2.84311)--(-1.42431,-2.84289)--(-1.42269,-2.84268)--(-1.42107,-2.84246)--(-1.41945,-2.84224)--(-1.41783,-2.84203)--(-1.41621,-2.84181)--(-1.41459,-2.84159)--(-1.41297,-2.84137)--(-1.41135,-2.84114)--(-1.40972,-2.84092)--(-1.4081,-2.8407)--(-1.40648,-2.84047)--(-1.40485,-2.84025)--(-1.40322,-2.84002)--(-1.4016,-2.83979)--
> (-1.39997,-2.83956)--(-1.39834,-2.83933)--(-1.39671,-2.8391)--(-1.39508,-2.83887)--(-1.39345,-2.83864)--(-1.39182,-2.83841)--(-1.39019,-2.83817)--(-1.38856,-2.83794)--(-1.38692,-2.8377)--(-1.38529,-2.83746)--(-1.38366,-2.83723)--(-1.38202,-2.83699)--(-1.38039,-2.83675)--(-1.37875,-2.83651)--(-1.37711,-2.83627)--(-1.37547,-2.83602)--(-1.37384,-2.83578)--(-1.3722,-2.83554)--(-1.37056,-2.83529)--(-1.36892,-2.83505)--(-1.36727,-2.8348)--(-1.36563,-2.83455)--(-1.36399,-2.8343)--(-1.36235,-2.83405)--
> (-1.3607,-2.8338)--(-1.35906,-2.83355)--(-1.35741,-2.8333)--(-1.35577,-2.83304)--(-1.35412,-2.83279)--(-1.35247,-2.83253)--(-1.35082,-2.83228)--(-1.34918,-2.83202)--(-1.34753,-2.83176)--(-1.34588,-2.8315)--(-1.34422,-2.83124)--(-1.34257,-2.83098)--(-1.34092,-2.83072)--(-1.33927,-2.83045)--(-1.33761,-2.83019)--(-1.33596,-2.82992)--(-1.33431,-2.82966)--(-1.33265,-2.82939)--(-1.33099,-2.82912)--(-1.32934,-2.82885)--(-1.32768,-2.82858)--(-1.32602,-2.82831)--(-1.32436,-2.82804)--(-1.3227,-2.82777)--
> (-1.32104,-2.8275)--(-1.31938,-2.82722)--(-1.31772,-2.82694)--(-1.31606,-2.82667)--(-1.31439,-2.82639)--(-1.31273,-2.82611)--(-1.31106,-2.82583)--(-1.3094,-2.82555)--(-1.30773,-2.82527)--(-1.30607,-2.82499)--(-1.3044,-2.8247)--(-1.30273,-2.82442)--(-1.30106,-2.82413)--(-1.29939,-2.82385)--(-1.29772,-2.82356)--(-1.29605,-2.82327)--(-1.29438,-2.82298)--(-1.29271,-2.82269)--(-1.29104,-2.8224)--(-1.28936,-2.82211)--(-1.28769,-2.82182)--(-1.28601,-2.82152)--(-1.28434,-2.82123)--(-1.28266,-2.82093)--
> (-1.28099,-2.82063)--(-1.27931,-2.82034)--(-1.27763,-2.82004)--(-1.27595,-2.81974)--(-1.27427,-2.81943)--(-1.27259,-2.81913)--(-1.27091,-2.81883)--(-1.26923,-2.81853)--(-1.26755,-2.81822)--(-1.26586,-2.81791)--(-1.26418,-2.81761)--(-1.26249,-2.8173)--(-1.26081,-2.81699)--(-1.25912,-2.81668)--(-1.25744,-2.81637)--(-1.25575,-2.81606)--(-1.25406,-2.81574)--(-1.25237,-2.81543)--(-1.25069,-2.81511)--(-1.249,-2.8148)--(-1.24731,-2.81448)--(-1.24561,-2.81416)--(-1.24392,-2.81384)--(-1.24223,-2.81352)--
> (-1.24054,-2.8132)--(-1.23884,-2.81288)--(-1.23715,-2.81255)--(-1.23545,-2.81223)--(-1.23376,-2.8119)--(-1.23206,-2.81158)--(-1.23036,-2.81125)--(-1.22867,-2.81092)--(-1.22697,-2.81059)--(-1.22527,-2.81026)--(-1.22357,-2.80993)--(-1.22187,-2.8096)--(-1.22017,-2.80926)--(-1.21846,-2.80893)--(-1.21676,-2.80859)--(-1.21506,-2.80826)--(-1.21335,-2.80792)--(-1.21165,-2.80758)--(-1.20994,-2.80724)--(-1.20824,-2.8069)--(-1.20653,-2.80656)--(-1.20482,-2.80622)--(-1.20312,-2.80587)--(-1.20141,-2.80553)--
> (-1.1997,-2.80518)--(-1.19799,-2.80483)--(-1.19628,-2.80449)--(-1.19457,-2.80414)--(-1.19285,-2.80379)--(-1.19114,-2.80344)--(-1.18943,-2.80308)--(-1.18771,-2.80273)--(-1.186,-2.80238)--(-1.18428,-2.80202)--(-1.18257,-2.80166)--(-1.18085,-2.80131)--(-1.17913,-2.80095)--(-1.17741,-2.80059)--(-1.1757,-2.80023)--(-1.17398,-2.79986)--(-1.17226,-2.7995)--(-1.17053,-2.79914)--(-1.16881,-2.79877)--(-1.16709,-2.79841)--(-1.16537,-2.79804)--(-1.16364,-2.79767)--(-1.16192,-2.7973)--(-1.1602,-2.79693)--
> (-1.15847,-2.79656)--(-1.15674,-2.79619)--(-1.15502,-2.79581)--(-1.15329,-2.79544)--(-1.15156,-2.79506)--(-1.14983,-2.79469)--(-1.1481,-2.79431)--(-1.14637,-2.79393)--(-1.14464,-2.79355)--(-1.14291,-2.79317)--(-1.14118,-2.79279)--(-1.13944,-2.7924)--(-1.13771,-2.79202)--(-1.13598,-2.79163)--(-1.13424,-2.79125)--(-1.13251,-2.79086)--(-1.13077,-2.79047)--(-1.12903,-2.79008)--(-1.1273,-2.78969)--(-1.12556,-2.7893)--(-1.12382,-2.78891)--(-1.12208,-2.78851)--(-1.12034,-2.78812)--(-1.1186,-2.78772)--
> (-1.11686,-2.78732)--(-1.11511,-2.78692)--(-1.11337,-2.78653)--(-1.11163,-2.78612)--(-1.10988,-2.78572)--(-1.10814,-2.78532)--(-1.10639,-2.78492)--(-1.10465,-2.78451)--(-1.1029,-2.7841)--(-1.10115,-2.7837)--(-1.0994,-2.78329)--(-1.09765,-2.78288)--(-1.0959,-2.78247)--(-1.09415,-2.78206)--(-1.0924,-2.78164)--(-1.09065,-2.78123)--(-1.0889,-2.78082)--(-1.08715,-2.7804)--(-1.08539,-2.77998)--(-1.08364,-2.77956)--(-1.08188,-2.77914)--(-1.08013,-2.77872)--(-1.07837,-2.7783)--(-1.07662,-2.77788)--
> (-1.07486,-2.77745)--(-1.0731,-2.77703)--(-1.07134,-2.7766)--(-1.06958,-2.77618)--(-1.06782,-2.77575)--(-1.06606,-2.77532)--(-1.0643,-2.77489)--(-1.06254,-2.77445)--(-1.06078,-2.77402)--(-1.05901,-2.77359)--(-1.05725,-2.77315)--(-1.05548,-2.77271)--(-1.05372,-2.77228)--(-1.05195,-2.77184)--(-1.05019,-2.7714)--(-1.04842,-2.77096)--(-1.04665,-2.77052)--(-1.04488,-2.77007)--(-1.04311,-2.76963)--(-1.04134,-2.76918)--(-1.03957,-2.76873)--(-1.0378,-2.76829)--(-1.03603,-2.76784)--(-1.03426,-2.76739)--
> (-1.03248,-2.76694)--(-1.03071,-2.76648)--(-1.02893,-2.76603)--(-1.02716,-2.76558)--(-1.02538,-2.76512)--(-1.02361,-2.76466)--(-1.02183,-2.7642)--(-1.02005,-2.76374)--(-1.01827,-2.76328)--(-1.01649,-2.76282)--(-1.01472,-2.76236)--(-1.01293,-2.76189)--(-1.01115,-2.76143)--(-1.00937,-2.76096)--(-1.00759,-2.76049)--(-1.00581,-2.76003)--(-1.00402,-2.75956)--(-1.00224,-2.75908)--(-1.00045,-2.75861)--(-0.998669,-2.75814)--(-0.996883,-2.75766)--(-0.995096,-2.75719)--(-0.993309,-2.75671)--
> (-0.99152,-2.75623)--(-0.989732,-2.75575)--(-0.987942,-2.75527)--(-0.986152,-2.75479)--(-0.984362,-2.75431)--(-0.98257,-2.75382)--(-0.980778,-2.75334)--(-0.978986,-2.75285)--(-0.977193,-2.75236)--(-0.975399,-2.75188)--(-0.973604,-2.75139)--(-0.971809,-2.75089)--(-0.970013,-2.7504)--(-0.968217,-2.74991)--(-0.96642,-2.74941)--(-0.964622,-2.74892)--(-0.962824,-2.74842)--(-0.961025,-2.74792)--(-0.959225,-2.74742)--(-0.957425,-2.74692)--(-0.955624,-2.74642)--(-0.953823,-2.74592)--(-0.952021,-2.74541)--
> (-0.950218,-2.74491)--(-0.948414,-2.7444)--(-0.94661,-2.74389)--(-0.944806,-2.74338)--(-0.943,-2.74287)--(-0.941194,-2.74236)--(-0.939388,-2.74185)--(-0.937581,-2.74133)--(-0.935773,-2.74082)--(-0.933964,-2.7403)--(-0.932155,-2.73978)--(-0.930345,-2.73926)--(-0.928535,-2.73874)--(-0.926724,-2.73822)--(-0.924912,-2.7377)--(-0.9231,-2.73717)--(-0.921287,-2.73665)--(-0.919474,-2.73612)--(-0.91766,-2.73559)--(-0.915845,-2.73507)--(-0.91403,-2.73454)--(-0.912214,-2.734)--(-0.910397,-2.73347)--
> (-0.90858,-2.73294)--(-0.906762,-2.7324)--(-0.904943,-2.73187)--(-0.903124,-2.73133)--(-0.901304,-2.73079)--(-0.899484,-2.73025)--(-0.897663,-2.72971)--(-0.895841,-2.72917)--(-0.894019,-2.72862)--(-0.892196,-2.72808)--(-0.890373,-2.72753)--(-0.888549,-2.72698)--(-0.886724,-2.72643)--(-0.884899,-2.72588)--(-0.883073,-2.72533)--(-0.881246,-2.72478)--(-0.879419,-2.72423)--(-0.877591,-2.72367)--(-0.875763,-2.72312)--(-0.873934,-2.72256)--(-0.872104,-2.722)--(-0.870274,-2.72144)--(-0.868443,-2.72088)--
> (-0.866611,-2.72032)--(-0.864779,-2.71975)--(-0.862946,-2.71919)--(-0.861113,-2.71862)--(-0.859279,-2.71805)--(-0.857444,-2.71748)--(-0.855609,-2.71691)--(-0.853774,-2.71634)--(-0.851937,-2.71577)--(-0.8501,-2.71519)--(-0.848263,-2.71462)--(-0.846424,-2.71404)--(-0.844585,-2.71346)--(-0.842746,-2.71289)--(-0.840906,-2.7123)--(-0.839065,-2.71172)--(-0.837224,-2.71114)--(-0.835382,-2.71056)--(-0.83354,-2.70997)--(-0.831697,-2.70938)--(-0.829853,-2.70879)--(-0.828009,-2.70821)--(-0.826164,-2.70761)--
> (-0.824318,-2.70702)--(-0.822472,-2.70643)--(-0.820626,-2.70583)--(-0.818778,-2.70524)--(-0.81693,-2.70464)--(-0.815082,-2.70404)--(-0.813233,-2.70344)--(-0.811383,-2.70284)--(-0.809533,-2.70224)--(-0.807682,-2.70164)--(-0.805831,-2.70103)--(-0.803978,-2.70042)--(-0.802126,-2.69982)--(-0.800273,-2.69921)--(-0.798419,-2.6986)--(-0.796564,-2.69799)--(-0.794709,-2.69737)--(-0.792854,-2.69676)--(-0.790997,-2.69614)--(-0.789141,-2.69553)--(-0.787283,-2.69491)--(-0.785425,-2.69429)--
> (-0.783567,-2.69367)--(-0.781707,-2.69304)--(-0.779848,-2.69242)--(-0.777987,-2.6918)--(-0.776126,-2.69117)--(-0.774265,-2.69054)--(-0.772403,-2.68991)--(-0.77054,-2.68928)--(-0.768677,-2.68865)--(-0.766813,-2.68802)--(-0.764949,-2.68739)--(-0.763084,-2.68675)--(-0.761218,-2.68611)--(-0.759352,-2.68547)--(-0.757485,-2.68484)--(-0.755618,-2.68419)--(-0.75375,-2.68355)--(-0.751881,-2.68291)--(-0.750012,-2.68226)--(-0.748143,-2.68162)--(-0.746272,-2.68097)--(-0.744402,-2.68032)--(-0.74253,-2.67967)--
> (-0.740658,-2.67902)--(-0.738786,-2.67837)--(-0.736913,-2.67771)--(-0.735039,-2.67706)--(-0.733165,-2.6764)--(-0.73129,-2.67574)--(-0.729414,-2.67508)--(-0.727539,-2.67442)--(-0.725662,-2.67376)--(-0.723785,-2.67309)--(-0.721907,-2.67243)--(-0.720029,-2.67176)--(-0.71815,-2.67109)--(-0.716271,-2.67042)--(-0.714391,-2.66975)--(-0.71251,-2.66908)--(-0.710629,-2.66841)--(-0.708748,-2.66773)--(-0.706866,-2.66706)--(-0.704983,-2.66638)--(-0.7031,-2.6657)--(-0.701216,-2.66502)--(-0.699331,-2.66434)--
> (-0.697446,-2.66366)--(-0.695561,-2.66297)--(-0.693675,-2.66228)--(-0.691788,-2.6616)--(-0.689901,-2.66091)--(-0.688013,-2.66022)--(-0.686125,-2.65953)--(-0.684236,-2.65883)--(-0.682346,-2.65814)--(-0.680456,-2.65744)--(-0.678566,-2.65675)--(-0.676675,-2.65605)--(-0.674783,-2.65535)--(-0.672891,-2.65465)--(-0.670998,-2.65395)--(-0.669105,-2.65324)--(-0.667211,-2.65254)--(-0.665317,-2.65183)--(-0.663422,-2.65112)--(-0.661526,-2.65041)--(-0.65963,-2.6497)--(-0.657734,-2.64899)--
> (-0.655837,-2.64827)--(-0.653939,-2.64756)--(-0.652041,-2.64684)--(-0.650142,-2.64612)--(-0.648243,-2.64541)--(-0.646343,-2.64468)--(-0.644443,-2.64396)--(-0.642542,-2.64324)--(-0.640641,-2.64251)--(-0.638739,-2.64179)--(-0.636836,-2.64106)--(-0.634933,-2.64033)--(-0.63303,-2.6396)--(-0.631126,-2.63887)--(-0.629221,-2.63813)--(-0.627316,-2.6374)--(-0.62541,-2.63666)--(-0.623504,-2.63592)--(-0.621597,-2.63518)--(-0.61969,-2.63444)--(-0.617782,-2.6337)--(-0.615874,-2.63296)--(-0.613965,-2.63221)--
> (-0.612056,-2.63146)--(-0.610146,-2.63072)--(-0.608236,-2.62997)--(-0.606325,-2.62922)--(-0.604413,-2.62846)--(-0.602501,-2.62771)--(-0.600589,-2.62695)--(-0.598676,-2.6262)--(-0.596762,-2.62544)--(-0.594848,-2.62468)--(-0.592934,-2.62392)--(-0.591019,-2.62315)--(-0.589103,-2.62239)--(-0.587187,-2.62163)--(-0.58527,-2.62086)--(-0.583353,-2.62009)--(-0.581436,-2.61932)--(-0.579518,-2.61855)--(-0.577599,-2.61778)--(-0.57568,-2.617)--(-0.57376,-2.61623)--(-0.57184,-2.61545)--(-0.569919,-2.61467)--
> (-0.567998,-2.61389)--(-0.566077,-2.61311)--(-0.564154,-2.61232)--(-0.562232,-2.61154)--(-0.560309,-2.61075)--(-0.558385,-2.60997)--(-0.556461,-2.60918)--(-0.554536,-2.60839)--(-0.552611,-2.60759)--(-0.550685,-2.6068)--(-0.548759,-2.60601)--(-0.546832,-2.60521)--(-0.544905,-2.60441)--(-0.542978,-2.60361)--(-0.54105,-2.60281)--(-0.539121,-2.60201)--(-0.537192,-2.60121)--(-0.535262,-2.6004)--(-0.533332,-2.59959)--(-0.531402,-2.59878)--(-0.529471,-2.59797)--(-0.527539,-2.59716)--
> (-0.525607,-2.59635)--(-0.523675,-2.59554)--(-0.521742,-2.59472)--(-0.519808,-2.5939)--(-0.517874,-2.59308)--(-0.51594,-2.59226)--(-0.514005,-2.59144)--(-0.51207,-2.59062)--(-0.510134,-2.58979)--(-0.508197,-2.58897)--(-0.506261,-2.58814)--(-0.504323,-2.58731)--(-0.502386,-2.58648)--(-0.500447,-2.58564)--(-0.498509,-2.58481)--(-0.49657,-2.58397)--(-0.49463,-2.58314)--(-0.49269,-2.5823)--(-0.490749,-2.58146)--(-0.488808,-2.58062)--(-0.486867,-2.57977)--(-0.484925,-2.57893)--(-0.482983,-2.57808)--
> (-0.48104,-2.57723)--(-0.479096,-2.57639)--(-0.477153,-2.57553)--(-0.475208,-2.57468)--(-0.473264,-2.57383)--(-0.471319,-2.57297)--(-0.469373,-2.57212)--(-0.467427,-2.57126)--(-0.46548,-2.5704)--(-0.463533,-2.56954)--(-0.461586,-2.56867)--(-0.459638,-2.56781)--(-0.45769,-2.56694)--(-0.455741,-2.56607)--(-0.453792,-2.5652)--(-0.451842,-2.56433)--(-0.449892,-2.56346)--(-0.447942,-2.56259)--(-0.445991,-2.56171)--(-0.444039,-2.56083)--(-0.442088,-2.55995)--(-0.440135,-2.55907)--(-0.438183,-2.55819)--
> (-0.436229,-2.55731)--(-0.434276,-2.55642)--(-0.432322,-2.55554)--(-0.430367,-2.55465)--(-0.428413,-2.55376)--(-0.426457,-2.55287)--(-0.424502,-2.55197)--(-0.422545,-2.55108)--(-0.420589,-2.55018)--(-0.418632,-2.54929)--(-0.416674,-2.54839)--(-0.414716,-2.54749)--(-0.412758,-2.54658)--(-0.410799,-2.54568)--(-0.40884,-2.54477)--(-0.406881,-2.54387)--(-0.404921,-2.54296)--(-0.40296,-2.54205)--(-0.401,-2.54114)--(-0.399038,-2.54022)--(-0.397077,-2.53931)--(-0.395115,-2.53839)--(-0.393152,-2.53747)--
> (-0.39119,-2.53655)--(-0.389226,-2.53563)--(-0.387263,-2.53471)--(-0.385299,-2.53378)--(-0.383334,-2.53286)--(-0.381369,-2.53193)--(-0.379404,-2.531)--(-0.377438,-2.53007)--(-0.375472,-2.52914)--(-0.373506,-2.5282)--(-0.371539,-2.52727)--(-0.369572,-2.52633)--(-0.367604,-2.52539)--(-0.365636,-2.52445)--(-0.363667,-2.52351)--(-0.361699,-2.52256)--(-0.359729,-2.52162)--(-0.35776,-2.52067)--(-0.35579,-2.51972)--(-0.353819,-2.51877)--(-0.351849,-2.51782)--(-0.349877,-2.51687)--(-0.347906,-2.51591)--
> (-0.345934,-2.51495)--(-0.343962,-2.514)--(-0.341989,-2.51304)--(-0.340016,-2.51207)--(-0.338043,-2.51111)--(-0.336069,-2.51015)--(-0.334095,-2.50918)--(-0.33212,-2.50821)--(-0.330145,-2.50724)--(-0.32817,-2.50627)--(-0.326194,-2.5053)--(-0.324218,-2.50432)--(-0.322242,-2.50334)--(-0.320265,-2.50237)--(-0.318288,-2.50139)--(-0.316311,-2.5004)--(-0.314333,-2.49942)--(-0.312355,-2.49844)--(-0.310376,-2.49745)--(-0.308397,-2.49646)--(-0.306418,-2.49547)--(-0.304438,-2.49448)--(-0.302458,-2.49349)--
> (-0.300478,-2.49249)--(-0.298497,-2.4915)--(-0.296516,-2.4905)--(-0.294535,-2.4895)--(-0.292553,-2.4885)--(-0.290571,-2.4875)--(-0.288589,-2.48649)--(-0.286606,-2.48548)--(-0.284623,-2.48448)--(-0.28264,-2.48347)--(-0.280656,-2.48246)--(-0.278672,-2.48144)--(-0.276687,-2.48043)--(-0.274703,-2.47941)--(-0.272718,-2.47839)--(-0.270732,-2.47737)--(-0.268746,-2.47635)--(-0.26676,-2.47533)--(-0.264774,-2.47431)--(-0.262787,-2.47328)--(-0.2608,-2.47225)--(-0.258813,-2.47122)--(-0.256825,-2.47019)--
> (-0.254837,-2.46916)--(-0.252849,-2.46812)--(-0.25086,-2.46709)--(-0.248871,-2.46605)--(-0.246882,-2.46501)--(-0.244893,-2.46397)--(-0.242903,-2.46292)--(-0.240913,-2.46188)--(-0.238922,-2.46083)--(-0.236931,-2.45978)--(-0.23494,-2.45873)--(-0.232949,-2.45768)--(-0.230957,-2.45663)--(-0.228965,-2.45557)--(-0.226973,-2.45451)--(-0.22498,-2.45346)--(-0.222987,-2.4524)--(-0.220994,-2.45133)--(-0.219001,-2.45027)--(-0.217007,-2.4492)--(-0.215013,-2.44814)--(-0.213019,-2.44707)--(-0.211024,-2.446)--
> (-0.209029,-2.44493)--(-0.207034,-2.44385)--(-0.205039,-2.44278)--(-0.203043,-2.4417)--(-0.201047,-2.44062)--(-0.199051,-2.43954)--(-0.197054,-2.43846)--(-0.195057,-2.43737)--(-0.19306,-2.43629)--(-0.191063,-2.4352)--(-0.189065,-2.43411)--(-0.187067,-2.43302)--(-0.185069,-2.43192)--(-0.18307,-2.43083)--(-0.181072,-2.42973)--(-0.179073,-2.42863)--(-0.177073,-2.42753)--(-0.175074,-2.42643)--(-0.173074,-2.42533)--(-0.171074,-2.42422)--(-0.169074,-2.42312)--(-0.167074,-2.42201)--(-0.165073,-2.4209)--
> (-0.163072,-2.41979)--(-0.161071,-2.41867)--(-0.159069,-2.41756)--(-0.157067,-2.41644)--(-0.155065,-2.41532)--(-0.153063,-2.4142)--(-0.151061,-2.41308)--(-0.149058,-2.41195)--(-0.147055,-2.41082)--(-0.145052,-2.4097)--(-0.143049,-2.40857)--(-0.141045,-2.40744)--(-0.139041,-2.4063)--(-0.137037,-2.40517)--(-0.135033,-2.40403)--(-0.133028,-2.40289)--(-0.131023,-2.40175)--(-0.129018,-2.40061)--(-0.127013,-2.39947)--(-0.125008,-2.39832)--(-0.123002,-2.39717)--(-0.120996,-2.39602)--(-0.11899,-2.39487)--
> (-0.116984,-2.39372)--(-0.114978,-2.39257)--(-0.112971,-2.39141)--(-0.110964,-2.39025)--(-0.108957,-2.38909)--(-0.10695,-2.38793)--(-0.104942,-2.38677)--(-0.102935,-2.3856)--(-0.100927,-2.38443)--(-0.0989189,-2.38326)--(-0.0969107,-2.38209)--(-0.0949022,-2.38092)--(-0.0928936,-2.37975)--(-0.0908848,-2.37857)--(-0.0888758,-2.37739)--(-0.0868667,-2.37621)--(-0.0848573,-2.37503)--(-0.0828478,-2.37385)--(-0.0808381,-2.37266)--(-0.0788282,-2.37148)--(-0.0768181,-2.37029)--(-0.0748079,-2.3691)--
> (-0.0727975,-2.36791)--(-0.0707869,-2.36671)--(-0.0687762,-2.36552)--(-0.0667653,-2.36432)--(-0.0647542,-2.36312)--(-0.062743,-2.36192)--(-0.0607316,-2.36072)--(-0.05872,-2.35951)--(-0.0567083,-2.3583)--(-0.0546965,-2.3571)--(-0.0526845,-2.35589)--(-0.0506723,-2.35467)--(-0.04866,-2.35346)--(-0.0466476,-2.35224)--(-0.044635,-2.35103)--(-0.0426222,-2.34981)--(-0.0406093,-2.34858)--(-0.0385963,-2.34736)--(-0.0365832,-2.34614)--(-0.0345699,-2.34491)--(-0.0325564,-2.34368)--(-0.0305429,-2.34245)--
> (-0.0285292,-2.34122)--(-0.0265154,-2.33998)--(-0.0245014,-2.33875)--(-0.0224874,-2.33751)--(-0.0204732,-2.33627)--(-0.0184589,-2.33503)--(-0.0164444,-2.33379)--(-0.0144299,-2.33254)--(-0.0124153,-2.33129)--(-0.0104005,-2.33005)--(-0.00838561,-2.3288)--(-0.00637062,-2.32754)--(-0.00435553,-2.32629)--(-0.00234033,-2.32503)--(-0.000325032,-2.32377)--(0.00169037,-2.32251)--(0.00370587,-2.32125)--(0.00572146,-2.31999)--(0.00773715,-2.31872)--(0.00975293,-2.31746)--(0.0117688,-2.31619)--
> (0.0137848,-2.31492)--(0.0158008,-2.31364)--(0.0178169,-2.31237)--(0.0198332,-2.31109)--(0.0218495,-2.30981)--(0.0238658,-2.30853)--(0.0258823,-2.30725)--(0.0278988,-2.30597)--(0.0299154,-2.30468)--(0.0319321,-2.30339)--(0.0339488,-2.3021)--(0.0359656,-2.30081)--(0.0379825,-2.29952)--(0.0399994,-2.29822)--(0.0420164,-2.29693)--(0.0440334,-2.29563)--(0.0460505,-2.29433)--(0.0480677,-2.29302)--(0.0500849,-2.29172)--(0.0521022,-2.29041)--(0.0541195,-2.2891)--(0.0561368,-2.28779)--
> (0.0581542,-2.28648)--(0.0601716,-2.28517)--(0.0621891,-2.28385)--(0.0642066,-2.28253)--(0.0662242,-2.28121)--(0.0682418,-2.27989)--(0.0702594,-2.27857)--(0.072277,-2.27724)--(0.0742947,-2.27592)--(0.0763124,-2.27459)--(0.0783301,-2.27325)--(0.0803478,-2.27192)--(0.0823655,-2.27059)--(0.0843833,-2.26925)--(0.0864011,-2.26791)--(0.0884189,-2.26657)--(0.0904367,-2.26523)--(0.0924545,-2.26388)--(0.0944723,-2.26254)--(0.0964901,-2.26119)--(0.0985079,-2.25984)--(0.100526,-2.25849)--
> (0.102544,-2.25713)--(0.104561,-2.25578)--(0.106579,-2.25442)--(0.108597,-2.25306)--(0.110615,-2.2517)--(0.112632,-2.25033)--(0.11465,-2.24897)--(0.116668,-2.2476)--(0.118686,-2.24623)--(0.120703,-2.24486)--(0.122721,-2.24349)--(0.124739,-2.24211)--(0.126756,-2.24074)--(0.128774,-2.23936)--(0.130791,-2.23798)--(0.132809,-2.23659)--(0.134826,-2.23521)--(0.136844,-2.23382)--(0.138861,-2.23243)--(0.140878,-2.23104)--(0.142895,-2.22965)--(0.144913,-2.22826)--(0.14693,-2.22686)--(0.148947,-2.22546)--
> (0.150964,-2.22406)--(0.152981,-2.22266)--(0.154998,-2.22126)--(0.157015,-2.21985)--(0.159031,-2.21844)--(0.161048,-2.21703)--(0.163065,-2.21562)--(0.165081,-2.21421)--(0.167098,-2.21279)--(0.169114,-2.21137)--(0.171131,-2.20995)--(0.173147,-2.20853)--(0.175163,-2.20711)--(0.177179,-2.20568)--(0.179195,-2.20425)--(0.181211,-2.20283)--(0.183227,-2.20139)--(0.185242,-2.19996)--(0.187258,-2.19853)--(0.189273,-2.19709)--(0.191289,-2.19565)--(0.193304,-2.19421)--(0.195319,-2.19277)--
> (0.197334,-2.19132)--(0.199349,-2.18987)--(0.201364,-2.18842)--(0.203379,-2.18697)--(0.205393,-2.18552)--(0.207408,-2.18407)--(0.209422,-2.18261)--(0.211436,-2.18115)--(0.21345,-2.17969)--(0.215464,-2.17823)--(0.217478,-2.17676)--(0.219492,-2.1753)--(0.221505,-2.17383)--(0.223519,-2.17236)--(0.225532,-2.17088)--(0.227545,-2.16941)--(0.229558,-2.16793)--(0.23157,-2.16645)--(0.233583,-2.16497)--(0.235595,-2.16349)--(0.237608,-2.16201)--(0.23962,-2.16052)--(0.241632,-2.15903)--(0.243644,-2.15754)--
> (0.245655,-2.15605)--(0.247667,-2.15455)--(0.249678,-2.15306)--(0.251689,-2.15156)--(0.2537,-2.15006)--(0.25571,-2.14856)--(0.257721,-2.14705)--(0.259731,-2.14555)--(0.261741,-2.14404)--(0.263751,-2.14253)--(0.265761,-2.14102)--(0.267771,-2.1395)--(0.26978,-2.13798)--(0.271789,-2.13647)--(0.273798,-2.13495)--(0.275807,-2.13342)--(0.277815,-2.1319)--(0.279823,-2.13037)--(0.281831,-2.12884)--(0.283839,-2.12731)--(0.285847,-2.12578)--(0.287854,-2.12425)--(0.289861,-2.12271)--(0.291868,-2.12117)--
> (0.293875,-2.11963)--(0.295881,-2.11809)--(0.297887,-2.11655)--(0.299893,-2.115)--(0.301899,-2.11345)--(0.303905,-2.1119)--(0.30591,-2.11035)--(0.307915,-2.10879)--(0.309919,-2.10724)--(0.311924,-2.10568)--(0.313928,-2.10412)--(0.315932,-2.10256)--(0.317936,-2.10099)--(0.319939,-2.09942)--(0.321942,-2.09786)--(0.323945,-2.09629)--(0.325947,-2.09471)--(0.32795,-2.09314)--(0.329952,-2.09156)--(0.331953,-2.08998)--(0.333955,-2.0884)--(0.335956,-2.08682)--(0.337956,-2.08523)--(0.339957,-2.08365)--
> (0.341957,-2.08206)--(0.343957,-2.08047)--(0.345957,-2.07888)--(0.347956,-2.07728)--(0.349955,-2.07568)--(0.351954,-2.07408)--(0.353952,-2.07248)--(0.35595,-2.07088)--(0.357948,-2.06928)--(0.359945,-2.06767)--(0.361942,-2.06606)--(0.363939,-2.06445)--(0.365935,-2.06283)--(0.367931,-2.06122)--(0.369927,-2.0596)--(0.371922,-2.05798)--(0.373917,-2.05636)--(0.375912,-2.05474)--(0.377906,-2.05311)--(0.3799,-2.05149)--(0.381894,-2.04986)--(0.383887,-2.04822)--(0.38588,-2.04659)--(0.387872,-2.04495)--
> (0.389864,-2.04332)--(0.391856,-2.04168)--(0.393848,-2.04003)--(0.395838,-2.03839)--(0.397829,-2.03675)--(0.399819,-2.0351)--(0.401809,-2.03345)--(0.403799,-2.03179)--(0.405788,-2.03014)--(0.407776,-2.02848)--(0.409765,-2.02683)--(0.411752,-2.02517)--(0.41374,-2.0235)--(0.415727,-2.02184)--(0.417714,-2.02017)--(0.4197,-2.0185)--(0.421686,-2.01683)--(0.423671,-2.01516)--(0.425656,-2.01349)--(0.427641,-2.01181)--(0.429625,-2.01013)--(0.431608,-2.00845)--(0.433592,-2.00677)--(0.435574,-2.00508)--
> (0.437557,-2.00339)--(0.439539,-2.0017)--(0.44152,-2.00001)--(0.443501,-1.99832)--(0.445482,-1.99662)--(0.447462,-1.99493)--(0.449441,-1.99323)--(0.451421,-1.99153)--(0.453399,-1.98982)--(0.455378,-1.98812)--(0.457355,-1.98641)--(0.459333,-1.9847)--(0.46131,-1.98299)--(0.463286,-1.98127)--(0.465262,-1.97956)--(0.467237,-1.97784)--(0.469212,-1.97612)--(0.471186,-1.97439)--(0.47316,-1.97267)--(0.475134,-1.97094)--(0.477107,-1.96922)--(0.479079,-1.96748)--(0.481051,-1.96575)--(0.483022,-1.96402)--
> (0.484993,-1.96228)--(0.486963,-1.96054)--(0.488933,-1.9588)--(0.490902,-1.95706)--(0.492871,-1.95531)--(0.494839,-1.95356)--(0.496807,-1.95181)--(0.498774,-1.95006)--(0.500741,-1.94831)--(0.502707,-1.94655)--(0.504672,-1.9448)--(0.506637,-1.94304)--(0.508602,-1.94127)--(0.510566,-1.93951)--(0.512529,-1.93774)--(0.514492,-1.93598)--(0.516454,-1.9342)--(0.518415,-1.93243)--(0.520376,-1.93066)--(0.522337,-1.92888)--(0.524297,-1.9271)--(0.526256,-1.92532)--(0.528215,-1.92354)--(0.530173,-1.92175)--
> (0.53213,-1.91997)--(0.534087,-1.91818)--(0.536043,-1.91639)--(0.537999,-1.91459)--(0.539954,-1.9128)--(0.541909,-1.911)--(0.543863,-1.9092)--(0.545816,-1.9074)--(0.547768,-1.90559)--(0.54972,-1.90379)--(0.551672,-1.90198)--(0.553623,-1.90017)--(0.555573,-1.89836)--(0.557522,-1.89654)--(0.559471,-1.89473)--(0.561419,-1.89291)--(0.563367,-1.89109)--(0.565314,-1.88927)--(0.56726,-1.88744)--(0.569206,-1.88561)--(0.57115,-1.88378)--(0.573095,-1.88195)--(0.575038,-1.88012)--(0.576981,-1.87829)--
> (0.578924,-1.87645)--(0.580865,-1.87461)--(0.582806,-1.87277)--(0.584746,-1.87092)--(0.586686,-1.86908)--(0.588625,-1.86723)--(0.590563,-1.86538)--(0.5925,-1.86353)--(0.594437,-1.86167)--(0.596373,-1.85982)--(0.598308,-1.85796)--(0.600243,-1.8561)--(0.602177,-1.85423)--(0.60411,-1.85237)--(0.606042,-1.8505)--(0.607974,-1.84863)--(0.609905,-1.84676)--(0.611835,-1.84489)--(0.613765,-1.84301)--(0.615694,-1.84113)--(0.617622,-1.83926)--(0.619549,-1.83737)--(0.621476,-1.83549)--(0.623401,-1.8336)--
> (0.625326,-1.83172)--(0.627251,-1.82983)--(0.629174,-1.82793)--(0.631097,-1.82604)--(0.633019,-1.82414)--(0.63494,-1.82224)--(0.636861,-1.82034)--(0.63878,-1.81844)--(0.640699,-1.81653)--(0.642617,-1.81463)--(0.644534,-1.81272)--(0.646451,-1.81081)--(0.648366,-1.80889)--(0.650281,-1.80698)--(0.652195,-1.80506)--(0.654109,-1.80314)--(0.656021,-1.80122)--(0.657933,-1.79929)--(0.659843,-1.79737)--(0.661753,-1.79544)--(0.663663,-1.79351)--(0.665571,-1.79158)--(0.667478,-1.78964)--(0.669385,-1.78771)--
> (0.671291,-1.78577)--(0.673196,-1.78383)--(0.6751,-1.78188)--(0.677003,-1.77994)--(0.678905,-1.77799)--(0.680807,-1.77604)--(0.682707,-1.77409)--(0.684607,-1.77214)--(0.686506,-1.77018)--(0.688404,-1.76822)--(0.690301,-1.76626)--(0.692197,-1.7643)--(0.694093,-1.76233)--(0.695987,-1.76037)--(0.697881,-1.7584)--(0.699774,-1.75643)--(0.701665,-1.75446)--(0.703556,-1.75248)--(0.705446,-1.7505)--(0.707335,-1.74853)--(0.709223,-1.74654)--(0.71111,-1.74456)--(0.712997,-1.74258)--(0.714882,-1.74059)--
> (0.716766,-1.7386)--(0.71865,-1.73661)--(0.720532,-1.73461)--(0.722414,-1.73262)--(0.724295,-1.73062)--(0.726174,-1.72862)--(0.728053,-1.72661)--(0.729931,-1.72461)--(0.731808,-1.7226)--(0.733683,-1.72059)--(0.735558,-1.71858)--(0.737432,-1.71657)--(0.739305,-1.71456)--(0.741177,-1.71254)--(0.743048,-1.71052)--(0.744918,-1.7085)--(0.746787,-1.70647)--(0.748655,-1.70445)--(0.750522,-1.70242)--(0.752388,-1.70039)--(0.754253,-1.69836)--(0.756116,-1.69632)--(0.757979,-1.69429)--(0.759841,-1.69225)--
> (0.761702,-1.69021)--(0.763562,-1.68817)--(0.765421,-1.68612)--(0.767278,-1.68407)--(0.769135,-1.68202)--(0.770991,-1.67997)--(0.772845,-1.67792)--(0.774699,-1.67586)--(0.776551,-1.67381)--(0.778403,-1.67175)--(0.780253,-1.66969)--(0.782102,-1.66762)--(0.783951,-1.66556)--(0.785798,-1.66349)--(0.787644,-1.66142)--(0.789489,-1.65935)--(0.791333,-1.65727)--(0.793176,-1.65519)--(0.795017,-1.65312)--(0.796858,-1.65103)--(0.798697,-1.64895)--(0.800536,-1.64687)--(0.802373,-1.64478)--
> (0.804209,-1.64269)--(0.806044,-1.6406)--(0.807878,-1.63851)--(0.809711,-1.63641)--(0.811542,-1.63431)--(0.813373,-1.63221)--(0.815202,-1.63011)--(0.817031,-1.62801)--(0.818858,-1.6259)--(0.820684,-1.62379)--(0.822508,-1.62168)--(0.824332,-1.61957)--(0.826154,-1.61745)--(0.827976,-1.61534)--(0.829796,-1.61322)--(0.831615,-1.6111)--(0.833432,-1.60897)--(0.835249,-1.60685)--(0.837064,-1.60472)--(0.838878,-1.60259)--(0.840691,-1.60046)--(0.842503,-1.59833)--(0.844314,-1.59619)--(0.846123,-1.59405)--
> (0.847931,-1.59191)--(0.849738,-1.58977)--(0.851544,-1.58763)--(0.853348,-1.58548)--(0.855151,-1.58333)--(0.856953,-1.58118)--(0.858754,-1.57903)--(0.860554,-1.57688)--(0.862352,-1.57472)--(0.864149,-1.57256)--(0.865945,-1.5704)--(0.867739,-1.56824)--(0.869532,-1.56607)--(0.871324,-1.5639)--(0.873115,-1.56173)--(0.874904,-1.55956)--(0.876692,-1.55739)--(0.878479,-1.55521)--(0.880265,-1.55304)--(0.882049,-1.55086)--(0.883832,-1.54867)--(0.885614,-1.54649)--(0.887394,-1.5443)--(0.889173,-1.54212)--
> (0.890951,-1.53993)--(0.892727,-1.53773)--(0.894502,-1.53554)--(0.896276,-1.53334)--(0.898048,-1.53114)--(0.899819,-1.52894)--(0.901589,-1.52674)--(0.903358,-1.52454)--(0.905125,-1.52233)--(0.90689,-1.52012)--(0.908655,-1.51791)--(0.910418,-1.51569)--(0.912179,-1.51348)--(0.913939,-1.51126)--(0.915698,-1.50904)--(0.917456,-1.50682)--(0.919212,-1.5046)--(0.920966,-1.50237)--(0.92272,-1.50014)--(0.924472,-1.49791)--(0.926222,-1.49568)--(0.927971,-1.49345)--(0.929719,-1.49121)--(0.931465,-1.48897)--
> (0.93321,-1.48673)--(0.934954,-1.48449)--(0.936696,-1.48225)--(0.938436,-1.48)--(0.940175,-1.47775)--(0.941913,-1.4755)--(0.943649,-1.47325)--(0.945384,-1.47099)--(0.947118,-1.46873)--(0.948849,-1.46648)--(0.95058,-1.46421)--(0.952309,-1.46195)--(0.954036,-1.45969)--(0.955762,-1.45742)--(0.957487,-1.45515)--(0.95921,-1.45288)--(0.960932,-1.4506)--(0.962652,-1.44833)--(0.96437,-1.44605)--(0.966087,-1.44377)--(0.967803,-1.44149)--(0.969517,-1.43921)--(0.97123,-1.43692)--(0.972941,-1.43463)--
> (0.97465,-1.43234)--(0.976358,-1.43005)--(0.978065,-1.42776)--(0.979769,-1.42546)--(0.981473,-1.42316)--(0.983175,-1.42086)--(0.984875,-1.41856)--(0.986574,-1.41626)--(0.988271,-1.41395)--(0.989967,-1.41164)--(0.991661,-1.40933)--(0.993353,-1.40702)--(0.995044,-1.4047)--(0.996733,-1.40239)--(0.998421,-1.40007)--(1.00011,-1.39775)--(1.00179,-1.39542)--(1.00347,-1.3931)--(1.00516,-1.39077)--(1.00684,-1.38844)--(1.00851,-1.38611)--(1.01019,-1.38378)--(1.01187,-1.38144)--(1.01354,-1.37911)--
> (1.01521,-1.37677)--(1.01688,-1.37443)--(1.01855,-1.37208)--(1.02022,-1.36974)--(1.02188,-1.36739)--(1.02354,-1.36504)--(1.02521,-1.36269)--(1.02687,-1.36034)--(1.02852,-1.35798)--(1.03018,-1.35563)--(1.03184,-1.35327)--(1.03349,-1.35091)--(1.03514,-1.34854)--(1.03679,-1.34618)--(1.03844,-1.34381)--(1.04009,-1.34144)--(1.04173,-1.33907)--(1.04337,-1.3367)--(1.04502,-1.33432)--(1.04665,-1.33194)--(1.04829,-1.32956)--(1.04993,-1.32718)--(1.05156,-1.3248)--(1.0532,-1.32241)--(1.05483,-1.32002)--
> (1.05646,-1.31764)--(1.05808,-1.31524)--(1.05971,-1.31285)--(1.06133,-1.31045)--(1.06296,-1.30806)--(1.06458,-1.30566)--(1.0662,-1.30326)--(1.06781,-1.30085)--(1.06943,-1.29845)--(1.07104,-1.29604)--(1.07265,-1.29363)--(1.07426,-1.29122)--(1.07587,-1.28881)--(1.07748,-1.28639)--(1.07908,-1.28397)--(1.08069,-1.28155)--(1.08229,-1.27913)--(1.08389,-1.27671)--(1.08548,-1.27428)--(1.08708,-1.27186)--(1.08867,-1.26943)--(1.09026,-1.267)--(1.09185,-1.26456)--(1.09344,-1.26213)--(1.09503,-1.25969)--
> (1.09661,-1.25725)--(1.09819,-1.25481)--(1.09977,-1.25237)--(1.10135,-1.24992)--(1.10293,-1.24748)--(1.1045,-1.24503)--(1.10608,-1.24258)--(1.10765,-1.24012)--(1.10922,-1.23767)--(1.11079,-1.23521)--(1.11235,-1.23275)--(1.11391,-1.23029)--(1.11548,-1.22783)--(1.11704,-1.22537)--(1.11859,-1.2229)--(1.12015,-1.22043)--(1.1217,-1.21796)--(1.12325,-1.21549)--(1.1248,-1.21301)--(1.12635,-1.21054)--(1.1279,-1.20806)--(1.12944,-1.20558)--(1.13099,-1.2031)--(1.13253,-1.20061)--(1.13406,-1.19813)--
> (1.1356,-1.19564)--(1.13713,-1.19315)--(1.13867,-1.19066)--(1.1402,-1.18817)--(1.14172,-1.18567)--(1.14325,-1.18317)--(1.14478,-1.18067)--(1.1463,-1.17817)--(1.14782,-1.17567)--(1.14782,-1.17567);
> draw(curve, rgb(0,0,255)+solid );
> pair point = (0.20561,0.633697);
> dot(point, rgb(0,0,255));
> path curve = (-4.15541,0.633697)--(-4.15003,0.63096)--(-4.14467,0.62823)--(-4.13933,0.625507)--(-4.134,0.62279)--(-4.12869,0.62008)--(-4.1234,0.617377)--(-4.11812,0.61468)--(-4.11287,0.61199)--(-4.10762,0.609306)--(-4.1024,0.606629)--(-4.09719,0.603958)--(-4.092,0.601293)--(-4.08682,0.598635)--(-4.08166,0.595983)--(-4.07652,0.593338)--(-4.07139,0.590698)--(-4.06628,0.588065)--(-4.06118,0.585439)--(-4.0561,0.582818)--(-4.05104,0.580204)--(-4.04599,0.577595)--(-4.04095,0.574993)--
> (-4.03594,0.572397)--(-4.03093,0.569807)--(-4.02595,0.567222)--(-4.02098,0.564644)--(-4.01602,0.562072)--(-4.01108,0.559505)--(-4.00616,0.556945)--(-4.00125,0.55439)--(-3.99635,0.551841)--(-3.99147,0.549298)--(-3.9866,0.546761)--(-3.98175,0.544229)--(-3.97692,0.541704)--(-3.9721,0.539183)--(-3.96729,0.536669)--(-3.9625,0.53416)--(-3.95772,0.531657)--(-3.95296,0.529159)--(-3.94821,0.526667)--(-3.94347,0.52418)--(-3.93875,0.521699)--(-3.93405,0.519223)--(-3.92935,0.516753)--(-3.92468,0.514288)--
> (-3.92001,0.511828)--(-3.91536,0.509374)--(-3.91072,0.506925)--(-3.9061,0.504481)--(-3.90149,0.502043)--(-3.8969,0.49961)--(-3.89231,0.497182)--(-3.88775,0.494759)--(-3.88319,0.492342)--(-3.87865,0.48993)--(-3.87412,0.487522)--(-3.86961,0.48512)--(-3.86511,0.482723)--(-3.86062,0.480331)--(-3.85614,0.477944)--(-3.85168,0.475562)--(-3.84723,0.473185)--(-3.8428,0.470813)--(-3.83837,0.468446)--(-3.83396,0.466084)--(-3.82956,0.463726)--(-3.82518,0.461374)--(-3.82081,0.459026)--(-3.81645,0.456684)--
> (-3.8121,0.454346)--(-3.80777,0.452012)--(-3.80344,0.449684)--(-3.79913,0.44736)--(-3.79484,0.445041)--(-3.79055,0.442726)--(-3.78628,0.440417)--(-3.78202,0.438111)--(-3.77777,0.435811)--(-3.77353,0.433515)--(-3.76931,0.431223)--(-3.7651,0.428937)--(-3.7609,0.426654)--(-3.75671,0.424376)--(-3.75253,0.422103)--(-3.74836,0.419834)--(-3.74421,0.41757)--(-3.74007,0.41531)--(-3.73594,0.413054)--(-3.73182,0.410803)--(-3.72772,0.408556)--(-3.72362,0.406313)--(-3.71954,0.404075)--(-3.71546,0.401841)--
> (-3.7114,0.399611)--(-3.70735,0.397386)--(-3.70331,0.395165)--(-3.69929,0.392948)--(-3.69527,0.390735)--(-3.69127,0.388526)--(-3.68727,0.386322)--(-3.68329,0.384122)--(-3.67932,0.381925)--(-3.67536,0.379733)--(-3.67141,0.377545)--(-3.66747,0.375361)--(-3.66354,0.373181)--(-3.65962,0.371005)--(-3.65571,0.368833)--(-3.65182,0.366666)--(-3.64793,0.364502)--(-3.64406,0.362342)--(-3.64019,0.360185)--(-3.63634,0.358033)--(-3.63249,0.355885)--(-3.62866,0.353741)--(-3.62484,0.3516)--(-3.62102,0.349463)--
> (-3.61722,0.34733)--(-3.61343,0.345201)--(-3.60965,0.343076)--(-3.60588,0.340954)--(-3.60211,0.338837)--(-3.59836,0.336723)--(-3.59462,0.334612)--(-3.59089,0.332506)--(-3.58717,0.330403)--(-3.58346,0.328303)--(-3.57976,0.326208)--(-3.57606,0.324116)--(-3.57238,0.322027)--(-3.56871,0.319943)--(-3.56505,0.317861)--(-3.56139,0.315784)--(-3.55775,0.31371)--(-3.55412,0.311639)--(-3.55049,0.309572)--(-3.54688,0.307508)--(-3.54327,0.305448)--(-3.53968,0.303392)--(-3.53609,0.301339)--(-3.53252,0.299289)--
> (-3.52895,0.297243)--(-3.52539,0.2952)--(-3.52184,0.29316)--(-3.5183,0.291124)--(-3.51477,0.289092)--(-3.51125,0.287062)--(-3.50774,0.285036)--(-3.50424,0.283013)--(-3.50074,0.280994)--(-3.49726,0.278978)--(-3.49378,0.276965)--(-3.49031,0.274955)--(-3.48686,0.272949)--(-3.48341,0.270946)--(-3.47997,0.268946)--(-3.47654,0.266949)--(-3.47311,0.264955)--(-3.4697,0.262965)--(-3.4663,0.260977)--(-3.4629,0.258993)--(-3.45951,0.257012)--(-3.45613,0.255034)--(-3.45276,0.25306)--(-3.4494,0.251088)--
> (-3.44605,0.249119)--(-3.4427,0.247154)--(-3.43937,0.245191)--(-3.43604,0.243231)--(-3.43272,0.241275)--(-3.42941,0.239321)--(-3.4261,0.237371)--(-3.42281,0.235423)--(-3.41952,0.233479)--(-3.41625,0.231537)--(-3.41298,0.229598)--(-3.40971,0.227662)--(-3.40646,0.225729)--(-3.40322,0.223799)--(-3.39998,0.221872)--(-3.39675,0.219948)--(-3.39353,0.218026)--(-3.39032,0.216108)--(-3.38711,0.214192)--(-3.38391,0.212279)--(-3.38072,0.210369)--(-3.37754,0.208462)--(-3.37437,0.206557)--(-3.3712,0.204655)--
> (-3.36805,0.202756)--(-3.3649,0.20086)--(-3.36175,0.198966)--(-3.35862,0.197075)--(-3.35549,0.195187)--(-3.35237,0.193301)--(-3.34926,0.191419)--(-3.34616,0.189538)--(-3.34306,0.187661)--(-3.33997,0.185786)--(-3.33689,0.183914)--(-3.33382,0.182044)--(-3.33075,0.180177)--(-3.32769,0.178313)--(-3.32464,0.176451)--(-3.32159,0.174591)--(-3.31856,0.172735)--(-3.31553,0.170881)--(-3.31251,0.169029)--(-3.30949,0.16718)--(-3.30648,0.165333)--(-3.30348,0.163489)--(-3.30049,0.161648)--(-3.2975,0.159808)--
> (-3.29453,0.157972)--(-3.29155,0.156137)--(-3.28859,0.154306)--(-3.28563,0.152476)--(-3.28268,0.150649)--(-3.27974,0.148825)--(-3.2768,0.147003)--(-3.27387,0.145183)--(-3.27095,0.143366)--(-3.26803,0.141551)--(-3.26512,0.139738)--(-3.26222,0.137928)--(-3.25933,0.13612)--(-3.25644,0.134315)--(-3.25356,0.132511)--(-3.25068,0.13071)--(-3.24782,0.128912)--(-3.24496,0.127115)--(-3.2421,0.125321)--(-3.23925,0.123529)--(-3.23641,0.12174)--(-3.23358,0.119952)--(-3.23075,0.118167)--(-3.22793,0.116384)--
> (-3.22512,0.114603)--(-3.22231,0.112825)--(-3.21951,0.111049)--(-3.21671,0.109275)--(-3.21392,0.107503)--(-3.21114,0.105733)--(-3.20837,0.103965)--(-3.2056,0.1022)--(-3.20283,0.100436)--(-3.20008,0.0986751)--(-3.19733,0.096916)--(-3.19459,0.095159)--(-3.19185,0.0934041)--(-3.18912,0.0916512)--(-3.18639,0.0899005)--(-3.18367,0.0881518)--(-3.18096,0.0864051)--(-3.17826,0.0846605)--(-3.17556,0.082918)--(-3.17286,0.0811774)--(-3.17018,0.0794389)--(-3.16749,0.0777024)--(-3.16482,0.0759679)--
> (-3.16215,0.0742354)--(-3.15949,0.0725049)--(-3.15683,0.0707763)--(-3.15418,0.0690497)--(-3.15153,0.0673251)--(-3.14889,0.0656024)--(-3.14626,0.0638816)--(-3.14363,0.0621628)--(-3.14101,0.0604458)--(-3.1384,0.0587308)--(-3.13579,0.0570177)--(-3.13318,0.0553065)--(-3.13059,0.0535972)--(-3.128,0.0518897)--(-3.12541,0.0501841)--(-3.12283,0.0484804)--(-3.12025,0.0467785)--(-3.11769,0.0450784)--(-3.11512,0.0433802)--(-3.11257,0.0416838)--(-3.11001,0.0399892)--(-3.10747,0.0382965)--
> (-3.10493,0.0366055)--(-3.10239,0.0349163)--(-3.09986,0.0332289)--(-3.09734,0.0315432)--(-3.09482,0.0298594)--(-3.09231,0.0281772)--(-3.0898,0.0264969)--(-3.0873,0.0248182)--(-3.08481,0.0231413)--(-3.08232,0.0214662)--(-3.07983,0.0197927)--(-3.07735,0.0181209)--(-3.07488,0.0164509)--(-3.07241,0.0147825)--(-3.06995,0.0131158)--(-3.06749,0.0114508)--(-3.06504,0.00978741)--(-3.06259,0.00812572)--(-3.06015,0.00646567)--(-3.05771,0.00480727)--(-3.05528,0.0031505)--(-3.05286,0.00149536)--
> (-3.05044,-0.000158159)--(-3.04802,-0.00181007)--(-3.04561,-0.00346038)--(-3.04321,-0.00510909)--(-3.04081,-0.00675621)--(-3.03841,-0.00840176)--(-3.03603,-0.0100457)--(-3.03364,-0.0116881)--(-3.03126,-0.013329)--(-3.02889,-0.0149683)--(-3.02652,-0.016606)--(-3.02416,-0.0182423)--(-3.0218,-0.0198769)--(-3.01945,-0.0215101)--(-3.0171,-0.0231418)--(-3.01475,-0.0247719)--(-3.01242,-0.0264006)--(-3.01008,-0.0280277)--(-3.00775,-0.0296534)--(-3.00543,-0.0312776)--(-3.00311,-0.0329004)--
> (-3.0008,-0.0345216)--(-2.99849,-0.0361415)--(-2.99619,-0.0377598)--(-2.99389,-0.0393768)--(-2.99159,-0.0409923)--(-2.98931,-0.0426063)--(-2.98702,-0.044219)--(-2.98474,-0.0458302)--(-2.98247,-0.0474401)--(-2.9802,-0.0490485)--(-2.97793,-0.0506555)--(-2.97567,-0.0522612)--(-2.97342,-0.0538655)--(-2.97117,-0.0554684)--(-2.96892,-0.0570699)--(-2.96668,-0.0586701)--(-2.96444,-0.060269)--(-2.96221,-0.0618665)--(-2.95998,-0.0634626)--(-2.95776,-0.0650575)--(-2.95554,-0.066651)--(-2.95333,-0.0682432)--
> (-2.95112,-0.0698341)--(-2.94892,-0.0714237)--(-2.94672,-0.073012)--(-2.94452,-0.074599)--(-2.94233,-0.0761847)--(-2.94015,-0.0777691)--(-2.93797,-0.0793523)--(-2.93579,-0.0809342)--(-2.93362,-0.0825148)--(-2.93145,-0.0840942)--(-2.92929,-0.0856724)--(-2.92713,-0.0872493)--(-2.92497,-0.088825)--(-2.92282,-0.0903995)--(-2.92068,-0.0919727)--(-2.91854,-0.0935448)--(-2.9164,-0.0951156)--(-2.91427,-0.0966852)--(-2.91214,-0.0982537)--(-2.91002,-0.0998209)--(-2.9079,-0.101387)--(-2.90578,-0.102952)--
> (-2.90367,-0.104516)--(-2.90157,-0.106078)--(-2.89946,-0.10764)--(-2.89737,-0.1092)--(-2.89527,-0.110759)--(-2.89318,-0.112317)--(-2.8911,-0.113874)--(-2.88902,-0.11543)--(-2.88694,-0.116984)--(-2.88487,-0.118538)--(-2.8828,-0.12009)--(-2.88074,-0.121641)--(-2.87868,-0.123192)--(-2.87662,-0.124741)--(-2.87457,-0.126289)--(-2.87252,-0.127836)--(-2.87048,-0.129382)--(-2.86844,-0.130926)--(-2.86641,-0.13247)--(-2.86437,-0.134013)--(-2.86235,-0.135555)--(-2.86032,-0.137095)--(-2.85831,-0.138635)--
> (-2.85629,-0.140173)--(-2.85428,-0.141711)--(-2.85227,-0.143247)--(-2.85027,-0.144783)--(-2.84827,-0.146317)--(-2.84628,-0.147851)--(-2.84429,-0.149383)--(-2.8423,-0.150915)--(-2.84032,-0.152445)--(-2.83834,-0.153975)--(-2.83636,-0.155504)--(-2.83439,-0.157031)--(-2.83243,-0.158558)--(-2.83046,-0.160084)--(-2.8285,-0.161608)--(-2.82655,-0.163132)--(-2.8246,-0.164655)--(-2.82265,-0.166177)--(-2.8207,-0.167698)--(-2.81876,-0.169218)--(-2.81683,-0.170737)--(-2.81489,-0.172255)--(-2.81297,-0.173773)--
> (-2.81104,-0.175289)--(-2.80912,-0.176805)--(-2.8072,-0.17832)--(-2.80529,-0.179833)--(-2.80338,-0.181346)--(-2.80147,-0.182858)--(-2.79957,-0.184369)--(-2.79767,-0.18588)--(-2.79578,-0.187389)--(-2.79388,-0.188898)--(-2.792,-0.190406)--(-2.79011,-0.191912)--(-2.78823,-0.193419)--(-2.78636,-0.194924)--(-2.78448,-0.196428)--(-2.78261,-0.197932)--(-2.78075,-0.199435)--(-2.77888,-0.200937)--(-2.77703,-0.202438)--(-2.77517,-0.203938)--(-2.77332,-0.205438)--(-2.77147,-0.206936)--(-2.76963,-0.208434)--
> (-2.76779,-0.209932)--(-2.76595,-0.211428)--(-2.76411,-0.212924)--(-2.76228,-0.214419)--(-2.76046,-0.215913)--(-2.75863,-0.217406)--(-2.75681,-0.218899)--(-2.755,-0.220391)--(-2.75319,-0.221882)--(-2.75138,-0.223372)--(-2.74957,-0.224862)--(-2.74777,-0.226351)--(-2.74597,-0.227839)--(-2.74417,-0.229327)--(-2.74238,-0.230814)--(-2.74059,-0.2323)--(-2.73881,-0.233785)--(-2.73702,-0.23527)--(-2.73525,-0.236754)--(-2.73347,-0.238238)--(-2.7317,-0.23972)--(-2.72993,-0.241202)--(-2.72816,-0.242684)--
> (-2.7264,-0.244164)--(-2.72464,-0.245644)--(-2.72289,-0.247124)--(-2.72114,-0.248603)--(-2.71939,-0.250081)--(-2.71764,-0.251558)--(-2.7159,-0.253035)--(-2.71416,-0.254511)--(-2.71243,-0.255987)--(-2.71069,-0.257462)--(-2.70897,-0.258936)--(-2.70724,-0.26041)--(-2.70552,-0.261883)--(-2.7038,-0.263355)--(-2.70208,-0.264827)--(-2.70037,-0.266298)--(-2.69866,-0.267769)--(-2.69695,-0.269239)--(-2.69525,-0.270709)--(-2.69355,-0.272178)--(-2.69185,-0.273646)--(-2.69016,-0.275114)--(-2.68847,-0.276581)--
> (-2.68678,-0.278048)--(-2.6851,-0.279514)--(-2.68341,-0.28098)--(-2.68174,-0.282445)--(-2.68006,-0.283909)--(-2.67839,-0.285373)--(-2.67672,-0.286837)--(-2.67505,-0.2883)--(-2.67339,-0.289762)--(-2.67173,-0.291224)--(-2.67007,-0.292686)--(-2.66842,-0.294146)--(-2.66677,-0.295607)--(-2.66512,-0.297067)--(-2.66348,-0.298526)--(-2.66184,-0.299985)--(-2.6602,-0.301444)--(-2.65856,-0.302902)--(-2.65693,-0.304359)--(-2.6553,-0.305816)--(-2.65367,-0.307273)--(-2.65205,-0.308729)--(-2.65043,-0.310184)--
> (-2.64881,-0.311639)--(-2.6472,-0.313094)--(-2.64559,-0.314548)--(-2.64398,-0.316002)--(-2.64237,-0.317456)--(-2.64077,-0.318909)--(-2.63917,-0.320361)--(-2.63757,-0.321813)--(-2.63598,-0.323265)--(-2.63439,-0.324716)--(-2.6328,-0.326167)--(-2.63121,-0.327618)--(-2.62963,-0.329068)--(-2.62805,-0.330517)--(-2.62647,-0.331967)--(-2.6249,-0.333416)--(-2.62333,-0.334864)--(-2.62176,-0.336312)--(-2.62019,-0.33776)--(-2.61863,-0.339207)--(-2.61707,-0.340654)--(-2.61551,-0.342101)--(-2.61396,-0.343547)--
> (-2.61241,-0.344993)--(-2.61086,-0.346439)--(-2.60931,-0.347884)--(-2.60777,-0.349329)--(-2.60623,-0.350774)--(-2.60469,-0.352218)--(-2.60315,-0.353662)--(-2.60162,-0.355105)--(-2.60009,-0.356549)--(-2.59856,-0.357992)--(-2.59704,-0.359434)--(-2.59552,-0.360877)--(-2.594,-0.362319)--(-2.59248,-0.36376)--(-2.59097,-0.365202)--(-2.58946,-0.366643)--(-2.58795,-0.368084)--(-2.58645,-0.369524)--(-2.58494,-0.370965)--(-2.58344,-0.372405)--(-2.58195,-0.373844)--(-2.58045,-0.375284)--
> (-2.57896,-0.376723)--(-2.57747,-0.378162)--(-2.57598,-0.379601)--(-2.5745,-0.381039)--(-2.57302,-0.382477)--(-2.57154,-0.383915)--(-2.57006,-0.385353)--(-2.56859,-0.38679)--(-2.56712,-0.388227)--(-2.56565,-0.389664)--(-2.56419,-0.391101)--(-2.56272,-0.392538)--(-2.56126,-0.393974)--(-2.5598,-0.39541)--(-2.55835,-0.396846)--(-2.55689,-0.398282)--(-2.55544,-0.399717)--(-2.554,-0.401153)--(-2.55255,-0.402588)--(-2.55111,-0.404023)--(-2.54967,-0.405458)--(-2.54823,-0.406892)--(-2.54679,-0.408327)--
> (-2.54536,-0.409761)--(-2.54393,-0.411195)--(-2.5425,-0.412629)--(-2.54108,-0.414062)--(-2.53965,-0.415496)--(-2.53823,-0.416929)--(-2.53682,-0.418363)--(-2.5354,-0.419796)--(-2.53399,-0.421229)--(-2.53258,-0.422662)--(-2.53117,-0.424094)--(-2.52976,-0.425527)--(-2.52836,-0.42696)--(-2.52696,-0.428392)--(-2.52556,-0.429824)--(-2.52416,-0.431256)--(-2.52277,-0.432688)--(-2.52138,-0.43412)--(-2.51999,-0.435552)--(-2.5186,-0.436984)--(-2.51722,-0.438415)--(-2.51584,-0.439847)--(-2.51446,-0.441278)--
> (-2.51308,-0.44271)--(-2.51171,-0.444141)--(-2.51034,-0.445572)--(-2.50897,-0.447003)--(-2.5076,-0.448434)--(-2.50623,-0.449865)--(-2.50487,-0.451296)--(-2.50351,-0.452727)--(-2.50215,-0.454158)--(-2.5008,-0.455588)--(-2.49944,-0.457019)--(-2.49809,-0.45845)--(-2.49674,-0.459881)--(-2.4954,-0.461311)--(-2.49405,-0.462742)--(-2.49271,-0.464172)--(-2.49137,-0.465603)--(-2.49003,-0.467033)--(-2.4887,-0.468464)--(-2.48737,-0.469894)--(-2.48603,-0.471325)--(-2.48471,-0.472755)--(-2.48338,-0.474186)--
> (-2.48206,-0.475616)--(-2.48074,-0.477047)--(-2.47942,-0.478477)--(-2.4781,-0.479908)--(-2.47678,-0.481338)--(-2.47547,-0.482769)--(-2.47416,-0.484199)--(-2.47285,-0.48563)--(-2.47155,-0.487061)--(-2.47024,-0.488491)--(-2.46894,-0.489922)--(-2.46764,-0.491353)--(-2.46635,-0.492783)--(-2.46505,-0.494214)--(-2.46376,-0.495645)--(-2.46247,-0.497076)--(-2.46118,-0.498507)--(-2.45989,-0.499938)--(-2.45861,-0.50137)--(-2.45733,-0.502801)--(-2.45605,-0.504232)--(-2.45477,-0.505664)--
> (-2.45349,-0.507095)--(-2.45222,-0.508527)--(-2.45095,-0.509958)--(-2.44968,-0.51139)--(-2.44841,-0.512822)--(-2.44715,-0.514254)--(-2.44589,-0.515686)--(-2.44462,-0.517118)--(-2.44337,-0.51855)--(-2.44211,-0.519983)--(-2.44086,-0.521415)--(-2.4396,-0.522848)--(-2.43835,-0.524281)--(-2.43711,-0.525714)--(-2.43586,-0.527147)--(-2.43462,-0.52858)--(-2.43337,-0.530013)--(-2.43213,-0.531447)--(-2.4309,-0.532881)--(-2.42966,-0.534314)--(-2.42843,-0.535748)--(-2.4272,-0.537182)--(-2.42597,-0.538617)--
> (-2.42474,-0.540051)--(-2.42351,-0.541486)--(-2.42229,-0.542921)--(-2.42107,-0.544356)--(-2.41985,-0.545791)--(-2.41863,-0.547226)--(-2.41742,-0.548662)--(-2.4162,-0.550097)--(-2.41499,-0.551533)--(-2.41378,-0.552969)--(-2.41258,-0.554406)--(-2.41137,-0.555842)--(-2.41017,-0.557279)--(-2.40897,-0.558716)--(-2.40777,-0.560153)--(-2.40657,-0.561591)--(-2.40537,-0.563028)--(-2.40418,-0.564466)--(-2.40299,-0.565904)--(-2.4018,-0.567343)--(-2.40061,-0.568781)--(-2.39943,-0.57022)--
> (-2.39824,-0.571659)--(-2.39706,-0.573098)--(-2.39588,-0.574538)--(-2.3947,-0.575978)--(-2.39353,-0.577418)--(-2.39236,-0.578858)--(-2.39118,-0.580299)--(-2.39001,-0.58174)--(-2.38885,-0.583181)--(-2.38768,-0.584623)--(-2.38651,-0.586064)--(-2.38535,-0.587506)--(-2.38419,-0.588949)--(-2.38303,-0.590391)--(-2.38188,-0.591834)--(-2.38072,-0.593278)--(-2.37957,-0.594721)--(-2.37842,-0.596165)--(-2.37727,-0.597609)--(-2.37612,-0.599054)--(-2.37498,-0.600498)--(-2.37383,-0.601943)--
> (-2.37269,-0.603389)--(-2.37155,-0.604835)--(-2.37041,-0.606281)--(-2.36928,-0.607727)--(-2.36814,-0.609174)--(-2.36701,-0.610621)--(-2.36588,-0.612069)--(-2.36475,-0.613517)--(-2.36362,-0.614965)--(-2.3625,-0.616413)--(-2.36138,-0.617862)--(-2.36025,-0.619311)--(-2.35914,-0.620761)--(-2.35802,-0.622211)--(-2.3569,-0.623662)--(-2.35579,-0.625112)--(-2.35468,-0.626564)--(-2.35356,-0.628015)--(-2.35246,-0.629467)--(-2.35135,-0.630919)--(-2.35024,-0.632372)--(-2.34914,-0.633825)--
> (-2.34804,-0.635279)--(-2.34694,-0.636733)--(-2.34584,-0.638187)--(-2.34474,-0.639642)--(-2.34365,-0.641097)--(-2.34256,-0.642553)--(-2.34147,-0.644009)--(-2.34038,-0.645465)--(-2.33929,-0.646922)--(-2.3382,-0.64838)--(-2.33712,-0.649838)--(-2.33604,-0.651296)--(-2.33496,-0.652755)--(-2.33388,-0.654214)--(-2.3328,-0.655673)--(-2.33173,-0.657134)--(-2.33065,-0.658594)--(-2.32958,-0.660055)--(-2.32851,-0.661517)--(-2.32744,-0.662979)--(-2.32638,-0.664441)--(-2.32531,-0.665904)--
> (-2.32425,-0.667367)--(-2.32319,-0.668831)--(-2.32213,-0.670296)--(-2.32107,-0.67176)--(-2.32001,-0.673226)--(-2.31896,-0.674692)--(-2.31791,-0.676158)--(-2.31685,-0.677625)--(-2.31581,-0.679093)--(-2.31476,-0.68056)--(-2.31371,-0.682029)--(-2.31267,-0.683498)--(-2.31162,-0.684967)--(-2.31058,-0.686437)--(-2.30954,-0.687908)--(-2.30851,-0.689379)--(-2.30747,-0.690851)--(-2.30643,-0.692323)--(-2.3054,-0.693796)--(-2.30437,-0.695269)--(-2.30334,-0.696743)--(-2.30231,-0.698218)--
> (-2.30129,-0.699693)--(-2.30026,-0.701168)--(-2.29924,-0.702644)--(-2.29822,-0.704121)--(-2.2972,-0.705598)--(-2.29618,-0.707076)--(-2.29516,-0.708555)--(-2.29415,-0.710034)--(-2.29313,-0.711513)--(-2.29212,-0.712994)--(-2.29111,-0.714475)--(-2.2901,-0.715956)--(-2.2891,-0.717438)--(-2.28809,-0.718921)--(-2.28709,-0.720404)--(-2.28609,-0.721888)--(-2.28509,-0.723373)--(-2.28409,-0.724858)--(-2.28309,-0.726344)--(-2.28209,-0.72783)--(-2.2811,-0.729317)--(-2.28011,-0.730805)--(-2.27912,-0.732293)--
> (-2.27813,-0.733782)--(-2.27714,-0.735272)--(-2.27615,-0.736763)--(-2.27517,-0.738254)--(-2.27419,-0.739745)--(-2.2732,-0.741238)--(-2.27222,-0.742731)--(-2.27125,-0.744224)--(-2.27027,-0.745719)--(-2.26929,-0.747214)--(-2.26832,-0.748709)--(-2.26735,-0.750206)--(-2.26638,-0.751703)--(-2.26541,-0.753201)--(-2.26444,-0.754699)--(-2.26348,-0.756199)--(-2.26251,-0.757699)--(-2.26155,-0.759199)--(-2.26059,-0.760701)--(-2.25963,-0.762203)--(-2.25867,-0.763706)--(-2.25771,-0.765209)--
> (-2.25676,-0.766714)--(-2.2558,-0.768219)--(-2.25485,-0.769724)--(-2.2539,-0.771231)--(-2.25295,-0.772738)--(-2.252,-0.774246)--(-2.25106,-0.775755)--(-2.25011,-0.777264)--(-2.24917,-0.778775)--(-2.24823,-0.780286)--(-2.24728,-0.781798)--(-2.24635,-0.78331)--(-2.24541,-0.784824)--(-2.24447,-0.786338)--(-2.24354,-0.787853)--(-2.24261,-0.789368)--(-2.24167,-0.790885)--(-2.24074,-0.792402)--(-2.23982,-0.793921)--(-2.23889,-0.795439)--(-2.23796,-0.796959)--(-2.23704,-0.79848)--(-2.23612,-0.800001)--
> (-2.23519,-0.801523)--(-2.23428,-0.803046)--(-2.23336,-0.80457)--(-2.23244,-0.806095)--(-2.23152,-0.807621)--(-2.23061,-0.809147)--(-2.2297,-0.810674)--(-2.22879,-0.812202)--(-2.22788,-0.813731)--(-2.22697,-0.815261)--(-2.22606,-0.816791)--(-2.22516,-0.818323)--(-2.22425,-0.819855)--(-2.22335,-0.821389)--(-2.22245,-0.822923)--(-2.22155,-0.824458)--(-2.22065,-0.825994)--(-2.21976,-0.82753)--(-2.21886,-0.829068)--(-2.21797,-0.830607)--(-2.21707,-0.832146)--(-2.21618,-0.833686)--
> (-2.21529,-0.835228)--(-2.21441,-0.83677)--(-2.21352,-0.838313)--(-2.21263,-0.839857)--(-2.21175,-0.841402)--(-2.21087,-0.842948)--(-2.20998,-0.844494)--(-2.2091,-0.846042)--(-2.20823,-0.847591)--(-2.20735,-0.84914)--(-2.20647,-0.850691)--(-2.2056,-0.852243)--(-2.20473,-0.853795)--(-2.20385,-0.855348)--(-2.20298,-0.856903)--(-2.20212,-0.858458)--(-2.20125,-0.860014)--(-2.20038,-0.861572)--(-2.19952,-0.86313)--(-2.19865,-0.864689)--(-2.19779,-0.86625)--(-2.19693,-0.867811)--(-2.19607,-0.869373)--
> (-2.19521,-0.870936)--(-2.19436,-0.872501)--(-2.1935,-0.874066)--(-2.19265,-0.875632)--(-2.1918,-0.877199)--(-2.19095,-0.878768)--(-2.1901,-0.880337)--(-2.18925,-0.881907)--(-2.1884,-0.883479)--(-2.18755,-0.885051)--(-2.18671,-0.886625)--(-2.18587,-0.888199)--(-2.18503,-0.889775)--(-2.18418,-0.891351)--(-2.18335,-0.892929)--(-2.18251,-0.894508)--(-2.18167,-0.896088)--(-2.18084,-0.897669)--(-2.18,-0.899251)--(-2.17917,-0.900834)--(-2.17834,-0.902418)--(-2.17751,-0.904003)--(-2.17668,-0.905589)--
> (-2.17585,-0.907177)--(-2.17503,-0.908765)--(-2.1742,-0.910355)--(-2.17338,-0.911946)--(-2.17256,-0.913537)--(-2.17174,-0.91513)--(-2.17092,-0.916724)--(-2.1701,-0.91832)--(-2.16928,-0.919916)--(-2.16847,-0.921513)--(-2.16765,-0.923112)--(-2.16684,-0.924712)--(-2.16603,-0.926313)--(-2.16522,-0.927915)--(-2.16441,-0.929518)--(-2.1636,-0.931122)--(-2.1628,-0.932728)--(-2.16199,-0.934335)--(-2.16119,-0.935943)--(-2.16038,-0.937552)--(-2.15958,-0.939162)--(-2.15878,-0.940773)--(-2.15798,-0.942386)--
> (-2.15719,-0.944)--(-2.15639,-0.945615)--(-2.1556,-0.947231)--(-2.1548,-0.948848)--(-2.15401,-0.950467)--(-2.15322,-0.952087)--(-2.15243,-0.953708)--(-2.15164,-0.95533)--(-2.15085,-0.956954)--(-2.15007,-0.958579)--(-2.14928,-0.960205)--(-2.1485,-0.961832)--(-2.14772,-0.963461)--(-2.14693,-0.965091)--(-2.14615,-0.966722)--(-2.14538,-0.968354)--(-2.1446,-0.969987)--(-2.14382,-0.971622)--(-2.14305,-0.973259)--(-2.14227,-0.974896)--(-2.1415,-0.976535)--(-2.14073,-0.978175)--(-2.13996,-0.979816)--
> (-2.13919,-0.981459)--(-2.13842,-0.983102)--(-2.13766,-0.984748)--(-2.13689,-0.986394)--(-2.13613,-0.988042)--(-2.13537,-0.989691)--(-2.13461,-0.991342)--(-2.13385,-0.992994)--(-2.13309,-0.994647)--(-2.13233,-0.996301)--(-2.13157,-0.997957)--(-2.13082,-0.999614)--(-2.13006,-1.00127)--(-2.12931,-1.00293)--(-2.12856,-1.00459)--(-2.12781,-1.00626)--(-2.12706,-1.00792)--(-2.12631,-1.00959)--(-2.12556,-1.01125)--(-2.12482,-1.01292)--(-2.12407,-1.01459)--(-2.12333,-1.01626)--(-2.12259,-1.01793)--
> (-2.12185,-1.01961)--(-2.12111,-1.02128)--(-2.12037,-1.02296)--(-2.11963,-1.02464)--(-2.1189,-1.02632)--(-2.11816,-1.028)--(-2.11743,-1.02968)--(-2.1167,-1.03136)--(-2.11597,-1.03305)--(-2.11524,-1.03474)--(-2.11451,-1.03643)--(-2.11378,-1.03811)--(-2.11305,-1.03981)--(-2.11233,-1.0415)--(-2.1116,-1.04319)--(-2.11088,-1.04489)--(-2.11016,-1.04659)--(-2.10944,-1.04828)--(-2.10872,-1.04998)--(-2.108,-1.05169)--(-2.10728,-1.05339)--(-2.10657,-1.05509)--(-2.10585,-1.0568)--(-2.10514,-1.05851)--
> (-2.10443,-1.06022)--(-2.10372,-1.06193)--(-2.10301,-1.06364)--(-2.1023,-1.06535)--(-2.10159,-1.06707)--(-2.10088,-1.06878)--(-2.10018,-1.0705)--(-2.09947,-1.07222)--(-2.09877,-1.07394)--(-2.09807,-1.07567)--(-2.09737,-1.07739)--(-2.09667,-1.07912)--(-2.09597,-1.08085)--(-2.09527,-1.08258)--(-2.09457,-1.08431)--(-2.09388,-1.08604)--(-2.09319,-1.08777)--(-2.09249,-1.08951)--(-2.0918,-1.09125)--(-2.09111,-1.09299)--(-2.09042,-1.09473)--(-2.08973,-1.09647)--(-2.08905,-1.09821)--(-2.08836,-1.09996)--
> (-2.08768,-1.10171)--(-2.08699,-1.10346)--(-2.08631,-1.10521)--(-2.08563,-1.10696)--(-2.08495,-1.10871)--(-2.08427,-1.11047)--(-2.08359,-1.11223)--(-2.08291,-1.11399)--(-2.08224,-1.11575)--(-2.08156,-1.11751)--(-2.08089,-1.11927)--(-2.08022,-1.12104)--(-2.07955,-1.12281)--(-2.07888,-1.12458)--(-2.07821,-1.12635)--(-2.07754,-1.12812)--(-2.07687,-1.1299)--(-2.07621,-1.13167)--(-2.07554,-1.13345)--(-2.07488,-1.13523)--(-2.07422,-1.13701)--(-2.07355,-1.1388)--(-2.07289,-1.14058)--(-2.07224,-1.14237)--
> (-2.07158,-1.14416)--(-2.07092,-1.14595)--(-2.07026,-1.14774)--(-2.06961,-1.14953)--(-2.06896,-1.15133)--(-2.0683,-1.15313)--(-2.06765,-1.15493)--(-2.067,-1.15673)--(-2.06635,-1.15853)--(-2.06571,-1.16034)--(-2.06506,-1.16214)--(-2.06441,-1.16395)--(-2.06377,-1.16576)--(-2.06312,-1.16758)--(-2.06248,-1.16939)--(-2.06184,-1.17121)--(-2.0612,-1.17303)--(-2.06056,-1.17485)--(-2.05992,-1.17667)--(-2.05929,-1.17849)--(-2.05865,-1.18032)--(-2.05802,-1.18215)--(-2.05738,-1.18397)--(-2.05675,-1.18581)--
> (-2.05612,-1.18764)--(-2.05549,-1.18948)--(-2.05486,-1.19131)--(-2.05423,-1.19315)--(-2.0536,-1.19499)--(-2.05298,-1.19684)--(-2.05235,-1.19868)--(-2.05173,-1.20053)--(-2.0511,-1.20238)--(-2.05048,-1.20423)--(-2.04986,-1.20608)--(-2.04924,-1.20794)--(-2.04862,-1.20979)--(-2.04801,-1.21165)--(-2.04739,-1.21352)--(-2.04677,-1.21538)--(-2.04616,-1.21724)--(-2.04555,-1.21911)--(-2.04493,-1.22098)--(-2.04432,-1.22285)--(-2.04371,-1.22472)--(-2.0431,-1.2266)--(-2.0425,-1.22848)--(-2.04189,-1.23036)--
> (-2.04128,-1.23224)--(-2.04068,-1.23412)--(-2.04007,-1.23601)--(-2.03947,-1.2379)--(-2.03887,-1.23979)--(-2.03827,-1.24168)--(-2.03767,-1.24357)--(-2.03707,-1.24547)--(-2.03647,-1.24737)--(-2.03588,-1.24927)--(-2.03528,-1.25117)--(-2.03469,-1.25308)--(-2.0341,-1.25498)--(-2.0335,-1.25689)--(-2.03291,-1.25881)--(-2.03232,-1.26072)--(-2.03173,-1.26263)--(-2.03115,-1.26455)--(-2.03056,-1.26647)--(-2.02997,-1.2684)--(-2.02939,-1.27032)--(-2.02881,-1.27225)--(-2.02822,-1.27418)--(-2.02764,-1.27611)--
> (-2.02706,-1.27804)--(-2.02648,-1.27998)--(-2.0259,-1.28192)--(-2.02533,-1.28386)--(-2.02475,-1.2858)--(-2.02417,-1.28774)--(-2.0236,-1.28969)--(-2.02303,-1.29164)--(-2.02245,-1.29359)--(-2.02188,-1.29555)--(-2.02131,-1.2975)--(-2.02074,-1.29946)--(-2.02018,-1.30142)--(-2.01961,-1.30339)--(-2.01904,-1.30535)--(-2.01848,-1.30732)--(-2.01792,-1.30929)--(-2.01735,-1.31126)--(-2.01679,-1.31324)--(-2.01623,-1.31522)--(-2.01567,-1.3172)--(-2.01511,-1.31918)--(-2.01455,-1.32116)--(-2.014,-1.32315)--
> (-2.01344,-1.32514)--(-2.01289,-1.32713)--(-2.01233,-1.32913)--(-2.01178,-1.33112)--(-2.01123,-1.33312)--(-2.01068,-1.33512)--(-2.01013,-1.33713)--(-2.00958,-1.33914)--(-2.00904,-1.34114)--(-2.00849,-1.34316)--(-2.00794,-1.34517)--(-2.0074,-1.34719)--(-2.00686,-1.34921)--(-2.00631,-1.35123)--(-2.00577,-1.35325)--(-2.00523,-1.35528)--(-2.00469,-1.35731)--(-2.00416,-1.35934)--(-2.00362,-1.36137)--(-2.00308,-1.36341)--(-2.00255,-1.36545)--(-2.00201,-1.36749)--(-2.00148,-1.36954)--
> (-2.00095,-1.37158)--(-2.00042,-1.37363)--(-1.99989,-1.37569)--(-1.99936,-1.37774)--(-1.99883,-1.3798)--(-1.99831,-1.38186)--(-1.99778,-1.38392)--(-1.99726,-1.38599)--(-1.99673,-1.38806)--(-1.99621,-1.39013)--(-1.99569,-1.3922)--(-1.99517,-1.39428)--(-1.99465,-1.39636)--(-1.99413,-1.39844)--(-1.99361,-1.40052)--(-1.99309,-1.40261)--(-1.99258,-1.4047)--(-1.99206,-1.40679)--(-1.99155,-1.40889)--(-1.99104,-1.41099)--(-1.99053,-1.41309)--(-1.99002,-1.41519)--(-1.98951,-1.4173)--(-1.989,-1.41941)--
> (-1.98849,-1.42152)--(-1.98798,-1.42363)--(-1.98748,-1.42575)--(-1.98697,-1.42787)--(-1.98647,-1.42999)--(-1.98597,-1.43212)--(-1.98547,-1.43425)--(-1.98497,-1.43638)--(-1.98447,-1.43852)--(-1.98397,-1.44065)--(-1.98347,-1.44279)--(-1.98298,-1.44494)--(-1.98248,-1.44708)--(-1.98199,-1.44923)--(-1.98149,-1.45138)--(-1.981,-1.45354)--(-1.98051,-1.4557)--(-1.98002,-1.45786)--(-1.97953,-1.46002)--(-1.97904,-1.46219)--(-1.97855,-1.46436)--(-1.97807,-1.46653)--(-1.97758,-1.46871)--(-1.9771,-1.47088)--
> (-1.97662,-1.47307)--(-1.97613,-1.47525)--(-1.97565,-1.47744)--(-1.97517,-1.47963)--(-1.97469,-1.48182)--(-1.97422,-1.48402)--(-1.97374,-1.48622)--(-1.97326,-1.48842)--(-1.97279,-1.49063)--(-1.97231,-1.49284)--(-1.97184,-1.49505)--(-1.97137,-1.49726)--(-1.9709,-1.49948)--(-1.97043,-1.5017)--(-1.96996,-1.50393)--(-1.96949,-1.50616)--(-1.96902,-1.50839)--(-1.96856,-1.51062)--(-1.96809,-1.51286)--(-1.96763,-1.5151)--(-1.96717,-1.51734)--(-1.9667,-1.51959)--(-1.96624,-1.52184)--(-1.96578,-1.52409)--
> (-1.96532,-1.52635)--(-1.96487,-1.52861)--(-1.96441,-1.53087)--(-1.96395,-1.53314)--(-1.9635,-1.53541)--(-1.96304,-1.53768)--(-1.96259,-1.53996)--(-1.96214,-1.54224)--(-1.96169,-1.54452)--(-1.96124,-1.54681)--(-1.96079,-1.5491)--(-1.96034,-1.55139)--(-1.95989,-1.55369)--(-1.95945,-1.55599)--(-1.959,-1.55829)--(-1.95856,-1.5606)--(-1.95812,-1.56291)--(-1.95768,-1.56522)--(-1.95723,-1.56754)--(-1.9568,-1.56986)--(-1.95636,-1.57218)--(-1.95592,-1.57451)--(-1.95548,-1.57684)--(-1.95505,-1.57917)--
> (-1.95461,-1.58151)--(-1.95418,-1.58385)--(-1.95374,-1.5862)--(-1.95331,-1.58854)--(-1.95288,-1.5909)--(-1.95245,-1.59325)--(-1.95202,-1.59561)--(-1.9516,-1.59797)--(-1.95117,-1.60034)--(-1.95074,-1.60271)--(-1.95032,-1.60508)--(-1.9499,-1.60746)--(-1.94947,-1.60984)--(-1.94905,-1.61222)--(-1.94863,-1.61461)--(-1.94821,-1.617)--(-1.94779,-1.6194)--(-1.94738,-1.62179)--(-1.94696,-1.6242)--(-1.94654,-1.6266)--(-1.94613,-1.62901)--(-1.94572,-1.63143)--(-1.9453,-1.63384)--(-1.94489,-1.63626)--
> (-1.94448,-1.63869)--(-1.94407,-1.64112)--(-1.94366,-1.64355)--(-1.94326,-1.64599)--(-1.94285,-1.64843)--(-1.94244,-1.65087)--(-1.94204,-1.65332)--(-1.94164,-1.65577)--(-1.94123,-1.65823)--(-1.94083,-1.66068)--(-1.94043,-1.66315)--(-1.94003,-1.66561)--(-1.93964,-1.66809)--(-1.93924,-1.67056)--(-1.93884,-1.67304)--(-1.93845,-1.67552)--(-1.93805,-1.67801)--(-1.93766,-1.6805)--(-1.93727,-1.68299)--(-1.93688,-1.68549)--(-1.93649,-1.688)--(-1.9361,-1.6905)--(-1.93571,-1.69301)--(-1.93532,-1.69553)--
> (-1.93494,-1.69805)--(-1.93455,-1.70057)--(-1.93417,-1.7031)--(-1.93379,-1.70563)--(-1.9334,-1.70816)--(-1.93302,-1.7107)--(-1.93264,-1.71325)--(-1.93226,-1.7158)--(-1.93189,-1.71835)--(-1.93151,-1.7209)--(-1.93113,-1.72346)--(-1.93076,-1.72603)--(-1.93039,-1.7286)--(-1.93001,-1.73117)--(-1.92964,-1.73375)--(-1.92927,-1.73633)--(-1.9289,-1.73892)--(-1.92853,-1.74151)--(-1.92817,-1.7441)--(-1.9278,-1.7467)--(-1.92743,-1.7493)--(-1.92707,-1.75191)--(-1.92671,-1.75452)--(-1.92634,-1.75714)--
> (-1.92598,-1.75976)--(-1.92562,-1.76238)--(-1.92526,-1.76501)--(-1.92491,-1.76765)--(-1.92455,-1.77029)--(-1.92419,-1.77293)--(-1.92384,-1.77558)--(-1.92348,-1.77823)--(-1.92313,-1.78089)--(-1.92278,-1.78355)--(-1.92243,-1.78621)--(-1.92208,-1.78888)--(-1.92173,-1.79156)--(-1.92138,-1.79424)--(-1.92104,-1.79692)--(-1.92069,-1.79961)--(-1.92035,-1.8023)--(-1.92,-1.805)--(-1.91966,-1.8077)--(-1.91932,-1.81041)--(-1.91898,-1.81312)--(-1.91864,-1.81584)--(-1.9183,-1.81856)--(-1.91796,-1.82129)--
> (-1.91763,-1.82402)--(-1.91729,-1.82675)--(-1.91696,-1.82949)--(-1.91663,-1.83224)--(-1.91629,-1.83499)--(-1.91596,-1.83774)--(-1.91563,-1.8405)--(-1.91531,-1.84327)--(-1.91498,-1.84604)--(-1.91465,-1.84881)--(-1.91433,-1.85159)--(-1.914,-1.85437)--(-1.91368,-1.85716)--(-1.91336,-1.85996)--(-1.91303,-1.86276)--(-1.91271,-1.86556)--(-1.9124,-1.86837)--(-1.91208,-1.87118)--(-1.91176,-1.874)--(-1.91145,-1.87683)--(-1.91113,-1.87966)--(-1.91082,-1.88249)--(-1.9105,-1.88533)--(-1.91019,-1.88818)--
> (-1.90988,-1.89103)--(-1.90957,-1.89388)--(-1.90926,-1.89674)--(-1.90896,-1.89961)--(-1.90865,-1.90248)--(-1.90835,-1.90535)--(-1.90804,-1.90824)--(-1.90774,-1.91112)--(-1.90744,-1.91401)--(-1.90714,-1.91691)--(-1.90684,-1.91981)--(-1.90654,-1.92272)--(-1.90624,-1.92564)--(-1.90595,-1.92855)--(-1.90565,-1.93148)--(-1.90536,-1.93441)--(-1.90506,-1.93734)--(-1.90477,-1.94028)--(-1.90448,-1.94323)--(-1.90419,-1.94618)--(-1.9039,-1.94914)--(-1.90362,-1.9521)--(-1.90333,-1.95507)--(-1.90304,-1.95804)--
> (-1.90276,-1.96102)--(-1.90248,-1.96401)--(-1.90219,-1.967)--(-1.90191,-1.96999)--(-1.90163,-1.97299)--(-1.90136,-1.976)--(-1.90108,-1.97902)--(-1.9008,-1.98203)--(-1.90053,-1.98506)--(-1.90025,-1.98809)--(-1.89998,-1.99113)--(-1.89971,-1.99417)--(-1.89944,-1.99722)--(-1.89917,-2.00027)--(-1.8989,-2.00333)--(-1.89863,-2.0064)--(-1.89836,-2.00947)--(-1.8981,-2.01254)--(-1.89784,-2.01563)--(-1.89757,-2.01872)--(-1.89731,-2.02181)--(-1.89705,-2.02491)--(-1.89679,-2.02802)--(-1.89653,-2.03114)--
> (-1.89628,-2.03426)--(-1.89602,-2.03738)--(-1.89576,-2.04051)--(-1.89551,-2.04365)--(-1.89526,-2.0468)--(-1.89501,-2.04995)--(-1.89476,-2.0531)--(-1.89451,-2.05627)--(-1.89426,-2.05943)--(-1.89401,-2.06261)--(-1.89377,-2.06579)--(-1.89352,-2.06898)--(-1.89328,-2.07217)--(-1.89304,-2.07538)--(-1.8928,-2.07858)--(-1.89256,-2.0818)--(-1.89232,-2.08502)--(-1.89208,-2.08824)--(-1.89184,-2.09148)--(-1.89161,-2.09472)--(-1.89137,-2.09796)--(-1.89114,-2.10121)--(-1.89091,-2.10447)--(-1.89068,-2.10774)--
> (-1.89045,-2.11101)--(-1.89022,-2.11429)--(-1.89,-2.11758)--(-1.88977,-2.12087)--(-1.88955,-2.12417)--(-1.88932,-2.12747)--(-1.8891,-2.13079)--(-1.88888,-2.13411)--(-1.88866,-2.13743)--(-1.88844,-2.14077)--(-1.88822,-2.14411)--(-1.88801,-2.14745)--(-1.88779,-2.15081)--(-1.88758,-2.15417)--(-1.88737,-2.15754)--(-1.88715,-2.16091)--(-1.88694,-2.16429)--(-1.88674,-2.16768)--(-1.88653,-2.17108)--(-1.88632,-2.17448)--(-1.88612,-2.17789)--(-1.88591,-2.18131)--(-1.88571,-2.18473)--(-1.88551,-2.18817)--
> (-1.88531,-2.1916)--(-1.88511,-2.19505)--(-1.88491,-2.1985)--(-1.88471,-2.20197)--(-1.88452,-2.20543)--(-1.88433,-2.20891)--(-1.88413,-2.21239)--(-1.88394,-2.21588)--(-1.88375,-2.21938)--(-1.88356,-2.22289)--(-1.88337,-2.2264)--(-1.88319,-2.22992)--(-1.883,-2.23345)--(-1.88282,-2.23698)--(-1.88263,-2.24053)--(-1.88245,-2.24408)--(-1.88227,-2.24763)--(-1.88209,-2.2512)--(-1.88192,-2.25477)--(-1.88174,-2.25836)--(-1.88156,-2.26195)--(-1.88139,-2.26554)--(-1.88122,-2.26915)--(-1.88105,-2.27276)--
> (-1.88088,-2.27638)--(-1.88071,-2.28001)--(-1.88054,-2.28365)--(-1.88037,-2.28729)--(-1.88021,-2.29095)--(-1.88005,-2.29461)--(-1.87988,-2.29828)--(-1.87972,-2.30195)--(-1.87956,-2.30564)--(-1.8794,-2.30933)--(-1.87925,-2.31303)--(-1.87909,-2.31674)--(-1.87894,-2.32046)--(-1.87878,-2.32419)--(-1.87863,-2.32792)--(-1.87848,-2.33167)--(-1.87833,-2.33542)--(-1.87819,-2.33918)--(-1.87804,-2.34295)--(-1.87789,-2.34672)--(-1.87775,-2.35051)--(-1.87761,-2.3543)--(-1.87747,-2.35811)--(-1.87733,-2.36192)--
> (-1.87719,-2.36574)--(-1.87705,-2.36957)--(-1.87692,-2.3734)--(-1.87678,-2.37725)--(-1.87665,-2.38111)--(-1.87652,-2.38497)--(-1.87639,-2.38884)--(-1.87626,-2.39272)--(-1.87613,-2.39661)--(-1.876,-2.40051)--(-1.87588,-2.40442)--(-1.87576,-2.40834)--(-1.87564,-2.41227)--(-1.87551,-2.4162)--(-1.8754,-2.42015)--(-1.87528,-2.4241)--(-1.87516,-2.42807)--(-1.87505,-2.43204)--(-1.87493,-2.43602)--(-1.87482,-2.44001)--(-1.87471,-2.44401)--(-1.8746,-2.44802)--(-1.87449,-2.45204)--(-1.87439,-2.45607)--
> (-1.87428,-2.46011)--(-1.87418,-2.46416)--(-1.87408,-2.46822)--(-1.87398,-2.47228)--(-1.87388,-2.47636)--(-1.87378,-2.48045)--(-1.87368,-2.48454)--(-1.87359,-2.48865)--(-1.8735,-2.49277)--(-1.8734,-2.49689)--(-1.87331,-2.50103)--(-1.87322,-2.50517)--(-1.87314,-2.50933)--(-1.87305,-2.5135)--(-1.87297,-2.51767)--(-1.87288,-2.52186)--(-1.8728,-2.52605)--(-1.87272,-2.53026)--(-1.87264,-2.53448)--(-1.87257,-2.5387)--(-1.87249,-2.54294)--(-1.87242,-2.54719)--(-1.87234,-2.55145)--(-1.87227,-2.55572)--
> (-1.8722,-2.55999)--(-1.87214,-2.56428)--(-1.87207,-2.56858)--(-1.872,-2.57289)--(-1.87194,-2.57722)--(-1.87188,-2.58155)--(-1.87182,-2.58589)--(-1.87176,-2.59024)--(-1.8717,-2.59461)--(-1.87165,-2.59898)--(-1.87159,-2.60337)--(-1.87154,-2.60777)--(-1.87149,-2.61218)--(-1.87144,-2.61659)--(-1.87139,-2.62103)--(-1.87135,-2.62547)--(-1.8713,-2.62992)--(-1.87126,-2.63438)--(-1.87122,-2.63886)--(-1.87118,-2.64335)--(-1.87114,-2.64784)--(-1.8711,-2.65235)--(-1.87107,-2.65687)--(-1.87103,-2.66141)--
> (-1.871,-2.66595)--(-1.87097,-2.67051)--(-1.87094,-2.67507)--(-1.87092,-2.67965)--(-1.87089,-2.68424)--(-1.87087,-2.68885)--(-1.87085,-2.69346)--(-1.87083,-2.69809)--(-1.87081,-2.70273)--(-1.87079,-2.70738)--(-1.87078,-2.71204)--(-1.87076,-2.71671)--(-1.87075,-2.7214)--(-1.87074,-2.7261)--(-1.87073,-2.73081)--(-1.87072,-2.73554)--(-1.87072,-2.74027)--(-1.87072,-2.74502)--(-1.87071,-2.74978)--(-1.87071,-2.75456)--(-1.87072,-2.75934)--(-1.87072,-2.76414)--(-1.87073,-2.76895)--(-1.87073,-2.77378)--
> (-1.87074,-2.77862)--(-1.87075,-2.78347)--(-1.87076,-2.78833)--(-1.87078,-2.79321)--(-1.87079,-2.7981)--(-1.87081,-2.803)--(-1.87083,-2.80791)--(-1.87085,-2.81284)--(-1.87087,-2.81779)--(-1.8709,-2.82274)--(-1.87093,-2.82771)--(-1.87095,-2.83269)--(-1.87098,-2.83769)--(-1.87102,-2.8427)--(-1.87105,-2.84772)--(-1.87109,-2.85276)--(-1.87112,-2.85781)--(-1.87116,-2.86287)--(-1.8712,-2.86795)--(-1.87125,-2.87304)--(-1.87129,-2.87815)--(-1.87134,-2.88327)--(-1.87139,-2.88841)--(-1.87144,-2.89355)--
> (-1.87149,-2.89872)--(-1.87154,-2.9039)--(-1.8716,-2.90909)--(-1.87166,-2.91429)--(-1.87172,-2.91951)--(-1.87178,-2.92475)--(-1.87184,-2.93)--(-1.87191,-2.93526)--(-1.87198,-2.94054)--(-1.87205,-2.94584)--(-1.87212,-2.95115)--(-1.87219,-2.95647)--(-1.87227,-2.96181)--(-1.87234,-2.96717)--(-1.87242,-2.97254)--(-1.87251,-2.97792)--(-1.87259,-2.98332)--(-1.87267,-2.98874)--(-1.87276,-2.99417)--(-1.87285,-2.99962)--(-1.87294,-3.00508)--(-1.87304,-3.01056)--(-1.87313,-3.01605)--(-1.87323,-3.02156)--
> (-1.87333,-3.02709)--(-1.87343,-3.03263)--(-1.87353,-3.03819)--(-1.87364,-3.04376)--(-1.87375,-3.04935)--(-1.87386,-3.05496)--(-1.87397,-3.06058)--(-1.87408,-3.06622)--(-1.8742,-3.07188)--(-1.87432,-3.07755)--(-1.87444,-3.08324)--(-1.87456,-3.08894)--(-1.87469,-3.09467)--(-1.87481,-3.10041)--(-1.87494,-3.10616)--(-1.87507,-3.11194)--(-1.87521,-3.11773)--(-1.87534,-3.12354)--(-1.87548,-3.12936)--(-1.87562,-3.1352)--(-1.87576,-3.14107)--(-1.87591,-3.14694)--(-1.87606,-3.15284)--(-1.8762,-3.15875)--
> (-1.87636,-3.16468)--(-1.87651,-3.17063)--(-1.87667,-3.1766)--(-1.87682,-3.18259)--(-1.87698,-3.18859)--(-1.87715,-3.19461)--(-1.87731,-3.20065)--(-1.87748,-3.20671)--(-1.87765,-3.21279)--(-1.87782,-3.21888)--(-1.87799,-3.225)--(-1.87817,-3.23113)--(-1.87835,-3.23728)--(-1.87853,-3.24345)--(-1.87871,-3.24964)--(-1.8789,-3.25585)--(-1.87909,-3.26208)--(-1.87928,-3.26833)--(-1.87947,-3.2746)--(-1.87967,-3.28089)--(-1.87987,-3.28719)--(-1.88007,-3.29352)--(-1.88027,-3.29987)--(-1.88048,-3.30623)--
> (-1.88068,-3.31262)--(-1.88089,-3.31903)--(-1.88111,-3.32545)--(-1.88132,-3.3319)--(-1.88154,-3.33837)--(-1.88176,-3.34486)--(-1.88198,-3.35137)--(-1.88221,-3.3579)--(-1.88244,-3.36445)--(-1.88267,-3.37102)--(-1.8829,-3.37761)--(-1.88314,-3.38423)--(-1.88338,-3.39086)--(-1.88362,-3.39752)--(-1.88386,-3.4042)--(-1.88411,-3.4109)--(-1.88435,-3.41762)--(-1.88461,-3.42436)--(-1.88486,-3.43113)--(-1.88512,-3.43791)--(-1.88538,-3.44472)--(-1.88564,-3.45156)--(-1.8859,-3.45841)--(-1.88617,-3.46529)--
> (-1.88644,-3.47219)--(-1.88672,-3.47911)--(-1.88699,-3.48606)--(-1.88727,-3.49302)--(-1.88755,-3.50002)--(-1.88784,-3.50703)--(-1.88812,-3.51407)--(-1.88841,-3.52113)--(-1.88871,-3.52822)--(-1.889,-3.53533)--(-1.8893,-3.54246)--(-1.8896,-3.54962)--(-1.88991,-3.5568)--(-1.89021,-3.564)--(-1.89053,-3.57123)--(-1.89084,-3.57849)--(-1.89115,-3.58577)--(-1.89147,-3.59307)--(-1.8918,-3.6004)--(-1.89212,-3.60776)--(-1.89245,-3.61514)--(-1.89278,-3.62254)--(-1.89311,-3.62997)--(-1.89345,-3.63743)--
> (-1.89379,-3.64491)--(-1.89413,-3.65241)--(-1.89448,-3.65995)--(-1.89483,-3.66751)--(-1.89518,-3.67509)--(-1.89554,-3.68271)--(-1.8959,-3.69034)--(-1.89626,-3.69801)--(-1.89662,-3.7057)--(-1.89699,-3.71342)--(-1.89736,-3.72117)--(-1.89774,-3.72894)--(-1.89812,-3.73674)--(-1.8985,-3.74457)--(-1.89888,-3.75243)--(-1.89927,-3.76032)--(-1.89966,-3.76823)--(-1.90006,-3.77617)--(-1.90045,-3.78414)--(-1.90086,-3.79214)--(-1.90126,-3.80017)--(-1.90167,-3.80822)--(-1.90208,-3.81631)--(-1.90249,-3.82442)--
> (-1.90291,-3.83257)--(-1.90333,-3.84074)--(-1.90376,-3.84894)--(-1.90419,-3.85718)--(-1.90462,-3.86544)--(-1.90506,-3.87373)--(-1.9055,-3.88206)--(-1.90594,-3.89041)--(-1.90639,-3.8988)--(-1.90684,-3.90721)--(-1.90729,-3.91566)--(-1.90775,-3.92414)--(-1.90821,-3.93265)--(-1.90867,-3.94119)--(-1.90914,-3.94976)--(-1.90961,-3.95837)--(-1.91009,-3.96701)--(-1.91057,-3.97568)--(-1.91105,-3.98438)--(-1.91154,-3.99312)--(-1.91203,-4.00188)--(-1.91252,-4.01069)--(-1.91302,-4.01952)--(-1.91352,-4.02839)--
> (-1.91403,-4.03729)--(-1.91454,-4.04623)--(-1.91506,-4.0552)--(-1.91557,-4.06421)--(-1.9161,-4.07324)--(-1.91662,-4.08232)--(-1.91715,-4.09143)--(-1.91769,-4.10057)--(-1.91823,-4.10975)--(-1.91877,-4.11897)--(-1.91931,-4.12822)--(-1.91987,-4.13751)--(-1.92042,-4.14683)--(-1.92098,-4.15619)--(-1.92154,-4.16559)--(-1.92211,-4.17503)--(-1.92268,-4.1845)--(-1.92326,-4.19401)--(-1.92384,-4.20355)--(-1.92442,-4.21314)--(-1.92501,-4.22276)--(-1.92561,-4.23242)--(-1.9262,-4.24212)--(-1.92681,-4.25186)--
> (-1.92741,-4.26164)--(-1.92802,-4.27145)--(-1.92864,-4.28131)--(-1.92926,-4.2912)--(-1.92988,-4.30114)--(-1.93051,-4.31112)--(-1.93115,-4.32113)--(-1.93179,-4.33119)--(-1.93243,-4.34129)--(-1.93308,-4.35143)--(-1.93373,-4.36161)--(-1.93439,-4.37184)--(-1.93505,-4.3821)--(-1.93572,-4.39241)--(-1.93639,-4.40276)--(-1.93707,-4.41315)--(-1.93775,-4.42359)--(-1.93843,-4.43407)--(-1.93913,-4.44459)--(-1.93982,-4.45516)--(-1.94052,-4.46578)--(-1.94123,-4.47643)--(-1.94194,-4.48713)--(-1.94266,-4.49788)--
> (-1.94338,-4.50867)--(-1.94411,-4.51951)--(-1.94484,-4.5304)--(-1.94558,-4.54133)--(-1.94632,-4.55231)--(-1.94707,-4.56333)--(-1.94782,-4.5744)--(-1.94858,-4.58552)--(-1.94935,-4.59669)--(-1.95012,-4.60791)--(-1.95089,-4.61917)--(-1.95167,-4.63048)--(-1.95246,-4.64185)--(-1.95325,-4.65326)--(-1.95405,-4.66472)--(-1.95485,-4.67623)--(-1.95566,-4.6878)--(-1.95647,-4.69941)--(-1.95729,-4.71108)--(-1.95812,-4.72279)--(-1.95895,-4.73456)--(-1.95979,-4.74638)--(-1.96063,-4.75826)--(-1.96148,-4.77018)--
> (-1.96233,-4.78216)--(-1.9632,-4.7942)--(-1.96406,-4.80629)--(-1.96494,-4.81843)--(-1.96582,-4.83063)--(-1.9667,-4.84288)--(-1.96759,-4.85519)--(-1.96849,-4.86755)--(-1.9694,-4.87998)--(-1.97031,-4.89245)--(-1.97122,-4.90499)--(-1.97215,-4.91758)--(-1.97308,-4.93023)--(-1.97402,-4.94294)--(-1.97496,-4.95571)--(-1.97591,-4.96854)--(-1.97686,-4.98143)--(-1.97783,-4.99438)--(-1.9788,-5.00738)--(-1.97977,-5.02045)--(-1.98076,-5.03359)--(-1.98175,-5.04678)--(-1.98275,-5.06003)--(-1.98375,-5.07335)--
> (-1.98476,-5.08673)--(-1.98578,-5.10018)--(-1.98681,-5.11369)--(-1.98784,-5.12726)--(-1.98888,-5.1409)--(-1.98992,-5.15461)--(-1.99098,-5.16838)--(-1.99204,-5.18222)--(-1.99311,-5.19612)--(-1.99419,-5.2101)--(-1.99527,-5.22414)--(-1.99636,-5.23825)--(-1.99746,-5.25242)--(-1.99857,-5.26667)--(-1.99969,-5.28099)--(-2.00081,-5.29538)--(-2.00194,-5.30984)--(-2.00308,-5.32437)--(-2.00422,-5.33898)--(-2.00538,-5.35366)--(-2.00654,-5.36841)--(-2.00771,-5.38323)--(-2.00889,-5.39813)--(-2.01008,-5.41311)--
> (-2.01127,-5.42816)--(-2.01248,-5.44329)--(-2.01369,-5.45849)--(-2.01491,-5.47377)--(-2.01614,-5.48913)--(-2.01738,-5.50457)--(-2.01863,-5.52009)--(-2.01988,-5.53568)--(-2.02115,-5.55136)--(-2.02242,-5.56712)--(-2.02371,-5.58296)--(-2.025,-5.59889)--(-2.0263,-5.6149)--(-2.02761,-5.63099)--(-2.02893,-5.64716)--(-2.03026,-5.66343)--(-2.03159,-5.67977)--(-2.03294,-5.69621)--(-2.0343,-5.71273)--(-2.03567,-5.72934)--(-2.03704,-5.74603)--(-2.03843,-5.76282)--(-2.03983,-5.7797)--(-2.04123,-5.79667)--
> (-2.04265,-5.81373)--(-2.04408,-5.83088)--(-2.04551,-5.84813)--(-2.04696,-5.86547)--(-2.04842,-5.8829)--(-2.04989,-5.90043)--(-2.05136,-5.91806)--(-2.05285,-5.93578)--(-2.05435,-5.9536)--(-2.05586,-5.97153)--(-2.05738,-5.98955)--(-2.05892,-6.00767)--(-2.06046,-6.02589)--(-2.06202,-6.04421)--(-2.06358,-6.06264)--(-2.06516,-6.08117)--(-2.06675,-6.09981)--(-2.06835,-6.11855)--(-2.06996,-6.1374)--(-2.07158,-6.15636)--(-2.07322,-6.17542)--(-2.07487,-6.1946)--(-2.07653,-6.21388)--(-2.0782,-6.23328)--
> (-2.07988,-6.25279)--(-2.08158,-6.27241)--(-2.08329,-6.29215)--(-2.08501,-6.312)--(-2.08674,-6.33197)--(-2.08849,-6.35206)--(-2.09025,-6.37227)--(-2.09202,-6.39259)--(-2.09381,-6.41304)--(-2.09561,-6.4336)--(-2.09742,-6.45429)--(-2.09924,-6.47511)--(-2.10108,-6.49605)--(-2.10294,-6.51712)--(-2.1048,-6.53831)--(-2.10669,-6.55963)--(-2.10858,-6.58108)--(-2.11049,-6.60267)--(-2.11241,-6.62438)--(-2.11435,-6.64623)--(-2.11631,-6.66822)--(-2.11827,-6.69034)--(-2.12026,-6.7126)--(-2.12225,-6.73499)--
> (-2.12427,-6.75753)--(-2.1263,-6.78021)--(-2.12834,-6.80303)--(-2.1304,-6.82599)--(-2.13247,-6.8491)--(-2.13456,-6.87236)--(-2.13667,-6.89576)--(-2.1388,-6.91931)--(-2.14093,-6.94302)--(-2.14309,-6.96688)--(-2.14526,-6.99089)--(-2.14745,-7.01506)--(-2.14966,-7.03938)--(-2.15188,-7.06386)--(-2.15413,-7.08851)--(-2.15638,-7.11331)--(-2.15866,-7.13828)--(-2.16096,-7.16342)--(-2.16327,-7.18872)--(-2.1656,-7.21419)--(-2.16795,-7.23983)--(-2.17032,-7.26564)--(-2.1727,-7.29162)--(-2.17511,-7.31778)--
> (-2.17753,-7.34412)--(-2.17998,-7.37064)--(-2.18244,-7.39733)--(-2.18492,-7.42421)--(-2.18743,-7.45128)--(-2.18995,-7.47853)--(-2.19249,-7.50597)--(-2.19506,-7.5336)--(-2.19764,-7.56142)--(-2.20025,-7.58944)--(-2.20288,-7.61765)--(-2.20553,-7.64607)--(-2.2082,-7.67468)--(-2.21089,-7.7035)--(-2.2136,-7.73252)--(-2.21634,-7.76175)--(-2.2191,-7.79119)--(-2.22188,-7.82084)--(-2.22469,-7.8507)--(-2.22752,-7.88078)--(-2.23037,-7.91108)--(-2.23325,-7.94161)--(-2.23615,-7.97235)--(-2.23907,-8.00332)--
> (-2.24202,-8.03453)--(-2.245,-8.06596)--(-2.248,-8.09762)--(-2.25102,-8.12953)--(-2.25407,-8.16167)--(-2.25715,-8.19406)--(-2.26025,-8.22669)--(-2.26338,-8.25956)--(-2.26654,-8.29269)--(-2.26973,-8.32607)--(-2.27294,-8.35971)--(-2.27618,-8.39361)--(-2.27945,-8.42777)--(-2.28274,-8.46219)--(-2.28607,-8.49689)--(-2.28943,-8.53185)--(-2.29281,-8.5671)--(-2.29623,-8.60261)--(-2.29967,-8.63842)--(-2.30315,-8.6745)--(-2.30665,-8.71088)--(-2.31019,-8.74754)--(-2.31376,-8.7845)--(-2.31736,-8.82177)--
> (-2.321,-8.85933)--(-2.32467,-8.8972)--(-2.32837,-8.93538)--(-2.3321,-8.97388)--(-2.33587,-9.01269)--(-2.33968,-9.05182)--(-2.34351,-9.09129)--(-2.34739,-9.13108)--(-2.3513,-9.1712)--(-2.35525,-9.21167)--(-2.35923,-9.25248)--(-2.36325,-9.29363)--(-2.36731,-9.33514)--(-2.37141,-9.377)--(-2.37554,-9.41923)--(-2.37972,-9.46182)--(-2.38393,-9.50478)--(-2.38819,-9.54812)--(-2.39248,-9.59184)--(-2.39682,-9.63594)--(-2.4012,-9.68044)--(-2.40562,-9.72533)--(-2.41009,-9.77062)--(-2.4146,-9.81632)--
> (-2.41915,-9.86243)--(-2.42375,-9.90896)--(-2.42839,-9.95591)--(-2.43308,-10.0033)--(-2.43782,-10.0511)--(-2.4426,-10.0994)--(-2.44744,-10.1481)--(-2.45232,-10.1972)--(-2.45725,-10.2469)--(-2.46223,-10.2969)--(-2.46726,-10.3475)--(-2.47234,-10.3985)--(-2.47748,-10.4501)--(-2.48266,-10.5021)--(-2.4879,-10.5546)--(-2.4932,-10.6077)--(-2.49855,-10.6612)--(-2.50396,-10.7153)--(-2.50943,-10.7699)--(-2.51495,-10.825)--(-2.52053,-10.8807)--(-2.52617,-10.937)--(-2.53187,-10.9938)--(-2.53764,-11.0512)--
> (-2.54346,-11.1092)--(-2.54935,-11.1677)--(-2.5553,-11.2269)--(-2.56132,-11.2866)--(-2.56741,-11.347)--(-2.57356,-11.408)--(-2.57978,-11.4697)--(-2.58607,-11.532)--(-2.59243,-11.5949)--(-2.59886,-11.6586)--(-2.60537,-11.7229)--(-2.61194,-11.7879)--(-2.6186,-11.8536)--(-2.62533,-11.92)--(-2.63214,-11.9871)--(-2.63902,-12.055)--(-2.64599,-12.1236)--(-2.65304,-12.193)--(-2.66017,-12.2632)--(-2.66739,-12.3341)--(-2.67469,-12.4059)--(-2.68208,-12.4785)--(-2.68956,-12.5519)--(-2.69713,-12.6261)--
> (-2.70479,-12.7012)--(-2.71254,-12.7772)--(-2.72039,-12.854)--(-2.72834,-12.9318)--(-2.73638,-13.0105)--(-2.74453,-13.0901)--(-2.75278,-13.1706)--(-2.76113,-13.2522)--(-2.76958,-13.3347)--(-2.77815,-13.4183)--(-2.78682,-13.5028)--(-2.79561,-13.5884)--(-2.80451,-13.6751)--(-2.81353,-13.7629)--(-2.82266,-13.8517)--(-2.83191,-13.9417)--(-2.84129,-14.0328)--(-2.85079,-14.1251)--(-2.86043,-14.2186)--(-2.87019,-14.3133)--(-2.88008,-14.4093)--(-2.89011,-14.5065)--(-2.90027,-14.605)--(-2.91058,-14.7048)--
> (-2.92103,-14.8059)--(-2.93162,-14.9085)--(-2.94237,-15.0124)--(-2.95327,-15.1177)--(-2.96432,-15.2245)--(-2.97554,-15.3328)--(-2.98691,-15.4426)--(-2.99845,-15.5539)--(-3.01016,-15.6669)--(-3.02204,-15.7814)--(-3.0341,-15.8976)--(-3.04634,-16.0155)--(-3.05877,-16.1351)--(-3.07138,-16.2564)--(-3.08419,-16.3796)--(-3.09719,-16.5046)--(-3.11039,-16.6315)--(-3.1238,-16.7603)--(-3.13742,-16.8911)--(-3.15126,-17.0239)--(-3.16531,-17.1588)--(-3.1796,-17.2957)--(-3.19411,-17.4349)--(-3.20886,-17.5762)--
> (-3.22385,-17.7198)--(-3.2391,-17.8658)--(-3.25459,-18.0141)--(-3.27035,-18.1648)--(-3.28637,-18.3181)--(-3.30267,-18.4739)--(-3.31925,-18.6323)--(-3.33611,-18.7935)--(-3.35327,-18.9573)--(-3.37074,-19.1241)--(-3.38851,-19.2937)--(-3.40661,-19.4663)--(-3.42503,-19.642)--(-3.44379,-19.8208)--(-3.46289,-20.0029)--(-3.48235,-20.1882)--(-3.50217,-20.377)--(-3.52237,-20.5693)--(-3.54296,-20.7652)--(-3.56394,-20.9648)--(-3.58533,-21.1683)--(-3.60713,-21.3756)--(-3.62937,-21.587)--(-3.65206,-21.8025)--
> (-3.6752,-22.0224)--(-3.69882,-22.2466)--(-3.72292,-22.4754)--(-3.74752,-22.7089)--(-3.77264,-22.9472)--(-3.79829,-23.1905)--(-3.82449,-23.4389)--(-3.85126,-23.6926)--(-3.87861,-23.9519)--(-3.90657,-24.2168)--(-3.93516,-24.4875)--(-3.96439,-24.7642)--(-3.99429,-25.0473)--(-4.02487,-25.3367)--(-4.05618,-25.6329)--(-4.08822,-25.936)--(-4.12103,-26.2462)--(-4.15463,-26.5639)--(-4.18906,-26.8893)--(-4.22434,-27.2226)--(-4.2605,-27.5642)--(-4.29758,-27.9144)--(-4.33561,-28.2735)--(-4.37463,-28.6419)--
> (-4.41468,-29.0198)--(-4.4558,-29.4078)--(-4.49803,-29.8062)--(-4.54142,-30.2154)--(-4.58601,-30.6359)--(-4.63186,-31.0681)--(-4.67902,-31.5126)--(-4.72755,-31.9699)--(-4.7775,-32.4405)--(-4.82894,-32.925)--(-4.88193,-33.4241)--(-4.93656,-33.9384)--(-4.99288,-34.4687)--(-5.05099,-35.0156)--(-5.11097,-35.58)--(-5.17291,-36.1628)--(-5.2369,-36.7647)--(-5.30306,-37.387)--(-5.37148,-38.0304)--(-5.4423,-38.6962)--(-5.51563,-39.3856)--(-5.59162,-40.0997)--(-5.6704,-40.8401)--(-5.75214,-41.6081)--
> (-5.837,-42.4053)--(-5.92517,-43.2335)--(-6.01684,-44.0944)--(-6.11222,-44.9901)--(-6.21155,-45.9226)--(-6.31507,-46.8944)--(-6.42305,-47.9079)--(-6.53579,-48.966)--(-6.65361,-50.0715)--(-6.77685,-51.2278)--(-6.9059,-52.4385)--(-7.04118,-53.7074)--(-7.18315,-55.0389)--(-7.33232,-56.4378)--(-7.48924,-57.9093)--(-7.65454,-59.4591)--(-7.82891,-61.0937)--(-8.01311,-62.8203)--(-8.20799,-64.6469)--(-8.41451,-66.5824)--(-8.63375,-68.6368)--(-8.8669,-70.8215)--(-9.11535,-73.1493)--(-9.38064,-75.6346)--
> (-9.66454,-78.2941)--(-9.96908,-81.1467)--(-10.2966,-84.2142)--(-10.6498,-87.5219)--(-11.0318,-91.0992)--(-11.4462,-94.9804)--(-11.8975,-99.2059)--(-12.3907,-103.824)--(-12.932,-108.891)--(-13.5287,-114.477)--(-14.1898,-120.666)--(-14.9263,-127.56)--(-15.7519,-135.288)--(-16.6838,-144.01)--(-17.7439,-153.932)--(-18.9606,-165.32)--(-20.3714,-178.523)--(-22.0268,-194.015)--(-23.9964,-212.446)--(-26.3788,-234.74)--(-29.3193,-262.255)--(-33.0397,-297.068)--(-37.8978,-342.526);
> draw(curve, rgb(0,0,255)+solid );
> path curve = (35.8411,347.365)--(30.8679,300.831)--(27.0706,265.298)--(24.0762,237.279)--(21.6545,214.617)--(19.6555,195.91)--(17.9774,180.206)--(16.5487,166.836)--(15.3177,155.315)--(14.246,145.284)--(13.3045,136.473)--(12.471,128.67)--(11.7278,121.713)--(11.061,115.471)--(10.4594,109.839)--(9.91387,104.732)--(9.41698,100.08)--(8.96248,95.8247)--(8.54517,91.917)--(8.16067,88.3163)--(7.80525,84.9878)--(7.47574,81.9017)--(7.16941,79.0325)--(6.8839,76.358)--(6.61716,73.8591)--(6.36739,71.5191)--
> (6.13303,69.3233)--(5.9127,67.2587)--(5.70517,65.3139)--(5.50937,63.4788)--(5.32432,61.7443)--(5.14917,60.1024)--(4.98315,58.546)--(4.82555,57.0684)--(4.67576,55.6638)--(4.53321,54.3269)--(4.39739,53.0531)--(4.26784,51.8378)--(4.14412,50.6772)--(4.02586,49.5677)--(3.91271,48.5059)--(3.80434,47.4888)--(3.70045,46.5138)--(3.60077,45.5781)--(3.50506,44.6795)--(3.41308,43.8159)--(3.32462,42.9851)--(3.23948,42.1854)--(3.15748,41.4151)--(3.07844,40.6726)--(3.00222,39.9563)--(2.92866,39.265)--
> (2.85762,38.5973)--(2.78899,37.9521)--(2.72263,37.3282)--(2.65845,36.7246)--(2.59633,36.1403)--(2.53617,35.5745)--(2.4779,35.0262)--(2.42141,34.4946)--(2.36663,33.979)--(2.31348,33.4787)--(2.2619,32.993)--(2.21181,32.5213)--(2.16315,32.063)--(2.11586,31.6175)--(2.06988,31.1843)--(2.02517,30.7629)--(1.98166,30.3528)--(1.93931,29.9535)--(1.89808,29.5647)--(1.85792,29.1859)--(1.81879,28.8168)--(1.78066,28.457)--(1.74348,28.1061)--(1.70722,27.7638)--(1.67185,27.4298)--(1.63733,27.1038)--
> (1.60363,26.7856)--(1.57074,26.4747)--(1.5386,26.1711)--(1.50722,25.8744)--(1.47654,25.5844)--(1.44656,25.3009)--(1.41725,25.0236)--(1.38859,24.7524)--(1.36055,24.4871)--(1.33312,24.2274)--(1.30627,23.9732)--(1.28,23.7244)--(1.25427,23.4807)--(1.22908,23.242)--(1.20441,23.0081)--(1.18024,22.779)--(1.15655,22.5544)--(1.13334,22.3342)--(1.11059,22.1183)--(1.08828,21.9066)--(1.06641,21.699)--(1.04495,21.4952)--(1.02391,21.2953)--(1.00326,21.0992)--(0.982998,20.9066)--(0.963111,20.7175)--
> (0.94359,20.5319)--(0.924424,20.3496)--(0.905604,20.1705)--(0.887121,19.9946)--(0.868966,19.8218)--(0.85113,19.6519)--(0.833606,19.485)--(0.816385,19.3209)--(0.799459,19.1595)--(0.782822,19.0009)--(0.766466,18.8449)--(0.750384,18.6914)--(0.734569,18.5405)--(0.719015,18.392)--(0.703716,18.2459)--(0.688665,18.1021)--(0.673856,17.9606)--(0.659285,17.8213)--(0.644945,17.6841)--(0.630831,17.5491)--(0.616937,17.4162)--(0.60326,17.2852)--(0.589793,17.1563)--(0.576532,17.0293)--(0.563473,16.9041)--
> (0.550611,16.7808)--(0.537941,16.6593)--(0.52546,16.5396)--(0.513164,16.4216)--(0.501048,16.3053)--(0.489108,16.1906)--(0.477341,16.0776)--(0.465744,15.9661)--(0.454312,15.8562)--(0.443042,15.7479)--(0.431931,15.641)--(0.420976,15.5355)--(0.410173,15.4315)--(0.39952,15.3289)--(0.389013,15.2276)--(0.378649,15.1277)--(0.368426,15.0292)--(0.358341,14.9319)--(0.34839,14.8358)--(0.338573,14.7411)--(0.328885,14.6475)--(0.319325,14.5551)--(0.309889,14.4639)--(0.300577,14.3738)--(0.291384,14.2849)--
> (0.28231,14.1971)--(0.273352,14.1104)--(0.264507,14.0247)--(0.255774,13.9401)--(0.247151,13.8565)--(0.238635,13.7739)--(0.230225,13.6923)--(0.221919,13.6116)--(0.213714,13.532)--(0.20561,13.4532)--(0.197604,13.3754)--(0.189695,13.2985)--(0.181881,13.2225)--(0.17416,13.1473)--(0.16653,13.0731)--(0.158991,12.9996)--(0.151541,12.927)--(0.144177,12.8552)--(0.1369,12.7842)--(0.129706,12.714)--(0.122595,12.6446)--(0.115566,12.5759)--(0.108617,12.508)--(0.101746,12.4408)--(0.0949534,12.3744)--
> (0.0882367,12.3086)--(0.081595,12.2436)--(0.0750271,12.1793)--(0.0685318,12.1156)--(0.062108,12.0526)--(0.0557546,11.9903)--(0.0494704,11.9286)--(0.0432544,11.8676)--(0.0371054,11.8072)--(0.0310226,11.7474)--(0.0250048,11.6882)--(0.0190511,11.6296)--(0.0131604,11.5716)--(0.00733192,11.5142)--(0.00156459,11.4574)--(-0.00414245,11.4011)--(-0.00979012,11.3454)--(-0.0153793,11.2902)--(-0.0209108,11.2356)--(-0.0263856,11.1815)--(-0.0318044,11.1279)--(-0.0371681,11.0749)--(-0.0424774,11.0223)--
> (-0.0477332,10.9703)--(-0.0529362,10.9188)--(-0.0580871,10.8677)--(-0.0631868,10.8171)--(-0.0682359,10.767)--(-0.0732351,10.7174)--(-0.0781852,10.6682)--(-0.0830868,10.6195)--(-0.0879406,10.5712)--(-0.0927473,10.5234)--(-0.0975075,10.476)--(-0.102222,10.4291)--(-0.106891,10.3825)--(-0.111515,10.3364)--(-0.116096,10.2907)--(-0.120633,10.2454)--(-0.125127,10.2005)--(-0.129579,10.156)--(-0.133989,10.1119)--(-0.138359,10.0682)--(-0.142687,10.0249)--(-0.146976,9.98189)--(-0.151224,9.9393)--
> (-0.155434,9.89707)--(-0.159606,9.85521)--(-0.163739,9.8137)--(-0.167835,9.77255)--(-0.171893,9.73174)--(-0.175915,9.69128)--(-0.179901,9.65115)--(-0.183852,9.61136)--(-0.187767,9.57191)--(-0.191647,9.53277)--(-0.195493,9.49397)--(-0.199305,9.45548)--(-0.203083,9.4173)--(-0.206829,9.37943)--(-0.210541,9.34188)--(-0.214222,9.30462)--(-0.21787,9.26767)--(-0.221487,9.23101)--(-0.225073,9.19464)--(-0.228628,9.15856)--(-0.232153,9.12277)--(-0.235647,9.08726)--(-0.239112,9.05203)--(-0.242548,9.01707)--
> (-0.245955,8.98239)--(-0.249333,8.94798)--(-0.252682,8.91383)--(-0.256004,8.87994)--(-0.259298,8.84631)--(-0.262565,8.81295)--(-0.265805,8.77983)--(-0.269018,8.74696)--(-0.272205,8.71435)--(-0.275365,8.68198)--(-0.2785,8.64985)--(-0.281609,8.61796)--(-0.284693,8.58631)--(-0.287753,8.55489)--(-0.290787,8.5237)--(-0.293797,8.49275)--(-0.296783,8.46202)--(-0.299745,8.43151)--(-0.302684,8.40123)--(-0.305599,8.37116)--(-0.308491,8.34131)--(-0.311361,8.31168)--(-0.314207,8.28226)--(-0.317032,8.25305)--
> (-0.319834,8.22405)--(-0.322615,8.19525)--(-0.325374,8.16665)--(-0.328111,8.13826)--(-0.330828,8.11007)--(-0.333523,8.08207)--(-0.336198,8.05427)--(-0.338852,8.02666)--(-0.341486,7.99924)--(-0.3441,7.97201)--(-0.346694,7.94497)--(-0.349268,7.91811)--(-0.351823,7.89143)--(-0.354359,7.86494)--(-0.356875,7.83862)--(-0.359373,7.81249)--(-0.361852,7.78653)--(-0.364313,7.76074)--(-0.366755,7.73512)--(-0.369179,7.70968)--(-0.371586,7.6844)--(-0.373974,7.65929)--(-0.376345,7.63435)--(-0.378699,7.60957)--
> (-0.381035,7.58495)--(-0.383355,7.56049)--(-0.385657,7.5362)--(-0.387943,7.51205)--(-0.390212,7.48807)--(-0.392465,7.46424)--(-0.394702,7.44056)--(-0.396923,7.41703)--(-0.399127,7.39366)--(-0.401316,7.37043)--(-0.40349,7.34735)--(-0.405647,7.32441)--(-0.40779,7.30162)--(-0.409917,7.27897)--(-0.41203,7.25646)--(-0.414127,7.2341)--(-0.41621,7.21187)--(-0.418278,7.18978)--(-0.420332,7.16782)--(-0.422372,7.146)--(-0.424397,7.12432)--(-0.426408,7.10277)--(-0.428405,7.08134)--(-0.430389,7.06005)--
> (-0.432358,7.03889)--(-0.434315,7.01786)--(-0.436258,6.99695)--(-0.438187,6.97616)--(-0.440103,6.95551)--(-0.442007,6.93497)--(-0.443897,6.91456)--(-0.445775,6.89427)--(-0.447639,6.87409)--(-0.449492,6.85404)--(-0.451331,6.8341)--(-0.453159,6.81429)--(-0.454974,6.79458)--(-0.456777,6.77499)--(-0.458568,6.75552)--(-0.460347,6.73616)--(-0.462114,6.71691)--(-0.46387,6.69777)--(-0.465613,6.67874)--(-0.467346,6.65982)--(-0.469067,6.641)--(-0.470776,6.6223)--(-0.472474,6.6037)--(-0.474162,6.5852)--
> (-0.475838,6.56681)--(-0.477503,6.54852)--(-0.479158,6.53034)--(-0.480801,6.51225)--(-0.482434,6.49427)--(-0.484057,6.47639)--(-0.485669,6.4586)--(-0.48727,6.44092)--(-0.488861,6.42333)--(-0.490442,6.40584)--(-0.492013,6.38844)--(-0.493574,6.37114)--(-0.495125,6.35393)--(-0.496666,6.33682)--(-0.498197,6.3198)--(-0.499719,6.30287)--(-0.501231,6.28603)--(-0.502733,6.26928)--(-0.504226,6.25263)--(-0.505709,6.23606)--(-0.507183,6.21958)--(-0.508648,6.20318)--(-0.510104,6.18688)--(-0.511551,6.17066)--
> (-0.512988,6.15452)--(-0.514417,6.13847)--(-0.515836,6.12251)--(-0.517247,6.10663)--(-0.518649,6.09083)--(-0.520043,6.07511)--(-0.521428,6.05947)--(-0.522804,6.04392)--(-0.524172,6.02844)--(-0.525531,6.01305)--(-0.526883,5.99773)--(-0.528225,5.9825)--(-0.52956,5.96733)--(-0.530887,5.95225)--(-0.532205,5.93725)--(-0.533516,5.92231)--(-0.534818,5.90746)--(-0.536113,5.89268)--(-0.537399,5.87797)--(-0.538678,5.86334)--(-0.53995,5.84878)--(-0.541213,5.83429)--(-0.542469,5.81988)--(-0.543718,5.80554)--
> (-0.544959,5.79126)--(-0.546193,5.77706)--(-0.547419,5.76293)--(-0.548638,5.74887)--(-0.549849,5.73487)--(-0.551054,5.72095)--(-0.552251,5.70709)--(-0.553441,5.6933)--(-0.554625,5.67957)--(-0.555801,5.66591)--(-0.55697,5.65232)--(-0.558132,5.6388)--(-0.559288,5.62534)--(-0.560437,5.61194)--(-0.561579,5.59861)--(-0.562714,5.58534)--(-0.563843,5.57213)--(-0.564965,5.55898)--(-0.566081,5.5459)--(-0.56719,5.53288)--(-0.568292,5.51992)--(-0.569389,5.50703)--(-0.570478,5.49419)--(-0.571562,5.48141)--
> (-0.572639,5.46869)--(-0.57371,5.45603)--(-0.574775,5.44343)--(-0.575834,5.43089)--(-0.576887,5.4184)--(-0.577934,5.40598)--(-0.578974,5.39361)--(-0.580009,5.38129)--(-0.581038,5.36904)--(-0.582061,5.35684)--(-0.583078,5.34469)--(-0.584089,5.3326)--(-0.585095,5.32056)--(-0.586095,5.30858)--(-0.587089,5.29665)--(-0.588077,5.28478)--(-0.58906,5.27296)--(-0.590038,5.26119)--(-0.59101,5.24948)--(-0.591976,5.23781)--(-0.592937,5.2262)--(-0.593893,5.21464)--(-0.594843,5.20313)--(-0.595788,5.19167)--
> (-0.596727,5.18027)--(-0.597662,5.16891)--(-0.598591,5.1576)--(-0.599515,5.14634)--(-0.600434,5.13513)--(-0.601347,5.12397)--(-0.602256,5.11286)--(-0.603159,5.1018)--(-0.604058,5.09078)--(-0.604951,5.07981)--(-0.60584,5.06889)--(-0.606724,5.05802)--(-0.607602,5.04719)--(-0.608476,5.03641)--(-0.609345,5.02567)--(-0.61021,5.01498)--(-0.611069,5.00433)--(-0.611924,4.99373)--(-0.612774,4.98318)--(-0.61362,4.97267)--(-0.614461,4.9622)--(-0.615297,4.95178)--(-0.616129,4.9414)--(-0.616956,4.93107)--
> (-0.617779,4.92078)--(-0.618597,4.91053)--(-0.61941,4.90032)--(-0.62022,4.89015)--(-0.621025,4.88003)--(-0.621825,4.86995)--(-0.622621,4.85991)--(-0.623413,4.84991)--(-0.624201,4.83996)--(-0.624984,4.83004)--(-0.625763,4.82017)--(-0.626538,4.81033)--(-0.627309,4.80053)--(-0.628075,4.79078)--(-0.628838,4.78106)--(-0.629596,4.77138)--(-0.63035,4.76175)--(-0.6311,4.75215)--(-0.631847,4.74259)--(-0.632589,4.73306)--(-0.633327,4.72358)--(-0.634061,4.71413)--(-0.634792,4.70472)--(-0.635518,4.69535)--
> (-0.636241,4.68602)--(-0.636959,4.67672)--(-0.637674,4.66746)--(-0.638385,4.65823)--(-0.639093,4.64904)--(-0.639796,4.63989)--(-0.640496,4.63077)--(-0.641192,4.62169)--(-0.641884,4.61265)--(-0.642573,4.60364)--(-0.643258,4.59466)--(-0.64394,4.58572)--(-0.644617,4.57681)--(-0.645292,4.56794)--(-0.645962,4.55911)--(-0.646629,4.5503)--(-0.647293,4.54153)--(-0.647953,4.5328)--(-0.64861,4.52409)--(-0.649263,4.51542)--(-0.649913,4.50679)--(-0.650559,4.49818)--(-0.651202,4.48961)--(-0.651842,4.48107)--
> (-0.652478,4.47256)--(-0.653111,4.46409)--(-0.653741,4.45564)--(-0.654367,4.44723)--(-0.65499,4.43885)--(-0.65561,4.4305)--(-0.656226,4.42219)--(-0.65684,4.4139)--(-0.65745,4.40564)--(-0.658057,4.39742)--(-0.658661,4.38922)--(-0.659261,4.38106)--(-0.659859,4.37292)--(-0.660453,4.36482)--(-0.661044,4.35675)--(-0.661633,4.3487)--(-0.662218,4.34068)--(-0.6628,4.3327)--(-0.663379,4.32474)--(-0.663955,4.31681)--(-0.664528,4.30891)--(-0.665099,4.30104)--(-0.665666,4.2932)--(-0.66623,4.28538)--
> (-0.666791,4.2776)--(-0.66735,4.26984)--(-0.667906,4.26211)--(-0.668458,4.2544)--(-0.669008,4.24673)--(-0.669555,4.23908)--(-0.670099,4.23146)--(-0.670641,4.22386)--(-0.671179,4.2163)--(-0.671715,4.20876)--(-0.672248,4.20124)--(-0.672778,4.19376)--(-0.673306,4.1863)--(-0.673831,4.17886)--(-0.674353,4.17145)--(-0.674873,4.16407)--(-0.675389,4.15671)--(-0.675904,4.14938)--(-0.676415,4.14208)--(-0.676924,4.1348)--(-0.67743,4.12754)--(-0.677934,4.12031)--(-0.678435,4.11311)--(-0.678934,4.10593)--
> (-0.67943,4.09877)--(-0.679923,4.09164)--(-0.680414,4.08453)--(-0.680902,4.07745)--(-0.681388,4.07039)--(-0.681872,4.06336)--(-0.682353,4.05635)--(-0.682831,4.04936)--(-0.683307,4.0424)--(-0.683781,4.03546)--(-0.684252,4.02855)--(-0.684721,4.02165)--(-0.685187,4.01478)--(-0.685651,4.00794)--(-0.686113,4.00112)--(-0.686572,3.99432)--(-0.687029,3.98754)--(-0.687483,3.98078)--(-0.687936,3.97405)--(-0.688386,3.96734)--(-0.688833,3.96065)--(-0.689279,3.95399)--(-0.689722,3.94734)--(-0.690163,3.94072)--
> (-0.690601,3.93412)--(-0.691037,3.92755)--(-0.691472,3.92099)--(-0.691903,3.91445)--(-0.692333,3.90794)--(-0.692761,3.90145)--(-0.693186,3.89498)--(-0.693609,3.88853)--(-0.69403,3.8821)--(-0.694449,3.87569)--(-0.694866,3.8693)--(-0.69528,3.86293)--(-0.695693,3.85659)--(-0.696103,3.85026)--(-0.696512,3.84396)--(-0.696918,3.83767)--(-0.697322,3.83141)--(-0.697724,3.82516)--(-0.698124,3.81894)--(-0.698522,3.81273)--(-0.698918,3.80654)--(-0.699312,3.80038)--(-0.699704,3.79423)--(-0.700094,3.78811)--
> (-0.700482,3.782)--(-0.700868,3.77591)--(-0.701252,3.76984)--(-0.701634,3.76379)--(-0.702014,3.75776)--(-0.702392,3.75175)--(-0.702768,3.74575)--(-0.703143,3.73978)--(-0.703515,3.73382)--(-0.703885,3.72788)--(-0.704254,3.72197)--(-0.704621,3.71606)--(-0.704986,3.71018)--(-0.705349,3.70432)--(-0.70571,3.69847)--(-0.706069,3.69264)--(-0.706426,3.68683)--(-0.706782,3.68104)--(-0.707136,3.67527)--(-0.707488,3.66951)--(-0.707838,3.66377)--(-0.708186,3.65805)--(-0.708533,3.65234)--(-0.708878,3.64666)--
> (-0.709221,3.64099)--(-0.709562,3.63533)--(-0.709902,3.6297)--(-0.71024,3.62408)--(-0.710576,3.61848)--(-0.71091,3.61289)--(-0.711243,3.60732)--(-0.711574,3.60177)--(-0.711903,3.59624)--(-0.71223,3.59072)--(-0.712556,3.58522)--(-0.71288,3.57973)--(-0.713203,3.57426)--(-0.713524,3.56881)--(-0.713843,3.56337)--(-0.714161,3.55795)--(-0.714477,3.55255)--(-0.714791,3.54716)--(-0.715104,3.54179)--(-0.715415,3.53643)--(-0.715724,3.53109)--(-0.716032,3.52576)--(-0.716338,3.52046)--(-0.716643,3.51516)--
> (-0.716946,3.50988)--(-0.717248,3.50462)--(-0.717548,3.49937)--(-0.717846,3.49414)--(-0.718143,3.48892)--(-0.718438,3.48372)--(-0.718732,3.47853)--(-0.719024,3.47336)--(-0.719315,3.4682)--(-0.719604,3.46306)--(-0.719892,3.45793)--(-0.720179,3.45281)--(-0.720463,3.44772)--(-0.720747,3.44263)--(-0.721028,3.43756)--(-0.721309,3.43251)--(-0.721588,3.42747)--(-0.721865,3.42244)--(-0.722141,3.41743)--(-0.722416,3.41243)--(-0.722689,3.40745)--(-0.72296,3.40248)--(-0.723231,3.39752)--(-0.723499,3.39258)--
> (-0.723767,3.38765)--(-0.724033,3.38274)--(-0.724298,3.37784)--(-0.724561,3.37295)--(-0.724823,3.36808)--(-0.725083,3.36322)--(-0.725342,3.35837)--(-0.7256,3.35354)--(-0.725856,3.34872)--(-0.726111,3.34391)--(-0.726365,3.33912)--(-0.726617,3.33434)--(-0.726868,3.32958)--(-0.727118,3.32482)--(-0.727366,3.32008)--(-0.727613,3.31536)--(-0.727859,3.31064)--(-0.728103,3.30594)--(-0.728346,3.30125)--(-0.728588,3.29658)--(-0.728829,3.29192)--(-0.729068,3.28727)--(-0.729306,3.28263)--(-0.729543,3.27801)--
> (-0.729778,3.27339)--(-0.730012,3.26879)--(-0.730245,3.26421)--(-0.730477,3.25963)--(-0.730707,3.25507)--(-0.730936,3.25052)--(-0.731164,3.24598)--(-0.731391,3.24146)--(-0.731616,3.23694)--(-0.731841,3.23244)--(-0.732064,3.22795)--(-0.732285,3.22347)--(-0.732506,3.21901)--(-0.732725,3.21456)--(-0.732944,3.21011)--(-0.733161,3.20568)--(-0.733377,3.20126)--(-0.733591,3.19686)--(-0.733805,3.19246)--(-0.734017,3.18808)--(-0.734228,3.18371)--(-0.734438,3.17935)--(-0.734647,3.175)--(-0.734855,3.17066)--
> (-0.735062,3.16633)--(-0.735267,3.16202)--(-0.735471,3.15771)--(-0.735675,3.15342)--(-0.735877,3.14914)--(-0.736078,3.14487)--(-0.736277,3.14061)--(-0.736476,3.13636)--(-0.736674,3.13213)--(-0.73687,3.1279)--(-0.737066,3.12368)--(-0.73726,3.11948)--(-0.737453,3.11528)--(-0.737645,3.1111)--(-0.737837,3.10693)--(-0.738027,3.10277)--(-0.738216,3.09862)--(-0.738403,3.09448)--(-0.73859,3.09035)--(-0.738776,3.08623)--(-0.738961,3.08212)--(-0.739145,3.07802)--(-0.739327,3.07393)--(-0.739509,3.06985)--
> (-0.739689,3.06579)--(-0.739869,3.06173)--(-0.740047,3.05768)--(-0.740225,3.05365)--(-0.740401,3.04962)--(-0.740577,3.0456)--(-0.740751,3.0416)--(-0.740925,3.0376)--(-0.741097,3.03361)--(-0.741269,3.02964)--(-0.741439,3.02567)--(-0.741609,3.02171)--(-0.741777,3.01777)--(-0.741945,3.01383)--(-0.742111,3.0099)--(-0.742277,3.00598)--(-0.742442,3.00208)--(-0.742605,2.99818)--(-0.742768,2.99429)--(-0.74293,2.99041)--(-0.74309,2.98654)--(-0.74325,2.98268)--(-0.743409,2.97883)--(-0.743567,2.97499)--
> (-0.743724,2.97116)--(-0.74388,2.96733)--(-0.744035,2.96352)--(-0.74419,2.95972)--(-0.744343,2.95592)--(-0.744495,2.95214)--(-0.744647,2.94836)--(-0.744797,2.94459)--(-0.744947,2.94084)--(-0.745096,2.93709)--(-0.745244,2.93335)--(-0.745391,2.92962)--(-0.745537,2.92589)--(-0.745682,2.92218)--(-0.745826,2.91848)--(-0.74597,2.91478)--(-0.746112,2.91109)--(-0.746254,2.90742)--(-0.746395,2.90375)--(-0.746534,2.90009)--(-0.746674,2.89644)--(-0.746812,2.89279)--(-0.746949,2.88916)--(-0.747086,2.88553)--
> (-0.747221,2.88192)--(-0.747356,2.87831)--(-0.74749,2.87471)--(-0.747623,2.87112)--(-0.747755,2.86753)--(-0.747887,2.86396)--(-0.748017,2.86039)--(-0.748147,2.85684)--(-0.748276,2.85329)--(-0.748404,2.84974)--(-0.748531,2.84621)--(-0.748658,2.84269)--(-0.748783,2.83917)--(-0.748908,2.83566)--(-0.749032,2.83216)--(-0.749156,2.82867)--(-0.749278,2.82519)--(-0.7494,2.82171)--(-0.749521,2.81824)--(-0.749641,2.81478)--(-0.74976,2.81133)--(-0.749878,2.80789)--(-0.749996,2.80445)--(-0.750113,2.80102)--
> (-0.750229,2.7976)--(-0.750345,2.79419)--(-0.750459,2.79078)--(-0.750573,2.78739)--(-0.750686,2.784)--(-0.750798,2.78062)--(-0.75091,2.77724)--(-0.751021,2.77388)--(-0.751131,2.77052)--(-0.75124,2.76717)--(-0.751349,2.76382)--(-0.751456,2.76049)--(-0.751563,2.75716)--(-0.75167,2.75384)--(-0.751775,2.75052)--(-0.75188,2.74722)--(-0.751984,2.74392)--(-0.752088,2.74063)--(-0.75219,2.73734)--(-0.752292,2.73407)--(-0.752394,2.7308)--(-0.752494,2.72754)--(-0.752594,2.72428)--(-0.752693,2.72103)--
> (-0.752791,2.71779)--(-0.752889,2.71456)--(-0.752986,2.71134)--(-0.753082,2.70812)--(-0.753178,2.70491)--(-0.753273,2.7017)--(-0.753367,2.6985)--(-0.75346,2.69531)--(-0.753553,2.69213)--(-0.753645,2.68895)--(-0.753737,2.68578)--(-0.753827,2.68262)--(-0.753917,2.67947)--(-0.754007,2.67632)--(-0.754096,2.67318)--(-0.754184,2.67004)--(-0.754271,2.66691)--(-0.754358,2.66379)--(-0.754444,2.66068)--(-0.754529,2.65757)--(-0.754614,2.65447)--(-0.754698,2.65137)--(-0.754781,2.64829)--(-0.754864,2.6452)--
> (-0.754946,2.64213)--(-0.755028,2.63906)--(-0.755108,2.636)--(-0.755189,2.63295)--(-0.755268,2.6299)--(-0.755347,2.62686)--(-0.755425,2.62382)--(-0.755503,2.62079)--(-0.75558,2.61777)--(-0.755656,2.61475)--(-0.755732,2.61175)--(-0.755807,2.60874)--(-0.755882,2.60575)--(-0.755956,2.60276)--(-0.756029,2.59977)--(-0.756101,2.59679)--(-0.756173,2.59382)--(-0.756245,2.59086)--(-0.756316,2.5879)--(-0.756386,2.58495)--(-0.756455,2.582)--(-0.756524,2.57906)--(-0.756593,2.57613)--(-0.756661,2.5732)--
> (-0.756728,2.57028)--(-0.756794,2.56736)--(-0.75686,2.56445)--(-0.756926,2.56155)--(-0.756991,2.55865)--(-0.757055,2.55576)--(-0.757119,2.55287)--(-0.757182,2.54999)--(-0.757244,2.54712)--(-0.757306,2.54425)--(-0.757367,2.54139)--(-0.757428,2.53854)--(-0.757488,2.53569)--(-0.757548,2.53284)--(-0.757607,2.53)--(-0.757666,2.52717)--(-0.757724,2.52435)--(-0.757781,2.52152)--(-0.757838,2.51871)--(-0.757894,2.5159)--(-0.75795,2.5131)--(-0.758005,2.5103)--(-0.758059,2.50751)--(-0.758113,2.50472)--
> (-0.758167,2.50194)--(-0.75822,2.49917)--(-0.758272,2.4964)--(-0.758324,2.49363)--(-0.758375,2.49087)--(-0.758426,2.48812)--(-0.758476,2.48537)--(-0.758526,2.48263)--(-0.758575,2.4799)--(-0.758624,2.47717)--(-0.758672,2.47444)--(-0.75872,2.47172)--(-0.758767,2.46901)--(-0.758813,2.4663)--(-0.758859,2.46359)--(-0.758905,2.4609)--(-0.75895,2.4582)--(-0.758994,2.45552)--(-0.759038,2.45284)--(-0.759081,2.45016)--(-0.759124,2.44749)--(-0.759167,2.44482)--(-0.759209,2.44216)--(-0.75925,2.43951)--
> (-0.759291,2.43686)--(-0.759331,2.43421)--(-0.759371,2.43157)--(-0.759411,2.42894)--(-0.759449,2.42631)--(-0.759488,2.42368)--(-0.759526,2.42106)--(-0.759563,2.41845)--(-0.7596,2.41584)--(-0.759636,2.41324)--(-0.759672,2.41064)--(-0.759708,2.40804)--(-0.759743,2.40546)--(-0.759777,2.40287)--(-0.759811,2.40029)--(-0.759844,2.39772)--(-0.759877,2.39515)--(-0.75991,2.39259)--(-0.759942,2.39003)--(-0.759974,2.38748)--(-0.760005,2.38493)--(-0.760035,2.38238)--(-0.760066,2.37984)--(-0.760095,2.37731)--
> (-0.760124,2.37478)--(-0.760153,2.37226)--(-0.760182,2.36974)--(-0.760209,2.36722)--(-0.760237,2.36471)--(-0.760264,2.36221)--(-0.76029,2.35971)--(-0.760316,2.35721)--(-0.760342,2.35472)--(-0.760367,2.35224)--(-0.760391,2.34975)--(-0.760416,2.34728)--(-0.760439,2.34481)--(-0.760463,2.34234)--(-0.760486,2.33988)--(-0.760508,2.33742)--(-0.76053,2.33496)--(-0.760551,2.33252)--(-0.760573,2.33007)--(-0.760593,2.32763)--(-0.760613,2.3252)--(-0.760633,2.32277)--(-0.760652,2.32034)--(-0.760671,2.31792)--
> (-0.76069,2.3155)--(-0.760708,2.31309)--(-0.760725,2.31068)--(-0.760743,2.30828)--(-0.760759,2.30588)--(-0.760776,2.30349)--(-0.760792,2.3011)--(-0.760807,2.29871)--(-0.760822,2.29633)--(-0.760837,2.29395)--(-0.760851,2.29158)--(-0.760865,2.28921)--(-0.760878,2.28685)--(-0.760891,2.28449)--(-0.760904,2.28213)--(-0.760916,2.27978)--(-0.760928,2.27744)--(-0.760939,2.2751)--(-0.76095,2.27276)--(-0.760961,2.27042)--(-0.760971,2.2681)--(-0.76098,2.26577)--(-0.76099,2.26345)--(-0.760999,2.26113)--
> (-0.761007,2.25882)--(-0.761015,2.25651)--(-0.761023,2.25421)--(-0.76103,2.25191)--(-0.761037,2.24961)--(-0.761044,2.24732)--(-0.76105,2.24504)--(-0.761056,2.24275)--(-0.761061,2.24047)--(-0.761066,2.2382)--(-0.76107,2.23593)--(-0.761075,2.23366)--(-0.761078,2.2314)--(-0.761082,2.22914)--(-0.761085,2.22689)--(-0.761088,2.22464)--(-0.76109,2.22239)--(-0.761092,2.22015)--(-0.761093,2.21791)--(-0.761094,2.21567)--(-0.761095,2.21344)--(-0.761096,2.21122)--(-0.761096,2.20899)--(-0.761095,2.20678)--
> (-0.761094,2.20456)--(-0.761093,2.20235)--(-0.761092,2.20014)--(-0.76109,2.19794)--(-0.761088,2.19574)--(-0.761085,2.19355)--(-0.761082,2.19135)--(-0.761079,2.18917)--(-0.761075,2.18698)--(-0.761071,2.1848)--(-0.761067,2.18263)--(-0.761062,2.18046)--(-0.761057,2.17829)--(-0.761052,2.17612)--(-0.761046,2.17396)--(-0.76104,2.1718)--(-0.761033,2.16965)--(-0.761026,2.1675)--(-0.761019,2.16536)--(-0.761011,2.16321)--(-0.761004,2.16108)--(-0.760995,2.15894)--(-0.760987,2.15681)--(-0.760978,2.15468)--
> (-0.760968,2.15256)--(-0.760959,2.15044)--(-0.760949,2.14832)--(-0.760938,2.14621)--(-0.760928,2.1441)--(-0.760917,2.14199)--(-0.760905,2.13989)--(-0.760894,2.13779)--(-0.760882,2.1357)--(-0.760869,2.13361)--(-0.760856,2.13152)--(-0.760843,2.12944)--(-0.76083,2.12736)--(-0.760816,2.12528)--(-0.760802,2.12321)--(-0.760788,2.12114)--(-0.760773,2.11907)--(-0.760758,2.11701)--(-0.760743,2.11495)--(-0.760727,2.11289)--(-0.760711,2.11084)--(-0.760695,2.10879)--(-0.760678,2.10675)--(-0.760661,2.1047)--
> (-0.760644,2.10267)--(-0.760626,2.10063)--(-0.760608,2.0986)--(-0.76059,2.09657)--(-0.760571,2.09455)--(-0.760553,2.09252)--(-0.760533,2.09051)--(-0.760514,2.08849)--(-0.760494,2.08648)--(-0.760474,2.08447)--(-0.760453,2.08247)--(-0.760433,2.08047)--(-0.760411,2.07847)--(-0.76039,2.07647)--(-0.760368,2.07448)--(-0.760346,2.07249)--(-0.760324,2.07051)--(-0.760301,2.06853)--(-0.760278,2.06655)--(-0.760255,2.06457)--(-0.760232,2.0626)--(-0.760208,2.06063)--(-0.760184,2.05867)--(-0.760159,2.05671)--
> (-0.760135,2.05475)--(-0.760109,2.05279)--(-0.760084,2.05084)--(-0.760059,2.04889)--(-0.760033,2.04694)--(-0.760006,2.045)--(-0.75998,2.04306)--(-0.759953,2.04112)--(-0.759926,2.03919)--(-0.759898,2.03726)--(-0.759871,2.03533)--(-0.759843,2.03341)--(-0.759815,2.03149)--(-0.759786,2.02957)--(-0.759757,2.02766)--(-0.759728,2.02574)--(-0.759699,2.02384)--(-0.759669,2.02193)--(-0.759639,2.02003)--(-0.759609,2.01813)--(-0.759578,2.01623)--(-0.759547,2.01434)--(-0.759516,2.01245)--(-0.759485,2.01056)--
> (-0.759453,2.00868)--(-0.759421,2.0068)--(-0.759389,2.00492)--(-0.759356,2.00304)--(-0.759323,2.00117)--(-0.75929,1.9993)--(-0.759257,1.99744)--(-0.759223,1.99557)--(-0.759189,1.99371)--(-0.759155,1.99186)--(-0.759121,1.99)--(-0.759086,1.98815)--(-0.759051,1.9863)--(-0.759016,1.98446)--(-0.75898,1.98261)--(-0.758944,1.98077)--(-0.758908,1.97894)--(-0.758872,1.9771)--(-0.758835,1.97527)--(-0.758799,1.97344)--(-0.758761,1.97162)--(-0.758724,1.9698)--(-0.758686,1.96798)--(-0.758648,1.96616)--
> (-0.75861,1.96435)--(-0.758572,1.96253)--(-0.758533,1.96073)--(-0.758494,1.95892)--(-0.758455,1.95712)--(-0.758415,1.95532)--(-0.758376,1.95352)--(-0.758336,1.95173)--(-0.758296,1.94994)--(-0.758255,1.94815)--(-0.758214,1.94636)--(-0.758173,1.94458)--(-0.758132,1.9428)--(-0.75809,1.94102)--(-0.758049,1.93924)--(-0.758007,1.93747)--(-0.757964,1.9357)--(-0.757922,1.93394)--(-0.757879,1.93217)--(-0.757836,1.93041)--(-0.757793,1.92865)--(-0.757749,1.9269)--(-0.757705,1.92514)--(-0.757661,1.92339)--
> (-0.757617,1.92164)--(-0.757573,1.9199)--(-0.757528,1.91816)--(-0.757483,1.91642)--(-0.757438,1.91468)--(-0.757392,1.91294)--(-0.757346,1.91121)--(-0.757301,1.90948)--(-0.757254,1.90776)--(-0.757208,1.90603)--(-0.757161,1.90431)--(-0.757114,1.90259)--(-0.757067,1.90087)--(-0.75702,1.89916)--(-0.756972,1.89745)--(-0.756924,1.89574)--(-0.756876,1.89403)--(-0.756828,1.89233)--(-0.756779,1.89063)--(-0.75673,1.88893)--(-0.756681,1.88724)--(-0.756632,1.88554)--(-0.756583,1.88385)--(-0.756533,1.88216)--
> (-0.756483,1.88048)--(-0.756433,1.87879)--(-0.756382,1.87711)--(-0.756332,1.87544)--(-0.756281,1.87376)--(-0.75623,1.87209)--(-0.756178,1.87042)--(-0.756127,1.86875)--(-0.756075,1.86708)--(-0.756023,1.86542)--(-0.755971,1.86376)--(-0.755918,1.8621)--(-0.755866,1.86044)--(-0.755813,1.85879)--(-0.75576,1.85714)--(-0.755706,1.85549)--(-0.755653,1.85384)--(-0.755599,1.8522)--(-0.755545,1.85056)--(-0.755491,1.84892)--(-0.755437,1.84728)--(-0.755382,1.84565)--(-0.755327,1.84401)--(-0.755272,1.84238)--
> (-0.755217,1.84076)--(-0.755161,1.83913)--(-0.755105,1.83751)--(-0.755049,1.83589)--(-0.754993,1.83427)--(-0.754937,1.83266)--(-0.75488,1.83104)--(-0.754823,1.82943)--(-0.754766,1.82782)--(-0.754709,1.82622)--(-0.754652,1.82461)--(-0.754594,1.82301)--(-0.754536,1.82141)--(-0.754478,1.81982)--(-0.75442,1.81822)--(-0.754362,1.81663)--(-0.754303,1.81504)--(-0.754244,1.81345)--(-0.754185,1.81186)--(-0.754126,1.81028)--(-0.754066,1.8087)--(-0.754006,1.80712)--(-0.753946,1.80555)--(-0.753886,1.80397)--
> (-0.753826,1.8024)--(-0.753765,1.80083)--(-0.753705,1.79926)--(-0.753644,1.7977)--(-0.753583,1.79613)--(-0.753521,1.79457)--(-0.75346,1.79301)--(-0.753398,1.79146)--(-0.753336,1.7899)--(-0.753274,1.78835)--(-0.753212,1.7868)--(-0.753149,1.78525)--(-0.753086,1.78371)--(-0.753024,1.78216)--(-0.75296,1.78062)--(-0.752897,1.77908)--(-0.752834,1.77755)--(-0.75277,1.77601)--(-0.752706,1.77448)--(-0.752642,1.77295)--(-0.752578,1.77142)--(-0.752513,1.76989)--(-0.752448,1.76837)--(-0.752384,1.76685)--
> (-0.752319,1.76533)--(-0.752253,1.76381)--(-0.752188,1.76229)--(-0.752122,1.76078)--(-0.752056,1.75927)--(-0.75199,1.75776)--(-0.751924,1.75625)--(-0.751858,1.75475)--(-0.751791,1.75324)--(-0.751725,1.75174)--(-0.751658,1.75024)--(-0.75159,1.74875)--(-0.751523,1.74725)--(-0.751456,1.74576)--(-0.751388,1.74427)--(-0.75132,1.74278)--(-0.751252,1.74129)--(-0.751184,1.73981)--(-0.751115,1.73833)--(-0.751047,1.73685)--(-0.750978,1.73537)--(-0.750909,1.73389)--(-0.75084,1.73242)--(-0.750771,1.73094)--
> (-0.750701,1.72947)--(-0.750631,1.72801)--(-0.750562,1.72654)--(-0.750492,1.72507)--(-0.750421,1.72361)--(-0.750351,1.72215)--(-0.75028,1.72069)--(-0.75021,1.71924)--(-0.750139,1.71778)--(-0.750068,1.71633)--(-0.749996,1.71488)--(-0.749925,1.71343)--(-0.749853,1.71198)--(-0.749781,1.71054)--(-0.749709,1.70909)--(-0.749637,1.70765)--(-0.749565,1.70621)--(-0.749492,1.70478)--(-0.74942,1.70334)--(-0.749347,1.70191)--(-0.749274,1.70048)--(-0.749201,1.69905)--(-0.749127,1.69762)--(-0.749054,1.69619)--
> (-0.74898,1.69477)--(-0.748906,1.69335)--(-0.748832,1.69193)--(-0.748758,1.69051)--(-0.748683,1.68909)--(-0.748609,1.68768)--(-0.748534,1.68627)--(-0.748459,1.68486)--(-0.748384,1.68345)--(-0.748309,1.68204)--(-0.748234,1.68064)--(-0.748158,1.67923)--(-0.748082,1.67783)--(-0.748006,1.67643)--(-0.74793,1.67503)--(-0.747854,1.67364)--(-0.747778,1.67224)--(-0.747701,1.67085)--(-0.747625,1.66946)--(-0.747548,1.66807)--(-0.747471,1.66669)--(-0.747394,1.6653)--(-0.747316,1.66392)--(-0.747239,1.66254)--
> (-0.747161,1.66116)--(-0.747083,1.65978)--(-0.747005,1.6584)--(-0.746927,1.65703)--(-0.746849,1.65566)--(-0.74677,1.65429)--(-0.746692,1.65292)--(-0.746613,1.65155)--(-0.746534,1.65018)--(-0.746455,1.64882)--(-0.746375,1.64746)--(-0.746296,1.6461)--(-0.746216,1.64474)--(-0.746137,1.64338)--(-0.746057,1.64203)--(-0.745977,1.64068)--(-0.745897,1.63932)--(-0.745816,1.63797)--(-0.745736,1.63663)--(-0.745655,1.63528)--(-0.745574,1.63394)--(-0.745493,1.63259)--(-0.745412,1.63125)--(-0.745331,1.62991)--
> (-0.745249,1.62858)--(-0.745168,1.62724)--(-0.745086,1.62591)--(-0.745004,1.62457)--(-0.744922,1.62324)--(-0.74484,1.62191)--(-0.744758,1.62059)--(-0.744675,1.61926)--(-0.744593,1.61794)--(-0.74451,1.61661)--(-0.744427,1.61529)--(-0.744344,1.61397)--(-0.74426,1.61266)--(-0.744177,1.61134)--(-0.744094,1.61003)--(-0.74401,1.60871)--(-0.743926,1.6074)--(-0.743842,1.60609)--(-0.743758,1.60479)--(-0.743674,1.60348)--(-0.743589,1.60218)--(-0.743505,1.60087)--(-0.74342,1.59957)--(-0.743335,1.59827)--
> (-0.74325,1.59697)--(-0.743165,1.59568)--(-0.74308,1.59438)--(-0.742994,1.59309)--(-0.742909,1.5918)--(-0.742823,1.59051)--(-0.742737,1.58922)--(-0.742651,1.58794)--(-0.742565,1.58665)--(-0.742479,1.58537)--(-0.742392,1.58409)--(-0.742306,1.5828)--(-0.742219,1.58153)--(-0.742132,1.58025)--(-0.742045,1.57897)--(-0.741958,1.5777)--(-0.741871,1.57643)--(-0.741784,1.57516)--(-0.741696,1.57389)--(-0.741608,1.57262)--(-0.741521,1.57135)--(-0.741433,1.57009)--(-0.741345,1.56883)--(-0.741256,1.56756)--
> (-0.741168,1.5663)--(-0.74108,1.56505)--(-0.740991,1.56379)--(-0.740902,1.56253)--(-0.740813,1.56128)--(-0.740724,1.56003)--(-0.740635,1.55878)--(-0.740546,1.55753)--(-0.740456,1.55628)--(-0.740367,1.55503)--(-0.740277,1.55379)--(-0.740187,1.55255)--(-0.740097,1.5513)--(-0.740007,1.55006)--(-0.739917,1.54882)--(-0.739826,1.54759)--(-0.739736,1.54635)--(-0.739645,1.54512)--(-0.739555,1.54388)--(-0.739464,1.54265)--(-0.739373,1.54142)--(-0.739281,1.5402)--(-0.73919,1.53897)--(-0.739099,1.53774)--
> (-0.739007,1.53652)--(-0.738915,1.5353)--(-0.738824,1.53408)--(-0.738732,1.53286)--(-0.73864,1.53164)--(-0.738547,1.53042)--(-0.738455,1.52921)--(-0.738363,1.52799)--(-0.73827,1.52678)--(-0.738177,1.52557)--(-0.738085,1.52436)--(-0.737992,1.52315)--(-0.737898,1.52194)--(-0.737805,1.52074)--(-0.737712,1.51954)--(-0.737618,1.51833)--(-0.737525,1.51713)--(-0.737431,1.51593)--(-0.737337,1.51473)--(-0.737243,1.51354)--(-0.737149,1.51234)--(-0.737055,1.51115)--(-0.736961,1.50996)--(-0.736866,1.50876)--
> (-0.736771,1.50757)--(-0.736677,1.50639)--(-0.736582,1.5052)--(-0.736487,1.50401)--(-0.736392,1.50283)--(-0.736297,1.50165)--(-0.736201,1.50047)--(-0.736106,1.49929)--(-0.73601,1.49811)--(-0.735915,1.49693)--(-0.735819,1.49575)--(-0.735723,1.49458)--(-0.735627,1.49341)--(-0.735531,1.49223)--(-0.735434,1.49106)--(-0.735338,1.48989)--(-0.735241,1.48873)--(-0.735145,1.48756)--(-0.735048,1.48639)--(-0.734951,1.48523)--(-0.734854,1.48407)--(-0.734757,1.48291)--(-0.734659,1.48175)--(-0.734562,1.48059)--
> (-0.734465,1.47943)--(-0.734367,1.47828)--(-0.734269,1.47712)--(-0.734171,1.47597)--(-0.734073,1.47482)--(-0.733975,1.47367)--(-0.733877,1.47252)--(-0.733779,1.47137)--(-0.73368,1.47022)--(-0.733582,1.46908)--(-0.733483,1.46793)--(-0.733384,1.46679)--(-0.733286,1.46565)--(-0.733187,1.46451)--(-0.733087,1.46337)--(-0.732988,1.46223)--(-0.732889,1.4611)--(-0.732789,1.45996)--(-0.73269,1.45883)--(-0.73259,1.45769)--(-0.73249,1.45656)--(-0.73239,1.45543)--(-0.73229,1.4543)--(-0.73219,1.45318)--
> (-0.73209,1.45205)--(-0.73199,1.45093)--(-0.731889,1.4498)--(-0.731789,1.44868)--(-0.731688,1.44756)--(-0.731587,1.44644)--(-0.731486,1.44532)--(-0.731385,1.4442)--(-0.731284,1.44309)--(-0.731183,1.44197)--(-0.731081,1.44086)--(-0.73098,1.43975)--(-0.730878,1.43864)--(-0.730777,1.43753)--(-0.730675,1.43642)--(-0.730573,1.43531)--(-0.730471,1.4342)--(-0.730369,1.4331)--(-0.730267,1.43199)--(-0.730164,1.43089)--(-0.730062,1.42979)--(-0.729959,1.42869)--(-0.729856,1.42759)--(-0.729754,1.42649)--
> (-0.729651,1.4254)--(-0.729548,1.4243)--(-0.729445,1.42321)--(-0.729342,1.42212)--(-0.729238,1.42102)--(-0.729135,1.41993)--(-0.729031,1.41884)--(-0.728928,1.41776)--(-0.728824,1.41667)--(-0.72872,1.41558)--(-0.728616,1.4145)--(-0.728512,1.41342)--(-0.728408,1.41233)--(-0.728304,1.41125)--(-0.728199,1.41017)--(-0.728095,1.40909)--(-0.72799,1.40802)--(-0.727886,1.40694)--(-0.727781,1.40586)--(-0.727676,1.40479)--(-0.727571,1.40372)--(-0.727466,1.40265)--(-0.727361,1.40158)--(-0.727255,1.40051)--
> (-0.72715,1.39944)--(-0.727044,1.39837)--(-0.726939,1.39731)--(-0.726833,1.39624)--(-0.726727,1.39518)--(-0.726621,1.39411)--(-0.726515,1.39305)--(-0.726409,1.39199)--(-0.726303,1.39093)--(-0.726197,1.38988)--(-0.72609,1.38882)--(-0.725984,1.38776)--(-0.725877,1.38671)--(-0.72577,1.38566)--(-0.725664,1.3846)--(-0.725557,1.38355)--(-0.72545,1.3825)--(-0.725343,1.38145)--(-0.725235,1.38041)--(-0.725128,1.37936)--(-0.725021,1.37831)--(-0.724913,1.37727)--(-0.724806,1.37623)--(-0.724698,1.37518)--
> (-0.72459,1.37414)--(-0.724482,1.3731)--(-0.724374,1.37206)--(-0.724266,1.37102)--(-0.724158,1.36999)--(-0.72405,1.36895)--(-0.723941,1.36792)--(-0.723833,1.36688)--(-0.723724,1.36585)--(-0.723615,1.36482)--(-0.723507,1.36379)--(-0.723398,1.36276)--(-0.723289,1.36173)--(-0.72318,1.36071)--(-0.723071,1.35968)--(-0.722961,1.35865)--(-0.722852,1.35763)--(-0.722743,1.35661)--(-0.722633,1.35559)--(-0.722523,1.35457)--(-0.722414,1.35355)--(-0.722304,1.35253)--(-0.722194,1.35151)--(-0.722084,1.35049)--
> (-0.721974,1.34948)--(-0.721864,1.34846)--(-0.721753,1.34745)--(-0.721643,1.34644)--(-0.721532,1.34543)--(-0.721422,1.34442)--(-0.721311,1.34341)--(-0.7212,1.3424)--(-0.72109,1.34139)--(-0.720979,1.34039)--(-0.720868,1.33938)--(-0.720756,1.33838)--(-0.720645,1.33737)--(-0.720534,1.33637)--(-0.720422,1.33537)--(-0.720311,1.33437)--(-0.720199,1.33337)--(-0.720088,1.33238)--(-0.719976,1.33138)--(-0.719864,1.33038)--(-0.719752,1.32939)--(-0.71964,1.32839)--(-0.719528,1.3274)--(-0.719416,1.32641)--
> (-0.719303,1.32542)--(-0.719191,1.32443)--(-0.719079,1.32344)--(-0.718966,1.32245)--(-0.718853,1.32147)--(-0.71874,1.32048)--(-0.718628,1.3195)--(-0.718515,1.31851)--(-0.718402,1.31753)--(-0.718289,1.31655)--(-0.718175,1.31557)--(-0.718062,1.31459)--(-0.717949,1.31361)--(-0.717835,1.31263)--(-0.717722,1.31165)--(-0.717608,1.31068)--(-0.717494,1.3097)--(-0.71738,1.30873)--(-0.717266,1.30776)--(-0.717152,1.30678)--(-0.717038,1.30581)--(-0.716924,1.30484)--(-0.71681,1.30387)--(-0.716696,1.30291)--
> (-0.716581,1.30194)--(-0.716467,1.30097)--(-0.716352,1.30001)--(-0.716237,1.29904)--(-0.716123,1.29808)--(-0.716008,1.29712)--(-0.715893,1.29616)--(-0.715778,1.2952)--(-0.715663,1.29424)--(-0.715547,1.29328)--(-0.715432,1.29232)--(-0.715317,1.29136)--(-0.715201,1.29041)--(-0.715086,1.28945)--(-0.71497,1.2885)--(-0.714854,1.28755)--(-0.714738,1.28659)--(-0.714623,1.28564)--(-0.714507,1.28469)--(-0.714391,1.28374)--(-0.714274,1.2828)--(-0.714158,1.28185)--(-0.714042,1.2809)--(-0.713925,1.27996)--
> (-0.713809,1.27901)--(-0.713692,1.27807)--(-0.713576,1.27713)--(-0.713459,1.27618)--(-0.713342,1.27524)--(-0.713225,1.2743)--(-0.713108,1.27337)--(-0.712991,1.27243)--(-0.712874,1.27149)--(-0.712757,1.27055)--(-0.71264,1.26962)--(-0.712522,1.26868)--(-0.712405,1.26775)--(-0.712287,1.26682)--(-0.71217,1.26589)--(-0.712052,1.26495)--(-0.711934,1.26402)--(-0.711816,1.2631)--(-0.711698,1.26217)--(-0.71158,1.26124)--(-0.711462,1.26031)--(-0.711344,1.25939)--(-0.711226,1.25846)--(-0.711107,1.25754)--
> (-0.710989,1.25662)--(-0.71087,1.25569)--(-0.710752,1.25477)--(-0.710633,1.25385)--(-0.710514,1.25293)--(-0.710396,1.25202)--(-0.710277,1.2511)--(-0.710158,1.25018)--(-0.710039,1.24927)--(-0.709919,1.24835)--(-0.7098,1.24744)--(-0.709681,1.24652)--(-0.709561,1.24561)--(-0.709442,1.2447)--(-0.709322,1.24379)--(-0.709203,1.24288)--(-0.709083,1.24197)--(-0.708963,1.24106)--(-0.708843,1.24015)--(-0.708723,1.23925)--(-0.708603,1.23834)--(-0.708483,1.23744)--(-0.708363,1.23653)--(-0.708243,1.23563)--
> (-0.708123,1.23473)--(-0.708002,1.23383)--(-0.707882,1.23293)--(-0.707761,1.23203)--(-0.70764,1.23113)--(-0.70752,1.23023)--(-0.707399,1.22933)--(-0.707278,1.22844)--(-0.707157,1.22754)--(-0.707036,1.22665)--(-0.706915,1.22575)--(-0.706794,1.22486)--(-0.706673,1.22397)--(-0.706551,1.22308)--(-0.70643,1.22219)--(-0.706308,1.2213)--(-0.706187,1.22041)--(-0.706065,1.21952)--(-0.705943,1.21863)--(-0.705822,1.21775)--(-0.7057,1.21686)--(-0.705578,1.21598)--(-0.705456,1.21509)--(-0.705334,1.21421)--
> (-0.705212,1.21333)--(-0.705089,1.21245)--(-0.704967,1.21157)--(-0.704845,1.21069)--(-0.704722,1.20981)--(-0.7046,1.20893)--(-0.704477,1.20805)--(-0.704354,1.20718)--(-0.704232,1.2063)--(-0.704109,1.20543)--(-0.703986,1.20455)--(-0.703863,1.20368)--(-0.70374,1.20281)--(-0.703617,1.20193)--(-0.703494,1.20106)--(-0.70337,1.20019)--(-0.703247,1.19932)--(-0.703124,1.19845)--(-0.703,1.19759)--(-0.702877,1.19672)--(-0.702753,1.19585)--(-0.702629,1.19499)--(-0.702505,1.19412)--(-0.702382,1.19326)--
> (-0.702258,1.1924)--(-0.702134,1.19153)--(-0.70201,1.19067)--(-0.701885,1.18981)--(-0.701761,1.18895)--(-0.701637,1.18809)--(-0.701513,1.18723)--(-0.701388,1.18638)--(-0.701264,1.18552)--(-0.701139,1.18466)--(-0.701014,1.18381)--(-0.70089,1.18295)--(-0.700765,1.1821)--(-0.70064,1.18125)--(-0.700515,1.18039)--(-0.70039,1.17954)--(-0.700265,1.17869)--(-0.70014,1.17784)--(-0.700015,1.17699)--(-0.69989,1.17614)--(-0.699764,1.17529)--(-0.699639,1.17445)--(-0.699513,1.1736)--(-0.699388,1.17276)--
> (-0.699262,1.17191)--(-0.699136,1.17107)--(-0.699011,1.17022)--(-0.698885,1.16938)--(-0.698759,1.16854)--(-0.698633,1.1677)--(-0.698507,1.16686)--(-0.698381,1.16602)--(-0.698254,1.16518)--(-0.698128,1.16434)--(-0.698002,1.1635)--(-0.697876,1.16267)--(-0.697749,1.16183)--(-0.697623,1.161)--(-0.697496,1.16016)--(-0.697369,1.15933)--(-0.697242,1.15849)--(-0.697116,1.15766)--(-0.696989,1.15683)--(-0.696862,1.156)--(-0.696735,1.15517)--(-0.696608,1.15434)--(-0.696481,1.15351)--(-0.696353,1.15268)--
> (-0.696226,1.15186)--(-0.696099,1.15103)--(-0.695971,1.1502)--(-0.695844,1.14938)--(-0.695716,1.14856)--(-0.695589,1.14773)--(-0.695461,1.14691)--(-0.695333,1.14609)--(-0.695205,1.14526)--(-0.695077,1.14444)--(-0.694949,1.14362)--(-0.694821,1.1428)--(-0.694693,1.14199)--(-0.694565,1.14117)--(-0.694437,1.14035)--(-0.694309,1.13953)--(-0.69418,1.13872)--(-0.694052,1.1379)--(-0.693923,1.13709)--(-0.693795,1.13627)--(-0.693666,1.13546)--(-0.693537,1.13465)--(-0.693409,1.13384)--(-0.69328,1.13303)--
> (-0.693151,1.13222)--(-0.693022,1.13141)--(-0.692893,1.1306)--(-0.692764,1.12979)--(-0.692635,1.12898)--(-0.692506,1.12818)--(-0.692376,1.12737)--(-0.692247,1.12656)--(-0.692117,1.12576)--(-0.691988,1.12495)--(-0.691858,1.12415)--(-0.691729,1.12335)--(-0.691599,1.12255)--(-0.691469,1.12174)--(-0.69134,1.12094)--(-0.69121,1.12014)--(-0.69108,1.11934)--(-0.69095,1.11855)--(-0.69082,1.11775)--(-0.69069,1.11695)--(-0.690559,1.11615)--(-0.690429,1.11536)--(-0.690299,1.11456)--(-0.690168,1.11377)--
> (-0.690038,1.11297)--(-0.689907,1.11218)--(-0.689777,1.11139)--(-0.689646,1.1106)--(-0.689515,1.1098)--(-0.689385,1.10901)--(-0.689254,1.10822)--(-0.689123,1.10743)--(-0.688992,1.10664)--(-0.688861,1.10586)--(-0.68873,1.10507)--(-0.688599,1.10428)--(-0.688467,1.1035)--(-0.688336,1.10271)--(-0.688205,1.10193)--(-0.688073,1.10114)--(-0.687942,1.10036)--(-0.68781,1.09958)--(-0.687679,1.09879)--(-0.687547,1.09801)--(-0.687415,1.09723)--(-0.687284,1.09645)--(-0.687152,1.09567)--(-0.68702,1.09489)--
> (-0.686888,1.09411)--(-0.686756,1.09334)--(-0.686624,1.09256)--(-0.686492,1.09178)--(-0.686359,1.09101)--(-0.686227,1.09023)--(-0.686095,1.08946)--(-0.685962,1.08868)--(-0.68583,1.08791)--(-0.685697,1.08714)--(-0.685565,1.08636)--(-0.685432,1.08559)--(-0.685299,1.08482)--(-0.685167,1.08405)--(-0.685034,1.08328)--(-0.684901,1.08251)--(-0.684768,1.08174)--(-0.684635,1.08098)--(-0.684502,1.08021)--(-0.684369,1.07944)--(-0.684235,1.07868)--(-0.684102,1.07791)--(-0.683969,1.07715)--
> (-0.683835,1.07638)--(-0.683702,1.07562)--(-0.683568,1.07486)--(-0.683435,1.07409)--(-0.683301,1.07333)--(-0.683167,1.07257)--(-0.683034,1.07181)--(-0.6829,1.07105)--(-0.682766,1.07029)--(-0.682632,1.06953)--(-0.682498,1.06878)--(-0.682364,1.06802)--(-0.68223,1.06726)--(-0.682096,1.06651)--(-0.681961,1.06575)--(-0.681827,1.065)--(-0.681693,1.06424)--(-0.681558,1.06349)--(-0.681424,1.06274)--(-0.681289,1.06198)--(-0.681155,1.06123)--(-0.68102,1.06048)--(-0.680885,1.05973)--(-0.68075,1.05898)--
> (-0.680616,1.05823)--(-0.680481,1.05748)--(-0.680346,1.05673)--(-0.680211,1.05598)--(-0.680076,1.05524)--(-0.679941,1.05449)--(-0.679805,1.05374)--(-0.67967,1.053)--(-0.679535,1.05225)--(-0.679399,1.05151)--(-0.679264,1.05077)--(-0.679128,1.05002)--(-0.678993,1.04928)--(-0.678857,1.04854)--(-0.678722,1.0478)--(-0.678586,1.04706)--(-0.67845,1.04632)--(-0.678314,1.04558)--(-0.678178,1.04484)--(-0.678042,1.0441)--(-0.677906,1.04336)--(-0.67777,1.04262)--(-0.677634,1.04189)--(-0.677498,1.04115)--
> (-0.677362,1.04042)--(-0.677225,1.03968)--(-0.677089,1.03895)--(-0.676953,1.03821)--(-0.676816,1.03748)--(-0.67668,1.03675)--(-0.676543,1.03601)--(-0.676406,1.03528)--(-0.67627,1.03455)--(-0.676133,1.03382)--(-0.675996,1.03309)--(-0.675859,1.03236)--(-0.675722,1.03163)--(-0.675585,1.03091)--(-0.675448,1.03018)--(-0.675311,1.02945)--(-0.675174,1.02872)--(-0.675036,1.028)--(-0.674899,1.02727)--(-0.674762,1.02655)--(-0.674624,1.02582)--(-0.674487,1.0251)--(-0.674349,1.02438)--(-0.674212,1.02365)--
> (-0.674074,1.02293)--(-0.673936,1.02221)--(-0.673799,1.02149)--(-0.673661,1.02077)--(-0.673523,1.02005)--(-0.673385,1.01933)--(-0.673247,1.01861)--(-0.673109,1.01789)--(-0.672971,1.01717)--(-0.672833,1.01646)--(-0.672695,1.01574)--(-0.672556,1.01502)--(-0.672418,1.01431)--(-0.67228,1.01359)--(-0.672141,1.01288)--(-0.672003,1.01217)--(-0.671864,1.01145)--(-0.671726,1.01074)--(-0.671587,1.01003)--(-0.671448,1.00931)--(-0.671309,1.0086)--(-0.671171,1.00789)--(-0.671032,1.00718)--(-0.670893,1.00647)--
> (-0.670754,1.00576)--(-0.670615,1.00505)--(-0.670476,1.00435)--(-0.670337,1.00364)--(-0.670197,1.00293)--(-0.670058,1.00223)--(-0.669919,1.00152)--(-0.669779,1.00081)--(-0.66964,1.00011)--(-0.6695,0.999405)--(-0.669361,0.998701)--(-0.669221,0.997997)--(-0.669082,0.997295)--(-0.668942,0.996592)--(-0.668802,0.99589)--(-0.668662,0.995189)--(-0.668522,0.994488)--(-0.668382,0.993788)--(-0.668242,0.993088)--(-0.668102,0.992389)--(-0.667962,0.99169)--(-0.667822,0.990992)--(-0.667682,0.990294)--
> (-0.667542,0.989597)--(-0.667401,0.9889)--(-0.667261,0.988204)--(-0.667121,0.987508)--(-0.66698,0.986813)--(-0.666839,0.986119)--(-0.666699,0.985424)--(-0.666558,0.984731)--(-0.666418,0.984038)--(-0.666277,0.983345)--(-0.666136,0.982653)--(-0.665995,0.981961)--(-0.665854,0.98127)--(-0.665713,0.98058)--(-0.665572,0.979889)--(-0.665431,0.9792)--(-0.66529,0.978511)--(-0.665149,0.977822)--(-0.665007,0.977134)--(-0.664866,0.976446)--(-0.664725,0.975759)--(-0.664583,0.975073)--(-0.664442,0.974386)--
> (-0.6643,0.973701)--(-0.664159,0.973016)--(-0.664017,0.972331)--(-0.663876,0.971647)--(-0.663734,0.970963)--(-0.663592,0.97028)--(-0.66345,0.969597)--(-0.663308,0.968915)--(-0.663166,0.968233)--(-0.663024,0.967552)--(-0.662882,0.966871)--(-0.66274,0.966191)--(-0.662598,0.965511)--(-0.662456,0.964832)--(-0.662313,0.964153)--(-0.662171,0.963475)--(-0.662029,0.962797)--(-0.661886,0.96212)--(-0.661744,0.961443)--(-0.661601,0.960766)--(-0.661459,0.96009)--(-0.661316,0.959415)--(-0.661173,0.95874)--
> (-0.661031,0.958065)--(-0.660888,0.957391)--(-0.660745,0.956718)--(-0.660602,0.956045)--(-0.660459,0.955372)--(-0.660316,0.9547)--(-0.660173,0.954029)--(-0.66003,0.953357)--(-0.659887,0.952687)--(-0.659743,0.952016)--(-0.6596,0.951347)--(-0.659457,0.950677)--(-0.659313,0.950009)--(-0.65917,0.94934)--(-0.659026,0.948672)--(-0.658883,0.948005)--(-0.658739,0.947338)--(-0.658596,0.946672)--(-0.658452,0.946006)--(-0.658308,0.94534)--(-0.658164,0.944675)--(-0.658021,0.94401)--(-0.657877,0.943346)--
> (-0.657733,0.942682)--(-0.657589,0.942019)--(-0.657445,0.941356)--(-0.6573,0.940694)--(-0.657156,0.940032)--(-0.657012,0.939371)--(-0.656868,0.93871)--(-0.656723,0.938049)--(-0.656579,0.937389)--(-0.656435,0.93673)--(-0.65629,0.936071)--(-0.656145,0.935412)--(-0.656001,0.934754)--(-0.655856,0.934096)--(-0.655712,0.933439)--(-0.655567,0.932782)--(-0.655422,0.932125)--(-0.655277,0.931469)--(-0.655132,0.930814)--(-0.654987,0.930159)--(-0.654842,0.929504)--(-0.654697,0.92885)--(-0.654552,0.928196)--
> (-0.654407,0.927543)--(-0.654262,0.92689)--(-0.654116,0.926238)--(-0.653971,0.925586)--(-0.653826,0.924934)--(-0.65368,0.924283)--(-0.653535,0.923633)--(-0.653389,0.922982)--(-0.653244,0.922333)--(-0.653098,0.921683)--(-0.652952,0.921035)--(-0.652807,0.920386)--(-0.652661,0.919738)--(-0.652515,0.919091)--(-0.652369,0.918444)--(-0.652223,0.917797)--(-0.652077,0.917151)--(-0.651931,0.916505)--(-0.651785,0.915859)--(-0.651639,0.915215)--(-0.651493,0.91457)--(-0.651346,0.913926)--(-0.6512,0.913282)--
> (-0.651054,0.912639)--(-0.650907,0.911996)--(-0.650761,0.911354)--(-0.650614,0.910712)--(-0.650468,0.910071)--(-0.650321,0.90943)--(-0.650175,0.908789)--(-0.650028,0.908149)--(-0.649881,0.907509)--(-0.649734,0.90687)--(-0.649587,0.906231)--(-0.649441,0.905592)--(-0.649294,0.904954)--(-0.649147,0.904316)--(-0.648999,0.903679)--(-0.648852,0.903042)--(-0.648705,0.902406)--(-0.648558,0.90177)--(-0.648411,0.901134)--(-0.648263,0.900499)--(-0.648116,0.899865)--(-0.647969,0.89923)--(-0.647821,0.898596)--
> (-0.647674,0.897963)--(-0.647526,0.89733)--(-0.647378,0.896697)--(-0.647231,0.896065)--(-0.647083,0.895433)--(-0.646935,0.894802)--(-0.646787,0.894171)--(-0.64664,0.89354)--(-0.646492,0.89291)--(-0.646344,0.89228)--(-0.646196,0.891651)--(-0.646048,0.891022)--(-0.645899,0.890394)--(-0.645751,0.889766)--(-0.645603,0.889138)--(-0.645455,0.888511)--(-0.645306,0.887884)--(-0.645158,0.887257)--(-0.64501,0.886631)--(-0.644861,0.886006)--(-0.644713,0.88538)--(-0.644564,0.884755)--(-0.644415,0.884131)--
> (-0.644267,0.883507)--(-0.644118,0.882883)--(-0.643969,0.88226)--(-0.64382,0.881637)--(-0.643671,0.881015)--(-0.643522,0.880393)--(-0.643373,0.879771)--(-0.643224,0.87915)--(-0.643075,0.878529)--(-0.642926,0.877909)--(-0.642777,0.877289)--(-0.642628,0.876669)--(-0.642479,0.87605)--(-0.642329,0.875431)--(-0.64218,0.874812)--(-0.64203,0.874194)--(-0.641881,0.873577)--(-0.641731,0.872959)--(-0.641582,0.872342)--(-0.641432,0.871726)--(-0.641282,0.87111)--(-0.641133,0.870494)--(-0.640983,0.869879)--
> (-0.640833,0.869264)--(-0.640683,0.868649)--(-0.640533,0.868035)--(-0.640383,0.867421)--(-0.640233,0.866808)--(-0.640083,0.866195)--(-0.639933,0.865583)--(-0.639783,0.86497)--(-0.639633,0.864358)--(-0.639482,0.863747)--(-0.639332,0.863136)--(-0.639182,0.862525)--(-0.639031,0.861915)--(-0.638881,0.861305)--(-0.63873,0.860696)--(-0.63858,0.860086)--(-0.638429,0.859478)--(-0.638278,0.858869)--(-0.638128,0.858261)--(-0.637977,0.857654)--(-0.637826,0.857046)--(-0.637675,0.85644)--(-0.637524,0.855833)--
> (-0.637373,0.855227)--(-0.637222,0.854621)--(-0.637071,0.854016)--(-0.63692,0.853411)--(-0.636769,0.852806)--(-0.636618,0.852202)--(-0.636466,0.851598)--(-0.636315,0.850995)--(-0.636164,0.850392)--(-0.636012,0.849789)--(-0.635861,0.849187)--(-0.635709,0.848585)--(-0.635558,0.847983)--(-0.635406,0.847382)--(-0.635254,0.846781)--(-0.635103,0.84618)--(-0.634951,0.84558)--(-0.634799,0.84498)--(-0.634647,0.844381)--(-0.634495,0.843782)--(-0.634343,0.843183)--(-0.634191,0.842585)--(-0.634039,0.841987)--
> (-0.633887,0.841389)--(-0.633735,0.840792)--(-0.633583,0.840195)--(-0.633431,0.839599)--(-0.633278,0.839003)--(-0.633126,0.838407)--(-0.632974,0.837812)--(-0.632821,0.837217)--(-0.632669,0.836622)--(-0.632516,0.836028)--(-0.632363,0.835434)--(-0.632211,0.83484)--(-0.632058,0.834247)--(-0.631905,0.833654)--(-0.631753,0.833061)--(-0.6316,0.832469)--(-0.631447,0.831877)--(-0.631294,0.831286)--(-0.631141,0.830695)--(-0.630988,0.830104)--(-0.630835,0.829514)--(-0.630682,0.828924)--
> (-0.630529,0.828334)--(-0.630375,0.827745)--(-0.630222,0.827156)--(-0.630069,0.826567)--(-0.629915,0.825979)--(-0.629762,0.825391)--(-0.629608,0.824803)--(-0.629455,0.824216)--(-0.629301,0.823629)--(-0.629148,0.823043)--(-0.628994,0.822457)--(-0.62884,0.821871)--(-0.628687,0.821285)--(-0.628533,0.8207)--(-0.628379,0.820116)--(-0.628225,0.819531)--(-0.628071,0.818947)--(-0.627917,0.818363)--(-0.627763,0.81778)--(-0.627609,0.817197)--(-0.627455,0.816614)--(-0.6273,0.816032)--(-0.627146,0.81545)--
> (-0.626992,0.814868)--(-0.626837,0.814287)--(-0.626683,0.813706)--(-0.626529,0.813125)--(-0.626374,0.812545)--(-0.62622,0.811965)--(-0.626065,0.811385)--(-0.62591,0.810806)--(-0.625756,0.810227)--(-0.625601,0.809649)--(-0.625446,0.80907)--(-0.625291,0.808492)--(-0.625136,0.807915)--(-0.624981,0.807338)--(-0.624826,0.806761)--(-0.624671,0.806184)--(-0.624516,0.805608)--(-0.624361,0.805032)--(-0.624206,0.804456)--(-0.624051,0.803881)--(-0.623895,0.803306)--(-0.62374,0.802732)--(-0.623585,0.802157)--
> (-0.623429,0.801584)--(-0.623274,0.80101)--(-0.623118,0.800437)--(-0.622963,0.799864)--(-0.622807,0.799291)--(-0.622652,0.798719)--(-0.622496,0.798147)--(-0.62234,0.797575)--(-0.622184,0.797004)--(-0.622028,0.796433)--(-0.621872,0.795863)--(-0.621717,0.795292)--(-0.621561,0.794722)--(-0.621404,0.794153)--(-0.621248,0.793583)--(-0.621092,0.793014)--(-0.620936,0.792446)--(-0.62078,0.791877)--(-0.620623,0.791309)--(-0.620467,0.790742)--(-0.620311,0.790174)--(-0.620154,0.789607)--
> (-0.619998,0.789041)--(-0.619841,0.788474)--(-0.619685,0.787908)--(-0.619528,0.787342)--(-0.619371,0.786777)--(-0.619215,0.786212)--(-0.619058,0.785647)--(-0.618901,0.785083)--(-0.618744,0.784518)--(-0.618587,0.783955)--(-0.61843,0.783391)--(-0.618273,0.782828)--(-0.618116,0.782265)--(-0.617959,0.781702)--(-0.617802,0.78114)--(-0.617645,0.780578)--(-0.617487,0.780017)--(-0.61733,0.779455)--(-0.617173,0.778894)--(-0.617015,0.778334)--(-0.616858,0.777773)--(-0.6167,0.777213)--(-0.616543,0.776653)--
> (-0.616385,0.776094)--(-0.616228,0.775535)--(-0.61607,0.774976)--(-0.615912,0.774418)--(-0.615754,0.773859)--(-0.615596,0.773301)--(-0.615439,0.772744)--(-0.615281,0.772187)--(-0.615123,0.77163)--(-0.614965,0.771073)--(-0.614806,0.770517)--(-0.614648,0.769961)--(-0.61449,0.769405)--(-0.614332,0.768849)--(-0.614174,0.768294)--(-0.614015,0.76774)--(-0.613857,0.767185)--(-0.613699,0.766631)--(-0.61354,0.766077)--(-0.613382,0.765523)--(-0.613223,0.76497)--(-0.613064,0.764417)--(-0.612906,0.763864)--
> (-0.612747,0.763312)--(-0.612588,0.76276)--(-0.612429,0.762208)--(-0.612271,0.761657)--(-0.612112,0.761105)--(-0.611953,0.760555)--(-0.611794,0.760004)--(-0.611635,0.759454)--(-0.611475,0.758904)--(-0.611316,0.758354)--(-0.611157,0.757805)--(-0.610998,0.757256)--(-0.610839,0.756707)--(-0.610679,0.756158)--(-0.61052,0.75561)--(-0.61036,0.755062)--(-0.610201,0.754515)--(-0.610041,0.753967)--(-0.609882,0.75342)--(-0.609722,0.752874)--(-0.609562,0.752327)--(-0.609403,0.751781)--(-0.609243,0.751235)--
> (-0.609083,0.75069)--(-0.608923,0.750144)--(-0.608763,0.749599)--(-0.608603,0.749055)--(-0.608443,0.74851)--(-0.608283,0.747966)--(-0.608123,0.747423)--(-0.607963,0.746879)--(-0.607803,0.746336)--(-0.607643,0.745793)--(-0.607482,0.74525)--(-0.607322,0.744708)--(-0.607161,0.744166)--(-0.607001,0.743624)--(-0.60684,0.743083)--(-0.60668,0.742541)--(-0.606519,0.742)--(-0.606359,0.74146)--(-0.606198,0.74092)--(-0.606037,0.740379)--(-0.605876,0.73984)--(-0.605716,0.7393)--(-0.605555,0.738761)--
> (-0.605394,0.738222)--(-0.605233,0.737683)--(-0.605072,0.737145)--(-0.604911,0.736607)--(-0.60475,0.736069)--(-0.604588,0.735532)--(-0.604427,0.734994)--(-0.604266,0.734458)--(-0.604104,0.733921)--(-0.603943,0.733384)--(-0.603782,0.732848)--(-0.60362,0.732313)--(-0.603459,0.731777)--(-0.603297,0.731242)--(-0.603135,0.730707)--(-0.602974,0.730172)--(-0.602812,0.729638)--(-0.60265,0.729103)--(-0.602489,0.72857)--(-0.602327,0.728036)--(-0.602165,0.727503)--(-0.602003,0.72697)--(-0.601841,0.726437)--
> (-0.601679,0.725904)--(-0.601517,0.725372)--(-0.601354,0.72484)--(-0.601192,0.724308)--(-0.60103,0.723777)--(-0.600868,0.723246)--(-0.600705,0.722715)--(-0.600543,0.722184)--(-0.600381,0.721654)--(-0.600218,0.721124)--(-0.600055,0.720594)--(-0.599893,0.720065)--(-0.59973,0.719536)--(-0.599568,0.719007)--(-0.599405,0.718478)--(-0.599242,0.71795)--(-0.599079,0.717421)--(-0.598916,0.716893)--(-0.598753,0.716366)--(-0.59859,0.715839)--(-0.598427,0.715311)--(-0.598264,0.714785)--(-0.598101,0.714258)--
> (-0.597938,0.713732)--(-0.597775,0.713206)--(-0.597612,0.71268)--(-0.597448,0.712155)--(-0.597285,0.711629)--(-0.597121,0.711104)--(-0.596958,0.71058)--(-0.596794,0.710055)--(-0.596631,0.709531)--(-0.596467,0.709007)--(-0.596304,0.708484)--(-0.59614,0.70796)--(-0.595976,0.707437)--(-0.595812,0.706914)--(-0.595648,0.706392)--(-0.595485,0.705869)--(-0.595321,0.705347)--(-0.595157,0.704825)--(-0.594993,0.704304)--(-0.594828,0.703783)--(-0.594664,0.703262)--(-0.5945,0.702741)--(-0.594336,0.70222)--
> (-0.594171,0.7017)--(-0.594007,0.70118)--(-0.593843,0.70066)--(-0.593678,0.700141)--(-0.593514,0.699622)--(-0.593349,0.699103)--(-0.593185,0.698584)--(-0.59302,0.698065)--(-0.592855,0.697547)--(-0.592691,0.697029)--(-0.592526,0.696512)--(-0.592361,0.695994)--(-0.592196,0.695477)--(-0.592031,0.69496)--(-0.591866,0.694443)--(-0.591701,0.693927)--(-0.591536,0.693411)--(-0.591371,0.692895)--(-0.591206,0.692379)--(-0.591041,0.691864)--(-0.590875,0.691349)--(-0.59071,0.690834)--(-0.590545,0.690319)--
> (-0.590379,0.689805)--(-0.590214,0.689291)--(-0.590048,0.688777)--(-0.589883,0.688263)--(-0.589717,0.68775)--(-0.589551,0.687236)--(-0.589386,0.686724)--(-0.58922,0.686211)--(-0.589054,0.685698)--(-0.588888,0.685186)--(-0.588722,0.684674)--(-0.588556,0.684163)--(-0.58839,0.683651)--(-0.588224,0.68314)--(-0.588058,0.682629)--(-0.587892,0.682118)--(-0.587726,0.681608)--(-0.587559,0.681098)--(-0.587393,0.680588)--(-0.587227,0.680078)--(-0.58706,0.679569)--(-0.586894,0.679059)--(-0.586727,0.67855)--
> (-0.586561,0.678042)--(-0.586394,0.677533)--(-0.586227,0.677025)--(-0.586061,0.676517)--(-0.585894,0.676009)--(-0.585727,0.675502)--(-0.58556,0.674994)--(-0.585393,0.674487)--(-0.585226,0.67398)--(-0.585059,0.673474)--(-0.584892,0.672968)--(-0.584725,0.672461)--(-0.584558,0.671956)--(-0.584391,0.67145)--(-0.584224,0.670945)--(-0.584056,0.670439)--(-0.583889,0.669935)--(-0.583722,0.66943)--(-0.583554,0.668925)--(-0.583387,0.668421)--(-0.583219,0.667917)--(-0.583052,0.667414)--(-0.582884,0.66691)--
> (-0.582716,0.666407)--(-0.582548,0.665904)--(-0.582381,0.665401)--(-0.582213,0.664899)--(-0.582045,0.664396)--(-0.581877,0.663894)--(-0.581709,0.663392)--(-0.581541,0.662891)--(-0.581373,0.662389)--(-0.581205,0.661888)--(-0.581036,0.661387)--(-0.580868,0.660887)--(-0.5807,0.660386)--(-0.580532,0.659886)--(-0.580363,0.659386)--(-0.580195,0.658886)--(-0.580026,0.658387)--(-0.579858,0.657887)--(-0.579689,0.657388)--(-0.57952,0.656889)--(-0.579352,0.656391)--(-0.579183,0.655892)--
> (-0.579014,0.655394)--(-0.578845,0.654896)--(-0.578676,0.654399)--(-0.578508,0.653901)--(-0.578339,0.653404)--(-0.578169,0.652907)--(-0.578,0.65241)--(-0.577831,0.651914)--(-0.577662,0.651417)--(-0.577493,0.650921)--(-0.577324,0.650425)--(-0.577154,0.64993)--(-0.576985,0.649434)--(-0.576815,0.648939)--(-0.576646,0.648444)--(-0.576476,0.647949)--(-0.576307,0.647455)--(-0.576137,0.64696)--(-0.575967,0.646466)--(-0.575798,0.645972)--(-0.575628,0.645479)--(-0.575458,0.644985)--(-0.575288,0.644492)--
> (-0.575118,0.643999)--(-0.574948,0.643506)--(-0.574778,0.643014)--(-0.574608,0.642521)--(-0.574438,0.642029)--(-0.574268,0.641537)--(-0.574097,0.641046)--(-0.573927,0.640554)--(-0.573757,0.640063)--(-0.573586,0.639572)--(-0.573416,0.639081)--(-0.573245,0.638591)--(-0.573075,0.6381)--(-0.572904,0.63761)--(-0.572733,0.63712)--(-0.572563,0.636631)--(-0.572392,0.636141)--(-0.572221,0.635652)--(-0.57205,0.635163)--(-0.571879,0.634674)--(-0.571708,0.634185)--(-0.571537,0.633697)--(-0.571366,0.633209)--
> (-0.571195,0.632721)--(-0.571024,0.632233)--(-0.570853,0.631746)--(-0.570682,0.631258)--(-0.57051,0.630771)--(-0.570339,0.630284)--(-0.570168,0.629797)--(-0.569996,0.629311)--(-0.569825,0.628825)--(-0.569653,0.628339)--(-0.569481,0.627853)--(-0.56931,0.627367)--(-0.569138,0.626882)--(-0.568966,0.626397)--(-0.568794,0.625912)--(-0.568622,0.625427)--(-0.568451,0.624942)--(-0.568279,0.624458)--(-0.568106,0.623974)--(-0.567934,0.62349)--(-0.567762,0.623006)--(-0.56759,0.622522)--(-0.567418,0.622039)--
> (-0.567246,0.621556)--(-0.567073,0.621073)--(-0.566901,0.62059)--(-0.566728,0.620108)--(-0.566556,0.619626)--(-0.566383,0.619144)--(-0.566211,0.618662)--(-0.566038,0.61818)--(-0.565865,0.617699)--(-0.565693,0.617217)--(-0.56552,0.616736)--(-0.565347,0.616255)--(-0.565174,0.615775)--(-0.565001,0.615294)--(-0.564828,0.614814)--(-0.564655,0.614334)--(-0.564482,0.613854)--(-0.564309,0.613375)--(-0.564136,0.612895)--(-0.563962,0.612416)--(-0.563789,0.611937)--(-0.563616,0.611458)--(-0.563442,0.61098)--
> (-0.563269,0.610501)--(-0.563095,0.610023)--(-0.562922,0.609545)--(-0.562748,0.609067)--(-0.562574,0.60859)--(-0.562401,0.608112)--(-0.562227,0.607635)--(-0.562053,0.607158)--(-0.561879,0.606681)--(-0.561705,0.606204)--(-0.561531,0.605728)--(-0.561357,0.605252)--(-0.561183,0.604776)--(-0.561009,0.6043)--(-0.560835,0.603824)--(-0.56066,0.603349)--(-0.560486,0.602874)--(-0.560312,0.602399)--(-0.560137,0.601924)--(-0.559963,0.601449)--(-0.559788,0.600975)--(-0.559614,0.600501)--(-0.559439,0.600027)--
> (-0.559265,0.599553)--(-0.55909,0.599079)--(-0.558915,0.598606)--(-0.55874,0.598132)--(-0.558565,0.597659)--(-0.55839,0.597187)--(-0.558215,0.596714)--(-0.55804,0.596241)--(-0.557865,0.595769)--(-0.55769,0.595297)--(-0.557515,0.594825)--(-0.55734,0.594353)--(-0.557164,0.593882)--(-0.556989,0.593411)--(-0.556814,0.592939)--(-0.556638,0.592468)--(-0.556463,0.591998)--(-0.556287,0.591527)--(-0.556112,0.591057)--(-0.555936,0.590587)--(-0.55576,0.590117)--(-0.555584,0.589647)--(-0.555409,0.589177)--
> (-0.555233,0.588708)--(-0.555057,0.588239)--(-0.554881,0.58777)--(-0.554705,0.587301)--(-0.554529,0.586832)--(-0.554353,0.586364)--(-0.554176,0.585895)--(-0.554,0.585427)--(-0.553824,0.584959)--(-0.553647,0.584492)--(-0.553471,0.584024)--(-0.553295,0.583557)--(-0.553118,0.58309)--(-0.552942,0.582623)--(-0.552765,0.582156)--(-0.552588,0.581689)--(-0.552412,0.581223)--(-0.552235,0.580756)--(-0.552058,0.58029)--(-0.551881,0.579825)--(-0.551704,0.579359)--(-0.551527,0.578893)--(-0.55135,0.578428)--
> (-0.551173,0.577963)--(-0.550996,0.577498)--(-0.550819,0.577033)--(-0.550641,0.576569)--(-0.550464,0.576104)--(-0.550287,0.57564)--(-0.550109,0.575176)--(-0.549932,0.574712)--(-0.549754,0.574249)--(-0.549577,0.573785)--(-0.549399,0.573322)--(-0.549221,0.572859)--(-0.549044,0.572396)--(-0.548866,0.571933)--(-0.548688,0.57147)--(-0.54851,0.571008)--(-0.548332,0.570546)--(-0.548154,0.570084)--(-0.547976,0.569622)--(-0.547798,0.56916)--(-0.54762,0.568699)--(-0.547442,0.568237)--(-0.547263,0.567776)--
> (-0.547085,0.567315)--(-0.546907,0.566854)--(-0.546728,0.566394)--(-0.54655,0.565933)--(-0.546371,0.565473)--(-0.546193,0.565013)--(-0.546014,0.564553)--(-0.545835,0.564093)--(-0.545656,0.563634)--(-0.545478,0.563174)--(-0.545299,0.562715)--(-0.54512,0.562256)--(-0.544941,0.561797)--(-0.544762,0.561339)--(-0.544583,0.56088)--(-0.544404,0.560422)--(-0.544224,0.559964)--(-0.544045,0.559506)--(-0.543866,0.559048)--(-0.543686,0.55859)--(-0.543507,0.558133)--(-0.543328,0.557676)--(-0.543148,0.557218)--
> (-0.542969,0.556761)--(-0.542789,0.556305)--(-0.542609,0.555848)--(-0.542429,0.555392)--(-0.54225,0.554935)--(-0.54207,0.554479)--(-0.54189,0.554023)--(-0.54171,0.553568)--(-0.54153,0.553112)--(-0.54135,0.552657)--(-0.54117,0.552201)--(-0.54099,0.551746)--(-0.540809,0.551292)--(-0.540629,0.550837)--(-0.540449,0.550382)--(-0.540268,0.549928)--(-0.540088,0.549474)--(-0.539907,0.54902)--(-0.539727,0.548566)--(-0.539546,0.548112)--(-0.539365,0.547659)--(-0.539185,0.547205)--(-0.539004,0.546752)--
> (-0.538823,0.546299)--(-0.538642,0.545846)--(-0.538461,0.545393)--(-0.53828,0.544941)--(-0.538099,0.544488)--(-0.537918,0.544036)--(-0.537737,0.543584)--(-0.537556,0.543132)--(-0.537374,0.542681)--(-0.537193,0.542229)--(-0.537012,0.541778)--(-0.53683,0.541326)--(-0.536649,0.540875)--(-0.536467,0.540425)--(-0.536286,0.539974)--(-0.536104,0.539523)--(-0.535922,0.539073)--(-0.53574,0.538623)--(-0.535559,0.538173)--(-0.535377,0.537723)--(-0.535195,0.537273)--(-0.535013,0.536823)--
> (-0.534831,0.536374)--(-0.534648,0.535925)--(-0.534466,0.535476)--(-0.534284,0.535027)--(-0.534102,0.534578)--(-0.533919,0.534129)--(-0.533737,0.533681)--(-0.533555,0.533233)--(-0.533372,0.532784)--(-0.53319,0.532336)--(-0.533007,0.531889)--(-0.532824,0.531441)--(-0.532641,0.530993)--(-0.532459,0.530546)--(-0.532276,0.530099)--(-0.532093,0.529652)--(-0.53191,0.529205)--(-0.531727,0.528758)--(-0.531544,0.528312)--(-0.531361,0.527865)--(-0.531178,0.527419)--(-0.530994,0.526973)--
> (-0.530811,0.526527)--(-0.530628,0.526082)--(-0.530444,0.525636)--(-0.530261,0.525191)--(-0.530077,0.524745)--(-0.529894,0.5243)--(-0.52971,0.523855)--(-0.529526,0.52341)--(-0.529343,0.522966)--(-0.529159,0.522521)--(-0.528975,0.522077)--(-0.528791,0.521633)--(-0.528607,0.521189)--(-0.528423,0.520745)--(-0.528239,0.520301)--(-0.528055,0.519857)--(-0.52787,0.519414)--(-0.527686,0.518971)--(-0.527502,0.518528)--(-0.527318,0.518085)--(-0.527133,0.517642)--(-0.526949,0.517199)--(-0.526764,0.516757)--
> (-0.526579,0.516314)--(-0.526395,0.515872)--(-0.52621,0.51543)--(-0.526025,0.514988)--(-0.52584,0.514547)--(-0.525655,0.514105)--(-0.525471,0.513664)--(-0.525286,0.513222)--(-0.5251,0.512781)--(-0.524915,0.51234)--(-0.52473,0.511899)--(-0.524545,0.511459)--(-0.52436,0.511018)--(-0.524174,0.510578)--(-0.523989,0.510137)--(-0.523803,0.509697)--(-0.523618,0.509257)--(-0.523432,0.508818)--(-0.523247,0.508378)--(-0.523061,0.507938)--(-0.522875,0.507499)--(-0.522689,0.50706)--(-0.522503,0.506621)--
> (-0.522317,0.506182)--(-0.522131,0.505743)--(-0.521945,0.505305)--(-0.521759,0.504866)--(-0.521573,0.504428)--(-0.521387,0.50399)--(-0.521201,0.503552)--(-0.521014,0.503114)--(-0.520828,0.502676)--(-0.520641,0.502238)--(-0.520455,0.501801)--(-0.520268,0.501364)--(-0.520082,0.500927)--(-0.519895,0.50049)--(-0.519708,0.500053)--(-0.519521,0.499616)--(-0.519334,0.499179)--(-0.519147,0.498743)--(-0.51896,0.498307)--(-0.518773,0.497871)--(-0.518586,0.497435)--(-0.518399,0.496999)--
> (-0.518212,0.496563)--(-0.518025,0.496127)--(-0.517837,0.495692)--(-0.51765,0.495257)--(-0.517462,0.494822)--(-0.517275,0.494387)--(-0.517087,0.493952)--(-0.5169,0.493517)--(-0.516712,0.493082)--(-0.516524,0.492648)--(-0.516336,0.492214)--(-0.516148,0.49178)--(-0.515961,0.491346)--(-0.515773,0.490912)--(-0.515585,0.490478)--(-0.515396,0.490044)--(-0.515208,0.489611)--(-0.51502,0.489178)--(-0.514832,0.488744)--(-0.514643,0.488311)--(-0.514455,0.487879)--(-0.514266,0.487446)--(-0.514078,0.487013)--
> (-0.513889,0.486581)--(-0.513701,0.486148)--(-0.513512,0.485716)--(-0.513323,0.485284)--(-0.513134,0.484852)--(-0.512945,0.48442)--(-0.512756,0.483989)--(-0.512567,0.483557)--(-0.512378,0.483126)--(-0.512189,0.482695)--(-0.512,0.482264)--(-0.511811,0.481833)--(-0.511621,0.481402)--(-0.511432,0.480971)--(-0.511243,0.48054)--(-0.511053,0.48011)--(-0.510864,0.47968)--(-0.510674,0.47925)--(-0.510484,0.47882)--(-0.510295,0.47839)--(-0.510105,0.47796)--(-0.509915,0.47753)--(-0.509725,0.477101)--
> (-0.509535,0.476672)--(-0.509345,0.476242)--(-0.509155,0.475813)--(-0.508965,0.475384)--(-0.508774,0.474955)--(-0.508584,0.474527)--(-0.508394,0.474098)--(-0.508203,0.47367)--(-0.508013,0.473242)--(-0.507822,0.472813)--(-0.507632,0.472385)--(-0.507441,0.471957)--(-0.50725,0.47153)--(-0.50706,0.471102)--(-0.506869,0.470675)--(-0.506678,0.470247)--(-0.506487,0.46982)--(-0.506296,0.469393)--(-0.506105,0.468966)--(-0.505914,0.468539)--(-0.505723,0.468112)--(-0.505531,0.467686)--(-0.50534,0.467259)--
> (-0.505149,0.466833)--(-0.504957,0.466407)--(-0.504766,0.465981)--(-0.504574,0.465555)--(-0.504382,0.465129)--(-0.504191,0.464703)--(-0.503999,0.464278)--(-0.503807,0.463852)--(-0.503615,0.463427)--(-0.503423,0.463002)--(-0.503231,0.462577)--(-0.503039,0.462152)--(-0.502847,0.461727)--(-0.502655,0.461303)--(-0.502463,0.460878)--(-0.50227,0.460454)--(-0.502078,0.460029)--(-0.501885,0.459605)--(-0.501693,0.459181)--(-0.5015,0.458757)--(-0.501308,0.458333)--(-0.501115,0.45791)--(-0.500922,0.457486)--
> (-0.500729,0.457063)--(-0.500537,0.45664)--(-0.500344,0.456217)--(-0.500151,0.455793)--(-0.499958,0.455371)--(-0.499764,0.454948)--(-0.499571,0.454525)--(-0.499378,0.454103)--(-0.499185,0.45368)--(-0.498991,0.453258)--(-0.498798,0.452836)--(-0.498604,0.452414)--(-0.498411,0.451992)--(-0.498217,0.45157)--(-0.498023,0.451148)--(-0.49783,0.450727)--(-0.497636,0.450305)--(-0.497442,0.449884)--(-0.497248,0.449463)--(-0.497054,0.449042)--(-0.49686,0.448621)--(-0.496666,0.4482)--(-0.496472,0.44778)--
> (-0.496277,0.447359)--(-0.496083,0.446938)--(-0.495889,0.446518)--(-0.495694,0.446098)--(-0.4955,0.445678)--(-0.495305,0.445258)--(-0.49511,0.444838)--(-0.494916,0.444418)--(-0.494721,0.443999)--(-0.494526,0.443579)--(-0.494331,0.44316)--(-0.494136,0.442741)--(-0.493941,0.442321)--(-0.493746,0.441902)--(-0.493551,0.441484)--(-0.493356,0.441065)--(-0.49316,0.440646)--(-0.492965,0.440228)--(-0.492769,0.439809)--(-0.492574,0.439391)--(-0.492378,0.438973)--(-0.492183,0.438555)--(-0.491987,0.438137)--
> (-0.491791,0.437719)--(-0.491596,0.437301)--(-0.4914,0.436884)--(-0.491204,0.436466)--(-0.491008,0.436049)--(-0.490812,0.435631)--(-0.490616,0.435214)--(-0.490419,0.434797)--(-0.490223,0.43438)--(-0.490027,0.433964)--(-0.48983,0.433547)--(-0.489634,0.43313)--(-0.489437,0.432714)--(-0.489241,0.432298)--(-0.489044,0.431881)--(-0.488847,0.431465)--(-0.488651,0.431049)--(-0.488454,0.430633)--(-0.488257,0.430218)--(-0.48806,0.429802)--(-0.487863,0.429386)--(-0.487666,0.428971)--(-0.487469,0.428556)--
> (-0.487271,0.42814)--(-0.487074,0.427725)--(-0.486877,0.42731)--(-0.486679,0.426896)--(-0.486482,0.426481)--(-0.486284,0.426066)--(-0.486086,0.425652)--(-0.485889,0.425237)--(-0.485691,0.424823)--(-0.485493,0.424409)--(-0.485295,0.423995)--(-0.485097,0.423581)--(-0.484899,0.423167)--(-0.484701,0.422753)--(-0.484503,0.422339)--(-0.484305,0.421926)--(-0.484106,0.421513)--(-0.483908,0.421099)--(-0.48371,0.420686)--(-0.483511,0.420273)--(-0.483313,0.41986)--(-0.483114,0.419447)--(-0.482915,0.419034)--
> (-0.482716,0.418622)--(-0.482518,0.418209)--(-0.482319,0.417797)--(-0.48212,0.417384)--(-0.481921,0.416972)--(-0.481722,0.41656)--(-0.481522,0.416148)--(-0.481323,0.415736)--(-0.481124,0.415324)--(-0.480924,0.414913)--(-0.480725,0.414501)--(-0.480526,0.41409)--(-0.480326,0.413678)--(-0.480126,0.413267)--(-0.479927,0.412856)--(-0.479727,0.412445)--(-0.479527,0.412034)--(-0.479327,0.411623)--(-0.479127,0.411212)--(-0.478927,0.410802)--(-0.478727,0.410391)--(-0.478527,0.409981)--
> (-0.478327,0.409571)--(-0.478126,0.40916)--(-0.477926,0.40875)--(-0.477725,0.40834)--(-0.477525,0.40793)--(-0.477324,0.407521)--(-0.477124,0.407111)--(-0.476923,0.406701)--(-0.476722,0.406292)--(-0.476521,0.405883)--(-0.47632,0.405473)--(-0.476119,0.405064)--(-0.475918,0.404655)--(-0.475717,0.404246)--(-0.475516,0.403837)--(-0.475315,0.403429)--(-0.475113,0.40302)--(-0.474912,0.402611)--(-0.47471,0.402203)--(-0.474509,0.401795)--(-0.474307,0.401386)--(-0.474105,0.400978)--(-0.473904,0.40057)--
> (-0.473702,0.400162)--(-0.4735,0.399755)--(-0.473298,0.399347)--(-0.473096,0.398939)--(-0.472894,0.398532)--(-0.472692,0.398124)--(-0.47249,0.397717)--(-0.472287,0.39731)--(-0.472085,0.396903)--(-0.471882,0.396496)--(-0.47168,0.396089)--(-0.471477,0.395682)--(-0.471275,0.395275)--(-0.471072,0.394869)--(-0.470869,0.394462)--(-0.470666,0.394056)--(-0.470463,0.393649)--(-0.47026,0.393243)--(-0.470057,0.392837)--(-0.469854,0.392431)--(-0.469651,0.392025)--(-0.469448,0.391619)--(-0.469244,0.391213)--
> (-0.469041,0.390808)--(-0.468837,0.390402)--(-0.468634,0.389997)--(-0.46843,0.389591)--(-0.468226,0.389186)--(-0.468023,0.388781)--(-0.467819,0.388376)--(-0.467615,0.387971)--(-0.467411,0.387566)--(-0.467207,0.387161)--(-0.467003,0.386757)--(-0.466798,0.386352)--(-0.466594,0.385948)--(-0.46639,0.385543)--(-0.466185,0.385139)--(-0.465981,0.384735)--(-0.465776,0.384331)--(-0.465572,0.383927)--(-0.465367,0.383523)--(-0.465162,0.383119)--(-0.464957,0.382715)--(-0.464752,0.382312)--
> (-0.464547,0.381908)--(-0.464342,0.381505)--(-0.464137,0.381101)--(-0.463932,0.380698)--(-0.463727,0.380295)--(-0.463521,0.379892)--(-0.463316,0.379489)--(-0.463111,0.379086)--(-0.462905,0.378683)--(-0.462699,0.378281)--(-0.462494,0.377878)--(-0.462288,0.377476)--(-0.462082,0.377073)--(-0.461876,0.376671)--(-0.46167,0.376269)--(-0.461464,0.375866)--(-0.461258,0.375464)--(-0.461052,0.375062)--(-0.460845,0.374661)--(-0.460639,0.374259)--(-0.460433,0.373857)--(-0.460226,0.373456)--
> (-0.46002,0.373054)--(-0.459813,0.372653)--(-0.459606,0.372251)--(-0.459399,0.37185)--(-0.459193,0.371449)--(-0.458986,0.371048)--(-0.458779,0.370647)--(-0.458572,0.370246)--(-0.458364,0.369845)--(-0.458157,0.369445)--(-0.45795,0.369044)--(-0.457742,0.368644)--(-0.457535,0.368243)--(-0.457327,0.367843)--(-0.45712,0.367443)--(-0.456912,0.367042)--(-0.456704,0.366642)--(-0.456497,0.366242)--(-0.456289,0.365842)--(-0.456081,0.365443)--(-0.455873,0.365043)--(-0.455665,0.364643)--(-0.455456,0.364244)--
> (-0.455248,0.363844)--(-0.45504,0.363445)--(-0.454831,0.363046)--(-0.454623,0.362646)--(-0.454414,0.362247)--(-0.454206,0.361848)--(-0.453997,0.361449)--(-0.453788,0.361051)--(-0.453579,0.360652)--(-0.453371,0.360253)--(-0.453162,0.359855)--(-0.452952,0.359456)--(-0.452743,0.359058)--(-0.452534,0.358659)--(-0.452325,0.358261)--(-0.452115,0.357863)--(-0.451906,0.357465)--(-0.451696,0.357067)--(-0.451487,0.356669)--(-0.451277,0.356271)--(-0.451067,0.355873)--(-0.450858,0.355476)--
> (-0.450648,0.355078)--(-0.450438,0.354681)--(-0.450228,0.354283)--(-0.450017,0.353886)--(-0.449807,0.353489)--(-0.449597,0.353091)--(-0.449387,0.352694)--(-0.449176,0.352297)--(-0.448966,0.351901)--(-0.448755,0.351504)--(-0.448544,0.351107)--(-0.448334,0.35071)--(-0.448123,0.350314)--(-0.447912,0.349917)--(-0.447701,0.349521)--(-0.44749,0.349124)--(-0.447279,0.348728)--(-0.447068,0.348332)--(-0.446856,0.347936)--(-0.446645,0.34754)--(-0.446434,0.347144)--(-0.446222,0.346748)--
> (-0.446011,0.346352)--(-0.445799,0.345957)--(-0.445587,0.345561)--(-0.445375,0.345166)--(-0.445164,0.34477)--(-0.444952,0.344375)--(-0.44474,0.343979)--(-0.444527,0.343584)--(-0.444315,0.343189)--(-0.444103,0.342794)--(-0.443891,0.342399)--(-0.443678,0.342004)--(-0.443466,0.341609)--(-0.443253,0.341215)--(-0.443041,0.34082)--(-0.442828,0.340425)--(-0.442615,0.340031)--(-0.442402,0.339637)--(-0.442189,0.339242)--(-0.441976,0.338848)--(-0.441763,0.338454)--(-0.44155,0.33806)--(-0.441336,0.337666)--
> (-0.441123,0.337272)--(-0.44091,0.336878)--(-0.440696,0.336484)--(-0.440483,0.33609)--(-0.440269,0.335697)--(-0.440055,0.335303)--(-0.439841,0.33491)--(-0.439627,0.334516)--(-0.439413,0.334123)--(-0.439199,0.33373)--(-0.438985,0.333336)--(-0.438771,0.332943)--(-0.438557,0.33255)--(-0.438342,0.332157)--(-0.438128,0.331764)--(-0.437913,0.331372)--(-0.437699,0.330979)--(-0.437484,0.330586)--(-0.437269,0.330194)--(-0.437055,0.329801)--(-0.43684,0.329409)--(-0.436625,0.329016)--(-0.436409,0.328624)--
> (-0.436194,0.328232)--(-0.435979,0.32784)--(-0.435764,0.327448)--(-0.435548,0.327056)--(-0.435333,0.326664)--(-0.435117,0.326272)--(-0.434902,0.32588)--(-0.434686,0.325488)--(-0.43447,0.325097)--(-0.434254,0.324705)--(-0.434038,0.324314)--(-0.433822,0.323922)--(-0.433606,0.323531)--(-0.43339,0.32314)--(-0.433174,0.322748)--(-0.432957,0.322357)--(-0.432741,0.321966)--(-0.432524,0.321575)--(-0.432308,0.321184)--(-0.432091,0.320794)--(-0.431874,0.320403)--(-0.431657,0.320012)--(-0.43144,0.319621)--
> (-0.431223,0.319231)--(-0.431006,0.31884)--(-0.430789,0.31845)--(-0.430572,0.31806)--(-0.430355,0.317669)--(-0.430137,0.317279)--(-0.42992,0.316889)--(-0.429702,0.316499)--(-0.429484,0.316109)--(-0.429267,0.315719)--(-0.429049,0.315329)--(-0.428831,0.314939)--(-0.428613,0.31455)--(-0.428395,0.31416)--(-0.428177,0.31377)--(-0.427958,0.313381)--(-0.42774,0.312991)--(-0.427522,0.312602)--(-0.427303,0.312213)--(-0.427085,0.311824)--(-0.426866,0.311434)--(-0.426647,0.311045)--(-0.426428,0.310656)--
> (-0.42621,0.310267)--(-0.425991,0.309878)--(-0.425771,0.30949)--(-0.425552,0.309101)--(-0.425333,0.308712)--(-0.425114,0.308323)--(-0.424894,0.307935)--(-0.424675,0.307546)--(-0.424455,0.307158)--(-0.424236,0.30677)--(-0.424016,0.306381)--(-0.423796,0.305993)--(-0.423576,0.305605)--(-0.423356,0.305217)--(-0.423136,0.304829)--(-0.422916,0.304441)--(-0.422696,0.304053)--(-0.422476,0.303665)--(-0.422255,0.303277)--(-0.422035,0.302889)--(-0.421814,0.302502)--(-0.421593,0.302114)--
> (-0.421373,0.301727)--(-0.421152,0.301339)--(-0.420931,0.300952)--(-0.42071,0.300565)--(-0.420489,0.300177)--(-0.420268,0.29979)--(-0.420047,0.299403)--(-0.419825,0.299016)--(-0.419604,0.298629)--(-0.419382,0.298242)--(-0.419161,0.297855)--(-0.418939,0.297468)--(-0.418717,0.297081)--(-0.418495,0.296695)--(-0.418274,0.296308)--(-0.418052,0.295922)--(-0.417829,0.295535)--(-0.417607,0.295149)--(-0.417385,0.294762)--(-0.417163,0.294376)--(-0.41694,0.29399)--(-0.416718,0.293603)--(-0.416495,0.293217)--
> (-0.416272,0.292831)--(-0.41605,0.292445)--(-0.415827,0.292059)--(-0.415604,0.291673)--(-0.415381,0.291287)--(-0.415158,0.290902)--(-0.414934,0.290516)--(-0.414711,0.29013)--(-0.414488,0.289745)--(-0.414264,0.289359)--(-0.414041,0.288974)--(-0.413817,0.288588)--(-0.413593,0.288203)--(-0.41337,0.287818)--(-0.413146,0.287432)--(-0.412922,0.287047)--(-0.412698,0.286662)--(-0.412474,0.286277)--(-0.412249,0.285892)--(-0.412025,0.285507)--(-0.411801,0.285122)--(-0.411576,0.284737)--
> (-0.411351,0.284353)--(-0.411127,0.283968)--(-0.410902,0.283583)--(-0.410677,0.283199)--(-0.410452,0.282814)--(-0.410227,0.28243)--(-0.410002,0.282045)--(-0.409777,0.281661)--(-0.409551,0.281277)--(-0.409326,0.280892)--(-0.409101,0.280508)--(-0.408875,0.280124)--(-0.408649,0.27974)--(-0.408424,0.279356)--(-0.408198,0.278972)--(-0.407972,0.278588)--(-0.407746,0.278204)--(-0.40752,0.27782)--(-0.407294,0.277437)--(-0.407067,0.277053)--(-0.406841,0.276669)--(-0.406615,0.276286)--(-0.406388,0.275902)--
> (-0.406161,0.275519)--(-0.405935,0.275135)--(-0.405708,0.274752)--(-0.405481,0.274369)--(-0.405254,0.273986)--(-0.405027,0.273602)--(-0.4048,0.273219)--(-0.404572,0.272836)--(-0.404345,0.272453)--(-0.404118,0.27207)--(-0.40389,0.271687)--(-0.403662,0.271304)--(-0.403435,0.270922)--(-0.403207,0.270539)--(-0.402979,0.270156)--(-0.402751,0.269773)--(-0.402523,0.269391)--(-0.402295,0.269008)--(-0.402067,0.268626)--(-0.401838,0.268243)--(-0.40161,0.267861)--(-0.401381,0.267479)--(-0.401153,0.267096)--
> (-0.400924,0.266714)--(-0.400695,0.266332)--(-0.400466,0.26595)--(-0.400237,0.265568)--(-0.400008,0.265186)--(-0.399779,0.264804)--(-0.39955,0.264422)--(-0.399321,0.26404)--(-0.399091,0.263658)--(-0.398862,0.263276)--(-0.398632,0.262895)--(-0.398402,0.262513)--(-0.398172,0.262131)--(-0.397943,0.26175)--(-0.397713,0.261368)--(-0.397482,0.260987)--(-0.397252,0.260605)--(-0.397022,0.260224)--(-0.396792,0.259843)--(-0.396561,0.259461)--(-0.396331,0.25908)--(-0.3961,0.258699)--(-0.395869,0.258318)--
> (-0.395639,0.257937)--(-0.395408,0.257556)--(-0.395177,0.257175)--(-0.394945,0.256794)--(-0.394714,0.256413)--(-0.394483,0.256032)--(-0.394252,0.255651)--(-0.39402,0.255271)--(-0.393789,0.25489)--(-0.393557,0.254509)--(-0.393325,0.254129)--(-0.393093,0.253748)--(-0.392861,0.253368)--(-0.392629,0.252987)--(-0.392397,0.252607)--(-0.392165,0.252227)--(-0.391933,0.251846)--(-0.3917,0.251466)--(-0.391468,0.251086)--(-0.391235,0.250706)--(-0.391002,0.250326)--(-0.39077,0.249946)--(-0.390537,0.249566)--
> (-0.390304,0.249186)--(-0.390071,0.248806)--(-0.389838,0.248426)--(-0.389604,0.248046)--(-0.389371,0.247666)--(-0.389137,0.247286)--(-0.388904,0.246907)--(-0.38867,0.246527)--(-0.388437,0.246147)--(-0.388203,0.245768)--(-0.387969,0.245388)--(-0.387735,0.245009)--(-0.387501,0.244629)--(-0.387266,0.24425)--(-0.387032,0.243871)--(-0.386798,0.243491)--(-0.386563,0.243112)--(-0.386329,0.242733)--(-0.386094,0.242354)--(-0.385859,0.241975)--(-0.385624,0.241596)--(-0.385389,0.241217)--
> (-0.385154,0.240838)--(-0.384919,0.240459)--(-0.384684,0.24008)--(-0.384448,0.239701)--(-0.384213,0.239322)--(-0.383977,0.238943)--(-0.383741,0.238564)--(-0.383506,0.238186)--(-0.38327,0.237807)--(-0.383034,0.237429)--(-0.382798,0.23705)--(-0.382562,0.236671)--(-0.382325,0.236293)--(-0.382089,0.235914)--(-0.381853,0.235536)--(-0.381616,0.235158)--(-0.381379,0.234779)--(-0.381143,0.234401)--(-0.380906,0.234023)--(-0.380669,0.233645)--(-0.380432,0.233267)--(-0.380195,0.232888)--(-0.379957,0.23251)--
> (-0.37972,0.232132)--(-0.379483,0.231754)--(-0.379245,0.231376)--(-0.379007,0.230998)--(-0.37877,0.230621)--(-0.378532,0.230243)--(-0.378294,0.229865)--(-0.378056,0.229487)--(-0.377818,0.22911)--(-0.37758,0.228732)--(-0.377341,0.228354)--(-0.377103,0.227977)--(-0.376864,0.227599)--(-0.376626,0.227222)--(-0.376387,0.226844)--(-0.376148,0.226467)--(-0.375909,0.226089)--(-0.37567,0.225712)--(-0.375431,0.225335)--(-0.375192,0.224957)--(-0.374952,0.22458)--(-0.374713,0.224203)--(-0.374474,0.223826)--
> (-0.374234,0.223448)--(-0.373994,0.223071)--(-0.373754,0.222694)--(-0.373514,0.222317)--(-0.373274,0.22194)--(-0.373034,0.221563)--(-0.372794,0.221186)--(-0.372554,0.22081)--(-0.372313,0.220433)--(-0.372073,0.220056)--(-0.371832,0.219679)--(-0.371591,0.219302)--(-0.37135,0.218926)--(-0.371109,0.218549)--(-0.370868,0.218172)--(-0.370627,0.217796)--(-0.370386,0.217419)--(-0.370145,0.217043)--(-0.369903,0.216666)--(-0.369662,0.21629)--(-0.36942,0.215913)--(-0.369178,0.215537)--(-0.368936,0.215161)--
> (-0.368694,0.214784)--(-0.368452,0.214408)--(-0.36821,0.214032)--(-0.367968,0.213656)--(-0.367725,0.213279)--(-0.367483,0.212903)--(-0.36724,0.212527)--(-0.366998,0.212151)--(-0.366755,0.211775)--(-0.366512,0.211399)--(-0.366269,0.211023)--(-0.366026,0.210647)--(-0.365782,0.210271)--(-0.365539,0.209895)--(-0.365296,0.209519)--(-0.365052,0.209144)--(-0.364809,0.208768)--(-0.364565,0.208392)--(-0.364321,0.208016)--(-0.364077,0.207641)--(-0.363833,0.207265)--(-0.363589,0.206889)--
> (-0.363344,0.206514)--(-0.3631,0.206138)--(-0.362856,0.205763)--(-0.362611,0.205387)--(-0.362366,0.205012)--(-0.362122,0.204636)--(-0.361877,0.204261)--(-0.361632,0.203886)--(-0.361387,0.20351)--(-0.361141,0.203135)--(-0.360896,0.20276)--(-0.360651,0.202385)--(-0.360405,0.202009)--(-0.360159,0.201634)--(-0.359914,0.201259)--(-0.359668,0.200884)--(-0.359422,0.200509)--(-0.359176,0.200134)--(-0.35893,0.199759)--(-0.358683,0.199384)--(-0.358437,0.199009)--(-0.35819,0.198634)--(-0.357944,0.198259)--
> (-0.357697,0.197884)--(-0.35745,0.197509)--(-0.357203,0.197134)--(-0.356956,0.196759)--(-0.356709,0.196385)--(-0.356462,0.19601)--(-0.356215,0.195635)--(-0.355967,0.19526)--(-0.35572,0.194886)--(-0.355472,0.194511)--(-0.355224,0.194137)--(-0.354976,0.193762)--(-0.354728,0.193387)--(-0.35448,0.193013)--(-0.354232,0.192638)--(-0.353983,0.192264)--(-0.353735,0.191889)--(-0.353486,0.191515)--(-0.353238,0.191141)--(-0.352989,0.190766)--(-0.35274,0.190392)--(-0.352491,0.190018)--(-0.352242,0.189643)--
> (-0.351993,0.189269)--(-0.351744,0.188895)--(-0.351494,0.188521)--(-0.351245,0.188147)--(-0.350995,0.187772)--(-0.350745,0.187398)--(-0.350495,0.187024)--(-0.350245,0.18665)--(-0.349995,0.186276)--(-0.349745,0.185902)--(-0.349495,0.185528)--(-0.349244,0.185154)--(-0.348994,0.18478)--(-0.348743,0.184406)--(-0.348492,0.184032)--(-0.348242,0.183658)--(-0.347991,0.183284)--(-0.347739,0.182911)--(-0.347488,0.182537)--(-0.347237,0.182163)--(-0.346986,0.181789)--(-0.346734,0.181415)--
> (-0.346482,0.181042)--(-0.346231,0.180668)--(-0.345979,0.180294)--(-0.345727,0.179921)--(-0.345475,0.179547)--(-0.345222,0.179174)--(-0.34497,0.1788)--(-0.344718,0.178426)--(-0.344465,0.178053)--(-0.344212,0.177679)--(-0.34396,0.177306)--(-0.343707,0.176932)--(-0.343454,0.176559)--(-0.343201,0.176185)--(-0.342947,0.175812)--(-0.342694,0.175439)--(-0.342441,0.175065)--(-0.342187,0.174692)--(-0.341933,0.174319)--(-0.34168,0.173945)--(-0.341426,0.173572)--(-0.341172,0.173199)--(-0.340918,0.172826)--
> (-0.340663,0.172452)--(-0.340409,0.172079)--(-0.340154,0.171706)--(-0.3399,0.171333)--(-0.339645,0.17096)--(-0.33939,0.170587)--(-0.339135,0.170214)--(-0.33888,0.16984)--(-0.338625,0.169467)--(-0.33837,0.169094)--(-0.338114,0.168721)--(-0.337859,0.168348)--(-0.337603,0.167975)--(-0.337347,0.167602)--(-0.337092,0.167229)--(-0.336836,0.166857)--(-0.33658,0.166484)--(-0.336323,0.166111)--(-0.336067,0.165738)--(-0.335811,0.165365)--(-0.335554,0.164992)--(-0.335297,0.164619)--(-0.33504,0.164247)--
> (-0.334784,0.163874)--(-0.334527,0.163501)--(-0.334269,0.163128)--(-0.334012,0.162756)--(-0.333755,0.162383)--(-0.333497,0.16201)--(-0.33324,0.161637)--(-0.332982,0.161265)--(-0.332724,0.160892)--(-0.332466,0.16052)--(-0.332208,0.160147)--(-0.33195,0.159774)--(-0.331691,0.159402)--(-0.331433,0.159029)--(-0.331174,0.158657)--(-0.330916,0.158284)--(-0.330657,0.157912)--(-0.330398,0.157539)--(-0.330139,0.157167)--(-0.32988,0.156794)--(-0.32962,0.156422)--(-0.329361,0.156049)--(-0.329102,0.155677)--
> (-0.328842,0.155304)--(-0.328582,0.154932)--(-0.328322,0.15456)--(-0.328062,0.154187)--(-0.327802,0.153815)--(-0.327542,0.153443)--(-0.327282,0.15307)--(-0.327021,0.152698)--(-0.32676,0.152326)--(-0.3265,0.151953)--(-0.326239,0.151581)--(-0.325978,0.151209)--(-0.325717,0.150837)--(-0.325456,0.150464)--(-0.325194,0.150092)--(-0.324933,0.14972)--(-0.324671,0.149348)--(-0.32441,0.148976)--(-0.324148,0.148603)--(-0.323886,0.148231)--(-0.323624,0.147859)--(-0.323362,0.147487)--(-0.323099,0.147115)--
> (-0.322837,0.146743)--(-0.322574,0.146371)--(-0.322312,0.145999)--(-0.322049,0.145627)--(-0.321786,0.145255)--(-0.321523,0.144882)--(-0.32126,0.14451)--(-0.320997,0.144138)--(-0.320733,0.143766)--(-0.32047,0.143394)--(-0.320206,0.143022)--(-0.319942,0.14265)--(-0.319678,0.142278)--(-0.319414,0.141907)--(-0.31915,0.141535)--(-0.318886,0.141163)--(-0.318621,0.140791)--(-0.318357,0.140419)--(-0.318092,0.140047)--(-0.317827,0.139675)--(-0.317563,0.139303)--(-0.317298,0.138931)--(-0.317032,0.138559)--
> (-0.316767,0.138187)--(-0.316502,0.137816)--(-0.316236,0.137444)--(-0.315971,0.137072)--(-0.315705,0.1367)--(-0.315439,0.136328)--(-0.315173,0.135956)--(-0.314907,0.135585)--(-0.31464,0.135213)--(-0.314374,0.134841)--(-0.314108,0.134469)--(-0.313841,0.134098)--(-0.313574,0.133726)--(-0.313307,0.133354)--(-0.31304,0.132982)--(-0.312773,0.132611)--(-0.312506,0.132239)--(-0.312238,0.131867)--(-0.311971,0.131495)--(-0.311703,0.131124)--(-0.311435,0.130752)--(-0.311167,0.13038)--(-0.310899,0.130009)--
> (-0.310631,0.129637)--(-0.310363,0.129265)--(-0.310094,0.128894)--(-0.309826,0.128522)--(-0.309557,0.12815)--(-0.309288,0.127779)--(-0.309019,0.127407)--(-0.30875,0.127035)--(-0.308481,0.126664)--(-0.308212,0.126292)--(-0.307942,0.12592)--(-0.307673,0.125549)--(-0.307403,0.125177)--(-0.307133,0.124805)--(-0.306863,0.124434)--(-0.306593,0.124062)--(-0.306323,0.123691)--(-0.306052,0.123319)--(-0.305782,0.122947)--(-0.305511,0.122576)--(-0.30524,0.122204)--(-0.30497,0.121833)--(-0.304698,0.121461)--
> (-0.304427,0.121089)--(-0.304156,0.120718)--(-0.303885,0.120346)--(-0.303613,0.119975)--(-0.303341,0.119603)--(-0.30307,0.119232)--(-0.302798,0.11886)--(-0.302526,0.118489)--(-0.302253,0.118117)--(-0.301981,0.117745)--(-0.301708,0.117374)--(-0.301436,0.117002)--(-0.301163,0.116631)--(-0.30089,0.116259)--(-0.300617,0.115888)--(-0.300344,0.115516)--(-0.300071,0.115145)--(-0.299797,0.114773)--(-0.299524,0.114402)--(-0.29925,0.11403)--(-0.298976,0.113658)--(-0.298702,0.113287)--(-0.298428,0.112915)--
> (-0.298154,0.112544)--(-0.29788,0.112172)--(-0.297605,0.111801)--(-0.297331,0.111429)--(-0.297056,0.111058)--(-0.296781,0.110686)--(-0.296506,0.110315)--(-0.296231,0.109943)--(-0.295956,0.109572)--(-0.29568,0.1092)--(-0.295405,0.108829)--(-0.295129,0.108457)--(-0.294853,0.108085)--(-0.294577,0.107714)--(-0.294301,0.107342)--(-0.294025,0.106971)--(-0.293748,0.106599)--(-0.293472,0.106228)--(-0.293195,0.105856)--(-0.292919,0.105485)--(-0.292642,0.105113)--(-0.292365,0.104742)--(-0.292087,0.10437)--
> (-0.29181,0.103998)--(-0.291533,0.103627)--(-0.291255,0.103255)--(-0.290977,0.102884)--(-0.290699,0.102512)--(-0.290421,0.102141)--(-0.290143,0.101769)--(-0.289865,0.101397)--(-0.289586,0.101026)--(-0.289308,0.100654)--(-0.289029,0.100283)--(-0.28875,0.0999111)--(-0.288471,0.0995395)--(-0.288192,0.0991679)--(-0.287913,0.0987963)--(-0.287634,0.0984247)--(-0.287354,0.0980531)--(-0.287074,0.0976815)--(-0.286795,0.0973099)--(-0.286515,0.0969383)--(-0.286234,0.0965666)--(-0.285954,0.096195)--
> (-0.285674,0.0958233)--(-0.285393,0.0954517)--(-0.285113,0.0950801)--(-0.284832,0.0947084)--(-0.284551,0.0943367)--(-0.28427,0.0939651)--(-0.283989,0.0935934)--(-0.283707,0.0932217)--(-0.283426,0.09285)--(-0.283144,0.0924783)--(-0.282862,0.0921067)--(-0.28258,0.0917349)--(-0.282298,0.0913632)--(-0.282016,0.0909915)--(-0.281734,0.0906198)--(-0.281451,0.0902481)--(-0.281169,0.0898763)--(-0.280886,0.0895046)--(-0.280603,0.0891328)--(-0.28032,0.0887611)--(-0.280037,0.0883893)--(-0.279753,0.0880175)--
> (-0.27947,0.0876457)--(-0.279186,0.087274)--(-0.278902,0.0869022)--(-0.278618,0.0865304)--(-0.278334,0.0861585)--(-0.27805,0.0857867)--(-0.277766,0.0854149)--(-0.277481,0.085043)--(-0.277197,0.0846712)--(-0.276912,0.0842993)--(-0.276627,0.0839275)--(-0.276342,0.0835556)--(-0.276056,0.0831837)--(-0.275771,0.0828118)--(-0.275486,0.0824399)--(-0.2752,0.082068)--(-0.274914,0.081696)--(-0.274628,0.0813241)--(-0.274342,0.0809522)--(-0.274056,0.0805802)--(-0.273769,0.0802082)--(-0.273483,0.0798363)--
> (-0.273196,0.0794643)--(-0.272909,0.0790923)--(-0.272622,0.0787203)--(-0.272335,0.0783482)--(-0.272048,0.0779762)--(-0.27176,0.0776042)--(-0.271473,0.0772321)--(-0.271185,0.0768601)--(-0.270897,0.076488)--(-0.270609,0.0761159)--(-0.270321,0.0757438)--(-0.270033,0.0753717)--(-0.269744,0.0749995)--(-0.269456,0.0746274)--(-0.269167,0.0742553)--(-0.268878,0.0738831)--(-0.268589,0.0735109)--(-0.2683,0.0731387)--(-0.26801,0.0727665)--(-0.267721,0.0723943)--(-0.267431,0.0720221)--(-0.267141,0.0716498)--
> (-0.266851,0.0712776)--(-0.266561,0.0709053)--(-0.266271,0.070533)--(-0.265981,0.0701607)--(-0.26569,0.0697884)--(-0.265399,0.0694161)--(-0.265109,0.0690438)--(-0.264818,0.0686714)--(-0.264526,0.0682991)--(-0.264235,0.0679267)--(-0.263944,0.0675543)--(-0.263652,0.0671819)--(-0.26336,0.0668094)--(-0.263068,0.066437)--(-0.262776,0.0660645)--(-0.262484,0.0656921)--(-0.262192,0.0653196)--(-0.261899,0.0649471)--(-0.261606,0.0645746)--(-0.261314,0.064202)--(-0.261021,0.0638295)--(-0.260727,0.0634569)--
> (-0.260434,0.0630843)--(-0.260141,0.0627117)--(-0.259847,0.0623391)--(-0.259553,0.0619665)--(-0.259259,0.0615938)--(-0.258965,0.0612212)--(-0.258671,0.0608485)--(-0.258377,0.0604758)--(-0.258082,0.0601031)--(-0.257787,0.0597303)--(-0.257493,0.0593576)--(-0.257198,0.0589848)--(-0.256902,0.058612)--(-0.256607,0.0582392)--(-0.256312,0.0578664)--(-0.256016,0.0574935)--(-0.25572,0.0571207)--(-0.255424,0.0567478)--(-0.255128,0.0563749)--(-0.254832,0.056002)--(-0.254536,0.055629)--(-0.254239,0.0552561)--
> (-0.253942,0.0548831)--(-0.253645,0.0545101)--(-0.253348,0.0541371)--(-0.253051,0.0537641)--(-0.252754,0.053391)--(-0.252456,0.0530179)--(-0.252159,0.0526449)--(-0.251861,0.0522717)--(-0.251563,0.0518986)--(-0.251265,0.0515255)--(-0.250966,0.0511523)--(-0.250668,0.0507791)--(-0.250369,0.0504059)--(-0.250071,0.0500326)--(-0.249772,0.0496594)--(-0.249473,0.0492861)--(-0.249173,0.0489128)--(-0.248874,0.0485395)--(-0.248574,0.0481662)--(-0.248275,0.0477928)--(-0.247975,0.0474194)--
> (-0.247675,0.047046)--(-0.247374,0.0466726)--(-0.247074,0.0462991)--(-0.246773,0.0459256)--(-0.246473,0.0455521)--(-0.246172,0.0451786)--(-0.245871,0.0448051)--(-0.24557,0.0444315)--(-0.245268,0.0440579)--(-0.244967,0.0436843)--(-0.244665,0.0433107)--(-0.244363,0.042937)--(-0.244061,0.0425634)--(-0.243759,0.0421897)--(-0.243457,0.0418159)--(-0.243154,0.0414422)--(-0.242852,0.0410684)--(-0.242549,0.0406946)--(-0.242246,0.0403208)--(-0.241943,0.0399469)--(-0.241639,0.0395731)--
> (-0.241336,0.0391992)--(-0.241032,0.0388252)--(-0.240729,0.0384513)--(-0.240425,0.0380773)--(-0.24012,0.0377033)--(-0.239816,0.0373293)--(-0.239512,0.0369553)--(-0.239207,0.0365812)--(-0.238902,0.0362071)--(-0.238597,0.035833)--(-0.238292,0.0354588)--(-0.237987,0.0350846)--(-0.237681,0.0347104)--(-0.237376,0.0343362)--(-0.23707,0.033962)--(-0.236764,0.0335877)--(-0.236458,0.0332134)--(-0.236152,0.032839)--(-0.235845,0.0324647)--(-0.235539,0.0320903)--(-0.235232,0.0317159)--(-0.234925,0.0313414)--
> (-0.234618,0.0309669)--(-0.23431,0.0305924)--(-0.234003,0.0302179)--(-0.233695,0.0298433)--(-0.233388,0.0294688)--(-0.23308,0.0290941)--(-0.232771,0.0287195)--(-0.232463,0.0283448)--(-0.232155,0.0279701)--(-0.231846,0.0275954)--(-0.231537,0.0272207)--(-0.231228,0.0268459)--(-0.230919,0.0264711)--(-0.23061,0.0260962)--(-0.2303,0.0257213)--(-0.22999,0.0253464)--(-0.229681,0.0249715)--(-0.229371,0.0245965)--(-0.22906,0.0242215)--(-0.22875,0.0238465)--(-0.22844,0.0234715)--(-0.228129,0.0230964)--
> (-0.227818,0.0227213)--(-0.227507,0.0223461)--(-0.227196,0.021971)--(-0.226884,0.0215957)--(-0.226573,0.0212205)--(-0.226261,0.0208452)--(-0.225949,0.0204699)--(-0.225637,0.0200946)--(-0.225325,0.0197192)--(-0.225012,0.0193438)--(-0.2247,0.0189684)--(-0.224387,0.018593)--(-0.224074,0.0182175)--(-0.223761,0.0178419)--(-0.223448,0.0174664)--(-0.223134,0.0170908)--(-0.22282,0.0167152)--(-0.222507,0.0163395)--(-0.222193,0.0159638)--(-0.221878,0.0155881)--(-0.221564,0.0152124)--(-0.221249,0.0148366)--
> (-0.220935,0.0144608)--(-0.22062,0.0140849)--(-0.220305,0.013709)--(-0.21999,0.0133331)--(-0.219674,0.0129571)--(-0.219359,0.0125811)--(-0.219043,0.0122051)--(-0.218727,0.0118291)--(-0.218411,0.011453)--(-0.218094,0.0110768)--(-0.217778,0.0107007)--(-0.217461,0.0103245)--(-0.217144,0.00994823)--(-0.216827,0.00957196)--(-0.21651,0.00919565)--(-0.216193,0.00881931)--(-0.215875,0.00844294)--(-0.215557,0.00806652)--(-0.21524,0.00769007)--(-0.214921,0.00731359)--(-0.214603,0.00693707)--
> (-0.214285,0.00656051)--(-0.213966,0.00618392)--(-0.213647,0.00580728)--(-0.213328,0.00543062)--(-0.213009,0.00505391)--(-0.21269,0.00467717)--(-0.21237,0.00430039)--(-0.21205,0.00392357)--(-0.21173,0.00354672)--(-0.21141,0.00316983)--(-0.21109,0.0027929)--(-0.21077,0.00241593)--(-0.210449,0.00203892)--(-0.210128,0.00166188)--(-0.209807,0.00128479)--(-0.209486,0.000907672)--(-0.209165,0.000530512)--(-0.208843,0.000153312)--(-0.208521,-0.000223926)--(-0.208199,-0.000601203)--
> (-0.207877,-0.00097852)--(-0.207555,-0.00135588)--(-0.207232,-0.00173327)--(-0.20691,-0.00211071)--(-0.206587,-0.00248818)--(-0.206264,-0.0028657)--(-0.205941,-0.00324325)--(-0.205617,-0.00362085)--(-0.205294,-0.00399848)--(-0.20497,-0.00437616)--(-0.204646,-0.00475388)--(-0.204322,-0.00513163)--(-0.203997,-0.00550943)--(-0.203673,-0.00588727)--(-0.203348,-0.00626515)--(-0.203023,-0.00664308)--(-0.202698,-0.00702104)--(-0.202373,-0.00739904)--(-0.202047,-0.00777709)--(-0.201722,-0.00815518)--
> (-0.201396,-0.00853331)--(-0.20107,-0.00891149)--(-0.200744,-0.0092897)--(-0.200417,-0.00966796)--(-0.200091,-0.0100463)--(-0.199764,-0.0104246)--(-0.199437,-0.010803)--(-0.19911,-0.0111814)--(-0.198782,-0.0115599)--(-0.198455,-0.0119384)--(-0.198127,-0.012317)--(-0.197799,-0.0126956)--(-0.197471,-0.0130742)--(-0.197143,-0.0134529)--(-0.196814,-0.0138317)--(-0.196485,-0.0142104)--(-0.196157,-0.0145893)--(-0.195827,-0.0149681)--(-0.195498,-0.015347)--(-0.195169,-0.015726)--(-0.194839,-0.016105)--
> (-0.194509,-0.0164841)--(-0.194179,-0.0168631)--(-0.193849,-0.0172423)--(-0.193518,-0.0176215)--(-0.193188,-0.0180007)--(-0.192857,-0.01838)--(-0.192526,-0.0187593)--(-0.192195,-0.0191387)--(-0.191863,-0.0195181)--(-0.191532,-0.0198975)--(-0.1912,-0.0202771)--(-0.190868,-0.0206566)--(-0.190536,-0.0210362)--(-0.190203,-0.0214159)--(-0.189871,-0.0217956)--(-0.189538,-0.0221753)--(-0.189205,-0.0225551)--(-0.188872,-0.0229349)--(-0.188539,-0.0233148)--(-0.188205,-0.0236947)--(-0.187871,-0.0240747)--
> (-0.187537,-0.0244548)--(-0.187203,-0.0248348)--(-0.186869,-0.025215)--(-0.186534,-0.0255951)--(-0.186199,-0.0259754)--(-0.185864,-0.0263556)--(-0.185529,-0.026736)--(-0.185194,-0.0271163)--(-0.184858,-0.0274967)--(-0.184523,-0.0278772)--(-0.184187,-0.0282577)--(-0.18385,-0.0286383)--(-0.183514,-0.0290189)--(-0.183178,-0.0293996)--(-0.182841,-0.0297803)--(-0.182504,-0.0301611)--(-0.182167,-0.0305419)--(-0.181829,-0.0309228)--(-0.181492,-0.0313037)--(-0.181154,-0.0316847)--(-0.180816,-0.0320657)--
> (-0.180478,-0.0324468)--(-0.18014,-0.0328279)--(-0.179801,-0.0332091)--(-0.179462,-0.0335903)--(-0.179123,-0.0339716)--(-0.178784,-0.0343529)--(-0.178445,-0.0347343)--(-0.178105,-0.0351157)--(-0.177765,-0.0354972)--(-0.177425,-0.0358788)--(-0.177085,-0.0362604)--(-0.176745,-0.036642)--(-0.176404,-0.0370237)--(-0.176063,-0.0374055)--(-0.175722,-0.0377873)--(-0.175381,-0.0381692)--(-0.175039,-0.0385511)--(-0.174698,-0.038933)--(-0.174356,-0.0393151)--(-0.174014,-0.0396971)--(-0.173672,-0.0400793)--
> (-0.173329,-0.0404615)--(-0.172987,-0.0408437)--(-0.172644,-0.041226)--(-0.172301,-0.0416084)--(-0.171957,-0.0419908)--(-0.171614,-0.0423732)--(-0.17127,-0.0427557)--(-0.170926,-0.0431383)--(-0.170582,-0.0435209)--(-0.170238,-0.0439036)--(-0.169893,-0.0442864)--(-0.169548,-0.0446692)--(-0.169203,-0.045052)--(-0.168858,-0.0454349)--(-0.168513,-0.0458179)--(-0.168167,-0.0462009)--(-0.167821,-0.046584)--(-0.167475,-0.0469671)--(-0.167129,-0.0473503)--(-0.166782,-0.0477336)--(-0.166436,-0.0481169)--
> (-0.166089,-0.0485002)--(-0.165742,-0.0488837)--(-0.165395,-0.0492671)--(-0.165047,-0.0496507)--(-0.164699,-0.0500343)--(-0.164351,-0.0504179)--(-0.164003,-0.0508017)--(-0.163655,-0.0511854)--(-0.163306,-0.0515693)--(-0.162957,-0.0519531)--(-0.162608,-0.0523371)--(-0.162259,-0.0527211)--(-0.16191,-0.0531052)--(-0.16156,-0.0534893)--(-0.16121,-0.0538735)--(-0.16086,-0.0542577)--(-0.16051,-0.0546421)--(-0.160159,-0.0550264)--(-0.159808,-0.0554109)--(-0.159457,-0.0557953)--(-0.159106,-0.0561799)--
> (-0.158755,-0.0565645)--(-0.158403,-0.0569492)--(-0.158051,-0.0573339)--(-0.157699,-0.0577187)--(-0.157347,-0.0581036)--(-0.156995,-0.0584885)--(-0.156642,-0.0588735)--(-0.156289,-0.0592585)--(-0.155936,-0.0596436)--(-0.155582,-0.0600288)--(-0.155229,-0.060414)--(-0.154875,-0.0607993)--(-0.154521,-0.0611847)--(-0.154167,-0.0615701)--(-0.153812,-0.0619556)--(-0.153457,-0.0623411)--(-0.153103,-0.0627267)--(-0.152747,-0.0631124)--(-0.152392,-0.0634981)--(-0.152036,-0.0638839)--
> (-0.151681,-0.0642698)--(-0.151325,-0.0646557)--(-0.150968,-0.0650417)--(-0.150612,-0.0654278)--(-0.150255,-0.0658139)--(-0.149898,-0.0662001)--(-0.149541,-0.0665863)--(-0.149184,-0.0669726)--(-0.148826,-0.067359)--(-0.148468,-0.0677455)--(-0.14811,-0.068132)--(-0.147752,-0.0685186)--(-0.147393,-0.0689052)--(-0.147035,-0.0692919)--(-0.146676,-0.0696787)--(-0.146317,-0.0700655)--(-0.145957,-0.0704524)--(-0.145597,-0.0708394)--(-0.145238,-0.0712265)--(-0.144878,-0.0716136)--(-0.144517,-0.0720008)--
> (-0.144157,-0.072388)--(-0.143796,-0.0727753)--(-0.143435,-0.0731627)--(-0.143074,-0.0735501)--(-0.142712,-0.0739377)--(-0.14235,-0.0743252)--(-0.141989,-0.0747129)--(-0.141626,-0.0751006)--(-0.141264,-0.0754884)--(-0.140901,-0.0758763)--(-0.140539,-0.0762642)--(-0.140175,-0.0766522)--(-0.139812,-0.0770403)--(-0.139449,-0.0774284)--(-0.139085,-0.0778166)--(-0.138721,-0.0782049)--(-0.138357,-0.0785932)--(-0.137992,-0.0789817)--(-0.137627,-0.0793702)--(-0.137262,-0.0797587)--(-0.136897,-0.0801473)--
> (-0.136532,-0.080536)--(-0.136166,-0.0809248)--(-0.1358,-0.0813137)--(-0.135434,-0.0817026)--(-0.135068,-0.0820916)--(-0.134701,-0.0824806)--(-0.134334,-0.0828697)--(-0.133967,-0.0832589)--(-0.1336,-0.0836482)--(-0.133233,-0.0840376)--(-0.132865,-0.084427)--(-0.132497,-0.0848165)--(-0.132129,-0.085206)--(-0.13176,-0.0855957)--(-0.131391,-0.0859854)--(-0.131022,-0.0863752)--(-0.130653,-0.086765)--(-0.130284,-0.087155)--(-0.129914,-0.087545)--(-0.129544,-0.0879351)--(-0.129174,-0.0883252)--
> (-0.128804,-0.0887154)--(-0.128433,-0.0891057)--(-0.128062,-0.0894961)--(-0.127691,-0.0898866)--(-0.12732,-0.0902771)--(-0.126948,-0.0906677)--(-0.126576,-0.0910584)--(-0.126204,-0.0914491)--(-0.125832,-0.09184)--(-0.125459,-0.0922309)--(-0.125086,-0.0926219)--(-0.124713,-0.0930129)--(-0.12434,-0.093404)--(-0.123967,-0.0937953)--(-0.123593,-0.0941865)--(-0.123219,-0.0945779)--(-0.122844,-0.0949694)--(-0.12247,-0.0953609)--(-0.122095,-0.0957525)--(-0.12172,-0.0961441)--(-0.121345,-0.0965359)--
> (-0.120969,-0.0969277)--(-0.120594,-0.0973196)--(-0.120218,-0.0977116)--(-0.119841,-0.0981037)--(-0.119465,-0.0984958)--(-0.119088,-0.0988881)--(-0.118711,-0.0992804)--(-0.118334,-0.0996727)--(-0.117957,-0.100065)--(-0.117579,-0.100458)--(-0.117201,-0.10085)--(-0.116823,-0.101243)--(-0.116444,-0.101636)--(-0.116065,-0.102029)--(-0.115686,-0.102422)--(-0.115307,-0.102815)--(-0.114928,-0.103208)--(-0.114548,-0.103601)--(-0.114168,-0.103994)--(-0.113788,-0.104388)--(-0.113407,-0.104781)--
> (-0.113026,-0.105175)--(-0.112645,-0.105568)--(-0.112264,-0.105962)--(-0.111883,-0.106356)--(-0.111501,-0.106749)--(-0.111119,-0.107143)--(-0.110737,-0.107537)--(-0.110354,-0.107931)--(-0.109971,-0.108326)--(-0.109588,-0.10872)--(-0.109205,-0.109114)--(-0.108822,-0.109509)--(-0.108438,-0.109903)--(-0.108054,-0.110298)--(-0.107669,-0.110692)--(-0.107285,-0.111087)--(-0.1069,-0.111482)--(-0.106515,-0.111877)--(-0.10613,-0.112272)--(-0.105744,-0.112667)--(-0.105358,-0.113062)--(-0.104972,-0.113457)--
> (-0.104586,-0.113853)--(-0.104199,-0.114248)--(-0.103812,-0.114644)--(-0.103425,-0.115039)--(-0.103038,-0.115435)--(-0.10265,-0.115831)--(-0.102262,-0.116227)--(-0.101874,-0.116623)--(-0.101485,-0.117019)--(-0.101097,-0.117415)--(-0.100708,-0.117811)--(-0.100318,-0.118207)--(-0.0999288,-0.118604)--(-0.0995391,-0.119)--(-0.099149,-0.119397)--(-0.0987587,-0.119793)--(-0.0983681,-0.12019)--(-0.0979773,-0.120587)--(-0.0975862,-0.120984)--(-0.0971948,-0.121381)--(-0.0968032,-0.121778)--
> (-0.0964113,-0.122175)--(-0.0960191,-0.122573)--(-0.0956267,-0.12297)--(-0.095234,-0.123367)--(-0.0948411,-0.123765)--(-0.0944478,-0.124163)--(-0.0940543,-0.12456)--(-0.0936606,-0.124958)--(-0.0932665,-0.125356)--(-0.0928722,-0.125754)--(-0.0924776,-0.126152)--(-0.0920828,-0.12655)--(-0.0916877,-0.126949)--(-0.0912923,-0.127347)--(-0.0908966,-0.127745)--(-0.0905007,-0.128144)--(-0.0901045,-0.128543)--(-0.089708,-0.128941)--(-0.0893113,-0.12934)--(-0.0889143,-0.129739)--(-0.088517,-0.130138)--
> (-0.0881194,-0.130537)--(-0.0877216,-0.130936)--(-0.0873235,-0.131336)--(-0.0869251,-0.131735)--(-0.0865264,-0.132135)--(-0.0861275,-0.132534)--(-0.0857283,-0.132934)--(-0.0853288,-0.133334)--(-0.084929,-0.133734)--(-0.084529,-0.134134)--(-0.0841287,-0.134534)--(-0.0837281,-0.134934)--(-0.0833272,-0.135334)--(-0.0829261,-0.135734)--(-0.0825246,-0.136135)--(-0.0821229,-0.136535)--(-0.0817209,-0.136936)--(-0.0813187,-0.137337)--(-0.0809161,-0.137738)--(-0.0805133,-0.138138)--(-0.0801102,-0.138539)--
> (-0.0797068,-0.138941)--(-0.0793032,-0.139342)--(-0.0788992,-0.139743)--(-0.078495,-0.140145)--(-0.0780905,-0.140546)--(-0.0776857,-0.140948)--(-0.0772807,-0.141349)--(-0.0768753,-0.141751)--(-0.0764697,-0.142153)--(-0.0760637,-0.142555)--(-0.0756575,-0.142957)--(-0.075251,-0.143359)--(-0.0748443,-0.143762)--(-0.0744372,-0.144164)--(-0.0740299,-0.144567)--(-0.0736222,-0.144969)--(-0.0732143,-0.145372)--(-0.0728061,-0.145775)--(-0.0723976,-0.146178)--(-0.0719889,-0.146581)--(-0.0715798,-0.146984)--
> (-0.0711704,-0.147387)--(-0.0707608,-0.14779)--(-0.0703509,-0.148194)--(-0.0699406,-0.148597)--(-0.0695301,-0.149001)--(-0.0691193,-0.149404)--(-0.0687082,-0.149808)--(-0.0682969,-0.150212)--(-0.0678852,-0.150616)--(-0.0674732,-0.15102)--(-0.067061,-0.151425)--(-0.0666484,-0.151829)--(-0.0662356,-0.152233)--(-0.0658225,-0.152638)--(-0.065409,-0.153043)--(-0.0649953,-0.153447)--(-0.0645813,-0.153852)--(-0.064167,-0.154257)--(-0.0637524,-0.154662)--(-0.0633375,-0.155067)--(-0.0629223,-0.155473)--
> (-0.0625068,-0.155878)--(-0.0620911,-0.156284)--(-0.061675,-0.156689)--(-0.0612586,-0.157095)--(-0.0608419,-0.157501)--(-0.060425,-0.157907)--(-0.0600077,-0.158313)--(-0.0595901,-0.158719)--(-0.0591723,-0.159125)--(-0.0587541,-0.159531)--(-0.0583356,-0.159938)--(-0.0579169,-0.160344)--(-0.0574978,-0.160751)--(-0.0570784,-0.161158)--(-0.0566588,-0.161565)--(-0.0562388,-0.161972)--(-0.0558185,-0.162379)--(-0.055398,-0.162786)--(-0.0549771,-0.163193)--(-0.0545559,-0.163601)--(-0.0541344,-0.164008)--
> (-0.0537126,-0.164416)--(-0.0532906,-0.164824)--(-0.0528682,-0.165232)--(-0.0524455,-0.16564)--(-0.0520225,-0.166048)--(-0.0515991,-0.166456)--(-0.0511755,-0.166864)--(-0.0507516,-0.167273)--(-0.0503274,-0.167681)--(-0.0499028,-0.16809)--(-0.049478,-0.168499)--(-0.0490528,-0.168908)--(-0.0486274,-0.169317)--(-0.0482016,-0.169726)--(-0.0477755,-0.170135)--(-0.0473491,-0.170544)--(-0.0469224,-0.170954)--(-0.0464954,-0.171363)--(-0.0460681,-0.171773)--(-0.0456405,-0.172183)--(-0.0452125,-0.172593)--
> (-0.0447843,-0.173003)--(-0.0443557,-0.173413)--(-0.0439268,-0.173823)--(-0.0434976,-0.174233)--(-0.0430681,-0.174644)--(-0.0426383,-0.175054)--(-0.0422081,-0.175465)--(-0.0417777,-0.175876)--(-0.0413469,-0.176287)--(-0.0409158,-0.176698)--(-0.0404844,-0.177109)--(-0.0400527,-0.17752)--(-0.0396207,-0.177932)--(-0.0391883,-0.178343)--(-0.0387556,-0.178755)--(-0.0383227,-0.179167)--(-0.0378893,-0.179579)--(-0.0374557,-0.179991)--(-0.0370218,-0.180403)--(-0.0365875,-0.180815)--
> (-0.0361529,-0.181227)--(-0.035718,-0.18164)--(-0.0352828,-0.182052)--(-0.0348472,-0.182465)--(-0.0344114,-0.182878)--(-0.0339752,-0.183291)--(-0.0335386,-0.183704)--(-0.0331018,-0.184117)--(-0.0326646,-0.18453)--(-0.0322271,-0.184944)--(-0.0317893,-0.185357)--(-0.0313512,-0.185771)--(-0.0309127,-0.186185)--(-0.0304739,-0.186599)--(-0.0300348,-0.187013)--(-0.0295954,-0.187427)--(-0.0291556,-0.187841)--(-0.0287155,-0.188256)--(-0.0282751,-0.18867)--(-0.0278343,-0.189085)--(-0.0273932,-0.1895)--
> (-0.0269518,-0.189914)--(-0.0265101,-0.19033)--(-0.026068,-0.190745)--(-0.0256256,-0.19116)--(-0.0251829,-0.191575)--(-0.0247398,-0.191991)--(-0.0242964,-0.192406)--(-0.0238527,-0.192822)--(-0.0234086,-0.193238)--(-0.0229642,-0.193654)--(-0.0225195,-0.19407)--(-0.0220744,-0.194487)--(-0.021629,-0.194903)--(-0.0211833,-0.19532)--(-0.0207372,-0.195736)--(-0.0202908,-0.196153)--(-0.019844,-0.19657)--(-0.019397,-0.196987)--(-0.0189495,-0.197404)--(-0.0185018,-0.197821)--(-0.0180537,-0.198239)--
> (-0.0176053,-0.198656)--(-0.0171565,-0.199074)--(-0.0167074,-0.199492)--(-0.0162579,-0.19991)--(-0.0158081,-0.200328)--(-0.015358,-0.200746)--(-0.0149075,-0.201164)--(-0.0144567,-0.201583)--(-0.0140055,-0.202001)--(-0.013554,-0.20242)--(-0.0131022,-0.202839)--(-0.01265,-0.203258)--(-0.0121975,-0.203677)--(-0.0117446,-0.204096)--(-0.0112914,-0.204516)--(-0.0108378,-0.204935)--(-0.0103839,-0.205355)--(-0.00992964,-0.205774)--(-0.00947503,-0.206194)--(-0.00902007,-0.206614)--(-0.00856477,-0.207035)--
> (-0.00810912,-0.207455)--(-0.00765312,-0.207875)--(-0.00719677,-0.208296)--(-0.00674008,-0.208717)--(-0.00628303,-0.209137)--(-0.00582563,-0.209558)--(-0.00536788,-0.209979)--(-0.00490978,-0.210401)--(-0.00445132,-0.210822)--(-0.00399252,-0.211244)--(-0.00353336,-0.211665)--(-0.00307385,-0.212087)--(-0.00261398,-0.212509)--(-0.00215376,-0.212931)--(-0.00169318,-0.213353)--(-0.00123225,-0.213775)--(-0.000770962,-0.214198)--(-0.000309318,-0.21462)--(0.000152682,-0.215043)--(0.00061504,-0.215466)--
> (0.00107776,-0.215889)--(0.00154083,-0.216312)--(0.00200426,-0.216736)--(0.00246805,-0.217159)--(0.00293221,-0.217583)--(0.00339672,-0.218006)--(0.00386159,-0.21843)--(0.00432683,-0.218854)--(0.00479242,-0.219278)--(0.00525838,-0.219702)--(0.0057247,-0.220127)--(0.00619138,-0.220551)--(0.00665843,-0.220976)--(0.00712584,-0.221401)--(0.00759362,-0.221826)--(0.00806176,-0.222251)--(0.00853027,-0.222676)--(0.00899914,-0.223102)--(0.00946838,-0.223527)--(0.00993799,-0.223953)--(0.010408,-0.224379)--
> (0.0108783,-0.224805)--(0.011349,-0.225231)--(0.0118201,-0.225657)--(0.0122916,-0.226084)--(0.0127634,-0.22651)--(0.0132356,-0.226937)--(0.0137081,-0.227364)--(0.0141811,-0.227791)--(0.0146544,-0.228218)--(0.015128,-0.228645)--(0.0156021,-0.229072)--(0.0160765,-0.2295)--(0.0165513,-0.229928)--(0.0170265,-0.230356)--(0.0175021,-0.230784)--(0.017978,-0.231212)--(0.0184543,-0.23164)--(0.018931,-0.232068)--(0.019408,-0.232497)--(0.0198855,-0.232926)--(0.0203633,-0.233355)--(0.0208415,-0.233784)--
> (0.02132,-0.234213)--(0.021799,-0.234642)--(0.0222783,-0.235072)--(0.022758,-0.235501)--(0.0232381,-0.235931)--(0.0237186,-0.236361)--(0.0241995,-0.236791)--(0.0246807,-0.237221)--(0.0251623,-0.237652)--(0.0256443,-0.238082)--(0.0261267,-0.238513)--(0.0266095,-0.238944)--(0.0270927,-0.239375)--(0.0275762,-0.239806)--(0.0280602,-0.240237)--(0.0285445,-0.240669)--(0.0290292,-0.2411)--(0.0295143,-0.241532)--(0.0299998,-0.241964)--(0.0304857,-0.242396)--(0.030972,-0.242828)--(0.0314586,-0.243261)--
> (0.0319457,-0.243693)--(0.0324331,-0.244126)--(0.032921,-0.244559)--(0.0334092,-0.244992)--(0.0338978,-0.245425)--(0.0343868,-0.245858)--(0.0348762,-0.246292)--(0.0353661,-0.246726)--(0.0358563,-0.247159)--(0.0363469,-0.247593)--(0.0368379,-0.248027)--(0.0373292,-0.248462)--(0.037821,-0.248896)--(0.0383132,-0.249331)--(0.0388058,-0.249765)--(0.0392988,-0.2502)--(0.0397922,-0.250635)--(0.040286,-0.251071)--(0.0407802,-0.251506)--(0.0412748,-0.251941)--(0.0417697,-0.252377)--(0.0422651,-0.252813)--
> (0.0427609,-0.253249)--(0.0432571,-0.253685)--(0.0437538,-0.254122)--(0.0442508,-0.254558)--(0.0447482,-0.254995)--(0.045246,-0.255431)--(0.0457442,-0.255868)--(0.0462429,-0.256306)--(0.0467419,-0.256743)--(0.0472414,-0.25718)--(0.0477412,-0.257618)--(0.0482415,-0.258056)--(0.0487422,-0.258494)--(0.0492433,-0.258932)--(0.0497448,-0.25937)--(0.0502467,-0.259809)--(0.0507491,-0.260247)--(0.0512518,-0.260686)--(0.051755,-0.261125)--(0.0522585,-0.261564)--(0.0527625,-0.262004)--(0.0532669,-0.262443)--
> (0.0537717,-0.262883)--(0.054277,-0.263322)--(0.0547826,-0.263762)--(0.0552887,-0.264203)--(0.0557952,-0.264643)--(0.0563021,-0.265083)--(0.0568094,-0.265524)--(0.0573172,-0.265965)--(0.0578254,-0.266406)--(0.0583339,-0.266847)--(0.058843,-0.267288)--(0.0593524,-0.26773)--(0.0598622,-0.268171)--(0.0603725,-0.268613)--(0.0608832,-0.269055)--(0.0613944,-0.269497)--(0.0619059,-0.26994)--(0.0624179,-0.270382)--(0.0629303,-0.270825)--(0.0634432,-0.271268)--(0.0639564,-0.271711)--(0.0644701,-0.272154)--
> (0.0649843,-0.272597)--(0.0654988,-0.273041)--(0.0660138,-0.273485)--(0.0665292,-0.273929)--(0.0670451,-0.274373)--(0.0675613,-0.274817)--(0.0680781,-0.275261)--(0.0685952,-0.275706)--(0.0691128,-0.276151)--(0.0696308,-0.276596)--(0.0701493,-0.277041)--(0.0706681,-0.277486)--(0.0711875,-0.277932)--(0.0717072,-0.278377)--(0.0722274,-0.278823)--(0.0727481,-0.279269)--(0.0732692,-0.279715)--(0.0737907,-0.280162)--(0.0743126,-0.280608)--(0.074835,-0.281055)--(0.0753579,-0.281502)--
> (0.0758812,-0.281949)--(0.0764049,-0.282396)--(0.0769291,-0.282844)--(0.0774537,-0.283292)--(0.0779788,-0.283739)--(0.0785043,-0.284187)--(0.0790302,-0.284636)--(0.0795566,-0.285084)--(0.0800835,-0.285532)--(0.0806108,-0.285981)--(0.0811385,-0.28643)--(0.0816667,-0.286879)--(0.0821954,-0.287329)--(0.0827245,-0.287778)--(0.083254,-0.288228)--(0.083784,-0.288678)--(0.0843145,-0.289128)--(0.0848454,-0.289578)--(0.0853767,-0.290028)--(0.0859086,-0.290479)--(0.0864408,-0.290929)--(0.0869736,-0.29138)--
> (0.0875067,-0.291832)--(0.0880404,-0.292283)--(0.0885745,-0.292734)--(0.0891091,-0.293186)--(0.0896441,-0.293638)--(0.0901796,-0.29409)--(0.0907155,-0.294542)--(0.0912519,-0.294995)--(0.0917888,-0.295448)--(0.0923261,-0.2959)--(0.0928639,-0.296353)--(0.0934021,-0.296807)--(0.0939409,-0.29726)--(0.0944801,-0.297714)--(0.0950197,-0.298167)--(0.0955598,-0.298621)--(0.0961004,-0.299076)--(0.0966415,-0.29953)--(0.097183,-0.299985)--(0.097725,-0.300439)--(0.0982675,-0.300894)--(0.0988104,-0.301349)--
> (0.0993538,-0.301805)--(0.0998977,-0.30226)--(0.100442,-0.302716)--(0.100987,-0.303172)--(0.101532,-0.303628)--(0.102078,-0.304084)--(0.102624,-0.304541)--(0.103171,-0.304998)--(0.103718,-0.305455)--(0.104266,-0.305912)--(0.104814,-0.306369)--(0.105363,-0.306826)--(0.105912,-0.307284)--(0.106461,-0.307742)--(0.107012,-0.3082)--(0.107562,-0.308658)--(0.108113,-0.309117)--(0.108665,-0.309576)--(0.109217,-0.310035)--(0.109769,-0.310494)--(0.110322,-0.310953)--(0.110876,-0.311412)--
> (0.11143,-0.311872)--(0.111984,-0.312332)--(0.112539,-0.312792)--(0.113095,-0.313252)--(0.11365,-0.313713)--(0.114207,-0.314174)--(0.114764,-0.314635)--(0.115321,-0.315096)--(0.115879,-0.315557)--(0.116437,-0.316019)--(0.116996,-0.31648)--(0.117556,-0.316942)--(0.118116,-0.317404)--(0.118676,-0.317867)--(0.119237,-0.318329)--(0.119798,-0.318792)--(0.12036,-0.319255)--(0.120922,-0.319718)--(0.121485,-0.320182)--(0.122049,-0.320645)--(0.122613,-0.321109)--(0.123177,-0.321573)--(0.123742,-0.322037)--
> (0.124307,-0.322502)--(0.124873,-0.322966)--(0.12544,-0.323431)--(0.126006,-0.323896)--(0.126574,-0.324362)--(0.127142,-0.324827)--(0.12771,-0.325293)--(0.128279,-0.325759)--(0.128849,-0.326225)--(0.129419,-0.326691)--(0.129989,-0.327158)--(0.13056,-0.327624)--(0.131132,-0.328091)--(0.131704,-0.328559)--(0.132276,-0.329026)--(0.132849,-0.329494)--(0.133423,-0.329962)--(0.133997,-0.33043)--(0.134571,-0.330898)--(0.135147,-0.331366)--(0.135722,-0.331835)--(0.136298,-0.332304)--(0.136875,-0.332773)--
> (0.137452,-0.333243)--(0.13803,-0.333712)--(0.138608,-0.334182)--(0.139187,-0.334652)--(0.139766,-0.335122)--(0.140346,-0.335593)--(0.140927,-0.336063)--(0.141507,-0.336534)--(0.142089,-0.337005)--(0.142671,-0.337477)--(0.143253,-0.337948)--(0.143836,-0.33842)--(0.14442,-0.338892)--(0.145004,-0.339364)--(0.145589,-0.339837)--(0.146174,-0.340309)--(0.146759,-0.340782)--(0.147346,-0.341255)--(0.147932,-0.341729)--(0.14852,-0.342202)--(0.149107,-0.342676)--(0.149696,-0.34315)--(0.150285,-0.343625)--
> (0.150874,-0.344099)--(0.151464,-0.344574)--(0.152055,-0.345049)--(0.152646,-0.345524)--(0.153237,-0.345999)--(0.15383,-0.346475)--(0.154422,-0.346951)--(0.155016,-0.347427)--(0.155609,-0.347903)--(0.156204,-0.34838)--(0.156799,-0.348857)--(0.157394,-0.349334)--(0.15799,-0.349811)--(0.158587,-0.350288)--(0.159184,-0.350766)--(0.159782,-0.351244)--(0.16038,-0.351722)--(0.160979,-0.3522)--(0.161578,-0.352679)--(0.162178,-0.353158)--(0.162778,-0.353637)--(0.163379,-0.354116)--(0.163981,-0.354596)--
> (0.164583,-0.355076)--(0.165186,-0.355556)--(0.165789,-0.356036)--(0.166393,-0.356517)--(0.166997,-0.356998)--(0.167602,-0.357479)--(0.168208,-0.35796)--(0.168814,-0.358441)--(0.16942,-0.358923)--(0.170028,-0.359405)--(0.170635,-0.359887)--(0.171244,-0.36037)--(0.171853,-0.360852)--(0.172462,-0.361335)--(0.173072,-0.361818)--(0.173683,-0.362302)--(0.174294,-0.362785)--(0.174906,-0.363269)--(0.175518,-0.363754)--(0.176131,-0.364238)--(0.176745,-0.364723)--(0.177359,-0.365207)--
> (0.177974,-0.365693)--(0.178589,-0.366178)--(0.179205,-0.366664)--(0.179821,-0.367149)--(0.180438,-0.367636)--(0.181056,-0.368122)--(0.181674,-0.368608)--(0.182293,-0.369095)--(0.182912,-0.369582)--(0.183532,-0.37007)--(0.184153,-0.370557)--(0.184774,-0.371045)--(0.185396,-0.371533)--(0.186018,-0.372022)--(0.186641,-0.37251)--(0.187265,-0.372999)--(0.187889,-0.373488)--(0.188514,-0.373978)--(0.189139,-0.374467)--(0.189765,-0.374957)--(0.190391,-0.375447)--(0.191018,-0.375938)--
> (0.191646,-0.376428)--(0.192274,-0.376919)--(0.192903,-0.37741)--(0.193533,-0.377902)--(0.194163,-0.378393)--(0.194794,-0.378885)--(0.195425,-0.379377)--(0.196057,-0.37987)--(0.19669,-0.380362)--(0.197323,-0.380855)--(0.197957,-0.381349)--(0.198591,-0.381842)--(0.199226,-0.382336)--(0.199862,-0.38283)--(0.200498,-0.383324)--(0.201135,-0.383819)--(0.201772,-0.384313)--(0.20241,-0.384808)--(0.203049,-0.385304)--(0.203688,-0.385799)--(0.204328,-0.386295)--(0.204969,-0.386791)--(0.20561,-0.387287)--
> (0.206252,-0.387784)--(0.206894,-0.388281)--(0.207537,-0.388778)--(0.208181,-0.389276)--(0.208825,-0.389773)--(0.20947,-0.390271)--(0.210116,-0.390769)--(0.210762,-0.391268)--(0.211409,-0.391767)--(0.212056,-0.392266)--(0.212705,-0.392765)--(0.213353,-0.393265)--(0.214003,-0.393764)--(0.214653,-0.394264)--(0.215303,-0.394765)--(0.215955,-0.395265)--(0.216607,-0.395766)--(0.217259,-0.396268)--(0.217912,-0.396769)--(0.218566,-0.397271)--(0.219221,-0.397773)--(0.219876,-0.398275)--
> (0.220532,-0.398778)--(0.221188,-0.399281)--(0.221845,-0.399784)--(0.222503,-0.400287)--(0.223161,-0.400791)--(0.22382,-0.401295)--(0.22448,-0.401799)--(0.22514,-0.402303)--(0.225801,-0.402808)--(0.226463,-0.403313)--(0.227125,-0.403819)--(0.227788,-0.404324)--(0.228452,-0.40483)--(0.229116,-0.405336)--(0.229781,-0.405843)--(0.230447,-0.40635)--(0.231113,-0.406857)--(0.23178,-0.407364)--(0.232448,-0.407872)--(0.233116,-0.40838)--(0.233785,-0.408888)--(0.234455,-0.409396)--(0.235125,-0.409905)--
> (0.235796,-0.410414)--(0.236468,-0.410923)--(0.23714,-0.411433)--(0.237813,-0.411943)--(0.238487,-0.412453)--(0.239161,-0.412964)--(0.239836,-0.413474)--(0.240512,-0.413985)--(0.241188,-0.414497)--(0.241865,-0.415008)--(0.242543,-0.41552)--(0.243221,-0.416033)--(0.2439,-0.416545)--(0.24458,-0.417058)--(0.245261,-0.417571)--(0.245942,-0.418085)--(0.246624,-0.418598)--(0.247306,-0.419112)--(0.247989,-0.419627)--(0.248673,-0.420141)--(0.249358,-0.420656)--(0.250043,-0.421171)--(0.250729,-0.421687)--
> (0.251416,-0.422202)--(0.252104,-0.422719)--(0.252792,-0.423235)--(0.253481,-0.423752)--(0.25417,-0.424269)--(0.25486,-0.424786)--(0.255551,-0.425304)--(0.256243,-0.425821)--(0.256935,-0.42634)--(0.257628,-0.426858)--(0.258322,-0.427377)--(0.259016,-0.427896)--(0.259712,-0.428415)--(0.260408,-0.428935)--(0.261104,-0.429455)--(0.261801,-0.429976)--(0.2625,-0.430496)--(0.263198,-0.431017)--(0.263898,-0.431538)--(0.264598,-0.43206)--(0.265299,-0.432582)--(0.266001,-0.433104)--(0.266703,-0.433627)--
> (0.267406,-0.434149)--(0.26811,-0.434672)--(0.268814,-0.435196)--(0.26952,-0.43572)--(0.270226,-0.436244)--(0.270932,-0.436768)--(0.27164,-0.437293)--(0.272348,-0.437818)--(0.273057,-0.438343)--(0.273767,-0.438869)--(0.274477,-0.439395)--(0.275188,-0.439921)--(0.2759,-0.440448)--(0.276613,-0.440974)--(0.277326,-0.441502)--(0.27804,-0.442029)--(0.278755,-0.442557)--(0.279471,-0.443085)--(0.280187,-0.443614)--(0.280904,-0.444143)--(0.281622,-0.444672)--(0.282341,-0.445201)--(0.28306,-0.445731)--
> (0.28378,-0.446261)--(0.284501,-0.446792)--(0.285223,-0.447322)--(0.285945,-0.447853)--(0.286668,-0.448385)--(0.287392,-0.448917)--(0.288117,-0.449449)--(0.288842,-0.449981)--(0.289568,-0.450514)--(0.290295,-0.451047)--(0.291023,-0.45158)--(0.291752,-0.452114)--(0.292481,-0.452648)--(0.293211,-0.453183)--(0.293942,-0.453717)--(0.294673,-0.454252)--(0.295406,-0.454788)--(0.296139,-0.455323)--(0.296873,-0.45586)--(0.297608,-0.456396)--(0.298343,-0.456933)--(0.299079,-0.45747)--(0.299816,-0.458007)--
> (0.300554,-0.458545)--(0.301293,-0.459083)--(0.302032,-0.459621)--(0.302772,-0.46016)--(0.303513,-0.460699)--(0.304255,-0.461239)--(0.304998,-0.461779)--(0.305741,-0.462319)--(0.306485,-0.462859)--(0.30723,-0.4634)--(0.307976,-0.463941)--(0.308722,-0.464483)--(0.30947,-0.465024)--(0.310218,-0.465567)--(0.310967,-0.466109)--(0.311717,-0.466652)--(0.312467,-0.467195)--(0.313219,-0.467739)--(0.313971,-0.468283)--(0.314724,-0.468827)--(0.315478,-0.469372)--(0.316232,-0.469917)--(0.316988,-0.470462)--
> (0.317744,-0.471008)--(0.318501,-0.471554)--(0.319259,-0.4721)--(0.320018,-0.472647)--(0.320777,-0.473194)--(0.321537,-0.473742)--(0.322299,-0.474289)--(0.323061,-0.474838)--(0.323824,-0.475386)--(0.324587,-0.475935)--(0.325352,-0.476484)--(0.326117,-0.477034)--(0.326883,-0.477584)--(0.32765,-0.478134)--(0.328418,-0.478685)--(0.329187,-0.479236)--(0.329956,-0.479787)--(0.330727,-0.480339)--(0.331498,-0.480891)--(0.33227,-0.481444)--(0.333043,-0.481997)--(0.333817,-0.48255)--(0.334591,-0.483104)--
> (0.335367,-0.483658)--(0.336143,-0.484212)--(0.33692,-0.484767)--(0.337698,-0.485322)--(0.338477,-0.485877)--(0.339257,-0.486433)--(0.340037,-0.486989)--(0.340819,-0.487546)--(0.341601,-0.488103)--(0.342384,-0.48866)--(0.343168,-0.489218)--(0.343953,-0.489776)--(0.344739,-0.490334)--(0.345526,-0.490893)--(0.346313,-0.491452)--(0.347102,-0.492012)--(0.347891,-0.492572)--(0.348681,-0.493132)--(0.349472,-0.493693)--(0.350264,-0.494254)--(0.351057,-0.494815)--(0.35185,-0.495377)--
> (0.352645,-0.495939)--(0.35344,-0.496502)--(0.354237,-0.497065)--(0.355034,-0.497628)--(0.355832,-0.498192)--(0.356631,-0.498756)--(0.357431,-0.499321)--(0.358232,-0.499886)--(0.359033,-0.500451)--(0.359836,-0.501017)--(0.36064,-0.501583)--(0.361444,-0.502149)--(0.362249,-0.502716)--(0.363055,-0.503284)--(0.363863,-0.503851)--(0.364671,-0.504419)--(0.36548,-0.504988)--(0.366289,-0.505557)--(0.3671,-0.506126)--(0.367912,-0.506696)--(0.368725,-0.507266)--(0.369538,-0.507836)--(0.370352,-0.508407)--
> (0.371168,-0.508978)--(0.371984,-0.50955)--(0.372801,-0.510122)--(0.373619,-0.510694)--(0.374439,-0.511267)--(0.375259,-0.51184)--(0.37608,-0.512414)--(0.376901,-0.512988)--(0.377724,-0.513563)--(0.378548,-0.514137)--(0.379373,-0.514713)--(0.380198,-0.515288)--(0.381025,-0.515864)--(0.381852,-0.516441)--(0.382681,-0.517018)--(0.38351,-0.517595)--(0.384341,-0.518173)--(0.385172,-0.518751)--(0.386004,-0.51933)--(0.386837,-0.519909)--(0.387672,-0.520488)--(0.388507,-0.521068)--(0.389343,-0.521648)--
> (0.39018,-0.522229)--(0.391018,-0.52281)--(0.391857,-0.523391)--(0.392697,-0.523973)--(0.393538,-0.524555)--(0.39438,-0.525138)--(0.395223,-0.525721)--(0.396067,-0.526305)--(0.396911,-0.526889)--(0.397757,-0.527473)--(0.398604,-0.528058)--(0.399452,-0.528643)--(0.400301,-0.529229)--(0.40115,-0.529815)--(0.402001,-0.530402)--(0.402853,-0.530989)--(0.403706,-0.531576)--(0.404559,-0.532164)--(0.405414,-0.532752)--(0.40627,-0.533341)--(0.407126,-0.53393)--(0.407984,-0.53452)--(0.408843,-0.53511)--
> (0.409702,-0.5357)--(0.410563,-0.536291)--(0.411425,-0.536882)--(0.412288,-0.537474)--(0.413151,-0.538066)--(0.414016,-0.538659)--(0.414882,-0.539252)--(0.415749,-0.539846)--(0.416617,-0.54044)--(0.417486,-0.541034)--(0.418355,-0.541629)--(0.419226,-0.542224)--(0.420098,-0.54282)--(0.420971,-0.543416)--(0.421845,-0.544013)--(0.42272,-0.54461)--(0.423596,-0.545207)--(0.424473,-0.545805)--(0.425352,-0.546404)--(0.426231,-0.547003)--(0.427111,-0.547602)--(0.427992,-0.548202)--(0.428875,-0.548802)--
> (0.429758,-0.549403)--(0.430642,-0.550004)--(0.431528,-0.550606)--(0.432414,-0.551208)--(0.433302,-0.55181)--(0.434191,-0.552413)--(0.43508,-0.553017)--(0.435971,-0.553621)--(0.436863,-0.554225)--(0.437756,-0.55483)--(0.43865,-0.555435)--(0.439545,-0.556041)--(0.440441,-0.556647)--(0.441338,-0.557254)--(0.442236,-0.557861)--(0.443136,-0.558469)--(0.444036,-0.559077)--(0.444938,-0.559685)--(0.44584,-0.560294)--(0.446744,-0.560904)--(0.447649,-0.561514)--(0.448555,-0.562124)--(0.449462,-0.562735)--
> (0.45037,-0.563347)--(0.451279,-0.563959)--(0.452189,-0.564571)--(0.453101,-0.565184)--(0.454013,-0.565797)--(0.454927,-0.566411)--(0.455842,-0.567025)--(0.456757,-0.56764)--(0.457674,-0.568255)--(0.458592,-0.568871)--(0.459512,-0.569487)--(0.460432,-0.570104)--(0.461353,-0.570721)--(0.462276,-0.571339)--(0.4632,-0.571957)--(0.464124,-0.572576)--(0.46505,-0.573195)--(0.465977,-0.573815)--(0.466906,-0.574435)--(0.467835,-0.575055)--(0.468765,-0.575677)--(0.469697,-0.576298)--(0.47063,-0.57692)--
> (0.471564,-0.577543)--(0.472499,-0.578166)--(0.473435,-0.57879)--(0.474373,-0.579414)--(0.475311,-0.580039)--(0.476251,-0.580664)--(0.477192,-0.581289)--(0.478134,-0.581915)--(0.479077,-0.582542)--(0.480021,-0.583169)--(0.480967,-0.583797)--(0.481913,-0.584425)--(0.482861,-0.585054)--(0.48381,-0.585683)--(0.484761,-0.586313)--(0.485712,-0.586943)--(0.486665,-0.587574)--(0.487618,-0.588205)--(0.488573,-0.588837)--(0.48953,-0.589469)--(0.490487,-0.590102)--(0.491446,-0.590735)--
> (0.492405,-0.591369)--(0.493366,-0.592003)--(0.494328,-0.592638)--(0.495292,-0.593274)--(0.496256,-0.593909)--(0.497222,-0.594546)--(0.498189,-0.595183)--(0.499157,-0.59582)--(0.500127,-0.596458)--(0.501098,-0.597097)--(0.502069,-0.597736)--(0.503043,-0.598376)--(0.504017,-0.599016)--(0.504992,-0.599657)--(0.505969,-0.600298)--(0.506947,-0.60094)--(0.507927,-0.601582)--(0.508907,-0.602225)--(0.509889,-0.602868)--(0.510872,-0.603512)--(0.511856,-0.604157)--(0.512842,-0.604802)--
> (0.513828,-0.605447)--(0.514816,-0.606093)--(0.515806,-0.60674)--(0.516796,-0.607387)--(0.517788,-0.608035)--(0.518781,-0.608683)--(0.519775,-0.609332)--(0.520771,-0.609981)--(0.521768,-0.610631)--(0.522766,-0.611282)--(0.523765,-0.611933)--(0.524766,-0.612584)--(0.525768,-0.613237)--(0.526771,-0.613889)--(0.527776,-0.614543)--(0.528782,-0.615196)--(0.529789,-0.615851)--(0.530797,-0.616506)--(0.531807,-0.617161)--(0.532818,-0.617817)--(0.533831,-0.618474)--(0.534844,-0.619131)--
> (0.535859,-0.619789)--(0.536876,-0.620448)--(0.537893,-0.621106)--(0.538912,-0.621766)--(0.539932,-0.622426)--(0.540954,-0.623087)--(0.541977,-0.623748)--(0.543001,-0.62441)--(0.544027,-0.625072)--(0.545054,-0.625735)--(0.546082,-0.626399)--(0.547111,-0.627063)--(0.548142,-0.627727)--(0.549175,-0.628393)--(0.550208,-0.629059)--(0.551243,-0.629725)--(0.55228,-0.630392)--(0.553317,-0.63106)--(0.554356,-0.631728)--(0.555397,-0.632397)--(0.556438,-0.633066)--(0.557482,-0.633736)--
> (0.558526,-0.634407)--(0.559572,-0.635078)--(0.560619,-0.63575)--(0.561668,-0.636422)--(0.562718,-0.637095)--(0.563769,-0.637769)--(0.564822,-0.638443)--(0.565876,-0.639118)--(0.566932,-0.639793)--(0.567989,-0.640469)--(0.569047,-0.641146)--(0.570107,-0.641823)--(0.571168,-0.642501)--(0.572231,-0.643179)--(0.573295,-0.643859)--(0.57436,-0.644538)--(0.575427,-0.645219)--(0.576495,-0.645899)--(0.577565,-0.646581)--(0.578636,-0.647263)--(0.579709,-0.647946)--(0.580783,-0.648629)--
> (0.581858,-0.649313)--(0.582935,-0.649998)--(0.584013,-0.650683)--(0.585093,-0.651369)--(0.586174,-0.652056)--(0.587257,-0.652743)--(0.588341,-0.653431)--(0.589427,-0.654119)--(0.590514,-0.654808)--(0.591602,-0.655498)--(0.592692,-0.656188)--(0.593784,-0.656879)--(0.594877,-0.65757)--(0.595971,-0.658263)--(0.597067,-0.658956)--(0.598164,-0.659649)--(0.599263,-0.660343)--(0.600363,-0.661038)--(0.601465,-0.661734)--(0.602568,-0.66243)--(0.603673,-0.663126)--(0.60478,-0.663824)--
> (0.605887,-0.664522)--(0.606997,-0.665221)--(0.608107,-0.66592)--(0.60922,-0.66662)--(0.610334,-0.667321)--(0.611449,-0.668022)--(0.612566,-0.668724)--(0.613684,-0.669427)--(0.614804,-0.67013)--(0.615926,-0.670834)--(0.617049,-0.671538)--(0.618174,-0.672244)--(0.6193,-0.67295)--(0.620427,-0.673656)--(0.621557,-0.674364)--(0.622687,-0.675072)--(0.62382,-0.67578)--(0.624954,-0.67649)--(0.626089,-0.6772)--(0.627226,-0.677911)--(0.628365,-0.678622)--(0.629505,-0.679334)--(0.630647,-0.680047)--
> (0.63179,-0.68076)--(0.632935,-0.681474)--(0.634082,-0.682189)--(0.63523,-0.682905)--(0.636379,-0.683621)--(0.637531,-0.684338)--(0.638684,-0.685055)--(0.639838,-0.685774)--(0.640994,-0.686493)--(0.642152,-0.687212)--(0.643312,-0.687933)--(0.644472,-0.688654)--(0.645635,-0.689376)--(0.646799,-0.690098)--(0.647965,-0.690821)--(0.649133,-0.691545)--(0.650302,-0.69227)--(0.651473,-0.692995)--(0.652645,-0.693721)--(0.653819,-0.694448)--(0.654995,-0.695176)--(0.656172,-0.695904)--(0.657351,-0.696633)--
> (0.658532,-0.697362)--(0.659715,-0.698093)--(0.660899,-0.698824)--(0.662084,-0.699555)--(0.663272,-0.700288)--(0.664461,-0.701021)--(0.665652,-0.701755)--(0.666844,-0.70249)--(0.668038,-0.703225)--(0.669234,-0.703962)--(0.670432,-0.704699)--(0.671631,-0.705436)--(0.672832,-0.706175)--(0.674035,-0.706914)--(0.675239,-0.707654)--(0.676445,-0.708394)--(0.677653,-0.709136)--(0.678863,-0.709878)--(0.680074,-0.710621)--(0.681287,-0.711364)--(0.682502,-0.712109)--(0.683719,-0.712854)--
> (0.684937,-0.7136)--(0.686157,-0.714346)--(0.687379,-0.715094)--(0.688602,-0.715842)--(0.689828,-0.716591)--(0.691055,-0.717341)--(0.692284,-0.718091)--(0.693514,-0.718842)--(0.694747,-0.719594)--(0.695981,-0.720347)--(0.697217,-0.721101)--(0.698455,-0.721855)--(0.699694,-0.72261)--(0.700936,-0.723366)--(0.702179,-0.724123)--(0.703424,-0.72488)--(0.704671,-0.725638)--(0.705919,-0.726397)--(0.70717,-0.727157)--(0.708422,-0.727918)--(0.709676,-0.728679)--(0.710932,-0.729441)--(0.71219,-0.730204)--
> (0.71345,-0.730968)--(0.714711,-0.731733)--(0.715975,-0.732498)--(0.71724,-0.733264)--(0.718507,-0.734031)--(0.719776,-0.734799)--(0.721047,-0.735567)--(0.722319,-0.736337)--(0.723594,-0.737107)--(0.72487,-0.737878)--(0.726148,-0.73865)--(0.727429,-0.739423)--(0.728711,-0.740196)--(0.729995,-0.74097)--(0.731281,-0.741745)--(0.732568,-0.742521)--(0.733858,-0.743298)--(0.73515,-0.744076)--(0.736443,-0.744854)--(0.737739,-0.745633)--(0.739036,-0.746414)--(0.740335,-0.747194)--(0.741637,-0.747976)--
> (0.74294,-0.748759)--(0.744245,-0.749542)--(0.745552,-0.750327)--(0.746861,-0.751112)--(0.748172,-0.751898)--(0.749485,-0.752684)--(0.7508,-0.753472)--(0.752117,-0.754261)--(0.753436,-0.75505)--(0.754757,-0.75584)--(0.75608,-0.756631)--(0.757405,-0.757423)--(0.758732,-0.758216)--(0.760061,-0.75901)--(0.761392,-0.759804)--(0.762724,-0.7606)--(0.764059,-0.761396)--(0.765396,-0.762193)--(0.766735,-0.762991)--(0.768076,-0.76379)--(0.769419,-0.76459)--(0.770765,-0.765391)--(0.772112,-0.766192)--
> (0.773461,-0.766995)--(0.774812,-0.767798)--(0.776165,-0.768602)--(0.777521,-0.769408)--(0.778878,-0.770214)--(0.780238,-0.771021)--(0.781599,-0.771828)--(0.782963,-0.772637)--(0.784329,-0.773447)--(0.785697,-0.774257)--(0.787067,-0.775069)--(0.788439,-0.775881)--(0.789813,-0.776694)--(0.791189,-0.777508)--(0.792568,-0.778323)--(0.793948,-0.779139)--(0.795331,-0.779956)--(0.796716,-0.780774)--(0.798103,-0.781593)--(0.799492,-0.782413)--(0.800883,-0.783233)--(0.802277,-0.784055)--
> (0.803672,-0.784877)--(0.80507,-0.785701)--(0.80647,-0.786525)--(0.807872,-0.78735)--(0.809277,-0.788176)--(0.810683,-0.789004)--(0.812092,-0.789832)--(0.813503,-0.790661)--(0.814916,-0.791491)--(0.816331,-0.792322)--(0.817749,-0.793154)--(0.819168,-0.793987)--(0.82059,-0.79482)--(0.822015,-0.795655)--(0.823441,-0.796491)--(0.82487,-0.797328)--(0.826301,-0.798165)--(0.827734,-0.799004)--(0.829169,-0.799844)--(0.830607,-0.800684)--(0.832047,-0.801526)--(0.833489,-0.802369)--(0.834934,-0.803212)--
> (0.836381,-0.804057)--(0.83783,-0.804902)--(0.839281,-0.805749)--(0.840735,-0.806596)--(0.842191,-0.807445)--(0.843649,-0.808294)--(0.84511,-0.809145)--(0.846573,-0.809996)--(0.848038,-0.810849)--(0.849506,-0.811703)--(0.850976,-0.812557)--(0.852449,-0.813413)--(0.853923,-0.814269)--(0.8554,-0.815127)--(0.85688,-0.815985)--(0.858362,-0.816845)--(0.859846,-0.817706)--(0.861332,-0.818567)--(0.862822,-0.81943)--(0.864313,-0.820294)--(0.865807,-0.821159)--(0.867303,-0.822024)--(0.868802,-0.822891)--
> (0.870303,-0.823759)--(0.871806,-0.824628)--(0.873312,-0.825498)--(0.87482,-0.826369)--(0.876331,-0.827241)--(0.877844,-0.828114)--(0.87936,-0.828989)--(0.880878,-0.829864)--(0.882399,-0.83074)--(0.883922,-0.831618)--(0.885448,-0.832496)--(0.886976,-0.833376)--(0.888507,-0.834256)--(0.89004,-0.835138)--(0.891575,-0.836021)--(0.893113,-0.836905)--(0.894654,-0.83779)--(0.896197,-0.838676)--(0.897743,-0.839563)--(0.899291,-0.840451)--(0.900842,-0.84134)--(0.902396,-0.842231)--(0.903951,-0.843122)--
> (0.90551,-0.844015)--(0.907071,-0.844908)--(0.908635,-0.845803)--(0.910201,-0.846699)--(0.91177,-0.847596)--(0.913341,-0.848494)--(0.914915,-0.849394)--(0.916492,-0.850294)--(0.918071,-0.851196)--(0.919653,-0.852098)--(0.921238,-0.853002)--(0.922825,-0.853907)--(0.924415,-0.854813)--(0.926007,-0.85572)--(0.927603,-0.856629)--(0.9292,-0.857538)--(0.930801,-0.858449)--(0.932404,-0.859361)--(0.93401,-0.860274)--(0.935619,-0.861188)--(0.93723,-0.862103)--(0.938844,-0.86302)--(0.940461,-0.863937)--
> (0.94208,-0.864856)--(0.943702,-0.865776)--(0.945327,-0.866697)--(0.946955,-0.86762)--(0.948585,-0.868543)--(0.950219,-0.869468)--(0.951854,-0.870394)--(0.953493,-0.871321)--(0.955135,-0.872249)--(0.956779,-0.873178)--(0.958426,-0.874109)--(0.960076,-0.875041)--(0.961729,-0.875974)--(0.963384,-0.876908)--(0.965043,-0.877844)--(0.966704,-0.878781)--(0.968368,-0.879719)--(0.970035,-0.880658)--(0.971705,-0.881598)--(0.973377,-0.88254)--(0.975053,-0.883483)--(0.976731,-0.884427)--
> (0.978412,-0.885372)--(0.980097,-0.886319)--(0.981784,-0.887266)--(0.983474,-0.888215)--(0.985167,-0.889166)--(0.986862,-0.890117)--(0.988561,-0.89107)--(0.990263,-0.892024)--(0.991968,-0.89298)--(0.993675,-0.893936)--(0.995386,-0.894894)--(0.997099,-0.895853)--(0.998816,-0.896814)--(1.00054,-0.897776)--(1.00226,-0.898739)--(1.00398,-0.899703)--(1.00571,-0.900668)--(1.00744,-0.901635)--(1.00918,-0.902604)--(1.01092,-0.903573)--(1.01266,-0.904544)--(1.0144,-0.905516)--(1.01615,-0.906489)--
> (1.0179,-0.907464)--(1.01965,-0.90844)--(1.02141,-0.909418)--(1.02317,-0.910396)--(1.02493,-0.911376)--(1.02669,-0.912358)--(1.02846,-0.913341)--(1.03023,-0.914325)--(1.03201,-0.91531)--(1.03379,-0.916297)--(1.03557,-0.917285)--(1.03735,-0.918274)--(1.03914,-0.919265)--(1.04093,-0.920257)--(1.04272,-0.921251)--(1.04452,-0.922246)--(1.04632,-0.923242)--(1.04812,-0.92424)--(1.04993,-0.925239)--(1.05174,-0.926239)--(1.05355,-0.927241)--(1.05537,-0.928244)--(1.05719,-0.929249)--(1.05901,-0.930255)--
> (1.06084,-0.931263)--(1.06267,-0.932271)--(1.0645,-0.933282)--(1.06634,-0.934293)--(1.06818,-0.935306)--(1.07002,-0.936321)--(1.07187,-0.937337)--(1.07372,-0.938354)--(1.07557,-0.939373)--(1.07742,-0.940393)--(1.07928,-0.941415)--(1.08115,-0.942438)--(1.08301,-0.943463)--(1.08488,-0.944489)--(1.08676,-0.945516)--(1.08863,-0.946545)--(1.09051,-0.947576)--(1.0924,-0.948608)--(1.09428,-0.949641)--(1.09617,-0.950676)--(1.09807,-0.951712)--(1.09996,-0.95275)--(1.10187,-0.95379)--(1.10377,-0.95483)--
> (1.10568,-0.955873)--(1.10759,-0.956917)--(1.1095,-0.957962)--(1.11142,-0.959009)--(1.11334,-0.960057)--(1.11527,-0.961107)--(1.1172,-0.962158)--(1.11913,-0.963211)--(1.12107,-0.964266)--(1.12301,-0.965322)--(1.12495,-0.96638)--(1.1269,-0.967439)--(1.12885,-0.968499)--(1.1308,-0.969562)--(1.13276,-0.970625)--(1.13472,-0.971691)--(1.13669,-0.972758)--(1.13866,-0.973826)--(1.14063,-0.974896)--(1.14261,-0.975968)--(1.14459,-0.977041)--(1.14657,-0.978116)--(1.14856,-0.979192)--(1.15055,-0.980271)--
> (1.15255,-0.98135)--(1.15455,-0.982431)--(1.15655,-0.983514)--(1.15855,-0.984599)--(1.16057,-0.985685)--(1.16258,-0.986773)--(1.1646,-0.987862)--(1.16662,-0.988953)--(1.16864,-0.990046)--(1.17067,-0.99114)--(1.17271,-0.992236)--(1.17475,-0.993334)--(1.17679,-0.994433)--(1.17883,-0.995534)--(1.18088,-0.996637)--(1.18293,-0.997741)--(1.18499,-0.998847)--(1.18705,-0.999955)--(1.18912,-1.00106)--(1.19119,-1.00217)--(1.19326,-1.00329)--(1.19534,-1.0044)--(1.19742,-1.00552)--(1.1995,-1.00664)--
> (1.20159,-1.00776)--(1.20368,-1.00888)--(1.20578,-1.01)--(1.20788,-1.01113)--(1.20999,-1.01225)--(1.2121,-1.01338)--(1.21421,-1.01451)--(1.21633,-1.01564)--(1.21845,-1.01678)--(1.22057,-1.01791)--(1.2227,-1.01905)--(1.22484,-1.02019)--(1.22698,-1.02133)--(1.22912,-1.02247)--(1.23127,-1.02361)--(1.23342,-1.02476)--(1.23557,-1.02591)--(1.23773,-1.02706)--(1.23989,-1.02821)--(1.24206,-1.02936)--(1.24423,-1.03052)--(1.24641,-1.03167)--(1.24859,-1.03283)--(1.25078,-1.03399)--(1.25297,-1.03516)--
> (1.25516,-1.03632)--(1.25736,-1.03749)--(1.25956,-1.03865)--(1.26177,-1.03982)--(1.26398,-1.041)--(1.2662,-1.04217)--(1.26842,-1.04335)--(1.27064,-1.04452)--(1.27287,-1.0457)--(1.2751,-1.04688)--(1.27734,-1.04807)--(1.27958,-1.04925)--(1.28183,-1.05044)--(1.28408,-1.05163)--(1.28634,-1.05282)--(1.2886,-1.05401)--(1.29087,-1.05521)--(1.29314,-1.0564)--(1.29541,-1.0576)--(1.29769,-1.0588)--(1.29997,-1.06001)--(1.30226,-1.06121)--(1.30456,-1.06242)--(1.30685,-1.06363)--(1.30916,-1.06484)--
> (1.31146,-1.06605)--(1.31377,-1.06726)--(1.31609,-1.06848)--(1.31841,-1.0697)--(1.32074,-1.07092)--(1.32307,-1.07214)--(1.32541,-1.07337)--(1.32775,-1.07459)--(1.33009,-1.07582)--(1.33244,-1.07705)--(1.3348,-1.07828)--(1.33716,-1.07952)--(1.33952,-1.08076)--(1.34189,-1.082)--(1.34427,-1.08324)--(1.34665,-1.08448)--(1.34903,-1.08573)--(1.35142,-1.08697)--(1.35381,-1.08822)--(1.35621,-1.08947)--(1.35862,-1.09073)--(1.36103,-1.09198)--(1.36344,-1.09324)--(1.36586,-1.0945)--(1.36829,-1.09577)--
> (1.37072,-1.09703)--(1.37315,-1.0983)--(1.37559,-1.09957)--(1.37804,-1.10084)--(1.38049,-1.10211)--(1.38294,-1.10339)--(1.3854,-1.10466)--(1.38787,-1.10594)--(1.39034,-1.10723)--(1.39282,-1.10851)--(1.3953,-1.1098)--(1.39778,-1.11108)--(1.40028,-1.11238)--(1.40277,-1.11367)--(1.40528,-1.11496)--(1.40778,-1.11626)--(1.4103,-1.11756)--(1.41282,-1.11887)--(1.41534,-1.12017)--(1.41787,-1.12148)--(1.42041,-1.12279)--(1.42295,-1.1241)--(1.42549,-1.12541)--(1.42804,-1.12673)--(1.4306,-1.12805)--
> (1.43316,-1.12937)--(1.43573,-1.13069)--(1.43831,-1.13202)--(1.44088,-1.13334)--(1.44347,-1.13467)--(1.44606,-1.13601)--(1.44866,-1.13734)--(1.45126,-1.13868)--(1.45386,-1.14002)--(1.45648,-1.14136)--(1.4591,-1.14271)--(1.46172,-1.14405)--(1.46435,-1.1454)--(1.46699,-1.14676)--(1.46963,-1.14811)--(1.47228,-1.14947)--(1.47493,-1.15083)--(1.47759,-1.15219)--(1.48025,-1.15355)--(1.48293,-1.15492)--(1.4856,-1.15629)--(1.48829,-1.15766)--(1.49097,-1.15904)--(1.49367,-1.16041)--(1.49637,-1.16179)--
> (1.49908,-1.16317)--(1.50179,-1.16456)--(1.50451,-1.16595)--(1.50723,-1.16734)--(1.50996,-1.16873)--(1.5127,-1.17012)--(1.51544,-1.17152)--(1.51819,-1.17292)--(1.52095,-1.17432)--(1.52371,-1.17573)--(1.52648,-1.17714)--(1.52925,-1.17855)--(1.53203,-1.17996)--(1.53482,-1.18138)--(1.53761,-1.18279)--(1.54041,-1.18422)--(1.54322,-1.18564)--(1.54603,-1.18707)--(1.54885,-1.1885)--(1.55167,-1.18993)--(1.55451,-1.19136)--(1.55734,-1.1928)--(1.56019,-1.19424)--(1.56304,-1.19568)--(1.5659,-1.19713)--
> (1.56876,-1.19858)--(1.57163,-1.20003)--(1.57451,-1.20148)--(1.57739,-1.20294)--(1.58028,-1.2044)--(1.58318,-1.20586)--(1.58608,-1.20733)--(1.58899,-1.20879)--(1.59191,-1.21026)--(1.59483,-1.21174)--(1.59776,-1.21322)--(1.6007,-1.21469)--(1.60364,-1.21618)--(1.6066,-1.21766)--(1.60955,-1.21915)--(1.61252,-1.22064)--(1.61549,-1.22214)--(1.61847,-1.22363)--(1.62145,-1.22513)--(1.62445,-1.22664)--(1.62745,-1.22814)--(1.63045,-1.22965)--(1.63347,-1.23116)--(1.63649,-1.23268)--(1.63952,-1.23419)--
> (1.64255,-1.23572)--(1.64559,-1.23724)--(1.64864,-1.23877)--(1.6517,-1.2403)--(1.65476,-1.24183)--(1.65783,-1.24337)--(1.66091,-1.2449)--(1.664,-1.24645)--(1.66709,-1.24799)--(1.67019,-1.24954)--(1.6733,-1.25109)--(1.67642,-1.25265)--(1.67954,-1.25421)--(1.68267,-1.25577)--(1.68581,-1.25733)--(1.68895,-1.2589)--(1.69211,-1.26047)--(1.69527,-1.26204)--(1.69844,-1.26362)--(1.70161,-1.2652)--(1.7048,-1.26678)--(1.70799,-1.26837)--(1.71119,-1.26996)--(1.71439,-1.27155)--(1.71761,-1.27315)--
> (1.72083,-1.27475)--(1.72406,-1.27635)--(1.7273,-1.27796)--(1.73055,-1.27957)--(1.7338,-1.28118)--(1.73706,-1.2828)--(1.74033,-1.28442)--(1.74361,-1.28604)--(1.7469,-1.28767)--(1.75019,-1.2893)--(1.7535,-1.29093)--(1.75681,-1.29257)--(1.76013,-1.29421)--(1.76345,-1.29586)--(1.76679,-1.2975)--(1.77013,-1.29915)--(1.77348,-1.30081)--(1.77684,-1.30247)--(1.78021,-1.30413)--(1.78359,-1.30579)--(1.78698,-1.30746)--(1.79037,-1.30913)--(1.79377,-1.31081)--(1.79718,-1.31249)--(1.8006,-1.31417)--
> (1.80403,-1.31586)--(1.80747,-1.31755)--(1.81091,-1.31924)--(1.81437,-1.32094)--(1.81783,-1.32264)--(1.8213,-1.32435)--(1.82478,-1.32606)--(1.82827,-1.32777)--(1.83177,-1.32948)--(1.83528,-1.3312)--(1.8388,-1.33293)--(1.84232,-1.33465)--(1.84586,-1.33639)--(1.8494,-1.33812)--(1.85295,-1.33986)--(1.85651,-1.3416)--(1.86008,-1.34335)--(1.86366,-1.3451)--(1.86725,-1.34685)--(1.87085,-1.34861)--(1.87446,-1.35037)--(1.87808,-1.35214)--(1.8817,-1.35391)--(1.88534,-1.35568)--(1.88898,-1.35746)--
> (1.89264,-1.35924)--(1.8963,-1.36103)--(1.89998,-1.36282)--(1.90366,-1.36461)--(1.90735,-1.36641)--(1.91106,-1.36821)--(1.91477,-1.37002)--(1.91849,-1.37183)--(1.92222,-1.37364)--(1.92597,-1.37546)--(1.92972,-1.37728)--(1.93348,-1.37911)--(1.93725,-1.38094)--(1.94103,-1.38278)--(1.94482,-1.38462)--(1.94863,-1.38646)--(1.95244,-1.38831)--(1.95626,-1.39016)--(1.96009,-1.39202)--(1.96393,-1.39388)--(1.96779,-1.39574)--(1.97165,-1.39761)--(1.97552,-1.39949)--(1.97941,-1.40136)--(1.9833,-1.40325)--
> (1.98721,-1.40513)--(1.99112,-1.40702)--(1.99505,-1.40892)--(1.99898,-1.41082)--(2.00293,-1.41273)--(2.00689,-1.41463)--(2.01086,-1.41655)--(2.01484,-1.41847)--(2.01883,-1.42039)--(2.02283,-1.42232)--(2.02684,-1.42425)--(2.03086,-1.42619)--(2.0349,-1.42813)--(2.03894,-1.43007)--(2.043,-1.43202)--(2.04706,-1.43398)--(2.05114,-1.43594)--(2.05523,-1.4379)--(2.05933,-1.43987)--(2.06345,-1.44185)--(2.06757,-1.44382)--(2.07171,-1.44581)--(2.07585,-1.4478)--(2.08001,-1.44979)--(2.08418,-1.45179)--
> (2.08836,-1.45379)--(2.09256,-1.4558)--(2.09676,-1.45781)--(2.10098,-1.45983)--(2.10521,-1.46185)--(2.10945,-1.46388)--(2.1137,-1.46591)--(2.11796,-1.46795)--(2.12224,-1.46999)--(2.12653,-1.47204)--(2.13083,-1.47409)--(2.13514,-1.47615)--(2.13947,-1.47822)--(2.1438,-1.48028)--(2.14815,-1.48236)--(2.15252,-1.48444)--(2.15689,-1.48652)--(2.16128,-1.48861)--(2.16568,-1.49071)--(2.17009,-1.4928)--(2.17451,-1.49491)--(2.17895,-1.49702)--(2.1834,-1.49914)--(2.18787,-1.50126)--(2.19234,-1.50338)--
> (2.19683,-1.50552)--(2.20133,-1.50765)--(2.20585,-1.5098)--(2.21038,-1.51195)--(2.21492,-1.5141)--(2.21947,-1.51626)--(2.22404,-1.51842)--(2.22862,-1.52059)--(2.23322,-1.52277)--(2.23783,-1.52495)--(2.24245,-1.52714)--(2.24709,-1.52933)--(2.25174,-1.53153)--(2.2564,-1.53374)--(2.26108,-1.53595)--(2.26577,-1.53817)--(2.27047,-1.54039)--(2.27519,-1.54262)--(2.27992,-1.54485)--(2.28467,-1.54709)--(2.28943,-1.54934)--(2.2942,-1.55159)--(2.29899,-1.55384)--(2.3038,-1.55611)--(2.30862,-1.55838)--
> (2.31345,-1.56065)--(2.3183,-1.56294)--(2.32316,-1.56522)--(2.32803,-1.56752)--(2.33293,-1.56982)--(2.33783,-1.57212)--(2.34275,-1.57444)--(2.34769,-1.57676)--(2.35264,-1.57908)--(2.35761,-1.58141)--(2.36259,-1.58375)--(2.36758,-1.5861)--(2.3726,-1.58845)--(2.37762,-1.5908)--(2.38267,-1.59317)--(2.38772,-1.59554)--(2.3928,-1.59791)--(2.39789,-1.6003)--(2.40299,-1.60269)--(2.40811,-1.60508)--(2.41325,-1.60749)--(2.4184,-1.6099)--(2.42357,-1.61231)--(2.42876,-1.61474)--(2.43396,-1.61717)--
> (2.43918,-1.6196)--(2.44441,-1.62205)--(2.44966,-1.6245)--(2.45493,-1.62695)--(2.46021,-1.62942)--(2.46551,-1.63189)--(2.47083,-1.63437)--(2.47616,-1.63685)--(2.48151,-1.63935)--(2.48688,-1.64185)--(2.49226,-1.64435)--(2.49767,-1.64687)--(2.50308,-1.64939)--(2.50852,-1.65191)--(2.51397,-1.65445)--(2.51945,-1.65699)--(2.52493,-1.65954)--(2.53044,-1.6621)--(2.53596,-1.66467)--(2.54151,-1.66724)--(2.54707,-1.66982)--(2.55264,-1.6724)--(2.55824,-1.675)--(2.56385,-1.6776)--(2.56949,-1.68021)--
> (2.57514,-1.68283)--(2.58081,-1.68546)--(2.58649,-1.68809)--(2.5922,-1.69073)--(2.59793,-1.69338)--(2.60367,-1.69603)--(2.60943,-1.6987)--(2.61521,-1.70137)--(2.62101,-1.70405)--(2.62683,-1.70674)--(2.63267,-1.70944)--(2.63853,-1.71214)--(2.64441,-1.71485)--(2.65031,-1.71757)--(2.65623,-1.7203)--(2.66216,-1.72304)--(2.66812,-1.72579)--(2.6741,-1.72854)--(2.6801,-1.7313)--(2.68611,-1.73407)--(2.69215,-1.73685)--(2.69821,-1.73964)--(2.70429,-1.74244)--(2.71039,-1.74524)--(2.71651,-1.74806)--
> (2.72265,-1.75088)--(2.72881,-1.75371)--(2.73499,-1.75655)--(2.74119,-1.7594)--(2.74742,-1.76225)--(2.75367,-1.76512)--(2.75993,-1.76799)--(2.76622,-1.77088)--(2.77253,-1.77377)--(2.77887,-1.77667)--(2.78522,-1.77959)--(2.7916,-1.78251)--(2.798,-1.78544)--(2.80442,-1.78838)--(2.81086,-1.79132)--(2.81733,-1.79428)--(2.82382,-1.79725)--(2.83033,-1.80023)--(2.83686,-1.80321)--(2.84342,-1.80621)--(2.85,-1.80921)--(2.85661,-1.81223)--(2.86323,-1.81525)--(2.86988,-1.81829)--(2.87656,-1.82133)--
> (2.88326,-1.82439)--(2.88998,-1.82745)--(2.89672,-1.83053)--(2.90349,-1.83361)--(2.91029,-1.8367)--(2.9171,-1.83981)--(2.92395,-1.84292)--(2.93082,-1.84605)--(2.93771,-1.84918)--(2.94462,-1.85233)--(2.95157,-1.85549)--(2.95853,-1.85865)--(2.96553,-1.86183)--(2.97255,-1.86502)--(2.97959,-1.86822)--(2.98666,-1.87143)--(2.99375,-1.87465)--(3.00088,-1.87788)--(3.00802,-1.88112)--(3.0152,-1.88437)--(3.0224,-1.88763)--(3.02963,-1.89091)--(3.03688,-1.8942)--(3.04416,-1.89749)--(3.05147,-1.9008)--
> (3.0588,-1.90412)--(3.06617,-1.90745)--(3.07356,-1.91079)--(3.08097,-1.91415)--(3.08842,-1.91751)--(3.09589,-1.92089)--(3.10339,-1.92428)--(3.11092,-1.92768)--(3.11848,-1.93109)--(3.12607,-1.93452)--(3.13368,-1.93796)--(3.14133,-1.9414)--(3.149,-1.94486)--(3.15671,-1.94834)--(3.16444,-1.95182)--(3.1722,-1.95532)--(3.17999,-1.95883)--(3.18782,-1.96235)--(3.19567,-1.96589)--(3.20355,-1.96943)--(3.21146,-1.97299)--(3.21941,-1.97657)--(3.22738,-1.98015)--(3.23539,-1.98375)--(3.24342,-1.98736)--
> (3.25149,-1.99099)--(3.25959,-1.99463)--(3.26772,-1.99828)--(3.27589,-2.00194)--(3.28408,-2.00562)--(3.29231,-2.00931)--(3.30057,-2.01302)--(3.30887,-2.01673)--(3.31719,-2.02047)--(3.32555,-2.02421)--(3.33395,-2.02797)--(3.34237,-2.03175)--(3.35083,-2.03553)--(3.35933,-2.03934)--(3.36786,-2.04315)--(3.37642,-2.04698)--(3.38502,-2.05083)--(3.39365,-2.05469)--(3.40231,-2.05856)--(3.41102,-2.06245)--(3.41975,-2.06635)--(3.42853,-2.07027)--(3.43734,-2.0742)--(3.44618,-2.07815)--(3.45506,-2.08211)--
> (3.46398,-2.08609)--(3.47294,-2.09008)--(3.48193,-2.09409)--(3.49096,-2.09812)--(3.50002,-2.10216)--(3.50913,-2.10621)--(3.51827,-2.11028)--(3.52745,-2.11437)--(3.53667,-2.11847)--(3.54593,-2.12259)--(3.55522,-2.12673)--(3.56456,-2.13088)--(3.57393,-2.13504)--(3.58335,-2.13923)--(3.5928,-2.14343)--(3.6023,-2.14765)--(3.61183,-2.15188)--(3.62141,-2.15613)--(3.63102,-2.1604)--(3.64068,-2.16468)--(3.65038,-2.16899)--(3.66012,-2.17331)--(3.6699,-2.17764)--(3.67973,-2.182)--(3.6896,-2.18637)--
> (3.69951,-2.19076)--(3.70946,-2.19517)--(3.71946,-2.19959)--(3.7295,-2.20404)--(3.73958,-2.2085)--(3.74971,-2.21298)--(3.75988,-2.21748)--(3.7701,-2.222)--(3.78036,-2.22654)--(3.79067,-2.23109)--(3.80103,-2.23567)--(3.81143,-2.24026)--(3.82187,-2.24487)--(3.83237,-2.2495)--(3.84291,-2.25415)--(3.8535,-2.25883)--(3.86413,-2.26352)--(3.87481,-2.26823)--(3.88555,-2.27296)--(3.89633,-2.27771)--(3.90716,-2.28248)--(3.91803,-2.28727)--(3.92896,-2.29209)--(3.93994,-2.29692)--(3.95097,-2.30177)--
> (3.96205,-2.30665)--(3.97318,-2.31154)--(3.98436,-2.31646)--(3.99559,-2.3214)--(4.00688,-2.32636)--(4.01821,-2.33134)--(4.0296,-2.33635)--(4.04105,-2.34137)--(4.05254,-2.34642)--(4.06409,-2.35149)--(4.0757,-2.35658)--(4.08736,-2.3617)--(4.09907,-2.36684)--(4.11084,-2.372)--(4.12267,-2.37719)--(4.13455,-2.38239)--(4.14649,-2.38763)--(4.15849,-2.39288)--(4.17054,-2.39816)--(4.18265,-2.40346)--(4.19482,-2.40879)--(4.20705,-2.41414)--(4.21934,-2.41952)--(4.23169,-2.42492)--(4.24409,-2.43035)--
> (4.25656,-2.4358)--(4.26909,-2.44127)--(4.28168,-2.44677)--(4.29433,-2.4523)--(4.30705,-2.45785)--(4.31982,-2.46343)--(4.33266,-2.46904)--(4.34557,-2.47467)--(4.35854,-2.48033)--(4.37157,-2.48601)--(4.38467,-2.49173)--(4.39783,-2.49747)--(4.41106,-2.50323)--(4.42436,-2.50903)--(4.43772,-2.51485)--(4.45115,-2.5207)--(4.46465,-2.52658)--(4.47822,-2.53248)--(4.49185,-2.53842)--(4.50556,-2.54438)--(4.51934,-2.55038)--(4.53318,-2.5564)--(4.5471,-2.56245)--(4.56109,-2.56853)--(4.57516,-2.57465)--
> (4.58929,-2.58079)--(4.60351,-2.58696)--(4.61779,-2.59317)--(4.63215,-2.5994)--(4.64658,-2.60567)--(4.66109,-2.61196)--(4.67568,-2.61829)--(4.69034,-2.62465)--(4.70509,-2.63105)--(4.71991,-2.63747)--(4.73481,-2.64393)--(4.74979,-2.65042)--(4.76485,-2.65695)--(4.77999,-2.66351)--(4.79521,-2.6701)--(4.81051,-2.67672)--(4.8259,-2.68338)--(4.84137,-2.69008)--(4.85693,-2.69681)--(4.87257,-2.70357)--(4.88829,-2.71038)--(4.90411,-2.71721)--(4.92,-2.72408)--(4.93599,-2.73099)--(4.95207,-2.73794)--
> (4.96823,-2.74492)--(4.98449,-2.75194)--(5.00084,-2.759)--(5.01727,-2.7661)--(5.0338,-2.77323)--(5.05043,-2.7804)--(5.06715,-2.78761)--(5.08396,-2.79486)--(5.10087,-2.80215)--(5.11787,-2.80948)--(5.13497,-2.81685)--(5.15217,-2.82426)--(5.16947,-2.83172)--(5.18687,-2.83921)--(5.20437,-2.84674)--(5.22197,-2.85432)--(5.23967,-2.86194)--(5.25748,-2.8696)--(5.27539,-2.87731)--(5.2934,-2.88506)--(5.31152,-2.89285)--(5.32975,-2.90068)--(5.34809,-2.90857)--(5.36653,-2.91649)--(5.38509,-2.92446)--
> (5.40376,-2.93248)--(5.42253,-2.94055)--(5.44143,-2.94866)--(5.46043,-2.95681)--(5.47955,-2.96502)--(5.49879,-2.97327)--(5.51814,-2.98158)--(5.53761,-2.98993)--(5.5572,-2.99833)--(5.57691,-3.00678)--(5.59674,-3.01528)--(5.6167,-3.02383)--(5.63678,-3.03243)--(5.65698,-3.04108)--(5.67731,-3.04979)--(5.69776,-3.05855)--(5.71835,-3.06736)--(5.73906,-3.07622)--(5.75991,-3.08514)--(5.78089,-3.09412)--(5.802,-3.10315)--(5.82324,-3.11223)--(5.84462,-3.12137)--(5.86614,-3.13057)--(5.8878,-3.13983)--
> (5.9096,-3.14914)--(5.93154,-3.15851)--(5.95362,-3.16794)--(5.97584,-3.17743)--(5.99821,-3.18698)--(6.02073,-3.19659)--(6.0434,-3.20627)--(6.06621,-3.216)--(6.08918,-3.2258)--(6.1123,-3.23566)--(6.13558,-3.24558)--(6.15901,-3.25557)--(6.18259,-3.26562)--(6.20634,-3.27574)--(6.23025,-3.28593)--(6.25432,-3.29618)--(6.27855,-3.3065)--(6.30295,-3.31689)--(6.32752,-3.32735)--(6.35226,-3.33788)--(6.37717,-3.34848)--(6.40225,-3.35915)--(6.4275,-3.36989)--(6.45293,-3.38071)--(6.47854,-3.3916)--
> (6.50433,-3.40256)--(6.5303,-3.4136)--(6.55646,-3.42472)--(6.5828,-3.43591)--(6.60933,-3.44718)--(6.63605,-3.45853)--(6.66296,-3.46996)--(6.69007,-3.48146)--(6.71737,-3.49305)--(6.74487,-3.50472)--(6.77257,-3.51648)--(6.80047,-3.52832)--(6.82858,-3.54024)--(6.85689,-3.55225)--(6.88542,-3.56434)--(6.91415,-3.57652)--(6.9431,-3.58879)--(6.97227,-3.60115)--(7.00166,-3.6136)--(7.03126,-3.62615)--(7.0611,-3.63878)--(7.09115,-3.65151)--(7.12144,-3.66433)--(7.15196,-3.67725)--(7.18271,-3.69027)--
> (7.2137,-3.70338)--(7.24493,-3.71659)--(7.27641,-3.72991)--(7.30813,-3.74332)--(7.3401,-3.75684)--(7.37231,-3.77046)--(7.40479,-3.78419)--(7.43752,-3.79802)--(7.47051,-3.81196)--(7.50376,-3.82601)--(7.53729,-3.84017)--(7.57108,-3.85444)--(7.60514,-3.86883)--(7.63949,-3.88333)--(7.67411,-3.89794)--(7.70901,-3.91267)--(7.74421,-3.92752)--(7.77969,-3.94249)--(7.81547,-3.95759)--(7.85154,-3.9728)--(7.88792,-3.98814)--(7.9246,-4.00361)--(7.96159,-4.0192)--(7.9989,-4.03492)--(8.03652,-4.05078)--
> (8.07446,-4.06676)--(8.11273,-4.08289)--(8.15133,-4.09914)--(8.19026,-4.11554)--(8.22953,-4.13207)--(8.26914,-4.14875)--(8.3091,-4.16557)--(8.34941,-4.18254)--(8.39008,-4.19965)--(8.43111,-4.21691)--(8.47251,-4.23432)--(8.51427,-4.25189)--(8.55642,-4.26961)--(8.59894,-4.28749)--(8.64185,-4.30553)--(8.68515,-4.32373)--(8.72885,-4.34209)--(8.77295,-4.36062)--(8.81746,-4.37932)--(8.86238,-4.39819)--(8.90772,-4.41724)--(8.95349,-4.43646)--(8.99969,-4.45585)--(9.04632,-4.47543)--(9.0934,-4.49519)--
> (9.14093,-4.51514)--(9.18892,-4.53528)--(9.23737,-4.5556)--(9.28629,-4.57612)--(9.33569,-4.59684)--(9.38557,-4.61776)--(9.43594,-4.63888)--(9.48682,-4.66021)--(9.53819,-4.68175)--(9.59008,-4.70349)--(9.64249,-4.72546)--(9.69543,-4.74764)--(9.74891,-4.77004)--(9.80294,-4.79267)--(9.85751,-4.81553)--(9.91265,-4.83862)--(9.96836,-4.86194)--(10.0247,-4.88551)--(10.0815,-4.90932)--(10.139,-4.93337)--(10.1971,-4.95768)--(10.2558,-4.98224)--(10.3151,-5.00706)--(10.3751,-5.03215)--(10.4357,-5.0575)--
> (10.497,-5.08312)--(10.5589,-5.10902)--(10.6216,-5.1352)--(10.6849,-5.16167)--(10.7489,-5.18843)--(10.8136,-5.21548)--(10.8791,-5.24283)--(10.9453,-5.27049)--(11.0122,-5.29846)--(11.08,-5.32674)--(11.1485,-5.35535)--(11.2177,-5.38428)--(11.2878,-5.41355)--(11.3587,-5.44315)--(11.4305,-5.4731)--(11.5031,-5.5034)--(11.5765,-5.53405)--(11.6509,-5.56507)--(11.7261,-5.59646)--(11.8023,-5.62822)--(11.8793,-5.66037)--(11.9573,-5.6929)--(12.0363,-5.72584)--(12.1163,-5.75918)--(12.1973,-5.79293)--
> (12.2792,-5.8271)--(12.3622,-5.86171)--(12.4463,-5.89674)--(12.5315,-5.93223)--(12.6177,-5.96816)--(12.7051,-6.00456)--(12.7936,-6.04143)--(12.8833,-6.07878)--(12.9741,-6.11662)--(13.0662,-6.15496)--(13.1595,-6.19381)--(13.2541,-6.23319)--(13.3499,-6.27309)--(13.4471,-6.31353)--(13.5456,-6.35453)--(13.6455,-6.39609)--(13.7468,-6.43823)--(13.8495,-6.48096)--(13.9536,-6.52429)--(14.0593,-6.56823)--(14.1664,-6.6128)--(14.2752,-6.65801)--(14.3855,-6.70388)--(14.4974,-6.75042)--(14.611,-6.79764)--
> (14.7262,-6.84556)--(14.8432,-6.89419)--(14.962,-6.94356)--(15.0826,-6.99368)--(15.2051,-7.04456)--(15.3294,-7.09623)--(15.4557,-7.14869)--(15.584,-7.20198)--(15.7143,-7.25611)--(15.8467,-7.3111)--(15.9812,-7.36697)--(16.118,-7.42375)--(16.2569,-7.48145)--(16.3982,-7.54009)--(16.5418,-7.59971)--(16.6878,-7.66033)--(16.8363,-7.72196)--(16.9874,-7.78465)--(17.141,-7.84841)--(17.2973,-7.91327)--(17.4564,-7.97927)--(17.6183,-8.04642)--(17.783,-8.11477)--(17.9508,-8.18435)--(18.1216,-8.25518)--
> (18.2955,-8.32731)--(18.4726,-8.40077)--(18.6531,-8.47559)--(18.8369,-8.55182)--(19.0243,-8.6295)--(19.2152,-8.70866)--(19.4099,-8.78935)--(19.6084,-8.87162)--(19.8108,-8.95551)--(20.0172,-9.04107)--(20.2279,-9.12835)--(20.4428,-9.21741)--(20.6622,-9.3083)--(20.8861,-9.40107)--(21.1147,-9.49579)--(21.3483,-9.59252)--(21.5868,-9.69132)--(21.8305,-9.79226)--(22.0796,-9.89541)--(22.3342,-10.0008)--(22.5945,-10.1086)--(22.8608,-10.2189)--(23.1331,-10.3317)--(23.4118,-10.447)--(23.6971,-10.5651)--
> (23.9892,-10.686)--(24.2882,-10.8098)--(24.5946,-10.9366)--(24.9086,-11.0666)--(25.2304,-11.1997)--(25.5603,-11.3363)--(25.8987,-11.4763)--(26.2459,-11.62)--(26.6023,-11.7674)--(26.9681,-11.9187)--(27.3439,-12.0742)--(27.7299,-12.2339)--(28.1266,-12.398)--(28.5346,-12.5667)--(28.9542,-12.7402)--(29.3859,-12.9188)--(29.8304,-13.1026)--(30.2881,-13.2918)--(30.7597,-13.4868)--(31.2458,-13.6878)--(31.7471,-13.8951)--(32.2643,-14.1089)--(32.7982,-14.3297)--(33.3496,-14.5576)--(33.9194,-14.7931)--
> (34.5085,-15.0366)--(35.1179,-15.2885)--(35.7488,-15.5493)--(36.4021,-15.8193)--(37.0792,-16.0991)--(37.7814,-16.3893)--(38.5101,-16.6904)--(39.2669,-17.0031)--(40.0533,-17.3281)--(40.8712,-17.666)--(41.7225,-18.0178)--(42.6093,-18.3841)--(43.5338,-18.7661)--(44.4985,-19.1646)--(45.5061,-19.5809)--(46.5595,-20.016)--(47.6619,-20.4714)--(48.8169,-20.9485)--(50.0282,-21.4488)--(51.3001,-21.9741)--(52.6372,-22.5264)--(54.0448,-23.1077)--(55.5284,-23.7205)--(57.0946,-24.3672)--(58.7502,-25.051)--
> (60.5033,-25.7749)--(62.3627,-26.5427)--(64.3383,-27.3585)--(66.4415,-28.227)--(68.6849,-29.1533)--(71.0832,-30.1436)--(73.6528,-31.2045)--(76.4129,-32.3441)--(79.3854,-33.5714)--(82.5959,-34.8969)--(86.0741,-36.3329)--(89.8549,-37.8938)--(93.9797,-39.5967)--(98.4976,-41.4618)--(103.468,-43.5136)--(108.961,-45.7814)--(115.066,-48.3014)--(121.889,-51.1182)--(129.566,-54.2873)--(138.268,-57.8793)--(148.214,-61.985)--(159.692,-66.723)--(173.086,-72.2517)--(188.918,-78.7869)--(207.922,-86.631)--
> (231.156,-96.2213)--(260.209,-108.214)--(297.582,-123.64);
> draw(curve, rgb(0,0,255)+solid );
> path curve = (-297.926,122.153)--(-260.86,106.854)--(-232.016,94.9481)--(-208.933,85.4198)--(-190.04,77.6215)--(-174.292,71.1212)--(-160.964,65.6197)--(-149.538,60.9032)--(-139.634,56.8149)--(-130.967,53.2371)--(-123.318,50.0798)--(-116.519,47.2729)--(-110.435,44.7613)--(-104.958,42.5005)--(-100.003,40.4549)--(-95.4982,38.5951)--(-91.3847,36.8969)--(-87.6137,35.34)--(-84.1443,33.9076)--(-80.9415,32.5853)--(-77.9759,31.3609)--(-75.222,30.2238)--(-72.6579,29.1651)--(-70.2646,28.1769)--
> (-68.0257,27.2524)--(-65.9266,26.3857)--(-63.9547,25.5714)--(-62.0987,24.805)--(-60.3488,24.0823)--(-58.696,23.3997)--(-57.1325,22.754)--(-55.6513,22.1423)--(-54.246,21.5619)--(-52.9109,21.0105)--(-51.641,20.4859)--(-50.4315,19.9863)--(-49.2782,19.5099)--(-48.1773,19.0552)--(-47.1253,18.6206)--(-46.1191,18.2049)--(-45.1556,17.8069)--(-44.2323,17.4254)--(-43.3467,17.0595)--(-42.4965,16.7082)--(-41.6796,16.3706)--(-40.8941,16.046)--(-40.1382,15.7337)--(-39.4104,15.4329)--(-38.709,15.143)--
> (-38.0326,14.8635)--(-37.3799,14.5937)--(-36.7498,14.3333)--(-36.141,14.0816)--(-35.5525,13.8383)--(-34.9833,13.603)--(-34.4324,13.3753)--(-33.8991,13.1547)--(-33.3823,12.9411)--(-32.8815,12.734)--(-32.3959,12.5332)--(-31.9247,12.3383)--(-31.4674,12.1492)--(-31.0234,11.9656)--(-30.592,11.7871)--(-30.1728,11.6137)--(-29.7652,11.4451)--(-29.3688,11.2811)--(-28.9831,11.1216)--(-28.6077,10.9662)--(-28.2421,10.815)--(-27.8861,10.6676)--(-27.5392,10.5241)--(-27.201,10.3841)--(-26.8713,10.2477)--
> (-26.5498,10.1146)--(-26.2361,9.98472)--(-25.9299,9.85798)--(-25.631,9.73424)--(-25.3392,9.61341)--(-25.0541,9.49538)--(-24.7756,9.38005)--(-24.5035,9.26733)--(-24.2374,9.15714)--(-23.9773,9.04938)--(-23.7228,8.94399)--(-23.4739,8.84087)--(-23.2304,8.73997)--(-22.992,8.6412)--(-22.7586,8.54451)--(-22.5301,8.44982)--(-22.3064,8.35707)--(-22.0871,8.26621)--(-21.8723,8.17718)--(-21.6618,8.08991)--(-21.4555,8.00437)--(-21.2532,7.9205)--(-21.0549,7.83825)--(-20.8603,7.75757)--(-20.6695,7.67842)--
> (-20.4822,7.60075)--(-20.2985,7.52453)--(-20.1182,7.44972)--(-19.9411,7.37627)--(-19.7673,7.30414)--(-19.5966,7.23331)--(-19.429,7.16374)--(-19.2643,7.09539)--(-19.1025,7.02823)--(-18.9436,6.96223)--(-18.7873,6.89737)--(-18.6338,6.8336)--(-18.4828,6.77091)--(-18.3344,6.70927)--(-18.1884,6.64864)--(-18.0449,6.58902)--(-17.9037,6.53036)--(-17.7648,6.47265)--(-17.6282,6.41586)--(-17.4937,6.35998)--(-17.3614,6.30497)--(-17.2311,6.25083)--(-17.1029,6.19752)--(-16.9767,6.14504)--(-16.8524,6.09336)--
> (-16.73,6.04246)--(-16.6095,5.99232)--(-16.4908,5.94293)--(-16.3738,5.89427)--(-16.2586,5.84633)--(-16.1451,5.79909)--(-16.0332,5.75253)--(-15.923,5.70664)--(-15.8143,5.6614)--(-15.7072,5.6168)--(-15.6016,5.57283)--(-15.4975,5.52948)--(-15.3948,5.48672)--(-15.2936,5.44455)--(-15.1938,5.40296)--(-15.0953,5.36193)--(-14.9982,5.32146)--(-14.9024,5.28152)--(-14.8079,5.24212)--(-14.7146,5.20323)--(-14.6226,5.16486)--(-14.5317,5.12698)--(-14.4421,5.0896)--(-14.3536,5.05269)--(-14.2663,5.01626)--
> (-14.1801,4.98029)--(-14.095,4.94477)--(-14.0109,4.90969)--(-13.928,4.87505)--(-13.846,4.84084)--(-13.7651,4.80704)--(-13.6852,4.77366)--(-13.6062,4.74069)--(-13.5282,4.70811)--(-13.4512,4.67592)--(-13.3751,4.64411)--(-13.2999,4.61268)--(-13.2256,4.58162)--(-13.1522,4.55092)--(-13.0796,4.52058)--(-13.0079,4.49059)--(-12.937,4.46094)--(-12.867,4.43163)--(-12.7977,4.40265)--(-12.7292,4.374)--(-12.6615,4.34566)--(-12.5946,4.31765)--(-12.5284,4.28994)--(-12.463,4.26254)--(-12.3983,4.23544)--
> (-12.3343,4.20863)--(-12.271,4.18211)--(-12.2084,4.15588)--(-12.1465,4.12993)--(-12.0853,4.10425)--(-12.0247,4.07885)--(-11.9647,4.05371)--(-11.9054,4.02884)--(-11.8468,4.00422)--(-11.7887,3.97986)--(-11.7312,3.95575)--(-11.6744,3.93189)--(-11.6181,3.90826)--(-11.5624,3.88488)--(-11.5073,3.86174)--(-11.4528,3.83882)--(-11.3988,3.81613)--(-11.3453,3.79367)--(-11.2924,3.77143)--(-11.24,3.74941)--(-11.1881,3.7276)--(-11.1368,3.70601)--(-11.0859,3.68462)--(-11.0356,3.66344)--(-10.9857,3.64246)--
> (-10.9364,3.62168)--(-10.8875,3.6011)--(-10.839,3.58071)--(-10.7911,3.56051)--(-10.7436,3.5405)--(-10.6965,3.52067)--(-10.6499,3.50103)--(-10.6037,3.48157)--(-10.558,3.46228)--(-10.5126,3.44318)--(-10.4677,3.42424)--(-10.4232,3.40548)--(-10.3792,3.38688)--(-10.3355,3.36845)--(-10.2922,3.35018)--(-10.2493,3.33207)--(-10.2068,3.31413)--(-10.1647,3.29634)--(-10.1229,3.2787)--(-10.0816,3.26122)--(-10.0406,3.24389)--(-9.9999,3.2267)--(-9.95961,3.20967)--(-9.91967,3.19278)--(-9.88007,3.17603)--
> (-9.84082,3.15942)--(-9.80191,3.14296)--(-9.76333,3.12663)--(-9.72508,3.11043)--(-9.68715,3.09437)--(-9.64955,3.07844)--(-9.61226,3.06265)--(-9.57529,3.04698)--(-9.53863,3.03144)--(-9.50227,3.01602)--(-9.46621,3.00073)--(-9.43045,2.98557)--(-9.39499,2.97052)--(-9.35981,2.95559)--(-9.32492,2.94078)--(-9.29032,2.92609)--(-9.25599,2.91152)--(-9.22194,2.89705)--(-9.18817,2.8827)--(-9.15466,2.86846)--(-9.12143,2.85433)--(-9.08845,2.84031)--(-9.05574,2.8264)--(-9.02328,2.81259)--(-8.99108,2.79889)--
> (-8.95913,2.78529)--(-8.92743,2.7718)--(-8.89597,2.7584)--(-8.86475,2.7451)--(-8.83378,2.73191)--(-8.80304,2.71881)--(-8.77254,2.70581)--(-8.74227,2.6929)--(-8.71223,2.68009)--(-8.68241,2.66737)--(-8.65282,2.65474)--(-8.62345,2.6422)--(-8.5943,2.62976)--(-8.56537,2.6174)--(-8.53665,2.60513)--(-8.50814,2.59295)--(-8.47984,2.58086)--(-8.45175,2.56885)--(-8.42386,2.55692)--(-8.39618,2.54508)--(-8.36869,2.53332)--(-8.34141,2.52164)--(-8.31432,2.51004)--(-8.28742,2.49853)--(-8.26072,2.48709)--
> (-8.23421,2.47573)--(-8.20788,2.46444)--(-8.18174,2.45324)--(-8.15578,2.44211)--(-8.13001,2.43105)--(-8.10442,2.42007)--(-8.079,2.40916)--(-8.05376,2.39832)--(-8.0287,2.38756)--(-8.0038,2.37686)--(-7.97908,2.36624)--(-7.95453,2.35569)--(-7.93015,2.3452)--(-7.90593,2.33479)--(-7.88187,2.32444)--(-7.85798,2.31416)--(-7.83425,2.30394)--(-7.81068,2.29379)--(-7.78726,2.2837)--(-7.764,2.27368)--(-7.7409,2.26372)--(-7.71794,2.25383)--(-7.69514,2.244)--(-7.67249,2.23422)--(-7.64999,2.22451)--
> (-7.62764,2.21486)--(-7.60543,2.20527)--(-7.58336,2.19574)--(-7.56144,2.18627)--(-7.53965,2.17686)--(-7.51801,2.1675)--(-7.49651,2.1582)--(-7.47514,2.14896)--(-7.45391,2.13977)--(-7.43282,2.13064)--(-7.41185,2.12156)--(-7.39102,2.11253)--(-7.37033,2.10357)--(-7.34976,2.09465)--(-7.32931,2.08579)--(-7.309,2.07697)--(-7.28881,2.06822)--(-7.26875,2.05951)--(-7.24881,2.05085)--(-7.22899,2.04224)--(-7.2093,2.03369)--(-7.18972,2.02518)--(-7.17027,2.01672)--(-7.15093,2.00831)--(-7.13171,1.99995)--
> (-7.11261,1.99163)--(-7.09362,1.98337)--(-7.07474,1.97515)--(-7.05598,1.96697)--(-7.03733,1.95884)--(-7.01879,1.95076)--(-7.00036,1.94272)--(-6.98204,1.93473)--(-6.96382,1.92678)--(-6.94572,1.91888)--(-6.92772,1.91102)--(-6.90982,1.9032)--(-6.89203,1.89542)--(-6.87434,1.88769)--(-6.85676,1.88)--(-6.83927,1.87235)--(-6.82189,1.86474)--(-6.80461,1.85718)--(-6.78742,1.84965)--(-6.77034,1.84216)--(-6.75335,1.83472)--(-6.73646,1.82731)--(-6.71966,1.81994)--(-6.70296,1.81261)--(-6.68635,1.80532)--
> (-6.66984,1.79807)--(-6.65341,1.79086)--(-6.63708,1.78368)--(-6.62084,1.77654)--(-6.60469,1.76944)--(-6.58863,1.76238)--(-6.57266,1.75535)--(-6.55678,1.74835)--(-6.54098,1.7414)--(-6.52527,1.73447)--(-6.50964,1.72759)--(-6.4941,1.72073)--(-6.47865,1.71392)--(-6.46328,1.70713)--(-6.44799,1.70038)--(-6.43278,1.69367)--(-6.41766,1.68699)--(-6.40262,1.68034)--(-6.38765,1.67372)--(-6.37277,1.66714)--(-6.35796,1.66059)--(-6.34324,1.65407)--(-6.32859,1.64758)--(-6.31402,1.64112)--(-6.29952,1.6347)--
> (-6.28511,1.62831)--(-6.27076,1.62195)--(-6.25649,1.61561)--(-6.2423,1.60931)--(-6.22818,1.60304)--(-6.21413,1.5968)--(-6.20016,1.59059)--(-6.18625,1.58441)--(-6.17242,1.57825)--(-6.15866,1.57213)--(-6.14497,1.56603)--(-6.13135,1.55997)--(-6.1178,1.55393)--(-6.10432,1.54792)--(-6.0909,1.54194)--(-6.07755,1.53598)--(-6.06427,1.53005)--(-6.05106,1.52415)--(-6.03791,1.51828)--(-6.02483,1.51243)--(-6.01182,1.50661)--(-5.99887,1.50082)--(-5.98598,1.49505)--(-5.97315,1.48931)--(-5.96039,1.4836)--
> (-5.9477,1.47791)--(-5.93506,1.47224)--(-5.92249,1.46661)--(-5.90998,1.46099)--(-5.89752,1.4554)--(-5.88513,1.44984)--(-5.8728,1.4443)--(-5.86053,1.43878)--(-5.84832,1.43329)--(-5.83617,1.42782)--(-5.82407,1.42238)--(-5.81204,1.41696)--(-5.80006,1.41157)--(-5.78813,1.40619)--(-5.77627,1.40084)--(-5.76446,1.39552)--(-5.75271,1.39021)--(-5.74101,1.38493)--(-5.72937,1.37967)--(-5.71778,1.37443)--(-5.70625,1.36922)--(-5.69477,1.36403)--(-5.68334,1.35886)--(-5.67197,1.35371)--(-5.66065,1.34858)--
> (-5.64938,1.34347)--(-5.63816,1.33839)--(-5.627,1.33332)--(-5.61589,1.32828)--(-5.60483,1.32326)--(-5.59381,1.31826)--(-5.58285,1.31328)--(-5.57194,1.30831)--(-5.56108,1.30337)--(-5.55027,1.29845)--(-5.53951,1.29355)--(-5.52879,1.28867)--(-5.51813,1.28381)--(-5.50751,1.27897)--(-5.49694,1.27415)--(-5.48642,1.26934)--(-5.47594,1.26456)--(-5.46551,1.25979)--(-5.45513,1.25505)--(-5.44479,1.25032)--(-5.4345,1.24561)--(-5.42426,1.24092)--(-5.41406,1.23625)--(-5.4039,1.2316)--(-5.39379,1.22696)--
> (-5.38373,1.22234)--(-5.3737,1.21774)--(-5.36372,1.21316)--(-5.35379,1.2086)--(-5.3439,1.20405)--(-5.33405,1.19952)--(-5.32424,1.19501)--(-5.31448,1.19051)--(-5.30475,1.18604)--(-5.29507,1.18157)--(-5.28543,1.17713)--(-5.27584,1.1727)--(-5.26628,1.16829)--(-5.25676,1.1639)--(-5.24729,1.15952)--(-5.23785,1.15516)--(-5.22845,1.15081)--(-5.2191,1.14648)--(-5.20978,1.14217)--(-5.2005,1.13787)--(-5.19127,1.13359)--(-5.18207,1.12932)--(-5.1729,1.12507)--(-5.16378,1.12084)--(-5.15469,1.11662)--
> (-5.14565,1.11241)--(-5.13664,1.10822)--(-5.12766,1.10405)--(-5.11873,1.09989)--(-5.10983,1.09575)--(-5.10097,1.09162)--(-5.09214,1.0875)--(-5.08335,1.0834)--(-5.0746,1.07932)--(-5.06588,1.07524)--(-5.05719,1.07119)--(-5.04855,1.06714)--(-5.03993,1.06312)--(-5.03136,1.0591)--(-5.02281,1.0551)--(-5.0143,1.05111)--(-5.00583,1.04714)--(-4.99739,1.04318)--(-4.98898,1.03924)--(-4.98061,1.0353)--(-4.97227,1.03139)--(-4.96396,1.02748)--(-4.95569,1.02359)--(-4.94744,1.01971)--(-4.93924,1.01584)--
> (-4.93106,1.01199)--(-4.92292,1.00815)--(-4.9148,1.00433)--(-4.90672,1.00051)--(-4.89868,0.996711)--(-4.89066,0.992923)--(-4.88267,0.989147)--(-4.87472,0.985384)--(-4.86679,0.981633)--(-4.8589,0.977895)--(-4.85104,0.974169)--(-4.84321,0.970455)--(-4.8354,0.966753)--(-4.82763,0.963064)--(-4.81989,0.959386)--(-4.81218,0.95572)--(-4.80449,0.952067)--(-4.79684,0.948425)--(-4.78922,0.944794)--(-4.78162,0.941176)--(-4.77405,0.937568)--(-4.76652,0.933973)--(-4.75901,0.930389)--(-4.75153,0.926816)--
> (-4.74407,0.923255)--(-4.73665,0.919704)--(-4.72925,0.916165)--(-4.72188,0.912638)--(-4.71454,0.909121)--(-4.70723,0.905615)--(-4.69994,0.90212)--(-4.69268,0.898636)--(-4.68545,0.895163)--(-4.67824,0.8917)--(-4.67106,0.888248)--(-4.66391,0.884807)--(-4.65678,0.881376)--(-4.64968,0.877956)--(-4.64261,0.874547)--(-4.63556,0.871147)--(-4.62854,0.867758)--(-4.62154,0.864379)--(-4.61457,0.861011)--(-4.60762,0.857652)--(-4.6007,0.854304)--(-4.5938,0.850966)--(-4.58693,0.847637)--(-4.58009,0.844319)--
> (-4.57327,0.84101)--(-4.56647,0.837711)--(-4.5597,0.834422)--(-4.55295,0.831143)--(-4.54622,0.827873)--(-4.53952,0.824613)--(-4.53285,0.821362)--(-4.5262,0.818121)--(-4.51957,0.81489)--(-4.51296,0.811667)--(-4.50638,0.808454)--(-4.49982,0.805251)--(-4.49329,0.802056)--(-4.48677,0.798871)--(-4.48028,0.795694)--(-4.47382,0.792527)--(-4.46737,0.789369)--(-4.46095,0.78622)--(-4.45455,0.78308)--(-4.44818,0.779948)--(-4.44182,0.776826)--(-4.43549,0.773712)--(-4.42918,0.770607)--(-4.42289,0.76751)--
> (-4.41662,0.764422)--(-4.41038,0.761343)--(-4.40415,0.758272)--(-4.39795,0.75521)--(-4.39177,0.752157)--(-4.38561,0.749111)--(-4.37947,0.746074)--(-4.37335,0.743046)--(-4.36726,0.740025)--(-4.36118,0.737013)--(-4.35512,0.734009)--(-4.34909,0.731013)--(-4.34307,0.728025)--(-4.33708,0.725045)--(-4.3311,0.722074)--(-4.32515,0.71911)--(-4.31922,0.716154)--(-4.3133,0.713206)--(-4.30741,0.710266)--(-4.30153,0.707334)--(-4.29568,0.704409)--(-4.28984,0.701492)--(-4.28403,0.698583)--(-4.27823,0.695681)--
> (-4.27245,0.692787)--(-4.2667,0.689901)--(-4.26096,0.687022)--(-4.25524,0.68415)--(-4.24953,0.681286)--(-4.24385,0.678429)--(-4.23819,0.67558)--(-4.23254,0.672738)--(-4.22692,0.669903)--(-4.22131,0.667076)--(-4.21572,0.664256)--(-4.21014,0.661442)--(-4.20459,0.658636)--(-4.19905,0.655837)--(-4.19354,0.653046)--(-4.18804,0.650261)--(-4.18255,0.647483)--(-4.17709,0.644712)--(-4.17164,0.641948)--(-4.16621,0.639191)--(-4.1608,0.63644)--(-4.15541,0.633697);
> draw(curve, rgb(0,0,255)+solid );
> pair point = (-2.0561,3.82751);
> dot(point, rgb(0,0,255));
> pair point = (1.23366,-1.02489);
> dot(point, rgb(0,0,255));
> pair point = (4.12591,-3.47851);
> dot(point, rgb(0,0,255));
> pair point = (-6.23685,-1.73768);
> dot(point, rgb(255,0,0));
> pair point = (7.53905,3.41629);
> dot(point, rgb(0,0,255));
> path curve = (-2.53683,-3.59541)--(-2.53682,-3.59534)--(-2.53681,-3.59527)--(-2.5368,-3.5952)--(-2.53679,-3.59512)--(-2.53678,-3.59505)--(-2.53677,-3.59498)--(-2.53675,-3.59491)--(-2.53674,-3.59484)--(-2.53673,-3.59476)--(-2.53672,-3.59469)--(-2.53671,-3.59462)--(-2.5367,-3.59455)--(-2.53669,-3.59447)--(-2.53668,-3.5944)--(-2.53667,-3.59433)--(-2.53666,-3.59426)--(-2.53665,-3.59418)--(-2.53664,-3.59411)--(-2.53663,-3.59404)--(-2.53661,-3.59397)--(-2.5366,-3.5939)--(-2.53659,-3.59382)--
> (-2.53658,-3.59375)--(-2.53657,-3.59368)--(-2.53656,-3.59361)--(-2.53655,-3.59353)--(-2.53654,-3.59346)--(-2.53653,-3.59339)--(-2.53652,-3.59332)--(-2.53651,-3.59324)--(-2.5365,-3.59317)--(-2.53649,-3.5931)--(-2.53648,-3.59302)--(-2.53647,-3.59295)--(-2.53646,-3.59288)--(-2.53645,-3.59281)--(-2.53644,-3.59273)--(-2.53643,-3.59266)--(-2.53642,-3.59259)--(-2.53641,-3.59252)--(-2.5364,-3.59244)--(-2.53639,-3.59237)--(-2.53638,-3.5923)--(-2.53637,-3.59223)--(-2.53636,-3.59215)--(-2.53635,-3.59208)--
> (-2.53634,-3.59201)--(-2.53633,-3.59193)--(-2.53632,-3.59186)--(-2.53631,-3.59179)--(-2.5363,-3.59172)--(-2.53629,-3.59164)--(-2.53628,-3.59157)--(-2.53627,-3.5915)--(-2.53626,-3.59142)--(-2.53625,-3.59135)--(-2.53624,-3.59128)--(-2.53623,-3.59121)--(-2.53622,-3.59113)--(-2.53621,-3.59106)--(-2.5362,-3.59099)--(-2.53619,-3.59091)--(-2.53618,-3.59084)--(-2.53617,-3.59077)--(-2.53616,-3.59069)--(-2.53615,-3.59062)--(-2.53614,-3.59055)--(-2.53613,-3.59048)--(-2.53612,-3.5904)--(-2.53611,-3.59033)--
> (-2.5361,-3.59026)--(-2.53609,-3.59018)--(-2.53608,-3.59011)--(-2.53607,-3.59004)--(-2.53606,-3.58996)--(-2.53605,-3.58989)--(-2.53605,-3.58982)--(-2.53604,-3.58974)--(-2.53603,-3.58967)--(-2.53602,-3.5896)--(-2.53601,-3.58952)--(-2.536,-3.58945)--(-2.53599,-3.58938)--(-2.53598,-3.5893)--(-2.53597,-3.58923)--(-2.53596,-3.58916)--(-2.53595,-3.58908)--(-2.53594,-3.58901)--(-2.53593,-3.58894)--(-2.53593,-3.58886)--(-2.53592,-3.58879)--(-2.53591,-3.58872)--(-2.5359,-3.58864)--(-2.53589,-3.58857)--
> (-2.53588,-3.5885)--(-2.53587,-3.58842)--(-2.53586,-3.58835)--(-2.53585,-3.58828)--(-2.53584,-3.5882)--(-2.53584,-3.58813)--(-2.53583,-3.58805)--(-2.53582,-3.58798)--(-2.53581,-3.58791)--(-2.5358,-3.58783)--(-2.53579,-3.58776)--(-2.53578,-3.58769)--(-2.53577,-3.58761)--(-2.53577,-3.58754)--(-2.53576,-3.58746)--(-2.53575,-3.58739)--(-2.53574,-3.58732)--(-2.53573,-3.58724)--(-2.53572,-3.58717)--(-2.53571,-3.5871)--(-2.53571,-3.58702)--(-2.5357,-3.58695)--(-2.53569,-3.58687)--(-2.53568,-3.5868)--
> (-2.53567,-3.58673)--(-2.53566,-3.58665)--(-2.53565,-3.58658)--(-2.53565,-3.5865)--(-2.53564,-3.58643)--(-2.53563,-3.58636)--(-2.53562,-3.58628)--(-2.53561,-3.58621)--(-2.5356,-3.58614)--(-2.5356,-3.58606)--(-2.53559,-3.58599)--(-2.53558,-3.58591)--(-2.53557,-3.58584)--(-2.53556,-3.58576)--(-2.53556,-3.58569)--(-2.53555,-3.58562)--(-2.53554,-3.58554)--(-2.53553,-3.58547)--(-2.53552,-3.58539)--(-2.53552,-3.58532)--(-2.53551,-3.58525)--(-2.5355,-3.58517)--(-2.53549,-3.5851)--(-2.53548,-3.58502)--
> (-2.53548,-3.58495)--(-2.53547,-3.58487)--(-2.53546,-3.5848)--(-2.53545,-3.58473)--(-2.53544,-3.58465)--(-2.53544,-3.58458)--(-2.53543,-3.5845)--(-2.53542,-3.58443)--(-2.53541,-3.58435)--(-2.53541,-3.58428)--(-2.5354,-3.5842)--(-2.53539,-3.58413)--(-2.53538,-3.58406)--(-2.53537,-3.58398)--(-2.53537,-3.58391)--(-2.53536,-3.58383)--(-2.53535,-3.58376)--(-2.53534,-3.58368)--(-2.53534,-3.58361)--(-2.53533,-3.58353)--(-2.53532,-3.58346)--(-2.53531,-3.58338)--(-2.53531,-3.58331)--(-2.5353,-3.58324)--
> (-2.53529,-3.58316)--(-2.53528,-3.58309)--(-2.53528,-3.58301)--(-2.53527,-3.58294)--(-2.53526,-3.58286)--(-2.53526,-3.58279)--(-2.53525,-3.58271)--(-2.53524,-3.58264)--(-2.53523,-3.58256)--(-2.53523,-3.58249)--(-2.53522,-3.58241)--(-2.53521,-3.58234)--(-2.53521,-3.58226)--(-2.5352,-3.58219)--(-2.53519,-3.58211)--(-2.53518,-3.58204)--(-2.53518,-3.58196)--(-2.53517,-3.58189)--(-2.53516,-3.58181)--(-2.53516,-3.58174)--(-2.53515,-3.58166)--(-2.53514,-3.58159)--(-2.53514,-3.58151)--
> (-2.53513,-3.58144)--(-2.53512,-3.58136)--(-2.53512,-3.58129)--(-2.53511,-3.58121)--(-2.5351,-3.58114)--(-2.53509,-3.58106)--(-2.53509,-3.58099)--(-2.53508,-3.58091)--(-2.53507,-3.58084)--(-2.53507,-3.58076)--(-2.53506,-3.58069)--(-2.53505,-3.58061)--(-2.53505,-3.58054)--(-2.53504,-3.58046)--(-2.53504,-3.58039)--(-2.53503,-3.58031)--(-2.53502,-3.58024)--(-2.53502,-3.58016)--(-2.53501,-3.58008)--(-2.535,-3.58001)--(-2.535,-3.57993)--(-2.53499,-3.57986)--(-2.53498,-3.57978)--(-2.53498,-3.57971)--
> (-2.53497,-3.57963)--(-2.53496,-3.57956)--(-2.53496,-3.57948)--(-2.53495,-3.57941)--(-2.53495,-3.57933)--(-2.53494,-3.57925)--(-2.53493,-3.57918)--(-2.53493,-3.5791)--(-2.53492,-3.57903)--(-2.53492,-3.57895)--(-2.53491,-3.57888)--(-2.5349,-3.5788)--(-2.5349,-3.57872)--(-2.53489,-3.57865)--(-2.53489,-3.57857)--(-2.53488,-3.5785)--(-2.53487,-3.57842)--(-2.53487,-3.57835)--(-2.53486,-3.57827)--(-2.53486,-3.57819)--(-2.53485,-3.57812)--(-2.53484,-3.57804)--(-2.53484,-3.57797)--(-2.53483,-3.57789)--
> (-2.53483,-3.57782)--(-2.53482,-3.57774)--(-2.53482,-3.57766)--(-2.53481,-3.57759)--(-2.5348,-3.57751)--(-2.5348,-3.57744)--(-2.53479,-3.57736)--(-2.53479,-3.57728)--(-2.53478,-3.57721)--(-2.53478,-3.57713)--(-2.53477,-3.57706)--(-2.53476,-3.57698)--(-2.53476,-3.5769)--(-2.53475,-3.57683)--(-2.53475,-3.57675)--(-2.53474,-3.57667)--(-2.53474,-3.5766)--(-2.53473,-3.57652)--(-2.53473,-3.57645)--(-2.53472,-3.57637)--(-2.53472,-3.57629)--(-2.53471,-3.57622)--(-2.53471,-3.57614)--(-2.5347,-3.57606)--
> (-2.5347,-3.57599)--(-2.53469,-3.57591)--(-2.53469,-3.57584)--(-2.53468,-3.57576)--(-2.53467,-3.57568)--(-2.53467,-3.57561)--(-2.53466,-3.57553)--(-2.53466,-3.57545)--(-2.53465,-3.57538)--(-2.53465,-3.5753)--(-2.53464,-3.57522)--(-2.53464,-3.57515)--(-2.53463,-3.57507)--(-2.53463,-3.57499)--(-2.53463,-3.57492)--(-2.53462,-3.57484)--(-2.53462,-3.57476)--(-2.53461,-3.57469)--(-2.53461,-3.57461)--(-2.5346,-3.57453)--(-2.5346,-3.57446)--(-2.53459,-3.57438)--(-2.53459,-3.5743)--(-2.53458,-3.57423)--
> (-2.53458,-3.57415)--(-2.53457,-3.57407)--(-2.53457,-3.574)--(-2.53456,-3.57392)--(-2.53456,-3.57384)--(-2.53455,-3.57377)--(-2.53455,-3.57369)--(-2.53455,-3.57361)--(-2.53454,-3.57353)--(-2.53454,-3.57346)--(-2.53453,-3.57338)--(-2.53453,-3.5733)--(-2.53452,-3.57323)--(-2.53452,-3.57315)--(-2.53452,-3.57307)--(-2.53451,-3.573)--(-2.53451,-3.57292)--(-2.5345,-3.57284)--(-2.5345,-3.57276)--(-2.53449,-3.57269)--(-2.53449,-3.57261)--(-2.53449,-3.57253)--(-2.53448,-3.57246)--(-2.53448,-3.57238)--
> (-2.53447,-3.5723)--(-2.53447,-3.57222)--(-2.53447,-3.57215)--(-2.53446,-3.57207)--(-2.53446,-3.57199)--(-2.53445,-3.57191)--(-2.53445,-3.57184)--(-2.53445,-3.57176)--(-2.53444,-3.57168)--(-2.53444,-3.5716)--(-2.53443,-3.57153)--(-2.53443,-3.57145)--(-2.53443,-3.57137)--(-2.53442,-3.57129)--(-2.53442,-3.57122)--(-2.53442,-3.57114)--(-2.53441,-3.57106)--(-2.53441,-3.57098)--(-2.5344,-3.57091)--(-2.5344,-3.57083)--(-2.5344,-3.57075)--(-2.53439,-3.57067)--(-2.53439,-3.5706)--(-2.53439,-3.57052)--
> (-2.53438,-3.57044)--(-2.53438,-3.57036)--(-2.53438,-3.57029)--(-2.53437,-3.57021)--(-2.53437,-3.57013)--(-2.53437,-3.57005)--(-2.53436,-3.56997)--(-2.53436,-3.5699)--(-2.53436,-3.56982)--(-2.53435,-3.56974)--(-2.53435,-3.56966)--(-2.53435,-3.56958)--(-2.53434,-3.56951)--(-2.53434,-3.56943)--(-2.53434,-3.56935)--(-2.53433,-3.56927)--(-2.53433,-3.56919)--(-2.53433,-3.56912)--(-2.53432,-3.56904)--(-2.53432,-3.56896)--(-2.53432,-3.56888)--(-2.53432,-3.5688)--(-2.53431,-3.56873)--(-2.53431,-3.56865)--
> (-2.53431,-3.56857)--(-2.5343,-3.56849)--(-2.5343,-3.56841)--(-2.5343,-3.56833)--(-2.5343,-3.56826)--(-2.53429,-3.56818)--(-2.53429,-3.5681)--(-2.53429,-3.56802)--(-2.53428,-3.56794)--(-2.53428,-3.56786)--(-2.53428,-3.56779)--(-2.53428,-3.56771)--(-2.53427,-3.56763)--(-2.53427,-3.56755)--(-2.53427,-3.56747)--(-2.53427,-3.56739)--(-2.53426,-3.56731)--(-2.53426,-3.56724)--(-2.53426,-3.56716)--(-2.53426,-3.56708)--(-2.53425,-3.567)--(-2.53425,-3.56692)--(-2.53425,-3.56684)--(-2.53425,-3.56676)--
> (-2.53424,-3.56669)--(-2.53424,-3.56661)--(-2.53424,-3.56653)--(-2.53424,-3.56645)--(-2.53424,-3.56637)--(-2.53423,-3.56629)--(-2.53423,-3.56621)--(-2.53423,-3.56613)--(-2.53423,-3.56605)--(-2.53422,-3.56598)--(-2.53422,-3.5659)--(-2.53422,-3.56582)--(-2.53422,-3.56574)--(-2.53422,-3.56566)--(-2.53421,-3.56558)--(-2.53421,-3.5655)--(-2.53421,-3.56542)--(-2.53421,-3.56534)--(-2.53421,-3.56526)--(-2.53421,-3.56519)--(-2.5342,-3.56511)--(-2.5342,-3.56503)--(-2.5342,-3.56495)--(-2.5342,-3.56487)--
> (-2.5342,-3.56479)--(-2.53419,-3.56471)--(-2.53419,-3.56463)--(-2.53419,-3.56455)--(-2.53419,-3.56447)--(-2.53419,-3.56439)--(-2.53419,-3.56431)--(-2.53418,-3.56423)--(-2.53418,-3.56415)--(-2.53418,-3.56408)--(-2.53418,-3.564)--(-2.53418,-3.56392)--(-2.53418,-3.56384)--(-2.53418,-3.56376)--(-2.53417,-3.56368)--(-2.53417,-3.5636)--(-2.53417,-3.56352)--(-2.53417,-3.56344)--(-2.53417,-3.56336)--(-2.53417,-3.56328)--(-2.53417,-3.5632)--(-2.53417,-3.56312)--(-2.53416,-3.56304)--(-2.53416,-3.56296)--
> (-2.53416,-3.56288)--(-2.53416,-3.5628)--(-2.53416,-3.56272)--(-2.53416,-3.56264)--(-2.53416,-3.56256)--(-2.53416,-3.56248)--(-2.53416,-3.5624)--(-2.53416,-3.56232)--(-2.53415,-3.56224)--(-2.53415,-3.56216)--(-2.53415,-3.56208)--(-2.53415,-3.562)--(-2.53415,-3.56192)--(-2.53415,-3.56184)--(-2.53415,-3.56176)--(-2.53415,-3.56168)--(-2.53415,-3.5616)--(-2.53415,-3.56152)--(-2.53415,-3.56144)--(-2.53415,-3.56136)--(-2.53415,-3.56128)--(-2.53414,-3.5612)--(-2.53414,-3.56112)--(-2.53414,-3.56104)--
> (-2.53414,-3.56096)--(-2.53414,-3.56088)--(-2.53414,-3.5608)--(-2.53414,-3.56072)--(-2.53414,-3.56064)--(-2.53414,-3.56056)--(-2.53414,-3.56048)--(-2.53414,-3.5604)--(-2.53414,-3.56032)--(-2.53414,-3.56024)--(-2.53414,-3.56016)--(-2.53414,-3.56008)--(-2.53414,-3.55999)--(-2.53414,-3.55991)--(-2.53414,-3.55983)--(-2.53414,-3.55975)--(-2.53414,-3.55967)--(-2.53414,-3.55959)--(-2.53414,-3.55951)--(-2.53414,-3.55943)--(-2.53414,-3.55935)--(-2.53414,-3.55927)--(-2.53414,-3.55919)--(-2.53414,-3.55911)--
> (-2.53414,-3.55903)--(-2.53414,-3.55895)--(-2.53414,-3.55886)--(-2.53414,-3.55878)--(-2.53414,-3.5587)--(-2.53414,-3.55862)--(-2.53414,-3.55854)--(-2.53414,-3.55846)--(-2.53414,-3.55838)--(-2.53414,-3.5583)--(-2.53414,-3.55822)--(-2.53414,-3.55814)--(-2.53414,-3.55805)--(-2.53414,-3.55797)--(-2.53414,-3.55789)--(-2.53414,-3.55781)--(-2.53414,-3.55773)--(-2.53414,-3.55765)--(-2.53415,-3.55757)--(-2.53415,-3.55749)--(-2.53415,-3.5574)--(-2.53415,-3.55732)--(-2.53415,-3.55724)--(-2.53415,-3.55716)--
> (-2.53415,-3.55708)--(-2.53415,-3.557)--(-2.53415,-3.55692)--(-2.53415,-3.55683)--(-2.53415,-3.55675)--(-2.53415,-3.55667)--(-2.53415,-3.55659)--(-2.53416,-3.55651)--(-2.53416,-3.55643)--(-2.53416,-3.55635)--(-2.53416,-3.55626)--(-2.53416,-3.55618)--(-2.53416,-3.5561)--(-2.53416,-3.55602)--(-2.53416,-3.55594)--(-2.53416,-3.55585)--(-2.53416,-3.55577)--(-2.53417,-3.55569)--(-2.53417,-3.55561)--(-2.53417,-3.55553)--(-2.53417,-3.55545)--(-2.53417,-3.55536)--(-2.53417,-3.55528)--(-2.53417,-3.5552)--
> (-2.53418,-3.55512)--(-2.53418,-3.55504)--(-2.53418,-3.55495)--(-2.53418,-3.55487)--(-2.53418,-3.55479)--(-2.53418,-3.55471)--(-2.53418,-3.55463)--(-2.53419,-3.55454)--(-2.53419,-3.55446)--(-2.53419,-3.55438)--(-2.53419,-3.5543)--(-2.53419,-3.55421)--(-2.53419,-3.55413)--(-2.5342,-3.55405)--(-2.5342,-3.55397)--(-2.5342,-3.55388)--(-2.5342,-3.5538)--(-2.5342,-3.55372)--(-2.5342,-3.55364)--(-2.53421,-3.55356)--(-2.53421,-3.55347)--(-2.53421,-3.55339)--(-2.53421,-3.55331)--(-2.53421,-3.55323)--
> (-2.53422,-3.55314)--(-2.53422,-3.55306)--(-2.53422,-3.55298)--(-2.53422,-3.55289)--(-2.53422,-3.55281)--(-2.53423,-3.55273)--(-2.53423,-3.55265)--(-2.53423,-3.55256)--(-2.53423,-3.55248)--(-2.53424,-3.5524)--(-2.53424,-3.55232)--(-2.53424,-3.55223)--(-2.53424,-3.55215)--(-2.53425,-3.55207)--(-2.53425,-3.55198)--(-2.53425,-3.5519)--(-2.53425,-3.55182)--(-2.53426,-3.55173)--(-2.53426,-3.55165)--(-2.53426,-3.55157)--(-2.53426,-3.55149)--(-2.53427,-3.5514)--(-2.53427,-3.55132)--(-2.53427,-3.55124)--
> (-2.53427,-3.55115)--(-2.53428,-3.55107)--(-2.53428,-3.55099)--(-2.53428,-3.5509)--(-2.53428,-3.55082)--(-2.53429,-3.55074)--(-2.53429,-3.55065)--(-2.53429,-3.55057)--(-2.5343,-3.55049)--(-2.5343,-3.5504)--(-2.5343,-3.55032)--(-2.5343,-3.55024)--(-2.53431,-3.55015)--(-2.53431,-3.55007)--(-2.53431,-3.54999)--(-2.53432,-3.5499)--(-2.53432,-3.54982)--(-2.53432,-3.54973)--(-2.53433,-3.54965)--(-2.53433,-3.54957)--(-2.53433,-3.54948)--(-2.53434,-3.5494)--(-2.53434,-3.54932)--(-2.53434,-3.54923)--
> (-2.53435,-3.54915)--(-2.53435,-3.54906)--(-2.53435,-3.54898)--(-2.53436,-3.5489)--(-2.53436,-3.54881)--(-2.53436,-3.54873)--(-2.53437,-3.54865)--(-2.53437,-3.54856)--(-2.53437,-3.54848)--(-2.53438,-3.54839)--(-2.53438,-3.54831)--(-2.53438,-3.54822)--(-2.53439,-3.54814)--(-2.53439,-3.54806)--(-2.5344,-3.54797)--(-2.5344,-3.54789)--(-2.5344,-3.5478)--(-2.53441,-3.54772)--(-2.53441,-3.54764)--(-2.53442,-3.54755)--(-2.53442,-3.54747)--(-2.53442,-3.54738)--(-2.53443,-3.5473)--(-2.53443,-3.54721)--
> (-2.53444,-3.54713)--(-2.53444,-3.54704)--(-2.53444,-3.54696)--(-2.53445,-3.54688)--(-2.53445,-3.54679)--(-2.53446,-3.54671)--(-2.53446,-3.54662)--(-2.53446,-3.54654)--(-2.53447,-3.54645)--(-2.53447,-3.54637)--(-2.53448,-3.54628)--(-2.53448,-3.5462)--(-2.53449,-3.54611)--(-2.53449,-3.54603)--(-2.53449,-3.54594)--(-2.5345,-3.54586)--(-2.5345,-3.54577)--(-2.53451,-3.54569)--(-2.53451,-3.5456)--(-2.53452,-3.54552)--(-2.53452,-3.54543)--(-2.53453,-3.54535)--(-2.53453,-3.54526)--(-2.53454,-3.54518)--
> (-2.53454,-3.54509)--(-2.53455,-3.54501)--(-2.53455,-3.54492)--(-2.53455,-3.54484)--(-2.53456,-3.54475)--(-2.53456,-3.54467)--(-2.53457,-3.54458)--(-2.53457,-3.5445)--(-2.53458,-3.54441)--(-2.53458,-3.54433)--(-2.53459,-3.54424)--(-2.53459,-3.54416)--(-2.5346,-3.54407)--(-2.5346,-3.54399)--(-2.53461,-3.5439)--(-2.53461,-3.54381)--(-2.53462,-3.54373)--(-2.53463,-3.54364)--(-2.53463,-3.54356)--(-2.53464,-3.54347)--(-2.53464,-3.54339)--(-2.53465,-3.5433)--(-2.53465,-3.54321)--(-2.53466,-3.54313)--
> (-2.53466,-3.54304)--(-2.53467,-3.54296)--(-2.53467,-3.54287)--(-2.53468,-3.54279)--(-2.53468,-3.5427)--(-2.53469,-3.54261)--(-2.5347,-3.54253)--(-2.5347,-3.54244)--(-2.53471,-3.54236)--(-2.53471,-3.54227)--(-2.53472,-3.54218)--(-2.53472,-3.5421)--(-2.53473,-3.54201)--(-2.53474,-3.54193)--(-2.53474,-3.54184)--(-2.53475,-3.54175)--(-2.53475,-3.54167)--(-2.53476,-3.54158)--(-2.53477,-3.54149)--(-2.53477,-3.54141)--(-2.53478,-3.54132)--(-2.53478,-3.54124)--(-2.53479,-3.54115)--(-2.5348,-3.54106)--
> (-2.5348,-3.54098)--(-2.53481,-3.54089)--(-2.53481,-3.5408)--(-2.53482,-3.54072)--(-2.53483,-3.54063)--(-2.53483,-3.54054)--(-2.53484,-3.54046)--(-2.53485,-3.54037)--(-2.53485,-3.54028)--(-2.53486,-3.5402)--(-2.53486,-3.54011)--(-2.53487,-3.54002)--(-2.53488,-3.53994)--(-2.53488,-3.53985)--(-2.53489,-3.53976)--(-2.5349,-3.53968)--(-2.5349,-3.53959)--(-2.53491,-3.5395)--(-2.53492,-3.53941)--(-2.53492,-3.53933)--(-2.53493,-3.53924)--(-2.53494,-3.53915)--(-2.53494,-3.53907)--(-2.53495,-3.53898)--
> (-2.53496,-3.53889)--(-2.53496,-3.53881)--(-2.53497,-3.53872)--(-2.53498,-3.53863)--(-2.53499,-3.53854)--(-2.53499,-3.53846)--(-2.535,-3.53837)--(-2.53501,-3.53828)--(-2.53501,-3.53819)--(-2.53502,-3.53811)--(-2.53503,-3.53802)--(-2.53504,-3.53793)--(-2.53504,-3.53784)--(-2.53505,-3.53776)--(-2.53506,-3.53767)--(-2.53506,-3.53758)--(-2.53507,-3.53749)--(-2.53508,-3.53741)--(-2.53509,-3.53732)--(-2.53509,-3.53723)--(-2.5351,-3.53714)--(-2.53511,-3.53706)--(-2.53512,-3.53697)--(-2.53512,-3.53688)--
> (-2.53513,-3.53679)--(-2.53514,-3.5367)--(-2.53515,-3.53662)--(-2.53516,-3.53653)--(-2.53516,-3.53644)--(-2.53517,-3.53635)--(-2.53518,-3.53626)--(-2.53519,-3.53618)--(-2.53519,-3.53609)--(-2.5352,-3.536)--(-2.53521,-3.53591)--(-2.53522,-3.53582)--(-2.53523,-3.53573)--(-2.53523,-3.53565)--(-2.53524,-3.53556)--(-2.53525,-3.53547)--(-2.53526,-3.53538)--(-2.53527,-3.53529)--(-2.53527,-3.5352)--(-2.53528,-3.53512)--(-2.53529,-3.53503)--(-2.5353,-3.53494)--(-2.53531,-3.53485)--(-2.53532,-3.53476)--
> (-2.53532,-3.53467)--(-2.53533,-3.53458)--(-2.53534,-3.5345)--(-2.53535,-3.53441)--(-2.53536,-3.53432)--(-2.53537,-3.53423)--(-2.53537,-3.53414)--(-2.53538,-3.53405)--(-2.53539,-3.53396)--(-2.5354,-3.53387)--(-2.53541,-3.53379)--(-2.53542,-3.5337)--(-2.53543,-3.53361)--(-2.53544,-3.53352)--(-2.53544,-3.53343)--(-2.53545,-3.53334)--(-2.53546,-3.53325)--(-2.53547,-3.53316)--(-2.53548,-3.53307)--(-2.53549,-3.53298)--(-2.5355,-3.53289)--(-2.53551,-3.53281)--(-2.53552,-3.53272)--(-2.53553,-3.53263)--
> (-2.53553,-3.53254)--(-2.53554,-3.53245)--(-2.53555,-3.53236)--(-2.53556,-3.53227)--(-2.53557,-3.53218)--(-2.53558,-3.53209)--(-2.53559,-3.532)--(-2.5356,-3.53191)--(-2.53561,-3.53182)--(-2.53562,-3.53173)--(-2.53563,-3.53164)--(-2.53564,-3.53155)--(-2.53565,-3.53146)--(-2.53566,-3.53137)--(-2.53567,-3.53128)--(-2.53567,-3.53119)--(-2.53568,-3.5311)--(-2.53569,-3.53101)--(-2.5357,-3.53092)--(-2.53571,-3.53083)--(-2.53572,-3.53074)--(-2.53573,-3.53065)--(-2.53574,-3.53056)--(-2.53575,-3.53047)--
> (-2.53576,-3.53038)--(-2.53577,-3.53029)--(-2.53578,-3.5302)--(-2.53579,-3.53011)--(-2.5358,-3.53002)--(-2.53581,-3.52993)--(-2.53582,-3.52984)--(-2.53583,-3.52975)--(-2.53584,-3.52966)--(-2.53585,-3.52957)--(-2.53586,-3.52948)--(-2.53587,-3.52939)--(-2.53588,-3.5293)--(-2.53589,-3.52921)--(-2.53591,-3.52912)--(-2.53592,-3.52903)--(-2.53593,-3.52894)--(-2.53594,-3.52885)--(-2.53595,-3.52875)--(-2.53596,-3.52866)--(-2.53597,-3.52857)--(-2.53598,-3.52848)--(-2.53599,-3.52839)--(-2.536,-3.5283)--
> (-2.53601,-3.52821)--(-2.53602,-3.52812)--(-2.53603,-3.52803)--(-2.53604,-3.52794)--(-2.53605,-3.52785)--(-2.53606,-3.52775)--(-2.53608,-3.52766)--(-2.53609,-3.52757)--(-2.5361,-3.52748)--(-2.53611,-3.52739)--(-2.53612,-3.5273)--(-2.53613,-3.52721)--(-2.53614,-3.52712)--(-2.53615,-3.52702)--(-2.53616,-3.52693)--(-2.53618,-3.52684)--(-2.53619,-3.52675)--(-2.5362,-3.52666)--(-2.53621,-3.52657)--(-2.53622,-3.52647)--(-2.53623,-3.52638)--(-2.53624,-3.52629)--(-2.53625,-3.5262)--(-2.53627,-3.52611)--
> (-2.53628,-3.52602)--(-2.53629,-3.52592)--(-2.5363,-3.52583)--(-2.53631,-3.52574)--(-2.53632,-3.52565)--(-2.53634,-3.52556)--(-2.53635,-3.52547)--(-2.53636,-3.52537)--(-2.53637,-3.52528)--(-2.53638,-3.52519)--(-2.5364,-3.5251)--(-2.53641,-3.52501)--(-2.53642,-3.52491)--(-2.53643,-3.52482)--(-2.53644,-3.52473)--(-2.53645,-3.52464)--(-2.53647,-3.52454)--(-2.53648,-3.52445)--(-2.53649,-3.52436)--(-2.5365,-3.52427)--(-2.53652,-3.52417)--(-2.53653,-3.52408)--(-2.53654,-3.52399)--(-2.53655,-3.5239)--
> (-2.53656,-3.5238)--(-2.53658,-3.52371)--(-2.53659,-3.52362)--(-2.5366,-3.52353)--(-2.53661,-3.52343)--(-2.53663,-3.52334)--(-2.53664,-3.52325)--(-2.53665,-3.52316)--(-2.53666,-3.52306)--(-2.53668,-3.52297)--(-2.53669,-3.52288)--(-2.5367,-3.52278)--(-2.53672,-3.52269)--(-2.53673,-3.5226)--(-2.53674,-3.5225)--(-2.53675,-3.52241)--(-2.53677,-3.52232)--(-2.53678,-3.52223)--(-2.53679,-3.52213)--(-2.53681,-3.52204)--(-2.53682,-3.52195)--(-2.53683,-3.52185)--(-2.53685,-3.52176)--(-2.53686,-3.52167)--
> (-2.53687,-3.52157)--(-2.53689,-3.52148)--(-2.5369,-3.52138)--(-2.53691,-3.52129)--(-2.53693,-3.5212)--(-2.53694,-3.5211)--(-2.53695,-3.52101)--(-2.53697,-3.52092)--(-2.53698,-3.52082)--(-2.53699,-3.52073)--(-2.53701,-3.52064)--(-2.53702,-3.52054)--(-2.53703,-3.52045)--(-2.53705,-3.52035)--(-2.53706,-3.52026)--(-2.53707,-3.52017)--(-2.53709,-3.52007)--(-2.5371,-3.51998)--(-2.53712,-3.51988)--(-2.53713,-3.51979)--(-2.53714,-3.5197)--(-2.53716,-3.5196)--(-2.53717,-3.51951)--(-2.53719,-3.51941)--
> (-2.5372,-3.51932)--(-2.53721,-3.51922)--(-2.53723,-3.51913)--(-2.53724,-3.51904)--(-2.53726,-3.51894)--(-2.53727,-3.51885)--(-2.53728,-3.51875)--(-2.5373,-3.51866)--(-2.53731,-3.51856)--(-2.53733,-3.51847)--(-2.53734,-3.51837)--(-2.53736,-3.51828)--(-2.53737,-3.51818)--(-2.53739,-3.51809)--(-2.5374,-3.51799)--(-2.53742,-3.5179)--(-2.53743,-3.5178)--(-2.53744,-3.51771)--(-2.53746,-3.51761)--(-2.53747,-3.51752)--(-2.53749,-3.51742)--(-2.5375,-3.51733)--(-2.53752,-3.51723)--(-2.53753,-3.51714)--
> (-2.53755,-3.51704)--(-2.53756,-3.51695)--(-2.53758,-3.51685)--(-2.53759,-3.51676)--(-2.53761,-3.51666)--(-2.53762,-3.51657)--(-2.53764,-3.51647)--(-2.53765,-3.51638)--(-2.53767,-3.51628)--(-2.53768,-3.51619)--(-2.5377,-3.51609)--(-2.53772,-3.51599)--(-2.53773,-3.5159)--(-2.53775,-3.5158)--(-2.53776,-3.51571)--(-2.53778,-3.51561)--(-2.53779,-3.51552)--(-2.53781,-3.51542)--(-2.53782,-3.51532)--(-2.53784,-3.51523)--(-2.53786,-3.51513)--(-2.53787,-3.51504)--(-2.53789,-3.51494)--(-2.5379,-3.51484)--
> (-2.53792,-3.51475)--(-2.53793,-3.51465)--(-2.53795,-3.51456)--(-2.53797,-3.51446)--(-2.53798,-3.51436)--(-2.538,-3.51427)--(-2.53801,-3.51417)--(-2.53803,-3.51407)--(-2.53805,-3.51398)--(-2.53806,-3.51388)--(-2.53808,-3.51378)--(-2.5381,-3.51369)--(-2.53811,-3.51359)--(-2.53813,-3.5135)--(-2.53815,-3.5134)--(-2.53816,-3.5133)--(-2.53818,-3.51321)--(-2.53819,-3.51311)--(-2.53821,-3.51301)--(-2.53823,-3.51291)--(-2.53824,-3.51282)--(-2.53826,-3.51272)--(-2.53828,-3.51262)--(-2.53829,-3.51253)--
> (-2.53831,-3.51243)--(-2.53833,-3.51233)--(-2.53834,-3.51224)--(-2.53836,-3.51214)--(-2.53838,-3.51204)--(-2.5384,-3.51194)--(-2.53841,-3.51185)--(-2.53843,-3.51175)--(-2.53845,-3.51165)--(-2.53846,-3.51155)--(-2.53848,-3.51146)--(-2.5385,-3.51136)--(-2.53852,-3.51126)--(-2.53853,-3.51116)--(-2.53855,-3.51107)--(-2.53857,-3.51097)--(-2.53859,-3.51087)--(-2.5386,-3.51077)--(-2.53862,-3.51068)--(-2.53864,-3.51058)--(-2.53866,-3.51048)--(-2.53867,-3.51038)--(-2.53869,-3.51028)--(-2.53871,-3.51019)--
> (-2.53873,-3.51009)--(-2.53874,-3.50999)--(-2.53876,-3.50989)--(-2.53878,-3.50979)--(-2.5388,-3.5097)--(-2.53882,-3.5096)--(-2.53883,-3.5095)--(-2.53885,-3.5094)--(-2.53887,-3.5093)--(-2.53889,-3.5092)--(-2.53891,-3.50911)--(-2.53892,-3.50901)--(-2.53894,-3.50891)--(-2.53896,-3.50881)--(-2.53898,-3.50871)--(-2.539,-3.50861)--(-2.53902,-3.50852)--(-2.53903,-3.50842)--(-2.53905,-3.50832)--(-2.53907,-3.50822)--(-2.53909,-3.50812)--(-2.53911,-3.50802)--(-2.53913,-3.50792)--(-2.53915,-3.50782)--
> (-2.53916,-3.50772)--(-2.53918,-3.50763)--(-2.5392,-3.50753)--(-2.53922,-3.50743)--(-2.53924,-3.50733)--(-2.53926,-3.50723)--(-2.53928,-3.50713)--(-2.5393,-3.50703)--(-2.53932,-3.50693)--(-2.53933,-3.50683)--(-2.53935,-3.50673)--(-2.53937,-3.50663)--(-2.53939,-3.50653)--(-2.53941,-3.50643)--(-2.53943,-3.50633)--(-2.53945,-3.50623)--(-2.53947,-3.50613)--(-2.53949,-3.50603)--(-2.53951,-3.50594)--(-2.53953,-3.50584)--(-2.53955,-3.50574)--(-2.53957,-3.50564)--(-2.53959,-3.50554)--(-2.53961,-3.50544)--
> (-2.53963,-3.50534)--(-2.53965,-3.50524)--(-2.53967,-3.50514)--(-2.53968,-3.50504)--(-2.5397,-3.50494)--(-2.53972,-3.50484)--(-2.53974,-3.50473)--(-2.53976,-3.50463)--(-2.53978,-3.50453)--(-2.5398,-3.50443)--(-2.53982,-3.50433)--(-2.53985,-3.50423)--(-2.53987,-3.50413)--(-2.53989,-3.50403)--(-2.53991,-3.50393)--(-2.53993,-3.50383)--(-2.53995,-3.50373)--(-2.53997,-3.50363)--(-2.53999,-3.50353)--(-2.54001,-3.50343)--(-2.54003,-3.50333)--(-2.54005,-3.50323)--(-2.54007,-3.50312)--(-2.54009,-3.50302)--
> (-2.54011,-3.50292)--(-2.54013,-3.50282)--(-2.54015,-3.50272)--(-2.54017,-3.50262)--(-2.54019,-3.50252)--(-2.54022,-3.50242)--(-2.54024,-3.50232)--(-2.54026,-3.50221)--(-2.54028,-3.50211)--(-2.5403,-3.50201)--(-2.54032,-3.50191)--(-2.54034,-3.50181)--(-2.54036,-3.50171)--(-2.54038,-3.50161)--(-2.54041,-3.5015)--(-2.54043,-3.5014)--(-2.54045,-3.5013)--(-2.54047,-3.5012)--(-2.54049,-3.5011)--(-2.54051,-3.50099)--(-2.54053,-3.50089)--(-2.54056,-3.50079)--(-2.54058,-3.50069)--(-2.5406,-3.50059)--
> (-2.54062,-3.50048)--(-2.54064,-3.50038)--(-2.54067,-3.50028)--(-2.54069,-3.50018)--(-2.54071,-3.50008)--(-2.54073,-3.49997)--(-2.54075,-3.49987)--(-2.54078,-3.49977)--(-2.5408,-3.49967)--(-2.54082,-3.49956)--(-2.54084,-3.49946)--(-2.54086,-3.49936)--(-2.54089,-3.49926)--(-2.54091,-3.49915)--(-2.54093,-3.49905)--(-2.54095,-3.49895)--(-2.54098,-3.49885)--(-2.541,-3.49874)--(-2.54102,-3.49864)--(-2.54104,-3.49854)--(-2.54107,-3.49843)--(-2.54109,-3.49833)--(-2.54111,-3.49823)--(-2.54113,-3.49812)--
> (-2.54116,-3.49802)--(-2.54118,-3.49792)--(-2.5412,-3.49781)--(-2.54123,-3.49771)--(-2.54125,-3.49761)--(-2.54127,-3.4975)--(-2.5413,-3.4974)--(-2.54132,-3.4973)--(-2.54134,-3.49719)--(-2.54136,-3.49709)--(-2.54139,-3.49699)--(-2.54141,-3.49688)--(-2.54143,-3.49678)--(-2.54146,-3.49668)--(-2.54148,-3.49657)--(-2.54151,-3.49647)--(-2.54153,-3.49636)--(-2.54155,-3.49626)--(-2.54158,-3.49616)--(-2.5416,-3.49605)--(-2.54162,-3.49595)--(-2.54165,-3.49584)--(-2.54167,-3.49574)--(-2.5417,-3.49564)--
> (-2.54172,-3.49553)--(-2.54174,-3.49543)--(-2.54177,-3.49532)--(-2.54179,-3.49522)--(-2.54182,-3.49511)--(-2.54184,-3.49501)--(-2.54186,-3.4949)--(-2.54189,-3.4948)--(-2.54191,-3.49469)--(-2.54194,-3.49459)--(-2.54196,-3.49449)--(-2.54199,-3.49438)--(-2.54201,-3.49428)--(-2.54203,-3.49417)--(-2.54206,-3.49407)--(-2.54208,-3.49396)--(-2.54211,-3.49386)--(-2.54213,-3.49375)--(-2.54216,-3.49365)--(-2.54218,-3.49354)--(-2.54221,-3.49343)--(-2.54223,-3.49333)--(-2.54226,-3.49322)--(-2.54228,-3.49312)--
> (-2.54231,-3.49301)--(-2.54233,-3.49291)--(-2.54236,-3.4928)--(-2.54238,-3.4927)--(-2.54241,-3.49259)--(-2.54243,-3.49249)--(-2.54246,-3.49238)--(-2.54248,-3.49227)--(-2.54251,-3.49217)--(-2.54254,-3.49206)--(-2.54256,-3.49196)--(-2.54259,-3.49185)--(-2.54261,-3.49174)--(-2.54264,-3.49164)--(-2.54266,-3.49153)--(-2.54269,-3.49143)--(-2.54271,-3.49132)--(-2.54274,-3.49121)--(-2.54277,-3.49111)--(-2.54279,-3.491)--(-2.54282,-3.49089)--(-2.54284,-3.49079)--(-2.54287,-3.49068)--(-2.5429,-3.49057)--
> (-2.54292,-3.49047)--(-2.54295,-3.49036)--(-2.54298,-3.49025)--(-2.543,-3.49015)--(-2.54303,-3.49004)--(-2.54305,-3.48993)--(-2.54308,-3.48983)--(-2.54311,-3.48972)--(-2.54313,-3.48961)--(-2.54316,-3.48951)--(-2.54319,-3.4894)--(-2.54321,-3.48929)--(-2.54324,-3.48919)--(-2.54327,-3.48908)--(-2.5433,-3.48897)--(-2.54332,-3.48886)--(-2.54335,-3.48876)--(-2.54338,-3.48865)--(-2.5434,-3.48854)--(-2.54343,-3.48843)--(-2.54346,-3.48833)--(-2.54348,-3.48822)--(-2.54351,-3.48811)--(-2.54354,-3.488)--
> (-2.54357,-3.48789)--(-2.54359,-3.48779)--(-2.54362,-3.48768)--(-2.54365,-3.48757)--(-2.54368,-3.48746)--(-2.5437,-3.48736)--(-2.54373,-3.48725)--(-2.54376,-3.48714)--(-2.54379,-3.48703)--(-2.54382,-3.48692)--(-2.54384,-3.48681)--(-2.54387,-3.48671)--(-2.5439,-3.4866)--(-2.54393,-3.48649)--(-2.54396,-3.48638)--(-2.54398,-3.48627)--(-2.54401,-3.48616)--(-2.54404,-3.48605)--(-2.54407,-3.48595)--(-2.5441,-3.48584)--(-2.54413,-3.48573)--(-2.54415,-3.48562)--(-2.54418,-3.48551)--(-2.54421,-3.4854)--
> (-2.54424,-3.48529)--(-2.54427,-3.48518)--(-2.5443,-3.48507)--(-2.54433,-3.48496)--(-2.54435,-3.48486)--(-2.54438,-3.48475)--(-2.54441,-3.48464)--(-2.54444,-3.48453)--(-2.54447,-3.48442)--(-2.5445,-3.48431)--(-2.54453,-3.4842)--(-2.54456,-3.48409)--(-2.54459,-3.48398)--(-2.54462,-3.48387)--(-2.54465,-3.48376)--(-2.54467,-3.48365)--(-2.5447,-3.48354)--(-2.54473,-3.48343)--(-2.54476,-3.48332)--(-2.54479,-3.48321)--(-2.54482,-3.4831)--(-2.54485,-3.48299)--(-2.54488,-3.48288)--(-2.54491,-3.48277)--
> (-2.54494,-3.48266)--(-2.54497,-3.48255)--(-2.545,-3.48244)--(-2.54503,-3.48233)--(-2.54506,-3.48222)--(-2.54509,-3.48211)--(-2.54512,-3.482)--(-2.54515,-3.48189)--(-2.54518,-3.48178)--(-2.54521,-3.48166)--(-2.54524,-3.48155)--(-2.54527,-3.48144)--(-2.5453,-3.48133)--(-2.54533,-3.48122)--(-2.54537,-3.48111)--(-2.5454,-3.481)--(-2.54543,-3.48089)--(-2.54546,-3.48078)--(-2.54549,-3.48066)--(-2.54552,-3.48055)--(-2.54555,-3.48044)--(-2.54558,-3.48033)--(-2.54561,-3.48022)--(-2.54564,-3.48011)--
> (-2.54567,-3.48)--(-2.54571,-3.47988)--(-2.54574,-3.47977)--(-2.54577,-3.47966)--(-2.5458,-3.47955)--(-2.54583,-3.47944)--(-2.54586,-3.47933)--(-2.54589,-3.47921)--(-2.54593,-3.4791)--(-2.54596,-3.47899)--(-2.54599,-3.47888)--(-2.54602,-3.47877)--(-2.54605,-3.47865)--(-2.54608,-3.47854)--(-2.54612,-3.47843)--(-2.54615,-3.47832)--(-2.54618,-3.4782)--(-2.54621,-3.47809)--(-2.54624,-3.47798)--(-2.54628,-3.47787)--(-2.54631,-3.47775)--(-2.54634,-3.47764)--(-2.54637,-3.47753)--(-2.54641,-3.47741)--
> (-2.54644,-3.4773)--(-2.54647,-3.47719)--(-2.5465,-3.47708)--(-2.54654,-3.47696)--(-2.54657,-3.47685)--(-2.5466,-3.47674)--(-2.54663,-3.47662)--(-2.54667,-3.47651)--(-2.5467,-3.4764)--(-2.54673,-3.47628)--(-2.54677,-3.47617)--(-2.5468,-3.47606)--(-2.54683,-3.47594)--(-2.54686,-3.47583)--(-2.5469,-3.47571)--(-2.54693,-3.4756)--(-2.54696,-3.47549)--(-2.547,-3.47537)--(-2.54703,-3.47526)--(-2.54706,-3.47515)--(-2.5471,-3.47503)--(-2.54713,-3.47492)--(-2.54717,-3.4748)--(-2.5472,-3.47469)--
> (-2.54723,-3.47457)--(-2.54727,-3.47446)--(-2.5473,-3.47435)--(-2.54734,-3.47423)--(-2.54737,-3.47412)--(-2.5474,-3.474)--(-2.54744,-3.47389)--(-2.54747,-3.47377)--(-2.54751,-3.47366)--(-2.54754,-3.47354)--(-2.54757,-3.47343)--(-2.54761,-3.47331)--(-2.54764,-3.4732)--(-2.54768,-3.47308)--(-2.54771,-3.47297)--(-2.54775,-3.47285)--(-2.54778,-3.47274)--(-2.54782,-3.47262)--(-2.54785,-3.47251)--(-2.54789,-3.47239)--(-2.54792,-3.47228)--(-2.54796,-3.47216)--(-2.54799,-3.47205)--(-2.54803,-3.47193)--
> (-2.54806,-3.47181)--(-2.5481,-3.4717)--(-2.54813,-3.47158)--(-2.54817,-3.47147)--(-2.5482,-3.47135)--(-2.54824,-3.47123)--(-2.54827,-3.47112)--(-2.54831,-3.471)--(-2.54835,-3.47089)--(-2.54838,-3.47077)--(-2.54842,-3.47065)--(-2.54845,-3.47054)--(-2.54849,-3.47042)--(-2.54853,-3.47031)--(-2.54856,-3.47019)--(-2.5486,-3.47007)--(-2.54863,-3.46996)--(-2.54867,-3.46984)--(-2.54871,-3.46972)--(-2.54874,-3.46961)--(-2.54878,-3.46949)--(-2.54882,-3.46937)--(-2.54885,-3.46925)--(-2.54889,-3.46914)--
> (-2.54892,-3.46902)--(-2.54896,-3.4689)--(-2.549,-3.46879)--(-2.54904,-3.46867)--(-2.54907,-3.46855)--(-2.54911,-3.46843)--(-2.54915,-3.46832)--(-2.54918,-3.4682)--(-2.54922,-3.46808)--(-2.54926,-3.46796)--(-2.54929,-3.46785)--(-2.54933,-3.46773)--(-2.54937,-3.46761)--(-2.54941,-3.46749)--(-2.54944,-3.46737)--(-2.54948,-3.46726)--(-2.54952,-3.46714)--(-2.54956,-3.46702)--(-2.54959,-3.4669)--(-2.54963,-3.46678)--(-2.54967,-3.46667)--(-2.54971,-3.46655)--(-2.54975,-3.46643)--(-2.54978,-3.46631)--
> (-2.54982,-3.46619)--(-2.54986,-3.46607)--(-2.5499,-3.46595)--(-2.54994,-3.46583)--(-2.54998,-3.46572)--(-2.55001,-3.4656)--(-2.55005,-3.46548)--(-2.55009,-3.46536)--(-2.55013,-3.46524)--(-2.55017,-3.46512)--(-2.55021,-3.465)--(-2.55025,-3.46488)--(-2.55028,-3.46476)--(-2.55032,-3.46464)--(-2.55036,-3.46452)--(-2.5504,-3.4644)--(-2.55044,-3.46429)--(-2.55048,-3.46417)--(-2.55052,-3.46405)--(-2.55056,-3.46393)--(-2.5506,-3.46381)--(-2.55064,-3.46369)--(-2.55068,-3.46357)--(-2.55072,-3.46345)--
> (-2.55076,-3.46333)--(-2.5508,-3.46321)--(-2.55084,-3.46309)--(-2.55088,-3.46297)--(-2.55091,-3.46285)--(-2.55095,-3.46272)--(-2.55099,-3.4626)--(-2.55103,-3.46248)--(-2.55108,-3.46236)--(-2.55112,-3.46224)--(-2.55116,-3.46212)--(-2.5512,-3.462)--(-2.55124,-3.46188)--(-2.55128,-3.46176)--(-2.55132,-3.46164)--(-2.55136,-3.46152)--(-2.5514,-3.4614)--(-2.55144,-3.46127)--(-2.55148,-3.46115)--(-2.55152,-3.46103)--(-2.55156,-3.46091)--(-2.5516,-3.46079)--(-2.55164,-3.46067)--(-2.55169,-3.46055)--
> (-2.55173,-3.46042)--(-2.55177,-3.4603)--(-2.55181,-3.46018)--(-2.55185,-3.46006)--(-2.55189,-3.45994)--(-2.55193,-3.45982)--(-2.55197,-3.45969)--(-2.55202,-3.45957)--(-2.55206,-3.45945)--(-2.5521,-3.45933)--(-2.55214,-3.4592)--(-2.55218,-3.45908)--(-2.55223,-3.45896)--(-2.55227,-3.45884)--(-2.55231,-3.45871)--(-2.55235,-3.45859)--(-2.55239,-3.45847)--(-2.55244,-3.45835)--(-2.55248,-3.45822)--(-2.55252,-3.4581)--(-2.55256,-3.45798)--(-2.55261,-3.45786)--(-2.55265,-3.45773)--(-2.55269,-3.45761)--
> (-2.55273,-3.45749)--(-2.55278,-3.45736)--(-2.55282,-3.45724)--(-2.55286,-3.45712)--(-2.55291,-3.45699)--(-2.55295,-3.45687)--(-2.55299,-3.45674)--(-2.55304,-3.45662)--(-2.55308,-3.4565)--(-2.55312,-3.45637)--(-2.55317,-3.45625)--(-2.55321,-3.45613)--(-2.55325,-3.456)--(-2.5533,-3.45588)--(-2.55334,-3.45575)--(-2.55338,-3.45563)--(-2.55343,-3.4555)--(-2.55347,-3.45538)--(-2.55352,-3.45526)--(-2.55356,-3.45513)--(-2.55361,-3.45501)--(-2.55365,-3.45488)--(-2.55369,-3.45476)--(-2.55374,-3.45463)--
> (-2.55378,-3.45451)--(-2.55383,-3.45438)--(-2.55387,-3.45426)--(-2.55392,-3.45413)--(-2.55396,-3.45401)--(-2.55401,-3.45388)--(-2.55405,-3.45376)--(-2.5541,-3.45363)--(-2.55414,-3.45351)--(-2.55419,-3.45338)--(-2.55423,-3.45326)--(-2.55428,-3.45313)--(-2.55432,-3.453)--(-2.55437,-3.45288)--(-2.55441,-3.45275)--(-2.55446,-3.45263)--(-2.5545,-3.4525)--(-2.55455,-3.45237)--(-2.55459,-3.45225)--(-2.55464,-3.45212)--(-2.55469,-3.452)--(-2.55473,-3.45187)--(-2.55478,-3.45174)--(-2.55482,-3.45162)--
> (-2.55487,-3.45149)--(-2.55492,-3.45136)--(-2.55496,-3.45124)--(-2.55501,-3.45111)--(-2.55506,-3.45098)--(-2.5551,-3.45086)--(-2.55515,-3.45073)--(-2.5552,-3.4506)--(-2.55524,-3.45048)--(-2.55529,-3.45035)--(-2.55534,-3.45022)--(-2.55538,-3.45009)--(-2.55543,-3.44997)--(-2.55548,-3.44984)--(-2.55552,-3.44971)--(-2.55557,-3.44958)--(-2.55562,-3.44946)--(-2.55567,-3.44933)--(-2.55571,-3.4492)--(-2.55576,-3.44907)--(-2.55581,-3.44894)--(-2.55586,-3.44882)--(-2.55591,-3.44869)--(-2.55595,-3.44856)--
> (-2.556,-3.44843)--(-2.55605,-3.4483)--(-2.5561,-3.44817)--(-2.55615,-3.44805)--(-2.55619,-3.44792)--(-2.55624,-3.44779)--(-2.55629,-3.44766)--(-2.55634,-3.44753)--(-2.55639,-3.4474)--(-2.55644,-3.44727)--(-2.55648,-3.44714)--(-2.55653,-3.44702)--(-2.55658,-3.44689)--(-2.55663,-3.44676)--(-2.55668,-3.44663)--(-2.55673,-3.4465)--(-2.55678,-3.44637)--(-2.55683,-3.44624)--(-2.55688,-3.44611)--(-2.55693,-3.44598)--(-2.55698,-3.44585)--(-2.55702,-3.44572)--(-2.55707,-3.44559)--(-2.55712,-3.44546)--
> (-2.55717,-3.44533)--(-2.55722,-3.4452)--(-2.55727,-3.44507)--(-2.55732,-3.44494)--(-2.55737,-3.44481)--(-2.55742,-3.44468)--(-2.55747,-3.44455)--(-2.55752,-3.44442)--(-2.55757,-3.44429)--(-2.55763,-3.44416)--(-2.55768,-3.44403)--(-2.55773,-3.4439)--(-2.55778,-3.44376)--(-2.55783,-3.44363)--(-2.55788,-3.4435)--(-2.55793,-3.44337)--(-2.55798,-3.44324)--(-2.55803,-3.44311)--(-2.55808,-3.44298)--(-2.55813,-3.44285)--(-2.55819,-3.44271)--(-2.55824,-3.44258)--(-2.55829,-3.44245)--(-2.55834,-3.44232)--
> (-2.55839,-3.44219)--(-2.55844,-3.44206)--(-2.55849,-3.44192)--(-2.55855,-3.44179)--(-2.5586,-3.44166)--(-2.55865,-3.44153)--(-2.5587,-3.44139)--(-2.55875,-3.44126)--(-2.55881,-3.44113)--(-2.55886,-3.441)--(-2.55891,-3.44086)--(-2.55896,-3.44073)--(-2.55902,-3.4406)--(-2.55907,-3.44047)--(-2.55912,-3.44033)--(-2.55918,-3.4402)--(-2.55923,-3.44007)--(-2.55928,-3.43993)--(-2.55933,-3.4398)--(-2.55939,-3.43967)--(-2.55944,-3.43953)--(-2.55949,-3.4394)--(-2.55955,-3.43927)--(-2.5596,-3.43913)--
> (-2.55965,-3.439)--(-2.55971,-3.43887)--(-2.55976,-3.43873)--(-2.55982,-3.4386)--(-2.55987,-3.43846)--(-2.55992,-3.43833)--(-2.55998,-3.4382)--(-2.56003,-3.43806)--(-2.56009,-3.43793)--(-2.56014,-3.43779)--(-2.56019,-3.43766)--(-2.56025,-3.43752)--(-2.5603,-3.43739)--(-2.56036,-3.43725)--(-2.56041,-3.43712)--(-2.56047,-3.43698)--(-2.56052,-3.43685)--(-2.56058,-3.43671)--(-2.56063,-3.43658)--(-2.56069,-3.43644)--(-2.56074,-3.43631)--(-2.5608,-3.43617)--(-2.56085,-3.43604)--(-2.56091,-3.4359)--
> (-2.56096,-3.43577)--(-2.56102,-3.43563)--(-2.56108,-3.4355)--(-2.56113,-3.43536)--(-2.56119,-3.43522)--(-2.56124,-3.43509)--(-2.5613,-3.43495)--(-2.56136,-3.43482)--(-2.56141,-3.43468)--(-2.56147,-3.43454)--(-2.56153,-3.43441)--(-2.56158,-3.43427)--(-2.56164,-3.43413)--(-2.56169,-3.434)--(-2.56175,-3.43386)--(-2.56181,-3.43372)--(-2.56187,-3.43359)--(-2.56192,-3.43345)--(-2.56198,-3.43331)--(-2.56204,-3.43317)--(-2.56209,-3.43304)--(-2.56215,-3.4329)--(-2.56221,-3.43276)--(-2.56227,-3.43262)--
> (-2.56232,-3.43249)--(-2.56238,-3.43235)--(-2.56244,-3.43221)--(-2.5625,-3.43207)--(-2.56256,-3.43194)--(-2.56261,-3.4318)--(-2.56267,-3.43166)--(-2.56273,-3.43152)--(-2.56279,-3.43138)--(-2.56285,-3.43124)--(-2.56291,-3.43111)--(-2.56296,-3.43097)--(-2.56302,-3.43083)--(-2.56308,-3.43069)--(-2.56314,-3.43055)--(-2.5632,-3.43041)--(-2.56326,-3.43027)--(-2.56332,-3.43013)--(-2.56338,-3.43)--(-2.56344,-3.42986)--(-2.5635,-3.42972)--(-2.56355,-3.42958)--(-2.56361,-3.42944)--(-2.56367,-3.4293)--
> (-2.56373,-3.42916)--(-2.56379,-3.42902)--(-2.56385,-3.42888)--(-2.56391,-3.42874)--(-2.56397,-3.4286)--(-2.56403,-3.42846)--(-2.56409,-3.42832)--(-2.56415,-3.42818)--(-2.56421,-3.42804)--(-2.56428,-3.4279)--(-2.56434,-3.42776)--(-2.5644,-3.42762)--(-2.56446,-3.42748)--(-2.56452,-3.42734)--(-2.56458,-3.4272)--(-2.56464,-3.42705)--(-2.5647,-3.42691)--(-2.56476,-3.42677)--(-2.56482,-3.42663)--(-2.56489,-3.42649)--(-2.56495,-3.42635)--(-2.56501,-3.42621)--(-2.56507,-3.42607)--(-2.56513,-3.42592)--
> (-2.5652,-3.42578)--(-2.56526,-3.42564)--(-2.56532,-3.4255)--(-2.56538,-3.42536)--(-2.56544,-3.42521)--(-2.56551,-3.42507)--(-2.56557,-3.42493)--(-2.56563,-3.42479)--(-2.56569,-3.42464)--(-2.56576,-3.4245)--(-2.56582,-3.42436)--(-2.56588,-3.42422)--(-2.56595,-3.42407)--(-2.56601,-3.42393)--(-2.56607,-3.42379)--(-2.56614,-3.42365)--(-2.5662,-3.4235)--(-2.56626,-3.42336)--(-2.56633,-3.42322)--(-2.56639,-3.42307)--(-2.56645,-3.42293)--(-2.56652,-3.42279)--(-2.56658,-3.42264)--(-2.56665,-3.4225)--
> (-2.56671,-3.42235)--(-2.56678,-3.42221)--(-2.56684,-3.42207)--(-2.5669,-3.42192)--(-2.56697,-3.42178)--(-2.56703,-3.42163)--(-2.5671,-3.42149)--(-2.56716,-3.42134)--(-2.56723,-3.4212)--(-2.56729,-3.42105)--(-2.56736,-3.42091)--(-2.56742,-3.42077)--(-2.56749,-3.42062)--(-2.56756,-3.42048)--(-2.56762,-3.42033)--(-2.56769,-3.42018)--(-2.56775,-3.42004)--(-2.56782,-3.41989)--(-2.56788,-3.41975)--(-2.56795,-3.4196)--(-2.56802,-3.41946)--(-2.56808,-3.41931)--(-2.56815,-3.41917)--(-2.56822,-3.41902)--
> (-2.56828,-3.41887)--(-2.56835,-3.41873)--(-2.56842,-3.41858)--(-2.56848,-3.41843)--(-2.56855,-3.41829)--(-2.56862,-3.41814)--(-2.56868,-3.418)--(-2.56875,-3.41785)--(-2.56882,-3.4177)--(-2.56889,-3.41755)--(-2.56895,-3.41741)--(-2.56902,-3.41726)--(-2.56909,-3.41711)--(-2.56916,-3.41697)--(-2.56923,-3.41682)--(-2.56929,-3.41667)--(-2.56936,-3.41652)--(-2.56943,-3.41638)--(-2.5695,-3.41623)--(-2.56957,-3.41608)--(-2.56964,-3.41593)--(-2.5697,-3.41578)--(-2.56977,-3.41564)--(-2.56984,-3.41549)--
> (-2.56991,-3.41534)--(-2.56998,-3.41519)--(-2.57005,-3.41504)--(-2.57012,-3.41489)--(-2.57019,-3.41475)--(-2.57026,-3.4146)--(-2.57033,-3.41445)--(-2.5704,-3.4143)--(-2.57047,-3.41415)--(-2.57054,-3.414)--(-2.57061,-3.41385)--(-2.57068,-3.4137)--(-2.57075,-3.41355)--(-2.57082,-3.4134)--(-2.57089,-3.41325)--(-2.57096,-3.4131)--(-2.57103,-3.41295)--(-2.5711,-3.4128)--(-2.57117,-3.41265)--(-2.57124,-3.4125)--(-2.57131,-3.41235)--(-2.57139,-3.4122)--(-2.57146,-3.41205)--(-2.57153,-3.4119)--
> (-2.5716,-3.41175)--(-2.57167,-3.4116)--(-2.57174,-3.41145)--(-2.57182,-3.4113)--(-2.57189,-3.41115)--(-2.57196,-3.411)--(-2.57203,-3.41084)--(-2.5721,-3.41069)--(-2.57218,-3.41054)--(-2.57225,-3.41039)--(-2.57232,-3.41024)--(-2.57239,-3.41009)--(-2.57247,-3.40993)--(-2.57254,-3.40978)--(-2.57261,-3.40963)--(-2.57269,-3.40948)--(-2.57276,-3.40933)--(-2.57283,-3.40917)--(-2.57291,-3.40902)--(-2.57298,-3.40887)--(-2.57305,-3.40872)--(-2.57313,-3.40856)--(-2.5732,-3.40841)--(-2.57328,-3.40826)--
> (-2.57335,-3.4081)--(-2.57342,-3.40795)--(-2.5735,-3.4078)--(-2.57357,-3.40764)--(-2.57365,-3.40749)--(-2.57372,-3.40734)--(-2.5738,-3.40718)--(-2.57387,-3.40703)--(-2.57395,-3.40688)--(-2.57402,-3.40672)--(-2.5741,-3.40657)--(-2.57417,-3.40641)--(-2.57425,-3.40626)--(-2.57433,-3.4061)--(-2.5744,-3.40595)--(-2.57448,-3.4058)--(-2.57455,-3.40564)--(-2.57463,-3.40549)--(-2.57471,-3.40533)--(-2.57478,-3.40518)--(-2.57486,-3.40502)--(-2.57493,-3.40487)--(-2.57501,-3.40471)--(-2.57509,-3.40456)--
> (-2.57516,-3.4044)--(-2.57524,-3.40424)--(-2.57532,-3.40409)--(-2.5754,-3.40393)--(-2.57547,-3.40378)--(-2.57555,-3.40362)--(-2.57563,-3.40346)--(-2.57571,-3.40331)--(-2.57578,-3.40315)--(-2.57586,-3.40299)--(-2.57594,-3.40284)--(-2.57602,-3.40268)--(-2.5761,-3.40252)--(-2.57618,-3.40237)--(-2.57625,-3.40221)--(-2.57633,-3.40205)--(-2.57641,-3.4019)--(-2.57649,-3.40174)--(-2.57657,-3.40158)--(-2.57665,-3.40142)--(-2.57673,-3.40127)--(-2.57681,-3.40111)--(-2.57689,-3.40095)--(-2.57697,-3.40079)--
> (-2.57705,-3.40063)--(-2.57713,-3.40048)--(-2.57721,-3.40032)--(-2.57729,-3.40016)--(-2.57737,-3.4)--(-2.57745,-3.39984)--(-2.57753,-3.39968)--(-2.57761,-3.39952)--(-2.57769,-3.39937)--(-2.57777,-3.39921)--(-2.57785,-3.39905)--(-2.57793,-3.39889)--(-2.57801,-3.39873)--(-2.57809,-3.39857)--(-2.57817,-3.39841)--(-2.57826,-3.39825)--(-2.57834,-3.39809)--(-2.57842,-3.39793)--(-2.5785,-3.39777)--(-2.57858,-3.39761)--(-2.57866,-3.39745)--(-2.57875,-3.39729)--(-2.57883,-3.39713)--(-2.57891,-3.39697)--
> (-2.57899,-3.39681)--(-2.57908,-3.39665)--(-2.57916,-3.39649)--(-2.57924,-3.39632)--(-2.57933,-3.39616)--(-2.57941,-3.396)--(-2.57949,-3.39584)--(-2.57958,-3.39568)--(-2.57966,-3.39552)--(-2.57974,-3.39536)--(-2.57983,-3.39519)--(-2.57991,-3.39503)--(-2.58,-3.39487)--(-2.58008,-3.39471)--(-2.58016,-3.39455)--(-2.58025,-3.39438)--(-2.58033,-3.39422)--(-2.58042,-3.39406)--(-2.5805,-3.3939)--(-2.58059,-3.39373)--(-2.58067,-3.39357)--(-2.58076,-3.39341)--(-2.58084,-3.39324)--(-2.58093,-3.39308)--
> (-2.58102,-3.39292)--(-2.5811,-3.39275)--(-2.58119,-3.39259)--(-2.58127,-3.39243)--(-2.58136,-3.39226)--(-2.58145,-3.3921)--(-2.58153,-3.39193)--(-2.58162,-3.39177)--(-2.5817,-3.39161)--(-2.58179,-3.39144)--(-2.58188,-3.39128)--(-2.58197,-3.39111)--(-2.58205,-3.39095)--(-2.58214,-3.39078)--(-2.58223,-3.39062)--(-2.58232,-3.39045)--(-2.5824,-3.39029)--(-2.58249,-3.39012)--(-2.58258,-3.38996)--(-2.58267,-3.38979)--(-2.58275,-3.38962)--(-2.58284,-3.38946)--(-2.58293,-3.38929)--(-2.58302,-3.38913)--
> (-2.58311,-3.38896)--(-2.5832,-3.38879)--(-2.58329,-3.38863)--(-2.58338,-3.38846)--(-2.58347,-3.38829)--(-2.58355,-3.38813)--(-2.58364,-3.38796)--(-2.58373,-3.38779)--(-2.58382,-3.38763)--(-2.58391,-3.38746)--(-2.584,-3.38729)--(-2.58409,-3.38712)--(-2.58418,-3.38696)--(-2.58428,-3.38679)--(-2.58437,-3.38662)--(-2.58446,-3.38645)--(-2.58455,-3.38628)--(-2.58464,-3.38612)--(-2.58473,-3.38595)--(-2.58482,-3.38578)--(-2.58491,-3.38561)--(-2.585,-3.38544)--(-2.5851,-3.38527)--(-2.58519,-3.3851)--
> (-2.58528,-3.38494)--(-2.58537,-3.38477)--(-2.58546,-3.3846)--(-2.58556,-3.38443)--(-2.58565,-3.38426)--(-2.58574,-3.38409)--(-2.58583,-3.38392)--(-2.58593,-3.38375)--(-2.58602,-3.38358)--(-2.58611,-3.38341)--(-2.58621,-3.38324)--(-2.5863,-3.38307)--(-2.58639,-3.3829)--(-2.58649,-3.38273)--(-2.58658,-3.38256)--(-2.58668,-3.38238)--(-2.58677,-3.38221)--(-2.58687,-3.38204)--(-2.58696,-3.38187)--(-2.58705,-3.3817)--(-2.58715,-3.38153)--(-2.58724,-3.38136)--(-2.58734,-3.38119)--(-2.58743,-3.38101)--
> (-2.58753,-3.38084)--(-2.58763,-3.38067)--(-2.58772,-3.3805)--(-2.58782,-3.38032)--(-2.58791,-3.38015)--(-2.58801,-3.37998)--(-2.5881,-3.37981)--(-2.5882,-3.37963)--(-2.5883,-3.37946)--(-2.58839,-3.37929)--(-2.58849,-3.37911)--(-2.58859,-3.37894)--(-2.58869,-3.37877)--(-2.58878,-3.37859)--(-2.58888,-3.37842)--(-2.58898,-3.37825)--(-2.58908,-3.37807)--(-2.58917,-3.3779)--(-2.58927,-3.37772)--(-2.58937,-3.37755)--(-2.58947,-3.37737)--(-2.58957,-3.3772)--(-2.58966,-3.37702)--(-2.58976,-3.37685)--
> (-2.58986,-3.37667)--(-2.58996,-3.3765)--(-2.59006,-3.37632)--(-2.59016,-3.37615)--(-2.59026,-3.37597)--(-2.59036,-3.3758)--(-2.59046,-3.37562)--(-2.59056,-3.37545)--(-2.59066,-3.37527)--(-2.59076,-3.37509)--(-2.59086,-3.37492)--(-2.59096,-3.37474)--(-2.59106,-3.37456)--(-2.59116,-3.37439)--(-2.59126,-3.37421)--(-2.59136,-3.37403)--(-2.59146,-3.37386)--(-2.59157,-3.37368)--(-2.59167,-3.3735)--(-2.59177,-3.37332)--(-2.59187,-3.37315)--(-2.59197,-3.37297)--(-2.59208,-3.37279)--(-2.59218,-3.37261)--
> (-2.59228,-3.37243)--(-2.59238,-3.37226)--(-2.59249,-3.37208)--(-2.59259,-3.3719)--(-2.59269,-3.37172)--(-2.59279,-3.37154)--(-2.5929,-3.37136)--(-2.593,-3.37118)--(-2.59311,-3.371)--(-2.59321,-3.37082)--(-2.59331,-3.37064)--(-2.59342,-3.37047)--(-2.59352,-3.37029)--(-2.59363,-3.37011)--(-2.59373,-3.36993)--(-2.59384,-3.36974)--(-2.59394,-3.36956)--(-2.59405,-3.36938)--(-2.59415,-3.3692)--(-2.59426,-3.36902)--(-2.59436,-3.36884)--(-2.59447,-3.36866)--(-2.59457,-3.36848)--(-2.59468,-3.3683)--
> (-2.59479,-3.36812)--(-2.59489,-3.36794)--(-2.595,-3.36775)--(-2.59511,-3.36757)--(-2.59521,-3.36739)--(-2.59532,-3.36721)--(-2.59543,-3.36703)--(-2.59554,-3.36684)--(-2.59564,-3.36666)--(-2.59575,-3.36648)--(-2.59586,-3.36629)--(-2.59597,-3.36611)--(-2.59607,-3.36593)--(-2.59618,-3.36575)--(-2.59629,-3.36556)--(-2.5964,-3.36538)--(-2.59651,-3.36519)--(-2.59662,-3.36501)--(-2.59673,-3.36483)--(-2.59684,-3.36464)--(-2.59695,-3.36446)--(-2.59706,-3.36427)--(-2.59717,-3.36409)--(-2.59728,-3.36391)--
> (-2.59739,-3.36372)--(-2.5975,-3.36354)--(-2.59761,-3.36335)--(-2.59772,-3.36317)--(-2.59783,-3.36298)--(-2.59794,-3.36279)--(-2.59805,-3.36261)--(-2.59816,-3.36242)--(-2.59827,-3.36224)--(-2.59839,-3.36205)--(-2.5985,-3.36186)--(-2.59861,-3.36168)--(-2.59872,-3.36149)--(-2.59883,-3.36131)--(-2.59895,-3.36112)--(-2.59906,-3.36093)--(-2.59917,-3.36074)--(-2.59929,-3.36056)--(-2.5994,-3.36037)--(-2.59951,-3.36018)--(-2.59963,-3.35999)--(-2.59974,-3.35981)--(-2.59985,-3.35962)--(-2.59997,-3.35943)--
> (-2.60008,-3.35924)--(-2.6002,-3.35905)--(-2.60031,-3.35887)--(-2.60043,-3.35868)--(-2.60054,-3.35849)--(-2.60066,-3.3583)--(-2.60077,-3.35811)--(-2.60089,-3.35792)--(-2.601,-3.35773)--(-2.60112,-3.35754)--(-2.60123,-3.35735)--(-2.60135,-3.35716)--(-2.60147,-3.35697)--(-2.60158,-3.35678)--(-2.6017,-3.35659)--(-2.60182,-3.3564)--(-2.60193,-3.35621)--(-2.60205,-3.35602)--(-2.60217,-3.35583)--(-2.60229,-3.35564)--(-2.6024,-3.35545)--(-2.60252,-3.35526)--(-2.60264,-3.35506)--(-2.60276,-3.35487)--
> (-2.60288,-3.35468)--(-2.603,-3.35449)--(-2.60311,-3.3543)--(-2.60323,-3.3541)--(-2.60335,-3.35391)--(-2.60347,-3.35372)--(-2.60359,-3.35353)--(-2.60371,-3.35333)--(-2.60383,-3.35314)--(-2.60395,-3.35295)--(-2.60407,-3.35275)--(-2.60419,-3.35256)--(-2.60431,-3.35237)--(-2.60443,-3.35217)--(-2.60456,-3.35198)--(-2.60468,-3.35179)--(-2.6048,-3.35159)--(-2.60492,-3.3514)--(-2.60504,-3.3512)--(-2.60516,-3.35101)--(-2.60529,-3.35081)--(-2.60541,-3.35062)--(-2.60553,-3.35042)--(-2.60565,-3.35023)--
> (-2.60578,-3.35003)--(-2.6059,-3.34984)--(-2.60602,-3.34964)--(-2.60615,-3.34944)--(-2.60627,-3.34925)--(-2.60639,-3.34905)--(-2.60652,-3.34886)--(-2.60664,-3.34866)--(-2.60677,-3.34846)--(-2.60689,-3.34827)--(-2.60702,-3.34807)--(-2.60714,-3.34787)--(-2.60727,-3.34767)--(-2.60739,-3.34748)--(-2.60752,-3.34728)--(-2.60764,-3.34708)--(-2.60777,-3.34688)--(-2.60789,-3.34669)--(-2.60802,-3.34649)--(-2.60815,-3.34629)--(-2.60827,-3.34609)--(-2.6084,-3.34589)--(-2.60853,-3.34569)--(-2.60866,-3.34549)--
> (-2.60878,-3.34529)--(-2.60891,-3.34509)--(-2.60904,-3.34489)--(-2.60917,-3.3447)--(-2.6093,-3.3445)--(-2.60942,-3.3443)--(-2.60955,-3.34409)--(-2.60968,-3.34389)--(-2.60981,-3.34369)--(-2.60994,-3.34349)--(-2.61007,-3.34329)--(-2.6102,-3.34309)--(-2.61033,-3.34289)--(-2.61046,-3.34269)--(-2.61059,-3.34249)--(-2.61072,-3.34229)--(-2.61085,-3.34208)--(-2.61098,-3.34188)--(-2.61111,-3.34168)--(-2.61124,-3.34148)--(-2.61138,-3.34127)--(-2.61151,-3.34107)--(-2.61164,-3.34087)--(-2.61177,-3.34067)--
> (-2.6119,-3.34046)--(-2.61204,-3.34026)--(-2.61217,-3.34006)--(-2.6123,-3.33985)--(-2.61243,-3.33965)--(-2.61257,-3.33944)--(-2.6127,-3.33924)--(-2.61284,-3.33904)--(-2.61297,-3.33883)--(-2.6131,-3.33863)--(-2.61324,-3.33842)--(-2.61337,-3.33822)--(-2.61351,-3.33801)--(-2.61364,-3.33781)--(-2.61378,-3.3376)--(-2.61391,-3.3374)--(-2.61405,-3.33719)--(-2.61418,-3.33698)--(-2.61432,-3.33678)--(-2.61446,-3.33657)--(-2.61459,-3.33636)--(-2.61473,-3.33616)--(-2.61487,-3.33595)--(-2.615,-3.33574)--
> (-2.61514,-3.33554)--(-2.61528,-3.33533)--(-2.61542,-3.33512)--(-2.61555,-3.33491)--(-2.61569,-3.33471)--(-2.61583,-3.3345)--(-2.61597,-3.33429)--(-2.61611,-3.33408)--(-2.61625,-3.33387)--(-2.61639,-3.33366)--(-2.61653,-3.33345)--(-2.61666,-3.33325)--(-2.6168,-3.33304)--(-2.61694,-3.33283)--(-2.61708,-3.33262)--(-2.61723,-3.33241)--(-2.61737,-3.3322)--(-2.61751,-3.33199)--(-2.61765,-3.33178)--(-2.61779,-3.33157)--(-2.61793,-3.33136)--(-2.61807,-3.33114)--(-2.61822,-3.33093)--(-2.61836,-3.33072)--
> (-2.6185,-3.33051)--(-2.61864,-3.3303)--(-2.61879,-3.33009)--(-2.61893,-3.32988)--(-2.61907,-3.32966)--(-2.61922,-3.32945)--(-2.61936,-3.32924)--(-2.6195,-3.32903)--(-2.61965,-3.32881)--(-2.61979,-3.3286)--(-2.61994,-3.32839)--(-2.62008,-3.32817)--(-2.62023,-3.32796)--(-2.62037,-3.32775)--(-2.62052,-3.32753)--(-2.62066,-3.32732)--(-2.62081,-3.3271)--(-2.62096,-3.32689)--(-2.6211,-3.32667)--(-2.62125,-3.32646)--(-2.6214,-3.32624)--(-2.62154,-3.32603)--(-2.62169,-3.32581)--(-2.62184,-3.3256)--
> (-2.62199,-3.32538)--(-2.62214,-3.32517)--(-2.62228,-3.32495)--(-2.62243,-3.32473)--(-2.62258,-3.32452)--(-2.62273,-3.3243)--(-2.62288,-3.32408)--(-2.62303,-3.32387)--(-2.62318,-3.32365)--(-2.62333,-3.32343)--(-2.62348,-3.32322)--(-2.62363,-3.323)--(-2.62378,-3.32278)--(-2.62393,-3.32256)--(-2.62408,-3.32234)--(-2.62423,-3.32212)--(-2.62438,-3.32191)--(-2.62454,-3.32169)--(-2.62469,-3.32147)--(-2.62484,-3.32125)--(-2.62499,-3.32103)--(-2.62515,-3.32081)--(-2.6253,-3.32059)--(-2.62545,-3.32037)--
> (-2.62561,-3.32015)--(-2.62576,-3.31993)--(-2.62591,-3.31971)--(-2.62607,-3.31949)--(-2.62622,-3.31927)--(-2.62638,-3.31905)--(-2.62653,-3.31882)--(-2.62669,-3.3186)--(-2.62684,-3.31838)--(-2.627,-3.31816)--(-2.62716,-3.31794)--(-2.62731,-3.31771)--(-2.62747,-3.31749)--(-2.62762,-3.31727)--(-2.62778,-3.31705)--(-2.62794,-3.31682)--(-2.6281,-3.3166)--(-2.62825,-3.31638)--(-2.62841,-3.31615)--(-2.62857,-3.31593)--(-2.62873,-3.31571)--(-2.62889,-3.31548)--(-2.62905,-3.31526)--(-2.62921,-3.31503)--
> (-2.62937,-3.31481)--(-2.62952,-3.31458)--(-2.62968,-3.31436)--(-2.62985,-3.31413)--(-2.63001,-3.31391)--(-2.63017,-3.31368)--(-2.63033,-3.31345)--(-2.63049,-3.31323)--(-2.63065,-3.313)--(-2.63081,-3.31277)--(-2.63097,-3.31255)--(-2.63114,-3.31232)--(-2.6313,-3.31209)--(-2.63146,-3.31187)--(-2.63162,-3.31164)--(-2.63179,-3.31141)--(-2.63195,-3.31118)--(-2.63211,-3.31095)--(-2.63228,-3.31073)--(-2.63244,-3.3105)--(-2.63261,-3.31027)--(-2.63277,-3.31004)--(-2.63294,-3.30981)--(-2.6331,-3.30958)--
> (-2.63327,-3.30935)--(-2.63343,-3.30912)--(-2.6336,-3.30889)--(-2.63377,-3.30866)--(-2.63393,-3.30843)--(-2.6341,-3.3082)--(-2.63427,-3.30797)--(-2.63443,-3.30774)--(-2.6346,-3.30751)--(-2.63477,-3.30728)--(-2.63494,-3.30704)--(-2.63511,-3.30681)--(-2.63528,-3.30658)--(-2.63545,-3.30635)--(-2.63561,-3.30612)--(-2.63578,-3.30588)--(-2.63595,-3.30565)--(-2.63612,-3.30542)--(-2.63629,-3.30518)--(-2.63647,-3.30495)--(-2.63664,-3.30472)--(-2.63681,-3.30448)--(-2.63698,-3.30425)--(-2.63715,-3.30401)--
> (-2.63732,-3.30378)--(-2.63749,-3.30354)--(-2.63767,-3.30331)--(-2.63784,-3.30307)--(-2.63801,-3.30284)--(-2.63819,-3.3026)--(-2.63836,-3.30237)--(-2.63853,-3.30213)--(-2.63871,-3.30189)--(-2.63888,-3.30166)--(-2.63906,-3.30142)--(-2.63923,-3.30118)--(-2.63941,-3.30095)--(-2.63958,-3.30071)--(-2.63976,-3.30047)--(-2.63994,-3.30023)--(-2.64011,-3.3)--(-2.64029,-3.29976)--(-2.64047,-3.29952)--(-2.64064,-3.29928)--(-2.64082,-3.29904)--(-2.641,-3.2988)--(-2.64118,-3.29856)--(-2.64136,-3.29832)--
> (-2.64153,-3.29808)--(-2.64171,-3.29785)--(-2.64189,-3.2976)--(-2.64207,-3.29736)--(-2.64225,-3.29712)--(-2.64243,-3.29688)--(-2.64261,-3.29664)--(-2.64279,-3.2964)--(-2.64298,-3.29616)--(-2.64316,-3.29592)--(-2.64334,-3.29568)--(-2.64352,-3.29543)--(-2.6437,-3.29519)--(-2.64388,-3.29495)--(-2.64407,-3.29471)--(-2.64425,-3.29446)--(-2.64443,-3.29422)--(-2.64462,-3.29398)--(-2.6448,-3.29373)--(-2.64499,-3.29349)--(-2.64517,-3.29324)--(-2.64536,-3.293)--(-2.64554,-3.29276)--(-2.64573,-3.29251)--
> (-2.64591,-3.29227)--(-2.6461,-3.29202)--(-2.64628,-3.29178)--(-2.64647,-3.29153)--(-2.64666,-3.29128)--(-2.64685,-3.29104)--(-2.64703,-3.29079)--(-2.64722,-3.29054)--(-2.64741,-3.2903)--(-2.6476,-3.29005)--(-2.64779,-3.2898)--(-2.64798,-3.28956)--(-2.64816,-3.28931)--(-2.64835,-3.28906)--(-2.64854,-3.28881)--(-2.64873,-3.28856)--(-2.64893,-3.28831)--(-2.64912,-3.28807)--(-2.64931,-3.28782)--(-2.6495,-3.28757)--(-2.64969,-3.28732)--(-2.64988,-3.28707)--(-2.65008,-3.28682)--(-2.65027,-3.28657)--
> (-2.65046,-3.28632)--(-2.65065,-3.28607)--(-2.65085,-3.28582)--(-2.65104,-3.28556)--(-2.65124,-3.28531)--(-2.65143,-3.28506)--(-2.65163,-3.28481)--(-2.65182,-3.28456)--(-2.65202,-3.2843)--(-2.65221,-3.28405)--(-2.65241,-3.2838)--(-2.65261,-3.28355)--(-2.6528,-3.28329)--(-2.653,-3.28304)--(-2.6532,-3.28278)--(-2.6534,-3.28253)--(-2.65359,-3.28228)--(-2.65379,-3.28202)--(-2.65399,-3.28177)--(-2.65419,-3.28151)--(-2.65439,-3.28126)--(-2.65459,-3.281)--(-2.65479,-3.28075)--(-2.65499,-3.28049)--
> (-2.65519,-3.28023)--(-2.65539,-3.27998)--(-2.65559,-3.27972)--(-2.6558,-3.27946)--(-2.656,-3.27921)--(-2.6562,-3.27895)--(-2.6564,-3.27869)--(-2.65661,-3.27843)--(-2.65681,-3.27817)--(-2.65701,-3.27792)--(-2.65722,-3.27766)--(-2.65742,-3.2774)--(-2.65763,-3.27714)--(-2.65783,-3.27688)--(-2.65804,-3.27662)--(-2.65824,-3.27636)--(-2.65845,-3.2761)--(-2.65866,-3.27584)--(-2.65886,-3.27558)--(-2.65907,-3.27532)--(-2.65928,-3.27506)--(-2.65948,-3.2748)--(-2.65969,-3.27453)--(-2.6599,-3.27427)--
> (-2.66011,-3.27401)--(-2.66032,-3.27375)--(-2.66053,-3.27349)--(-2.66074,-3.27322)--(-2.66095,-3.27296)--(-2.66116,-3.2727)--(-2.66137,-3.27243)--(-2.66158,-3.27217)--(-2.66179,-3.2719)--(-2.66201,-3.27164)--(-2.66222,-3.27138)--(-2.66243,-3.27111)--(-2.66264,-3.27085)--(-2.66286,-3.27058)--(-2.66307,-3.27031)--(-2.66328,-3.27005)--(-2.6635,-3.26978)--(-2.66371,-3.26952)--(-2.66393,-3.26925)--(-2.66414,-3.26898)--(-2.66436,-3.26871)--(-2.66458,-3.26845)--(-2.66479,-3.26818)--(-2.66501,-3.26791)--
> (-2.66523,-3.26764)--(-2.66544,-3.26737)--(-2.66566,-3.26711)--(-2.66588,-3.26684)--(-2.6661,-3.26657)--(-2.66632,-3.2663)--(-2.66654,-3.26603)--(-2.66676,-3.26576)--(-2.66698,-3.26549)--(-2.6672,-3.26522)--(-2.66742,-3.26495)--(-2.66764,-3.26467)--(-2.66786,-3.2644)--(-2.66808,-3.26413)--(-2.66831,-3.26386)--(-2.66853,-3.26359)--(-2.66875,-3.26331)--(-2.66898,-3.26304)--(-2.6692,-3.26277)--(-2.66942,-3.2625)--(-2.66965,-3.26222)--(-2.66987,-3.26195)--(-2.6701,-3.26167)--(-2.67032,-3.2614)--
> (-2.67055,-3.26113)--(-2.67078,-3.26085)--(-2.671,-3.26058)--(-2.67123,-3.2603)--(-2.67146,-3.26002)--(-2.67169,-3.25975)--(-2.67191,-3.25947)--(-2.67214,-3.2592)--(-2.67237,-3.25892)--(-2.6726,-3.25864)--(-2.67283,-3.25836)--(-2.67306,-3.25809)--(-2.67329,-3.25781)--(-2.67352,-3.25753)--(-2.67376,-3.25725)--(-2.67399,-3.25697)--(-2.67422,-3.25669)--(-2.67445,-3.25642)--(-2.67468,-3.25614)--(-2.67492,-3.25586)--(-2.67515,-3.25558)--(-2.67539,-3.2553)--(-2.67562,-3.25501)--(-2.67586,-3.25473)--
> (-2.67609,-3.25445)--(-2.67633,-3.25417)--(-2.67656,-3.25389)--(-2.6768,-3.25361)--(-2.67704,-3.25332)--(-2.67727,-3.25304)--(-2.67751,-3.25276)--(-2.67775,-3.25248)--(-2.67799,-3.25219)--(-2.67823,-3.25191)--(-2.67847,-3.25162)--(-2.67871,-3.25134)--(-2.67895,-3.25106)--(-2.67919,-3.25077)--(-2.67943,-3.25049)--(-2.67967,-3.2502)--(-2.67991,-3.24991)--(-2.68015,-3.24963)--(-2.6804,-3.24934)--(-2.68064,-3.24906)--(-2.68088,-3.24877)--(-2.68113,-3.24848)--(-2.68137,-3.24819)--(-2.68161,-3.24791)--
> (-2.68186,-3.24762)--(-2.6821,-3.24733)--(-2.68235,-3.24704)--(-2.6826,-3.24675)--(-2.68284,-3.24646)--(-2.68309,-3.24617)--(-2.68334,-3.24588)--(-2.68359,-3.24559)--(-2.68383,-3.2453)--(-2.68408,-3.24501)--(-2.68433,-3.24472)--(-2.68458,-3.24443)--(-2.68483,-3.24414)--(-2.68508,-3.24385)--(-2.68533,-3.24355)--(-2.68558,-3.24326)--(-2.68584,-3.24297)--(-2.68609,-3.24268)--(-2.68634,-3.24238)--(-2.68659,-3.24209)--(-2.68685,-3.24179)--(-2.6871,-3.2415)--(-2.68736,-3.24121)--(-2.68761,-3.24091)--
> (-2.68787,-3.24062)--(-2.68812,-3.24032)--(-2.68838,-3.24002)--(-2.68863,-3.23973)--(-2.68889,-3.23943)--(-2.68915,-3.23914)--(-2.68941,-3.23884)--(-2.68966,-3.23854)--(-2.68992,-3.23824)--(-2.69018,-3.23795)--(-2.69044,-3.23765)--(-2.6907,-3.23735)--(-2.69096,-3.23705)--(-2.69122,-3.23675)--(-2.69148,-3.23645)--(-2.69175,-3.23615)--(-2.69201,-3.23585)--(-2.69227,-3.23555)--(-2.69253,-3.23525)--(-2.6928,-3.23495)--(-2.69306,-3.23465)--(-2.69333,-3.23435)--(-2.69359,-3.23404)--(-2.69386,-3.23374)--
> (-2.69412,-3.23344)--(-2.69439,-3.23314)--(-2.69466,-3.23283)--(-2.69492,-3.23253)--(-2.69519,-3.23223)--(-2.69546,-3.23192)--(-2.69573,-3.23162)--(-2.696,-3.23131)--(-2.69627,-3.23101)--(-2.69654,-3.2307)--(-2.69681,-3.2304)--(-2.69708,-3.23009)--(-2.69735,-3.22978)--(-2.69762,-3.22948)--(-2.69789,-3.22917)--(-2.69817,-3.22886)--(-2.69844,-3.22856)--(-2.69871,-3.22825)--(-2.69899,-3.22794)--(-2.69926,-3.22763)--(-2.69954,-3.22732)--(-2.69981,-3.22701)--(-2.70009,-3.2267)--(-2.70037,-3.22639)--
> (-2.70064,-3.22608)--(-2.70092,-3.22577)--(-2.7012,-3.22546)--(-2.70148,-3.22515)--(-2.70176,-3.22484)--(-2.70204,-3.22453)--(-2.70232,-3.22421)--(-2.7026,-3.2239)--(-2.70288,-3.22359)--(-2.70316,-3.22328)--(-2.70344,-3.22296)--(-2.70372,-3.22265)--(-2.70401,-3.22233)--(-2.70429,-3.22202)--(-2.70457,-3.2217)--(-2.70486,-3.22139)--(-2.70514,-3.22107)--(-2.70543,-3.22076)--(-2.70571,-3.22044)--(-2.706,-3.22013)--(-2.70629,-3.21981)--(-2.70657,-3.21949)--(-2.70686,-3.21917)--(-2.70715,-3.21886)--
> (-2.70744,-3.21854)--(-2.70773,-3.21822)--(-2.70802,-3.2179)--(-2.70831,-3.21758)--(-2.7086,-3.21726)--(-2.70889,-3.21694)--(-2.70918,-3.21662)--(-2.70948,-3.2163)--(-2.70977,-3.21598)--(-2.71006,-3.21566)--(-2.71036,-3.21534)--(-2.71065,-3.21501)--(-2.71095,-3.21469)--(-2.71124,-3.21437)--(-2.71154,-3.21405)--(-2.71183,-3.21372)--(-2.71213,-3.2134)--(-2.71243,-3.21308)--(-2.71273,-3.21275)--(-2.71303,-3.21243)--(-2.71333,-3.2121)--(-2.71362,-3.21178)--(-2.71393,-3.21145)--(-2.71423,-3.21112)--
> (-2.71453,-3.2108)--(-2.71483,-3.21047)--(-2.71513,-3.21014)--(-2.71543,-3.20982)--(-2.71574,-3.20949)--(-2.71604,-3.20916)--(-2.71635,-3.20883)--(-2.71665,-3.2085)--(-2.71696,-3.20817)--(-2.71726,-3.20784)--(-2.71757,-3.20751)--(-2.71788,-3.20718)--(-2.71818,-3.20685)--(-2.71849,-3.20652)--(-2.7188,-3.20619)--(-2.71911,-3.20586)--(-2.71942,-3.20552)--(-2.71973,-3.20519)--(-2.72004,-3.20486)--(-2.72035,-3.20453)--(-2.72067,-3.20419)--(-2.72098,-3.20386)--(-2.72129,-3.20352)--(-2.72161,-3.20319)--
> (-2.72192,-3.20285)--(-2.72223,-3.20252)--(-2.72255,-3.20218)--(-2.72287,-3.20185)--(-2.72318,-3.20151)--(-2.7235,-3.20117)--(-2.72382,-3.20084)--(-2.72414,-3.2005)--(-2.72445,-3.20016)--(-2.72477,-3.19982)--(-2.72509,-3.19948)--(-2.72541,-3.19914)--(-2.72574,-3.1988)--(-2.72606,-3.19846)--(-2.72638,-3.19812)--(-2.7267,-3.19778)--(-2.72703,-3.19744)--(-2.72735,-3.1971)--(-2.72767,-3.19676)--(-2.728,-3.19642)--(-2.72833,-3.19607)--(-2.72865,-3.19573)--(-2.72898,-3.19539)--(-2.72931,-3.19504)--
> (-2.72963,-3.1947)--(-2.72996,-3.19435)--(-2.73029,-3.19401)--(-2.73062,-3.19366)--(-2.73095,-3.19332)--(-2.73128,-3.19297)--(-2.73161,-3.19263)--(-2.73195,-3.19228)--(-2.73228,-3.19193)--(-2.73261,-3.19158)--(-2.73295,-3.19124)--(-2.73328,-3.19089)--(-2.73362,-3.19054)--(-2.73395,-3.19019)--(-2.73429,-3.18984)--(-2.73463,-3.18949)--(-2.73496,-3.18914)--(-2.7353,-3.18879)--(-2.73564,-3.18844)--(-2.73598,-3.18809)--(-2.73632,-3.18774)--(-2.73666,-3.18738)--(-2.737,-3.18703)--(-2.73734,-3.18668)--
> (-2.73769,-3.18632)--(-2.73803,-3.18597)--(-2.73837,-3.18562)--(-2.73872,-3.18526)--(-2.73906,-3.18491)--(-2.73941,-3.18455)--(-2.73975,-3.1842)--(-2.7401,-3.18384)--(-2.74045,-3.18348)--(-2.7408,-3.18313)--(-2.74115,-3.18277)--(-2.74149,-3.18241)--(-2.74184,-3.18205)--(-2.7422,-3.18169)--(-2.74255,-3.18133)--(-2.7429,-3.18097)--(-2.74325,-3.18061)--(-2.7436,-3.18025)--(-2.74396,-3.17989)--(-2.74431,-3.17953)--(-2.74467,-3.17917)--(-2.74502,-3.17881)--(-2.74538,-3.17845)--(-2.74574,-3.17808)--
> (-2.74609,-3.17772)--(-2.74645,-3.17736)--(-2.74681,-3.17699)--(-2.74717,-3.17663)--(-2.74753,-3.17626)--(-2.74789,-3.1759)--(-2.74826,-3.17553)--(-2.74862,-3.17517)--(-2.74898,-3.1748)--(-2.74934,-3.17443)--(-2.74971,-3.17407)--(-2.75007,-3.1737)--(-2.75044,-3.17333)--(-2.75081,-3.17296)--(-2.75117,-3.17259)--(-2.75154,-3.17222)--(-2.75191,-3.17185)--(-2.75228,-3.17148)--(-2.75265,-3.17111)--(-2.75302,-3.17074)--(-2.75339,-3.17037)--(-2.75376,-3.17)--(-2.75413,-3.16962)--(-2.75451,-3.16925)--
> (-2.75488,-3.16888)--(-2.75525,-3.1685)--(-2.75563,-3.16813)--(-2.756,-3.16776)--(-2.75638,-3.16738)--(-2.75676,-3.16701)--(-2.75714,-3.16663)--(-2.75752,-3.16625)--(-2.75789,-3.16588)--(-2.75827,-3.1655)--(-2.75866,-3.16512)--(-2.75904,-3.16474)--(-2.75942,-3.16436)--(-2.7598,-3.16399)--(-2.76019,-3.16361)--(-2.76057,-3.16323)--(-2.76095,-3.16285)--(-2.76134,-3.16247)--(-2.76173,-3.16208)--(-2.76211,-3.1617)--(-2.7625,-3.16132)--(-2.76289,-3.16094)--(-2.76328,-3.16055)--(-2.76367,-3.16017)--
> (-2.76406,-3.15979)--(-2.76445,-3.1594)--(-2.76484,-3.15902)--(-2.76524,-3.15863)--(-2.76563,-3.15825)--(-2.76602,-3.15786)--(-2.76642,-3.15747)--(-2.76682,-3.15709)--(-2.76721,-3.1567)--(-2.76761,-3.15631)--(-2.76801,-3.15592)--(-2.76841,-3.15553)--(-2.76881,-3.15515)--(-2.76921,-3.15476)--(-2.76961,-3.15437)--(-2.77001,-3.15397)--(-2.77041,-3.15358)--(-2.77081,-3.15319)--(-2.77122,-3.1528)--(-2.77162,-3.15241)--(-2.77203,-3.15201)--(-2.77244,-3.15162)--(-2.77284,-3.15123)--(-2.77325,-3.15083)--
> (-2.77366,-3.15044)--(-2.77407,-3.15004)--(-2.77448,-3.14965)--(-2.77489,-3.14925)--(-2.7753,-3.14885)--(-2.77571,-3.14846)--(-2.77613,-3.14806)--(-2.77654,-3.14766)--(-2.77696,-3.14726)--(-2.77737,-3.14686)--(-2.77779,-3.14646)--(-2.7782,-3.14606)--(-2.77862,-3.14566)--(-2.77904,-3.14526)--(-2.77946,-3.14486)--(-2.77988,-3.14446)--(-2.7803,-3.14405)--(-2.78072,-3.14365)--(-2.78115,-3.14325)--(-2.78157,-3.14284)--(-2.78199,-3.14244)--(-2.78242,-3.14203)--(-2.78284,-3.14163)--(-2.78327,-3.14122)--
> (-2.7837,-3.14082)--(-2.78413,-3.14041)--(-2.78456,-3.14)--(-2.78499,-3.1396)--(-2.78542,-3.13919)--(-2.78585,-3.13878)--(-2.78628,-3.13837)--(-2.78671,-3.13796)--(-2.78715,-3.13755)--(-2.78758,-3.13714)--(-2.78802,-3.13673)--(-2.78846,-3.13631)--(-2.78889,-3.1359)--(-2.78933,-3.13549)--(-2.78977,-3.13508)--(-2.79021,-3.13466)--(-2.79065,-3.13425)--(-2.79109,-3.13383)--(-2.79153,-3.13342)--(-2.79198,-3.133)--(-2.79242,-3.13259)--(-2.79287,-3.13217)--(-2.79331,-3.13175)--(-2.79376,-3.13133)--
> (-2.79421,-3.13092)--(-2.79465,-3.1305)--(-2.7951,-3.13008)--(-2.79555,-3.12966)--(-2.796,-3.12924)--(-2.79646,-3.12882)--(-2.79691,-3.12839)--(-2.79736,-3.12797)--(-2.79782,-3.12755)--(-2.79827,-3.12713)--(-2.79873,-3.1267)--(-2.79918,-3.12628)--(-2.79964,-3.12585)--(-2.8001,-3.12543)--(-2.80056,-3.125)--(-2.80102,-3.12458)--(-2.80148,-3.12415)--(-2.80194,-3.12372)--(-2.80241,-3.1233)--(-2.80287,-3.12287)--(-2.80334,-3.12244)--(-2.8038,-3.12201)--(-2.80427,-3.12158)--(-2.80474,-3.12115)--
> (-2.8052,-3.12072)--(-2.80567,-3.12029)--(-2.80614,-3.11986)--(-2.80662,-3.11942)--(-2.80709,-3.11899)--(-2.80756,-3.11856)--(-2.80803,-3.11812)--(-2.80851,-3.11769)--(-2.80899,-3.11725)--(-2.80946,-3.11682)--(-2.80994,-3.11638)--(-2.81042,-3.11594)--(-2.8109,-3.11551)--(-2.81138,-3.11507)--(-2.81186,-3.11463)--(-2.81234,-3.11419)--(-2.81283,-3.11375)--(-2.81331,-3.11331)--(-2.81379,-3.11287)--(-2.81428,-3.11243)--(-2.81477,-3.11199)--(-2.81526,-3.11155)--(-2.81574,-3.1111)--(-2.81623,-3.11066)--
> (-2.81673,-3.11022)--(-2.81722,-3.10977)--(-2.81771,-3.10933)--(-2.8182,-3.10888)--(-2.8187,-3.10844)--(-2.81919,-3.10799)--(-2.81969,-3.10754)--(-2.82019,-3.10709)--(-2.82069,-3.10665)--(-2.82119,-3.1062)--(-2.82169,-3.10575)--(-2.82219,-3.1053)--(-2.82269,-3.10485)--(-2.82319,-3.10439)--(-2.8237,-3.10394)--(-2.8242,-3.10349)--(-2.82471,-3.10304)--(-2.82522,-3.10258)--(-2.82573,-3.10213)--(-2.82624,-3.10168)--(-2.82675,-3.10122)--(-2.82726,-3.10076)--(-2.82777,-3.10031)--(-2.82828,-3.09985)--
> (-2.8288,-3.09939)--(-2.82931,-3.09894)--(-2.82983,-3.09848)--(-2.83035,-3.09802)--(-2.83087,-3.09756)--(-2.83139,-3.0971)--(-2.83191,-3.09664)--(-2.83243,-3.09617)--(-2.83295,-3.09571)--(-2.83347,-3.09525)--(-2.834,-3.09479)--(-2.83452,-3.09432)--(-2.83505,-3.09386)--(-2.83558,-3.09339)--(-2.83611,-3.09293)--(-2.83664,-3.09246)--(-2.83717,-3.09199)--(-2.8377,-3.09153)--(-2.83823,-3.09106)--(-2.83877,-3.09059)--(-2.8393,-3.09012)--(-2.83984,-3.08965)--(-2.84038,-3.08918)--(-2.84091,-3.08871)--
> (-2.84145,-3.08824)--(-2.84199,-3.08776)--(-2.84254,-3.08729)--(-2.84308,-3.08682)--(-2.84362,-3.08634)--(-2.84417,-3.08587)--(-2.84471,-3.08539)--(-2.84526,-3.08492)--(-2.84581,-3.08444)--(-2.84636,-3.08396)--(-2.84691,-3.08348)--(-2.84746,-3.08301)--(-2.84801,-3.08253)--(-2.84857,-3.08205)--(-2.84912,-3.08157)--(-2.84968,-3.08109)--(-2.85023,-3.0806)--(-2.85079,-3.08012)--(-2.85135,-3.07964)--(-2.85191,-3.07915)--(-2.85247,-3.07867)--(-2.85304,-3.07819)--(-2.8536,-3.0777)--(-2.85416,-3.07721)--
> (-2.85473,-3.07673)--(-2.8553,-3.07624)--(-2.85587,-3.07575)--(-2.85644,-3.07526)--(-2.85701,-3.07477)--(-2.85758,-3.07428)--(-2.85815,-3.07379)--(-2.85872,-3.0733)--(-2.8593,-3.07281)--(-2.85988,-3.07232)--(-2.86045,-3.07183)--(-2.86103,-3.07133)--(-2.86161,-3.07084)--(-2.86219,-3.07034)--(-2.86278,-3.06985)--(-2.86336,-3.06935)--(-2.86394,-3.06885)--(-2.86453,-3.06836)--(-2.86512,-3.06786)--(-2.8657,-3.06736)--(-2.86629,-3.06686)--(-2.86688,-3.06636)--(-2.86748,-3.06586)--(-2.86807,-3.06536)--
> (-2.86866,-3.06485)--(-2.86926,-3.06435)--(-2.86985,-3.06385)--(-2.87045,-3.06334)--(-2.87105,-3.06284)--(-2.87165,-3.06233)--(-2.87225,-3.06183)--(-2.87286,-3.06132)--(-2.87346,-3.06081)--(-2.87406,-3.0603)--(-2.87467,-3.05979)--(-2.87528,-3.05929)--(-2.87589,-3.05878)--(-2.8765,-3.05826)--(-2.87711,-3.05775)--(-2.87772,-3.05724)--(-2.87833,-3.05673)--(-2.87895,-3.05621)--(-2.87957,-3.0557)--(-2.88018,-3.05518)--(-2.8808,-3.05467)--(-2.88142,-3.05415)--(-2.88204,-3.05363)--(-2.88267,-3.05312)--
> (-2.88329,-3.0526)--(-2.88392,-3.05208)--(-2.88454,-3.05156)--(-2.88517,-3.05104)--(-2.8858,-3.05052)--(-2.88643,-3.05)--(-2.88706,-3.04947)--(-2.8877,-3.04895)--(-2.88833,-3.04842)--(-2.88897,-3.0479)--(-2.8896,-3.04737)--(-2.89024,-3.04685)--(-2.89088,-3.04632)--(-2.89152,-3.04579)--(-2.89216,-3.04527)--(-2.89281,-3.04474)--(-2.89345,-3.04421)--(-2.8941,-3.04368)--(-2.89475,-3.04314)--(-2.89539,-3.04261)--(-2.89604,-3.04208)--(-2.8967,-3.04155)--(-2.89735,-3.04101)--(-2.898,-3.04048)--
> (-2.89866,-3.03994)--(-2.89932,-3.03941)--(-2.89998,-3.03887)--(-2.90063,-3.03833)--(-2.9013,-3.03779)--(-2.90196,-3.03725)--(-2.90262,-3.03671)--(-2.90329,-3.03617)--(-2.90395,-3.03563)--(-2.90462,-3.03509)--(-2.90529,-3.03455)--(-2.90596,-3.034)--(-2.90664,-3.03346)--(-2.90731,-3.03291)--(-2.90798,-3.03237)--(-2.90866,-3.03182)--(-2.90934,-3.03127)--(-2.91002,-3.03073)--(-2.9107,-3.03018)--(-2.91138,-3.02963)--(-2.91206,-3.02908)--(-2.91275,-3.02853)--(-2.91344,-3.02797)--(-2.91412,-3.02742)--
> (-2.91481,-3.02687)--(-2.9155,-3.02631)--(-2.9162,-3.02576)--(-2.91689,-3.0252)--(-2.91759,-3.02465)--(-2.91828,-3.02409)--(-2.91898,-3.02353)--(-2.91968,-3.02297)--(-2.92038,-3.02241)--(-2.92108,-3.02185)--(-2.92179,-3.02129)--(-2.92249,-3.02073)--(-2.9232,-3.02017)--(-2.92391,-3.0196)--(-2.92462,-3.01904)--(-2.92533,-3.01847)--(-2.92604,-3.01791)--(-2.92676,-3.01734)--(-2.92747,-3.01677)--(-2.92819,-3.01621)--(-2.92891,-3.01564)--(-2.92963,-3.01507)--(-2.93035,-3.0145)--(-2.93108,-3.01393)--
> (-2.9318,-3.01335)--(-2.93253,-3.01278)--(-2.93326,-3.01221)--(-2.93399,-3.01163)--(-2.93472,-3.01106)--(-2.93545,-3.01048)--(-2.93619,-3.00991)--(-2.93692,-3.00933)--(-2.93766,-3.00875)--(-2.9384,-3.00817)--(-2.93914,-3.00759)--(-2.93988,-3.00701)--(-2.94063,-3.00643)--(-2.94137,-3.00584)--(-2.94212,-3.00526)--(-2.94287,-3.00468)--(-2.94362,-3.00409)--(-2.94437,-3.00351)--(-2.94512,-3.00292)--(-2.94588,-3.00233)--(-2.94664,-3.00174)--(-2.94739,-3.00116)--(-2.94816,-3.00057)--(-2.94892,-2.99997)--
> (-2.94968,-2.99938)--(-2.95045,-2.99879)--(-2.95121,-2.9982)--(-2.95198,-2.9976)--(-2.95275,-2.99701)--(-2.95352,-2.99641)--(-2.95429,-2.99582)--(-2.95507,-2.99522)--(-2.95585,-2.99462)--(-2.95662,-2.99402)--(-2.9574,-2.99342)--(-2.95819,-2.99282)--(-2.95897,-2.99222)--(-2.95975,-2.99162)--(-2.96054,-2.99101)--(-2.96133,-2.99041)--(-2.96212,-2.9898)--(-2.96291,-2.9892)--(-2.96371,-2.98859)--(-2.9645,-2.98798)--(-2.9653,-2.98737)--(-2.9661,-2.98676)--(-2.9669,-2.98615)--(-2.9677,-2.98554)--
> (-2.9685,-2.98493)--(-2.96931,-2.98432)--(-2.97012,-2.9837)--(-2.97093,-2.98309)--(-2.97174,-2.98247)--(-2.97255,-2.98186)--(-2.97336,-2.98124)--(-2.97418,-2.98062)--(-2.975,-2.98)--(-2.97582,-2.97938)--(-2.97664,-2.97876)--(-2.97746,-2.97814)--(-2.97829,-2.97752)--(-2.97912,-2.97689)--(-2.97994,-2.97627)--(-2.98078,-2.97564)--(-2.98161,-2.97502)--(-2.98244,-2.97439)--(-2.98328,-2.97376)--(-2.98412,-2.97313)--(-2.98496,-2.9725)--(-2.9858,-2.97187)--(-2.98664,-2.97124)--(-2.98749,-2.97061)--
> (-2.98833,-2.96997)--(-2.98918,-2.96934)--(-2.99003,-2.96871)--(-2.99089,-2.96807)--(-2.99174,-2.96743)--(-2.9926,-2.96679)--(-2.99346,-2.96615)--(-2.99432,-2.96551)--(-2.99518,-2.96487)--(-2.99604,-2.96423)--(-2.99691,-2.96359)--(-2.99778,-2.96295)--(-2.99865,-2.9623)--(-2.99952,-2.96166)--(-3.00039,-2.96101)--(-3.00127,-2.96036)--(-3.00215,-2.95971)--(-3.00303,-2.95906)--(-3.00391,-2.95841)--(-3.00479,-2.95776)--(-3.00568,-2.95711)--(-3.00656,-2.95646)--(-3.00745,-2.9558)--(-3.00835,-2.95515)--
> (-3.00924,-2.95449)--(-3.01013,-2.95383)--(-3.01103,-2.95318)--(-3.01193,-2.95252)--(-3.01283,-2.95186)--(-3.01374,-2.9512)--(-3.01464,-2.95054)--(-3.01555,-2.94987)--(-3.01646,-2.94921)--(-3.01737,-2.94854)--(-3.01828,-2.94788)--(-3.0192,-2.94721)--(-3.02012,-2.94654)--(-3.02104,-2.94588)--(-3.02196,-2.94521)--(-3.02288,-2.94454)--(-3.02381,-2.94386)--(-3.02473,-2.94319)--(-3.02566,-2.94252)--(-3.0266,-2.94184)--(-3.02753,-2.94117)--(-3.02847,-2.94049)--(-3.02941,-2.93981)--(-3.03035,-2.93914)--
> (-3.03129,-2.93846)--(-3.03223,-2.93778)--(-3.03318,-2.93709)--(-3.03413,-2.93641)--(-3.03508,-2.93573)--(-3.03603,-2.93504)--(-3.03699,-2.93436)--(-3.03795,-2.93367)--(-3.03891,-2.93298)--(-3.03987,-2.93229)--(-3.04083,-2.9316)--(-3.0418,-2.93091)--(-3.04277,-2.93022)--(-3.04374,-2.92953)--(-3.04471,-2.92884)--(-3.04568,-2.92814)--(-3.04666,-2.92744)--(-3.04764,-2.92675)--(-3.04862,-2.92605)--(-3.04961,-2.92535)--(-3.05059,-2.92465)--(-3.05158,-2.92395)--(-3.05257,-2.92325)--(-3.05356,-2.92254)--
> (-3.05456,-2.92184)--(-3.05556,-2.92114)--(-3.05656,-2.92043)--(-3.05756,-2.91972)--(-3.05856,-2.91901)--(-3.05957,-2.9183)--(-3.06058,-2.91759)--(-3.06159,-2.91688)--(-3.0626,-2.91617)--(-3.06362,-2.91545)--(-3.06464,-2.91474)--(-3.06566,-2.91402)--(-3.06668,-2.91331)--(-3.06771,-2.91259)--(-3.06873,-2.91187)--(-3.06976,-2.91115)--(-3.07079,-2.91043)--(-3.07183,-2.90971)--(-3.07287,-2.90898)--(-3.0739,-2.90826)--(-3.07495,-2.90753)--(-3.07599,-2.9068)--(-3.07704,-2.90608)--(-3.07809,-2.90535)--
> (-3.07914,-2.90462)--(-3.08019,-2.90389)--(-3.08125,-2.90315)--(-3.08231,-2.90242)--(-3.08337,-2.90169)--(-3.08443,-2.90095)--(-3.0855,-2.90021)--(-3.08656,-2.89948)--(-3.08763,-2.89874)--(-3.08871,-2.898)--(-3.08978,-2.89726)--(-3.09086,-2.89651)--(-3.09194,-2.89577)--(-3.09303,-2.89502)--(-3.09411,-2.89428)--(-3.0952,-2.89353)--(-3.09629,-2.89278)--(-3.09738,-2.89203)--(-3.09848,-2.89128)--(-3.09958,-2.89053)--(-3.10068,-2.88978)--(-3.10178,-2.88903)--(-3.10289,-2.88827)--(-3.104,-2.88752)--
> (-3.10511,-2.88676)--(-3.10622,-2.886)--(-3.10734,-2.88524)--(-3.10846,-2.88448)--(-3.10958,-2.88372)--(-3.1107,-2.88295)--(-3.11183,-2.88219)--(-3.11296,-2.88142)--(-3.11409,-2.88066)--(-3.11523,-2.87989)--(-3.11637,-2.87912)--(-3.11751,-2.87835)--(-3.11865,-2.87758)--(-3.11979,-2.87681)--(-3.12094,-2.87603)--(-3.12209,-2.87526)--(-3.12325,-2.87448)--(-3.1244,-2.87371)--(-3.12556,-2.87293)--(-3.12672,-2.87215)--(-3.12789,-2.87137)--(-3.12905,-2.87058)--(-3.13022,-2.8698)--(-3.1314,-2.86902)--
> (-3.13257,-2.86823)--(-3.13375,-2.86744)--(-3.13493,-2.86666)--(-3.13612,-2.86587)--(-3.1373,-2.86508)--(-3.13849,-2.86428)--(-3.13968,-2.86349)--(-3.14088,-2.8627)--(-3.14208,-2.8619)--(-3.14328,-2.8611)--(-3.14448,-2.86031)--(-3.14569,-2.85951)--(-3.1469,-2.85871)--(-3.14811,-2.85791)--(-3.14932,-2.8571)--(-3.15054,-2.8563)--(-3.15176,-2.85549)--(-3.15299,-2.85469)--(-3.15421,-2.85388)--(-3.15544,-2.85307)--(-3.15667,-2.85226)--(-3.15791,-2.85145)--(-3.15915,-2.85063)--(-3.16039,-2.84982)--
> (-3.16163,-2.849)--(-3.16288,-2.84819)--(-3.16413,-2.84737)--(-3.16538,-2.84655)--(-3.16664,-2.84573)--(-3.1679,-2.84491)--(-3.16916,-2.84408)--(-3.17042,-2.84326)--(-3.17169,-2.84243)--(-3.17296,-2.84161)--(-3.17424,-2.84078)--(-3.17552,-2.83995)--(-3.1768,-2.83912)--(-3.17808,-2.83829)--(-3.17937,-2.83745)--(-3.18065,-2.83662)--(-3.18195,-2.83578)--(-3.18324,-2.83494)--(-3.18454,-2.83411)--(-3.18584,-2.83327)--(-3.18715,-2.83242)--(-3.18846,-2.83158)--(-3.18977,-2.83074)--(-3.19108,-2.82989)--
> (-3.1924,-2.82904)--(-3.19372,-2.8282)--(-3.19505,-2.82735)--(-3.19637,-2.8265)--(-3.1977,-2.82564)--(-3.19904,-2.82479)--(-3.20037,-2.82394)--(-3.20171,-2.82308)--(-3.20306,-2.82222)--(-3.2044,-2.82136)--(-3.20575,-2.8205)--(-3.20711,-2.81964)--(-3.20846,-2.81878)--(-3.20982,-2.81791)--(-3.21118,-2.81705)--(-3.21255,-2.81618)--(-3.21392,-2.81531)--(-3.21529,-2.81444)--(-3.21667,-2.81357)--(-3.21805,-2.8127)--(-3.21943,-2.81183)--(-3.22082,-2.81095)--(-3.22221,-2.81007)--(-3.2236,-2.8092)--
> (-3.225,-2.80832)--(-3.2264,-2.80744)--(-3.2278,-2.80655)--(-3.22921,-2.80567)--(-3.23062,-2.80479)--(-3.23203,-2.8039)--(-3.23345,-2.80301)--(-3.23487,-2.80212)--(-3.23629,-2.80123)--(-3.23772,-2.80034)--(-3.23915,-2.79945)--(-3.24059,-2.79855)--(-3.24202,-2.79765)--(-3.24347,-2.79676)--(-3.24491,-2.79586)--(-3.24636,-2.79496)--(-3.24781,-2.79405)--(-3.24927,-2.79315)--(-3.25073,-2.79225)--(-3.25219,-2.79134)--(-3.25366,-2.79043)--(-3.25513,-2.78952)--(-3.2566,-2.78861)--(-3.25808,-2.7877)--
> (-3.25956,-2.78678)--(-3.26104,-2.78587)--(-3.26253,-2.78495)--(-3.26402,-2.78403)--(-3.26552,-2.78312)--(-3.26702,-2.78219)--(-3.26852,-2.78127)--(-3.27003,-2.78035)--(-3.27154,-2.77942)--(-3.27305,-2.77849)--(-3.27457,-2.77757)--(-3.27609,-2.77664)--(-3.27762,-2.77571)--(-3.27914,-2.77477)--(-3.28068,-2.77384)--(-3.28221,-2.7729)--(-3.28376,-2.77196)--(-3.2853,-2.77103)--(-3.28685,-2.77008)--(-3.2884,-2.76914)--(-3.28996,-2.7682)--(-3.29152,-2.76725)--(-3.29308,-2.76631)--(-3.29465,-2.76536)--
> (-3.29622,-2.76441)--(-3.29779,-2.76346)--(-3.29937,-2.76251)--(-3.30096,-2.76155)--(-3.30254,-2.7606)--(-3.30413,-2.75964)--(-3.30573,-2.75868)--(-3.30733,-2.75772)--(-3.30893,-2.75676)--(-3.31054,-2.75579)--(-3.31215,-2.75483)--(-3.31377,-2.75386)--(-3.31539,-2.7529)--(-3.31701,-2.75193)--(-3.31864,-2.75095)--(-3.32027,-2.74998)--(-3.3219,-2.74901)--(-3.32354,-2.74803)--(-3.32519,-2.74705)--(-3.32683,-2.74607)--(-3.32849,-2.74509)--(-3.33014,-2.74411)--(-3.3318,-2.74313)--(-3.33347,-2.74214)--
> (-3.33514,-2.74115)--(-3.33681,-2.74017)--(-3.33849,-2.73918)--(-3.34017,-2.73818)--(-3.34185,-2.73719)--(-3.34354,-2.7362)--(-3.34524,-2.7352)--(-3.34693,-2.7342)--(-3.34864,-2.7332)--(-3.35034,-2.7322)--(-3.35206,-2.7312)--(-3.35377,-2.73019)--(-3.35549,-2.72918)--(-3.35722,-2.72818)--(-3.35894,-2.72717)--(-3.36068,-2.72616)--(-3.36241,-2.72514)--(-3.36416,-2.72413)--(-3.3659,-2.72311)--(-3.36765,-2.72209)--(-3.36941,-2.72107)--(-3.37117,-2.72005)--(-3.37293,-2.71903)--(-3.3747,-2.71801)--
> (-3.37647,-2.71698)--(-3.37825,-2.71595)--(-3.38003,-2.71492)--(-3.38182,-2.71389)--(-3.38361,-2.71286)--(-3.38541,-2.71182)--(-3.38721,-2.71079)--(-3.38901,-2.70975)--(-3.39082,-2.70871)--(-3.39263,-2.70767)--(-3.39445,-2.70662)--(-3.39628,-2.70558)--(-3.3981,-2.70453)--(-3.39994,-2.70349)--(-3.40177,-2.70244)--(-3.40362,-2.70138)--(-3.40546,-2.70033)--(-3.40731,-2.69928)--(-3.40917,-2.69822)--(-3.41103,-2.69716)--(-3.4129,-2.6961)--(-3.41477,-2.69504)--(-3.41664,-2.69397)--(-3.41852,-2.69291)--
> (-3.42041,-2.69184)--(-3.4223,-2.69077)--(-3.42419,-2.6897)--(-3.42609,-2.68863)--(-3.428,-2.68756)--(-3.42991,-2.68648)--(-3.43182,-2.6854)--(-3.43374,-2.68432)--(-3.43566,-2.68324)--(-3.43759,-2.68216)--(-3.43953,-2.68107)--(-3.44147,-2.67999)--(-3.44341,-2.6789)--(-3.44536,-2.67781)--(-3.44731,-2.67672)--(-3.44927,-2.67563)--(-3.45124,-2.67453)--(-3.4532,-2.67343)--(-3.45518,-2.67233)--(-3.45716,-2.67123)--(-3.45914,-2.67013)--(-3.46113,-2.66903)--(-3.46313,-2.66792)--(-3.46513,-2.66681)--
> (-3.46713,-2.6657)--(-3.46914,-2.66459)--(-3.47116,-2.66348)--(-3.47318,-2.66236)--(-3.47521,-2.66125)--(-3.47724,-2.66013)--(-3.47927,-2.65901)--(-3.48132,-2.65788)--(-3.48336,-2.65676)--(-3.48541,-2.65563)--(-3.48747,-2.65451)--(-3.48954,-2.65338)--(-3.4916,-2.65225)--(-3.49368,-2.65111)--(-3.49576,-2.64998)--(-3.49784,-2.64884)--(-3.49993,-2.6477)--(-3.50203,-2.64656)--(-3.50413,-2.64542)--(-3.50624,-2.64427)--(-3.50835,-2.64313)--(-3.51047,-2.64198)--(-3.51259,-2.64083)--(-3.51472,-2.63968)--
> (-3.51685,-2.63852)--(-3.51899,-2.63737)--(-3.52114,-2.63621)--(-3.52329,-2.63505)--(-3.52544,-2.63389)--(-3.52761,-2.63272)--(-3.52977,-2.63156)--(-3.53195,-2.63039)--(-3.53413,-2.62922)--(-3.53631,-2.62805)--(-3.5385,-2.62688)--(-3.5407,-2.6257)--(-3.5429,-2.62453)--(-3.54511,-2.62335)--(-3.54732,-2.62217)--(-3.54954,-2.62099)--(-3.55177,-2.6198)--(-3.554,-2.61861)--(-3.55624,-2.61743)--(-3.55848,-2.61624)--(-3.56073,-2.61504)--(-3.56299,-2.61385)--(-3.56525,-2.61265)--(-3.56751,-2.61146)--
> (-3.56979,-2.61026)--(-3.57206,-2.60905)--(-3.57435,-2.60785)--(-3.57664,-2.60664)--(-3.57894,-2.60544)--(-3.58124,-2.60423)--(-3.58355,-2.60302)--(-3.58586,-2.6018)--(-3.58819,-2.60059)--(-3.59051,-2.59937)--(-3.59285,-2.59815)--(-3.59519,-2.59693)--(-3.59753,-2.59571)--(-3.59988,-2.59448)--(-3.60224,-2.59325)--(-3.60461,-2.59202)--(-3.60698,-2.59079)--(-3.60936,-2.58956)--(-3.61174,-2.58832)--(-3.61413,-2.58709)--(-3.61652,-2.58585)--(-3.61893,-2.5846)--(-3.62134,-2.58336)--(-3.62375,-2.58212)--
> (-3.62617,-2.58087)--(-3.6286,-2.57962)--(-3.63104,-2.57837)--(-3.63348,-2.57711)--(-3.63592,-2.57586)--(-3.63838,-2.5746)--(-3.64084,-2.57334)--(-3.6433,-2.57208)--(-3.64578,-2.57082)--(-3.64826,-2.56955)--(-3.65075,-2.56828)--(-3.65324,-2.56701)--(-3.65574,-2.56574)--(-3.65825,-2.56447)--(-3.66076,-2.56319)--(-3.66328,-2.56191)--(-3.66581,-2.56063)--(-3.66834,-2.55935)--(-3.67088,-2.55807)--(-3.67343,-2.55678)--(-3.67598,-2.55549)--(-3.67854,-2.5542)--(-3.68111,-2.55291)--(-3.68368,-2.55162)--
> (-3.68626,-2.55032)--(-3.68885,-2.54902)--(-3.69145,-2.54772)--(-3.69405,-2.54642)--(-3.69666,-2.54511)--(-3.69927,-2.54381)--(-3.7019,-2.5425)--(-3.70453,-2.54119)--(-3.70716,-2.53988)--(-3.70981,-2.53856)--(-3.71246,-2.53724)--(-3.71512,-2.53592)--(-3.71778,-2.5346)--(-3.72046,-2.53328)--(-3.72314,-2.53195)--(-3.72582,-2.53062)--(-3.72852,-2.5293)--(-3.73122,-2.52796)--(-3.73393,-2.52663)--(-3.73664,-2.52529)--(-3.73937,-2.52395)--(-3.7421,-2.52261)--(-3.74483,-2.52127)--(-3.74758,-2.51993)--
> (-3.75033,-2.51858)--(-3.75309,-2.51723)--(-3.75586,-2.51588)--(-3.75863,-2.51453)--(-3.76142,-2.51317)--(-3.7642,-2.51181)--(-3.767,-2.51045)--(-3.76981,-2.50909)--(-3.77262,-2.50773)--(-3.77544,-2.50636)--(-3.77827,-2.505)--(-3.7811,-2.50363)--(-3.78394,-2.50225)--(-3.78679,-2.50088)--(-3.78965,-2.4995)--(-3.79252,-2.49812)--(-3.79539,-2.49674)--(-3.79827,-2.49536)--(-3.80116,-2.49397)--(-3.80406,-2.49259)--(-3.80696,-2.4912)--(-3.80987,-2.4898)--(-3.81279,-2.48841)--(-3.81572,-2.48701)--
> (-3.81866,-2.48562)--(-3.8216,-2.48422)--(-3.82455,-2.48281)--(-3.82751,-2.48141)--(-3.83048,-2.48)--(-3.83346,-2.47859)--(-3.83644,-2.47718)--(-3.83943,-2.47577)--(-3.84243,-2.47435)--(-3.84544,-2.47293)--(-3.84846,-2.47151)--(-3.85148,-2.47009)--(-3.85451,-2.46867)--(-3.85755,-2.46724)--(-3.8606,-2.46581)--(-3.86366,-2.46438)--(-3.86673,-2.46295)--(-3.8698,-2.46151)--(-3.87288,-2.46008)--(-3.87597,-2.45864)--(-3.87907,-2.45719)--(-3.88218,-2.45575)--(-3.88529,-2.4543)--(-3.88842,-2.45286)--
> (-3.89155,-2.45141)--(-3.89469,-2.44995)--(-3.89784,-2.4485)--(-3.901,-2.44704)--(-3.90416,-2.44558)--(-3.90734,-2.44412)--(-3.91052,-2.44266)--(-3.91371,-2.44119)--(-3.91692,-2.43972)--(-3.92012,-2.43825)--(-3.92334,-2.43678)--(-3.92657,-2.4353)--(-3.92981,-2.43383)--(-3.93305,-2.43235)--(-3.9363,-2.43087)--(-3.93956,-2.42938)--(-3.94284,-2.4279)--(-3.94611,-2.42641)--(-3.9494,-2.42492)--(-3.9527,-2.42343)--(-3.95601,-2.42193)--(-3.95932,-2.42044)--(-3.96265,-2.41894)--(-3.96598,-2.41744)--
> (-3.96932,-2.41593)--(-3.97267,-2.41443)--(-3.97603,-2.41292)--(-3.9794,-2.41141)--(-3.98278,-2.4099)--(-3.98617,-2.40838)--(-3.98957,-2.40687)--(-3.99297,-2.40535)--(-3.99639,-2.40383)--(-3.99981,-2.4023)--(-4.00325,-2.40078)--(-4.00669,-2.39925)--(-4.01014,-2.39772)--(-4.0136,-2.39619)--(-4.01707,-2.39466)--(-4.02055,-2.39312)--(-4.02404,-2.39158)--(-4.02754,-2.39004)--(-4.03105,-2.3885)--(-4.03457,-2.38695)--(-4.0381,-2.3854)--(-4.04164,-2.38385)--(-4.04518,-2.3823)--(-4.04874,-2.38075)--
> (-4.05231,-2.37919)--(-4.05588,-2.37764)--(-4.05947,-2.37607)--(-4.06306,-2.37451)--(-4.06667,-2.37295)--(-4.07028,-2.37138)--(-4.07391,-2.36981)--(-4.07754,-2.36824)--(-4.08118,-2.36667)--(-4.08484,-2.36509)--(-4.0885,-2.36351)--(-4.09218,-2.36193)--(-4.09586,-2.36035)--(-4.09955,-2.35877)--(-4.10326,-2.35718)--(-4.10697,-2.35559)--(-4.11069,-2.354)--(-4.11443,-2.35241)--(-4.11817,-2.35081)--(-4.12192,-2.34922)--(-4.12569,-2.34762)--(-4.12946,-2.34601)--(-4.13325,-2.34441)--(-4.13704,-2.34281)--
> (-4.14084,-2.3412)--(-4.14466,-2.33959)--(-4.14848,-2.33797)--(-4.15232,-2.33636)--(-4.15617,-2.33474)--(-4.16002,-2.33313)--(-4.16389,-2.3315)--(-4.16776,-2.32988)--(-4.17165,-2.32826)--(-4.17555,-2.32663)--(-4.17946,-2.325)--(-4.18338,-2.32337)--(-4.18731,-2.32174)--(-4.19125,-2.3201)--(-4.1952,-2.31846)--(-4.19916,-2.31682)--(-4.20313,-2.31518)--(-4.20711,-2.31354)--(-4.2111,-2.31189)--(-4.21511,-2.31024)--(-4.21912,-2.30859)--(-4.22315,-2.30694)--(-4.22718,-2.30529)--(-4.23123,-2.30363)--
> (-4.23529,-2.30197)--(-4.23935,-2.30031)--(-4.24343,-2.29865)--(-4.24752,-2.29698)--(-4.25162,-2.29532)--(-4.25574,-2.29365)--(-4.25986,-2.29198)--(-4.26399,-2.2903)--(-4.26814,-2.28863)--(-4.27229,-2.28695)--(-4.27646,-2.28527)--(-4.28064,-2.28359)--(-4.28483,-2.28191)--(-4.28903,-2.28022)--(-4.29324,-2.27854)--(-4.29746,-2.27685)--(-4.3017,-2.27516)--(-4.30594,-2.27346)--(-4.3102,-2.27177)--(-4.31447,-2.27007)--(-4.31875,-2.26837)--(-4.32304,-2.26667)--(-4.32734,-2.26497)--(-4.33165,-2.26327)--
> (-4.33598,-2.26156)--(-4.34032,-2.25985)--(-4.34466,-2.25814)--(-4.34902,-2.25643)--(-4.35339,-2.25471)--(-4.35778,-2.253)--(-4.36217,-2.25128)--(-4.36658,-2.24956)--(-4.37099,-2.24784)--(-4.37542,-2.24612)--(-4.37986,-2.24439)--(-4.38432,-2.24266)--(-4.38878,-2.24093)--(-4.39325,-2.2392)--(-4.39774,-2.23747)--(-4.40224,-2.23573)--(-4.40675,-2.234)--(-4.41128,-2.23226)--(-4.41581,-2.23052)--(-4.42036,-2.22878)--(-4.42492,-2.22703)--(-4.42949,-2.22529)--(-4.43407,-2.22354)--(-4.43866,-2.22179)--
> (-4.44327,-2.22004)--(-4.44789,-2.21829)--(-4.45252,-2.21653)--(-4.45716,-2.21478)--(-4.46182,-2.21302)--(-4.46648,-2.21126)--(-4.47116,-2.2095)--(-4.47585,-2.20774)--(-4.48056,-2.20597)--(-4.48527,-2.20421)--(-4.49,-2.20244)--(-4.49474,-2.20067)--(-4.49949,-2.1989)--(-4.50426,-2.19712)--(-4.50903,-2.19535)--(-4.51382,-2.19357)--(-4.51862,-2.1918)--(-4.52344,-2.19002)--(-4.52826,-2.18824)--(-4.5331,-2.18645)--(-4.53795,-2.18467)--(-4.54282,-2.18288)--(-4.54769,-2.1811)--(-4.55258,-2.17931)--
> (-4.55748,-2.17752)--(-4.5624,-2.17573)--(-4.56732,-2.17393)--(-4.57226,-2.17214)--(-4.57722,-2.17034)--(-4.58218,-2.16855)--(-4.58716,-2.16675)--(-4.59215,-2.16495)--(-4.59715,-2.16315)--(-4.60216,-2.16134)--(-4.60719,-2.15954)--(-4.61223,-2.15773)--(-4.61728,-2.15593)--(-4.62235,-2.15412)--(-4.62743,-2.15231)--(-4.63252,-2.1505)--(-4.63762,-2.14868)--(-4.64274,-2.14687)--(-4.64787,-2.14506)--(-4.65301,-2.14324)--(-4.65817,-2.14142)--(-4.66334,-2.1396)--(-4.66852,-2.13778)--(-4.67372,-2.13596)--
> (-4.67892,-2.13414)--(-4.68414,-2.13232)--(-4.68938,-2.13049)--(-4.69462,-2.12867)--(-4.69988,-2.12684)--(-4.70516,-2.12501)--(-4.71044,-2.12318)--(-4.71574,-2.12135)--(-4.72105,-2.11952)--(-4.72638,-2.11769)--(-4.73172,-2.11586)--(-4.73707,-2.11402)--(-4.74243,-2.11219)--(-4.74781,-2.11035)--(-4.7532,-2.10852)--(-4.75861,-2.10668)--(-4.76402,-2.10484)--(-4.76945,-2.103)--(-4.7749,-2.10116)--(-4.78036,-2.09932)--(-4.78583,-2.09748)--(-4.79131,-2.09563)--(-4.79681,-2.09379)--(-4.80232,-2.09194)--
> (-4.80784,-2.0901)--(-4.81338,-2.08825)--(-4.81893,-2.08641)--(-4.82449,-2.08456)--(-4.83007,-2.08271)--(-4.83566,-2.08086)--(-4.84126,-2.07901)--(-4.84688,-2.07716)--(-4.85251,-2.07531)--(-4.85815,-2.07346)--(-4.86381,-2.07161)--(-4.86948,-2.06976)--(-4.87516,-2.0679)--(-4.88086,-2.06605)--(-4.88657,-2.0642)--(-4.8923,-2.06234)--(-4.89804,-2.06049)--(-4.90379,-2.05863)--(-4.90955,-2.05678)--(-4.91533,-2.05492)--(-4.92112,-2.05307)--(-4.92693,-2.05121)--(-4.93275,-2.04935)--(-4.93858,-2.0475)--
> (-4.94442,-2.04564)--(-4.95028,-2.04378)--(-4.95616,-2.04192)--(-4.96204,-2.04007)--(-4.96794,-2.03821)--(-4.97385,-2.03635)--(-4.97978,-2.03449)--(-4.98572,-2.03264)--(-4.99168,-2.03078)--(-4.99764,-2.02892)--(-5.00362,-2.02706)--(-5.00962,-2.02521)--(-5.01563,-2.02335)--(-5.02165,-2.02149)--(-5.02768,-2.01963)--(-5.03373,-2.01778)--(-5.03979,-2.01592)--(-5.04587,-2.01406)--(-5.05196,-2.01221)--(-5.05806,-2.01035)--(-5.06418,-2.00849)--(-5.0703,-2.00664)--(-5.07645,-2.00478)--(-5.0826,-2.00293)--
> (-5.08877,-2.00107)--(-5.09496,-1.99922)--(-5.10115,-1.99737)--(-5.10736,-1.99551)--(-5.11359,-1.99366)--(-5.11983,-1.99181)--(-5.12608,-1.98996)--(-5.13234,-1.98811)--(-5.13862,-1.98626)--(-5.14491,-1.98441)--(-5.15121,-1.98256)--(-5.15753,-1.98072)--(-5.16386,-1.97887)--(-5.17021,-1.97702)--(-5.17656,-1.97518)--(-5.18293,-1.97334)--(-5.18932,-1.97149)--(-5.19572,-1.96965)--(-5.20213,-1.96781)--(-5.20855,-1.96597)--(-5.21499,-1.96413)--(-5.22144,-1.96229)--(-5.2279,-1.96046)--
> (-5.23438,-1.95862)--(-5.24087,-1.95679)--(-5.24738,-1.95496)--(-5.25389,-1.95312)--(-5.26042,-1.95129)--(-5.26696,-1.94947)--(-5.27352,-1.94764)--(-5.28009,-1.94581)--(-5.28667,-1.94399)--(-5.29327,-1.94217)--(-5.29988,-1.94035)--(-5.3065,-1.93853)--(-5.31313,-1.93671)--(-5.31978,-1.93489)--(-5.32644,-1.93308)--(-5.33311,-1.93127)--(-5.3398,-1.92946)--(-5.3465,-1.92765)--(-5.35321,-1.92584)--(-5.35993,-1.92404)--(-5.36667,-1.92223)--(-5.37342,-1.92043)--(-5.38018,-1.91863)--(-5.38696,-1.91684)--
> (-5.39374,-1.91504)--(-5.40054,-1.91325)--(-5.40736,-1.91146)--(-5.41418,-1.90967)--(-5.42102,-1.90789)--(-5.42787,-1.9061)--(-5.43473,-1.90432)--(-5.44161,-1.90254)--(-5.44849,-1.90077)--(-5.45539,-1.899)--(-5.4623,-1.89723)--(-5.46923,-1.89546)--(-5.47617,-1.89369)--(-5.48311,-1.89193)--(-5.49007,-1.89017)--(-5.49705,-1.88841)--(-5.50403,-1.88666)--(-5.51103,-1.88491)--(-5.51804,-1.88316)--(-5.52506,-1.88142)--(-5.53209,-1.87968)--(-5.53913,-1.87794)--(-5.54619,-1.8762)--(-5.55325,-1.87447)--
> (-5.56033,-1.87274)--(-5.56742,-1.87102)--(-5.57452,-1.86929)--(-5.58164,-1.86758)--(-5.58876,-1.86586)--(-5.5959,-1.86415)--(-5.60305,-1.86244)--(-5.6102,-1.86074)--(-5.61737,-1.85904)--(-5.62455,-1.85734)--(-5.63175,-1.85565)--(-5.63895,-1.85396)--(-5.64616,-1.85227)--(-5.65339,-1.85059)--(-5.66062,-1.84891)--(-5.66787,-1.84724)--(-5.67513,-1.84557)--(-5.68239,-1.84391)--(-5.68967,-1.84224)--(-5.69696,-1.84059)--(-5.70426,-1.83894)--(-5.71157,-1.83729)--(-5.71889,-1.83565)--(-5.72622,-1.83401)--
> (-5.73356,-1.83237)--(-5.74091,-1.83074)--(-5.74827,-1.82912)--(-5.75564,-1.8275)--(-5.76302,-1.82588)--(-5.77041,-1.82427)--(-5.77781,-1.82267)--(-5.78522,-1.82107)--(-5.79263,-1.81947)--(-5.80006,-1.81788)--(-5.8075,-1.8163)--(-5.81495,-1.81472)--(-5.8224,-1.81315)--(-5.82987,-1.81158)--(-5.83734,-1.81001)--(-5.84482,-1.80845)--(-5.85231,-1.8069)--(-5.85981,-1.80536)--(-5.86732,-1.80381)--(-5.87484,-1.80228)--(-5.88237,-1.80075)--(-5.8899,-1.79923)--(-5.89744,-1.79771)--(-5.90499,-1.7962)--
> (-5.91255,-1.79469)--(-5.92012,-1.79319)--(-5.9277,-1.7917)--(-5.93528,-1.79021)--(-5.94287,-1.78873)--(-5.95047,-1.78726)--(-5.95807,-1.78579)--(-5.96568,-1.78433)--(-5.9733,-1.78287)--(-5.98093,-1.78142)--(-5.98857,-1.77998)--(-5.99621,-1.77855)--(-6.00386,-1.77712)--(-6.01151,-1.7757)--(-6.01917,-1.77428)--(-6.02684,-1.77288)--(-6.03451,-1.77148)--(-6.04219,-1.77009)--(-6.04988,-1.7687)--(-6.05757,-1.76732)--(-6.06527,-1.76595)--(-6.07298,-1.76459)--(-6.08069,-1.76323)--(-6.0884,-1.76189)--
> (-6.09612,-1.76055)--(-6.10385,-1.75921)--(-6.11158,-1.75789)--(-6.11932,-1.75657)--(-6.12706,-1.75526)--(-6.13481,-1.75396)--(-6.14256,-1.75267)--(-6.15032,-1.75139)--(-6.15808,-1.75011)--(-6.16584,-1.74884)--(-6.17361,-1.74759)--(-6.18138,-1.74634)--(-6.18916,-1.74509)--(-6.19694,-1.74386)--(-6.20472,-1.74264)--(-6.21251,-1.74142)--(-6.2203,-1.74021)--(-6.22809,-1.73902)--(-6.23589,-1.73783)--(-6.24369,-1.73665)--(-6.25149,-1.73548)--(-6.25929,-1.73431)--(-6.2671,-1.73316)--(-6.27491,-1.73202)--
> (-6.28272,-1.73089)--(-6.29053,-1.72976)--(-6.29835,-1.72865)--(-6.30616,-1.72754)--(-6.31398,-1.72645)--(-6.3218,-1.72537)--(-6.32962,-1.72429)--(-6.33744,-1.72323)--(-6.34527,-1.72217)--(-6.35309,-1.72113)--(-6.36091,-1.72009)--(-6.36874,-1.71907)--(-6.37656,-1.71806)--(-6.38438,-1.71705)--(-6.39221,-1.71606)--(-6.40003,-1.71508)--(-6.40785,-1.71411)--(-6.41568,-1.71315)--(-6.4235,-1.7122)--(-6.43132,-1.71126)--(-6.43914,-1.71033)--(-6.44695,-1.70941)--(-6.45477,-1.70851)--(-6.46258,-1.70762)--
> (-6.47039,-1.70673)--(-6.4782,-1.70586)--(-6.48601,-1.705)--(-6.49382,-1.70415)--(-6.50162,-1.70332)--(-6.50942,-1.70249)--(-6.51722,-1.70168)--(-6.52501,-1.70088)--(-6.5328,-1.70009)--(-6.54058,-1.69931)--(-6.54837,-1.69855)--(-6.55615,-1.6978)--(-6.56392,-1.69706)--(-6.57169,-1.69633)--(-6.57945,-1.69561)--(-6.58721,-1.69491)--(-6.59497,-1.69422)--(-6.60272,-1.69354)--(-6.61046,-1.69288)--(-6.6182,-1.69222)--(-6.62593,-1.69159)--(-6.63366,-1.69096)--(-6.64138,-1.69035)--(-6.64909,-1.68975)--
> (-6.6568,-1.68916)--(-6.6645,-1.68859)--(-6.6722,-1.68803)--(-6.67988,-1.68748)--(-6.68756,-1.68695)--(-6.69523,-1.68643)--(-6.70289,-1.68592)--(-6.71055,-1.68543)--(-6.71819,-1.68495)--(-6.72583,-1.68449)--(-6.73346,-1.68404)--(-6.74108,-1.6836)--(-6.74869,-1.68318)--(-6.75629,-1.68277)--(-6.76388,-1.68238)--(-6.77146,-1.682)--(-6.77903,-1.68164)--(-6.78659,-1.68129)--(-6.79414,-1.68095)--(-6.80168,-1.68063)--(-6.80921,-1.68033)--(-6.81672,-1.68003)--(-6.82423,-1.67976)--(-6.83172,-1.6795)--
> (-6.8392,-1.67925)--(-6.84667,-1.67902)--(-6.85413,-1.67881)--(-6.86157,-1.67861)--(-6.869,-1.67842)--(-6.87642,-1.67825)--(-6.88382,-1.6781)--(-6.89121,-1.67796)--(-6.89859,-1.67784)--(-6.90595,-1.67773)--(-6.9133,-1.67764)--(-6.92063,-1.67756)--(-6.92795,-1.6775)--(-6.93525,-1.67746)--(-6.94254,-1.67743)--(-6.94981,-1.67742)--(-6.95706,-1.67743)--(-6.9643,-1.67745)--(-6.97153,-1.67749)--(-6.97873,-1.67754)--(-6.98592,-1.67761)--(-6.99309,-1.6777)--(-7.00025,-1.6778)--(-7.00739,-1.67792)--
> (-7.01451,-1.67806)--(-7.02161,-1.67822)--(-7.02869,-1.67839)--(-7.03576,-1.67858)--(-7.0428,-1.67878)--(-7.04983,-1.679)--(-7.05684,-1.67924)--(-7.06382,-1.6795)--(-7.07079,-1.67977)--(-7.07774,-1.68006)--(-7.08467,-1.68037)--(-7.09157,-1.6807)--(-7.09846,-1.68104)--(-7.10532,-1.6814)--(-7.11217,-1.68178)--(-7.11899,-1.68218)--(-7.12579,-1.68259)--(-7.13256,-1.68302)--(-7.13932,-1.68347)--(-7.14605,-1.68394)--(-7.15276,-1.68442)--(-7.15945,-1.68493)--(-7.16611,-1.68545)--(-7.17275,-1.68599)--
> (-7.17936,-1.68655)--(-7.18595,-1.68712)--(-7.19252,-1.68772)--(-7.19906,-1.68833)--(-7.20558,-1.68896)--(-7.21207,-1.68961)--(-7.21853,-1.69028)--(-7.22497,-1.69096)--(-7.23139,-1.69167)--(-7.23777,-1.69239)--(-7.24414,-1.69313)--(-7.25047,-1.69389)--(-7.25678,-1.69467)--(-7.26306,-1.69547)--(-7.26931,-1.69629)--(-7.27553,-1.69712)--(-7.28173,-1.69798)--(-7.2879,-1.69885)--(-7.29404,-1.69975)--(-7.30015,-1.70066)--(-7.30623,-1.70159)--(-7.31228,-1.70254)--(-7.3183,-1.70351)--(-7.3243,-1.7045)--
> (-7.33026,-1.7055)--(-7.33619,-1.70653)--(-7.34209,-1.70757)--(-7.34797,-1.70864)--(-7.35381,-1.70972)--(-7.35961,-1.71083)--(-7.36539,-1.71195)--(-7.37114,-1.71309)--(-7.37685,-1.71425)--(-7.38253,-1.71544)--(-7.38818,-1.71664)--(-7.39379,-1.71786)--(-7.39938,-1.7191)--(-7.40493,-1.72035)--(-7.41044,-1.72163)--(-7.41592,-1.72293)--(-7.42137,-1.72425)--(-7.42679,-1.72559)--(-7.43216,-1.72694)--(-7.43751,-1.72832)--(-7.44282,-1.72972)--(-7.44809,-1.73113)--(-7.45333,-1.73257)--(-7.45854,-1.73402)--
> (-7.4637,-1.7355)--(-7.46883,-1.73699)--(-7.47393,-1.73851)--(-7.47899,-1.74004)--(-7.48401,-1.7416)--(-7.48899,-1.74317)--(-7.49394,-1.74476)--(-7.49885,-1.74638)--(-7.50372,-1.74801)--(-7.50856,-1.74966)--(-7.51335,-1.75133)--(-7.51811,-1.75303)--(-7.52283,-1.75474)--(-7.52751,-1.75647)--(-7.53215,-1.75822)--(-7.53676,-1.75999)--(-7.54132,-1.76178)--(-7.54584,-1.76359)--(-7.55033,-1.76542)--(-7.55477,-1.76727)--(-7.55917,-1.76914)--(-7.56354,-1.77103)--(-7.56786,-1.77294)--(-7.57214,-1.77487)--
> (-7.57638,-1.77682)--(-7.58058,-1.77878)--(-7.58474,-1.78077)--(-7.58886,-1.78278)--(-7.59293,-1.7848)--(-7.59696,-1.78685)--(-7.60095,-1.78892)--(-7.6049,-1.791)--(-7.60881,-1.79311)--(-7.61267,-1.79523)--(-7.61649,-1.79737)--(-7.62027,-1.79954)--(-7.624,-1.80172)--(-7.62769,-1.80392)--(-7.63134,-1.80614)--(-7.63494,-1.80838)--(-7.6385,-1.81064)--(-7.64202,-1.81292)--(-7.64549,-1.81521)--(-7.64892,-1.81753)--(-7.6523,-1.81987)--(-7.65564,-1.82222)--(-7.65893,-1.82459)--(-7.66218,-1.82699)--
> (-7.66538,-1.8294)--(-7.66854,-1.83183)--(-7.67165,-1.83428)--(-7.67472,-1.83675)--(-7.67774,-1.83923)--(-7.68071,-1.84174)--(-7.68364,-1.84426)--(-7.68652,-1.8468)--(-7.68936,-1.84937)--(-7.69215,-1.85195)--(-7.69489,-1.85454)--(-7.69759,-1.85716)--(-7.70024,-1.85979)--(-7.70284,-1.86245)--(-7.7054,-1.86512)--(-7.70791,-1.86781)--(-7.71037,-1.87052)--(-7.71279,-1.87324)--(-7.71516,-1.87599)--(-7.71748,-1.87875)--(-7.71975,-1.88153)--(-7.72197,-1.88432)--(-7.72415,-1.88714)--(-7.72628,-1.88997)--
> (-7.72836,-1.89282)--(-7.73039,-1.89569)--(-7.73238,-1.89857)--(-7.73432,-1.90147)--(-7.7362,-1.90439)--(-7.73804,-1.90733)--(-7.73984,-1.91028)--(-7.74158,-1.91325)--(-7.74327,-1.91624)--(-7.74492,-1.91925)--(-7.74652,-1.92227)--(-7.74806,-1.92531)--(-7.74956,-1.92836)--(-7.75101,-1.93143)--(-7.75241,-1.93452)--(-7.75377,-1.93763)--(-7.75507,-1.94075)--(-7.75633,-1.94388)--(-7.75753,-1.94704)--(-7.75869,-1.95021)--(-7.75979,-1.95339)--(-7.76085,-1.95659)--(-7.76186,-1.95981)--
> (-7.76282,-1.96304)--(-7.76373,-1.96629)--(-7.76459,-1.96956)--(-7.7654,-1.97284)--(-7.76616,-1.97613)--(-7.76687,-1.97944)--(-7.76754,-1.98277)--(-7.76815,-1.98611)--(-7.76871,-1.98946)--(-7.76923,-1.99283)--(-7.76969,-1.99622)--(-7.77011,-1.99962)--(-7.77048,-2.00303)--(-7.77079,-2.00646)--(-7.77106,-2.0099)--(-7.77128,-2.01336)--(-7.77145,-2.01683)--(-7.77157,-2.02031)--(-7.77164,-2.02381)--(-7.77166,-2.02733)--(-7.77163,-2.03085)--(-7.77155,-2.03439)--(-7.77142,-2.03795)--(-7.77125,-2.04151)--
> (-7.77102,-2.0451)--(-7.77075,-2.04869)--(-7.77042,-2.0523)--(-7.77005,-2.05592)--(-7.76963,-2.05955)--(-7.76916,-2.06319)--(-7.76864,-2.06685)--(-7.76807,-2.07052)--(-7.76745,-2.07421)--(-7.76679,-2.0779)--(-7.76608,-2.08161)--(-7.76531,-2.08533)--(-7.7645,-2.08906)--(-7.76364,-2.0928)--(-7.76273,-2.09656)--(-7.76178,-2.10033)--(-7.76077,-2.1041)--(-7.75972,-2.10789)--(-7.75862,-2.11169)--(-7.75747,-2.11551)--(-7.75628,-2.11933)--(-7.75503,-2.12316)--(-7.75374,-2.12701)--(-7.7524,-2.13086)--
> (-7.75102,-2.13473)--(-7.74958,-2.1386)--(-7.7481,-2.14249)--(-7.74657,-2.14639)--(-7.745,-2.15029)--(-7.74338,-2.15421)--(-7.74171,-2.15814)--(-7.73999,-2.16207)--(-7.73823,-2.16602)--(-7.73642,-2.16997)--(-7.73457,-2.17394)--(-7.73266,-2.17791)--(-7.73072,-2.18189)--(-7.72873,-2.18588)--(-7.72669,-2.18988)--(-7.7246,-2.19389)--(-7.72247,-2.19791)--(-7.7203,-2.20193)--(-7.71808,-2.20597)--(-7.71581,-2.21001)--(-7.7135,-2.21406)--(-7.71115,-2.21812)--(-7.70875,-2.22218)--(-7.7063,-2.22626)--
> (-7.70381,-2.23034)--(-7.70128,-2.23442)--(-7.6987,-2.23852)--(-7.69608,-2.24262)--(-7.69342,-2.24673)--(-7.69071,-2.25085)--(-7.68796,-2.25497)--(-7.68516,-2.2591)--(-7.68233,-2.26324)--(-7.67945,-2.26738)--(-7.67652,-2.27153)--(-7.67356,-2.27569)--(-7.67055,-2.27985)--(-7.6675,-2.28401)--(-7.66441,-2.28819)--(-7.66127,-2.29236)--(-7.6581,-2.29655)--(-7.65488,-2.30074)--(-7.65162,-2.30493)--(-7.64832,-2.30913)--(-7.64498,-2.31334)--(-7.6416,-2.31755)--(-7.63818,-2.32176)--(-7.63472,-2.32598)--
> (-7.63122,-2.3302)--(-7.62768,-2.33443)--(-7.6241,-2.33866)--(-7.62048,-2.3429)--(-7.61682,-2.34714)--(-7.61312,-2.35138)--(-7.60938,-2.35563)--(-7.6056,-2.35988)--(-7.60179,-2.36414)--(-7.59793,-2.36839)--(-7.59404,-2.37265)--(-7.59011,-2.37692)--(-7.58615,-2.38119)--(-7.58214,-2.38546)--(-7.5781,-2.38973)--(-7.57402,-2.39401)--(-7.56991,-2.39828)--(-7.56576,-2.40256)--(-7.56157,-2.40685)--(-7.55735,-2.41113)--(-7.55309,-2.41542)--(-7.54879,-2.41971)--(-7.54446,-2.424)--(-7.54009,-2.42829)--
> (-7.53569,-2.43259)--(-7.53126,-2.43688)--(-7.52679,-2.44118)--(-7.52228,-2.44548)--(-7.51774,-2.44977)--(-7.51317,-2.45407)--(-7.50856,-2.45837)--(-7.50392,-2.46268)--(-7.49925,-2.46698)--(-7.49455,-2.47128)--(-7.48981,-2.47558)--(-7.48504,-2.47989)--(-7.48023,-2.48419)--(-7.4754,-2.4885)--(-7.47053,-2.4928)--(-7.46563,-2.4971)--(-7.4607,-2.50141)--(-7.45574,-2.50571)--(-7.45075,-2.51001)--(-7.44573,-2.51431)--(-7.44068,-2.51861)--(-7.43559,-2.52291)--(-7.43048,-2.52721)--(-7.42534,-2.53151)--
> (-7.42017,-2.53581)--(-7.41497,-2.5401)--(-7.40974,-2.5444)--(-7.40448,-2.54869)--(-7.39919,-2.55298)--(-7.39388,-2.55727)--(-7.38854,-2.56156)--(-7.38317,-2.56585)--(-7.37777,-2.57013)--(-7.37234,-2.57441)--(-7.36689,-2.57869)--(-7.36141,-2.58297)--(-7.35591,-2.58725)--(-7.35038,-2.59152)--(-7.34482,-2.59579)--(-7.33924,-2.60006)--(-7.33363,-2.60432)--(-7.32799,-2.60858)--(-7.32233,-2.61284)--(-7.31665,-2.6171)--(-7.31094,-2.62135)--(-7.30521,-2.6256)--(-7.29945,-2.62985)--(-7.29367,-2.63409)--
> (-7.28787,-2.63833)--(-7.28204,-2.64257)--(-7.27619,-2.6468)--(-7.27031,-2.65103)--(-7.26442,-2.65525)--(-7.2585,-2.65947)--(-7.25256,-2.66369)--(-7.2466,-2.6679)--(-7.24061,-2.67211)--(-7.23461,-2.67632)--(-7.22858,-2.68052)--(-7.22253,-2.68471)--(-7.21646,-2.6889)--(-7.21037,-2.69309)--(-7.20426,-2.69727)--(-7.19814,-2.70145)--(-7.19199,-2.70562)--(-7.18582,-2.70978)--(-7.17963,-2.71395)--(-7.17342,-2.7181)--(-7.1672,-2.72225)--(-7.16095,-2.7264)--(-7.15469,-2.73054)--(-7.14841,-2.73468)--
> (-7.14211,-2.73881)--(-7.13579,-2.74293)--(-7.12946,-2.74705)--(-7.12311,-2.75116)--(-7.11674,-2.75527)--(-7.11036,-2.75937)--(-7.10395,-2.76347)--(-7.09754,-2.76756)--(-7.0911,-2.77164)--(-7.08465,-2.77572)--(-7.07819,-2.77979)--(-7.07171,-2.78386)--(-7.06521,-2.78792)--(-7.0587,-2.79197)--(-7.05218,-2.79601)--(-7.04564,-2.80005)--(-7.03908,-2.80409)--(-7.03251,-2.80811)--(-7.02593,-2.81213)--(-7.01934,-2.81615)--(-7.01273,-2.82015)--(-7.00611,-2.82415)--(-6.99947,-2.82814)--(-6.99282,-2.83213)--
> (-6.98616,-2.83611)--(-6.97949,-2.84008)--(-6.9728,-2.84404)--(-6.96611,-2.848)--(-6.9594,-2.85195)--(-6.95268,-2.85589)--(-6.94595,-2.85983)--(-6.93921,-2.86376)--(-6.93245,-2.86768)--(-6.92569,-2.87159)--(-6.91892,-2.87549)--(-6.91213,-2.87939)--(-6.90534,-2.88328)--(-6.89853,-2.88716)--(-6.89172,-2.89104)--(-6.8849,-2.8949)--(-6.87806,-2.89876)--(-6.87122,-2.90261)--(-6.86437,-2.90646)--(-6.85751,-2.91029)--(-6.85065,-2.91412)--(-6.84377,-2.91794)--(-6.83689,-2.92175)--(-6.83,-2.92555)--
> (-6.8231,-2.92934)--(-6.81619,-2.93313)--(-6.80928,-2.93691)--(-6.80236,-2.94067)--(-6.79543,-2.94444)--(-6.7885,-2.94819)--(-6.78156,-2.95193)--(-6.77461,-2.95567)--(-6.76766,-2.95939)--(-6.7607,-2.96311)--(-6.75373,-2.96682)--(-6.74676,-2.97052)--(-6.73979,-2.97422)--(-6.7328,-2.9779)--(-6.72582,-2.98158)--(-6.71883,-2.98524)--(-6.71183,-2.9889)--(-6.70483,-2.99255)--(-6.69783,-2.99619)--(-6.69082,-2.99982)--(-6.68381,-3.00344)--(-6.67679,-3.00706)--(-6.66977,-3.01066)--(-6.66275,-3.01426)--
> (-6.65572,-3.01784)--(-6.64869,-3.02142)--(-6.64165,-3.02499)--(-6.63462,-3.02855)--(-6.62758,-3.0321)--(-6.62054,-3.03564)--(-6.61349,-3.03917)--(-6.60645,-3.0427)--(-6.5994,-3.04621)--(-6.59235,-3.04971)--(-6.5853,-3.05321)--(-6.57825,-3.05669)--(-6.57119,-3.06017)--(-6.56414,-3.06364)--(-6.55708,-3.0671)--(-6.55002,-3.07055)--(-6.54296,-3.07399)--(-6.5359,-3.07742)--(-6.52884,-3.08084)--(-6.52178,-3.08425)--(-6.51472,-3.08765)--(-6.50766,-3.09104)--(-6.5006,-3.09443)--(-6.49354,-3.0978)--
> (-6.48648,-3.10116)--(-6.47942,-3.10452)--(-6.47237,-3.10786)--(-6.46531,-3.1112)--(-6.45825,-3.11452)--(-6.45119,-3.11784)--(-6.44414,-3.12115)--(-6.43709,-3.12445)--(-6.43003,-3.12773)--(-6.42298,-3.13101)--(-6.41593,-3.13428)--(-6.40889,-3.13754)--(-6.40184,-3.14079)--(-6.3948,-3.14403)--(-6.38776,-3.14726)--(-6.38072,-3.15048)--(-6.37368,-3.15369)--(-6.36665,-3.15689)--(-6.35962,-3.16009)--(-6.35259,-3.16327)--(-6.34557,-3.16644)--(-6.33854,-3.1696)--(-6.33152,-3.17276)--(-6.32451,-3.1759)--
> (-6.3175,-3.17904)--(-6.31049,-3.18216)--(-6.30348,-3.18528)--(-6.29648,-3.18838)--(-6.28948,-3.19148)--(-6.28249,-3.19456)--(-6.2755,-3.19764)--(-6.26851,-3.2007)--(-6.26153,-3.20376)--(-6.25456,-3.20681)--(-6.24758,-3.20985)--(-6.24062,-3.21287)--(-6.23365,-3.21589)--(-6.2267,-3.2189)--(-6.21974,-3.2219)--(-6.21279,-3.22489)--(-6.20585,-3.22787)--(-6.19891,-3.23084)--(-6.19198,-3.2338)--(-6.18505,-3.23675)--(-6.17813,-3.23969)--(-6.17121,-3.24262)--(-6.1643,-3.24554)--(-6.1574,-3.24846)--
> (-6.1505,-3.25136)--(-6.14361,-3.25425)--(-6.13672,-3.25714)--(-6.12984,-3.26001)--(-6.12296,-3.26287)--(-6.11609,-3.26573)--(-6.10923,-3.26857)--(-6.10238,-3.27141)--(-6.09553,-3.27423)--(-6.08868,-3.27705)--(-6.08185,-3.27986)--(-6.07502,-3.28265)--(-6.0682,-3.28544)--(-6.06138,-3.28822)--(-6.05457,-3.29099)--(-6.04777,-3.29375)--(-6.04098,-3.2965)--(-6.03419,-3.29924)--(-6.02741,-3.30197)--(-6.02064,-3.30469)--(-6.01387,-3.3074)--(-6.00711,-3.31011)--(-6.00036,-3.3128)--(-5.99362,-3.31548)--
> (-5.98689,-3.31816)--(-5.98016,-3.32082)--(-5.97344,-3.32348)--(-5.96673,-3.32612)--(-5.96003,-3.32876)--(-5.95333,-3.33139)--(-5.94665,-3.33401)--(-5.93997,-3.33661)--(-5.9333,-3.33921)--(-5.92664,-3.3418)--(-5.91998,-3.34439)--(-5.91334,-3.34696)--(-5.9067,-3.34952)--(-5.90008,-3.35207)--(-5.89346,-3.35462)--(-5.88685,-3.35715)--(-5.88024,-3.35968)--(-5.87365,-3.36219)--(-5.86707,-3.3647)--(-5.86049,-3.3672)--(-5.85392,-3.36969)--(-5.84737,-3.37217)--(-5.84082,-3.37464)--(-5.83428,-3.3771)--
> (-5.82775,-3.37955)--(-5.82123,-3.382)--(-5.81472,-3.38443)--(-5.80821,-3.38686)--(-5.80172,-3.38928)--(-5.79524,-3.39168)--(-5.78876,-3.39408)--(-5.7823,-3.39647)--(-5.77584,-3.39885)--(-5.7694,-3.40123)--(-5.76296,-3.40359)--(-5.75653,-3.40594)--(-5.75012,-3.40829)--(-5.74371,-3.41063)--(-5.73731,-3.41295)--(-5.73093,-3.41527)--(-5.72455,-3.41758)--(-5.71818,-3.41989)--(-5.71182,-3.42218)--(-5.70548,-3.42446)--(-5.69914,-3.42674)--(-5.69281,-3.429)--(-5.68649,-3.43126)--(-5.68018,-3.43351)--
> (-5.67389,-3.43575)--(-5.6676,-3.43799)--(-5.66132,-3.44021)--(-5.65506,-3.44242)--(-5.6488,-3.44463)--(-5.64255,-3.44683)--(-5.63632,-3.44902)--(-5.63009,-3.4512)--(-5.62388,-3.45337)--(-5.61767,-3.45554)--(-5.61148,-3.45769)--(-5.60529,-3.45984)--(-5.59912,-3.46198)--(-5.59296,-3.46411)--(-5.58681,-3.46623)--(-5.58067,-3.46835)--(-5.57453,-3.47045)--(-5.56841,-3.47255)--(-5.5623,-3.47464)--(-5.55621,-3.47672)--(-5.55012,-3.47879)--(-5.54404,-3.48086)--(-5.53797,-3.48292)--(-5.53192,-3.48496)--
> (-5.52587,-3.48701)--(-5.51984,-3.48904)--(-5.51381,-3.49106)--(-5.5078,-3.49308)--(-5.5018,-3.49509)--(-5.49581,-3.49709)--(-5.48983,-3.49908)--(-5.48386,-3.50106)--(-5.4779,-3.50304)--(-5.47195,-3.50501)--(-5.46602,-3.50697)--(-5.46009,-3.50892)--(-5.45418,-3.51086)--(-5.44827,-3.5128)--(-5.44238,-3.51473)--(-5.4365,-3.51665)--(-5.43063,-3.51856)--(-5.42477,-3.52047)--(-5.41892,-3.52237)--(-5.41309,-3.52426)--(-5.40726,-3.52614)--(-5.40145,-3.52802)--(-5.39564,-3.52988)--(-5.38985,-3.53174)--
> (-5.38407,-3.5336)--(-5.3783,-3.53544)--(-5.37254,-3.53728)--(-5.36679,-3.53911)--(-5.36105,-3.54093)--(-5.35533,-3.54274)--(-5.34962,-3.54455)--(-5.34391,-3.54635)--(-5.33822,-3.54814)--(-5.33254,-3.54993)--(-5.32687,-3.55171)--(-5.32121,-3.55348)--(-5.31557,-3.55524)--(-5.30993,-3.55699)--(-5.30431,-3.55874)--(-5.29869,-3.56048)--(-5.29309,-3.56222)--(-5.2875,-3.56394)--(-5.28192,-3.56566)--(-5.27635,-3.56738)--(-5.2708,-3.56908)--(-5.26525,-3.57078)--(-5.25972,-3.57247)--(-5.25419,-3.57415)--
> (-5.24868,-3.57583)--(-5.24318,-3.5775)--(-5.23769,-3.57916)--(-5.23221,-3.58082)--(-5.22675,-3.58247)--(-5.22129,-3.58411)--(-5.21585,-3.58575)--(-5.21041,-3.58737)--(-5.20499,-3.589)--(-5.19958,-3.59061)--(-5.19418,-3.59222)--(-5.1888,-3.59382)--(-5.18342,-3.59541)--(-5.17805,-3.597)--(-5.1727,-3.59858)--(-5.16736,-3.60015)--(-5.16203,-3.60172)--(-5.15671,-3.60328)--(-5.1514,-3.60484)--(-5.1461,-3.60638)--(-5.14081,-3.60792)--(-5.13554,-3.60946)--(-5.13027,-3.61099)--(-5.12502,-3.61251)--
> (-5.11978,-3.61402)--(-5.11455,-3.61553)--(-5.10933,-3.61703)--(-5.10412,-3.61853)--(-5.09893,-3.62002)--(-5.09374,-3.6215)--(-5.08857,-3.62298)--(-5.0834,-3.62444)--(-5.07825,-3.62591)--(-5.07311,-3.62737)--(-5.06798,-3.62882)--(-5.06286,-3.63026)--(-5.05775,-3.6317)--(-5.05266,-3.63313)--(-5.04757,-3.63456)--(-5.0425,-3.63598)--(-5.03744,-3.63739)--(-5.03238,-3.6388)--(-5.02734,-3.6402)--(-5.02231,-3.64159)--(-5.0173,-3.64298)--(-5.01229,-3.64437)--(-5.00729,-3.64574)--(-5.00231,-3.64712)--
> (-4.99733,-3.64848)--(-4.99237,-3.64984)--(-4.98742,-3.65119)--(-4.98247,-3.65254)--(-4.97754,-3.65388)--(-4.97262,-3.65522)--(-4.96772,-3.65655)--(-4.96282,-3.65787)--(-4.95793,-3.65919)--(-4.95306,-3.6605)--(-4.94819,-3.66181)--(-4.94334,-3.66311)--(-4.9385,-3.6644)--(-4.93366,-3.66569)--(-4.92884,-3.66698)--(-4.92403,-3.66826)--(-4.91923,-3.66953)--(-4.91444,-3.67079)--(-4.90967,-3.67206)--(-4.9049,-3.67331)--(-4.90014,-3.67456)--(-4.8954,-3.67581)--(-4.89066,-3.67704)--(-4.88594,-3.67828)--
> (-4.88122,-3.67951)--(-4.87652,-3.68073)--(-4.87183,-3.68195)--(-4.86715,-3.68316)--(-4.86248,-3.68436)--(-4.85782,-3.68557)--(-4.85317,-3.68676)--(-4.84853,-3.68795)--(-4.8439,-3.68914)--(-4.83929,-3.69032)--(-4.83468,-3.69149)--(-4.83008,-3.69266)--(-4.8255,-3.69382)--(-4.82092,-3.69498)--(-4.81636,-3.69614)--(-4.8118,-3.69728)--(-4.80726,-3.69843)--(-4.80273,-3.69957)--(-4.7982,-3.7007)--(-4.79369,-3.70183)--(-4.78919,-3.70295)--(-4.7847,-3.70407)--(-4.78022,-3.70518)--(-4.77575,-3.70629)--
> (-4.77129,-3.70739)--(-4.76684,-3.70849)--(-4.7624,-3.70958)--(-4.75797,-3.71067)--(-4.75355,-3.71175)--(-4.74914,-3.71283)--(-4.74474,-3.7139)--(-4.74035,-3.71497)--(-4.73598,-3.71603)--(-4.73161,-3.71709)--(-4.72725,-3.71815)--(-4.7229,-3.71919)--(-4.71857,-3.72024)--(-4.71424,-3.72128)--(-4.70992,-3.72231)--(-4.70562,-3.72334)--(-4.70132,-3.72437)--(-4.69703,-3.72539)--(-4.69276,-3.72641)--(-4.68849,-3.72742)--(-4.68423,-3.72842)--(-4.67999,-3.72943)--(-4.67575,-3.73042)--(-4.67152,-3.73142)--
> (-4.66731,-3.7324)--(-4.6631,-3.73339)--(-4.6589,-3.73437)--(-4.65471,-3.73534)--(-4.65054,-3.73631)--(-4.64637,-3.73728)--(-4.64221,-3.73824)--(-4.63806,-3.7392)--(-4.63393,-3.74015)--(-4.6298,-3.7411)--(-4.62568,-3.74204)--(-4.62157,-3.74298)--(-4.61747,-3.74392)--(-4.61338,-3.74485)--(-4.6093,-3.74577)--(-4.60523,-3.7467)--(-4.60117,-3.74761)--(-4.59712,-3.74853)--(-4.59308,-3.74944)--(-4.58905,-3.75034)--(-4.58503,-3.75124)--(-4.58102,-3.75214)--(-4.57701,-3.75303)--(-4.57302,-3.75392)--
> (-4.56904,-3.7548)--(-4.56506,-3.75568)--(-4.5611,-3.75656)--(-4.55714,-3.75743)--(-4.5532,-3.7583)--(-4.54926,-3.75917)--(-4.54533,-3.76002)--(-4.54141,-3.76088)--(-4.53751,-3.76173)--(-4.53361,-3.76258)--(-4.52972,-3.76342)--(-4.52584,-3.76426)--(-4.52196,-3.7651)--(-4.5181,-3.76593)--(-4.51425,-3.76676)--(-4.51041,-3.76758)--(-4.50657,-3.76841)--(-4.50275,-3.76922)--(-4.49893,-3.77003)--(-4.49512,-3.77084)--(-4.49132,-3.77165)--(-4.48753,-3.77245)--(-4.48375,-3.77325)--(-4.47998,-3.77404)--
> (-4.47622,-3.77483)--(-4.47247,-3.77562)--(-4.46872,-3.7764)--(-4.46499,-3.77718)--(-4.46126,-3.77795)--(-4.45755,-3.77872)--(-4.45384,-3.77949)--(-4.45014,-3.78026)--(-4.44645,-3.78102)--(-4.44277,-3.78177)--(-4.43909,-3.78253)--(-4.43543,-3.78328)--(-4.43177,-3.78402)--(-4.42813,-3.78476)--(-4.42449,-3.7855)--(-4.42086,-3.78624)--(-4.41724,-3.78697)--(-4.41363,-3.7877)--(-4.41003,-3.78842)--(-4.40643,-3.78915)--(-4.40285,-3.78986)--(-4.39927,-3.79058)--(-4.3957,-3.79129)--(-4.39214,-3.792)--
> (-4.38859,-3.7927)--(-4.38505,-3.7934)--(-4.38151,-3.7941)--(-4.37799,-3.79479)--(-4.37447,-3.79548)--(-4.37096,-3.79617)--(-4.36746,-3.79686)--(-4.36397,-3.79754)--(-4.36048,-3.79821)--(-4.35701,-3.79889)--(-4.35354,-3.79956)--(-4.35008,-3.80023)--(-4.34663,-3.80089)--(-4.34319,-3.80155)--(-4.33975,-3.80221)--(-4.33633,-3.80287)--(-4.33291,-3.80352)--(-4.3295,-3.80417)--(-4.3261,-3.80481)--(-4.32271,-3.80545)--(-4.31932,-3.80609)--(-4.31595,-3.80673)--(-4.31258,-3.80736)--(-4.30922,-3.80799)--
> (-4.30587,-3.80862)--(-4.30252,-3.80924)--(-4.29919,-3.80986)--(-4.29586,-3.81048)--(-4.29254,-3.81109)--(-4.28922,-3.8117)--(-4.28592,-3.81231)--(-4.28262,-3.81292)--(-4.27934,-3.81352)--(-4.27605,-3.81412)--(-4.27278,-3.81472)--(-4.26952,-3.81531)--(-4.26626,-3.8159)--(-4.26301,-3.81649)--(-4.25977,-3.81707)--(-4.25654,-3.81766)--(-4.25331,-3.81823)--(-4.25009,-3.81881)--(-4.24688,-3.81938)--(-4.24368,-3.81995)--(-4.24048,-3.82052)--(-4.2373,-3.82109)--(-4.23412,-3.82165)--(-4.23095,-3.82221)--
> (-4.22778,-3.82276)--(-4.22462,-3.82332)--(-4.22148,-3.82387)--(-4.21833,-3.82442)--(-4.2152,-3.82496)--(-4.21207,-3.82551)--(-4.20895,-3.82605)--(-4.20584,-3.82658)--(-4.20274,-3.82712)--(-4.19964,-3.82765)--(-4.19655,-3.82818)--(-4.19347,-3.8287)--(-4.1904,-3.82923)--(-4.18733,-3.82975)--(-4.18427,-3.83027)--(-4.18122,-3.83078)--(-4.17817,-3.8313)--(-4.17513,-3.83181)--(-4.1721,-3.83232)--(-4.16908,-3.83282)--(-4.16606,-3.83333)--(-4.16305,-3.83383)--(-4.16005,-3.83432)--(-4.15706,-3.83482)--
> (-4.15407,-3.83531)--(-4.15109,-3.8358)--(-4.14812,-3.83629)--(-4.14515,-3.83678)--(-4.14219,-3.83726)--(-4.13924,-3.83774)--(-4.1363,-3.83822)--(-4.13336,-3.83869)--(-4.13043,-3.83917)--(-4.1275,-3.83964)--(-4.12459,-3.84011)--(-4.12168,-3.84057)--(-4.11877,-3.84103)--(-4.11588,-3.8415)--(-4.11299,-3.84195)--(-4.11011,-3.84241)--(-4.10723,-3.84286)--(-4.10436,-3.84332)--(-4.1015,-3.84377)--(-4.09865,-3.84421)--(-4.0958,-3.84466)--(-4.09296,-3.8451)--(-4.09012,-3.84554)--(-4.0873,-3.84598)--
> (-4.08447,-3.84641)--(-4.08166,-3.84685)--(-4.07885,-3.84728)--(-4.07605,-3.84771)--(-4.07326,-3.84813)--(-4.07047,-3.84856)--(-4.06769,-3.84898)--(-4.06492,-3.8494)--(-4.06215,-3.84982)--(-4.05939,-3.85023)--(-4.05663,-3.85064)--(-4.05388,-3.85106)--(-4.05114,-3.85146)--(-4.04841,-3.85187)--(-4.04568,-3.85228)--(-4.04296,-3.85268)--(-4.04024,-3.85308)--(-4.03753,-3.85348)--(-4.03483,-3.85387)--(-4.03213,-3.85427)--(-4.02944,-3.85466)--(-4.02676,-3.85505)--(-4.02408,-3.85544)--
> (-4.02141,-3.85582)--(-4.01875,-3.85621)--(-4.01609,-3.85659)--(-4.01344,-3.85697)--(-4.01079,-3.85734)--(-4.00815,-3.85772)--(-4.00552,-3.85809)--(-4.00289,-3.85846)--(-4.00027,-3.85883)--(-3.99766,-3.8592)--(-3.99505,-3.85957)--(-3.99245,-3.85993)--(-3.98985,-3.86029)--(-3.98726,-3.86065)--(-3.98468,-3.86101)--(-3.9821,-3.86136)--(-3.97953,-3.86172)--(-3.97696,-3.86207)--(-3.9744,-3.86242)--(-3.97185,-3.86277)--(-3.9693,-3.86311)--(-3.96676,-3.86346)--(-3.96422,-3.8638)--(-3.96169,-3.86414)--
> (-3.95917,-3.86448)--(-3.95665,-3.86482)--(-3.95414,-3.86515)--(-3.95163,-3.86548)--(-3.94913,-3.86581)--(-3.94664,-3.86614)--(-3.94415,-3.86647)--(-3.94167,-3.8668)--(-3.93919,-3.86712)--(-3.93672,-3.86744)--(-3.93426,-3.86776)--(-3.9318,-3.86808)--(-3.92934,-3.8684)--(-3.9269,-3.86871)--(-3.92445,-3.86903)--(-3.92202,-3.86934)--(-3.91959,-3.86965)--(-3.91716,-3.86996)--(-3.91474,-3.87026)--(-3.91233,-3.87057)--(-3.90992,-3.87087)--(-3.90752,-3.87117)--(-3.90512,-3.87147)--(-3.90273,-3.87177)--
> (-3.90034,-3.87206)--(-3.89796,-3.87236)--(-3.89559,-3.87265)--(-3.89322,-3.87294)--(-3.89086,-3.87323)--(-3.8885,-3.87352)--(-3.88615,-3.87381)--(-3.8838,-3.87409)--(-3.88146,-3.87437)--(-3.87912,-3.87465)--(-3.87679,-3.87493)--(-3.87447,-3.87521)--(-3.87215,-3.87549)--(-3.86983,-3.87576)--(-3.86752,-3.87604)--(-3.86522,-3.87631)--(-3.86292,-3.87658)--(-3.86063,-3.87684)--(-3.85834,-3.87711)--(-3.85606,-3.87738)--(-3.85378,-3.87764)--(-3.85151,-3.8779)--(-3.84924,-3.87816)--(-3.84698,-3.87842)--
> (-3.84472,-3.87868)--(-3.84247,-3.87894)--(-3.84023,-3.87919)--(-3.83799,-3.87944)--(-3.83575,-3.8797)--(-3.83352,-3.87995)--(-3.83129,-3.88019)--(-3.82907,-3.88044)--(-3.82686,-3.88069)--(-3.82465,-3.88093)--(-3.82244,-3.88117)--(-3.82024,-3.88142)--(-3.81805,-3.88165)--(-3.81586,-3.88189)--(-3.81368,-3.88213)--(-3.8115,-3.88237)--(-3.80932,-3.8826)--(-3.80715,-3.88283)--(-3.80499,-3.88306)--(-3.80283,-3.88329)--(-3.80067,-3.88352)--(-3.79852,-3.88375)--(-3.79638,-3.88397)--(-3.79424,-3.8842)--
> (-3.7921,-3.88442)--(-3.78997,-3.88464)--(-3.78785,-3.88486)--(-3.78573,-3.88508)--(-3.78361,-3.8853)--(-3.7815,-3.88552)--(-3.7794,-3.88573)--(-3.77729,-3.88594)--(-3.7752,-3.88616)--(-3.77311,-3.88637)--(-3.77102,-3.88658)--(-3.76894,-3.88678)--(-3.76686,-3.88699)--(-3.76479,-3.8872)--(-3.76272,-3.8874)--(-3.76066,-3.8876)--(-3.7586,-3.8878)--(-3.75655,-3.88801)--(-3.7545,-3.8882)--(-3.75245,-3.8884)--(-3.75041,-3.8886)--(-3.74838,-3.88879)--(-3.74635,-3.88899)--(-3.74432,-3.88918)--
> (-3.7423,-3.88937)--(-3.74028,-3.88956)--(-3.73827,-3.88975)--(-3.73626,-3.88994)--(-3.73426,-3.89013)--(-3.73226,-3.89031)--(-3.73027,-3.8905)--(-3.72828,-3.89068)--(-3.72629,-3.89086)--(-3.72431,-3.89104)--(-3.72234,-3.89122)--(-3.72036,-3.8914)--(-3.7184,-3.89158)--(-3.71643,-3.89175)--(-3.71448,-3.89193)--(-3.71252,-3.8921)--(-3.71057,-3.89227)--(-3.70863,-3.89244)--(-3.70669,-3.89261)--(-3.70475,-3.89278)--(-3.70282,-3.89295)--(-3.70089,-3.89312)--(-3.69897,-3.89328)--(-3.69705,-3.89345)--
> (-3.69513,-3.89361)--(-3.69322,-3.89377)--(-3.69132,-3.89393)--(-3.68941,-3.89409)--(-3.68752,-3.89425)--(-3.68562,-3.89441)--(-3.68373,-3.89456)--(-3.68185,-3.89472)--(-3.67997,-3.89487)--(-3.67809,-3.89503)--(-3.67622,-3.89518)--(-3.67435,-3.89533)--(-3.67249,-3.89548)--(-3.67063,-3.89563)--(-3.66877,-3.89578)--(-3.66692,-3.89592)--(-3.66507,-3.89607)--(-3.66323,-3.89622)--(-3.66139,-3.89636)--(-3.65955,-3.8965)--(-3.65772,-3.89664)--(-3.65589,-3.89678)--(-3.65407,-3.89692)--
> (-3.65225,-3.89706)--(-3.65044,-3.8972)--(-3.64863,-3.89734)--(-3.64682,-3.89747)--(-3.64502,-3.89761)--(-3.64322,-3.89774)--(-3.64142,-3.89787)--(-3.63963,-3.898)--(-3.63784,-3.89813)--(-3.63606,-3.89826)--(-3.63428,-3.89839)--(-3.63251,-3.89852)--(-3.63073,-3.89865)--(-3.62897,-3.89877)--(-3.6272,-3.8989)--(-3.62544,-3.89902)--(-3.62369,-3.89914)--(-3.62194,-3.89927)--(-3.62019,-3.89939)--(-3.61844,-3.89951)--(-3.6167,-3.89963)--(-3.61497,-3.89974)--(-3.61323,-3.89986)--(-3.6115,-3.89998)--
> (-3.60978,-3.90009)--(-3.60806,-3.90021)--(-3.60634,-3.90032)--(-3.60463,-3.90043)--(-3.60292,-3.90055)--(-3.60121,-3.90066)--(-3.59951,-3.90077)--(-3.59781,-3.90087)--(-3.59611,-3.90098)--(-3.59442,-3.90109)--(-3.59273,-3.9012)--(-3.59105,-3.9013)--(-3.58937,-3.90141)--(-3.58769,-3.90151)--(-3.58602,-3.90161)--(-3.58435,-3.90172)--(-3.58268,-3.90182)--(-3.58102,-3.90192)--(-3.57936,-3.90202)--(-3.57771,-3.90211)--(-3.57605,-3.90221)--(-3.57441,-3.90231)--(-3.57276,-3.90241)--(-3.57112,-3.9025)--
> (-3.56948,-3.90259)--(-3.56785,-3.90269)--(-3.56622,-3.90278)--(-3.56459,-3.90287)--(-3.56297,-3.90296)--(-3.56135,-3.90305)--(-3.55973,-3.90314)--(-3.55812,-3.90323)--(-3.55651,-3.90332)--(-3.55491,-3.90341)--(-3.5533,-3.90349)--(-3.55171,-3.90358)--(-3.55011,-3.90366)--(-3.54852,-3.90375)--(-3.54693,-3.90383)--(-3.54534,-3.90391)--(-3.54376,-3.90399)--(-3.54218,-3.90407)--(-3.54061,-3.90415)--(-3.53904,-3.90423)--(-3.53747,-3.90431)--(-3.5359,-3.90439)--(-3.53434,-3.90447)--(-3.53279,-3.90454)--
> (-3.53123,-3.90462)--(-3.52968,-3.90469)--(-3.52813,-3.90477)--(-3.52659,-3.90484)--(-3.52504,-3.90491)--(-3.52351,-3.90498)--(-3.52197,-3.90505)--(-3.52044,-3.90512)--(-3.51891,-3.90519)--(-3.51739,-3.90526)--(-3.51586,-3.90533)--(-3.51435,-3.9054)--(-3.51283,-3.90546)--(-3.51132,-3.90553)--(-3.50981,-3.9056)--(-3.5083,-3.90566)--(-3.5068,-3.90572)--(-3.5053,-3.90579)--(-3.5038,-3.90585)--(-3.50231,-3.90591)--(-3.50082,-3.90597)--(-3.49933,-3.90603)--(-3.49785,-3.90609)--(-3.49637,-3.90615)--
> (-3.49489,-3.90621)--(-3.49342,-3.90627)--(-3.49195,-3.90632)--(-3.49048,-3.90638)--(-3.48901,-3.90644)--(-3.48755,-3.90649)--(-3.48609,-3.90654)--(-3.48464,-3.9066)--(-3.48319,-3.90665)--(-3.48174,-3.9067)--(-3.48029,-3.90675)--(-3.47885,-3.90681)--(-3.47741,-3.90686)--(-3.47597,-3.90691)--(-3.47453,-3.90695)--(-3.4731,-3.907)--(-3.47167,-3.90705)--(-3.47025,-3.9071)--(-3.46883,-3.90714)--(-3.46741,-3.90719)--(-3.46599,-3.90723)--(-3.46458,-3.90728)--(-3.46317,-3.90732)--(-3.46176,-3.90737)--
> (-3.46035,-3.90741)--(-3.45895,-3.90745)--(-3.45755,-3.90749)--(-3.45616,-3.90753)--(-3.45476,-3.90757)--(-3.45337,-3.90761)--(-3.45199,-3.90765)--(-3.4506,-3.90769)--(-3.44922,-3.90773)--(-3.44784,-3.90777)--(-3.44647,-3.9078)--(-3.44509,-3.90784)--(-3.44372,-3.90788)--(-3.44236,-3.90791)--(-3.44099,-3.90794)--(-3.43963,-3.90798)--(-3.43827,-3.90801)--(-3.43691,-3.90804)--(-3.43556,-3.90808)--(-3.43421,-3.90811)--(-3.43286,-3.90814)--(-3.43152,-3.90817)--(-3.43018,-3.9082)--(-3.42884,-3.90823)--
> (-3.4275,-3.90826)--(-3.42617,-3.90828)--(-3.42484,-3.90831)--(-3.42351,-3.90834)--(-3.42218,-3.90837)--(-3.42086,-3.90839)--(-3.41954,-3.90842)--(-3.41822,-3.90844)--(-3.41691,-3.90847)--(-3.4156,-3.90849)--(-3.41429,-3.90851)--(-3.41298,-3.90854)--(-3.41168,-3.90856)--(-3.41037,-3.90858)--(-3.40908,-3.9086)--(-3.40778,-3.90862)--(-3.40649,-3.90864)--(-3.4052,-3.90866)--(-3.40391,-3.90868)--(-3.40262,-3.9087)--(-3.40134,-3.90872)--(-3.40006,-3.90873)--(-3.39878,-3.90875)--(-3.39751,-3.90877)--
> (-3.39623,-3.90878)--(-3.39497,-3.9088)--(-3.3937,-3.90881)--(-3.39243,-3.90883)--(-3.39117,-3.90884)--(-3.38991,-3.90886)--(-3.38865,-3.90887)--(-3.3874,-3.90888)--(-3.38615,-3.90889)--(-3.3849,-3.90891)--(-3.38365,-3.90892)--(-3.38241,-3.90893)--(-3.38117,-3.90894)--(-3.37993,-3.90895)--(-3.37869,-3.90896)--(-3.37746,-3.90897)--(-3.37622,-3.90897)--(-3.37499,-3.90898)--(-3.37377,-3.90899)--(-3.37254,-3.909)--(-3.37132,-3.909)--(-3.3701,-3.90901)--(-3.36889,-3.90901)--(-3.36767,-3.90902)--
> (-3.36646,-3.90902)--(-3.36525,-3.90903)--(-3.36404,-3.90903)--(-3.36284,-3.90903)--(-3.36163,-3.90904)--(-3.36043,-3.90904)--(-3.35924,-3.90904)--(-3.35804,-3.90904)--(-3.35685,-3.90904)--(-3.35566,-3.90904)--(-3.35447,-3.90904)--(-3.35328,-3.90904)--(-3.3521,-3.90904)--(-3.35092,-3.90904)--(-3.34974,-3.90904)--(-3.34857,-3.90904)--(-3.34739,-3.90904)--(-3.34622,-3.90903)--(-3.34505,-3.90903)--(-3.34388,-3.90903)--(-3.34272,-3.90902)--(-3.34156,-3.90902)--(-3.3404,-3.90901)--(-3.33924,-3.90901)--
> (-3.33808,-3.909)--(-3.33693,-3.909)--(-3.33578,-3.90899)--(-3.33463,-3.90898)--(-3.33349,-3.90897)--(-3.33234,-3.90897)--(-3.3312,-3.90896)--(-3.33006,-3.90895)--(-3.32892,-3.90894)--(-3.32779,-3.90893)--(-3.32665,-3.90892)--(-3.32552,-3.90891)--(-3.3244,-3.9089)--(-3.32327,-3.90889)--(-3.32215,-3.90888)--(-3.32102,-3.90887)--(-3.3199,-3.90886)--(-3.31879,-3.90884)--(-3.31767,-3.90883)--(-3.31656,-3.90882)--(-3.31545,-3.9088)--(-3.31434,-3.90879)--(-3.31323,-3.90877)--(-3.31213,-3.90876)--
> (-3.31103,-3.90874)--(-3.30993,-3.90873)--(-3.30883,-3.90871)--(-3.30773,-3.9087)--(-3.30664,-3.90868)--(-3.30555,-3.90866)--(-3.30446,-3.90865)--(-3.30337,-3.90863)--(-3.30229,-3.90861)--(-3.3012,-3.90859)--(-3.30012,-3.90857)--(-3.29905,-3.90855)--(-3.29797,-3.90854)--(-3.29689,-3.90852)--(-3.29582,-3.9085)--(-3.29475,-3.90847)--(-3.29368,-3.90845)--(-3.29262,-3.90843)--(-3.29155,-3.90841)--(-3.29049,-3.90839)--(-3.28943,-3.90837)--(-3.28837,-3.90834)--(-3.28732,-3.90832)--(-3.28626,-3.9083)--
> (-3.28521,-3.90827)--(-3.28416,-3.90825)--(-3.28311,-3.90823)--(-3.28207,-3.9082)--(-3.28102,-3.90818)--(-3.27998,-3.90815)--(-3.27894,-3.90813)--(-3.27791,-3.9081)--(-3.27687,-3.90807)--(-3.27584,-3.90805)--(-3.2748,-3.90802)--(-3.27377,-3.90799)--(-3.27275,-3.90797)--(-3.27172,-3.90794)--(-3.2707,-3.90791)--(-3.26967,-3.90788)--(-3.26865,-3.90785)--(-3.26764,-3.90782)--(-3.26662,-3.9078)--(-3.26561,-3.90777)--(-3.26459,-3.90774)--(-3.26358,-3.90771)--(-3.26258,-3.90767)--(-3.26157,-3.90764)--
> (-3.26057,-3.90761)--(-3.25956,-3.90758)--(-3.25856,-3.90755)--(-3.25756,-3.90752)--(-3.25657,-3.90748)--(-3.25557,-3.90745)--(-3.25458,-3.90742)--(-3.25359,-3.90739)--(-3.2526,-3.90735)--(-3.25161,-3.90732)--(-3.25062,-3.90728)--(-3.24964,-3.90725)--(-3.24866,-3.90722)--(-3.24768,-3.90718)--(-3.2467,-3.90715)--(-3.24572,-3.90711)--(-3.24475,-3.90707)--(-3.24378,-3.90704)--(-3.24281,-3.907)--(-3.24184,-3.90696)--(-3.24087,-3.90693)--(-3.23991,-3.90689)--(-3.23894,-3.90685)--(-3.23798,-3.90682)--
> (-3.23702,-3.90678)--(-3.23606,-3.90674)--(-3.23511,-3.9067)--(-3.23415,-3.90666)--(-3.2332,-3.90662)--(-3.23225,-3.90658)--(-3.2313,-3.90654)--(-3.23035,-3.9065)--(-3.22941,-3.90646)--(-3.22846,-3.90642)--(-3.22752,-3.90638)--(-3.22658,-3.90634)--(-3.22564,-3.9063)--(-3.2247,-3.90626)--(-3.22377,-3.90622)--(-3.22284,-3.90617)--(-3.2219,-3.90613)--(-3.22097,-3.90609)--(-3.22005,-3.90605)--(-3.21912,-3.906)--(-3.2182,-3.90596)--(-3.21727,-3.90592)--(-3.21635,-3.90587)--(-3.21543,-3.90583)--
> (-3.21451,-3.90578)--(-3.2136,-3.90574)--(-3.21268,-3.9057)--(-3.21177,-3.90565)--(-3.21086,-3.90561)--(-3.20995,-3.90556)--(-3.20904,-3.90551)--(-3.20814,-3.90547)--(-3.20723,-3.90542)--(-3.20633,-3.90538)--(-3.20543,-3.90533)--(-3.20453,-3.90528)--(-3.20363,-3.90523)--(-3.20274,-3.90519)--(-3.20184,-3.90514)--(-3.20095,-3.90509)--(-3.20006,-3.90504)--(-3.19917,-3.905)--(-3.19828,-3.90495)--(-3.1974,-3.9049)--(-3.19651,-3.90485)--(-3.19563,-3.9048)--(-3.19475,-3.90475)--(-3.19387,-3.9047)--
> (-3.19299,-3.90465)--(-3.19211,-3.9046)--(-3.19124,-3.90455)--(-3.19036,-3.9045)--(-3.18949,-3.90445)--(-3.18862,-3.9044)--(-3.18775,-3.90435)--(-3.18689,-3.9043)--(-3.18602,-3.90424)--(-3.18516,-3.90419)--(-3.1843,-3.90414)--(-3.18344,-3.90409)--(-3.18258,-3.90404)--(-3.18172,-3.90398)--(-3.18086,-3.90393)--(-3.18001,-3.90388)--(-3.17916,-3.90382)--(-3.17831,-3.90377)--(-3.17746,-3.90372)--(-3.17661,-3.90366)--(-3.17576,-3.90361)--(-3.17492,-3.90356)--(-3.17407,-3.9035)--(-3.17323,-3.90345)--
> (-3.17239,-3.90339)--(-3.17155,-3.90334)--(-3.17071,-3.90328)--(-3.16988,-3.90323)--(-3.16904,-3.90317)--(-3.16821,-3.90311)--(-3.16738,-3.90306)--(-3.16655,-3.903)--(-3.16572,-3.90294)--(-3.16489,-3.90289)--(-3.16407,-3.90283)--(-3.16324,-3.90277)--(-3.16242,-3.90272)--(-3.1616,-3.90266)--(-3.16078,-3.9026)--(-3.15996,-3.90254)--(-3.15915,-3.90249)--(-3.15833,-3.90243)--(-3.15752,-3.90237)--(-3.1567,-3.90231)--(-3.15589,-3.90225)--(-3.15508,-3.90219)--(-3.15428,-3.90213)--(-3.15347,-3.90208)--
> (-3.15266,-3.90202)--(-3.15186,-3.90196)--(-3.15106,-3.9019)--(-3.15026,-3.90184)--(-3.14946,-3.90178)--(-3.14866,-3.90172)--(-3.14786,-3.90166)--(-3.14707,-3.9016)--(-3.14628,-3.90153)--(-3.14548,-3.90147)--(-3.14469,-3.90141)--(-3.1439,-3.90135)--(-3.14311,-3.90129)--(-3.14233,-3.90123)--(-3.14154,-3.90117)--(-3.14076,-3.9011)--(-3.13998,-3.90104)--(-3.1392,-3.90098)--(-3.13842,-3.90092)--(-3.13764,-3.90085)--(-3.13686,-3.90079)--(-3.13608,-3.90073)--(-3.13531,-3.90067)--(-3.13454,-3.9006)--
> (-3.13377,-3.90054)--(-3.133,-3.90047)--(-3.13223,-3.90041)--(-3.13146,-3.90035)--(-3.13069,-3.90028)--(-3.12993,-3.90022)--(-3.12917,-3.90015)--(-3.1284,-3.90009)--(-3.12764,-3.90002)--(-3.12688,-3.89996)--(-3.12612,-3.89989)--(-3.12537,-3.89983)--(-3.12461,-3.89976)--(-3.12386,-3.8997)--(-3.12311,-3.89963)--(-3.12235,-3.89957)--(-3.1216,-3.8995)--(-3.12086,-3.89944)--(-3.12011,-3.89937)--(-3.11936,-3.8993)--(-3.11862,-3.89924)--(-3.11787,-3.89917)--(-3.11713,-3.8991)--(-3.11639,-3.89904)--
> (-3.11565,-3.89897)--(-3.11491,-3.8989)--(-3.11417,-3.89883)--(-3.11344,-3.89877)--(-3.1127,-3.8987)--(-3.11197,-3.89863)--(-3.11124,-3.89856)--(-3.11051,-3.89849)--(-3.10978,-3.89843)--(-3.10905,-3.89836)--(-3.10832,-3.89829)--(-3.1076,-3.89822)--(-3.10687,-3.89815)--(-3.10615,-3.89808)--(-3.10543,-3.89801)--(-3.10471,-3.89794)--(-3.10399,-3.89788)--(-3.10327,-3.89781)--(-3.10255,-3.89774)--(-3.10183,-3.89767)--(-3.10112,-3.8976)--(-3.10041,-3.89753)--(-3.09969,-3.89746)--(-3.09898,-3.89739)--
> (-3.09827,-3.89732)--(-3.09756,-3.89724)--(-3.09686,-3.89717)--(-3.09615,-3.8971)--(-3.09545,-3.89703)--(-3.09474,-3.89696)--(-3.09404,-3.89689)--(-3.09334,-3.89682)--(-3.09264,-3.89675)--(-3.09194,-3.89668)--(-3.09124,-3.8966)--(-3.09055,-3.89653)--(-3.08985,-3.89646)--(-3.08916,-3.89639)--(-3.08846,-3.89632)--(-3.08777,-3.89624)--(-3.08708,-3.89617)--(-3.08639,-3.8961)--(-3.0857,-3.89603)--(-3.08502,-3.89595)--(-3.08433,-3.89588)--(-3.08365,-3.89581)--(-3.08296,-3.89573)--(-3.08228,-3.89566)--
> (-3.0816,-3.89559)--(-3.08092,-3.89551)--(-3.08024,-3.89544)--(-3.07956,-3.89537)--(-3.07888,-3.89529)--(-3.07821,-3.89522)--(-3.07753,-3.89515)--(-3.07686,-3.89507)--(-3.07619,-3.895)--(-3.07552,-3.89492)--(-3.07485,-3.89485)--(-3.07418,-3.89477)--(-3.07351,-3.8947)--(-3.07285,-3.89462)--(-3.07218,-3.89455)--(-3.07152,-3.89447)--(-3.07085,-3.8944)--(-3.07019,-3.89432)--(-3.06953,-3.89425)--(-3.06887,-3.89417)--(-3.06821,-3.8941)--(-3.06755,-3.89402)--(-3.0669,-3.89395)--(-3.06624,-3.89387)--
> (-3.06559,-3.8938)--(-3.06493,-3.89372)--(-3.06428,-3.89364)--(-3.06363,-3.89357)--(-3.06298,-3.89349)--(-3.06233,-3.89341)--(-3.06168,-3.89334)--(-3.06104,-3.89326)--(-3.06039,-3.89318)--(-3.05975,-3.89311)--(-3.0591,-3.89303)--(-3.05846,-3.89295)--(-3.05782,-3.89288)--(-3.05718,-3.8928)--(-3.05654,-3.89272)--(-3.0559,-3.89264)--(-3.05527,-3.89257)--(-3.05463,-3.89249)--(-3.05399,-3.89241)--(-3.05336,-3.89233)--(-3.05273,-3.89226)--(-3.0521,-3.89218)--(-3.05146,-3.8921)--(-3.05084,-3.89202)--
> (-3.05021,-3.89194)--(-3.04958,-3.89186)--(-3.04895,-3.89179)--(-3.04833,-3.89171)--(-3.0477,-3.89163)--(-3.04708,-3.89155)--(-3.04646,-3.89147)--(-3.04583,-3.89139)--(-3.04521,-3.89131)--(-3.04459,-3.89123)--(-3.04398,-3.89115)--(-3.04336,-3.89108)--(-3.04274,-3.891)--(-3.04213,-3.89092)--(-3.04151,-3.89084)--(-3.0409,-3.89076)--(-3.04029,-3.89068)--(-3.03967,-3.8906)--(-3.03906,-3.89052)--(-3.03846,-3.89044)--(-3.03785,-3.89036)--(-3.03724,-3.89028)--(-3.03663,-3.8902)--(-3.03603,-3.89012)--
> (-3.03542,-3.89004)--(-3.03482,-3.88996)--(-3.03422,-3.88988)--(-3.03362,-3.8898)--(-3.03301,-3.88972)--(-3.03242,-3.88963)--(-3.03182,-3.88955)--(-3.03122,-3.88947)--(-3.03062,-3.88939)--(-3.03003,-3.88931)--(-3.02943,-3.88923)--(-3.02884,-3.88915)--(-3.02825,-3.88907)--(-3.02765,-3.88899)--(-3.02706,-3.8889)--(-3.02647,-3.88882)--(-3.02588,-3.88874)--(-3.0253,-3.88866)--(-3.02471,-3.88858)--(-3.02412,-3.8885)--(-3.02354,-3.88841)--(-3.02295,-3.88833)--(-3.02237,-3.88825)--(-3.02179,-3.88817)--
> (-3.02121,-3.88809)--(-3.02063,-3.888)--(-3.02005,-3.88792)--(-3.01947,-3.88784)--(-3.01889,-3.88776)--(-3.01831,-3.88767)--(-3.01774,-3.88759)--(-3.01716,-3.88751)--(-3.01659,-3.88743)--(-3.01602,-3.88734)--(-3.01544,-3.88726)--(-3.01487,-3.88718)--(-3.0143,-3.88709)--(-3.01373,-3.88701)--(-3.01316,-3.88693)--(-3.0126,-3.88685)--(-3.01203,-3.88676)--(-3.01146,-3.88668)--(-3.0109,-3.8866)--(-3.01034,-3.88651)--(-3.00977,-3.88643)--(-3.00921,-3.88634)--(-3.00865,-3.88626)--(-3.00809,-3.88618)--
> (-3.00753,-3.88609)--(-3.00697,-3.88601)--(-3.00641,-3.88593)--(-3.00586,-3.88584)--(-3.0053,-3.88576)--(-3.00474,-3.88567)--(-3.00419,-3.88559)--(-3.00364,-3.88551)--(-3.00308,-3.88542)--(-3.00253,-3.88534)--(-3.00198,-3.88525)--(-3.00143,-3.88517)--(-3.00088,-3.88508)--(-3.00034,-3.885)--(-2.99979,-3.88491)--(-2.99924,-3.88483)--(-2.9987,-3.88474)--(-2.99815,-3.88466)--(-2.99761,-3.88458)--(-2.99707,-3.88449)--(-2.99652,-3.88441)--(-2.99598,-3.88432)--(-2.99544,-3.88423)--(-2.9949,-3.88415)--
> (-2.99436,-3.88406)--(-2.99383,-3.88398)--(-2.99329,-3.88389)--(-2.99275,-3.88381)--(-2.99222,-3.88372)--(-2.99168,-3.88364)--(-2.99115,-3.88355)--(-2.99062,-3.88347)--(-2.99008,-3.88338)--(-2.98955,-3.8833)--(-2.98902,-3.88321)--(-2.98849,-3.88312)--(-2.98796,-3.88304)--(-2.98744,-3.88295)--(-2.98691,-3.88287)--(-2.98638,-3.88278)--(-2.98586,-3.88269)--(-2.98533,-3.88261)--(-2.98481,-3.88252)--(-2.98429,-3.88244)--(-2.98376,-3.88235)--(-2.98324,-3.88226)--(-2.98272,-3.88218)--(-2.9822,-3.88209)--
> (-2.98168,-3.882)--(-2.98117,-3.88192)--(-2.98065,-3.88183)--(-2.98013,-3.88174)--(-2.97962,-3.88166)--(-2.9791,-3.88157)--(-2.97859,-3.88148)--(-2.97807,-3.8814)--(-2.97756,-3.88131)--(-2.97705,-3.88122)--(-2.97654,-3.88114)--(-2.97603,-3.88105)--(-2.97552,-3.88096)--(-2.97501,-3.88088)--(-2.9745,-3.88079)--(-2.974,-3.8807)--(-2.97349,-3.88061)--(-2.97298,-3.88053)--(-2.97248,-3.88044)--(-2.97198,-3.88035)--(-2.97147,-3.88027)--(-2.97097,-3.88018)--(-2.97047,-3.88009)--(-2.96997,-3.88)--
> (-2.96947,-3.87992)--(-2.96897,-3.87983)--(-2.96847,-3.87974)--(-2.96797,-3.87965)--(-2.96748,-3.87957)--(-2.96698,-3.87948)--(-2.96648,-3.87939)--(-2.96599,-3.8793)--(-2.9655,-3.87921)--(-2.965,-3.87913)--(-2.96451,-3.87904)--(-2.96402,-3.87895)--(-2.96353,-3.87886)--(-2.96304,-3.87877)--(-2.96255,-3.87869)--(-2.96206,-3.8786)--(-2.96157,-3.87851)--(-2.96108,-3.87842)--(-2.9606,-3.87833)--(-2.96011,-3.87825)--(-2.95963,-3.87816)--(-2.95914,-3.87807)--(-2.95866,-3.87798)--(-2.95818,-3.87789)--
> (-2.95769,-3.8778)--(-2.95721,-3.87772)--(-2.95673,-3.87763)--(-2.95625,-3.87754)--(-2.95577,-3.87745)--(-2.95529,-3.87736)--(-2.95482,-3.87727)--(-2.95434,-3.87718)--(-2.95386,-3.8771)--(-2.95339,-3.87701)--(-2.95291,-3.87692)--(-2.95244,-3.87683)--(-2.95196,-3.87674)--(-2.95149,-3.87665)--(-2.95102,-3.87656)--(-2.95055,-3.87647)--(-2.95008,-3.87638)--(-2.94961,-3.8763)--(-2.94914,-3.87621)--(-2.94867,-3.87612)--(-2.9482,-3.87603)--(-2.94774,-3.87594)--(-2.94727,-3.87585)--(-2.9468,-3.87576)--
> (-2.94634,-3.87567)--(-2.94587,-3.87558)--(-2.94541,-3.87549)--(-2.94495,-3.8754)--(-2.94449,-3.87531)--(-2.94402,-3.87522)--(-2.94356,-3.87514)--(-2.9431,-3.87505)--(-2.94264,-3.87496)--(-2.94218,-3.87487)--(-2.94173,-3.87478)--(-2.94127,-3.87469)--(-2.94081,-3.8746)--(-2.94036,-3.87451)--(-2.9399,-3.87442)--(-2.93945,-3.87433)--(-2.93899,-3.87424)--(-2.93854,-3.87415)--(-2.93809,-3.87406)--(-2.93763,-3.87397)--(-2.93718,-3.87388)--(-2.93673,-3.87379)--(-2.93628,-3.8737)--(-2.93583,-3.87361)--
> (-2.93538,-3.87352)--(-2.93494,-3.87343)--(-2.93449,-3.87334)--(-2.93404,-3.87325)--(-2.9336,-3.87316)--(-2.93315,-3.87307)--(-2.93271,-3.87298)--(-2.93226,-3.87289)--(-2.93182,-3.8728)--(-2.93138,-3.87271)--(-2.93093,-3.87262)--(-2.93049,-3.87253)--(-2.93005,-3.87244)--(-2.92961,-3.87235)--(-2.92917,-3.87226)--(-2.92873,-3.87217)--(-2.92829,-3.87208)--(-2.92786,-3.87199)--(-2.92742,-3.8719)--(-2.92698,-3.87181)--(-2.92655,-3.87172)--(-2.92611,-3.87163)--(-2.92568,-3.87154)--(-2.92524,-3.87145)--
> (-2.92481,-3.87136)--(-2.92438,-3.87127)--(-2.92395,-3.87118)--(-2.92351,-3.87109)--(-2.92308,-3.87099)--(-2.92265,-3.8709)--(-2.92222,-3.87081)--(-2.9218,-3.87072)--(-2.92137,-3.87063)--(-2.92094,-3.87054)--(-2.92051,-3.87045)--(-2.92009,-3.87036)--(-2.91966,-3.87027)--(-2.91924,-3.87018)--(-2.91881,-3.87009)--(-2.91839,-3.87)--(-2.91796,-3.86991)--(-2.91754,-3.86982)--(-2.91712,-3.86973)--(-2.9167,-3.86963)--(-2.91628,-3.86954)--(-2.91586,-3.86945)--(-2.91544,-3.86936)--(-2.91502,-3.86927)--
> (-2.9146,-3.86918)--(-2.91418,-3.86909)--(-2.91377,-3.869)--(-2.91335,-3.86891)--(-2.91293,-3.86882)--(-2.91252,-3.86873)--(-2.9121,-3.86863)--(-2.91169,-3.86854)--(-2.91128,-3.86845)--(-2.91086,-3.86836)--(-2.91045,-3.86827)--(-2.91004,-3.86818)--(-2.90963,-3.86809)--(-2.90922,-3.868)--(-2.90881,-3.86791)--(-2.9084,-3.86781)--(-2.90799,-3.86772)--(-2.90758,-3.86763)--(-2.90717,-3.86754)--(-2.90677,-3.86745)--(-2.90636,-3.86736)--(-2.90595,-3.86727)--(-2.90555,-3.86718)--(-2.90514,-3.86709)--
> (-2.90474,-3.86699)--(-2.90434,-3.8669)--(-2.90393,-3.86681)--(-2.90353,-3.86672)--(-2.90313,-3.86663)--(-2.90273,-3.86654)--(-2.90233,-3.86645)--(-2.90193,-3.86636)--(-2.90153,-3.86626)--(-2.90113,-3.86617)--(-2.90073,-3.86608)--(-2.90033,-3.86599)--(-2.89993,-3.8659)--(-2.89954,-3.86581)--(-2.89914,-3.86572)--(-2.89874,-3.86562)--(-2.89835,-3.86553)--(-2.89795,-3.86544)--(-2.89756,-3.86535)--(-2.89717,-3.86526)--(-2.89677,-3.86517)--(-2.89638,-3.86508)--(-2.89599,-3.86498)--(-2.8956,-3.86489)--
> (-2.89521,-3.8648)--(-2.89482,-3.86471)--(-2.89443,-3.86462)--(-2.89404,-3.86453)--(-2.89365,-3.86443)--(-2.89326,-3.86434)--(-2.89288,-3.86425)--(-2.89249,-3.86416)--(-2.8921,-3.86407)--(-2.89172,-3.86398)--(-2.89133,-3.86388)--(-2.89095,-3.86379)--(-2.89056,-3.8637)--(-2.89018,-3.86361)--(-2.8898,-3.86352)--(-2.88941,-3.86343)--(-2.88903,-3.86333)--(-2.88865,-3.86324)--(-2.88827,-3.86315)--(-2.88789,-3.86306)--(-2.88751,-3.86297)--(-2.88713,-3.86288)--(-2.88675,-3.86278)--(-2.88637,-3.86269)--
> (-2.88599,-3.8626)--(-2.88562,-3.86251)--(-2.88524,-3.86242)--(-2.88486,-3.86233)--(-2.88449,-3.86223)--(-2.88411,-3.86214)--(-2.88374,-3.86205)--(-2.88336,-3.86196)--(-2.88299,-3.86187)--(-2.88262,-3.86178)--(-2.88225,-3.86168)--(-2.88187,-3.86159)--(-2.8815,-3.8615)--(-2.88113,-3.86141)--(-2.88076,-3.86132)--(-2.88039,-3.86122)--(-2.88002,-3.86113)--(-2.87965,-3.86104)--(-2.87928,-3.86095)--(-2.87892,-3.86086)--(-2.87855,-3.86077)--(-2.87818,-3.86067)--(-2.87781,-3.86058)--(-2.87745,-3.86049)--
> (-2.87708,-3.8604)--(-2.87672,-3.86031)--(-2.87635,-3.86021)--(-2.87599,-3.86012)--(-2.87563,-3.86003)--(-2.87526,-3.85994)--(-2.8749,-3.85985)--(-2.87454,-3.85976)--(-2.87418,-3.85966)--(-2.87382,-3.85957)--(-2.87346,-3.85948)--(-2.8731,-3.85939)--(-2.87274,-3.8593)--(-2.87238,-3.8592)--(-2.87202,-3.85911)--(-2.87166,-3.85902)--(-2.8713,-3.85893)--(-2.87095,-3.85884)--(-2.87059,-3.85874)--(-2.87023,-3.85865)--(-2.86988,-3.85856)--(-2.86952,-3.85847)--(-2.86917,-3.85838)--(-2.86882,-3.85829)--
> (-2.86846,-3.85819)--(-2.86811,-3.8581)--(-2.86776,-3.85801)--(-2.8674,-3.85792)--(-2.86705,-3.85783)--(-2.8667,-3.85773)--(-2.86635,-3.85764)--(-2.866,-3.85755)--(-2.86565,-3.85746)--(-2.8653,-3.85737)--(-2.86495,-3.85727)--(-2.8646,-3.85718)--(-2.86426,-3.85709)--(-2.86391,-3.857)--(-2.86356,-3.85691)--(-2.86321,-3.85681)--(-2.86287,-3.85672)--(-2.86252,-3.85663)--(-2.86218,-3.85654)--(-2.86183,-3.85645)--(-2.86149,-3.85635)--(-2.86115,-3.85626)--(-2.8608,-3.85617)--(-2.86046,-3.85608)--
> (-2.86012,-3.85599)--(-2.85978,-3.8559)--(-2.85943,-3.8558)--(-2.85909,-3.85571)--(-2.85875,-3.85562)--(-2.85841,-3.85553)--(-2.85807,-3.85544)--(-2.85773,-3.85534)--(-2.8574,-3.85525)--(-2.85706,-3.85516)--(-2.85672,-3.85507)--(-2.85638,-3.85498)--(-2.85605,-3.85488)--(-2.85571,-3.85479)--(-2.85537,-3.8547)--(-2.85504,-3.85461)--(-2.8547,-3.85452)--(-2.85437,-3.85442)--(-2.85403,-3.85433)--(-2.8537,-3.85424)--(-2.85337,-3.85415)--(-2.85303,-3.85406)--(-2.8527,-3.85397)--(-2.85237,-3.85387)--
> (-2.85204,-3.85378)--(-2.85171,-3.85369)--(-2.85138,-3.8536)--(-2.85105,-3.85351)--(-2.85072,-3.85341)--(-2.85039,-3.85332)--(-2.85006,-3.85323)--(-2.84973,-3.85314)--(-2.8494,-3.85305)--(-2.84907,-3.85295)--(-2.84875,-3.85286)--(-2.84842,-3.85277)--(-2.84809,-3.85268)--(-2.84777,-3.85259)--(-2.84744,-3.8525)--(-2.84712,-3.8524)--(-2.84679,-3.85231)--(-2.84647,-3.85222)--(-2.84615,-3.85213)--(-2.84582,-3.85204)--(-2.8455,-3.85195)--(-2.84518,-3.85185)--(-2.84486,-3.85176)--(-2.84453,-3.85167)--
> (-2.84421,-3.85158)--(-2.84389,-3.85149)--(-2.84357,-3.85139)--(-2.84325,-3.8513)--(-2.84293,-3.85121)--(-2.84261,-3.85112)--(-2.84229,-3.85103)--(-2.84198,-3.85094)--(-2.84166,-3.85084)--(-2.84134,-3.85075)--(-2.84102,-3.85066)--(-2.84071,-3.85057)--(-2.84039,-3.85048)--(-2.84008,-3.85039)--(-2.83976,-3.85029)--(-2.83945,-3.8502)--(-2.83913,-3.85011)--(-2.83882,-3.85002)--(-2.8385,-3.84993)--(-2.83819,-3.84984)--(-2.83788,-3.84974)--(-2.83757,-3.84965)--(-2.83725,-3.84956)--(-2.83694,-3.84947)--
> (-2.83663,-3.84938)--(-2.83632,-3.84929)--(-2.83601,-3.84919)--(-2.8357,-3.8491)--(-2.83539,-3.84901)--(-2.83508,-3.84892)--(-2.83477,-3.84883)--(-2.83446,-3.84874)--(-2.83416,-3.84864)--(-2.83385,-3.84855)--(-2.83354,-3.84846)--(-2.83323,-3.84837)--(-2.83293,-3.84828)--(-2.83262,-3.84819)--(-2.83232,-3.84809)--(-2.83201,-3.848)--(-2.83171,-3.84791)--(-2.8314,-3.84782)--(-2.8311,-3.84773)--(-2.83079,-3.84764)--(-2.83049,-3.84755)--(-2.83019,-3.84745)--(-2.82989,-3.84736)--(-2.82958,-3.84727)--
> (-2.82928,-3.84718)--(-2.82898,-3.84709)--(-2.82868,-3.847)--(-2.82838,-3.84691)--(-2.82808,-3.84681)--(-2.82778,-3.84672)--(-2.82748,-3.84663)--(-2.82718,-3.84654)--(-2.82688,-3.84645)--(-2.82658,-3.84636)--(-2.82629,-3.84627)--(-2.82599,-3.84617)--(-2.82569,-3.84608)--(-2.82539,-3.84599)--(-2.8251,-3.8459)--(-2.8248,-3.84581)--(-2.82451,-3.84572)--(-2.82421,-3.84563)--(-2.82392,-3.84553)--(-2.82362,-3.84544)--(-2.82333,-3.84535)--(-2.82303,-3.84526)--(-2.82274,-3.84517)--(-2.82245,-3.84508)--
> (-2.82216,-3.84499)--(-2.82186,-3.8449)--(-2.82157,-3.8448)--(-2.82128,-3.84471)--(-2.82099,-3.84462)--(-2.8207,-3.84453)--(-2.82041,-3.84444)--(-2.82012,-3.84435)--(-2.81983,-3.84426)--(-2.81954,-3.84417)--(-2.81925,-3.84408)--(-2.81896,-3.84398)--(-2.81867,-3.84389)--(-2.81839,-3.8438)--(-2.8181,-3.84371)--(-2.81781,-3.84362)--(-2.81753,-3.84353)--(-2.81724,-3.84344)--(-2.81695,-3.84335)--(-2.81667,-3.84326)--(-2.81638,-3.84316)--(-2.8161,-3.84307)--(-2.81581,-3.84298)--(-2.81553,-3.84289)--
> (-2.81524,-3.8428)--(-2.81496,-3.84271)--(-2.81468,-3.84262)--(-2.8144,-3.84253)--(-2.81411,-3.84244)--(-2.81383,-3.84235)--(-2.81355,-3.84225)--(-2.81327,-3.84216)--(-2.81299,-3.84207)--(-2.81271,-3.84198)--(-2.81243,-3.84189)--(-2.81215,-3.8418)--(-2.81187,-3.84171)--(-2.81159,-3.84162)--(-2.81131,-3.84153)--(-2.81103,-3.84144)--(-2.81075,-3.84135)--(-2.81047,-3.84125)--(-2.8102,-3.84116)--(-2.80992,-3.84107)--(-2.80964,-3.84098)--(-2.80937,-3.84089)--(-2.80909,-3.8408)--(-2.80881,-3.84071)--
> (-2.80854,-3.84062)--(-2.80826,-3.84053)--(-2.80799,-3.84044)--(-2.80772,-3.84035)--(-2.80744,-3.84026)--(-2.80717,-3.84017)--(-2.80689,-3.84008)--(-2.80662,-3.83998)--(-2.80635,-3.83989)--(-2.80608,-3.8398)--(-2.8058,-3.83971)--(-2.80553,-3.83962)--(-2.80526,-3.83953)--(-2.80499,-3.83944)--(-2.80472,-3.83935)--(-2.80445,-3.83926)--(-2.80418,-3.83917)--(-2.80391,-3.83908)--(-2.80364,-3.83899)--(-2.80337,-3.8389)--(-2.8031,-3.83881)--(-2.80283,-3.83872)--(-2.80257,-3.83863)--(-2.8023,-3.83854)--
> (-2.80203,-3.83845)--(-2.80176,-3.83835)--(-2.8015,-3.83826)--(-2.80123,-3.83817)--(-2.80097,-3.83808)--(-2.8007,-3.83799)--(-2.80043,-3.8379)--(-2.80017,-3.83781)--(-2.7999,-3.83772)--(-2.79964,-3.83763)--(-2.79938,-3.83754)--(-2.79911,-3.83745)--(-2.79885,-3.83736)--(-2.79859,-3.83727)--(-2.79832,-3.83718)--(-2.79806,-3.83709)--(-2.7978,-3.837)--(-2.79754,-3.83691)--(-2.79728,-3.83682)--(-2.79701,-3.83673)--(-2.79675,-3.83664)--(-2.79649,-3.83655)--(-2.79623,-3.83646)--(-2.79597,-3.83637)--
> (-2.79571,-3.83628)--(-2.79545,-3.83619)--(-2.7952,-3.8361)--(-2.79494,-3.83601)--(-2.79468,-3.83592)--(-2.79442,-3.83583)--(-2.79416,-3.83574)--(-2.79391,-3.83565)--(-2.79365,-3.83556)--(-2.79339,-3.83547)--(-2.79314,-3.83538)--(-2.79288,-3.83529)--(-2.79262,-3.8352)--(-2.79237,-3.83511)--(-2.79211,-3.83502)--(-2.79186,-3.83493)--(-2.7916,-3.83484)--(-2.79135,-3.83475)--(-2.79109,-3.83466)--(-2.79084,-3.83457)--(-2.79059,-3.83448)--(-2.79033,-3.83439)--(-2.79008,-3.8343)--(-2.78983,-3.83421)--
> (-2.78958,-3.83412)--(-2.78933,-3.83403)--(-2.78907,-3.83394)--(-2.78882,-3.83385)--(-2.78857,-3.83376)--(-2.78832,-3.83367)--(-2.78807,-3.83358)--(-2.78782,-3.83349)--(-2.78757,-3.8334)--(-2.78732,-3.83331)--(-2.78707,-3.83322)--(-2.78682,-3.83313)--(-2.78658,-3.83304)--(-2.78633,-3.83295)--(-2.78608,-3.83286)--(-2.78583,-3.83277)--(-2.78558,-3.83268)--(-2.78534,-3.8326)--(-2.78509,-3.83251)--(-2.78484,-3.83242)--(-2.7846,-3.83233)--(-2.78435,-3.83224)--(-2.78411,-3.83215)--(-2.78386,-3.83206)--
> (-2.78362,-3.83197)--(-2.78337,-3.83188)--(-2.78313,-3.83179)--(-2.78288,-3.8317)--(-2.78264,-3.83161)--(-2.7824,-3.83152)--(-2.78215,-3.83143)--(-2.78191,-3.83134)--(-2.78167,-3.83125)--(-2.78143,-3.83116)--(-2.78118,-3.83108)--(-2.78094,-3.83099)--(-2.7807,-3.8309)--(-2.78046,-3.83081)--(-2.78022,-3.83072)--(-2.77998,-3.83063)--(-2.77974,-3.83054)--(-2.7795,-3.83045)--(-2.77926,-3.83036)--(-2.77902,-3.83027)--(-2.77878,-3.83018)--(-2.77854,-3.83009)--(-2.7783,-3.83001)--(-2.77806,-3.82992)--
> (-2.77782,-3.82983)--(-2.77759,-3.82974)--(-2.77735,-3.82965)--(-2.77711,-3.82956)--(-2.77688,-3.82947)--(-2.77664,-3.82938)--(-2.7764,-3.82929)--(-2.77617,-3.8292)--(-2.77593,-3.82912)--(-2.77569,-3.82903)--(-2.77546,-3.82894)--(-2.77522,-3.82885)--(-2.77499,-3.82876)--(-2.77476,-3.82867)--(-2.77452,-3.82858)--(-2.77429,-3.82849)--(-2.77405,-3.8284)--(-2.77382,-3.82832)--(-2.77359,-3.82823)--(-2.77335,-3.82814)--(-2.77312,-3.82805)--(-2.77289,-3.82796)--(-2.77266,-3.82787)--(-2.77243,-3.82778)--
> (-2.77219,-3.82769)--(-2.77196,-3.82761)--(-2.77173,-3.82752)--(-2.7715,-3.82743)--(-2.77127,-3.82734)--(-2.77104,-3.82725)--(-2.77081,-3.82716)--(-2.77058,-3.82707)--(-2.77035,-3.82699)--(-2.77012,-3.8269)--(-2.7699,-3.82681)--(-2.76967,-3.82672)--(-2.76944,-3.82663)--(-2.76921,-3.82654)--(-2.76898,-3.82645)--(-2.76876,-3.82637)--(-2.76853,-3.82628)--(-2.7683,-3.82619)--(-2.76807,-3.8261)--(-2.76785,-3.82601)--(-2.76762,-3.82592)--(-2.7674,-3.82584)--(-2.76717,-3.82575)--(-2.76695,-3.82566)--
> (-2.76672,-3.82557)--(-2.7665,-3.82548)--(-2.76627,-3.82539)--(-2.76605,-3.82531)--(-2.76582,-3.82522)--(-2.7656,-3.82513)--(-2.76538,-3.82504)--(-2.76515,-3.82495)--(-2.76493,-3.82487)--(-2.76471,-3.82478)--(-2.76448,-3.82469)--(-2.76426,-3.8246)--(-2.76404,-3.82451)--(-2.76382,-3.82442)--(-2.7636,-3.82434)--(-2.76338,-3.82425)--(-2.76316,-3.82416)--(-2.76293,-3.82407)--(-2.76271,-3.82398)--(-2.76249,-3.8239)--(-2.76227,-3.82381)--(-2.76205,-3.82372)--(-2.76183,-3.82363)--(-2.76162,-3.82355)--
> (-2.7614,-3.82346)--(-2.76118,-3.82337)--(-2.76096,-3.82328)--(-2.76074,-3.82319)--(-2.76052,-3.82311)--(-2.76031,-3.82302)--(-2.76009,-3.82293)--(-2.75987,-3.82284)--(-2.75965,-3.82275)--(-2.75944,-3.82267)--(-2.75922,-3.82258)--(-2.75901,-3.82249)--(-2.75879,-3.8224)--(-2.75857,-3.82232)--(-2.75836,-3.82223)--(-2.75814,-3.82214)--(-2.75793,-3.82205)--(-2.75771,-3.82197)--(-2.7575,-3.82188)--(-2.75728,-3.82179)--(-2.75707,-3.8217)--(-2.75686,-3.82162)--(-2.75664,-3.82153)--(-2.75643,-3.82144)--
> (-2.75622,-3.82135)--(-2.756,-3.82127)--(-2.75579,-3.82118)--(-2.75558,-3.82109)--(-2.75537,-3.821)--(-2.75516,-3.82092)--(-2.75494,-3.82083)--(-2.75473,-3.82074)--(-2.75452,-3.82065)--(-2.75431,-3.82057)--(-2.7541,-3.82048)--(-2.75389,-3.82039)--(-2.75368,-3.82031)--(-2.75347,-3.82022)--(-2.75326,-3.82013)--(-2.75305,-3.82004)--(-2.75284,-3.81996)--(-2.75263,-3.81987)--(-2.75242,-3.81978)--(-2.75222,-3.81969)--(-2.75201,-3.81961)--(-2.7518,-3.81952)--(-2.75159,-3.81943)--(-2.75138,-3.81935)--
> (-2.75118,-3.81926)--(-2.75097,-3.81917)--(-2.75076,-3.81909)--(-2.75056,-3.819)--(-2.75035,-3.81891)--(-2.75014,-3.81882)--(-2.74994,-3.81874)--(-2.74973,-3.81865)--(-2.74953,-3.81856)--(-2.74932,-3.81848)--(-2.74912,-3.81839)--(-2.74891,-3.8183)--(-2.74871,-3.81822)--(-2.7485,-3.81813)--(-2.7483,-3.81804)--(-2.7481,-3.81796)--(-2.74789,-3.81787)--(-2.74769,-3.81778)--(-2.74749,-3.8177)--(-2.74728,-3.81761)--(-2.74708,-3.81752)--(-2.74688,-3.81744)--(-2.74668,-3.81735)--(-2.74647,-3.81726)--
> (-2.74627,-3.81718)--(-2.74607,-3.81709)--(-2.74587,-3.817)--(-2.74567,-3.81692)--(-2.74547,-3.81683)--(-2.74527,-3.81674)--(-2.74507,-3.81666)--(-2.74487,-3.81657)--(-2.74467,-3.81648)--(-2.74447,-3.8164)--(-2.74427,-3.81631)--(-2.74407,-3.81622)--(-2.74387,-3.81614)--(-2.74367,-3.81605)--(-2.74347,-3.81597)--(-2.74327,-3.81588)--(-2.74307,-3.81579)--(-2.74288,-3.81571)--(-2.74268,-3.81562)--(-2.74248,-3.81553)--(-2.74228,-3.81545)--(-2.74209,-3.81536)--(-2.74189,-3.81527)--(-2.74169,-3.81519)--
> (-2.7415,-3.8151)--(-2.7413,-3.81502)--(-2.7411,-3.81493)--(-2.74091,-3.81484)--(-2.74071,-3.81476)--(-2.74052,-3.81467)--(-2.74032,-3.81459)--(-2.74013,-3.8145)--(-2.73993,-3.81441)--(-2.73974,-3.81433)--(-2.73954,-3.81424)--(-2.73935,-3.81416)--(-2.73915,-3.81407)--(-2.73896,-3.81398)--(-2.73877,-3.8139)--(-2.73857,-3.81381)--(-2.73838,-3.81373)--(-2.73819,-3.81364)--(-2.738,-3.81355)--(-2.7378,-3.81347)--(-2.73761,-3.81338)--(-2.73742,-3.8133)--(-2.73723,-3.81321)--(-2.73704,-3.81313)--
> (-2.73684,-3.81304)--(-2.73665,-3.81295)--(-2.73646,-3.81287)--(-2.73627,-3.81278)--(-2.73608,-3.8127)--(-2.73589,-3.81261)--(-2.7357,-3.81253)--(-2.73551,-3.81244)--(-2.73532,-3.81235)--(-2.73513,-3.81227)--(-2.73494,-3.81218)--(-2.73475,-3.8121)--(-2.73456,-3.81201)--(-2.73437,-3.81193)--(-2.73419,-3.81184)--(-2.734,-3.81176)--(-2.73381,-3.81167)--(-2.73362,-3.81158)--(-2.73343,-3.8115)--(-2.73325,-3.81141)--(-2.73306,-3.81133)--(-2.73287,-3.81124)--(-2.73269,-3.81116)--(-2.7325,-3.81107)--
> (-2.73231,-3.81099)--(-2.73213,-3.8109)--(-2.73194,-3.81082)--(-2.73175,-3.81073)--(-2.73157,-3.81065)--(-2.73138,-3.81056)--(-2.7312,-3.81048)--(-2.73101,-3.81039)--(-2.73083,-3.81031)--(-2.73064,-3.81022)--(-2.73046,-3.81014)--(-2.73027,-3.81005)--(-2.73009,-3.80997)--(-2.72991,-3.80988)--(-2.72972,-3.8098)--(-2.72954,-3.80971)--(-2.72936,-3.80963)--(-2.72917,-3.80954)--(-2.72899,-3.80946)--(-2.72881,-3.80937)--(-2.72863,-3.80929)--(-2.72844,-3.8092)--(-2.72826,-3.80912)--(-2.72808,-3.80903)--
> (-2.7279,-3.80895)--(-2.72772,-3.80886)--(-2.72753,-3.80878)--(-2.72735,-3.80869)--(-2.72717,-3.80861)--(-2.72699,-3.80852)--(-2.72681,-3.80844)--(-2.72663,-3.80835)--(-2.72645,-3.80827)--(-2.72627,-3.80818)--(-2.72609,-3.8081)--(-2.72591,-3.80801)--(-2.72573,-3.80793)--(-2.72555,-3.80784)--(-2.72537,-3.80776)--(-2.7252,-3.80768)--(-2.72502,-3.80759)--(-2.72484,-3.80751)--(-2.72466,-3.80742)--(-2.72448,-3.80734)--(-2.7243,-3.80725)--(-2.72413,-3.80717)--(-2.72395,-3.80708)--(-2.72377,-3.807)--
> (-2.72359,-3.80691)--(-2.72342,-3.80683)--(-2.72324,-3.80675)--(-2.72306,-3.80666)--(-2.72289,-3.80658)--(-2.72271,-3.80649)--(-2.72254,-3.80641)--(-2.72236,-3.80632)--(-2.72218,-3.80624)--(-2.72201,-3.80616)--(-2.72183,-3.80607)--(-2.72166,-3.80599)--(-2.72148,-3.8059)--(-2.72131,-3.80582)--(-2.72114,-3.80573)--(-2.72096,-3.80565)--(-2.72079,-3.80557)--(-2.72061,-3.80548)--(-2.72044,-3.8054)--(-2.72027,-3.80531)--(-2.72009,-3.80523)--(-2.71992,-3.80515)--(-2.71975,-3.80506)--(-2.71957,-3.80498)--
> (-2.7194,-3.80489)--(-2.71923,-3.80481)--(-2.71906,-3.80473)--(-2.71888,-3.80464)--(-2.71871,-3.80456)--(-2.71854,-3.80447)--(-2.71837,-3.80439)--(-2.7182,-3.80431)--(-2.71803,-3.80422)--(-2.71785,-3.80414)--(-2.71768,-3.80406)--(-2.71751,-3.80397)--(-2.71734,-3.80389)--(-2.71717,-3.8038)--(-2.717,-3.80372)--(-2.71683,-3.80364)--(-2.71666,-3.80355)--(-2.71649,-3.80347)--(-2.71632,-3.80339)--(-2.71615,-3.8033)--(-2.71599,-3.80322)--(-2.71582,-3.80314)--(-2.71565,-3.80305)--(-2.71548,-3.80297)--
> (-2.71531,-3.80288)--(-2.71514,-3.8028)--(-2.71497,-3.80272)--(-2.71481,-3.80263)--(-2.71464,-3.80255)--(-2.71447,-3.80247)--(-2.7143,-3.80238)--(-2.71414,-3.8023)--(-2.71397,-3.80222)--(-2.7138,-3.80213)--(-2.71364,-3.80205)--(-2.71347,-3.80197)--(-2.7133,-3.80188)--(-2.71314,-3.8018)--(-2.71297,-3.80172)--(-2.71281,-3.80163)--(-2.71264,-3.80155)--(-2.71248,-3.80147)--(-2.71231,-3.80138)--(-2.71214,-3.8013)--(-2.71198,-3.80122)--(-2.71182,-3.80113)--(-2.71165,-3.80105)--(-2.71149,-3.80097)--
> (-2.71132,-3.80089)--(-2.71116,-3.8008)--(-2.71099,-3.80072)--(-2.71083,-3.80064)--(-2.71067,-3.80055)--(-2.7105,-3.80047)--(-2.71034,-3.80039)--(-2.71018,-3.8003)--(-2.71001,-3.80022)--(-2.70985,-3.80014)--(-2.70969,-3.80006)--(-2.70953,-3.79997)--(-2.70936,-3.79989)--(-2.7092,-3.79981)--(-2.70904,-3.79972)--(-2.70888,-3.79964)--(-2.70872,-3.79956)--(-2.70856,-3.79948)--(-2.70839,-3.79939)--(-2.70823,-3.79931)--(-2.70807,-3.79923)--(-2.70791,-3.79915)--(-2.70775,-3.79906)--(-2.70759,-3.79898)--
> (-2.70743,-3.7989)--(-2.70727,-3.79881)--(-2.70711,-3.79873)--(-2.70695,-3.79865)--(-2.70679,-3.79857)--(-2.70663,-3.79848)--(-2.70647,-3.7984)--(-2.70631,-3.79832)--(-2.70616,-3.79824)--(-2.706,-3.79815)--(-2.70584,-3.79807)--(-2.70568,-3.79799)--(-2.70552,-3.79791)--(-2.70536,-3.79782)--(-2.70521,-3.79774)--(-2.70505,-3.79766)--(-2.70489,-3.79758)--(-2.70473,-3.7975)--(-2.70458,-3.79741)--(-2.70442,-3.79733)--(-2.70426,-3.79725)--(-2.7041,-3.79717)--(-2.70395,-3.79708)--(-2.70379,-3.797)--
> (-2.70363,-3.79692)--(-2.70348,-3.79684)--(-2.70332,-3.79675)--(-2.70317,-3.79667)--(-2.70301,-3.79659)--(-2.70286,-3.79651)--(-2.7027,-3.79643)--(-2.70254,-3.79634)--(-2.70239,-3.79626)--(-2.70223,-3.79618)--(-2.70208,-3.7961)--(-2.70193,-3.79602)--(-2.70177,-3.79593)--(-2.70162,-3.79585)--(-2.70146,-3.79577)--(-2.70131,-3.79569)--(-2.70115,-3.79561)--(-2.701,-3.79552)--(-2.70085,-3.79544)--(-2.70069,-3.79536)--(-2.70054,-3.79528)--(-2.70039,-3.7952)--(-2.70024,-3.79512)--(-2.70008,-3.79503)--
> (-2.69993,-3.79495)--(-2.69978,-3.79487)--(-2.69963,-3.79479)--(-2.69947,-3.79471)--(-2.69932,-3.79463)--(-2.69917,-3.79454)--(-2.69902,-3.79446)--(-2.69887,-3.79438)--(-2.69871,-3.7943)--(-2.69856,-3.79422)--(-2.69841,-3.79414)--(-2.69826,-3.79405)--(-2.69811,-3.79397)--(-2.69796,-3.79389)--(-2.69781,-3.79381)--(-2.69766,-3.79373)--(-2.69751,-3.79365)--(-2.69736,-3.79356)--(-2.69721,-3.79348)--(-2.69706,-3.7934)--(-2.69691,-3.79332)--(-2.69676,-3.79324)--(-2.69661,-3.79316)--(-2.69646,-3.79308)--
> (-2.69631,-3.793)--(-2.69616,-3.79291)--(-2.69602,-3.79283)--(-2.69587,-3.79275)--(-2.69572,-3.79267)--(-2.69557,-3.79259)--(-2.69542,-3.79251)--(-2.69527,-3.79243)--(-2.69513,-3.79235)--(-2.69498,-3.79226)--(-2.69483,-3.79218)--(-2.69468,-3.7921)--(-2.69454,-3.79202)--(-2.69439,-3.79194)--(-2.69424,-3.79186)--(-2.6941,-3.79178)--(-2.69395,-3.7917)--(-2.6938,-3.79162)--(-2.69366,-3.79153)--(-2.69351,-3.79145)--(-2.69337,-3.79137)--(-2.69322,-3.79129)--(-2.69307,-3.79121)--(-2.69293,-3.79113)--
> (-2.69278,-3.79105)--(-2.69264,-3.79097)--(-2.69249,-3.79089)--(-2.69235,-3.79081)--(-2.6922,-3.79073)--(-2.69206,-3.79064)--(-2.69191,-3.79056)--(-2.69177,-3.79048)--(-2.69162,-3.7904)--(-2.69148,-3.79032)--(-2.69134,-3.79024)--(-2.69119,-3.79016)--(-2.69105,-3.79008)--(-2.6909,-3.79)--(-2.69076,-3.78992)--(-2.69062,-3.78984)--(-2.69047,-3.78976)--(-2.69033,-3.78968)--(-2.69019,-3.7896)--(-2.69005,-3.78952)--(-2.6899,-3.78943)--(-2.68976,-3.78935)--(-2.68962,-3.78927)--(-2.68948,-3.78919)--
> (-2.68933,-3.78911)--(-2.68919,-3.78903)--(-2.68905,-3.78895)--(-2.68891,-3.78887)--(-2.68877,-3.78879)--(-2.68863,-3.78871)--(-2.68849,-3.78863)--(-2.68834,-3.78855)--(-2.6882,-3.78847)--(-2.68806,-3.78839)--(-2.68792,-3.78831)--(-2.68778,-3.78823)--(-2.68764,-3.78815)--(-2.6875,-3.78807)--(-2.68736,-3.78799)--(-2.68722,-3.78791)--(-2.68708,-3.78783)--(-2.68694,-3.78775)--(-2.6868,-3.78767)--(-2.68666,-3.78759)--(-2.68652,-3.78751)--(-2.68638,-3.78743)--(-2.68624,-3.78735)--(-2.68611,-3.78727)--
> (-2.68597,-3.78719)--(-2.68583,-3.78711)--(-2.68569,-3.78703)--(-2.68555,-3.78695)--(-2.68541,-3.78687)--(-2.68527,-3.78679)--(-2.68514,-3.78671)--(-2.685,-3.78663)--(-2.68486,-3.78655)--(-2.68472,-3.78647)--(-2.68459,-3.78639)--(-2.68445,-3.78631)--(-2.68431,-3.78623)--(-2.68417,-3.78615)--(-2.68404,-3.78607)--(-2.6839,-3.78599)--(-2.68376,-3.78591)--(-2.68363,-3.78583)--(-2.68349,-3.78575)--(-2.68336,-3.78567)--(-2.68322,-3.78559)--(-2.68308,-3.78551)--(-2.68295,-3.78543)--(-2.68281,-3.78535)--
> (-2.68268,-3.78527)--(-2.68254,-3.78519)--(-2.68241,-3.78511)--(-2.68227,-3.78503)--(-2.68214,-3.78495)--(-2.682,-3.78487)--(-2.68187,-3.78479)--(-2.68173,-3.78471)--(-2.6816,-3.78464)--(-2.68146,-3.78456)--(-2.68133,-3.78448)--(-2.68119,-3.7844)--(-2.68106,-3.78432)--(-2.68093,-3.78424)--(-2.68079,-3.78416)--(-2.68066,-3.78408)--(-2.68053,-3.784)--(-2.68039,-3.78392)--(-2.68026,-3.78384)--(-2.68013,-3.78376)--(-2.67999,-3.78368)--(-2.67986,-3.7836)--(-2.67973,-3.78352)--(-2.67959,-3.78345)--
> (-2.67946,-3.78337)--(-2.67933,-3.78329)--(-2.6792,-3.78321)--(-2.67907,-3.78313)--(-2.67893,-3.78305)--(-2.6788,-3.78297)--(-2.67867,-3.78289)--(-2.67854,-3.78281)--(-2.67841,-3.78273)--(-2.67828,-3.78265)--(-2.67814,-3.78258)--(-2.67801,-3.7825)--(-2.67788,-3.78242)--(-2.67775,-3.78234)--(-2.67762,-3.78226)--(-2.67749,-3.78218)--(-2.67736,-3.7821)--(-2.67723,-3.78202)--(-2.6771,-3.78194)--(-2.67697,-3.78186)--(-2.67684,-3.78179)--(-2.67671,-3.78171)--(-2.67658,-3.78163)--(-2.67645,-3.78155)--
> (-2.67632,-3.78147)--(-2.67619,-3.78139)--(-2.67606,-3.78131)--(-2.67593,-3.78123)--(-2.6758,-3.78116)--(-2.67567,-3.78108)--(-2.67555,-3.781)--(-2.67542,-3.78092)--(-2.67529,-3.78084)--(-2.67516,-3.78076)--(-2.67503,-3.78068)--(-2.6749,-3.78061)--(-2.67478,-3.78053)--(-2.67465,-3.78045)--(-2.67452,-3.78037)--(-2.67439,-3.78029)--(-2.67426,-3.78021)--(-2.67414,-3.78013)--(-2.67401,-3.78006)--(-2.67388,-3.77998)--(-2.67376,-3.7799)--(-2.67363,-3.77982)--(-2.6735,-3.77974)--(-2.67338,-3.77966)--
> (-2.67325,-3.77958)--(-2.67312,-3.77951)--(-2.673,-3.77943)--(-2.67287,-3.77935)--(-2.67274,-3.77927)--(-2.67262,-3.77919)--(-2.67249,-3.77912)--(-2.67237,-3.77904)--(-2.67224,-3.77896)--(-2.67212,-3.77888)--(-2.67199,-3.7788)--(-2.67186,-3.77872)--(-2.67174,-3.77865)--(-2.67161,-3.77857)--(-2.67149,-3.77849)--(-2.67136,-3.77841)--(-2.67124,-3.77833)--(-2.67112,-3.77826)--(-2.67099,-3.77818)--(-2.67087,-3.7781)--(-2.67074,-3.77802)--(-2.67062,-3.77794)--(-2.67049,-3.77786)--(-2.67037,-3.77779)--
> (-2.67025,-3.77771)--(-2.67012,-3.77763)--(-2.67,-3.77755)--(-2.66988,-3.77748)--(-2.66975,-3.7774)--(-2.66963,-3.77732)--(-2.66951,-3.77724)--(-2.66938,-3.77716)--(-2.66926,-3.77709)--(-2.66914,-3.77701)--(-2.66902,-3.77693)--(-2.66889,-3.77685)--(-2.66877,-3.77677)--(-2.66865,-3.7767)--(-2.66853,-3.77662)--(-2.6684,-3.77654)--(-2.66828,-3.77646)--(-2.66816,-3.77639)--(-2.66804,-3.77631)--(-2.66792,-3.77623)--(-2.6678,-3.77615)--(-2.66767,-3.77608)--(-2.66755,-3.776)--(-2.66743,-3.77592)--
> (-2.66731,-3.77584)--(-2.66719,-3.77576)--(-2.66707,-3.77569)--(-2.66695,-3.77561)--(-2.66683,-3.77553)--(-2.66671,-3.77545)--(-2.66659,-3.77538)--(-2.66647,-3.7753)--(-2.66635,-3.77522)--(-2.66623,-3.77515)--(-2.66611,-3.77507)--(-2.66599,-3.77499)--(-2.66587,-3.77491)--(-2.66575,-3.77484)--(-2.66563,-3.77476)--(-2.66551,-3.77468)--(-2.66539,-3.7746)--(-2.66527,-3.77453)--(-2.66515,-3.77445)--(-2.66503,-3.77437)--(-2.66491,-3.77429)--(-2.66479,-3.77422)--(-2.66468,-3.77414)--(-2.66456,-3.77406)--
> (-2.66444,-3.77399)--(-2.66432,-3.77391)--(-2.6642,-3.77383)--(-2.66409,-3.77375)--(-2.66397,-3.77368)--(-2.66385,-3.7736)--(-2.66373,-3.77352)--(-2.66361,-3.77345)--(-2.6635,-3.77337)--(-2.66338,-3.77329)--(-2.66326,-3.77321)--(-2.66314,-3.77314)--(-2.66303,-3.77306)--(-2.66291,-3.77298)--(-2.66279,-3.77291)--(-2.66268,-3.77283)--(-2.66256,-3.77275)--(-2.66244,-3.77268)--(-2.66233,-3.7726)--(-2.66221,-3.77252)--(-2.66209,-3.77245)--(-2.66198,-3.77237)--(-2.66186,-3.77229)--(-2.66175,-3.77221)--
> (-2.66163,-3.77214)--(-2.66152,-3.77206)--(-2.6614,-3.77198)--(-2.66128,-3.77191)--(-2.66117,-3.77183)--(-2.66105,-3.77175)--(-2.66094,-3.77168)--(-2.66082,-3.7716)--(-2.66071,-3.77152)--(-2.66059,-3.77145)--(-2.66048,-3.77137)--(-2.66036,-3.77129)--(-2.66025,-3.77122)--(-2.66014,-3.77114)--(-2.66002,-3.77106)--(-2.65991,-3.77099)--(-2.65979,-3.77091)--(-2.65968,-3.77083)--(-2.65956,-3.77076)--(-2.65945,-3.77068)--(-2.65934,-3.77061)--(-2.65922,-3.77053)--(-2.65911,-3.77045)--(-2.659,-3.77038)--
> (-2.65888,-3.7703)--(-2.65877,-3.77022)--(-2.65866,-3.77015)--(-2.65854,-3.77007)--(-2.65843,-3.76999)--(-2.65832,-3.76992)--(-2.65821,-3.76984)--(-2.65809,-3.76976)--(-2.65798,-3.76969)--(-2.65787,-3.76961)--(-2.65776,-3.76954)--(-2.65764,-3.76946)--(-2.65753,-3.76938)--(-2.65742,-3.76931)--(-2.65731,-3.76923)--(-2.6572,-3.76916)--(-2.65708,-3.76908)--(-2.65697,-3.769)--(-2.65686,-3.76893)--(-2.65675,-3.76885)--(-2.65664,-3.76877)--(-2.65653,-3.7687)--(-2.65642,-3.76862)--(-2.65631,-3.76855)--
> (-2.65619,-3.76847)--(-2.65608,-3.76839)--(-2.65597,-3.76832)--(-2.65586,-3.76824)--(-2.65575,-3.76817)--(-2.65564,-3.76809)--(-2.65553,-3.76801)--(-2.65542,-3.76794)--(-2.65531,-3.76786)--(-2.6552,-3.76779)--(-2.65509,-3.76771)--(-2.65498,-3.76763)--(-2.65487,-3.76756)--(-2.65476,-3.76748)--(-2.65465,-3.76741)--(-2.65454,-3.76733)--(-2.65443,-3.76726)--(-2.65433,-3.76718)--(-2.65422,-3.7671)--(-2.65411,-3.76703)--(-2.654,-3.76695)--(-2.65389,-3.76688)--(-2.65378,-3.7668)--(-2.65367,-3.76673)--
> (-2.65356,-3.76665)--(-2.65346,-3.76657)--(-2.65335,-3.7665)--(-2.65324,-3.76642)--(-2.65313,-3.76635)--(-2.65302,-3.76627)--(-2.65291,-3.7662)--(-2.65281,-3.76612)--(-2.6527,-3.76604)--(-2.65259,-3.76597)--(-2.65248,-3.76589)--(-2.65238,-3.76582)--(-2.65227,-3.76574)--(-2.65216,-3.76567)--(-2.65205,-3.76559)--(-2.65195,-3.76552)--(-2.65184,-3.76544)--(-2.65173,-3.76537)--(-2.65163,-3.76529)--(-2.65152,-3.76521)--(-2.65141,-3.76514)--(-2.65131,-3.76506)--(-2.6512,-3.76499)--(-2.65109,-3.76491)--
> (-2.65099,-3.76484)--(-2.65088,-3.76476)--(-2.65078,-3.76469)--(-2.65067,-3.76461)--(-2.65056,-3.76454)--(-2.65046,-3.76446)--(-2.65035,-3.76439)--(-2.65025,-3.76431)--(-2.65014,-3.76424)--(-2.65004,-3.76416)--(-2.64993,-3.76409)--(-2.64983,-3.76401)--(-2.64972,-3.76394)--(-2.64962,-3.76386)--(-2.64951,-3.76379)--(-2.64941,-3.76371)--(-2.6493,-3.76364)--(-2.6492,-3.76356)--(-2.64909,-3.76348)--(-2.64899,-3.76341)--(-2.64888,-3.76333)--(-2.64878,-3.76326)--(-2.64867,-3.76318)--(-2.64857,-3.76311)--
> (-2.64847,-3.76303)--(-2.64836,-3.76296)--(-2.64826,-3.76289)--(-2.64816,-3.76281)--(-2.64805,-3.76274)--(-2.64795,-3.76266)--(-2.64784,-3.76259)--(-2.64774,-3.76251)--(-2.64764,-3.76244)--(-2.64753,-3.76236)--(-2.64743,-3.76229)--(-2.64733,-3.76221)--(-2.64723,-3.76214)--(-2.64712,-3.76206)--(-2.64702,-3.76199)--(-2.64692,-3.76191)--(-2.64682,-3.76184)--(-2.64671,-3.76176)--(-2.64661,-3.76169)--(-2.64651,-3.76161)--(-2.64641,-3.76154)--(-2.6463,-3.76146)--(-2.6462,-3.76139)--(-2.6461,-3.76132)--
> (-2.646,-3.76124)--(-2.6459,-3.76117)--(-2.64579,-3.76109)--(-2.64569,-3.76102)--(-2.64559,-3.76094)--(-2.64549,-3.76087)--(-2.64539,-3.76079)--(-2.64529,-3.76072)--(-2.64519,-3.76064)--(-2.64509,-3.76057)--(-2.64498,-3.7605)--(-2.64488,-3.76042)--(-2.64478,-3.76035)--(-2.64468,-3.76027)--(-2.64458,-3.7602)--(-2.64448,-3.76012)--(-2.64438,-3.76005)--(-2.64428,-3.75997)--(-2.64418,-3.7599)--(-2.64408,-3.75983)--(-2.64398,-3.75975)--(-2.64388,-3.75968)--(-2.64378,-3.7596)--(-2.64368,-3.75953)--
> (-2.64358,-3.75945)--(-2.64348,-3.75938)--(-2.64338,-3.75931)--(-2.64328,-3.75923)--(-2.64318,-3.75916)--(-2.64308,-3.75908)--(-2.64298,-3.75901)--(-2.64289,-3.75893)--(-2.64279,-3.75886)--(-2.64269,-3.75879)--(-2.64259,-3.75871)--(-2.64249,-3.75864)--(-2.64239,-3.75856)--(-2.64229,-3.75849)--(-2.64219,-3.75842)--(-2.6421,-3.75834)--(-2.642,-3.75827)--(-2.6419,-3.75819)--(-2.6418,-3.75812)--(-2.6417,-3.75805)--(-2.6416,-3.75797)--(-2.64151,-3.7579)--(-2.64141,-3.75782)--(-2.64131,-3.75775)--
> (-2.64121,-3.75768)--(-2.64112,-3.7576)--(-2.64102,-3.75753)--(-2.64092,-3.75745)--(-2.64082,-3.75738)--(-2.64073,-3.75731)--(-2.64063,-3.75723)--(-2.64053,-3.75716)--(-2.64043,-3.75709)--(-2.64034,-3.75701)--(-2.64024,-3.75694)--(-2.64014,-3.75686)--(-2.64005,-3.75679)--(-2.63995,-3.75672)--(-2.63985,-3.75664)--(-2.63976,-3.75657)--(-2.63966,-3.7565)--(-2.63957,-3.75642)--(-2.63947,-3.75635)--(-2.63937,-3.75627)--(-2.63928,-3.7562)--(-2.63918,-3.75613)--(-2.63909,-3.75605)--(-2.63899,-3.75598)--
> (-2.63889,-3.75591)--(-2.6388,-3.75583)--(-2.6387,-3.75576)--(-2.63861,-3.75569)--(-2.63851,-3.75561)--(-2.63842,-3.75554)--(-2.63832,-3.75546)--(-2.63823,-3.75539)--(-2.63813,-3.75532)--(-2.63804,-3.75524)--(-2.63794,-3.75517)--(-2.63785,-3.7551)--(-2.63775,-3.75502)--(-2.63766,-3.75495)--(-2.63756,-3.75488)--(-2.63747,-3.7548)--(-2.63737,-3.75473)--(-2.63728,-3.75466)--(-2.63719,-3.75458)--(-2.63709,-3.75451)--(-2.637,-3.75444)--(-2.6369,-3.75436)--(-2.63681,-3.75429)--(-2.63672,-3.75422)--
> (-2.63662,-3.75414)--(-2.63653,-3.75407)--(-2.63643,-3.754)--(-2.63634,-3.75392)--(-2.63625,-3.75385)--(-2.63615,-3.75378)--(-2.63606,-3.7537)--(-2.63597,-3.75363)--(-2.63588,-3.75356)--(-2.63578,-3.75349)--(-2.63569,-3.75341)--(-2.6356,-3.75334)--(-2.6355,-3.75327)--(-2.63541,-3.75319)--(-2.63532,-3.75312)--(-2.63523,-3.75305)--(-2.63513,-3.75297)--(-2.63504,-3.7529)--(-2.63495,-3.75283)--(-2.63486,-3.75275)--(-2.63476,-3.75268)--(-2.63467,-3.75261)--(-2.63458,-3.75254)--(-2.63449,-3.75246)--
> (-2.6344,-3.75239)--(-2.6343,-3.75232)--(-2.63421,-3.75224)--(-2.63412,-3.75217)--(-2.63403,-3.7521)--(-2.63394,-3.75203)--(-2.63385,-3.75195)--(-2.63376,-3.75188)--(-2.63366,-3.75181)--(-2.63357,-3.75173)--(-2.63348,-3.75166)--(-2.63339,-3.75159)--(-2.6333,-3.75152)--(-2.63321,-3.75144)--(-2.63312,-3.75137)--(-2.63303,-3.7513)--(-2.63294,-3.75122)--(-2.63285,-3.75115)--(-2.63276,-3.75108)--(-2.63267,-3.75101)--(-2.63258,-3.75093)--(-2.63249,-3.75086)--(-2.63239,-3.75079)--(-2.6323,-3.75072)--
> (-2.63221,-3.75064)--(-2.63212,-3.75057)--(-2.63203,-3.7505)--(-2.63195,-3.75043)--(-2.63186,-3.75035)--(-2.63177,-3.75028)--(-2.63168,-3.75021)--(-2.63159,-3.75013)--(-2.6315,-3.75006)--(-2.63141,-3.74999)--(-2.63132,-3.74992)--(-2.63123,-3.74984)--(-2.63114,-3.74977)--(-2.63105,-3.7497)--(-2.63096,-3.74963)--(-2.63087,-3.74956)--(-2.63078,-3.74948)--(-2.6307,-3.74941)--(-2.63061,-3.74934)--(-2.63052,-3.74927)--(-2.63043,-3.74919)--(-2.63034,-3.74912)--(-2.63025,-3.74905)--(-2.63017,-3.74898)--
> (-2.63008,-3.7489)--(-2.62999,-3.74883)--(-2.6299,-3.74876)--(-2.62981,-3.74869)--(-2.62972,-3.74861)--(-2.62964,-3.74854)--(-2.62955,-3.74847)--(-2.62946,-3.7484)--(-2.62937,-3.74833)--(-2.62929,-3.74825)--(-2.6292,-3.74818)--(-2.62911,-3.74811)--(-2.62902,-3.74804)--(-2.62894,-3.74796)--(-2.62885,-3.74789)--(-2.62876,-3.74782)--(-2.62868,-3.74775)--(-2.62859,-3.74768)--(-2.6285,-3.7476)--(-2.62841,-3.74753)--(-2.62833,-3.74746)--(-2.62824,-3.74739)--(-2.62815,-3.74732)--(-2.62807,-3.74724)--
> (-2.62798,-3.74717)--(-2.62789,-3.7471)--(-2.62781,-3.74703)--(-2.62772,-3.74696)--(-2.62764,-3.74688)--(-2.62755,-3.74681)--(-2.62746,-3.74674)--(-2.62738,-3.74667)--(-2.62729,-3.7466)--(-2.62721,-3.74652)--(-2.62712,-3.74645)--(-2.62703,-3.74638)--(-2.62695,-3.74631)--(-2.62686,-3.74624)--(-2.62678,-3.74616)--(-2.62669,-3.74609)--(-2.62661,-3.74602)--(-2.62652,-3.74595)--(-2.62644,-3.74588)--(-2.62635,-3.74581)--(-2.62627,-3.74573)--(-2.62618,-3.74566)--(-2.6261,-3.74559)--(-2.62601,-3.74552)--
> (-2.62593,-3.74545)--(-2.62584,-3.74537)--(-2.62576,-3.7453)--(-2.62567,-3.74523)--(-2.62559,-3.74516)--(-2.6255,-3.74509)--(-2.62542,-3.74502)--(-2.62534,-3.74494)--(-2.62525,-3.74487)--(-2.62517,-3.7448)--(-2.62508,-3.74473)--(-2.625,-3.74466)--(-2.62492,-3.74459)--(-2.62483,-3.74452)--(-2.62475,-3.74444)--(-2.62466,-3.74437)--(-2.62458,-3.7443)--(-2.6245,-3.74423)--(-2.62441,-3.74416)--(-2.62433,-3.74409)--(-2.62425,-3.74401)--(-2.62416,-3.74394)--(-2.62408,-3.74387)--(-2.624,-3.7438)--
> (-2.62391,-3.74373)--(-2.62383,-3.74366)--(-2.62375,-3.74359)--(-2.62366,-3.74351)--(-2.62358,-3.74344)--(-2.6235,-3.74337)--(-2.62342,-3.7433)--(-2.62333,-3.74323)--(-2.62325,-3.74316)--(-2.62317,-3.74309)--(-2.62309,-3.74301)--(-2.623,-3.74294)--(-2.62292,-3.74287)--(-2.62284,-3.7428)--(-2.62276,-3.74273)--(-2.62267,-3.74266)--(-2.62259,-3.74259)--(-2.62251,-3.74252)--(-2.62243,-3.74244)--(-2.62235,-3.74237)--(-2.62226,-3.7423)--(-2.62218,-3.74223)--(-2.6221,-3.74216)--(-2.62202,-3.74209)--
> (-2.62194,-3.74202)--(-2.62186,-3.74195)--(-2.62178,-3.74188)--(-2.62169,-3.7418)--(-2.62161,-3.74173)--(-2.62153,-3.74166)--(-2.62145,-3.74159)--(-2.62137,-3.74152)--(-2.62129,-3.74145)--(-2.62121,-3.74138)--(-2.62113,-3.74131)--(-2.62105,-3.74124)--(-2.62097,-3.74116)--(-2.62088,-3.74109)--(-2.6208,-3.74102)--(-2.62072,-3.74095)--(-2.62064,-3.74088)--(-2.62056,-3.74081)--(-2.62048,-3.74074)--(-2.6204,-3.74067)--(-2.62032,-3.7406)--(-2.62024,-3.74053)--(-2.62016,-3.74045)--(-2.62008,-3.74038)--
> (-2.62,-3.74031)--(-2.61992,-3.74024)--(-2.61984,-3.74017)--(-2.61976,-3.7401)--(-2.61968,-3.74003)--(-2.6196,-3.73996)--(-2.61952,-3.73989)--(-2.61944,-3.73982)--(-2.61936,-3.73975)--(-2.61929,-3.73968)--(-2.61921,-3.7396)--(-2.61913,-3.73953)--(-2.61905,-3.73946)--(-2.61897,-3.73939)--(-2.61889,-3.73932)--(-2.61881,-3.73925)--(-2.61873,-3.73918)--(-2.61865,-3.73911)--(-2.61857,-3.73904)--(-2.61849,-3.73897)--(-2.61842,-3.7389)--(-2.61834,-3.73883)--(-2.61826,-3.73876)--(-2.61818,-3.73869)--
> (-2.6181,-3.73861)--(-2.61802,-3.73854)--(-2.61795,-3.73847)--(-2.61787,-3.7384)--(-2.61779,-3.73833)--(-2.61771,-3.73826)--(-2.61763,-3.73819)--(-2.61756,-3.73812)--(-2.61748,-3.73805)--(-2.6174,-3.73798)--(-2.61732,-3.73791)--(-2.61724,-3.73784)--(-2.61717,-3.73777)--(-2.61709,-3.7377)--(-2.61701,-3.73763)--(-2.61693,-3.73756)--(-2.61686,-3.73749)--(-2.61678,-3.73742)--(-2.6167,-3.73735)--(-2.61662,-3.73728)--(-2.61655,-3.7372)--(-2.61647,-3.73713)--(-2.61639,-3.73706)--(-2.61632,-3.73699)--
> (-2.61624,-3.73692)--(-2.61616,-3.73685)--(-2.61609,-3.73678)--(-2.61601,-3.73671)--(-2.61593,-3.73664)--(-2.61586,-3.73657)--(-2.61578,-3.7365)--(-2.6157,-3.73643)--(-2.61563,-3.73636)--(-2.61555,-3.73629)--(-2.61547,-3.73622)--(-2.6154,-3.73615)--(-2.61532,-3.73608)--(-2.61525,-3.73601)--(-2.61517,-3.73594)--(-2.61509,-3.73587)--(-2.61502,-3.7358)--(-2.61494,-3.73573)--(-2.61487,-3.73566)--(-2.61479,-3.73559)--(-2.61471,-3.73552)--(-2.61464,-3.73545)--(-2.61456,-3.73538)--(-2.61449,-3.73531)--
> (-2.61441,-3.73524)--(-2.61434,-3.73517)--(-2.61426,-3.7351)--(-2.61419,-3.73503)--(-2.61411,-3.73496)--(-2.61404,-3.73489)--(-2.61396,-3.73482)--(-2.61389,-3.73475)--(-2.61381,-3.73468)--(-2.61374,-3.73461)--(-2.61366,-3.73454)--(-2.61359,-3.73447)--(-2.61351,-3.7344)--(-2.61344,-3.73433)--(-2.61336,-3.73426)--(-2.61329,-3.73419)--(-2.61321,-3.73412)--(-2.61314,-3.73405)--(-2.61306,-3.73398)--(-2.61299,-3.73391)--(-2.61292,-3.73384)--(-2.61284,-3.73377)--(-2.61277,-3.7337)--(-2.61269,-3.73363)--
> (-2.61262,-3.73356)--(-2.61254,-3.73349)--(-2.61247,-3.73342)--(-2.6124,-3.73335)--(-2.61232,-3.73328)--(-2.61225,-3.73321)--(-2.61218,-3.73314)--(-2.6121,-3.73307)--(-2.61203,-3.733)--(-2.61196,-3.73293)--(-2.61188,-3.73286)--(-2.61181,-3.73279)--(-2.61174,-3.73272)--(-2.61166,-3.73265)--(-2.61159,-3.73258)--(-2.61152,-3.73251)--(-2.61144,-3.73244)--(-2.61137,-3.73237)--(-2.6113,-3.7323)--(-2.61122,-3.73223)--(-2.61115,-3.73216)--(-2.61108,-3.73209)--(-2.61101,-3.73202)--(-2.61093,-3.73195)--
> (-2.61086,-3.73188)--(-2.61079,-3.73182)--(-2.61071,-3.73175)--(-2.61064,-3.73168)--(-2.61057,-3.73161)--(-2.6105,-3.73154)--(-2.61043,-3.73147)--(-2.61035,-3.7314)--(-2.61028,-3.73133)--(-2.61021,-3.73126)--(-2.61014,-3.73119)--(-2.61006,-3.73112)--(-2.60999,-3.73105)--(-2.60992,-3.73098)--(-2.60985,-3.73091)--(-2.60978,-3.73084)--(-2.60971,-3.73077)--(-2.60963,-3.7307)--(-2.60956,-3.73063)--(-2.60949,-3.73056)--(-2.60942,-3.73049)--(-2.60935,-3.73043)--(-2.60928,-3.73036)--(-2.6092,-3.73029)--
> (-2.60913,-3.73022)--(-2.60906,-3.73015)--(-2.60899,-3.73008)--(-2.60892,-3.73001)--(-2.60885,-3.72994)--(-2.60878,-3.72987)--(-2.60871,-3.7298)--(-2.60864,-3.72973)--(-2.60857,-3.72966)--(-2.60849,-3.72959)--(-2.60842,-3.72952)--(-2.60835,-3.72945)--(-2.60828,-3.72939)--(-2.60821,-3.72932)--(-2.60814,-3.72925)--(-2.60807,-3.72918)--(-2.608,-3.72911)--(-2.60793,-3.72904)--(-2.60786,-3.72897)--(-2.60779,-3.7289)--(-2.60772,-3.72883)--(-2.60765,-3.72876)--(-2.60758,-3.72869)--(-2.60751,-3.72862)--
> (-2.60744,-3.72855)--(-2.60737,-3.72849)--(-2.6073,-3.72842)--(-2.60723,-3.72835)--(-2.60716,-3.72828)--(-2.60709,-3.72821)--(-2.60702,-3.72814)--(-2.60695,-3.72807)--(-2.60688,-3.728)--(-2.60681,-3.72793)--(-2.60674,-3.72786)--(-2.60667,-3.72779)--(-2.6066,-3.72773)--(-2.60654,-3.72766)--(-2.60647,-3.72759)--(-2.6064,-3.72752)--(-2.60633,-3.72745)--(-2.60626,-3.72738)--(-2.60619,-3.72731)--(-2.60612,-3.72724)--(-2.60605,-3.72717)--(-2.60598,-3.7271)--(-2.60591,-3.72704)--(-2.60585,-3.72697)--
> (-2.60578,-3.7269)--(-2.60571,-3.72683)--(-2.60564,-3.72676)--(-2.60557,-3.72669)--(-2.6055,-3.72662)--(-2.60543,-3.72655)--(-2.60537,-3.72648)--(-2.6053,-3.72642)--(-2.60523,-3.72635)--(-2.60516,-3.72628)--(-2.60509,-3.72621)--(-2.60503,-3.72614)--(-2.60496,-3.72607)--(-2.60489,-3.726)--(-2.60482,-3.72593)--(-2.60475,-3.72586)--(-2.60469,-3.7258)--(-2.60462,-3.72573)--(-2.60455,-3.72566)--(-2.60448,-3.72559)--(-2.60442,-3.72552)--(-2.60435,-3.72545)--(-2.60428,-3.72538)--(-2.60421,-3.72531)--
> (-2.60415,-3.72525)--(-2.60408,-3.72518)--(-2.60401,-3.72511)--(-2.60394,-3.72504)--(-2.60388,-3.72497)--(-2.60381,-3.7249)--(-2.60374,-3.72483)--(-2.60368,-3.72477)--(-2.60361,-3.7247)--(-2.60354,-3.72463)--(-2.60347,-3.72456)--(-2.60341,-3.72449)--(-2.60334,-3.72442)--(-2.60327,-3.72435)--(-2.60321,-3.72429)--(-2.60314,-3.72422)--(-2.60307,-3.72415)--(-2.60301,-3.72408)--(-2.60294,-3.72401)--(-2.60287,-3.72394)--(-2.60281,-3.72387)--(-2.60274,-3.72381)--(-2.60268,-3.72374)--(-2.60261,-3.72367)--
> (-2.60254,-3.7236)--(-2.60248,-3.72353)--(-2.60241,-3.72346)--(-2.60235,-3.72339)--(-2.60228,-3.72333)--(-2.60221,-3.72326)--(-2.60215,-3.72319)--(-2.60208,-3.72312)--(-2.60202,-3.72305)--(-2.60195,-3.72298)--(-2.60188,-3.72292)--(-2.60182,-3.72285)--(-2.60175,-3.72278)--(-2.60169,-3.72271)--(-2.60162,-3.72264)--(-2.60156,-3.72257)--(-2.60149,-3.7225)--(-2.60143,-3.72244)--(-2.60136,-3.72237)--(-2.6013,-3.7223)--(-2.60123,-3.72223)--(-2.60117,-3.72216)--(-2.6011,-3.72209)--(-2.60104,-3.72203)--
> (-2.60097,-3.72196)--(-2.60091,-3.72189)--(-2.60084,-3.72182)--(-2.60078,-3.72175)--(-2.60071,-3.72169)--(-2.60065,-3.72162)--(-2.60058,-3.72155)--(-2.60052,-3.72148)--(-2.60045,-3.72141)--(-2.60039,-3.72134)--(-2.60032,-3.72128)--(-2.60026,-3.72121)--(-2.6002,-3.72114)--(-2.60013,-3.72107)--(-2.60007,-3.721)--(-2.6,-3.72093)--(-2.59994,-3.72087)--(-2.59987,-3.7208)--(-2.59981,-3.72073)--(-2.59975,-3.72066)--(-2.59968,-3.72059)--(-2.59962,-3.72053)--(-2.59956,-3.72046)--(-2.59949,-3.72039)--
> (-2.59943,-3.72032)--(-2.59936,-3.72025)--(-2.5993,-3.72019)--(-2.59924,-3.72012)--(-2.59917,-3.72005)--(-2.59911,-3.71998)--(-2.59905,-3.71991)--(-2.59898,-3.71985)--(-2.59892,-3.71978)--(-2.59886,-3.71971)--(-2.59879,-3.71964)--(-2.59873,-3.71957)--(-2.59867,-3.7195)--(-2.5986,-3.71944)--(-2.59854,-3.71937)--(-2.59848,-3.7193)--(-2.59841,-3.71923)--(-2.59835,-3.71917)--(-2.59829,-3.7191)--(-2.59823,-3.71903)--(-2.59816,-3.71896)--(-2.5981,-3.71889)--(-2.59804,-3.71883)--(-2.59797,-3.71876)--
> (-2.59791,-3.71869)--(-2.59785,-3.71862)--(-2.59779,-3.71855)--(-2.59772,-3.71849)--(-2.59766,-3.71842)--(-2.5976,-3.71835)--(-2.59754,-3.71828)--(-2.59748,-3.71821)--(-2.59741,-3.71815)--(-2.59735,-3.71808)--(-2.59729,-3.71801)--(-2.59723,-3.71794)--(-2.59716,-3.71788)--(-2.5971,-3.71781)--(-2.59704,-3.71774)--(-2.59698,-3.71767)--(-2.59692,-3.7176)--(-2.59686,-3.71754)--(-2.59679,-3.71747)--(-2.59673,-3.7174)--(-2.59667,-3.71733)--(-2.59661,-3.71727)--(-2.59655,-3.7172)--(-2.59649,-3.71713)--
> (-2.59642,-3.71706)--(-2.59636,-3.71699)--(-2.5963,-3.71693)--(-2.59624,-3.71686)--(-2.59618,-3.71679)--(-2.59612,-3.71672)--(-2.59606,-3.71666)--(-2.59599,-3.71659)--(-2.59593,-3.71652)--(-2.59587,-3.71645)--(-2.59581,-3.71639)--(-2.59575,-3.71632)--(-2.59569,-3.71625)--(-2.59563,-3.71618)--(-2.59557,-3.71611)--(-2.59551,-3.71605)--(-2.59545,-3.71598)--(-2.59539,-3.71591)--(-2.59533,-3.71584)--(-2.59526,-3.71578)--(-2.5952,-3.71571)--(-2.59514,-3.71564)--(-2.59508,-3.71557)--(-2.59502,-3.71551)--
> (-2.59496,-3.71544)--(-2.5949,-3.71537)--(-2.59484,-3.7153)--(-2.59478,-3.71524)--(-2.59472,-3.71517)--(-2.59466,-3.7151)--(-2.5946,-3.71503)--(-2.59454,-3.71497)--(-2.59448,-3.7149)--(-2.59442,-3.71483)--(-2.59436,-3.71476)--(-2.5943,-3.7147)--(-2.59424,-3.71463)--(-2.59418,-3.71456)--(-2.59412,-3.71449)--(-2.59406,-3.71443)--(-2.594,-3.71436)--(-2.59394,-3.71429)--(-2.59388,-3.71422)--(-2.59382,-3.71416)--(-2.59376,-3.71409)--(-2.59371,-3.71402)--(-2.59365,-3.71395)--(-2.59359,-3.71389)--
> (-2.59353,-3.71382)--(-2.59347,-3.71375)--(-2.59341,-3.71369)--(-2.59335,-3.71362)--(-2.59329,-3.71355)--(-2.59323,-3.71348)--(-2.59317,-3.71342)--(-2.59311,-3.71335)--(-2.59305,-3.71328)--(-2.593,-3.71321)--(-2.59294,-3.71315)--(-2.59288,-3.71308)--(-2.59282,-3.71301)--(-2.59276,-3.71294)--(-2.5927,-3.71288)--(-2.59264,-3.71281)--(-2.59259,-3.71274)--(-2.59253,-3.71268)--(-2.59247,-3.71261)--(-2.59241,-3.71254)--(-2.59235,-3.71247)--(-2.59229,-3.71241)--(-2.59223,-3.71234)--(-2.59218,-3.71227)--
> (-2.59212,-3.71221)--(-2.59206,-3.71214)--(-2.592,-3.71207)--(-2.59194,-3.712)--(-2.59189,-3.71194)--(-2.59183,-3.71187)--(-2.59177,-3.7118)--(-2.59171,-3.71173)--(-2.59165,-3.71167)--(-2.5916,-3.7116)--(-2.59154,-3.71153)--(-2.59148,-3.71147)--(-2.59142,-3.7114)--(-2.59137,-3.71133)--(-2.59131,-3.71126)--(-2.59125,-3.7112)--(-2.59119,-3.71113)--(-2.59114,-3.71106)--(-2.59108,-3.711)--(-2.59102,-3.71093)--(-2.59096,-3.71086)--(-2.59091,-3.7108)--(-2.59085,-3.71073)--(-2.59079,-3.71066)--
> (-2.59073,-3.71059)--(-2.59068,-3.71053)--(-2.59062,-3.71046)--(-2.59056,-3.71039)--(-2.59051,-3.71033)--(-2.59045,-3.71026)--(-2.59039,-3.71019)--(-2.59034,-3.71012)--(-2.59028,-3.71006)--(-2.59022,-3.70999)--(-2.59016,-3.70992)--(-2.59011,-3.70986)--(-2.59005,-3.70979)--(-2.58999,-3.70972)--(-2.58994,-3.70966)--(-2.58988,-3.70959)--(-2.58983,-3.70952)--(-2.58977,-3.70946)--(-2.58971,-3.70939)--(-2.58966,-3.70932)--(-2.5896,-3.70925)--(-2.58954,-3.70919)--(-2.58949,-3.70912)--
> (-2.58943,-3.70905)--(-2.58937,-3.70899)--(-2.58932,-3.70892)--(-2.58926,-3.70885)--(-2.58921,-3.70879)--(-2.58915,-3.70872)--(-2.58909,-3.70865)--(-2.58904,-3.70859)--(-2.58898,-3.70852)--(-2.58893,-3.70845)--(-2.58887,-3.70839)--(-2.58882,-3.70832)--(-2.58876,-3.70825)--(-2.5887,-3.70818)--(-2.58865,-3.70812)--(-2.58859,-3.70805)--(-2.58854,-3.70798)--(-2.58848,-3.70792)--(-2.58843,-3.70785)--(-2.58837,-3.70778)--(-2.58832,-3.70772)--(-2.58826,-3.70765)--(-2.5882,-3.70758)--(-2.58815,-3.70752)--
> (-2.58809,-3.70745)--(-2.58804,-3.70738)--(-2.58798,-3.70732)--(-2.58793,-3.70725)--(-2.58787,-3.70718)--(-2.58782,-3.70712)--(-2.58776,-3.70705)--(-2.58771,-3.70698)--(-2.58765,-3.70692)--(-2.5876,-3.70685)--(-2.58754,-3.70678)--(-2.58749,-3.70672)--(-2.58744,-3.70665)--(-2.58738,-3.70658)--(-2.58733,-3.70652)--(-2.58727,-3.70645)--(-2.58722,-3.70638)--(-2.58716,-3.70632)--(-2.58711,-3.70625)--(-2.58705,-3.70618)--(-2.587,-3.70612)--(-2.58694,-3.70605)--(-2.58689,-3.70598)--(-2.58684,-3.70592)--
> (-2.58678,-3.70585)--(-2.58673,-3.70578)--(-2.58667,-3.70572)--(-2.58662,-3.70565)--(-2.58657,-3.70558)--(-2.58651,-3.70552)--(-2.58646,-3.70545)--(-2.5864,-3.70538)--(-2.58635,-3.70532)--(-2.5863,-3.70525)--(-2.58624,-3.70518)--(-2.58619,-3.70512)--(-2.58613,-3.70505)--(-2.58608,-3.70498)--(-2.58603,-3.70492)--(-2.58597,-3.70485)--(-2.58592,-3.70478)--(-2.58587,-3.70472)--(-2.58581,-3.70465)--(-2.58576,-3.70459)--(-2.58571,-3.70452)--(-2.58565,-3.70445)--(-2.5856,-3.70439)--(-2.58555,-3.70432)--
> (-2.58549,-3.70425)--(-2.58544,-3.70419)--(-2.58539,-3.70412)--(-2.58533,-3.70405)--(-2.58528,-3.70399)--(-2.58523,-3.70392)--(-2.58517,-3.70385)--(-2.58512,-3.70379)--(-2.58507,-3.70372)--(-2.58502,-3.70365)--(-2.58496,-3.70359)--(-2.58491,-3.70352)--(-2.58486,-3.70346)--(-2.5848,-3.70339)--(-2.58475,-3.70332)--(-2.5847,-3.70326)--(-2.58465,-3.70319)--(-2.58459,-3.70312)--(-2.58454,-3.70306)--(-2.58449,-3.70299)--(-2.58444,-3.70292)--(-2.58438,-3.70286)--(-2.58433,-3.70279)--(-2.58428,-3.70273)--
> (-2.58423,-3.70266)--(-2.58417,-3.70259)--(-2.58412,-3.70253)--(-2.58407,-3.70246)--(-2.58402,-3.70239)--(-2.58397,-3.70233)--(-2.58391,-3.70226)--(-2.58386,-3.70219)--(-2.58381,-3.70213)--(-2.58376,-3.70206)--(-2.5837,-3.702)--(-2.58365,-3.70193)--(-2.5836,-3.70186)--(-2.58355,-3.7018)--(-2.5835,-3.70173)--(-2.58345,-3.70166)--(-2.58339,-3.7016)--(-2.58334,-3.70153)--(-2.58329,-3.70147)--(-2.58324,-3.7014)--(-2.58319,-3.70133)--(-2.58314,-3.70127)--(-2.58308,-3.7012)--(-2.58303,-3.70113)--
> (-2.58298,-3.70107)--(-2.58293,-3.701)--(-2.58288,-3.70094)--(-2.58283,-3.70087)--(-2.58278,-3.7008)--(-2.58273,-3.70074)--(-2.58267,-3.70067)--(-2.58262,-3.7006)--(-2.58257,-3.70054)--(-2.58252,-3.70047)--(-2.58247,-3.70041)--(-2.58242,-3.70034)--(-2.58237,-3.70027)--(-2.58232,-3.70021)--(-2.58227,-3.70014)--(-2.58222,-3.70008)--(-2.58216,-3.70001)--(-2.58211,-3.69994)--(-2.58206,-3.69988)--(-2.58201,-3.69981)--(-2.58196,-3.69975)--(-2.58191,-3.69968)--(-2.58186,-3.69961)--(-2.58181,-3.69955)--
> (-2.58176,-3.69948)--(-2.58171,-3.69941)--(-2.58166,-3.69935)--(-2.58161,-3.69928)--(-2.58156,-3.69922)--(-2.58151,-3.69915)--(-2.58146,-3.69908)--(-2.58141,-3.69902)--(-2.58136,-3.69895)--(-2.58131,-3.69889)--(-2.58126,-3.69882)--(-2.58121,-3.69875)--(-2.58116,-3.69869)--(-2.58111,-3.69862)--(-2.58106,-3.69856)--(-2.58101,-3.69849)--(-2.58096,-3.69842)--(-2.58091,-3.69836)--(-2.58086,-3.69829)--(-2.58081,-3.69823)--(-2.58076,-3.69816)--(-2.58071,-3.69809)--(-2.58066,-3.69803)--
> (-2.58061,-3.69796)--(-2.58056,-3.6979)--(-2.58051,-3.69783)--(-2.58046,-3.69776)--(-2.58041,-3.6977)--(-2.58036,-3.69763)--(-2.58031,-3.69757)--(-2.58026,-3.6975)--(-2.58021,-3.69743)--(-2.58016,-3.69737)--(-2.58011,-3.6973)--(-2.58006,-3.69724)--(-2.58002,-3.69717)--(-2.57997,-3.6971)--(-2.57992,-3.69704)--(-2.57987,-3.69697)--(-2.57982,-3.69691)--(-2.57977,-3.69684)--(-2.57972,-3.69677)--(-2.57967,-3.69671)--(-2.57962,-3.69664)--(-2.57957,-3.69658)--(-2.57953,-3.69651)--(-2.57948,-3.69644)--
> (-2.57943,-3.69638)--(-2.57938,-3.69631)--(-2.57933,-3.69625)--(-2.57928,-3.69618)--(-2.57923,-3.69612)--(-2.57918,-3.69605)--(-2.57914,-3.69598)--(-2.57909,-3.69592)--(-2.57904,-3.69585)--(-2.57899,-3.69579)--(-2.57894,-3.69572)--(-2.57889,-3.69565)--(-2.57884,-3.69559)--(-2.5788,-3.69552)--(-2.57875,-3.69546)--(-2.5787,-3.69539)--(-2.57865,-3.69533)--(-2.5786,-3.69526)--(-2.57856,-3.69519)--(-2.57851,-3.69513)--(-2.57846,-3.69506)--(-2.57841,-3.695)--(-2.57836,-3.69493)--(-2.57832,-3.69486)--
> (-2.57827,-3.6948)--(-2.57822,-3.69473)--(-2.57817,-3.69467)--(-2.57812,-3.6946)--(-2.57808,-3.69454)--(-2.57803,-3.69447)--(-2.57798,-3.6944)--(-2.57793,-3.69434)--(-2.57789,-3.69427)--(-2.57784,-3.69421)--(-2.57779,-3.69414)--(-2.57774,-3.69408)--(-2.5777,-3.69401)--(-2.57765,-3.69394)--(-2.5776,-3.69388)--(-2.57755,-3.69381)--(-2.57751,-3.69375)--(-2.57746,-3.69368)--(-2.57741,-3.69362)--(-2.57736,-3.69355)--(-2.57732,-3.69348)--(-2.57727,-3.69342)--(-2.57722,-3.69335)--(-2.57717,-3.69329)--
> (-2.57713,-3.69322)--(-2.57708,-3.69316)--(-2.57703,-3.69309)--(-2.57699,-3.69302)--(-2.57694,-3.69296)--(-2.57689,-3.69289)--(-2.57685,-3.69283)--(-2.5768,-3.69276)--(-2.57675,-3.6927)--(-2.57671,-3.69263)--(-2.57666,-3.69256)--(-2.57661,-3.6925)--(-2.57657,-3.69243)--(-2.57652,-3.69237)--(-2.57647,-3.6923)--(-2.57643,-3.69224)--(-2.57638,-3.69217)--(-2.57633,-3.6921)--(-2.57629,-3.69204)--(-2.57624,-3.69197)--(-2.57619,-3.69191)--(-2.57615,-3.69184)--(-2.5761,-3.69178)--(-2.57605,-3.69171)--
> (-2.57601,-3.69165)--(-2.57596,-3.69158)--(-2.57592,-3.69151)--(-2.57587,-3.69145)--(-2.57582,-3.69138)--(-2.57578,-3.69132)--(-2.57573,-3.69125)--(-2.57569,-3.69119)--(-2.57564,-3.69112)--(-2.57559,-3.69105)--(-2.57555,-3.69099)--(-2.5755,-3.69092)--(-2.57546,-3.69086)--(-2.57541,-3.69079)--(-2.57536,-3.69073)--(-2.57532,-3.69066)--(-2.57527,-3.6906)--(-2.57523,-3.69053)--(-2.57518,-3.69046)--(-2.57514,-3.6904)--(-2.57509,-3.69033)--(-2.57504,-3.69027)--(-2.575,-3.6902)--(-2.57495,-3.69014)--
> (-2.57491,-3.69007)--(-2.57486,-3.69001)--(-2.57482,-3.68994)--(-2.57477,-3.68987)--(-2.57473,-3.68981)--(-2.57468,-3.68974)--(-2.57464,-3.68968)--(-2.57459,-3.68961)--(-2.57455,-3.68955)--(-2.5745,-3.68948)--(-2.57446,-3.68942)--(-2.57441,-3.68935)--(-2.57437,-3.68929)--(-2.57432,-3.68922)--(-2.57428,-3.68915)--(-2.57423,-3.68909)--(-2.57419,-3.68902)--(-2.57414,-3.68896)--(-2.5741,-3.68889)--(-2.57405,-3.68883)--(-2.57401,-3.68876)--(-2.57396,-3.6887)--(-2.57392,-3.68863)--(-2.57387,-3.68857)--
> (-2.57383,-3.6885)--(-2.57378,-3.68843)--(-2.57374,-3.68837)--(-2.57369,-3.6883)--(-2.57365,-3.68824)--(-2.5736,-3.68817)--(-2.57356,-3.68811)--(-2.57352,-3.68804)--(-2.57347,-3.68798)--(-2.57343,-3.68791)--(-2.57338,-3.68785)--(-2.57334,-3.68778)--(-2.57329,-3.68771)--(-2.57325,-3.68765)--(-2.57321,-3.68758)--(-2.57316,-3.68752)--(-2.57312,-3.68745)--(-2.57307,-3.68739)--(-2.57303,-3.68732)--(-2.57298,-3.68726)--(-2.57294,-3.68719)--(-2.5729,-3.68713)--(-2.57285,-3.68706)--(-2.57281,-3.687)--
> (-2.57277,-3.68693)--(-2.57272,-3.68686)--(-2.57268,-3.6868)--(-2.57263,-3.68673)--(-2.57259,-3.68667)--(-2.57255,-3.6866)--(-2.5725,-3.68654)--(-2.57246,-3.68647)--(-2.57242,-3.68641)--(-2.57237,-3.68634)--(-2.57233,-3.68628)--(-2.57228,-3.68621)--(-2.57224,-3.68615)--(-2.5722,-3.68608)--(-2.57215,-3.68601)--(-2.57211,-3.68595)--(-2.57207,-3.68588)--(-2.57202,-3.68582)--(-2.57198,-3.68575)--(-2.57194,-3.68569)--(-2.57189,-3.68562)--(-2.57185,-3.68556)--(-2.57181,-3.68549)--(-2.57176,-3.68543)--
> (-2.57172,-3.68536)--(-2.57168,-3.6853)--(-2.57164,-3.68523)--(-2.57159,-3.68517)--(-2.57155,-3.6851)--(-2.57151,-3.68503)--(-2.57146,-3.68497)--(-2.57142,-3.6849)--(-2.57138,-3.68484)--(-2.57134,-3.68477)--(-2.57129,-3.68471)--(-2.57125,-3.68464)--(-2.57121,-3.68458)--(-2.57116,-3.68451)--(-2.57112,-3.68445)--(-2.57108,-3.68438)--(-2.57104,-3.68432)--(-2.57099,-3.68425)--(-2.57095,-3.68419)--(-2.57091,-3.68412)--(-2.57087,-3.68406)--(-2.57082,-3.68399)--(-2.57078,-3.68392)--(-2.57074,-3.68386)--
> (-2.5707,-3.68379)--(-2.57065,-3.68373)--(-2.57061,-3.68366)--(-2.57057,-3.6836)--(-2.57053,-3.68353)--(-2.57049,-3.68347)--(-2.57044,-3.6834)--(-2.5704,-3.68334)--(-2.57036,-3.68327)--(-2.57032,-3.68321)--(-2.57028,-3.68314)--(-2.57023,-3.68308)--(-2.57019,-3.68301)--(-2.57015,-3.68295)--(-2.57011,-3.68288)--(-2.57007,-3.68282)--(-2.57002,-3.68275)--(-2.56998,-3.68269)--(-2.56994,-3.68262)--(-2.5699,-3.68255)--(-2.56986,-3.68249)--(-2.56981,-3.68242)--(-2.56977,-3.68236)--(-2.56973,-3.68229)--
> (-2.56969,-3.68223)--(-2.56965,-3.68216)--(-2.56961,-3.6821)--(-2.56957,-3.68203)--(-2.56952,-3.68197)--(-2.56948,-3.6819)--(-2.56944,-3.68184)--(-2.5694,-3.68177)--(-2.56936,-3.68171)--(-2.56932,-3.68164)--(-2.56928,-3.68158)--(-2.56923,-3.68151)--(-2.56919,-3.68145)--(-2.56915,-3.68138)--(-2.56911,-3.68132)--(-2.56907,-3.68125)--(-2.56903,-3.68119)--(-2.56899,-3.68112)--(-2.56895,-3.68106)--(-2.56891,-3.68099)--(-2.56886,-3.68092)--(-2.56882,-3.68086)--(-2.56878,-3.68079)--(-2.56874,-3.68073)--
> (-2.5687,-3.68066)--(-2.56866,-3.6806)--(-2.56862,-3.68053)--(-2.56858,-3.68047)--(-2.56854,-3.6804)--(-2.5685,-3.68034)--(-2.56846,-3.68027)--(-2.56842,-3.68021)--(-2.56837,-3.68014)--(-2.56833,-3.68008)--(-2.56829,-3.68001)--(-2.56825,-3.67995)--(-2.56821,-3.67988)--(-2.56817,-3.67982)--(-2.56813,-3.67975)--(-2.56809,-3.67969)--(-2.56805,-3.67962)--(-2.56801,-3.67956)--(-2.56797,-3.67949)--(-2.56793,-3.67943)--(-2.56789,-3.67936)--(-2.56785,-3.6793)--(-2.56781,-3.67923)--(-2.56777,-3.67917)--
> (-2.56773,-3.6791)--(-2.56769,-3.67904)--(-2.56765,-3.67897)--(-2.56761,-3.67891)--(-2.56757,-3.67884)--(-2.56753,-3.67877)--(-2.56749,-3.67871)--(-2.56745,-3.67864)--(-2.56741,-3.67858)--(-2.56737,-3.67851)--(-2.56733,-3.67845)--(-2.56729,-3.67838)--(-2.56725,-3.67832)--(-2.56721,-3.67825)--(-2.56717,-3.67819)--(-2.56713,-3.67812)--(-2.56709,-3.67806)--(-2.56705,-3.67799)--(-2.56701,-3.67793)--(-2.56697,-3.67786)--(-2.56693,-3.6778)--(-2.56689,-3.67773)--(-2.56685,-3.67767)--(-2.56681,-3.6776)--
> (-2.56677,-3.67754)--(-2.56673,-3.67747)--(-2.5667,-3.67741)--(-2.56666,-3.67734)--(-2.56662,-3.67728)--(-2.56658,-3.67721)--(-2.56654,-3.67715)--(-2.5665,-3.67708)--(-2.56646,-3.67702)--(-2.56642,-3.67695)--(-2.56638,-3.67689)--(-2.56634,-3.67682)--(-2.5663,-3.67676)--(-2.56626,-3.67669)--(-2.56622,-3.67663)--(-2.56619,-3.67656)--(-2.56615,-3.6765)--(-2.56611,-3.67643)--(-2.56607,-3.67637)--(-2.56603,-3.6763)--(-2.56599,-3.67624)--(-2.56595,-3.67617)--(-2.56591,-3.67611)--(-2.56587,-3.67604)--
> (-2.56584,-3.67598)--(-2.5658,-3.67591)--(-2.56576,-3.67585)--(-2.56572,-3.67578)--(-2.56568,-3.67572)--(-2.56564,-3.67565)--(-2.5656,-3.67559)--(-2.56557,-3.67552)--(-2.56553,-3.67546)--(-2.56549,-3.67539)--(-2.56545,-3.67533)--(-2.56541,-3.67526)--(-2.56537,-3.67519)--(-2.56533,-3.67513)--(-2.5653,-3.67506)--(-2.56526,-3.675)--(-2.56522,-3.67493)--(-2.56518,-3.67487)--(-2.56514,-3.6748)--(-2.56511,-3.67474)--(-2.56507,-3.67467)--(-2.56503,-3.67461)--(-2.56499,-3.67454)--(-2.56495,-3.67448)--
> (-2.56491,-3.67441)--(-2.56488,-3.67435)--(-2.56484,-3.67428)--(-2.5648,-3.67422)--(-2.56476,-3.67415)--(-2.56472,-3.67409)--(-2.56469,-3.67402)--(-2.56465,-3.67396)--(-2.56461,-3.67389)--(-2.56457,-3.67383)--(-2.56454,-3.67376)--(-2.5645,-3.6737)--(-2.56446,-3.67363)--(-2.56442,-3.67357)--(-2.56439,-3.6735)--(-2.56435,-3.67344)--(-2.56431,-3.67337)--(-2.56427,-3.67331)--(-2.56423,-3.67324)--(-2.5642,-3.67318)--(-2.56416,-3.67311)--(-2.56412,-3.67305)--(-2.56408,-3.67298)--(-2.56405,-3.67292)--
> (-2.56401,-3.67285)--(-2.56397,-3.67279)--(-2.56394,-3.67272)--(-2.5639,-3.67266)--(-2.56386,-3.67259)--(-2.56382,-3.67253)--(-2.56379,-3.67246)--(-2.56375,-3.6724)--(-2.56371,-3.67233)--(-2.56367,-3.67227)--(-2.56364,-3.6722)--(-2.5636,-3.67214)--(-2.56356,-3.67207)--(-2.56353,-3.67201)--(-2.56349,-3.67194)--(-2.56345,-3.67188)--(-2.56342,-3.67181)--(-2.56338,-3.67175)--(-2.56334,-3.67168)--(-2.56331,-3.67162)--(-2.56327,-3.67155)--(-2.56323,-3.67149)--(-2.56319,-3.67142)--(-2.56316,-3.67136)--
> (-2.56312,-3.67129)--(-2.56308,-3.67123)--(-2.56305,-3.67116)--(-2.56301,-3.6711)--(-2.56297,-3.67103)--(-2.56294,-3.67097)--(-2.5629,-3.6709)--(-2.56287,-3.67084)--(-2.56283,-3.67077)--(-2.56279,-3.67071)--(-2.56276,-3.67064)--(-2.56272,-3.67058)--(-2.56268,-3.67051)--(-2.56265,-3.67045)--(-2.56261,-3.67038)--(-2.56257,-3.67032)--(-2.56254,-3.67025)--(-2.5625,-3.67019)--(-2.56247,-3.67012)--(-2.56243,-3.67006)--(-2.56239,-3.66999)--(-2.56236,-3.66993)--(-2.56232,-3.66986)--(-2.56228,-3.6698)--
> (-2.56225,-3.66973)--(-2.56221,-3.66967)--(-2.56218,-3.6696)--(-2.56214,-3.66954)--(-2.5621,-3.66947)--(-2.56207,-3.66941)--(-2.56203,-3.66934)--(-2.562,-3.66928)--(-2.56196,-3.66921)--(-2.56193,-3.66915)--(-2.56189,-3.66908)--(-2.56185,-3.66902)--(-2.56182,-3.66895)--(-2.56178,-3.66889)--(-2.56175,-3.66882)--(-2.56171,-3.66876)--(-2.56168,-3.66869)--(-2.56164,-3.66863)--(-2.5616,-3.66856)--(-2.56157,-3.6685)--(-2.56153,-3.66843)--(-2.5615,-3.66837)--(-2.56146,-3.6683)--(-2.56143,-3.66824)--
> (-2.56139,-3.66817)--(-2.56136,-3.66811)--(-2.56132,-3.66804)--(-2.56129,-3.66798)--(-2.56125,-3.66791)--(-2.56121,-3.66785)--(-2.56118,-3.66778)--(-2.56114,-3.66772)--(-2.56111,-3.66765)--(-2.56107,-3.66759)--(-2.56104,-3.66752)--(-2.561,-3.66746)--(-2.56097,-3.66739)--(-2.56093,-3.66733)--(-2.5609,-3.66726)--(-2.56086,-3.6672)--(-2.56083,-3.66713)--(-2.56079,-3.66707)--(-2.56076,-3.667)--(-2.56072,-3.66694)--(-2.56069,-3.66687)--(-2.56065,-3.66681)--(-2.56062,-3.66674)--(-2.56058,-3.66668)--
> (-2.56055,-3.66661)--(-2.56052,-3.66655)--(-2.56048,-3.66648)--(-2.56045,-3.66642)--(-2.56041,-3.66635)--(-2.56038,-3.66629)--(-2.56034,-3.66622)--(-2.56031,-3.66616)--(-2.56027,-3.66609)--(-2.56024,-3.66603)--(-2.5602,-3.66596)--(-2.56017,-3.6659)--(-2.56013,-3.66583)--(-2.5601,-3.66577)--(-2.56007,-3.6657)--(-2.56003,-3.66564)--(-2.56,-3.66557)--(-2.55996,-3.66551)--(-2.55993,-3.66544)--(-2.55989,-3.66537)--(-2.55986,-3.66531)--(-2.55983,-3.66524)--(-2.55979,-3.66518)--(-2.55976,-3.66511)--
> (-2.55972,-3.66505)--(-2.55969,-3.66498)--(-2.55966,-3.66492)--(-2.55962,-3.66485)--(-2.55959,-3.66479)--(-2.55955,-3.66472)--(-2.55952,-3.66466)--(-2.55949,-3.66459)--(-2.55945,-3.66453)--(-2.55942,-3.66446)--(-2.55938,-3.6644)--(-2.55935,-3.66433)--(-2.55932,-3.66427)--(-2.55928,-3.6642)--(-2.55925,-3.66414)--(-2.55922,-3.66407)--(-2.55918,-3.66401)--(-2.55915,-3.66394)--(-2.55911,-3.66388)--(-2.55908,-3.66381)--(-2.55905,-3.66375)--(-2.55901,-3.66368)--(-2.55898,-3.66362)--(-2.55895,-3.66355)--
> (-2.55891,-3.66349)--(-2.55888,-3.66342)--(-2.55885,-3.66336)--(-2.55881,-3.66329)--(-2.55878,-3.66323)--(-2.55875,-3.66316)--(-2.55871,-3.6631)--(-2.55868,-3.66303)--(-2.55865,-3.66297)--(-2.55861,-3.6629)--(-2.55858,-3.66284)--(-2.55855,-3.66277)--(-2.55851,-3.66271)--(-2.55848,-3.66264)--(-2.55845,-3.66258)--(-2.55841,-3.66251)--(-2.55838,-3.66245)--(-2.55835,-3.66238)--(-2.55831,-3.66232)--(-2.55828,-3.66225)--(-2.55825,-3.66219)--(-2.55822,-3.66212)--(-2.55818,-3.66206)--(-2.55815,-3.66199)--
> (-2.55812,-3.66193)--(-2.55808,-3.66186)--(-2.55805,-3.6618)--(-2.55802,-3.66173)--(-2.55799,-3.66167)--(-2.55795,-3.6616)--(-2.55792,-3.66154)--(-2.55789,-3.66147)--(-2.55785,-3.66141)--(-2.55782,-3.66134)--(-2.55779,-3.66128)--(-2.55776,-3.66121)--(-2.55772,-3.66114)--(-2.55769,-3.66108)--(-2.55766,-3.66101)--(-2.55763,-3.66095)--(-2.55759,-3.66088)--(-2.55756,-3.66082)--(-2.55753,-3.66075)--(-2.5575,-3.66069)--(-2.55746,-3.66062)--(-2.55743,-3.66056)--(-2.5574,-3.66049)--(-2.55737,-3.66043)--
> (-2.55733,-3.66036)--(-2.5573,-3.6603)--(-2.55727,-3.66023)--(-2.55724,-3.66017)--(-2.55721,-3.6601)--(-2.55717,-3.66004)--(-2.55714,-3.65997)--(-2.55711,-3.65991)--(-2.55708,-3.65984)--(-2.55705,-3.65978)--(-2.55701,-3.65971)--(-2.55698,-3.65965)--(-2.55695,-3.65958)--(-2.55692,-3.65952)--(-2.55689,-3.65945)--(-2.55685,-3.65939)--(-2.55682,-3.65932)--(-2.55679,-3.65926)--(-2.55676,-3.65919)--(-2.55673,-3.65913)--(-2.55669,-3.65906)--(-2.55666,-3.659)--(-2.55663,-3.65893)--(-2.5566,-3.65886)--
> (-2.55657,-3.6588)--(-2.55654,-3.65873)--(-2.5565,-3.65867)--(-2.55647,-3.6586)--(-2.55644,-3.65854)--(-2.55641,-3.65847)--(-2.55638,-3.65841)--(-2.55635,-3.65834)--(-2.55632,-3.65828)--(-2.55628,-3.65821)--(-2.55625,-3.65815)--(-2.55622,-3.65808)--(-2.55619,-3.65802)--(-2.55616,-3.65795)--(-2.55613,-3.65789)--(-2.5561,-3.65782)--(-2.55606,-3.65776)--(-2.55603,-3.65769)--(-2.556,-3.65763)--(-2.55597,-3.65756)--(-2.55594,-3.6575)--(-2.55591,-3.65743)--(-2.55588,-3.65737)--(-2.55585,-3.6573)--
> (-2.55582,-3.65723)--(-2.55578,-3.65717)--(-2.55575,-3.6571)--(-2.55572,-3.65704)--(-2.55569,-3.65697)--(-2.55566,-3.65691)--(-2.55563,-3.65684)--(-2.5556,-3.65678)--(-2.55557,-3.65671)--(-2.55554,-3.65665)--(-2.55551,-3.65658)--(-2.55548,-3.65652)--(-2.55544,-3.65645)--(-2.55541,-3.65639)--(-2.55538,-3.65632)--(-2.55535,-3.65626)--(-2.55532,-3.65619)--(-2.55529,-3.65613)--(-2.55526,-3.65606)--(-2.55523,-3.656)--(-2.5552,-3.65593)--(-2.55517,-3.65586)--(-2.55514,-3.6558)--(-2.55511,-3.65573)--
> (-2.55508,-3.65567)--(-2.55505,-3.6556)--(-2.55502,-3.65554)--(-2.55499,-3.65547)--(-2.55496,-3.65541)--(-2.55492,-3.65534)--(-2.55489,-3.65528)--(-2.55486,-3.65521)--(-2.55483,-3.65515)--(-2.5548,-3.65508)--(-2.55477,-3.65502)--(-2.55474,-3.65495)--(-2.55471,-3.65489)--(-2.55468,-3.65482)--(-2.55465,-3.65475)--(-2.55462,-3.65469)--(-2.55459,-3.65462)--(-2.55456,-3.65456)--(-2.55453,-3.65449)--(-2.5545,-3.65443)--(-2.55447,-3.65436)--(-2.55444,-3.6543)--(-2.55441,-3.65423)--(-2.55438,-3.65417)--
> (-2.55435,-3.6541)--(-2.55432,-3.65404)--(-2.55429,-3.65397)--(-2.55426,-3.65391)--(-2.55423,-3.65384)--(-2.5542,-3.65377)--(-2.55417,-3.65371)--(-2.55414,-3.65364)--(-2.55411,-3.65358)--(-2.55408,-3.65351)--(-2.55405,-3.65345)--(-2.55403,-3.65338)--(-2.554,-3.65332)--(-2.55397,-3.65325)--(-2.55394,-3.65319)--(-2.55391,-3.65312)--(-2.55388,-3.65306)--(-2.55385,-3.65299)--(-2.55382,-3.65293)--(-2.55379,-3.65286)--(-2.55376,-3.65279)--(-2.55373,-3.65273)--(-2.5537,-3.65266)--(-2.55367,-3.6526)--
> (-2.55364,-3.65253)--(-2.55361,-3.65247)--(-2.55358,-3.6524)--(-2.55355,-3.65234)--(-2.55353,-3.65227)--(-2.5535,-3.65221)--(-2.55347,-3.65214)--(-2.55344,-3.65207)--(-2.55341,-3.65201)--(-2.55338,-3.65194)--(-2.55335,-3.65188)--(-2.55332,-3.65181)--(-2.55329,-3.65175)--(-2.55326,-3.65168)--(-2.55323,-3.65162)--(-2.55321,-3.65155)--(-2.55318,-3.65149)--(-2.55315,-3.65142)--(-2.55312,-3.65136)--(-2.55309,-3.65129)--(-2.55306,-3.65122)--(-2.55303,-3.65116)--(-2.553,-3.65109)--(-2.55297,-3.65103)--
> (-2.55295,-3.65096)--(-2.55292,-3.6509)--(-2.55289,-3.65083)--(-2.55286,-3.65077)--(-2.55283,-3.6507)--(-2.5528,-3.65063)--(-2.55277,-3.65057)--(-2.55275,-3.6505)--(-2.55272,-3.65044)--(-2.55269,-3.65037)--(-2.55266,-3.65031)--(-2.55263,-3.65024)--(-2.5526,-3.65018)--(-2.55257,-3.65011)--(-2.55255,-3.65005)--(-2.55252,-3.64998)--(-2.55249,-3.64991)--(-2.55246,-3.64985)--(-2.55243,-3.64978)--(-2.5524,-3.64972)--(-2.55238,-3.64965)--(-2.55235,-3.64959)--(-2.55232,-3.64952)--(-2.55229,-3.64946)--
> (-2.55226,-3.64939)--(-2.55223,-3.64932)--(-2.55221,-3.64926)--(-2.55218,-3.64919)--(-2.55215,-3.64913)--(-2.55212,-3.64906)--(-2.55209,-3.649)--(-2.55207,-3.64893)--(-2.55204,-3.64887)--(-2.55201,-3.6488)--(-2.55198,-3.64873)--(-2.55195,-3.64867)--(-2.55193,-3.6486)--(-2.5519,-3.64854)--(-2.55187,-3.64847)--(-2.55184,-3.64841)--(-2.55181,-3.64834)--(-2.55179,-3.64828)--(-2.55176,-3.64821)--(-2.55173,-3.64814)--(-2.5517,-3.64808)--(-2.55168,-3.64801)--(-2.55165,-3.64795)--(-2.55162,-3.64788)--
> (-2.55159,-3.64782)--(-2.55157,-3.64775)--(-2.55154,-3.64768)--(-2.55151,-3.64762)--(-2.55148,-3.64755)--(-2.55146,-3.64749)--(-2.55143,-3.64742)--(-2.5514,-3.64736)--(-2.55137,-3.64729)--(-2.55135,-3.64723)--(-2.55132,-3.64716)--(-2.55129,-3.64709)--(-2.55126,-3.64703)--(-2.55124,-3.64696)--(-2.55121,-3.6469)--(-2.55118,-3.64683)--(-2.55115,-3.64677)--(-2.55113,-3.6467)--(-2.5511,-3.64663)--(-2.55107,-3.64657)--(-2.55105,-3.6465)--(-2.55102,-3.64644)--(-2.55099,-3.64637)--(-2.55096,-3.64631)--
> (-2.55094,-3.64624)--(-2.55091,-3.64617)--(-2.55088,-3.64611)--(-2.55086,-3.64604)--(-2.55083,-3.64598)--(-2.5508,-3.64591)--(-2.55078,-3.64585)--(-2.55075,-3.64578)--(-2.55072,-3.64571)--(-2.55069,-3.64565)--(-2.55067,-3.64558)--(-2.55064,-3.64552)--(-2.55061,-3.64545)--(-2.55059,-3.64538)--(-2.55056,-3.64532)--(-2.55053,-3.64525)--(-2.55051,-3.64519)--(-2.55048,-3.64512)--(-2.55045,-3.64506)--(-2.55043,-3.64499)--(-2.5504,-3.64492)--(-2.55037,-3.64486)--(-2.55035,-3.64479)--(-2.55032,-3.64473)--
> (-2.55029,-3.64466)--(-2.55027,-3.6446)--(-2.55024,-3.64453)--(-2.55021,-3.64446)--(-2.55019,-3.6444)--(-2.55016,-3.64433)--(-2.55014,-3.64427)--(-2.55011,-3.6442)--(-2.55008,-3.64413)--(-2.55006,-3.64407)--(-2.55003,-3.644)--(-2.55,-3.64394)--(-2.54998,-3.64387)--(-2.54995,-3.6438)--(-2.54993,-3.64374)--(-2.5499,-3.64367)--(-2.54987,-3.64361)--(-2.54985,-3.64354)--(-2.54982,-3.64348)--(-2.54979,-3.64341)--(-2.54977,-3.64334)--(-2.54974,-3.64328)--(-2.54972,-3.64321)--(-2.54969,-3.64315)--
> (-2.54966,-3.64308)--(-2.54964,-3.64301)--(-2.54961,-3.64295)--(-2.54959,-3.64288)--(-2.54956,-3.64282)--(-2.54954,-3.64275)--(-2.54951,-3.64268)--(-2.54948,-3.64262)--(-2.54946,-3.64255)--(-2.54943,-3.64249)--(-2.54941,-3.64242)--(-2.54938,-3.64235)--(-2.54935,-3.64229)--(-2.54933,-3.64222)--(-2.5493,-3.64216)--(-2.54928,-3.64209)--(-2.54925,-3.64202)--(-2.54923,-3.64196)--(-2.5492,-3.64189)--(-2.54918,-3.64183)--(-2.54915,-3.64176)--(-2.54912,-3.64169)--(-2.5491,-3.64163)--(-2.54907,-3.64156)--
> (-2.54905,-3.6415)--(-2.54902,-3.64143)--(-2.549,-3.64136)--(-2.54897,-3.6413)--(-2.54895,-3.64123)--(-2.54892,-3.64117)--(-2.5489,-3.6411)--(-2.54887,-3.64103)--(-2.54885,-3.64097)--(-2.54882,-3.6409)--(-2.54879,-3.64084)--(-2.54877,-3.64077)--(-2.54874,-3.6407)--(-2.54872,-3.64064)--(-2.54869,-3.64057)--(-2.54867,-3.64051)--(-2.54864,-3.64044)--(-2.54862,-3.64037)--(-2.54859,-3.64031)--(-2.54857,-3.64024)--(-2.54854,-3.64017)--(-2.54852,-3.64011)--(-2.54849,-3.64004)--(-2.54847,-3.63998)--
> (-2.54844,-3.63991)--(-2.54842,-3.63984)--(-2.54839,-3.63978)--(-2.54837,-3.63971)--(-2.54835,-3.63965)--(-2.54832,-3.63958)--(-2.5483,-3.63951)--(-2.54827,-3.63945)--(-2.54825,-3.63938)--(-2.54822,-3.63931)--(-2.5482,-3.63925)--(-2.54817,-3.63918)--(-2.54815,-3.63912)--(-2.54812,-3.63905)--(-2.5481,-3.63898)--(-2.54807,-3.63892)--(-2.54805,-3.63885)--(-2.54802,-3.63878)--(-2.548,-3.63872)--(-2.54798,-3.63865)--(-2.54795,-3.63859)--(-2.54793,-3.63852)--(-2.5479,-3.63845)--(-2.54788,-3.63839)--
> (-2.54785,-3.63832)--(-2.54783,-3.63825)--(-2.5478,-3.63819)--(-2.54778,-3.63812)--(-2.54776,-3.63806)--(-2.54773,-3.63799)--(-2.54771,-3.63792)--(-2.54768,-3.63786)--(-2.54766,-3.63779)--(-2.54764,-3.63772)--(-2.54761,-3.63766)--(-2.54759,-3.63759)--(-2.54756,-3.63752)--(-2.54754,-3.63746)--(-2.54751,-3.63739)--(-2.54749,-3.63733)--(-2.54747,-3.63726)--(-2.54744,-3.63719)--(-2.54742,-3.63713)--(-2.54739,-3.63706)--(-2.54737,-3.63699)--(-2.54735,-3.63693)--(-2.54732,-3.63686)--(-2.5473,-3.63679)--
> (-2.54728,-3.63673)--(-2.54725,-3.63666)--(-2.54723,-3.6366)--(-2.5472,-3.63653)--(-2.54718,-3.63646)--(-2.54716,-3.6364)--(-2.54713,-3.63633)--(-2.54711,-3.63626)--(-2.54709,-3.6362)--(-2.54706,-3.63613)--(-2.54704,-3.63606)--(-2.54701,-3.636)--(-2.54699,-3.63593)--(-2.54697,-3.63586)--(-2.54694,-3.6358)--(-2.54692,-3.63573)--(-2.5469,-3.63567)--(-2.54687,-3.6356)--(-2.54685,-3.63553)--(-2.54683,-3.63547)--(-2.5468,-3.6354)--(-2.54678,-3.63533)--(-2.54676,-3.63527)--(-2.54673,-3.6352)--
> (-2.54671,-3.63513)--(-2.54669,-3.63507)--(-2.54666,-3.635)--(-2.54664,-3.63493)--(-2.54662,-3.63487)--(-2.54659,-3.6348)--(-2.54657,-3.63473)--(-2.54655,-3.63467)--(-2.54652,-3.6346)--(-2.5465,-3.63453)--(-2.54648,-3.63447)--(-2.54646,-3.6344)--(-2.54643,-3.63433)--(-2.54641,-3.63427)--(-2.54639,-3.6342)--(-2.54636,-3.63413)--(-2.54634,-3.63407)--(-2.54632,-3.634)--(-2.54629,-3.63393)--(-2.54627,-3.63387)--(-2.54625,-3.6338)--(-2.54623,-3.63373)--(-2.5462,-3.63367)--(-2.54618,-3.6336)--
> (-2.54616,-3.63353)--(-2.54613,-3.63347)--(-2.54611,-3.6334)--(-2.54609,-3.63333)--(-2.54607,-3.63327)--(-2.54604,-3.6332)--(-2.54602,-3.63313)--(-2.546,-3.63307)--(-2.54598,-3.633)--(-2.54595,-3.63293)--(-2.54593,-3.63287)--(-2.54591,-3.6328)--(-2.54589,-3.63273)--(-2.54586,-3.63267)--(-2.54584,-3.6326)--(-2.54582,-3.63253)--(-2.5458,-3.63247)--(-2.54577,-3.6324)--(-2.54575,-3.63233)--(-2.54573,-3.63227)--(-2.54571,-3.6322)--(-2.54568,-3.63213)--(-2.54566,-3.63207)--(-2.54564,-3.632)--
> (-2.54562,-3.63193)--(-2.5456,-3.63186)--(-2.54557,-3.6318)--(-2.54555,-3.63173)--(-2.54553,-3.63166)--(-2.54551,-3.6316)--(-2.54548,-3.63153)--(-2.54546,-3.63146)--(-2.54544,-3.6314)--(-2.54542,-3.63133)--(-2.5454,-3.63126)--(-2.54537,-3.6312)--(-2.54535,-3.63113)--(-2.54533,-3.63106)--(-2.54531,-3.63099)--(-2.54529,-3.63093)--(-2.54526,-3.63086)--(-2.54524,-3.63079)--(-2.54522,-3.63073)--(-2.5452,-3.63066)--(-2.54518,-3.63059)--(-2.54515,-3.63053)--(-2.54513,-3.63046)--(-2.54511,-3.63039)--
> (-2.54509,-3.63033)--(-2.54507,-3.63026)--(-2.54505,-3.63019)--(-2.54502,-3.63012)--(-2.545,-3.63006)--(-2.54498,-3.62999)--(-2.54496,-3.62992)--(-2.54494,-3.62986)--(-2.54492,-3.62979)--(-2.54489,-3.62972)--(-2.54487,-3.62965)--(-2.54485,-3.62959)--(-2.54483,-3.62952)--(-2.54481,-3.62945)--(-2.54479,-3.62939)--(-2.54477,-3.62932)--(-2.54474,-3.62925)--(-2.54472,-3.62919)--(-2.5447,-3.62912)--(-2.54468,-3.62905)--(-2.54466,-3.62898)--(-2.54464,-3.62892)--(-2.54462,-3.62885)--(-2.5446,-3.62878)--
> (-2.54457,-3.62871)--(-2.54455,-3.62865)--(-2.54453,-3.62858)--(-2.54451,-3.62851)--(-2.54449,-3.62845)--(-2.54447,-3.62838)--(-2.54445,-3.62831)--(-2.54443,-3.62824)--(-2.54441,-3.62818)--(-2.54438,-3.62811)--(-2.54436,-3.62804)--(-2.54434,-3.62798)--(-2.54432,-3.62791)--(-2.5443,-3.62784)--(-2.54428,-3.62777)--(-2.54426,-3.62771)--(-2.54424,-3.62764)--(-2.54422,-3.62757)--(-2.5442,-3.6275)--(-2.54418,-3.62744)--(-2.54415,-3.62737)--(-2.54413,-3.6273)--(-2.54411,-3.62724)--(-2.54409,-3.62717)--
> (-2.54407,-3.6271)--(-2.54405,-3.62703)--(-2.54403,-3.62697)--(-2.54401,-3.6269)--(-2.54399,-3.62683)--(-2.54397,-3.62676)--(-2.54395,-3.6267)--(-2.54393,-3.62663)--(-2.54391,-3.62656)--(-2.54389,-3.62649)--(-2.54387,-3.62643)--(-2.54385,-3.62636)--(-2.54382,-3.62629)--(-2.5438,-3.62622)--(-2.54378,-3.62616)--(-2.54376,-3.62609)--(-2.54374,-3.62602)--(-2.54372,-3.62595)--(-2.5437,-3.62589)--(-2.54368,-3.62582)--(-2.54366,-3.62575)--(-2.54364,-3.62568)--(-2.54362,-3.62562)--(-2.5436,-3.62555)--
> (-2.54358,-3.62548)--(-2.54356,-3.62541)--(-2.54354,-3.62535)--(-2.54352,-3.62528)--(-2.5435,-3.62521)--(-2.54348,-3.62514)--(-2.54346,-3.62508)--(-2.54344,-3.62501)--(-2.54342,-3.62494)--(-2.5434,-3.62487)--(-2.54338,-3.62481)--(-2.54336,-3.62474)--(-2.54334,-3.62467)--(-2.54332,-3.6246)--(-2.5433,-3.62454)--(-2.54328,-3.62447)--(-2.54326,-3.6244)--(-2.54324,-3.62433)--(-2.54322,-3.62427)--(-2.5432,-3.6242)--(-2.54318,-3.62413)--(-2.54316,-3.62406)--(-2.54314,-3.62399)--(-2.54312,-3.62393)--
> (-2.5431,-3.62386)--(-2.54308,-3.62379)--(-2.54306,-3.62372)--(-2.54304,-3.62366)--(-2.54302,-3.62359)--(-2.543,-3.62352)--(-2.54298,-3.62345)--(-2.54297,-3.62339)--(-2.54295,-3.62332)--(-2.54293,-3.62325)--(-2.54291,-3.62318)--(-2.54289,-3.62311)--(-2.54287,-3.62305)--(-2.54285,-3.62298)--(-2.54283,-3.62291)--(-2.54281,-3.62284)--(-2.54279,-3.62277)--(-2.54277,-3.62271)--(-2.54275,-3.62264)--(-2.54273,-3.62257)--(-2.54271,-3.6225)--(-2.54269,-3.62244)--(-2.54267,-3.62237)--(-2.54266,-3.6223)--
> (-2.54264,-3.62223)--(-2.54262,-3.62216)--(-2.5426,-3.6221)--(-2.54258,-3.62203)--(-2.54256,-3.62196)--(-2.54254,-3.62189)--(-2.54252,-3.62182)--(-2.5425,-3.62176)--(-2.54248,-3.62169)--(-2.54246,-3.62162)--(-2.54245,-3.62155)--(-2.54243,-3.62148)--(-2.54241,-3.62142)--(-2.54239,-3.62135)--(-2.54237,-3.62128)--(-2.54235,-3.62121)--(-2.54233,-3.62114)--(-2.54231,-3.62108)--(-2.54229,-3.62101)--(-2.54228,-3.62094)--(-2.54226,-3.62087)--(-2.54224,-3.6208)--(-2.54222,-3.62074)--(-2.5422,-3.62067)--
> (-2.54218,-3.6206)--(-2.54216,-3.62053)--(-2.54215,-3.62046)--(-2.54213,-3.6204)--(-2.54211,-3.62033)--(-2.54209,-3.62026)--(-2.54207,-3.62019)--(-2.54205,-3.62012)--(-2.54203,-3.62005)--(-2.54202,-3.61999)--(-2.542,-3.61992)--(-2.54198,-3.61985)--(-2.54196,-3.61978)--(-2.54194,-3.61971)--(-2.54192,-3.61965)--(-2.5419,-3.61958)--(-2.54189,-3.61951)--(-2.54187,-3.61944)--(-2.54185,-3.61937)--(-2.54183,-3.6193)--(-2.54181,-3.61924)--(-2.5418,-3.61917)--(-2.54178,-3.6191)--(-2.54176,-3.61903)--
> (-2.54174,-3.61896)--(-2.54172,-3.61889)--(-2.5417,-3.61883)--(-2.54169,-3.61876)--(-2.54167,-3.61869)--(-2.54165,-3.61862)--(-2.54163,-3.61855)--(-2.54161,-3.61848)--(-2.5416,-3.61842)--(-2.54158,-3.61835)--(-2.54156,-3.61828)--(-2.54154,-3.61821)--(-2.54152,-3.61814)--(-2.54151,-3.61807)--(-2.54149,-3.618)--(-2.54147,-3.61794)--(-2.54145,-3.61787)--(-2.54144,-3.6178)--(-2.54142,-3.61773)--(-2.5414,-3.61766)--(-2.54138,-3.61759)--(-2.54136,-3.61753)--(-2.54135,-3.61746)--(-2.54133,-3.61739)--
> (-2.54131,-3.61732)--(-2.54129,-3.61725)--(-2.54128,-3.61718)--(-2.54126,-3.61711)--(-2.54124,-3.61705)--(-2.54122,-3.61698)--(-2.54121,-3.61691)--(-2.54119,-3.61684)--(-2.54117,-3.61677)--(-2.54115,-3.6167)--(-2.54114,-3.61663)--(-2.54112,-3.61657)--(-2.5411,-3.6165)--(-2.54108,-3.61643)--(-2.54107,-3.61636)--(-2.54105,-3.61629)--(-2.54103,-3.61622)--(-2.54101,-3.61615)--(-2.541,-3.61608)--(-2.54098,-3.61602)--(-2.54096,-3.61595)--(-2.54095,-3.61588)--(-2.54093,-3.61581)--(-2.54091,-3.61574)--
> (-2.54089,-3.61567)--(-2.54088,-3.6156)--(-2.54086,-3.61553)--(-2.54084,-3.61547)--(-2.54083,-3.6154)--(-2.54081,-3.61533)--(-2.54079,-3.61526)--(-2.54077,-3.61519)--(-2.54076,-3.61512)--(-2.54074,-3.61505)--(-2.54072,-3.61498)--(-2.54071,-3.61492)--(-2.54069,-3.61485)--(-2.54067,-3.61478)--(-2.54066,-3.61471)--(-2.54064,-3.61464)--(-2.54062,-3.61457)--(-2.54061,-3.6145)--(-2.54059,-3.61443)--(-2.54057,-3.61436)--(-2.54055,-3.61429)--(-2.54054,-3.61423)--(-2.54052,-3.61416)--(-2.5405,-3.61409)--
> (-2.54049,-3.61402)--(-2.54047,-3.61395)--(-2.54045,-3.61388)--(-2.54044,-3.61381)--(-2.54042,-3.61374)--(-2.54041,-3.61367)--(-2.54039,-3.6136)--(-2.54037,-3.61354)--(-2.54036,-3.61347)--(-2.54034,-3.6134)--(-2.54032,-3.61333)--(-2.54031,-3.61326)--(-2.54029,-3.61319)--(-2.54027,-3.61312)--(-2.54026,-3.61305)--(-2.54024,-3.61298)--(-2.54022,-3.61291)--(-2.54021,-3.61284)--(-2.54019,-3.61278)--(-2.54018,-3.61271)--(-2.54016,-3.61264)--(-2.54014,-3.61257)--(-2.54013,-3.6125)--(-2.54011,-3.61243)--
> (-2.54009,-3.61236)--(-2.54008,-3.61229)--(-2.54006,-3.61222)--(-2.54005,-3.61215)--(-2.54003,-3.61208)--(-2.54001,-3.61201)--(-2.54,-3.61194)--(-2.53998,-3.61188)--(-2.53997,-3.61181)--(-2.53995,-3.61174)--(-2.53993,-3.61167)--(-2.53992,-3.6116)--(-2.5399,-3.61153)--(-2.53989,-3.61146)--(-2.53987,-3.61139)--(-2.53986,-3.61132)--(-2.53984,-3.61125)--(-2.53982,-3.61118)--(-2.53981,-3.61111)--(-2.53979,-3.61104)--(-2.53978,-3.61097)--(-2.53976,-3.6109)--(-2.53975,-3.61083)--(-2.53973,-3.61076)--
> (-2.53971,-3.6107)--(-2.5397,-3.61063)--(-2.53968,-3.61056)--(-2.53967,-3.61049)--(-2.53965,-3.61042)--(-2.53964,-3.61035)--(-2.53962,-3.61028)--(-2.5396,-3.61021)--(-2.53959,-3.61014)--(-2.53957,-3.61007)--(-2.53956,-3.61)--(-2.53954,-3.60993)--(-2.53953,-3.60986)--(-2.53951,-3.60979)--(-2.5395,-3.60972)--(-2.53948,-3.60965)--(-2.53947,-3.60958)--(-2.53945,-3.60951)--(-2.53944,-3.60944)--(-2.53942,-3.60937)--(-2.53941,-3.6093)--(-2.53939,-3.60923)--(-2.53938,-3.60916)--(-2.53936,-3.60909)--
> (-2.53934,-3.60902)--(-2.53933,-3.60895)--(-2.53931,-3.60888)--(-2.5393,-3.60882)--(-2.53928,-3.60875)--(-2.53927,-3.60868)--(-2.53925,-3.60861)--(-2.53924,-3.60854)--(-2.53922,-3.60847)--(-2.53921,-3.6084)--(-2.53919,-3.60833)--(-2.53918,-3.60826)--(-2.53916,-3.60819)--(-2.53915,-3.60812)--(-2.53914,-3.60805)--(-2.53912,-3.60798)--(-2.53911,-3.60791)--(-2.53909,-3.60784)--(-2.53908,-3.60777)--(-2.53906,-3.6077)--(-2.53905,-3.60763)--(-2.53903,-3.60756)--(-2.53902,-3.60749)--(-2.539,-3.60742)--
> (-2.53899,-3.60735)--(-2.53897,-3.60728)--(-2.53896,-3.60721)--(-2.53894,-3.60714)--(-2.53893,-3.60707)--(-2.53892,-3.607)--(-2.5389,-3.60693)--(-2.53889,-3.60686)--(-2.53887,-3.60679)--(-2.53886,-3.60672)--(-2.53884,-3.60665)--(-2.53883,-3.60658)--(-2.53881,-3.60651)--(-2.5388,-3.60644)--(-2.53879,-3.60637)--(-2.53877,-3.6063)--(-2.53876,-3.60623)--(-2.53874,-3.60616)--(-2.53873,-3.60608)--(-2.53871,-3.60601)--(-2.5387,-3.60594)--(-2.53869,-3.60587)--(-2.53867,-3.6058)--(-2.53866,-3.60573)--
> (-2.53864,-3.60566)--(-2.53863,-3.60559)--(-2.53862,-3.60552)--(-2.5386,-3.60545)--(-2.53859,-3.60538)--(-2.53857,-3.60531)--(-2.53856,-3.60524)--(-2.53854,-3.60517)--(-2.53853,-3.6051)--(-2.53852,-3.60503)--(-2.5385,-3.60496)--(-2.53849,-3.60489)--(-2.53848,-3.60482)--(-2.53846,-3.60475)--(-2.53845,-3.60468)--(-2.53843,-3.60461)--(-2.53842,-3.60454)--(-2.53841,-3.60447)--(-2.53839,-3.6044)--(-2.53838,-3.60433)--(-2.53837,-3.60426)--(-2.53835,-3.60418)--(-2.53834,-3.60411)--(-2.53832,-3.60404)--
> (-2.53831,-3.60397)--(-2.5383,-3.6039)--(-2.53828,-3.60383)--(-2.53827,-3.60376)--(-2.53826,-3.60369)--(-2.53824,-3.60362)--(-2.53823,-3.60355)--(-2.53822,-3.60348)--(-2.5382,-3.60341)--(-2.53819,-3.60334)--(-2.53818,-3.60327)--(-2.53816,-3.6032)--(-2.53815,-3.60313)--(-2.53814,-3.60305)--(-2.53812,-3.60298)--(-2.53811,-3.60291)--(-2.5381,-3.60284)--(-2.53808,-3.60277)--(-2.53807,-3.6027)--(-2.53806,-3.60263)--(-2.53804,-3.60256)--(-2.53803,-3.60249)--(-2.53802,-3.60242)--(-2.538,-3.60235)--
> (-2.53799,-3.60228)--(-2.53798,-3.6022)--(-2.53796,-3.60213)--(-2.53795,-3.60206)--(-2.53794,-3.60199)--(-2.53793,-3.60192)--(-2.53791,-3.60185)--(-2.5379,-3.60178)--(-2.53789,-3.60171)--(-2.53787,-3.60164)--(-2.53786,-3.60157)--(-2.53785,-3.6015)--(-2.53783,-3.60142)--(-2.53782,-3.60135)--(-2.53781,-3.60128)--(-2.5378,-3.60121)--(-2.53778,-3.60114)--(-2.53777,-3.60107)--(-2.53776,-3.601)--(-2.53775,-3.60093)--(-2.53773,-3.60086)--(-2.53772,-3.60078)--(-2.53771,-3.60071)--(-2.53769,-3.60064)--
> (-2.53768,-3.60057)--(-2.53767,-3.6005)--(-2.53766,-3.60043)--(-2.53764,-3.60036)--(-2.53763,-3.60029)--(-2.53762,-3.60022)--(-2.53761,-3.60014)--(-2.53759,-3.60007)--(-2.53758,-3.6)--(-2.53757,-3.59993)--(-2.53756,-3.59986)--(-2.53754,-3.59979)--(-2.53753,-3.59972)--(-2.53752,-3.59964)--(-2.53751,-3.59957)--(-2.5375,-3.5995)--(-2.53748,-3.59943)--(-2.53747,-3.59936)--(-2.53746,-3.59929)--(-2.53745,-3.59922)--(-2.53743,-3.59915)--(-2.53742,-3.59907)--(-2.53741,-3.599)--(-2.5374,-3.59893)--
> (-2.53739,-3.59886)--(-2.53737,-3.59879)--(-2.53736,-3.59872)--(-2.53735,-3.59864)--(-2.53734,-3.59857)--(-2.53733,-3.5985)--(-2.53731,-3.59843)--(-2.5373,-3.59836)--(-2.53729,-3.59829)--(-2.53728,-3.59822)--(-2.53727,-3.59814)--(-2.53725,-3.59807)--(-2.53724,-3.598)--(-2.53723,-3.59793)--(-2.53722,-3.59786)--(-2.53721,-3.59779)--(-2.5372,-3.59771)--(-2.53718,-3.59764)--(-2.53717,-3.59757)--(-2.53716,-3.5975)--(-2.53715,-3.59743)--(-2.53714,-3.59736)--(-2.53713,-3.59728)--(-2.53711,-3.59721)--
> (-2.5371,-3.59714)--(-2.53709,-3.59707)--(-2.53708,-3.597)--(-2.53707,-3.59692)--(-2.53706,-3.59685)--(-2.53705,-3.59678)--(-2.53703,-3.59671)--(-2.53702,-3.59664)--(-2.53701,-3.59657)--(-2.537,-3.59649)--(-2.53699,-3.59642)--(-2.53698,-3.59635)--(-2.53697,-3.59628)--(-2.53695,-3.59621)--(-2.53694,-3.59613)--(-2.53693,-3.59606)--(-2.53692,-3.59599)--(-2.53691,-3.59592)--(-2.5369,-3.59585)--(-2.53689,-3.59577)--(-2.53688,-3.5957)--(-2.53686,-3.59563)--(-2.53685,-3.59556)--(-2.53684,-3.59548)--
> (-2.53683,-3.59541)--(-2.53683,-3.59541);
> draw(curve, rgb(0,0,0)+dashed );
> pair point = (-7.10041,-2.76573);
> dot(point, rgb(0,0,255));
> pair point = (0.438635,4.06054);
> dot(point, rgb(0,0,255));
> pair point = (-3.97513,-3.86232);
> dot(point, rgb(0,0,255));
> path curve = (6.08607,-1.2168)--(6.08596,-1.21645)--(6.08585,-1.2161)--(6.08574,-1.21574)--(6.08563,-1.21539)--(6.08552,-1.21504)--(6.08541,-1.21469)--(6.0853,-1.21434)--(6.08519,-1.21399)--(6.08508,-1.21363)--(6.08497,-1.21328)--(6.08486,-1.21293)--(6.08475,-1.21258)--(6.08464,-1.21223)--(6.08453,-1.21188)--(6.08442,-1.21153)--(6.08431,-1.21118)--(6.0842,-1.21083)--(6.08408,-1.21048)--(6.08397,-1.21013)--(6.08386,-1.20979)--(6.08375,-1.20944)--(6.08364,-1.20909)--(6.08353,-1.20874)--
> (6.08342,-1.20839)--(6.08331,-1.20804)--(6.0832,-1.2077)--(6.08309,-1.20735)--(6.08298,-1.207)--(6.08287,-1.20665)--(6.08276,-1.20631)--(6.08264,-1.20596)--(6.08253,-1.20561)--(6.08242,-1.20527)--(6.08231,-1.20492)--(6.0822,-1.20457)--(6.08209,-1.20423)--(6.08198,-1.20388)--(6.08187,-1.20354)--(6.08176,-1.20319)--(6.08164,-1.20285)--(6.08153,-1.2025)--(6.08142,-1.20216)--(6.08131,-1.20181)--(6.0812,-1.20147)--(6.08109,-1.20112)--(6.08098,-1.20078)--(6.08087,-1.20044)--(6.08075,-1.20009)--
> (6.08064,-1.19975)--(6.08053,-1.19941)--(6.08042,-1.19906)--(6.08031,-1.19872)--(6.0802,-1.19838)--(6.08008,-1.19804)--(6.07997,-1.19769)--(6.07986,-1.19735)--(6.07975,-1.19701)--(6.07964,-1.19667)--(6.07953,-1.19633)--(6.07941,-1.19598)--(6.0793,-1.19564)--(6.07919,-1.1953)--(6.07908,-1.19496)--(6.07897,-1.19462)--(6.07886,-1.19428)--(6.07874,-1.19394)--(6.07863,-1.1936)--(6.07852,-1.19326)--(6.07841,-1.19292)--(6.0783,-1.19258)--(6.07818,-1.19224)--(6.07807,-1.1919)--(6.07796,-1.19156)--
> (6.07785,-1.19122)--(6.07773,-1.19089)--(6.07762,-1.19055)--(6.07751,-1.19021)--(6.0774,-1.18987)--(6.07729,-1.18953)--(6.07717,-1.1892)--(6.07706,-1.18886)--(6.07695,-1.18852)--(6.07684,-1.18818)--(6.07672,-1.18785)--(6.07661,-1.18751)--(6.0765,-1.18717)--(6.07639,-1.18684)--(6.07627,-1.1865)--(6.07616,-1.18616)--(6.07605,-1.18583)--(6.07594,-1.18549)--(6.07582,-1.18516)--(6.07571,-1.18482)--(6.0756,-1.18449)--(6.07549,-1.18415)--(6.07537,-1.18382)--(6.07526,-1.18348)--(6.07515,-1.18315)--
> (6.07503,-1.18281)--(6.07492,-1.18248)--(6.07481,-1.18214)--(6.0747,-1.18181)--(6.07458,-1.18148)--(6.07447,-1.18114)--(6.07436,-1.18081)--(6.07424,-1.18048)--(6.07413,-1.18015)--(6.07402,-1.17981)--(6.0739,-1.17948)--(6.07379,-1.17915)--(6.07368,-1.17882)--(6.07356,-1.17848)--(6.07345,-1.17815)--(6.07334,-1.17782)--(6.07323,-1.17749)--(6.07311,-1.17716)--(6.073,-1.17683)--(6.07289,-1.1765)--(6.07277,-1.17616)--(6.07266,-1.17583)--(6.07255,-1.1755)--(6.07243,-1.17517)--(6.07232,-1.17484)--
> (6.0722,-1.17451)--(6.07209,-1.17418)--(6.07198,-1.17385)--(6.07186,-1.17353)--(6.07175,-1.1732)--(6.07164,-1.17287)--(6.07152,-1.17254)--(6.07141,-1.17221)--(6.0713,-1.17188)--(6.07118,-1.17155)--(6.07107,-1.17122)--(6.07095,-1.1709)--(6.07084,-1.17057)--(6.07073,-1.17024)--(6.07061,-1.16991)--(6.0705,-1.16959)--(6.07039,-1.16926)--(6.07027,-1.16893)--(6.07016,-1.16861)--(6.07004,-1.16828)--(6.06993,-1.16795)--(6.06982,-1.16763)--(6.0697,-1.1673)--(6.06959,-1.16698)--(6.06947,-1.16665)--
> (6.06936,-1.16632)--(6.06925,-1.166)--(6.06913,-1.16567)--(6.06902,-1.16535)--(6.0689,-1.16502)--(6.06879,-1.1647)--(6.06867,-1.16438)--(6.06856,-1.16405)--(6.06845,-1.16373)--(6.06833,-1.1634)--(6.06822,-1.16308)--(6.0681,-1.16276)--(6.06799,-1.16243)--(6.06787,-1.16211)--(6.06776,-1.16179)--(6.06765,-1.16146)--(6.06753,-1.16114)--(6.06742,-1.16082)--(6.0673,-1.1605)--(6.06719,-1.16017)--(6.06707,-1.15985)--(6.06696,-1.15953)--(6.06684,-1.15921)--(6.06673,-1.15889)--(6.06661,-1.15856)--
> (6.0665,-1.15824)--(6.06638,-1.15792)--(6.06627,-1.1576)--(6.06615,-1.15728)--(6.06604,-1.15696)--(6.06593,-1.15664)--(6.06581,-1.15632)--(6.0657,-1.156)--(6.06558,-1.15568)--(6.06547,-1.15536)--(6.06535,-1.15504)--(6.06524,-1.15472)--(6.06512,-1.1544)--(6.06501,-1.15408)--(6.06489,-1.15376)--(6.06478,-1.15345)--(6.06466,-1.15313)--(6.06455,-1.15281)--(6.06443,-1.15249)--(6.06432,-1.15217)--(6.0642,-1.15186)--(6.06408,-1.15154)--(6.06397,-1.15122)--(6.06385,-1.1509)--(6.06374,-1.15059)--
> (6.06362,-1.15027)--(6.06351,-1.14995)--(6.06339,-1.14964)--(6.06328,-1.14932)--(6.06316,-1.149)--(6.06305,-1.14869)--(6.06293,-1.14837)--(6.06282,-1.14805)--(6.0627,-1.14774)--(6.06259,-1.14742)--(6.06247,-1.14711)--(6.06235,-1.14679)--(6.06224,-1.14648)--(6.06212,-1.14616)--(6.06201,-1.14585)--(6.06189,-1.14553)--(6.06178,-1.14522)--(6.06166,-1.14491)--(6.06154,-1.14459)--(6.06143,-1.14428)--(6.06131,-1.14396)--(6.0612,-1.14365)--(6.06108,-1.14334)--(6.06097,-1.14302)--(6.06085,-1.14271)--
> (6.06073,-1.1424)--(6.06062,-1.14209)--(6.0605,-1.14177)--(6.06039,-1.14146)--(6.06027,-1.14115)--(6.06015,-1.14084)--(6.06004,-1.14052)--(6.05992,-1.14021)--(6.05981,-1.1399)--(6.05969,-1.13959)--(6.05957,-1.13928)--(6.05946,-1.13897)--(6.05934,-1.13866)--(6.05923,-1.13835)--(6.05911,-1.13804)--(6.05899,-1.13772)--(6.05888,-1.13741)--(6.05876,-1.1371)--(6.05864,-1.13679)--(6.05853,-1.13648)--(6.05841,-1.13618)--(6.0583,-1.13587)--(6.05818,-1.13556)--(6.05806,-1.13525)--(6.05795,-1.13494)--
> (6.05783,-1.13463)--(6.05771,-1.13432)--(6.0576,-1.13401)--(6.05748,-1.1337)--(6.05736,-1.1334)--(6.05725,-1.13309)--(6.05713,-1.13278)--(6.05702,-1.13247)--(6.0569,-1.13217)--(6.05678,-1.13186)--(6.05667,-1.13155)--(6.05655,-1.13124)--(6.05643,-1.13094)--(6.05632,-1.13063)--(6.0562,-1.13032)--(6.05608,-1.13002)--(6.05597,-1.12971)--(6.05585,-1.1294)--(6.05573,-1.1291)--(6.05561,-1.12879)--(6.0555,-1.12849)--(6.05538,-1.12818)--(6.05526,-1.12788)--(6.05515,-1.12757)--(6.05503,-1.12727)--
> (6.05491,-1.12696)--(6.0548,-1.12666)--(6.05468,-1.12635)--(6.05456,-1.12605)--(6.05445,-1.12574)--(6.05433,-1.12544)--(6.05421,-1.12514)--(6.05409,-1.12483)--(6.05398,-1.12453)--(6.05386,-1.12423)--(6.05374,-1.12392)--(6.05363,-1.12362)--(6.05351,-1.12332)--(6.05339,-1.12301)--(6.05327,-1.12271)--(6.05316,-1.12241)--(6.05304,-1.12211)--(6.05292,-1.1218)--(6.05281,-1.1215)--(6.05269,-1.1212)--(6.05257,-1.1209)--(6.05245,-1.1206)--(6.05234,-1.1203)--(6.05222,-1.11999)--(6.0521,-1.11969)--
> (6.05198,-1.11939)--(6.05187,-1.11909)--(6.05175,-1.11879)--(6.05163,-1.11849)--(6.05151,-1.11819)--(6.0514,-1.11789)--(6.05128,-1.11759)--(6.05116,-1.11729)--(6.05104,-1.11699)--(6.05093,-1.11669)--(6.05081,-1.11639)--(6.05069,-1.11609)--(6.05057,-1.11579)--(6.05046,-1.11549)--(6.05034,-1.1152)--(6.05022,-1.1149)--(6.0501,-1.1146)--(6.04998,-1.1143)--(6.04987,-1.114)--(6.04975,-1.1137)--(6.04963,-1.11341)--(6.04951,-1.11311)--(6.0494,-1.11281)--(6.04928,-1.11251)--(6.04916,-1.11222)--
> (6.04904,-1.11192)--(6.04892,-1.11162)--(6.04881,-1.11133)--(6.04869,-1.11103)--(6.04857,-1.11073)--(6.04845,-1.11044)--(6.04833,-1.11014)--(6.04822,-1.10984)--(6.0481,-1.10955)--(6.04798,-1.10925)--(6.04786,-1.10896)--(6.04774,-1.10866)--(6.04763,-1.10837)--(6.04751,-1.10807)--(6.04739,-1.10778)--(6.04727,-1.10748)--(6.04715,-1.10719)--(6.04703,-1.10689)--(6.04692,-1.1066)--(6.0468,-1.1063)--(6.04668,-1.10601)--(6.04656,-1.10572)--(6.04644,-1.10542)--(6.04632,-1.10513)--(6.04621,-1.10484)--
> (6.04609,-1.10454)--(6.04597,-1.10425)--(6.04585,-1.10396)--(6.04573,-1.10366)--(6.04561,-1.10337)--(6.0455,-1.10308)--(6.04538,-1.10279)--(6.04526,-1.10249)--(6.04514,-1.1022)--(6.04502,-1.10191)--(6.0449,-1.10162)--(6.04478,-1.10133)--(6.04467,-1.10104)--(6.04455,-1.10074)--(6.04443,-1.10045)--(6.04431,-1.10016)--(6.04419,-1.09987)--(6.04407,-1.09958)--(6.04395,-1.09929)--(6.04383,-1.099)--(6.04372,-1.09871)--(6.0436,-1.09842)--(6.04348,-1.09813)--(6.04336,-1.09784)--(6.04324,-1.09755)--
> (6.04312,-1.09726)--(6.043,-1.09697)--(6.04288,-1.09668)--(6.04276,-1.09639)--(6.04265,-1.0961)--(6.04253,-1.09581)--(6.04241,-1.09552)--(6.04229,-1.09524)--(6.04217,-1.09495)--(6.04205,-1.09466)--(6.04193,-1.09437)--(6.04181,-1.09408)--(6.04169,-1.0938)--(6.04157,-1.09351)--(6.04146,-1.09322)--(6.04134,-1.09293)--(6.04122,-1.09265)--(6.0411,-1.09236)--(6.04098,-1.09207)--(6.04086,-1.09178)--(6.04074,-1.0915)--(6.04062,-1.09121)--(6.0405,-1.09093)--(6.04038,-1.09064)--(6.04026,-1.09035)--
> (6.04014,-1.09007)--(6.04002,-1.08978)--(6.03991,-1.0895)--(6.03979,-1.08921)--(6.03967,-1.08892)--(6.03955,-1.08864)--(6.03943,-1.08835)--(6.03931,-1.08807)--(6.03919,-1.08778)--(6.03907,-1.0875)--(6.03895,-1.08722)--(6.03883,-1.08693)--(6.03871,-1.08665)--(6.03859,-1.08636)--(6.03847,-1.08608)--(6.03835,-1.0858)--(6.03823,-1.08551)--(6.03811,-1.08523)--(6.03799,-1.08495)--(6.03787,-1.08466)--(6.03775,-1.08438)--(6.03764,-1.0841)--(6.03752,-1.08381)--(6.0374,-1.08353)--(6.03728,-1.08325)--
> (6.03716,-1.08297)--(6.03704,-1.08268)--(6.03692,-1.0824)--(6.0368,-1.08212)--(6.03668,-1.08184)--(6.03656,-1.08156)--(6.03644,-1.08127)--(6.03632,-1.08099)--(6.0362,-1.08071)--(6.03608,-1.08043)--(6.03596,-1.08015)--(6.03584,-1.07987)--(6.03572,-1.07959)--(6.0356,-1.07931)--(6.03548,-1.07903)--(6.03536,-1.07875)--(6.03524,-1.07847)--(6.03512,-1.07819)--(6.035,-1.07791)--(6.03488,-1.07763)--(6.03476,-1.07735)--(6.03464,-1.07707)--(6.03452,-1.07679)--(6.0344,-1.07651)--(6.03428,-1.07623)--
> (6.03416,-1.07595)--(6.03404,-1.07567)--(6.03392,-1.0754)--(6.0338,-1.07512)--(6.03368,-1.07484)--(6.03356,-1.07456)--(6.03344,-1.07428)--(6.03332,-1.074)--(6.0332,-1.07373)--(6.03308,-1.07345)--(6.03296,-1.07317)--(6.03284,-1.07289)--(6.03271,-1.07262)--(6.03259,-1.07234)--(6.03247,-1.07206)--(6.03235,-1.07179)--(6.03223,-1.07151)--(6.03211,-1.07123)--(6.03199,-1.07096)--(6.03187,-1.07068)--(6.03175,-1.07041)--(6.03163,-1.07013)--(6.03151,-1.06985)--(6.03139,-1.06958)--(6.03127,-1.0693)--
> (6.03115,-1.06903)--(6.03103,-1.06875)--(6.03091,-1.06848)--(6.03079,-1.0682)--(6.03067,-1.06793)--(6.03055,-1.06765)--(6.03043,-1.06738)--(6.0303,-1.0671)--(6.03018,-1.06683)--(6.03006,-1.06655)--(6.02994,-1.06628)--(6.02982,-1.06601)--(6.0297,-1.06573)--(6.02958,-1.06546)--(6.02946,-1.06519)--(6.02934,-1.06491)--(6.02922,-1.06464)--(6.0291,-1.06437)--(6.02898,-1.06409)--(6.02886,-1.06382)--(6.02873,-1.06355)--(6.02861,-1.06328)--(6.02849,-1.063)--(6.02837,-1.06273)--(6.02825,-1.06246)--
> (6.02813,-1.06219)--(6.02801,-1.06191)--(6.02789,-1.06164)--(6.02777,-1.06137)--(6.02765,-1.0611)--(6.02753,-1.06083)--(6.0274,-1.06056)--(6.02728,-1.06029)--(6.02716,-1.06002)--(6.02704,-1.05974)--(6.02692,-1.05947)--(6.0268,-1.0592)--(6.02668,-1.05893)--(6.02656,-1.05866)--(6.02644,-1.05839)--(6.02631,-1.05812)--(6.02619,-1.05785)--(6.02607,-1.05758)--(6.02595,-1.05731)--(6.02583,-1.05704)--(6.02571,-1.05678)--(6.02559,-1.05651)--(6.02547,-1.05624)--(6.02534,-1.05597)--(6.02522,-1.0557)--
> (6.0251,-1.05543)--(6.02498,-1.05516)--(6.02486,-1.05489)--(6.02474,-1.05463)--(6.02462,-1.05436)--(6.0245,-1.05409)--(6.02437,-1.05382)--(6.02425,-1.05355)--(6.02413,-1.05329)--(6.02401,-1.05302)--(6.02389,-1.05275)--(6.02377,-1.05248)--(6.02365,-1.05222)--(6.02352,-1.05195)--(6.0234,-1.05168)--(6.02328,-1.05142)--(6.02316,-1.05115)--(6.02304,-1.05088)--(6.02292,-1.05062)--(6.02279,-1.05035)--(6.02267,-1.05009)--(6.02255,-1.04982)--(6.02243,-1.04955)--(6.02231,-1.04929)--(6.02219,-1.04902)--
> (6.02206,-1.04876)--(6.02194,-1.04849)--(6.02182,-1.04823)--(6.0217,-1.04796)--(6.02158,-1.0477)--(6.02146,-1.04743)--(6.02133,-1.04717)--(6.02121,-1.0469)--(6.02109,-1.04664)--(6.02097,-1.04638)--(6.02085,-1.04611)--(6.02073,-1.04585)--(6.0206,-1.04558)--(6.02048,-1.04532)--(6.02036,-1.04506)--(6.02024,-1.04479)--(6.02012,-1.04453)--(6.01999,-1.04427)--(6.01987,-1.044)--(6.01975,-1.04374)--(6.01963,-1.04348)--(6.01951,-1.04321)--(6.01938,-1.04295)--(6.01926,-1.04269)--(6.01914,-1.04243)--
> (6.01902,-1.04217)--(6.0189,-1.0419)--(6.01877,-1.04164)--(6.01865,-1.04138)--(6.01853,-1.04112)--(6.01841,-1.04086)--(6.01829,-1.0406)--(6.01816,-1.04033)--(6.01804,-1.04007)--(6.01792,-1.03981)--(6.0178,-1.03955)--(6.01768,-1.03929)--(6.01755,-1.03903)--(6.01743,-1.03877)--(6.01731,-1.03851)--(6.01719,-1.03825)--(6.01706,-1.03799)--(6.01694,-1.03773)--(6.01682,-1.03747)--(6.0167,-1.03721)--(6.01658,-1.03695)--(6.01645,-1.03669)--(6.01633,-1.03643)--(6.01621,-1.03617)--(6.01609,-1.03591)--
> (6.01596,-1.03565)--(6.01584,-1.03539)--(6.01572,-1.03514)--(6.0156,-1.03488)--(6.01547,-1.03462)--(6.01535,-1.03436)--(6.01523,-1.0341)--(6.01511,-1.03384)--(6.01498,-1.03359)--(6.01486,-1.03333)--(6.01474,-1.03307)--(6.01462,-1.03281)--(6.01449,-1.03256)--(6.01437,-1.0323)--(6.01425,-1.03204)--(6.01413,-1.03178)--(6.014,-1.03153)--(6.01388,-1.03127)--(6.01376,-1.03101)--(6.01364,-1.03076)--(6.01351,-1.0305)--(6.01339,-1.03024)--(6.01327,-1.02999)--(6.01315,-1.02973)--(6.01302,-1.02948)--
> (6.0129,-1.02922)--(6.01278,-1.02896)--(6.01265,-1.02871)--(6.01253,-1.02845)--(6.01241,-1.0282)--(6.01229,-1.02794)--(6.01216,-1.02769)--(6.01204,-1.02743)--(6.01192,-1.02718)--(6.0118,-1.02692)--(6.01167,-1.02667)--(6.01155,-1.02641)--(6.01143,-1.02616)--(6.0113,-1.02591)--(6.01118,-1.02565)--(6.01106,-1.0254)--(6.01094,-1.02514)--(6.01081,-1.02489)--(6.01069,-1.02464)--(6.01057,-1.02438)--(6.01044,-1.02413)--(6.01032,-1.02388)--(6.0102,-1.02362)--(6.01007,-1.02337)--(6.00995,-1.02312)--
> (6.00983,-1.02286)--(6.00971,-1.02261)--(6.00958,-1.02236)--(6.00946,-1.02211)--(6.00934,-1.02185)--(6.00921,-1.0216)--(6.00909,-1.02135)--(6.00897,-1.0211)--(6.00884,-1.02085)--(6.00872,-1.02059)--(6.0086,-1.02034)--(6.00847,-1.02009)--(6.00835,-1.01984)--(6.00823,-1.01959)--(6.0081,-1.01934)--(6.00798,-1.01909)--(6.00786,-1.01884)--(6.00774,-1.01859)--(6.00761,-1.01833)--(6.00749,-1.01808)--(6.00737,-1.01783)--(6.00724,-1.01758)--(6.00712,-1.01733)--(6.007,-1.01708)--(6.00687,-1.01683)--
> (6.00675,-1.01658)--(6.00663,-1.01633)--(6.0065,-1.01608)--(6.00638,-1.01584)--(6.00626,-1.01559)--(6.00613,-1.01534)--(6.00601,-1.01509)--(6.00589,-1.01484)--(6.00576,-1.01459)--(6.00564,-1.01434)--(6.00552,-1.01409)--(6.00539,-1.01384)--(6.00527,-1.0136)--(6.00514,-1.01335)--(6.00502,-1.0131)--(6.0049,-1.01285)--(6.00477,-1.0126)--(6.00465,-1.01236)--(6.00453,-1.01211)--(6.0044,-1.01186)--(6.00428,-1.01161)--(6.00416,-1.01137)--(6.00403,-1.01112)--(6.00391,-1.01087)--(6.00379,-1.01063)--
> (6.00366,-1.01038)--(6.00354,-1.01013)--(6.00341,-1.00988)--(6.00329,-1.00964)--(6.00317,-1.00939)--(6.00304,-1.00915)--(6.00292,-1.0089)--(6.0028,-1.00865)--(6.00267,-1.00841)--(6.00255,-1.00816)--(6.00242,-1.00792)--(6.0023,-1.00767)--(6.00218,-1.00743)--(6.00205,-1.00718)--(6.00193,-1.00694)--(6.00181,-1.00669)--(6.00168,-1.00645)--(6.00156,-1.0062)--(6.00143,-1.00596)--(6.00131,-1.00571)--(6.00119,-1.00547)--(6.00106,-1.00522)--(6.00094,-1.00498)--(6.00082,-1.00473)--(6.00069,-1.00449)--
> (6.00057,-1.00425)--(6.00044,-1.004)--(6.00032,-1.00376)--(6.0002,-1.00352)--(6.00007,-1.00327)--(5.99995,-1.00303)--(5.99982,-1.00279)--(5.9997,-1.00254)--(5.99958,-1.0023)--(5.99945,-1.00206)--(5.99933,-1.00181)--(5.9992,-1.00157)--(5.99908,-1.00133)--(5.99896,-1.00109)--(5.99883,-1.00084)--(5.99871,-1.0006)--(5.99858,-1.00036)--(5.99846,-1.00012)--(5.99833,-0.999876)--(5.99821,-0.999634)--(5.99809,-0.999393)--(5.99796,-0.999151)--(5.99784,-0.99891)--(5.99771,-0.998669)--(5.99759,-0.998428)--
> (5.99747,-0.998187)--(5.99734,-0.997946)--(5.99722,-0.997705)--(5.99709,-0.997464)--(5.99697,-0.997224)--(5.99684,-0.996983)--(5.99672,-0.996743)--(5.9966,-0.996503)--(5.99647,-0.996263)--(5.99635,-0.996023)--(5.99622,-0.995783)--(5.9961,-0.995543)--(5.99597,-0.995303)--(5.99585,-0.995064)--(5.99573,-0.994824)--(5.9956,-0.994585)--(5.99548,-0.994346)--(5.99535,-0.994107)--(5.99523,-0.993868)--(5.9951,-0.993629)--(5.99498,-0.99339)--(5.99485,-0.993151)--(5.99473,-0.992913)--(5.99461,-0.992675)--
> (5.99448,-0.992436)--(5.99436,-0.992198)--(5.99423,-0.99196)--(5.99411,-0.991722)--(5.99398,-0.991484)--(5.99386,-0.991246)--(5.99373,-0.991009)--(5.99361,-0.990771)--(5.99348,-0.990534)--(5.99336,-0.990297)--(5.99324,-0.990059)--(5.99311,-0.989822)--(5.99299,-0.989585)--(5.99286,-0.989348)--(5.99274,-0.989112)--(5.99261,-0.988875)--(5.99249,-0.988639)--(5.99236,-0.988402)--(5.99224,-0.988166)--(5.99211,-0.98793)--(5.99199,-0.987694)--(5.99186,-0.987458)--(5.99174,-0.987222)--(5.99161,-0.986986)--
> (5.99149,-0.98675)--(5.99137,-0.986515)--(5.99124,-0.986279)--(5.99112,-0.986044)--(5.99099,-0.985809)--(5.99087,-0.985574)--(5.99074,-0.985339)--(5.99062,-0.985104)--(5.99049,-0.984869)--(5.99037,-0.984635)--(5.99024,-0.9844)--(5.99012,-0.984166)--(5.98999,-0.983931)--(5.98987,-0.983697)--(5.98974,-0.983463)--(5.98962,-0.983229)--(5.98949,-0.982995)--(5.98937,-0.982761)--(5.98924,-0.982528)--(5.98912,-0.982294)--(5.98899,-0.982061)--(5.98887,-0.981827)--(5.98874,-0.981594)--(5.98862,-0.981361)--
> (5.98849,-0.981128)--(5.98837,-0.980895)--(5.98824,-0.980662)--(5.98812,-0.98043)--(5.98799,-0.980197)--(5.98787,-0.979965)--(5.98774,-0.979732)--(5.98762,-0.9795)--(5.98749,-0.979268)--(5.98737,-0.979036)--(5.98724,-0.978804)--(5.98712,-0.978572)--(5.98699,-0.97834)--(5.98687,-0.978109)--(5.98674,-0.977877)--(5.98662,-0.977646)--(5.98649,-0.977415)--(5.98637,-0.977183)--(5.98624,-0.976952)--(5.98612,-0.976721)--(5.98599,-0.97649)--(5.98587,-0.97626)--(5.98574,-0.976029)--(5.98562,-0.975799)--
> (5.98549,-0.975568)--(5.98537,-0.975338)--(5.98524,-0.975108)--(5.98511,-0.974878)--(5.98499,-0.974648)--(5.98486,-0.974418)--(5.98474,-0.974188)--(5.98461,-0.973958)--(5.98449,-0.973729)--(5.98436,-0.973499)--(5.98424,-0.97327)--(5.98411,-0.973041)--(5.98399,-0.972811)--(5.98386,-0.972582)--(5.98374,-0.972353)--(5.98361,-0.972125)--(5.98349,-0.971896)--(5.98336,-0.971667)--(5.98323,-0.971439)--(5.98311,-0.97121)--(5.98298,-0.970982)--(5.98286,-0.970754)--(5.98273,-0.970526)--(5.98261,-0.970298)--
> (5.98248,-0.97007)--(5.98236,-0.969842)--(5.98223,-0.969614)--(5.9821,-0.969387)--(5.98198,-0.969159)--(5.98185,-0.968932)--(5.98173,-0.968705)--(5.9816,-0.968478)--(5.98148,-0.968251)--(5.98135,-0.968024)--(5.98123,-0.967797)--(5.9811,-0.96757)--(5.98097,-0.967344)--(5.98085,-0.967117)--(5.98072,-0.966891)--(5.9806,-0.966664)--(5.98047,-0.966438)--(5.98035,-0.966212)--(5.98022,-0.965986)--(5.9801,-0.96576)--(5.97997,-0.965534)--(5.97984,-0.965309)--(5.97972,-0.965083)--(5.97959,-0.964858)--
> (5.97947,-0.964632)--(5.97934,-0.964407)--(5.97922,-0.964182)--(5.97909,-0.963957)--(5.97896,-0.963732)--(5.97884,-0.963507)--(5.97871,-0.963282)--(5.97859,-0.963057)--(5.97846,-0.962833)--(5.97833,-0.962609)--(5.97821,-0.962384)--(5.97808,-0.96216)--(5.97796,-0.961936)--(5.97783,-0.961712)--(5.97771,-0.961488)--(5.97758,-0.961264)--(5.97745,-0.96104)--(5.97733,-0.960817)--(5.9772,-0.960593)--(5.97708,-0.96037)--(5.97695,-0.960146)--(5.97682,-0.959923)--(5.9767,-0.9597)--(5.97657,-0.959477)--
> (5.97645,-0.959254)--(5.97632,-0.959031)--(5.97619,-0.958809)--(5.97607,-0.958586)--(5.97594,-0.958364)--(5.97582,-0.958141)--(5.97569,-0.957919)--(5.97556,-0.957697)--(5.97544,-0.957475)--(5.97531,-0.957253)--(5.97519,-0.957031)--(5.97506,-0.956809)--(5.97493,-0.956587)--(5.97481,-0.956366)--(5.97468,-0.956144)--(5.97456,-0.955923)--(5.97443,-0.955702)--(5.9743,-0.95548)--(5.97418,-0.955259)--(5.97405,-0.955038)--(5.97393,-0.954818)--(5.9738,-0.954597)--(5.97367,-0.954376)--(5.97355,-0.954155)--
> (5.97342,-0.953935)--(5.97329,-0.953715)--(5.97317,-0.953494)--(5.97304,-0.953274)--(5.97292,-0.953054)--(5.97279,-0.952834)--(5.97266,-0.952614)--(5.97254,-0.952395)--(5.97241,-0.952175)--(5.97229,-0.951955)--(5.97216,-0.951736)--(5.97203,-0.951516)--(5.97191,-0.951297)--(5.97178,-0.951078)--(5.97165,-0.950859)--(5.97153,-0.95064)--(5.9714,-0.950421)--(5.97127,-0.950202)--(5.97115,-0.949984)--(5.97102,-0.949765)--(5.9709,-0.949547)--(5.97077,-0.949328)--(5.97064,-0.94911)--(5.97052,-0.948892)--
> (5.97039,-0.948674)--(5.97026,-0.948456)--(5.97014,-0.948238)--(5.97001,-0.94802)--(5.96988,-0.947802)--(5.96976,-0.947585)--(5.96963,-0.947367)--(5.96951,-0.94715)--(5.96938,-0.946933)--(5.96925,-0.946715)--(5.96913,-0.946498)--(5.969,-0.946281)--(5.96887,-0.946065)--(5.96875,-0.945848)--(5.96862,-0.945631)--(5.96849,-0.945414)--(5.96837,-0.945198)--(5.96824,-0.944982)--(5.96811,-0.944765)--(5.96799,-0.944549)--(5.96786,-0.944333)--(5.96773,-0.944117)--(5.96761,-0.943901)--(5.96748,-0.943685)--
> (5.96735,-0.943469)--(5.96723,-0.943254)--(5.9671,-0.943038)--(5.96697,-0.942823)--(5.96685,-0.942608)--(5.96672,-0.942392)--(5.96659,-0.942177)--(5.96647,-0.941962)--(5.96634,-0.941747)--(5.96621,-0.941532)--(5.96609,-0.941318)--(5.96596,-0.941103)--(5.96583,-0.940888)--(5.96571,-0.940674)--(5.96558,-0.94046)--(5.96545,-0.940245)--(5.96533,-0.940031)--(5.9652,-0.939817)--(5.96507,-0.939603)--(5.96495,-0.939389)--(5.96482,-0.939176)--(5.96469,-0.938962)--(5.96457,-0.938748)--(5.96444,-0.938535)--
> (5.96431,-0.938321)--(5.96419,-0.938108)--(5.96406,-0.937895)--(5.96393,-0.937682)--(5.96381,-0.937469)--(5.96368,-0.937256)--(5.96355,-0.937043)--(5.96342,-0.93683)--(5.9633,-0.936618)--(5.96317,-0.936405)--(5.96304,-0.936193)--(5.96292,-0.93598)--(5.96279,-0.935768)--(5.96266,-0.935556)--(5.96254,-0.935344)--(5.96241,-0.935132)--(5.96228,-0.93492)--(5.96216,-0.934708)--(5.96203,-0.934497)--(5.9619,-0.934285)--(5.96177,-0.934074)--(5.96165,-0.933862)--(5.96152,-0.933651)--(5.96139,-0.93344)--
> (5.96127,-0.933229)--(5.96114,-0.933018)--(5.96101,-0.932807)--(5.96089,-0.932596)--(5.96076,-0.932385)--(5.96063,-0.932175)--(5.9605,-0.931964)--(5.96038,-0.931754)--(5.96025,-0.931543)--(5.96012,-0.931333)--(5.96,-0.931123)--(5.95987,-0.930913)--(5.95974,-0.930703)--(5.95961,-0.930493)--(5.95949,-0.930283)--(5.95936,-0.930073)--(5.95923,-0.929864)--(5.95911,-0.929654)--(5.95898,-0.929445)--(5.95885,-0.929236)--(5.95872,-0.929026)--(5.9586,-0.928817)--(5.95847,-0.928608)--(5.95834,-0.928399)--
> (5.95822,-0.92819)--(5.95809,-0.927982)--(5.95796,-0.927773)--(5.95783,-0.927564)--(5.95771,-0.927356)--(5.95758,-0.927148)--(5.95745,-0.926939)--(5.95732,-0.926731)--(5.9572,-0.926523)--(5.95707,-0.926315)--(5.95694,-0.926107)--(5.95681,-0.925899)--(5.95669,-0.925691)--(5.95656,-0.925484)--(5.95643,-0.925276)--(5.95631,-0.925069)--(5.95618,-0.924861)--(5.95605,-0.924654)--(5.95592,-0.924447)--(5.9558,-0.92424)--(5.95567,-0.924033)--(5.95554,-0.923826)--(5.95541,-0.923619)--(5.95529,-0.923413)--
> (5.95516,-0.923206)--(5.95503,-0.922999)--(5.9549,-0.922793)--(5.95478,-0.922587)--(5.95465,-0.92238)--(5.95452,-0.922174)--(5.95439,-0.921968)--(5.95427,-0.921762)--(5.95414,-0.921556)--(5.95401,-0.92135)--(5.95388,-0.921145)--(5.95376,-0.920939)--(5.95363,-0.920734)--(5.9535,-0.920528)--(5.95337,-0.920323)--(5.95325,-0.920118)--(5.95312,-0.919912)--(5.95299,-0.919707)--(5.95286,-0.919502)--(5.95274,-0.919297)--(5.95261,-0.919093)--(5.95248,-0.918888)--(5.95235,-0.918683)--(5.95223,-0.918479)--
> (5.9521,-0.918274)--(5.95197,-0.91807)--(5.95184,-0.917866)--(5.95172,-0.917662)--(5.95159,-0.917457)--(5.95146,-0.917253)--(5.95133,-0.91705)--(5.9512,-0.916846)--(5.95108,-0.916642)--(5.95095,-0.916438)--(5.95082,-0.916235)--(5.95069,-0.916031)--(5.95057,-0.915828)--(5.95044,-0.915625)--(5.95031,-0.915422)--(5.95018,-0.915219)--(5.95005,-0.915016)--(5.94993,-0.914813)--(5.9498,-0.91461)--(5.94967,-0.914407)--(5.94954,-0.914205)--(5.94942,-0.914002)--(5.94929,-0.9138)--(5.94916,-0.913597)--
> (5.94903,-0.913395)--(5.9489,-0.913193)--(5.94878,-0.912991)--(5.94865,-0.912789)--(5.94852,-0.912587)--(5.94839,-0.912385)--(5.94827,-0.912183)--(5.94814,-0.911981)--(5.94801,-0.91178)--(5.94788,-0.911578)--(5.94775,-0.911377)--(5.94763,-0.911176)--(5.9475,-0.910975)--(5.94737,-0.910773)--(5.94724,-0.910572)--(5.94711,-0.910371)--(5.94699,-0.910171)--(5.94686,-0.90997)--(5.94673,-0.909769)--(5.9466,-0.909569)--(5.94647,-0.909368)--(5.94635,-0.909168)--(5.94622,-0.908967)--(5.94609,-0.908767)--
> (5.94596,-0.908567)--(5.94583,-0.908367)--(5.94571,-0.908167)--(5.94558,-0.907967)--(5.94545,-0.907767)--(5.94532,-0.907567)--(5.94519,-0.907368)--(5.94507,-0.907168)--(5.94494,-0.906969)--(5.94481,-0.90677)--(5.94468,-0.90657)--(5.94455,-0.906371)--(5.94443,-0.906172)--(5.9443,-0.905973)--(5.94417,-0.905774)--(5.94404,-0.905575)--(5.94391,-0.905376)--(5.94379,-0.905178)--(5.94366,-0.904979)--(5.94353,-0.904781)--(5.9434,-0.904582)--(5.94327,-0.904384)--(5.94314,-0.904186)--(5.94302,-0.903988)--
> (5.94289,-0.90379)--(5.94276,-0.903592)--(5.94263,-0.903394)--(5.9425,-0.903196)--(5.94237,-0.902998)--(5.94225,-0.902801)--(5.94212,-0.902603)--(5.94199,-0.902406)--(5.94186,-0.902208)--(5.94173,-0.902011)--(5.94161,-0.901814)--(5.94148,-0.901617)--(5.94135,-0.90142)--(5.94122,-0.901223)--(5.94109,-0.901026)--(5.94096,-0.900829)--(5.94084,-0.900632)--(5.94071,-0.900436)--(5.94058,-0.900239)--(5.94045,-0.900043)--(5.94032,-0.899847)--(5.94019,-0.89965)--(5.94007,-0.899454)--(5.93994,-0.899258)--
> (5.93981,-0.899062)--(5.93968,-0.898866)--(5.93955,-0.89867)--(5.93942,-0.898475)--(5.9393,-0.898279)--(5.93917,-0.898084)--(5.93904,-0.897888)--(5.93891,-0.897693)--(5.93878,-0.897497)--(5.93865,-0.897302)--(5.93852,-0.897107)--(5.9384,-0.896912)--(5.93827,-0.896717)--(5.93814,-0.896522)--(5.93801,-0.896327)--(5.93788,-0.896133)--(5.93775,-0.895938)--(5.93762,-0.895743)--(5.9375,-0.895549)--(5.93737,-0.895355)--(5.93724,-0.89516)--(5.93711,-0.894966)--(5.93698,-0.894772)--(5.93685,-0.894578)--
> (5.93673,-0.894384)--(5.9366,-0.89419)--(5.93647,-0.893996)--(5.93634,-0.893803)--(5.93621,-0.893609)--(5.93608,-0.893416)--(5.93595,-0.893222)--(5.93583,-0.893029)--(5.9357,-0.892835)--(5.93557,-0.892642)--(5.93544,-0.892449)--(5.93531,-0.892256)--(5.93518,-0.892063)--(5.93505,-0.89187)--(5.93492,-0.891678)--(5.9348,-0.891485)--(5.93467,-0.891292)--(5.93454,-0.8911)--(5.93441,-0.890907)--(5.93428,-0.890715)--(5.93415,-0.890523)--(5.93402,-0.89033)--(5.93389,-0.890138)--(5.93377,-0.889946)--
> (5.93364,-0.889754)--(5.93351,-0.889563)--(5.93338,-0.889371)--(5.93325,-0.889179)--(5.93312,-0.888987)--(5.93299,-0.888796)--(5.93286,-0.888605)--(5.93274,-0.888413)--(5.93261,-0.888222)--(5.93248,-0.888031)--(5.93235,-0.88784)--(5.93222,-0.887649)--(5.93209,-0.887458)--(5.93196,-0.887267)--(5.93183,-0.887076)--(5.93171,-0.886885)--(5.93158,-0.886695)--(5.93145,-0.886504)--(5.93132,-0.886314)--(5.93119,-0.886123)--(5.93106,-0.885933)--(5.93093,-0.885743)--(5.9308,-0.885553)--(5.93067,-0.885363)--
> (5.93055,-0.885173)--(5.93042,-0.884983)--(5.93029,-0.884793)--(5.93016,-0.884603)--(5.93003,-0.884414)--(5.9299,-0.884224)--(5.92977,-0.884035)--(5.92964,-0.883845)--(5.92951,-0.883656)--(5.92938,-0.883467)--(5.92926,-0.883278)--(5.92913,-0.883088)--(5.929,-0.882899)--(5.92887,-0.882711)--(5.92874,-0.882522)--(5.92861,-0.882333)--(5.92848,-0.882144)--(5.92835,-0.881956)--(5.92822,-0.881767)--(5.92809,-0.881579)--(5.92797,-0.881391)--(5.92784,-0.881202)--(5.92771,-0.881014)--(5.92758,-0.880826)--
> (5.92745,-0.880638)--(5.92732,-0.88045)--(5.92719,-0.880262)--(5.92706,-0.880074)--(5.92693,-0.879887)--(5.9268,-0.879699)--(5.92667,-0.879512)--(5.92654,-0.879324)--(5.92642,-0.879137)--(5.92629,-0.87895)--(5.92616,-0.878762)--(5.92603,-0.878575)--(5.9259,-0.878388)--(5.92577,-0.878201)--(5.92564,-0.878014)--(5.92551,-0.877828)--(5.92538,-0.877641)--(5.92525,-0.877454)--(5.92512,-0.877268)--(5.92499,-0.877081)--(5.92487,-0.876895)--(5.92474,-0.876708)--(5.92461,-0.876522)--(5.92448,-0.876336)--
> (5.92435,-0.87615)--(5.92422,-0.875964)--(5.92409,-0.875778)--(5.92396,-0.875592)--(5.92383,-0.875406)--(5.9237,-0.875221)--(5.92357,-0.875035)--(5.92344,-0.87485)--(5.92331,-0.874664)--(5.92318,-0.874479)--(5.92306,-0.874293)--(5.92293,-0.874108)--(5.9228,-0.873923)--(5.92267,-0.873738)--(5.92254,-0.873553)--(5.92241,-0.873368)--(5.92228,-0.873183)--(5.92215,-0.872999)--(5.92202,-0.872814)--(5.92189,-0.872629)--(5.92176,-0.872445)--(5.92163,-0.872261)--(5.9215,-0.872076)--(5.92137,-0.871892)--
> (5.92124,-0.871708)--(5.92111,-0.871524)--(5.92098,-0.87134)--(5.92086,-0.871156)--(5.92073,-0.870972)--(5.9206,-0.870788)--(5.92047,-0.870604)--(5.92034,-0.870421)--(5.92021,-0.870237)--(5.92008,-0.870054)--(5.91995,-0.86987)--(5.91982,-0.869687)--(5.91969,-0.869504)--(5.91956,-0.86932)--(5.91943,-0.869137)--(5.9193,-0.868954)--(5.91917,-0.868771)--(5.91904,-0.868589)--(5.91891,-0.868406)--(5.91878,-0.868223)--(5.91865,-0.86804)--(5.91852,-0.867858)--(5.91839,-0.867675)--(5.91826,-0.867493)--
> (5.91813,-0.867311)--(5.918,-0.867129)--(5.91788,-0.866946)--(5.91775,-0.866764)--(5.91762,-0.866582)--(5.91749,-0.8664)--(5.91736,-0.866219)--(5.91723,-0.866037)--(5.9171,-0.865855)--(5.91697,-0.865673)--(5.91684,-0.865492)--(5.91671,-0.86531)--(5.91658,-0.865129)--(5.91645,-0.864948)--(5.91632,-0.864767)--(5.91619,-0.864585)--(5.91606,-0.864404)--(5.91593,-0.864223)--(5.9158,-0.864042)--(5.91567,-0.863862)--(5.91554,-0.863681)--(5.91541,-0.8635)--(5.91528,-0.863319)--(5.91515,-0.863139)--
> (5.91502,-0.862958)--(5.91489,-0.862778)--(5.91476,-0.862598)--(5.91463,-0.862418)--(5.9145,-0.862237)--(5.91437,-0.862057)--(5.91424,-0.861877)--(5.91411,-0.861697)--(5.91398,-0.861517)--(5.91385,-0.861338)--(5.91372,-0.861158)--(5.91359,-0.860978)--(5.91346,-0.860799)--(5.91333,-0.860619)--(5.9132,-0.86044)--(5.91307,-0.860261)--(5.91294,-0.860081)--(5.91281,-0.859902)--(5.91268,-0.859723)--(5.91255,-0.859544)--(5.91242,-0.859365)--(5.91229,-0.859186)--(5.91216,-0.859007)--(5.91203,-0.858829)--
> (5.9119,-0.85865)--(5.91177,-0.858472)--(5.91164,-0.858293)--(5.91151,-0.858115)--(5.91138,-0.857936)--(5.91125,-0.857758)--(5.91112,-0.85758)--(5.91099,-0.857402)--(5.91086,-0.857224)--(5.91073,-0.857046)--(5.9106,-0.856868)--(5.91047,-0.85669)--(5.91034,-0.856512)--(5.91021,-0.856335)--(5.91008,-0.856157)--(5.90995,-0.855979)--(5.90982,-0.855802)--(5.90969,-0.855625)--(5.90956,-0.855447)--(5.90943,-0.85527)--(5.9093,-0.855093)--(5.90917,-0.854916)--(5.90904,-0.854739)--(5.90891,-0.854562)--
> (5.90878,-0.854385)--(5.90865,-0.854208)--(5.90852,-0.854032)--(5.90839,-0.853855)--(5.90826,-0.853679)--(5.90813,-0.853502)--(5.908,-0.853326)--(5.90787,-0.853149)--(5.90774,-0.852973)--(5.90761,-0.852797)--(5.90748,-0.852621)--(5.90735,-0.852445)--(5.90722,-0.852269)--(5.90709,-0.852093)--(5.90696,-0.851917)--(5.90683,-0.851741)--(5.9067,-0.851566)--(5.90657,-0.85139)--(5.90644,-0.851215)--(5.90631,-0.851039)--(5.90618,-0.850864)--(5.90605,-0.850689)--(5.90592,-0.850513)--(5.90579,-0.850338)--
> (5.90566,-0.850163)--(5.90553,-0.849988)--(5.9054,-0.849813)--(5.90527,-0.849638)--(5.90514,-0.849464)--(5.90501,-0.849289)--(5.90488,-0.849114)--(5.90475,-0.84894)--(5.90462,-0.848765)--(5.90449,-0.848591)--(5.90436,-0.848416)--(5.90422,-0.848242)--(5.90409,-0.848068)--(5.90396,-0.847894)--(5.90383,-0.84772)--(5.9037,-0.847546)--(5.90357,-0.847372)--(5.90344,-0.847198)--(5.90331,-0.847024)--(5.90318,-0.846851)--(5.90305,-0.846677)--(5.90292,-0.846503)--(5.90279,-0.84633)--(5.90266,-0.846157)--
> (5.90253,-0.845983)--(5.9024,-0.84581)--(5.90227,-0.845637)--(5.90214,-0.845464)--(5.90201,-0.845291)--(5.90188,-0.845118)--(5.90175,-0.844945)--(5.90162,-0.844772)--(5.90149,-0.844599)--(5.90135,-0.844427)--(5.90122,-0.844254)--(5.90109,-0.844082)--(5.90096,-0.843909)--(5.90083,-0.843737)--(5.9007,-0.843564)--(5.90057,-0.843392)--(5.90044,-0.84322)--(5.90031,-0.843048)--(5.90018,-0.842876)--(5.90005,-0.842704)--(5.89992,-0.842532)--(5.89979,-0.84236)--(5.89966,-0.842188)--(5.89953,-0.842017)--
> (5.8994,-0.841845)--(5.89927,-0.841674)--(5.89913,-0.841502)--(5.899,-0.841331)--(5.89887,-0.84116)--(5.89874,-0.840988)--(5.89861,-0.840817)--(5.89848,-0.840646)--(5.89835,-0.840475)--(5.89822,-0.840304)--(5.89809,-0.840133)--(5.89796,-0.839962)--(5.89783,-0.839792)--(5.8977,-0.839621)--(5.89757,-0.83945)--(5.89744,-0.83928)--(5.89731,-0.839109)--(5.89717,-0.838939)--(5.89704,-0.838769)--(5.89691,-0.838598)--(5.89678,-0.838428)--(5.89665,-0.838258)--(5.89652,-0.838088)--(5.89639,-0.837918)--
> (5.89626,-0.837748)--(5.89613,-0.837578)--(5.896,-0.837409)--(5.89587,-0.837239)--(5.89574,-0.837069)--(5.8956,-0.8369)--(5.89547,-0.83673)--(5.89534,-0.836561)--(5.89521,-0.836392)--(5.89508,-0.836222)--(5.89495,-0.836053)--(5.89482,-0.835884)--(5.89469,-0.835715)--(5.89456,-0.835546)--(5.89443,-0.835377)--(5.8943,-0.835208)--(5.89417,-0.835039)--(5.89403,-0.834871)--(5.8939,-0.834702)--(5.89377,-0.834534)--(5.89364,-0.834365)--(5.89351,-0.834197)--(5.89338,-0.834028)--(5.89325,-0.83386)--
> (5.89312,-0.833692)--(5.89299,-0.833524)--(5.89286,-0.833356)--(5.89273,-0.833188)--(5.89259,-0.83302)--(5.89246,-0.832852)--(5.89233,-0.832684)--(5.8922,-0.832516)--(5.89207,-0.832349)--(5.89194,-0.832181)--(5.89181,-0.832014)--(5.89168,-0.831846)--(5.89155,-0.831679)--(5.89141,-0.831511)--(5.89128,-0.831344)--(5.89115,-0.831177)--(5.89102,-0.83101)--(5.89089,-0.830843)--(5.89076,-0.830676)--(5.89063,-0.830509)--(5.8905,-0.830342)--(5.89037,-0.830175)--(5.89024,-0.830009)--(5.8901,-0.829842)--
> (5.88997,-0.829676)--(5.88984,-0.829509)--(5.88971,-0.829343)--(5.88958,-0.829176)--(5.88945,-0.82901)--(5.88932,-0.828844)--(5.88919,-0.828678)--(5.88905,-0.828512)--(5.88892,-0.828346)--(5.88879,-0.82818)--(5.88866,-0.828014)--(5.88853,-0.827848)--(5.8884,-0.827682)--(5.88827,-0.827517)--(5.88814,-0.827351)--(5.88801,-0.827185)--(5.88787,-0.82702)--(5.88774,-0.826855)--(5.88761,-0.826689)--(5.88748,-0.826524)--(5.88735,-0.826359)--(5.88722,-0.826194)--(5.88709,-0.826029)--(5.88696,-0.825864)--
> (5.88682,-0.825699)--(5.88669,-0.825534)--(5.88656,-0.825369)--(5.88643,-0.825204)--(5.8863,-0.82504)--(5.88617,-0.824875)--(5.88604,-0.824711)--(5.8859,-0.824546)--(5.88577,-0.824382)--(5.88564,-0.824218)--(5.88551,-0.824053)--(5.88538,-0.823889)--(5.88525,-0.823725)--(5.88512,-0.823561)--(5.88499,-0.823397)--(5.88485,-0.823233)--(5.88472,-0.823069)--(5.88459,-0.822906)--(5.88446,-0.822742)--(5.88433,-0.822578)--(5.8842,-0.822415)--(5.88407,-0.822251)--(5.88393,-0.822088)--(5.8838,-0.821924)--
> (5.88367,-0.821761)--(5.88354,-0.821598)--(5.88341,-0.821435)--(5.88328,-0.821272)--(5.88315,-0.821109)--(5.88301,-0.820946)--(5.88288,-0.820783)--(5.88275,-0.82062)--(5.88262,-0.820457)--(5.88249,-0.820294)--(5.88236,-0.820132)--(5.88222,-0.819969)--(5.88209,-0.819807)--(5.88196,-0.819644)--(5.88183,-0.819482)--(5.8817,-0.81932)--(5.88157,-0.819157)--(5.88144,-0.818995)--(5.8813,-0.818833)--(5.88117,-0.818671)--(5.88104,-0.818509)--(5.88091,-0.818347)--(5.88078,-0.818185)--(5.88065,-0.818024)--
> (5.88051,-0.817862)--(5.88038,-0.8177)--(5.88025,-0.817539)--(5.88012,-0.817377)--(5.87999,-0.817216)--(5.87986,-0.817054)--(5.87972,-0.816893)--(5.87959,-0.816732)--(5.87946,-0.816571)--(5.87933,-0.81641)--(5.8792,-0.816249)--(5.87907,-0.816088)--(5.87893,-0.815927)--(5.8788,-0.815766)--(5.87867,-0.815605)--(5.87854,-0.815444)--(5.87841,-0.815284)--(5.87828,-0.815123)--(5.87814,-0.814963)--(5.87801,-0.814802)--(5.87788,-0.814642)--(5.87775,-0.814481)--(5.87762,-0.814321)--(5.87748,-0.814161)--
> (5.87735,-0.814001)--(5.87722,-0.813841)--(5.87709,-0.813681)--(5.87696,-0.813521)--(5.87683,-0.813361)--(5.87669,-0.813201)--(5.87656,-0.813041)--(5.87643,-0.812882)--(5.8763,-0.812722)--(5.87617,-0.812563)--(5.87603,-0.812403)--(5.8759,-0.812244)--(5.87577,-0.812084)--(5.87564,-0.811925)--(5.87551,-0.811766)--(5.87538,-0.811607)--(5.87524,-0.811448)--(5.87511,-0.811289)--(5.87498,-0.81113)--(5.87485,-0.810971)--(5.87472,-0.810812)--(5.87458,-0.810653)--(5.87445,-0.810494)--(5.87432,-0.810336)--
> (5.87419,-0.810177)--(5.87406,-0.810019)--(5.87392,-0.80986)--(5.87379,-0.809702)--(5.87366,-0.809544)--(5.87353,-0.809385)--(5.8734,-0.809227)--(5.87326,-0.809069)--(5.87313,-0.808911)--(5.873,-0.808753)--(5.87287,-0.808595)--(5.87274,-0.808437)--(5.8726,-0.808279)--(5.87247,-0.808122)--(5.87234,-0.807964)--(5.87221,-0.807806)--(5.87208,-0.807649)--(5.87194,-0.807491)--(5.87181,-0.807334)--(5.87168,-0.807177)--(5.87155,-0.807019)--(5.87142,-0.806862)--(5.87128,-0.806705)--(5.87115,-0.806548)--
> (5.87102,-0.806391)--(5.87089,-0.806234)--(5.87076,-0.806077)--(5.87062,-0.80592)--(5.87049,-0.805763)--(5.87036,-0.805607)--(5.87023,-0.80545)--(5.87009,-0.805293)--(5.86996,-0.805137)--(5.86983,-0.80498)--(5.8697,-0.804824)--(5.86957,-0.804668)--(5.86943,-0.804511)--(5.8693,-0.804355)--(5.86917,-0.804199)--(5.86904,-0.804043)--(5.8689,-0.803887)--(5.86877,-0.803731)--(5.86864,-0.803575)--(5.86851,-0.803419)--(5.86838,-0.803263)--(5.86824,-0.803108)--(5.86811,-0.802952)--(5.86798,-0.802797)--
> (5.86785,-0.802641)--(5.86771,-0.802486)--(5.86758,-0.80233)--(5.86745,-0.802175)--(5.86732,-0.80202)--(5.86718,-0.801864)--(5.86705,-0.801709)--(5.86692,-0.801554)--(5.86679,-0.801399)--(5.86666,-0.801244)--(5.86652,-0.801089)--(5.86639,-0.800934)--(5.86626,-0.80078)--(5.86613,-0.800625)--(5.86599,-0.80047)--(5.86586,-0.800316)--(5.86573,-0.800161)--(5.8656,-0.800007)--(5.86546,-0.799852)--(5.86533,-0.799698)--(5.8652,-0.799544)--(5.86507,-0.79939)--(5.86493,-0.799235)--(5.8648,-0.799081)--
> (5.86467,-0.798927)--(5.86454,-0.798773)--(5.8644,-0.79862)--(5.86427,-0.798466)--(5.86414,-0.798312)--(5.86401,-0.798158)--(5.86387,-0.798005)--(5.86374,-0.797851)--(5.86361,-0.797697)--(5.86348,-0.797544)--(5.86334,-0.797391)--(5.86321,-0.797237)--(5.86308,-0.797084)--(5.86295,-0.796931)--(5.86281,-0.796778)--(5.86268,-0.796625)--(5.86255,-0.796472)--(5.86242,-0.796319)--(5.86228,-0.796166)--(5.86215,-0.796013)--(5.86202,-0.79586)--(5.86189,-0.795707)--(5.86175,-0.795555)--(5.86162,-0.795402)--
> (5.86149,-0.795249)--(5.86136,-0.795097)--(5.86122,-0.794945)--(5.86109,-0.794792)--(5.86096,-0.79464)--(5.86083,-0.794488)--(5.86069,-0.794336)--(5.86056,-0.794183)--(5.86043,-0.794031)--(5.86029,-0.793879)--(5.86016,-0.793727)--(5.86003,-0.793576)--(5.8599,-0.793424)--(5.85976,-0.793272)--(5.85963,-0.79312)--(5.8595,-0.792969)--(5.85937,-0.792817)--(5.85923,-0.792666)--(5.8591,-0.792514)--(5.85897,-0.792363)--(5.85883,-0.792212)--(5.8587,-0.79206)--(5.85857,-0.791909)--(5.85844,-0.791758)--
> (5.8583,-0.791607)--(5.85817,-0.791456)--(5.85804,-0.791305)--(5.8579,-0.791154)--(5.85777,-0.791003)--(5.85764,-0.790852)--(5.85751,-0.790702)--(5.85737,-0.790551)--(5.85724,-0.7904)--(5.85711,-0.79025)--(5.85697,-0.790099)--(5.85684,-0.789949)--(5.85671,-0.789799)--(5.85658,-0.789648)--(5.85644,-0.789498)--(5.85631,-0.789348)--(5.85618,-0.789198)--(5.85604,-0.789048)--(5.85591,-0.788898)--(5.85578,-0.788748)--(5.85565,-0.788598)--(5.85551,-0.788448)--(5.85538,-0.788298)--(5.85525,-0.788149)--
> (5.85511,-0.787999)--(5.85498,-0.78785)--(5.85485,-0.7877)--(5.85472,-0.787551)--(5.85458,-0.787401)--(5.85445,-0.787252)--(5.85432,-0.787103)--(5.85418,-0.786953)--(5.85405,-0.786804)--(5.85392,-0.786655)--(5.85378,-0.786506)--(5.85365,-0.786357)--(5.85352,-0.786208)--(5.85338,-0.786059)--(5.85325,-0.785911)--(5.85312,-0.785762)--(5.85299,-0.785613)--(5.85285,-0.785465)--(5.85272,-0.785316)--(5.85259,-0.785167)--(5.85245,-0.785019)--(5.85232,-0.784871)--(5.85219,-0.784722)--(5.85205,-0.784574)--
> (5.85192,-0.784426)--(5.85179,-0.784278)--(5.85165,-0.78413)--(5.85152,-0.783982)--(5.85139,-0.783834)--(5.85125,-0.783686)--(5.85112,-0.783538)--(5.85099,-0.78339)--(5.85086,-0.783242)--(5.85072,-0.783095)--(5.85059,-0.782947)--(5.85046,-0.782799)--(5.85032,-0.782652)--(5.85019,-0.782505)--(5.85006,-0.782357)--(5.84992,-0.78221)--(5.84979,-0.782063)--(5.84966,-0.781915)--(5.84952,-0.781768)--(5.84939,-0.781621)--(5.84926,-0.781474)--(5.84912,-0.781327)--(5.84899,-0.78118)--(5.84886,-0.781033)--
> (5.84872,-0.780887)--(5.84859,-0.78074)--(5.84846,-0.780593)--(5.84832,-0.780447)--(5.84819,-0.7803)--(5.84806,-0.780153)--(5.84792,-0.780007)--(5.84779,-0.779861)--(5.84766,-0.779714)--(5.84752,-0.779568)--(5.84739,-0.779422)--(5.84726,-0.779276)--(5.84712,-0.77913)--(5.84699,-0.778984)--(5.84686,-0.778838)--(5.84672,-0.778692)--(5.84659,-0.778546)--(5.84646,-0.7784)--(5.84632,-0.778254)--(5.84619,-0.778109)--(5.84606,-0.777963)--(5.84592,-0.777817)--(5.84579,-0.777672)--(5.84565,-0.777526)--
> (5.84552,-0.777381)--(5.84539,-0.777236)--(5.84525,-0.77709)--(5.84512,-0.776945)--(5.84499,-0.7768)--(5.84485,-0.776655)--(5.84472,-0.77651)--(5.84459,-0.776365)--(5.84445,-0.77622)--(5.84432,-0.776075)--(5.84419,-0.77593)--(5.84405,-0.775785)--(5.84392,-0.775641)--(5.84379,-0.775496)--(5.84365,-0.775351)--(5.84352,-0.775207)--(5.84338,-0.775062)--(5.84325,-0.774918)--(5.84312,-0.774774)--(5.84298,-0.774629)--(5.84285,-0.774485)--(5.84272,-0.774341)--(5.84258,-0.774197)--(5.84245,-0.774053)--
> (5.84232,-0.773909)--(5.84218,-0.773765)--(5.84205,-0.773621)--(5.84191,-0.773477)--(5.84178,-0.773333)--(5.84165,-0.773189)--(5.84151,-0.773046)--(5.84138,-0.772902)--(5.84125,-0.772758)--(5.84111,-0.772615)--(5.84098,-0.772471)--(5.84084,-0.772328)--(5.84071,-0.772185)--(5.84058,-0.772041)--(5.84044,-0.771898)--(5.84031,-0.771755)--(5.84018,-0.771612)--(5.84004,-0.771469)--(5.83991,-0.771326)--(5.83977,-0.771183)--(5.83964,-0.77104)--(5.83951,-0.770897)--(5.83937,-0.770754)--
> (5.83924,-0.770612)--(5.83911,-0.770469)--(5.83897,-0.770326)--(5.83884,-0.770184)--(5.8387,-0.770041)--(5.83857,-0.769899)--(5.83844,-0.769756)--(5.8383,-0.769614)--(5.83817,-0.769472)--(5.83803,-0.76933)--(5.8379,-0.769188)--(5.83777,-0.769045)--(5.83763,-0.768903)--(5.8375,-0.768761)--(5.83736,-0.768619)--(5.83723,-0.768478)--(5.8371,-0.768336)--(5.83696,-0.768194)--(5.83683,-0.768052)--(5.83669,-0.767911)--(5.83656,-0.767769)--(5.83643,-0.767627)--(5.83629,-0.767486)--(5.83616,-0.767345)--
> (5.83602,-0.767203)--(5.83589,-0.767062)--(5.83576,-0.766921)--(5.83562,-0.766779)--(5.83549,-0.766638)--(5.83535,-0.766497)--(5.83522,-0.766356)--(5.83509,-0.766215)--(5.83495,-0.766074)--(5.83482,-0.765933)--(5.83468,-0.765792)--(5.83455,-0.765652)--(5.83442,-0.765511)--(5.83428,-0.76537)--(5.83415,-0.76523)--(5.83401,-0.765089)--(5.83388,-0.764949)--(5.83375,-0.764808)--(5.83361,-0.764668)--(5.83348,-0.764528)--(5.83334,-0.764387)--(5.83321,-0.764247)--(5.83307,-0.764107)--(5.83294,-0.763967)--
> (5.83281,-0.763827)--(5.83267,-0.763687)--(5.83254,-0.763547)--(5.8324,-0.763407)--(5.83227,-0.763267)--(5.83214,-0.763127)--(5.832,-0.762988)--(5.83187,-0.762848)--(5.83173,-0.762708)--(5.8316,-0.762569)--(5.83146,-0.762429)--(5.83133,-0.76229)--(5.8312,-0.762151)--(5.83106,-0.762011)--(5.83093,-0.761872)--(5.83079,-0.761733)--(5.83066,-0.761594)--(5.83052,-0.761454)--(5.83039,-0.761315)--(5.83025,-0.761176)--(5.83012,-0.761037)--(5.82999,-0.760899)--(5.82985,-0.76076)--(5.82972,-0.760621)--
> (5.82958,-0.760482)--(5.82945,-0.760344)--(5.82931,-0.760205)--(5.82918,-0.760066)--(5.82905,-0.759928)--(5.82891,-0.759789)--(5.82878,-0.759651)--(5.82864,-0.759513)--(5.82851,-0.759374)--(5.82837,-0.759236)--(5.82824,-0.759098)--(5.8281,-0.75896)--(5.82797,-0.758822)--(5.82784,-0.758684)--(5.8277,-0.758546)--(5.82757,-0.758408)--(5.82743,-0.75827)--(5.8273,-0.758132)--(5.82716,-0.757994)--(5.82703,-0.757857)--(5.82689,-0.757719)--(5.82676,-0.757581)--(5.82662,-0.757444)--(5.82649,-0.757306)--
> (5.82636,-0.757169)--(5.82622,-0.757032)--(5.82609,-0.756894)--(5.82595,-0.756757)--(5.82582,-0.75662)--(5.82568,-0.756483)--(5.82555,-0.756346)--(5.82541,-0.756208)--(5.82528,-0.756071)--(5.82514,-0.755935)--(5.82501,-0.755798)--(5.82487,-0.755661)--(5.82474,-0.755524)--(5.82461,-0.755387)--(5.82447,-0.755251)--(5.82434,-0.755114)--(5.8242,-0.754977)--(5.82407,-0.754841)--(5.82393,-0.754704)--(5.8238,-0.754568)--(5.82366,-0.754432)--(5.82353,-0.754295)--(5.82339,-0.754159)--(5.82326,-0.754023)--
> (5.82312,-0.753887)--(5.82299,-0.753751)--(5.82285,-0.753615)--(5.82272,-0.753479)--(5.82258,-0.753343)--(5.82245,-0.753207)--(5.82231,-0.753071)--(5.82218,-0.752935)--(5.82205,-0.752799)--(5.82191,-0.752664)--(5.82178,-0.752528)--(5.82164,-0.752393)--(5.82151,-0.752257)--(5.82137,-0.752122)--(5.82124,-0.751986)--(5.8211,-0.751851)--(5.82097,-0.751716)--(5.82083,-0.75158)--(5.8207,-0.751445)--(5.82056,-0.75131)--(5.82043,-0.751175)--(5.82029,-0.75104)--(5.82016,-0.750905)--(5.82002,-0.75077)--
> (5.81989,-0.750635)--(5.81975,-0.7505)--(5.81962,-0.750366)--(5.81948,-0.750231)--(5.81935,-0.750096)--(5.81921,-0.749962)--(5.81908,-0.749827)--(5.81894,-0.749693)--(5.81881,-0.749558)--(5.81867,-0.749424)--(5.81854,-0.749289)--(5.8184,-0.749155)--(5.81827,-0.749021)--(5.81813,-0.748887)--(5.818,-0.748752)--(5.81786,-0.748618)--(5.81773,-0.748484)--(5.81759,-0.74835)--(5.81746,-0.748216)--(5.81732,-0.748083)--(5.81719,-0.747949)--(5.81705,-0.747815)--(5.81692,-0.747681)--(5.81678,-0.747548)--
> (5.81665,-0.747414)--(5.81651,-0.74728)--(5.81638,-0.747147)--(5.81624,-0.747013)--(5.81611,-0.74688)--(5.81597,-0.746747)--(5.81584,-0.746613)--(5.8157,-0.74648)--(5.81556,-0.746347)--(5.81543,-0.746214)--(5.81529,-0.746081)--(5.81516,-0.745948)--(5.81502,-0.745815)--(5.81489,-0.745682)--(5.81475,-0.745549)--(5.81462,-0.745416)--(5.81448,-0.745283)--(5.81435,-0.74515)--(5.81421,-0.745018)--(5.81408,-0.744885)--(5.81394,-0.744753)--(5.81381,-0.74462)--(5.81367,-0.744488)--(5.81354,-0.744355)--
> (5.8134,-0.744223)--(5.81326,-0.74409)--(5.81313,-0.743958)--(5.81299,-0.743826)--(5.81286,-0.743694)--(5.81272,-0.743562)--(5.81259,-0.74343)--(5.81245,-0.743298)--(5.81232,-0.743166)--(5.81218,-0.743034)--(5.81205,-0.742902)--(5.81191,-0.74277)--(5.81178,-0.742638)--(5.81164,-0.742507)--(5.8115,-0.742375)--(5.81137,-0.742243)--(5.81123,-0.742112)--(5.8111,-0.74198)--(5.81096,-0.741849)--(5.81083,-0.741717)--(5.81069,-0.741586)--(5.81056,-0.741455)--(5.81042,-0.741324)--(5.81029,-0.741192)--
> (5.81015,-0.741061)--(5.81001,-0.74093)--(5.80988,-0.740799)--(5.80974,-0.740668)--(5.80961,-0.740537)--(5.80947,-0.740406)--(5.80934,-0.740275)--(5.8092,-0.740145)--(5.80907,-0.740014)--(5.80893,-0.739883)--(5.80879,-0.739753)--(5.80866,-0.739622)--(5.80852,-0.739491)--(5.80839,-0.739361)--(5.80825,-0.739231)--(5.80812,-0.7391)--(5.80798,-0.73897)--(5.80784,-0.73884)--(5.80771,-0.738709)--(5.80757,-0.738579)--(5.80744,-0.738449)--(5.8073,-0.738319)--(5.80717,-0.738189)--(5.80703,-0.738059)--
> (5.80689,-0.737929)--(5.80676,-0.737799)--(5.80662,-0.737669)--(5.80649,-0.737539)--(5.80635,-0.73741)--(5.80622,-0.73728)--(5.80608,-0.73715)--(5.80594,-0.737021)--(5.80581,-0.736891)--(5.80567,-0.736762)--(5.80554,-0.736632)--(5.8054,-0.736503)--(5.80527,-0.736374)--(5.80513,-0.736245)--(5.80499,-0.736115)--(5.80486,-0.735986)--(5.80472,-0.735857)--(5.80459,-0.735728)--(5.80445,-0.735599)--(5.80431,-0.73547)--(5.80418,-0.735341)--(5.80404,-0.735212)--(5.80391,-0.735083)--(5.80377,-0.734955)--
> (5.80363,-0.734826)--(5.8035,-0.734697)--(5.80336,-0.734569)--(5.80323,-0.73444)--(5.80309,-0.734311)--(5.80295,-0.734183)--(5.80282,-0.734055)--(5.80268,-0.733926)--(5.80255,-0.733798)--(5.80241,-0.73367)--(5.80227,-0.733541)--(5.80214,-0.733413)--(5.802,-0.733285)--(5.80187,-0.733157)--(5.80173,-0.733029)--(5.80159,-0.732901)--(5.80146,-0.732773)--(5.80132,-0.732645)--(5.80119,-0.732517)--(5.80105,-0.73239)--(5.80091,-0.732262)--(5.80078,-0.732134)--(5.80064,-0.732006)--(5.80051,-0.731879)--
> (5.80037,-0.731751)--(5.80023,-0.731624)--(5.8001,-0.731496)--(5.79996,-0.731369)--(5.79983,-0.731242)--(5.79969,-0.731114)--(5.79955,-0.730987)--(5.79942,-0.73086)--(5.79928,-0.730733)--(5.79914,-0.730606)--(5.79901,-0.730479)--(5.79887,-0.730352)--(5.79874,-0.730225)--(5.7986,-0.730098)--(5.79846,-0.729971)--(5.79833,-0.729844)--(5.79819,-0.729718)--(5.79805,-0.729591)--(5.79792,-0.729464)--(5.79778,-0.729338)--(5.79765,-0.729211)--(5.79751,-0.729085)--(5.79737,-0.728958)--(5.79724,-0.728832)--
> (5.7971,-0.728705)--(5.79696,-0.728579)--(5.79683,-0.728453)--(5.79669,-0.728327)--(5.79655,-0.7282)--(5.79642,-0.728074)--(5.79628,-0.727948)--(5.79615,-0.727822)--(5.79601,-0.727696)--(5.79587,-0.72757)--(5.79574,-0.727445)--(5.7956,-0.727319)--(5.79546,-0.727193)--(5.79533,-0.727067)--(5.79519,-0.726942)--(5.79505,-0.726816)--(5.79492,-0.72669)--(5.79478,-0.726565)--(5.79464,-0.726439)--(5.79451,-0.726314)--(5.79437,-0.726189)--(5.79423,-0.726063)--(5.7941,-0.725938)--(5.79396,-0.725813)--
> (5.79383,-0.725687)--(5.79369,-0.725562)--(5.79355,-0.725437)--(5.79342,-0.725312)--(5.79328,-0.725187)--(5.79314,-0.725062)--(5.79301,-0.724937)--(5.79287,-0.724813)--(5.79273,-0.724688)--(5.7926,-0.724563)--(5.79246,-0.724438)--(5.79232,-0.724314)--(5.79219,-0.724189)--(5.79205,-0.724064)--(5.79191,-0.72394)--(5.79178,-0.723815)--(5.79164,-0.723691)--(5.7915,-0.723567)--(5.79137,-0.723442)--(5.79123,-0.723318)--(5.79109,-0.723194)--(5.79096,-0.72307)--(5.79082,-0.722946)--(5.79068,-0.722821)--
> (5.79055,-0.722697)--(5.79041,-0.722573)--(5.79027,-0.72245)--(5.79014,-0.722326)--(5.79,-0.722202)--(5.78986,-0.722078)--(5.78972,-0.721954)--(5.78959,-0.721831)--(5.78945,-0.721707)--(5.78931,-0.721583)--(5.78918,-0.72146)--(5.78904,-0.721336)--(5.7889,-0.721213)--(5.78877,-0.721089)--(5.78863,-0.720966)--(5.78849,-0.720843)--(5.78836,-0.720719)--(5.78822,-0.720596)--(5.78808,-0.720473)--(5.78795,-0.72035)--(5.78781,-0.720227)--(5.78767,-0.720104)--(5.78753,-0.719981)--(5.7874,-0.719858)--
> (5.78726,-0.719735)--(5.78712,-0.719612)--(5.78699,-0.719489)--(5.78685,-0.719367)--(5.78671,-0.719244)--(5.78658,-0.719121)--(5.78644,-0.718999)--(5.7863,-0.718876)--(5.78616,-0.718754)--(5.78603,-0.718631)--(5.78589,-0.718509)--(5.78575,-0.718386)--(5.78562,-0.718264)--(5.78548,-0.718142)--(5.78534,-0.718019)--(5.7852,-0.717897)--(5.78507,-0.717775)--(5.78493,-0.717653)--(5.78479,-0.717531)--(5.78466,-0.717409)--(5.78452,-0.717287)--(5.78438,-0.717165)--(5.78424,-0.717043)--(5.78411,-0.716922)--
> (5.78397,-0.7168)--(5.78383,-0.716678)--(5.7837,-0.716556)--(5.78356,-0.716435)--(5.78342,-0.716313)--(5.78328,-0.716192)--(5.78315,-0.71607)--(5.78301,-0.715949)--(5.78287,-0.715827)--(5.78274,-0.715706)--(5.7826,-0.715585)--(5.78246,-0.715464)--(5.78232,-0.715342)--(5.78219,-0.715221)--(5.78205,-0.7151)--(5.78191,-0.714979)--(5.78177,-0.714858)--(5.78164,-0.714737)--(5.7815,-0.714616)--(5.78136,-0.714495)--(5.78122,-0.714374)--(5.78109,-0.714254)--(5.78095,-0.714133)--(5.78081,-0.714012)--
> (5.78067,-0.713892)--(5.78054,-0.713771)--(5.7804,-0.71365)--(5.78026,-0.71353)--(5.78013,-0.71341)--(5.77999,-0.713289)--(5.77985,-0.713169)--(5.77971,-0.713048)--(5.77958,-0.712928)--(5.77944,-0.712808)--(5.7793,-0.712688)--(5.77916,-0.712568)--(5.77903,-0.712448)--(5.77889,-0.712328)--(5.77875,-0.712208)--(5.77861,-0.712088)--(5.77848,-0.711968)--(5.77834,-0.711848)--(5.7782,-0.711728)--(5.77806,-0.711608)--(5.77792,-0.711489)--(5.77779,-0.711369)--(5.77765,-0.711249)--(5.77751,-0.71113)--
> (5.77737,-0.71101)--(5.77724,-0.710891)--(5.7771,-0.710771)--(5.77696,-0.710652)--(5.77682,-0.710533)--(5.77669,-0.710413)--(5.77655,-0.710294)--(5.77641,-0.710175)--(5.77627,-0.710056)--(5.77613,-0.709936)--(5.776,-0.709817)--(5.77586,-0.709698)--(5.77572,-0.709579)--(5.77558,-0.70946)--(5.77545,-0.709342)--(5.77531,-0.709223)--(5.77517,-0.709104)--(5.77503,-0.708985)--(5.7749,-0.708866)--(5.77476,-0.708748)--(5.77462,-0.708629)--(5.77448,-0.708511)--(5.77434,-0.708392)--(5.77421,-0.708274)--
> (5.77407,-0.708155)--(5.77393,-0.708037)--(5.77379,-0.707918)--(5.77365,-0.7078)--(5.77352,-0.707682)--(5.77338,-0.707564)--(5.77324,-0.707446)--(5.7731,-0.707327)--(5.77296,-0.707209)--(5.77283,-0.707091)--(5.77269,-0.706973)--(5.77255,-0.706855)--(5.77241,-0.706738)--(5.77227,-0.70662)--(5.77214,-0.706502)--(5.772,-0.706384)--(5.77186,-0.706266)--(5.77172,-0.706149)--(5.77158,-0.706031)--(5.77145,-0.705914)--(5.77131,-0.705796)--(5.77117,-0.705679)--(5.77103,-0.705561)--(5.77089,-0.705444)--
> (5.77076,-0.705326)--(5.77062,-0.705209)--(5.77048,-0.705092)--(5.77034,-0.704975)--(5.7702,-0.704858)--(5.77007,-0.70474)--(5.76993,-0.704623)--(5.76979,-0.704506)--(5.76965,-0.704389)--(5.76951,-0.704272)--(5.76937,-0.704155)--(5.76924,-0.704039)--(5.7691,-0.703922)--(5.76896,-0.703805)--(5.76882,-0.703688)--(5.76868,-0.703572)--(5.76855,-0.703455)--(5.76841,-0.703338)--(5.76827,-0.703222)--(5.76813,-0.703105)--(5.76799,-0.702989)--(5.76785,-0.702873)--(5.76772,-0.702756)--(5.76758,-0.70264)--
> (5.76744,-0.702524)--(5.7673,-0.702407)--(5.76716,-0.702291)--(5.76702,-0.702175)--(5.76689,-0.702059)--(5.76675,-0.701943)--(5.76661,-0.701827)--(5.76647,-0.701711)--(5.76633,-0.701595)--(5.76619,-0.701479)--(5.76606,-0.701363)--(5.76592,-0.701248)--(5.76578,-0.701132)--(5.76564,-0.701016)--(5.7655,-0.700901)--(5.76536,-0.700785)--(5.76522,-0.700669)--(5.76509,-0.700554)--(5.76495,-0.700438)--(5.76481,-0.700323)--(5.76467,-0.700208)--(5.76453,-0.700092)--(5.76439,-0.699977)--(5.76425,-0.699862)--
> (5.76412,-0.699747)--(5.76398,-0.699631)--(5.76384,-0.699516)--(5.7637,-0.699401)--(5.76356,-0.699286)--(5.76342,-0.699171)--(5.76328,-0.699056)--(5.76315,-0.698941)--(5.76301,-0.698827)--(5.76287,-0.698712)--(5.76273,-0.698597)--(5.76259,-0.698482)--(5.76245,-0.698368)--(5.76231,-0.698253)--(5.76218,-0.698138)--(5.76204,-0.698024)--(5.7619,-0.697909)--(5.76176,-0.697795)--(5.76162,-0.697681)--(5.76148,-0.697566)--(5.76134,-0.697452)--(5.7612,-0.697338)--(5.76107,-0.697223)--(5.76093,-0.697109)--
> (5.76079,-0.696995)--(5.76065,-0.696881)--(5.76051,-0.696767)--(5.76037,-0.696653)--(5.76023,-0.696539)--(5.76009,-0.696425)--(5.75995,-0.696311)--(5.75982,-0.696197)--(5.75968,-0.696083)--(5.75954,-0.69597)--(5.7594,-0.695856)--(5.75926,-0.695742)--(5.75912,-0.695629)--(5.75898,-0.695515)--(5.75884,-0.695402)--(5.7587,-0.695288)--(5.75857,-0.695175)--(5.75843,-0.695061)--(5.75829,-0.694948)--(5.75815,-0.694835)--(5.75801,-0.694721)--(5.75787,-0.694608)--(5.75773,-0.694495)--(5.75759,-0.694382)--
> (5.75745,-0.694269)--(5.75731,-0.694156)--(5.75717,-0.694043)--(5.75704,-0.69393)--(5.7569,-0.693817)--(5.75676,-0.693704)--(5.75662,-0.693591)--(5.75648,-0.693478)--(5.75634,-0.693366)--(5.7562,-0.693253)--(5.75606,-0.69314)--(5.75592,-0.693028)--(5.75578,-0.692915)--(5.75564,-0.692802)--(5.75551,-0.69269)--(5.75537,-0.692577)--(5.75523,-0.692465)--(5.75509,-0.692353)--(5.75495,-0.69224)--(5.75481,-0.692128)--(5.75467,-0.692016)--(5.75453,-0.691904)--(5.75439,-0.691792)--(5.75425,-0.691679)--
> (5.75411,-0.691567)--(5.75397,-0.691455)--(5.75383,-0.691343)--(5.75369,-0.691232)--(5.75356,-0.69112)--(5.75342,-0.691008)--(5.75328,-0.690896)--(5.75314,-0.690784)--(5.753,-0.690673)--(5.75286,-0.690561)--(5.75272,-0.690449)--(5.75258,-0.690338)--(5.75244,-0.690226)--(5.7523,-0.690115)--(5.75216,-0.690003)--(5.75202,-0.689892)--(5.75188,-0.68978)--(5.75174,-0.689669)--(5.7516,-0.689558)--(5.75146,-0.689446)--(5.75132,-0.689335)--(5.75119,-0.689224)--(5.75105,-0.689113)--(5.75091,-0.689002)--
> (5.75077,-0.688891)--(5.75063,-0.68878)--(5.75049,-0.688669)--(5.75035,-0.688558)--(5.75021,-0.688447)--(5.75007,-0.688336)--(5.74993,-0.688226)--(5.74979,-0.688115)--(5.74965,-0.688004)--(5.74951,-0.687894)--(5.74937,-0.687783)--(5.74923,-0.687672)--(5.74909,-0.687562)--(5.74895,-0.687451)--(5.74881,-0.687341)--(5.74867,-0.687231)--(5.74853,-0.68712)--(5.74839,-0.68701)--(5.74825,-0.6869)--(5.74811,-0.686789)--(5.74797,-0.686679)--(5.74783,-0.686569)--(5.74769,-0.686459)--(5.74755,-0.686349)--
> (5.74741,-0.686239)--(5.74727,-0.686129)--(5.74713,-0.686019)--(5.74699,-0.685909)--(5.74685,-0.685799)--(5.74671,-0.68569)--(5.74658,-0.68558)--(5.74644,-0.68547)--(5.7463,-0.68536)--(5.74616,-0.685251)--(5.74602,-0.685141)--(5.74588,-0.685032)--(5.74574,-0.684922)--(5.7456,-0.684813)--(5.74546,-0.684703)--(5.74532,-0.684594)--(5.74518,-0.684485)--(5.74504,-0.684375)--(5.7449,-0.684266)--(5.74476,-0.684157)--(5.74462,-0.684048)--(5.74448,-0.683938)--(5.74434,-0.683829)--(5.7442,-0.68372)--
> (5.74406,-0.683611)--(5.74392,-0.683502)--(5.74378,-0.683394)--(5.74364,-0.683285)--(5.7435,-0.683176)--(5.74336,-0.683067)--(5.74321,-0.682958)--(5.74307,-0.68285)--(5.74293,-0.682741)--(5.74279,-0.682632)--(5.74265,-0.682524)--(5.74251,-0.682415)--(5.74237,-0.682307)--(5.74223,-0.682198)--(5.74209,-0.68209)--(5.74195,-0.681981)--(5.74181,-0.681873)--(5.74167,-0.681765)--(5.74153,-0.681657)--(5.74139,-0.681548)--(5.74125,-0.68144)--(5.74111,-0.681332)--(5.74097,-0.681224)--(5.74083,-0.681116)--
> (5.74069,-0.681008)--(5.74055,-0.6809)--(5.74041,-0.680792)--(5.74027,-0.680684)--(5.74013,-0.680576)--(5.73999,-0.680469)--(5.73985,-0.680361)--(5.73971,-0.680253)--(5.73957,-0.680145)--(5.73943,-0.680038)--(5.73929,-0.67993)--(5.73915,-0.679823)--(5.73901,-0.679715)--(5.73887,-0.679608)--(5.73873,-0.6795)--(5.73858,-0.679393)--(5.73844,-0.679286)--(5.7383,-0.679178)--(5.73816,-0.679071)--(5.73802,-0.678964)--(5.73788,-0.678857)--(5.73774,-0.67875)--(5.7376,-0.678642)--(5.73746,-0.678535)--
> (5.73732,-0.678428)--(5.73718,-0.678321)--(5.73704,-0.678215)--(5.7369,-0.678108)--(5.73676,-0.678001)--(5.73662,-0.677894)--(5.73648,-0.677787)--(5.73634,-0.677681)--(5.73619,-0.677574)--(5.73605,-0.677467)--(5.73591,-0.677361)--(5.73577,-0.677254)--(5.73563,-0.677148)--(5.73549,-0.677041)--(5.73535,-0.676935)--(5.73521,-0.676828)--(5.73507,-0.676722)--(5.73493,-0.676616)--(5.73479,-0.676509)--(5.73465,-0.676403)--(5.73451,-0.676297)--(5.73436,-0.676191)--(5.73422,-0.676085)--
> (5.73408,-0.675979)--(5.73394,-0.675873)--(5.7338,-0.675767)--(5.73366,-0.675661)--(5.73352,-0.675555)--(5.73338,-0.675449)--(5.73324,-0.675343)--(5.7331,-0.675237)--(5.73296,-0.675132)--(5.73281,-0.675026)--(5.73267,-0.67492)--(5.73253,-0.674815)--(5.73239,-0.674709)--(5.73225,-0.674604)--(5.73211,-0.674498)--(5.73197,-0.674393)--(5.73183,-0.674287)--(5.73169,-0.674182)--(5.73155,-0.674077)--(5.7314,-0.673971)--(5.73126,-0.673866)--(5.73112,-0.673761)--(5.73098,-0.673656)--(5.73084,-0.673551)--
> (5.7307,-0.673445)--(5.73056,-0.67334)--(5.73042,-0.673235)--(5.73028,-0.67313)--(5.73013,-0.673026)--(5.72999,-0.672921)--(5.72985,-0.672816)--(5.72971,-0.672711)--(5.72957,-0.672606)--(5.72943,-0.672502)--(5.72929,-0.672397)--(5.72915,-0.672292)--(5.729,-0.672188)--(5.72886,-0.672083)--(5.72872,-0.671979)--(5.72858,-0.671874)--(5.72844,-0.67177)--(5.7283,-0.671665)--(5.72816,-0.671561)--(5.72802,-0.671457)--(5.72787,-0.671352)--(5.72773,-0.671248)--(5.72759,-0.671144)--(5.72745,-0.67104)--
> (5.72731,-0.670936)--(5.72717,-0.670832)--(5.72703,-0.670727)--(5.72688,-0.670623)--(5.72674,-0.67052)--(5.7266,-0.670416)--(5.72646,-0.670312)--(5.72632,-0.670208)--(5.72618,-0.670104)--(5.72604,-0.67)--(5.72589,-0.669897)--(5.72575,-0.669793)--(5.72561,-0.669689)--(5.72547,-0.669586)--(5.72533,-0.669482)--(5.72519,-0.669379)--(5.72504,-0.669275)--(5.7249,-0.669172)--(5.72476,-0.669068)--(5.72462,-0.668965)--(5.72448,-0.668862)--(5.72434,-0.668758)--(5.72419,-0.668655)--(5.72405,-0.668552)--
> (5.72391,-0.668449)--(5.72377,-0.668346)--(5.72363,-0.668243)--(5.72349,-0.66814)--(5.72334,-0.668037)--(5.7232,-0.667934)--(5.72306,-0.667831)--(5.72292,-0.667728)--(5.72278,-0.667625)--(5.72264,-0.667522)--(5.72249,-0.66742)--(5.72235,-0.667317)--(5.72221,-0.667214)--(5.72207,-0.667112)--(5.72193,-0.667009)--(5.72178,-0.666906)--(5.72164,-0.666804)--(5.7215,-0.666701)--(5.72136,-0.666599)--(5.72122,-0.666497)--(5.72108,-0.666394)--(5.72093,-0.666292)--(5.72079,-0.66619)--(5.72065,-0.666087)--
> (5.72051,-0.665985)--(5.72037,-0.665883)--(5.72022,-0.665781)--(5.72008,-0.665679)--(5.71994,-0.665577)--(5.7198,-0.665475)--(5.71966,-0.665373)--(5.71951,-0.665271)--(5.71937,-0.665169)--(5.71923,-0.665067)--(5.71909,-0.664965)--(5.71894,-0.664864)--(5.7188,-0.664762)--(5.71866,-0.66466)--(5.71852,-0.664559)--(5.71838,-0.664457)--(5.71823,-0.664355)--(5.71809,-0.664254)--(5.71795,-0.664152)--(5.71781,-0.664051)--(5.71767,-0.663949)--(5.71752,-0.663848)--(5.71738,-0.663747)--(5.71724,-0.663645)--
> (5.7171,-0.663544)--(5.71695,-0.663443)--(5.71681,-0.663342)--(5.71667,-0.663241)--(5.71653,-0.66314)--(5.71638,-0.663039)--(5.71624,-0.662938)--(5.7161,-0.662837)--(5.71596,-0.662736)--(5.71582,-0.662635)--(5.71567,-0.662534)--(5.71553,-0.662433)--(5.71539,-0.662332)--(5.71525,-0.662232)--(5.7151,-0.662131)--(5.71496,-0.66203)--(5.71482,-0.66193)--(5.71468,-0.661829)--(5.71453,-0.661728)--(5.71439,-0.661628)--(5.71425,-0.661527)--(5.71411,-0.661427)--(5.71396,-0.661327)--(5.71382,-0.661226)--
> (5.71368,-0.661126)--(5.71354,-0.661026)--(5.71339,-0.660925)--(5.71325,-0.660825)--(5.71311,-0.660725)--(5.71297,-0.660625)--(5.71282,-0.660525)--(5.71268,-0.660425)--(5.71254,-0.660325)--(5.71239,-0.660225)--(5.71225,-0.660125)--(5.71211,-0.660025)--(5.71197,-0.659925)--(5.71182,-0.659825)--(5.71168,-0.659726)--(5.71154,-0.659626)--(5.7114,-0.659526)--(5.71125,-0.659427)--(5.71111,-0.659327)--(5.71097,-0.659227)--(5.71082,-0.659128)--(5.71068,-0.659028)--(5.71054,-0.658929)--(5.7104,-0.658829)--
> (5.71025,-0.65873)--(5.71011,-0.658631)--(5.70997,-0.658531)--(5.70982,-0.658432)--(5.70968,-0.658333)--(5.70954,-0.658234)--(5.7094,-0.658135)--(5.70925,-0.658035)--(5.70911,-0.657936)--(5.70897,-0.657837)--(5.70882,-0.657738)--(5.70868,-0.657639)--(5.70854,-0.65754)--(5.7084,-0.657442)--(5.70825,-0.657343)--(5.70811,-0.657244)--(5.70797,-0.657145)--(5.70782,-0.657046)--(5.70768,-0.656948)--(5.70754,-0.656849)--(5.70739,-0.656751)--(5.70725,-0.656652)--(5.70711,-0.656553)--(5.70696,-0.656455)--
> (5.70682,-0.656356)--(5.70668,-0.656258)--(5.70653,-0.65616)--(5.70639,-0.656061)--(5.70625,-0.655963)--(5.70611,-0.655865)--(5.70596,-0.655767)--(5.70582,-0.655668)--(5.70568,-0.65557)--(5.70553,-0.655472)--(5.70539,-0.655374)--(5.70525,-0.655276)--(5.7051,-0.655178)--(5.70496,-0.65508)--(5.70482,-0.654982)--(5.70467,-0.654884)--(5.70453,-0.654786)--(5.70439,-0.654689)--(5.70424,-0.654591)--(5.7041,-0.654493)--(5.70396,-0.654395)--(5.70381,-0.654298)--(5.70367,-0.6542)--(5.70352,-0.654103)--
> (5.70338,-0.654005)--(5.70324,-0.653908)--(5.70309,-0.65381)--(5.70295,-0.653713)--(5.70281,-0.653615)--(5.70266,-0.653518)--(5.70252,-0.653421)--(5.70238,-0.653323)--(5.70223,-0.653226)--(5.70209,-0.653129)--(5.70195,-0.653032)--(5.7018,-0.652935)--(5.70166,-0.652838)--(5.70152,-0.652741)--(5.70137,-0.652643)--(5.70123,-0.652547)--(5.70108,-0.65245)--(5.70094,-0.652353)--(5.7008,-0.652256)--(5.70065,-0.652159)--(5.70051,-0.652062)--(5.70037,-0.651966)--(5.70022,-0.651869)--(5.70008,-0.651772)--
> (5.69993,-0.651676)--(5.69979,-0.651579)--(5.69965,-0.651482)--(5.6995,-0.651386)--(5.69936,-0.651289)--(5.69922,-0.651193)--(5.69907,-0.651097)--(5.69893,-0.651)--(5.69878,-0.650904)--(5.69864,-0.650808)--(5.6985,-0.650711)--(5.69835,-0.650615)--(5.69821,-0.650519)--(5.69806,-0.650423)--(5.69792,-0.650327)--(5.69778,-0.650231)--(5.69763,-0.650135)--(5.69749,-0.650039)--(5.69734,-0.649943)--(5.6972,-0.649847)--(5.69706,-0.649751)--(5.69691,-0.649655)--(5.69677,-0.649559)--(5.69662,-0.649464)--
> (5.69648,-0.649368)--(5.69634,-0.649272)--(5.69619,-0.649177)--(5.69605,-0.649081)--(5.6959,-0.648985)--(5.69576,-0.64889)--(5.69561,-0.648794)--(5.69547,-0.648699)--(5.69533,-0.648603)--(5.69518,-0.648508)--(5.69504,-0.648413)--(5.69489,-0.648317)--(5.69475,-0.648222)--(5.69461,-0.648127)--(5.69446,-0.648032)--(5.69432,-0.647937)--(5.69417,-0.647841)--(5.69403,-0.647746)--(5.69388,-0.647651)--(5.69374,-0.647556)--(5.69359,-0.647461)--(5.69345,-0.647366)--(5.69331,-0.647271)--(5.69316,-0.647177)--
> (5.69302,-0.647082)--(5.69287,-0.646987)--(5.69273,-0.646892)--(5.69258,-0.646798)--(5.69244,-0.646703)--(5.69229,-0.646608)--(5.69215,-0.646514)--(5.69201,-0.646419)--(5.69186,-0.646325)--(5.69172,-0.64623)--(5.69157,-0.646136)--(5.69143,-0.646041)--(5.69128,-0.645947)--(5.69114,-0.645853)--(5.69099,-0.645758)--(5.69085,-0.645664)--(5.6907,-0.64557)--(5.69056,-0.645476)--(5.69042,-0.645381)--(5.69027,-0.645287)--(5.69013,-0.645193)--(5.68998,-0.645099)--(5.68984,-0.645005)--(5.68969,-0.644911)--
> (5.68955,-0.644817)--(5.6894,-0.644723)--(5.68926,-0.64463)--(5.68911,-0.644536)--(5.68897,-0.644442)--(5.68882,-0.644348)--(5.68868,-0.644254)--(5.68853,-0.644161)--(5.68839,-0.644067)--(5.68824,-0.643974)--(5.6881,-0.64388)--(5.68795,-0.643787)--(5.68781,-0.643693)--(5.68766,-0.6436)--(5.68752,-0.643506)--(5.68737,-0.643413)--(5.68723,-0.643319)--(5.68708,-0.643226)--(5.68694,-0.643133)--(5.68679,-0.64304)--(5.68665,-0.642947)--(5.6865,-0.642853)--(5.68636,-0.64276)--(5.68621,-0.642667)--
> (5.68607,-0.642574)--(5.68592,-0.642481)--(5.68578,-0.642388)--(5.68563,-0.642295)--(5.68549,-0.642202)--(5.68534,-0.642109)--(5.6852,-0.642017)--(5.68505,-0.641924)--(5.68491,-0.641831)--(5.68476,-0.641738)--(5.68462,-0.641646)--(5.68447,-0.641553)--(5.68433,-0.641461)--(5.68418,-0.641368)--(5.68404,-0.641275)--(5.68389,-0.641183)--(5.68375,-0.64109)--(5.6836,-0.640998)--(5.68346,-0.640906)--(5.68331,-0.640813)--(5.68316,-0.640721)--(5.68302,-0.640629)--(5.68287,-0.640537)--(5.68273,-0.640444)--
> (5.68258,-0.640352)--(5.68244,-0.64026)--(5.68229,-0.640168)--(5.68215,-0.640076)--(5.682,-0.639984)--(5.68186,-0.639892)--(5.68171,-0.6398)--(5.68156,-0.639708)--(5.68142,-0.639616)--(5.68127,-0.639524)--(5.68113,-0.639433)--(5.68098,-0.639341)--(5.68084,-0.639249)--(5.68069,-0.639157)--(5.68055,-0.639066)--(5.6804,-0.638974)--(5.68025,-0.638883)--(5.68011,-0.638791)--(5.67996,-0.6387)--(5.67982,-0.638608)--(5.67967,-0.638517)--(5.67953,-0.638425)--(5.67938,-0.638334)--(5.67923,-0.638243)--
> (5.67909,-0.638151)--(5.67894,-0.63806)--(5.6788,-0.637969)--(5.67865,-0.637878)--(5.67851,-0.637787)--(5.67836,-0.637695)--(5.67821,-0.637604)--(5.67807,-0.637513)--(5.67792,-0.637422)--(5.67778,-0.637331)--(5.67763,-0.637241)--(5.67748,-0.63715)--(5.67734,-0.637059)--(5.67719,-0.636968)--(5.67705,-0.636877)--(5.6769,-0.636786)--(5.67675,-0.636696)--(5.67661,-0.636605)--(5.67646,-0.636514)--(5.67632,-0.636424)--(5.67617,-0.636333)--(5.67602,-0.636243)--(5.67588,-0.636152)--(5.67573,-0.636062)--
> (5.67559,-0.635971)--(5.67544,-0.635881)--(5.67529,-0.635791)--(5.67515,-0.6357)--(5.675,-0.63561)--(5.67486,-0.63552)--(5.67471,-0.63543)--(5.67456,-0.63534)--(5.67442,-0.635249)--(5.67427,-0.635159)--(5.67412,-0.635069)--(5.67398,-0.634979)--(5.67383,-0.634889)--(5.67369,-0.634799)--(5.67354,-0.634709)--(5.67339,-0.63462)--(5.67325,-0.63453)--(5.6731,-0.63444)--(5.67295,-0.63435)--(5.67281,-0.63426)--(5.67266,-0.634171)--(5.67251,-0.634081)--(5.67237,-0.633992)--(5.67222,-0.633902)--
> (5.67208,-0.633812)--(5.67193,-0.633723)--(5.67178,-0.633633)--(5.67164,-0.633544)--(5.67149,-0.633455)--(5.67134,-0.633365)--(5.6712,-0.633276)--(5.67105,-0.633187)--(5.6709,-0.633097)--(5.67076,-0.633008)--(5.67061,-0.632919)--(5.67046,-0.63283)--(5.67032,-0.632741)--(5.67017,-0.632652)--(5.67002,-0.632563)--(5.66988,-0.632474)--(5.66973,-0.632385)--(5.66958,-0.632296)--(5.66944,-0.632207)--(5.66929,-0.632118)--(5.66914,-0.632029)--(5.669,-0.63194)--(5.66885,-0.631851)--(5.6687,-0.631763)--
> (5.66856,-0.631674)--(5.66841,-0.631585)--(5.66826,-0.631497)--(5.66812,-0.631408)--(5.66797,-0.63132)--(5.66782,-0.631231)--(5.66767,-0.631143)--(5.66753,-0.631054)--(5.66738,-0.630966)--(5.66723,-0.630877)--(5.66709,-0.630789)--(5.66694,-0.630701)--(5.66679,-0.630613)--(5.66665,-0.630524)--(5.6665,-0.630436)--(5.66635,-0.630348)--(5.6662,-0.63026)--(5.66606,-0.630172)--(5.66591,-0.630084)--(5.66576,-0.629996)--(5.66562,-0.629908)--(5.66547,-0.62982)--(5.66532,-0.629732)--(5.66517,-0.629644)--
> (5.66503,-0.629556)--(5.66488,-0.629469)--(5.66473,-0.629381)--(5.66459,-0.629293)--(5.66444,-0.629205)--(5.66429,-0.629118)--(5.66414,-0.62903)--(5.664,-0.628942)--(5.66385,-0.628855)--(5.6637,-0.628767)--(5.66355,-0.62868)--(5.66341,-0.628593)--(5.66326,-0.628505)--(5.66311,-0.628418)--(5.66297,-0.62833)--(5.66282,-0.628243)--(5.66267,-0.628156)--(5.66252,-0.628069)--(5.66238,-0.627981)--(5.66223,-0.627894)--(5.66208,-0.627807)--(5.66193,-0.62772)--(5.66179,-0.627633)--(5.66164,-0.627546)--
> (5.66149,-0.627459)--(5.66134,-0.627372)--(5.6612,-0.627285)--(5.66105,-0.627198)--(5.6609,-0.627111)--(5.66075,-0.627025)--(5.66061,-0.626938)--(5.66046,-0.626851)--(5.66031,-0.626764)--(5.66016,-0.626678)--(5.66001,-0.626591)--(5.65987,-0.626505)--(5.65972,-0.626418)--(5.65957,-0.626331)--(5.65942,-0.626245)--(5.65928,-0.626159)--(5.65913,-0.626072)--(5.65898,-0.625986)--(5.65883,-0.625899)--(5.65868,-0.625813)--(5.65854,-0.625727)--(5.65839,-0.625641)--(5.65824,-0.625554)--(5.65809,-0.625468)--
> (5.65794,-0.625382)--(5.6578,-0.625296)--(5.65765,-0.62521)--(5.6575,-0.625124)--(5.65735,-0.625038)--(5.65721,-0.624952)--(5.65706,-0.624866)--(5.65691,-0.62478)--(5.65676,-0.624694)--(5.65661,-0.624608)--(5.65646,-0.624523)--(5.65632,-0.624437)--(5.65617,-0.624351)--(5.65602,-0.624266)--(5.65587,-0.62418)--(5.65572,-0.624094)--(5.65558,-0.624009)--(5.65543,-0.623923)--(5.65528,-0.623838)--(5.65513,-0.623752)--(5.65498,-0.623667)--(5.65483,-0.623581)--(5.65469,-0.623496)--(5.65454,-0.623411)--
> (5.65439,-0.623325)--(5.65424,-0.62324)--(5.65409,-0.623155)--(5.65395,-0.62307)--(5.6538,-0.622985)--(5.65365,-0.622899)--(5.6535,-0.622814)--(5.65335,-0.622729)--(5.6532,-0.622644)--(5.65305,-0.622559)--(5.65291,-0.622474)--(5.65276,-0.622389)--(5.65261,-0.622305)--(5.65246,-0.62222)--(5.65231,-0.622135)--(5.65216,-0.62205)--(5.65202,-0.621965)--(5.65187,-0.621881)--(5.65172,-0.621796)--(5.65157,-0.621711)--(5.65142,-0.621627)--(5.65127,-0.621542)--(5.65112,-0.621458)--(5.65097,-0.621373)--
> (5.65083,-0.621289)--(5.65068,-0.621204)--(5.65053,-0.62112)--(5.65038,-0.621036)--(5.65023,-0.620951)--(5.65008,-0.620867)--(5.64993,-0.620783)--(5.64978,-0.620699)--(5.64964,-0.620614)--(5.64949,-0.62053)--(5.64934,-0.620446)--(5.64919,-0.620362)--(5.64904,-0.620278)--(5.64889,-0.620194)--(5.64874,-0.62011)--(5.64859,-0.620026)--(5.64845,-0.619942)--(5.6483,-0.619858)--(5.64815,-0.619775)--(5.648,-0.619691)--(5.64785,-0.619607)--(5.6477,-0.619523)--(5.64755,-0.61944)--(5.6474,-0.619356)--
> (5.64725,-0.619272)--(5.6471,-0.619189)--(5.64695,-0.619105)--(5.64681,-0.619022)--(5.64666,-0.618938)--(5.64651,-0.618855)--(5.64636,-0.618771)--(5.64621,-0.618688)--(5.64606,-0.618605)--(5.64591,-0.618521)--(5.64576,-0.618438)--(5.64561,-0.618355)--(5.64546,-0.618272)--(5.64531,-0.618188)--(5.64516,-0.618105)--(5.64501,-0.618022)--(5.64487,-0.617939)--(5.64472,-0.617856)--(5.64457,-0.617773)--(5.64442,-0.61769)--(5.64427,-0.617607)--(5.64412,-0.617524)--(5.64397,-0.617441)--(5.64382,-0.617359)--
> (5.64367,-0.617276)--(5.64352,-0.617193)--(5.64337,-0.61711)--(5.64322,-0.617028)--(5.64307,-0.616945)--(5.64292,-0.616862)--(5.64277,-0.61678)--(5.64262,-0.616697)--(5.64247,-0.616615)--(5.64232,-0.616532)--(5.64217,-0.61645)--(5.64203,-0.616367)--(5.64188,-0.616285)--(5.64173,-0.616203)--(5.64158,-0.61612)--(5.64143,-0.616038)--(5.64128,-0.615956)--(5.64113,-0.615874)--(5.64098,-0.615791)--(5.64083,-0.615709)--(5.64068,-0.615627)--(5.64053,-0.615545)--(5.64038,-0.615463)--(5.64023,-0.615381)--
> (5.64008,-0.615299)--(5.63993,-0.615217)--(5.63978,-0.615135)--(5.63963,-0.615053)--(5.63948,-0.614972)--(5.63933,-0.61489)--(5.63918,-0.614808)--(5.63903,-0.614726)--(5.63888,-0.614645)--(5.63873,-0.614563)--(5.63858,-0.614481)--(5.63843,-0.6144)--(5.63828,-0.614318)--(5.63813,-0.614237)--(5.63798,-0.614155)--(5.63783,-0.614074)--(5.63768,-0.613992)--(5.63753,-0.613911)--(5.63738,-0.61383)--(5.63723,-0.613748)--(5.63708,-0.613667)--(5.63693,-0.613586)--(5.63678,-0.613505)--(5.63663,-0.613423)--
> (5.63648,-0.613342)--(5.63633,-0.613261)--(5.63618,-0.61318)--(5.63603,-0.613099)--(5.63587,-0.613018)--(5.63572,-0.612937)--(5.63557,-0.612856)--(5.63542,-0.612775)--(5.63527,-0.612694)--(5.63512,-0.612613)--(5.63497,-0.612533)--(5.63482,-0.612452)--(5.63467,-0.612371)--(5.63452,-0.61229)--(5.63437,-0.61221)--(5.63422,-0.612129)--(5.63407,-0.612049)--(5.63392,-0.611968)--(5.63377,-0.611887)--(5.63362,-0.611807)--(5.63347,-0.611726)--(5.63332,-0.611646)--(5.63317,-0.611566)--(5.63301,-0.611485)--
> (5.63286,-0.611405)--(5.63271,-0.611325)--(5.63256,-0.611244)--(5.63241,-0.611164)--(5.63226,-0.611084)--(5.63211,-0.611004)--(5.63196,-0.610924)--(5.63181,-0.610844)--(5.63166,-0.610764)--(5.63151,-0.610684)--(5.63136,-0.610604)--(5.63121,-0.610524)--(5.63105,-0.610444)--(5.6309,-0.610364)--(5.63075,-0.610284)--(5.6306,-0.610204)--(5.63045,-0.610124)--(5.6303,-0.610045)--(5.63015,-0.609965)--(5.63,-0.609885)--(5.62985,-0.609806)--(5.6297,-0.609726)--(5.62954,-0.609646)--(5.62939,-0.609567)--
> (5.62924,-0.609487)--(5.62909,-0.609408)--(5.62894,-0.609328)--(5.62879,-0.609249)--(5.62864,-0.60917)--(5.62849,-0.60909)--(5.62834,-0.609011)--(5.62818,-0.608932)--(5.62803,-0.608852)--(5.62788,-0.608773)--(5.62773,-0.608694)--(5.62758,-0.608615)--(5.62743,-0.608536)--(5.62728,-0.608457)--(5.62713,-0.608378)--(5.62697,-0.608299)--(5.62682,-0.60822)--(5.62667,-0.608141)--(5.62652,-0.608062)--(5.62637,-0.607983)--(5.62622,-0.607904)--(5.62607,-0.607825)--(5.62591,-0.607747)--(5.62576,-0.607668)--
> (5.62561,-0.607589)--(5.62546,-0.60751)--(5.62531,-0.607432)--(5.62516,-0.607353)--(5.625,-0.607275)--(5.62485,-0.607196)--(5.6247,-0.607118)--(5.62455,-0.607039)--(5.6244,-0.606961)--(5.62425,-0.606882)--(5.62409,-0.606804)--(5.62394,-0.606726)--(5.62379,-0.606647)--(5.62364,-0.606569)--(5.62349,-0.606491)--(5.62334,-0.606413)--(5.62318,-0.606335)--(5.62303,-0.606256)--(5.62288,-0.606178)--(5.62273,-0.6061)--(5.62258,-0.606022)--(5.62242,-0.605944)--(5.62227,-0.605866)--(5.62212,-0.605788)--
> (5.62197,-0.60571)--(5.62182,-0.605633)--(5.62166,-0.605555)--(5.62151,-0.605477)--(5.62136,-0.605399)--(5.62121,-0.605321)--(5.62106,-0.605244)--(5.6209,-0.605166)--(5.62075,-0.605088)--(5.6206,-0.605011)--(5.62045,-0.604933)--(5.6203,-0.604856)--(5.62014,-0.604778)--(5.61999,-0.604701)--(5.61984,-0.604623)--(5.61969,-0.604546)--(5.61953,-0.604469)--(5.61938,-0.604391)--(5.61923,-0.604314)--(5.61908,-0.604237)--(5.61893,-0.60416)--(5.61877,-0.604082)--(5.61862,-0.604005)--(5.61847,-0.603928)--
> (5.61832,-0.603851)--(5.61816,-0.603774)--(5.61801,-0.603697)--(5.61786,-0.60362)--(5.61771,-0.603543)--(5.61755,-0.603466)--(5.6174,-0.603389)--(5.61725,-0.603312)--(5.6171,-0.603236)--(5.61694,-0.603159)--(5.61679,-0.603082)--(5.61664,-0.603005)--(5.61649,-0.602929)--(5.61633,-0.602852)--(5.61618,-0.602775)--(5.61603,-0.602699)--(5.61587,-0.602622)--(5.61572,-0.602546)--(5.61557,-0.602469)--(5.61542,-0.602393)--(5.61526,-0.602316)--(5.61511,-0.60224)--(5.61496,-0.602164)--(5.61481,-0.602087)--
> (5.61465,-0.602011)--(5.6145,-0.601935)--(5.61435,-0.601859)--(5.61419,-0.601782)--(5.61404,-0.601706)--(5.61389,-0.60163)--(5.61374,-0.601554)--(5.61358,-0.601478)--(5.61343,-0.601402)--(5.61328,-0.601326)--(5.61312,-0.60125)--(5.61297,-0.601174)--(5.61282,-0.601098)--(5.61266,-0.601022)--(5.61251,-0.600946)--(5.61236,-0.600871)--(5.6122,-0.600795)--(5.61205,-0.600719)--(5.6119,-0.600644)--(5.61174,-0.600568)--(5.61159,-0.600492)--(5.61144,-0.600417)--(5.61129,-0.600341)--(5.61113,-0.600266)--
> (5.61098,-0.60019)--(5.61083,-0.600115)--(5.61067,-0.600039)--(5.61052,-0.599964)--(5.61037,-0.599889)--(5.61021,-0.599813)--(5.61006,-0.599738)--(5.6099,-0.599663)--(5.60975,-0.599587)--(5.6096,-0.599512)--(5.60944,-0.599437)--(5.60929,-0.599362)--(5.60914,-0.599287)--(5.60898,-0.599212)--(5.60883,-0.599137)--(5.60868,-0.599062)--(5.60852,-0.598987)--(5.60837,-0.598912)--(5.60822,-0.598837)--(5.60806,-0.598762)--(5.60791,-0.598687)--(5.60775,-0.598613)--(5.6076,-0.598538)--(5.60745,-0.598463)--
> (5.60729,-0.598388)--(5.60714,-0.598314)--(5.60699,-0.598239)--(5.60683,-0.598165)--(5.60668,-0.59809)--(5.60652,-0.598016)--(5.60637,-0.597941)--(5.60622,-0.597867)--(5.60606,-0.597792)--(5.60591,-0.597718)--(5.60576,-0.597643)--(5.6056,-0.597569)--(5.60545,-0.597495)--(5.60529,-0.597421)--(5.60514,-0.597346)--(5.60499,-0.597272)--(5.60483,-0.597198)--(5.60468,-0.597124)--(5.60452,-0.59705)--(5.60437,-0.596976)--(5.60421,-0.596902)--(5.60406,-0.596828)--(5.60391,-0.596754)--(5.60375,-0.59668)--
> (5.6036,-0.596606)--(5.60344,-0.596532)--(5.60329,-0.596458)--(5.60314,-0.596384)--(5.60298,-0.596311)--(5.60283,-0.596237)--(5.60267,-0.596163)--(5.60252,-0.59609)--(5.60236,-0.596016)--(5.60221,-0.595942)--(5.60205,-0.595869)--(5.6019,-0.595795)--(5.60175,-0.595722)--(5.60159,-0.595648)--(5.60144,-0.595575)--(5.60128,-0.595501)--(5.60113,-0.595428)--(5.60097,-0.595355)--(5.60082,-0.595281)--(5.60066,-0.595208)--(5.60051,-0.595135)--(5.60035,-0.595062)--(5.6002,-0.594989)--(5.60005,-0.594915)--
> (5.59989,-0.594842)--(5.59974,-0.594769)--(5.59958,-0.594696)--(5.59943,-0.594623)--(5.59927,-0.59455)--(5.59912,-0.594477)--(5.59896,-0.594404)--(5.59881,-0.594332)--(5.59865,-0.594259)--(5.5985,-0.594186)--(5.59834,-0.594113)--(5.59819,-0.59404)--(5.59803,-0.593968)--(5.59788,-0.593895)--(5.59772,-0.593822)--(5.59757,-0.59375)--(5.59741,-0.593677)--(5.59726,-0.593605)--(5.5971,-0.593532)--(5.59695,-0.59346)--(5.59679,-0.593387)--(5.59664,-0.593315)--(5.59648,-0.593243)--(5.59633,-0.59317)--
> (5.59617,-0.593098)--(5.59602,-0.593026)--(5.59586,-0.592953)--(5.59571,-0.592881)--(5.59555,-0.592809)--(5.5954,-0.592737)--(5.59524,-0.592665)--(5.59509,-0.592593)--(5.59493,-0.592521)--(5.59477,-0.592449)--(5.59462,-0.592377)--(5.59446,-0.592305)--(5.59431,-0.592233)--(5.59415,-0.592161)--(5.594,-0.592089)--(5.59384,-0.592017)--(5.59369,-0.591945)--(5.59353,-0.591874)--(5.59338,-0.591802)--(5.59322,-0.59173)--(5.59306,-0.591659)--(5.59291,-0.591587)--(5.59275,-0.591515)--(5.5926,-0.591444)--
> (5.59244,-0.591372)--(5.59229,-0.591301)--(5.59213,-0.591229)--(5.59198,-0.591158)--(5.59182,-0.591087)--(5.59166,-0.591015)--(5.59151,-0.590944)--(5.59135,-0.590873)--(5.5912,-0.590801)--(5.59104,-0.59073)--(5.59088,-0.590659)--(5.59073,-0.590588)--(5.59057,-0.590517)--(5.59042,-0.590445)--(5.59026,-0.590374)--(5.59011,-0.590303)--(5.58995,-0.590232)--(5.58979,-0.590161)--(5.58964,-0.590091)--(5.58948,-0.59002)--(5.58933,-0.589949)--(5.58917,-0.589878)--(5.58901,-0.589807)--(5.58886,-0.589736)--
> (5.5887,-0.589666)--(5.58854,-0.589595)--(5.58839,-0.589524)--(5.58823,-0.589454)--(5.58808,-0.589383)--(5.58792,-0.589312)--(5.58776,-0.589242)--(5.58761,-0.589171)--(5.58745,-0.589101)--(5.58729,-0.58903)--(5.58714,-0.58896)--(5.58698,-0.58889)--(5.58683,-0.588819)--(5.58667,-0.588749)--(5.58651,-0.588679)--(5.58636,-0.588609)--(5.5862,-0.588538)--(5.58604,-0.588468)--(5.58589,-0.588398)--(5.58573,-0.588328)--(5.58557,-0.588258)--(5.58542,-0.588188)--(5.58526,-0.588118)--(5.5851,-0.588048)--
> (5.58495,-0.587978)--(5.58479,-0.587908)--(5.58463,-0.587838)--(5.58448,-0.587768)--(5.58432,-0.587698)--(5.58416,-0.587629)--(5.58401,-0.587559)--(5.58385,-0.587489)--(5.58369,-0.587419)--(5.58354,-0.58735)--(5.58338,-0.58728)--(5.58322,-0.587211)--(5.58307,-0.587141)--(5.58291,-0.587071)--(5.58275,-0.587002)--(5.5826,-0.586933)--(5.58244,-0.586863)--(5.58228,-0.586794)--(5.58212,-0.586724)--(5.58197,-0.586655)--(5.58181,-0.586586)--(5.58165,-0.586516)--(5.5815,-0.586447)--(5.58134,-0.586378)--
> (5.58118,-0.586309)--(5.58102,-0.58624)--(5.58087,-0.586171)--(5.58071,-0.586102)--(5.58055,-0.586033)--(5.5804,-0.585964)--(5.58024,-0.585895)--(5.58008,-0.585826)--(5.57992,-0.585757)--(5.57977,-0.585688)--(5.57961,-0.585619)--(5.57945,-0.58555)--(5.57929,-0.585481)--(5.57914,-0.585413)--(5.57898,-0.585344)--(5.57882,-0.585275)--(5.57866,-0.585207)--(5.57851,-0.585138)--(5.57835,-0.585069)--(5.57819,-0.585001)--(5.57803,-0.584932)--(5.57788,-0.584864)--(5.57772,-0.584795)--(5.57756,-0.584727)--
> (5.5774,-0.584659)--(5.57725,-0.58459)--(5.57709,-0.584522)--(5.57693,-0.584454)--(5.57677,-0.584385)--(5.57662,-0.584317)--(5.57646,-0.584249)--(5.5763,-0.584181)--(5.57614,-0.584113)--(5.57598,-0.584045)--(5.57583,-0.583977)--(5.57567,-0.583909)--(5.57551,-0.583841)--(5.57535,-0.583773)--(5.57519,-0.583705)--(5.57504,-0.583637)--(5.57488,-0.583569)--(5.57472,-0.583501)--(5.57456,-0.583433)--(5.5744,-0.583366)--(5.57425,-0.583298)--(5.57409,-0.58323)--(5.57393,-0.583162)--(5.57377,-0.583095)--
> (5.57361,-0.583027)--(5.57346,-0.58296)--(5.5733,-0.582892)--(5.57314,-0.582825)--(5.57298,-0.582757)--(5.57282,-0.58269)--(5.57266,-0.582622)--(5.57251,-0.582555)--(5.57235,-0.582488)--(5.57219,-0.58242)--(5.57203,-0.582353)--(5.57187,-0.582286)--(5.57171,-0.582219)--(5.57156,-0.582151)--(5.5714,-0.582084)--(5.57124,-0.582017)--(5.57108,-0.58195)--(5.57092,-0.581883)--(5.57076,-0.581816)--(5.5706,-0.581749)--(5.57045,-0.581682)--(5.57029,-0.581615)--(5.57013,-0.581548)--(5.56997,-0.581481)--
> (5.56981,-0.581415)--(5.56965,-0.581348)--(5.56949,-0.581281)--(5.56933,-0.581214)--(5.56918,-0.581148)--(5.56902,-0.581081)--(5.56886,-0.581014)--(5.5687,-0.580948)--(5.56854,-0.580881)--(5.56838,-0.580815)--(5.56822,-0.580748)--(5.56806,-0.580682)--(5.5679,-0.580615)--(5.56775,-0.580549)--(5.56759,-0.580482)--(5.56743,-0.580416)--(5.56727,-0.58035)--(5.56711,-0.580284)--(5.56695,-0.580217)--(5.56679,-0.580151)--(5.56663,-0.580085)--(5.56647,-0.580019)--(5.56631,-0.579953)--(5.56615,-0.579887)--
> (5.566,-0.579821)--(5.56584,-0.579755)--(5.56568,-0.579689)--(5.56552,-0.579623)--(5.56536,-0.579557)--(5.5652,-0.579491)--(5.56504,-0.579425)--(5.56488,-0.579359)--(5.56472,-0.579293)--(5.56456,-0.579228)--(5.5644,-0.579162)--(5.56424,-0.579096)--(5.56408,-0.579031)--(5.56392,-0.578965)--(5.56376,-0.578899)--(5.5636,-0.578834)--(5.56344,-0.578768)--(5.56329,-0.578703)--(5.56313,-0.578637)--(5.56297,-0.578572)--(5.56281,-0.578507)--(5.56265,-0.578441)--(5.56249,-0.578376)--(5.56233,-0.578311)--
> (5.56217,-0.578245)--(5.56201,-0.57818)--(5.56185,-0.578115)--(5.56169,-0.57805)--(5.56153,-0.577985)--(5.56137,-0.577919)--(5.56121,-0.577854)--(5.56105,-0.577789)--(5.56089,-0.577724)--(5.56073,-0.577659)--(5.56057,-0.577594)--(5.56041,-0.57753)--(5.56025,-0.577465)--(5.56009,-0.5774)--(5.55993,-0.577335)--(5.55977,-0.57727)--(5.55961,-0.577205)--(5.55945,-0.577141)--(5.55929,-0.577076)--(5.55913,-0.577011)--(5.55897,-0.576947)--(5.55881,-0.576882)--(5.55865,-0.576818)--(5.55849,-0.576753)--
> (5.55833,-0.576689)--(5.55817,-0.576624)--(5.55801,-0.57656)--(5.55784,-0.576495)--(5.55768,-0.576431)--(5.55752,-0.576367)--(5.55736,-0.576302)--(5.5572,-0.576238)--(5.55704,-0.576174)--(5.55688,-0.57611)--(5.55672,-0.576046)--(5.55656,-0.575981)--(5.5564,-0.575917)--(5.55624,-0.575853)--(5.55608,-0.575789)--(5.55592,-0.575725)--(5.55576,-0.575661)--(5.5556,-0.575597)--(5.55544,-0.575533)--(5.55528,-0.57547)--(5.55511,-0.575406)--(5.55495,-0.575342)--(5.55479,-0.575278)--(5.55463,-0.575214)--
> (5.55447,-0.575151)--(5.55431,-0.575087)--(5.55415,-0.575023)--(5.55399,-0.57496)--(5.55383,-0.574896)--(5.55367,-0.574833)--(5.55351,-0.574769)--(5.55334,-0.574706)--(5.55318,-0.574642)--(5.55302,-0.574579)--(5.55286,-0.574515)--(5.5527,-0.574452)--(5.55254,-0.574389)--(5.55238,-0.574325)--(5.55222,-0.574262)--(5.55206,-0.574199)--(5.55189,-0.574136)--(5.55173,-0.574073)--(5.55157,-0.57401)--(5.55141,-0.573946)--(5.55125,-0.573883)--(5.55109,-0.57382)--(5.55093,-0.573757)--(5.55076,-0.573694)--
> (5.5506,-0.573631)--(5.55044,-0.573569)--(5.55028,-0.573506)--(5.55012,-0.573443)--(5.54996,-0.57338)--(5.5498,-0.573317)--(5.54963,-0.573255)--(5.54947,-0.573192)--(5.54931,-0.573129)--(5.54915,-0.573067)--(5.54899,-0.573004)--(5.54883,-0.572941)--(5.54866,-0.572879)--(5.5485,-0.572816)--(5.54834,-0.572754)--(5.54818,-0.572691)--(5.54802,-0.572629)--(5.54785,-0.572567)--(5.54769,-0.572504)--(5.54753,-0.572442)--(5.54737,-0.57238)--(5.54721,-0.572317)--(5.54705,-0.572255)--(5.54688,-0.572193)--
> (5.54672,-0.572131)--(5.54656,-0.572069)--(5.5464,-0.572007)--(5.54624,-0.571945)--(5.54607,-0.571883)--(5.54591,-0.571821)--(5.54575,-0.571759)--(5.54559,-0.571697)--(5.54542,-0.571635)--(5.54526,-0.571573)--(5.5451,-0.571511)--(5.54494,-0.571449)--(5.54478,-0.571387)--(5.54461,-0.571326)--(5.54445,-0.571264)--(5.54429,-0.571202)--(5.54413,-0.571141)--(5.54396,-0.571079)--(5.5438,-0.571018)--(5.54364,-0.570956)--(5.54348,-0.570894)--(5.54331,-0.570833)--(5.54315,-0.570772)--(5.54299,-0.57071)--
> (5.54283,-0.570649)--(5.54266,-0.570587)--(5.5425,-0.570526)--(5.54234,-0.570465)--(5.54218,-0.570404)--(5.54201,-0.570342)--(5.54185,-0.570281)--(5.54169,-0.57022)--(5.54152,-0.570159)--(5.54136,-0.570098)--(5.5412,-0.570037)--(5.54104,-0.569976)--(5.54087,-0.569915)--(5.54071,-0.569854)--(5.54055,-0.569793)--(5.54038,-0.569732)--(5.54022,-0.569671)--(5.54006,-0.56961)--(5.53989,-0.56955)--(5.53973,-0.569489)--(5.53957,-0.569428)--(5.53941,-0.569367)--(5.53924,-0.569307)--(5.53908,-0.569246)--
> (5.53892,-0.569185)--(5.53875,-0.569125)--(5.53859,-0.569064)--(5.53843,-0.569004)--(5.53826,-0.568943)--(5.5381,-0.568883)--(5.53794,-0.568823)--(5.53777,-0.568762)--(5.53761,-0.568702)--(5.53745,-0.568641)--(5.53728,-0.568581)--(5.53712,-0.568521)--(5.53696,-0.568461)--(5.53679,-0.568401)--(5.53663,-0.56834)--(5.53647,-0.56828)--(5.5363,-0.56822)--(5.53614,-0.56816)--(5.53597,-0.5681)--(5.53581,-0.56804)--(5.53565,-0.56798)--(5.53548,-0.56792)--(5.53532,-0.56786)--(5.53516,-0.567801)--
> (5.53499,-0.567741)--(5.53483,-0.567681)--(5.53466,-0.567621)--(5.5345,-0.567561)--(5.53434,-0.567502)--(5.53417,-0.567442)--(5.53401,-0.567382)--(5.53385,-0.567323)--(5.53368,-0.567263)--(5.53352,-0.567204)--(5.53335,-0.567144)--(5.53319,-0.567085)--(5.53303,-0.567025)--(5.53286,-0.566966)--(5.5327,-0.566907)--(5.53253,-0.566847)--(5.53237,-0.566788)--(5.5322,-0.566729)--(5.53204,-0.566669)--(5.53188,-0.56661)--(5.53171,-0.566551)--(5.53155,-0.566492)--(5.53138,-0.566433)--(5.53122,-0.566374)--
> (5.53105,-0.566315)--(5.53089,-0.566256)--(5.53073,-0.566197)--(5.53056,-0.566138)--(5.5304,-0.566079)--(5.53023,-0.56602)--(5.53007,-0.565961)--(5.5299,-0.565902)--(5.52974,-0.565843)--(5.52957,-0.565785)--(5.52941,-0.565726)--(5.52924,-0.565667)--(5.52908,-0.565609)--(5.52891,-0.56555)--(5.52875,-0.565491)--(5.52859,-0.565433)--(5.52842,-0.565374)--(5.52826,-0.565316)--(5.52809,-0.565257)--(5.52793,-0.565199)--(5.52776,-0.565141)--(5.5276,-0.565082)--(5.52743,-0.565024)--(5.52727,-0.564966)--
> (5.5271,-0.564907)--(5.52694,-0.564849)--(5.52677,-0.564791)--(5.52661,-0.564733)--(5.52644,-0.564675)--(5.52628,-0.564616)--(5.52611,-0.564558)--(5.52595,-0.5645)--(5.52578,-0.564442)--(5.52562,-0.564384)--(5.52545,-0.564326)--(5.52528,-0.564268)--(5.52512,-0.564211)--(5.52495,-0.564153)--(5.52479,-0.564095)--(5.52462,-0.564037)--(5.52446,-0.563979)--(5.52429,-0.563922)--(5.52413,-0.563864)--(5.52396,-0.563806)--(5.5238,-0.563749)--(5.52363,-0.563691)--(5.52346,-0.563634)--(5.5233,-0.563576)--
> (5.52313,-0.563519)--(5.52297,-0.563461)--(5.5228,-0.563404)--(5.52264,-0.563346)--(5.52247,-0.563289)--(5.5223,-0.563232)--(5.52214,-0.563174)--(5.52197,-0.563117)--(5.52181,-0.56306)--(5.52164,-0.563003)--(5.52148,-0.562946)--(5.52131,-0.562888)--(5.52114,-0.562831)--(5.52098,-0.562774)--(5.52081,-0.562717)--(5.52065,-0.56266)--(5.52048,-0.562603)--(5.52031,-0.562546)--(5.52015,-0.562489)--(5.51998,-0.562432)--(5.51982,-0.562376)--(5.51965,-0.562319)--(5.51948,-0.562262)--(5.51932,-0.562205)--
> (5.51915,-0.562149)--(5.51898,-0.562092)--(5.51882,-0.562035)--(5.51865,-0.561979)--(5.51849,-0.561922)--(5.51832,-0.561866)--(5.51815,-0.561809)--(5.51799,-0.561753)--(5.51782,-0.561696)--(5.51765,-0.56164)--(5.51749,-0.561583)--(5.51732,-0.561527)--(5.51715,-0.561471)--(5.51699,-0.561414)--(5.51682,-0.561358)--(5.51665,-0.561302)--(5.51649,-0.561246)--(5.51632,-0.56119)--(5.51615,-0.561133)--(5.51599,-0.561077)--(5.51582,-0.561021)--(5.51565,-0.560965)--(5.51549,-0.560909)--(5.51532,-0.560853)--
> (5.51515,-0.560797)--(5.51499,-0.560741)--(5.51482,-0.560686)--(5.51465,-0.56063)--(5.51448,-0.560574)--(5.51432,-0.560518)--(5.51415,-0.560462)--(5.51398,-0.560407)--(5.51382,-0.560351)--(5.51365,-0.560295)--(5.51348,-0.56024)--(5.51332,-0.560184)--(5.51315,-0.560129)--(5.51298,-0.560073)--(5.51281,-0.560018)--(5.51265,-0.559962)--(5.51248,-0.559907)--(5.51231,-0.559852)--(5.51214,-0.559796)--(5.51198,-0.559741)--(5.51181,-0.559686)--(5.51164,-0.55963)--(5.51147,-0.559575)--(5.51131,-0.55952)--
> (5.51114,-0.559465)--(5.51097,-0.55941)--(5.5108,-0.559355)--(5.51064,-0.5593)--(5.51047,-0.559245)--(5.5103,-0.55919)--(5.51013,-0.559135)--(5.50997,-0.55908)--(5.5098,-0.559025)--(5.50963,-0.55897)--(5.50946,-0.558915)--(5.50929,-0.55886)--(5.50913,-0.558806)--(5.50896,-0.558751)--(5.50879,-0.558696)--(5.50862,-0.558642)--(5.50845,-0.558587)--(5.50829,-0.558532)--(5.50812,-0.558478)--(5.50795,-0.558423)--(5.50778,-0.558369)--(5.50761,-0.558314)--(5.50745,-0.55826)--(5.50728,-0.558206)--
> (5.50711,-0.558151)--(5.50694,-0.558097)--(5.50677,-0.558043)--(5.50661,-0.557988)--(5.50644,-0.557934)--(5.50627,-0.55788)--(5.5061,-0.557826)--(5.50593,-0.557772)--(5.50576,-0.557717)--(5.5056,-0.557663)--(5.50543,-0.557609)--(5.50526,-0.557555)--(5.50509,-0.557501)--(5.50492,-0.557447)--(5.50475,-0.557394)--(5.50458,-0.55734)--(5.50442,-0.557286)--(5.50425,-0.557232)--(5.50408,-0.557178)--(5.50391,-0.557125)--(5.50374,-0.557071)--(5.50357,-0.557017)--(5.5034,-0.556964)--(5.50323,-0.55691)--
> (5.50307,-0.556856)--(5.5029,-0.556803)--(5.50273,-0.556749)--(5.50256,-0.556696)--(5.50239,-0.556642)--(5.50222,-0.556589)--(5.50205,-0.556536)--(5.50188,-0.556482)--(5.50171,-0.556429)--(5.50154,-0.556376)--(5.50138,-0.556322)--(5.50121,-0.556269)--(5.50104,-0.556216)--(5.50087,-0.556163)--(5.5007,-0.55611)--(5.50053,-0.556057)--(5.50036,-0.556004)--(5.50019,-0.555951)--(5.50002,-0.555898)--(5.49985,-0.555845)--(5.49968,-0.555792)--(5.49951,-0.555739)--(5.49934,-0.555686)--(5.49917,-0.555633)--
> (5.499,-0.55558)--(5.49883,-0.555528)--(5.49866,-0.555475)--(5.4985,-0.555422)--(5.49833,-0.555369)--(5.49816,-0.555317)--(5.49799,-0.555264)--(5.49782,-0.555212)--(5.49765,-0.555159)--(5.49748,-0.555107)--(5.49731,-0.555054)--(5.49714,-0.555002)--(5.49697,-0.554949)--(5.4968,-0.554897)--(5.49663,-0.554845)--(5.49646,-0.554792)--(5.49629,-0.55474)--(5.49612,-0.554688)--(5.49595,-0.554636)--(5.49578,-0.554584)--(5.49561,-0.554531)--(5.49544,-0.554479)--(5.49527,-0.554427)--(5.4951,-0.554375)--
> (5.49493,-0.554323)--(5.49476,-0.554271)--(5.49459,-0.554219)--(5.49442,-0.554167)--(5.49425,-0.554116)--(5.49408,-0.554064)--(5.4939,-0.554012)--(5.49373,-0.55396)--(5.49356,-0.553908)--(5.49339,-0.553857)--(5.49322,-0.553805)--(5.49305,-0.553753)--(5.49288,-0.553702)--(5.49271,-0.55365)--(5.49254,-0.553599)--(5.49237,-0.553547)--(5.4922,-0.553496)--(5.49203,-0.553444)--(5.49186,-0.553393)--(5.49169,-0.553341)--(5.49152,-0.55329)--(5.49135,-0.553239)--(5.49117,-0.553188)--(5.491,-0.553136)--
> (5.49083,-0.553085)--(5.49066,-0.553034)--(5.49049,-0.552983)--(5.49032,-0.552932)--(5.49015,-0.552881)--(5.48998,-0.55283)--(5.48981,-0.552778)--(5.48964,-0.552728)--(5.48946,-0.552677)--(5.48929,-0.552626)--(5.48912,-0.552575)--(5.48895,-0.552524)--(5.48878,-0.552473)--(5.48861,-0.552422)--(5.48844,-0.552372)--(5.48827,-0.552321)--(5.48809,-0.55227)--(5.48792,-0.55222)--(5.48775,-0.552169)--(5.48758,-0.552118)--(5.48741,-0.552068)--(5.48724,-0.552017)--(5.48707,-0.551967)--(5.48689,-0.551916)--
> (5.48672,-0.551866)--(5.48655,-0.551816)--(5.48638,-0.551765)--(5.48621,-0.551715)--(5.48604,-0.551665)--(5.48586,-0.551614)--(5.48569,-0.551564)--(5.48552,-0.551514)--(5.48535,-0.551464)--(5.48518,-0.551414)--(5.485,-0.551364)--(5.48483,-0.551314)--(5.48466,-0.551263)--(5.48449,-0.551214)--(5.48432,-0.551164)--(5.48414,-0.551114)--(5.48397,-0.551064)--(5.4838,-0.551014)--(5.48363,-0.550964)--(5.48346,-0.550914)--(5.48328,-0.550865)--(5.48311,-0.550815)--(5.48294,-0.550765)--(5.48277,-0.550715)--
> (5.48259,-0.550666)--(5.48242,-0.550616)--(5.48225,-0.550567)--(5.48208,-0.550517)--(5.4819,-0.550468)--(5.48173,-0.550418)--(5.48156,-0.550369)--(5.48139,-0.550319)--(5.48121,-0.55027)--(5.48104,-0.550221)--(5.48087,-0.550171)--(5.4807,-0.550122)--(5.48052,-0.550073)--(5.48035,-0.550024)--(5.48018,-0.549975)--(5.48001,-0.549926)--(5.47983,-0.549876)--(5.47966,-0.549827)--(5.47949,-0.549778)--(5.47931,-0.549729)--(5.47914,-0.54968)--(5.47897,-0.549631)--(5.4788,-0.549583)--(5.47862,-0.549534)--
> (5.47845,-0.549485)--(5.47828,-0.549436)--(5.4781,-0.549387)--(5.47793,-0.549339)--(5.47776,-0.54929)--(5.47758,-0.549241)--(5.47741,-0.549193)--(5.47724,-0.549144)--(5.47706,-0.549095)--(5.47689,-0.549047)--(5.47672,-0.548998)--(5.47654,-0.54895)--(5.47637,-0.548902)--(5.4762,-0.548853)--(5.47602,-0.548805)--(5.47585,-0.548757)--(5.47568,-0.548708)--(5.4755,-0.54866)--(5.47533,-0.548612)--(5.47516,-0.548564)--(5.47498,-0.548515)--(5.47481,-0.548467)--(5.47463,-0.548419)--(5.47446,-0.548371)--
> (5.47429,-0.548323)--(5.47411,-0.548275)--(5.47394,-0.548227)--(5.47376,-0.548179)--(5.47359,-0.548131)--(5.47342,-0.548083)--(5.47324,-0.548036)--(5.47307,-0.547988)--(5.4729,-0.54794)--(5.47272,-0.547892)--(5.47255,-0.547845)--(5.47237,-0.547797)--(5.4722,-0.547749)--(5.47202,-0.547702)--(5.47185,-0.547654)--(5.47168,-0.547607)--(5.4715,-0.547559)--(5.47133,-0.547512)--(5.47115,-0.547464)--(5.47098,-0.547417)--(5.4708,-0.54737)--(5.47063,-0.547322)--(5.47046,-0.547275)--(5.47028,-0.547228)--
> (5.47011,-0.547181)--(5.46993,-0.547133)--(5.46976,-0.547086)--(5.46958,-0.547039)--(5.46941,-0.546992)--(5.46923,-0.546945)--(5.46906,-0.546898)--(5.46888,-0.546851)--(5.46871,-0.546804)--(5.46853,-0.546757)--(5.46836,-0.54671)--(5.46818,-0.546663)--(5.46801,-0.546617)--(5.46783,-0.54657)--(5.46766,-0.546523)--(5.46748,-0.546476)--(5.46731,-0.54643)--(5.46713,-0.546383)--(5.46696,-0.546336)--(5.46678,-0.54629)--(5.46661,-0.546243)--(5.46643,-0.546197)--(5.46626,-0.54615)--(5.46608,-0.546104)--
> (5.46591,-0.546057)--(5.46573,-0.546011)--(5.46556,-0.545965)--(5.46538,-0.545918)--(5.46521,-0.545872)--(5.46503,-0.545826)--(5.46486,-0.54578)--(5.46468,-0.545733)--(5.4645,-0.545687)--(5.46433,-0.545641)--(5.46415,-0.545595)--(5.46398,-0.545549)--(5.4638,-0.545503)--(5.46363,-0.545457)--(5.46345,-0.545411)--(5.46327,-0.545365)--(5.4631,-0.545319)--(5.46292,-0.545274)--(5.46275,-0.545228)--(5.46257,-0.545182)--(5.4624,-0.545136)--(5.46222,-0.54509)--(5.46204,-0.545045)--(5.46187,-0.544999)--
> (5.46169,-0.544954)--(5.46152,-0.544908)--(5.46134,-0.544862)--(5.46116,-0.544817)--(5.46099,-0.544772)--(5.46081,-0.544726)--(5.46063,-0.544681)--(5.46046,-0.544635)--(5.46028,-0.54459)--(5.46011,-0.544545)--(5.45993,-0.544499)--(5.45975,-0.544454)--(5.45958,-0.544409)--(5.4594,-0.544364)--(5.45922,-0.544319)--(5.45905,-0.544274)--(5.45887,-0.544229)--(5.45869,-0.544184)--(5.45852,-0.544139)--(5.45834,-0.544094)--(5.45816,-0.544049)--(5.45799,-0.544004)--(5.45781,-0.543959)--(5.45763,-0.543914)--
> (5.45746,-0.543869)--(5.45728,-0.543825)--(5.4571,-0.54378)--(5.45693,-0.543735)--(5.45675,-0.54369)--(5.45657,-0.543646)--(5.45639,-0.543601)--(5.45622,-0.543557)--(5.45604,-0.543512)--(5.45586,-0.543468)--(5.45569,-0.543423)--(5.45551,-0.543379)--(5.45533,-0.543334)--(5.45515,-0.54329)--(5.45498,-0.543246)--(5.4548,-0.543201)--(5.45462,-0.543157)--(5.45445,-0.543113)--(5.45427,-0.543069)--(5.45409,-0.543025)--(5.45391,-0.542981)--(5.45374,-0.542937)--(5.45356,-0.542892)--(5.45338,-0.542848)--
> (5.4532,-0.542804)--(5.45303,-0.542761)--(5.45285,-0.542717)--(5.45267,-0.542673)--(5.45249,-0.542629)--(5.45231,-0.542585)--(5.45214,-0.542541)--(5.45196,-0.542498)--(5.45178,-0.542454)--(5.4516,-0.54241)--(5.45142,-0.542367)--(5.45125,-0.542323)--(5.45107,-0.542279)--(5.45089,-0.542236)--(5.45071,-0.542192)--(5.45053,-0.542149)--(5.45036,-0.542106)--(5.45018,-0.542062)--(5.45,-0.542019)--(5.44982,-0.541975)--(5.44964,-0.541932)--(5.44947,-0.541889)--(5.44929,-0.541846)--(5.44911,-0.541803)--
> (5.44893,-0.541759)--(5.44875,-0.541716)--(5.44857,-0.541673)--(5.44839,-0.54163)--(5.44822,-0.541587)--(5.44804,-0.541544)--(5.44786,-0.541501)--(5.44768,-0.541458)--(5.4475,-0.541415)--(5.44732,-0.541373)--(5.44714,-0.54133)--(5.44697,-0.541287)--(5.44679,-0.541244)--(5.44661,-0.541202)--(5.44643,-0.541159)--(5.44625,-0.541116)--(5.44607,-0.541074)--(5.44589,-0.541031)--(5.44571,-0.540989)--(5.44553,-0.540946)--(5.44535,-0.540904)--(5.44518,-0.540861)--(5.445,-0.540819)--(5.44482,-0.540776)--
> (5.44464,-0.540734)--(5.44446,-0.540692)--(5.44428,-0.540649)--(5.4441,-0.540607)--(5.44392,-0.540565)--(5.44374,-0.540523)--(5.44356,-0.540481)--(5.44338,-0.540439)--(5.4432,-0.540397)--(5.44302,-0.540355)--(5.44284,-0.540313)--(5.44266,-0.540271)--(5.44248,-0.540229)--(5.44231,-0.540187)--(5.44213,-0.540145)--(5.44195,-0.540103)--(5.44177,-0.540061)--(5.44159,-0.54002)--(5.44141,-0.539978)--(5.44123,-0.539936)--(5.44105,-0.539895)--(5.44087,-0.539853)--(5.44069,-0.539812)--(5.44051,-0.53977)--
> (5.44033,-0.539729)--(5.44015,-0.539687)--(5.43997,-0.539646)--(5.43979,-0.539604)--(5.43961,-0.539563)--(5.43943,-0.539522)--(5.43925,-0.53948)--(5.43907,-0.539439)--(5.43889,-0.539398)--(5.4387,-0.539357)--(5.43852,-0.539315)--(5.43834,-0.539274)--(5.43816,-0.539233)--(5.43798,-0.539192)--(5.4378,-0.539151)--(5.43762,-0.53911)--(5.43744,-0.539069)--(5.43726,-0.539028)--(5.43708,-0.538987)--(5.4369,-0.538947)--(5.43672,-0.538906)--(5.43654,-0.538865)--(5.43636,-0.538824)--(5.43618,-0.538784)--
> (5.436,-0.538743)--(5.43581,-0.538702)--(5.43563,-0.538662)--(5.43545,-0.538621)--(5.43527,-0.538581)--(5.43509,-0.53854)--(5.43491,-0.5385)--(5.43473,-0.538459)--(5.43455,-0.538419)--(5.43437,-0.538379)--(5.43418,-0.538338)--(5.434,-0.538298)--(5.43382,-0.538258)--(5.43364,-0.538217)--(5.43346,-0.538177)--(5.43328,-0.538137)--(5.4331,-0.538097)--(5.43292,-0.538057)--(5.43273,-0.538017)--(5.43255,-0.537977)--(5.43237,-0.537937)--(5.43219,-0.537897)--(5.43201,-0.537857)--(5.43183,-0.537817)--
> (5.43164,-0.537777)--(5.43146,-0.537738)--(5.43128,-0.537698)--(5.4311,-0.537658)--(5.43092,-0.537618)--(5.43074,-0.537579)--(5.43055,-0.537539)--(5.43037,-0.5375)--(5.43019,-0.53746)--(5.43001,-0.537421)--(5.42983,-0.537381)--(5.42964,-0.537342)--(5.42946,-0.537302)--(5.42928,-0.537263)--(5.4291,-0.537224)--(5.42891,-0.537184)--(5.42873,-0.537145)--(5.42855,-0.537106)--(5.42837,-0.537067)--(5.42818,-0.537027)--(5.428,-0.536988)--(5.42782,-0.536949)--(5.42764,-0.53691)--(5.42746,-0.536871)--
> (5.42727,-0.536832)--(5.42709,-0.536793)--(5.42691,-0.536754)--(5.42672,-0.536715)--(5.42654,-0.536676)--(5.42636,-0.536638)--(5.42618,-0.536599)--(5.42599,-0.53656)--(5.42581,-0.536521)--(5.42563,-0.536483)--(5.42544,-0.536444)--(5.42526,-0.536406)--(5.42508,-0.536367)--(5.4249,-0.536328)--(5.42471,-0.53629)--(5.42453,-0.536252)--(5.42435,-0.536213)--(5.42416,-0.536175)--(5.42398,-0.536136)--(5.4238,-0.536098)--(5.42361,-0.53606)--(5.42343,-0.536022)--(5.42325,-0.535983)--(5.42306,-0.535945)--
> (5.42288,-0.535907)--(5.4227,-0.535869)--(5.42251,-0.535831)--(5.42233,-0.535793)--(5.42215,-0.535755)--(5.42196,-0.535717)--(5.42178,-0.535679)--(5.4216,-0.535641)--(5.42141,-0.535603)--(5.42123,-0.535565)--(5.42104,-0.535528)--(5.42086,-0.53549)--(5.42068,-0.535452)--(5.42049,-0.535414)--(5.42031,-0.535377)--(5.42012,-0.535339)--(5.41994,-0.535302)--(5.41976,-0.535264)--(5.41957,-0.535227)--(5.41939,-0.535189)--(5.4192,-0.535152)--(5.41902,-0.535114)--(5.41884,-0.535077)--(5.41865,-0.53504)--
> (5.41847,-0.535002)--(5.41828,-0.534965)--(5.4181,-0.534928)--(5.41791,-0.534891)--(5.41773,-0.534854)--(5.41754,-0.534816)--(5.41736,-0.534779)--(5.41718,-0.534742)--(5.41699,-0.534705)--(5.41681,-0.534668)--(5.41662,-0.534631)--(5.41644,-0.534595)--(5.41625,-0.534558)--(5.41607,-0.534521)--(5.41588,-0.534484)--(5.4157,-0.534447)--(5.41551,-0.534411)--(5.41533,-0.534374)--(5.41514,-0.534337)--(5.41496,-0.534301)--(5.41477,-0.534264)--(5.41459,-0.534228)--(5.4144,-0.534191)--(5.41422,-0.534155)--
> (5.41403,-0.534118)--(5.41385,-0.534082)--(5.41366,-0.534045)--(5.41348,-0.534009)--(5.41329,-0.533973)--(5.41311,-0.533937)--(5.41292,-0.5339)--(5.41274,-0.533864)--(5.41255,-0.533828)--(5.41236,-0.533792)--(5.41218,-0.533756)--(5.41199,-0.53372)--(5.41181,-0.533684)--(5.41162,-0.533648)--(5.41144,-0.533612)--(5.41125,-0.533576)--(5.41106,-0.53354)--(5.41088,-0.533504)--(5.41069,-0.533469)--(5.41051,-0.533433)--(5.41032,-0.533397)--(5.41013,-0.533362)--(5.40995,-0.533326)--(5.40976,-0.53329)--
> (5.40958,-0.533255)--(5.40939,-0.533219)--(5.4092,-0.533184)--(5.40902,-0.533148)--(5.40883,-0.533113)--(5.40865,-0.533078)--(5.40846,-0.533042)--(5.40827,-0.533007)--(5.40809,-0.532972)--(5.4079,-0.532936)--(5.40771,-0.532901)--(5.40753,-0.532866)--(5.40734,-0.532831)--(5.40715,-0.532796)--(5.40697,-0.532761)--(5.40678,-0.532726)--(5.40659,-0.532691)--(5.40641,-0.532656)--(5.40622,-0.532621)--(5.40603,-0.532586)--(5.40585,-0.532551)--(5.40566,-0.532516)--(5.40547,-0.532482)--(5.40529,-0.532447)--
> (5.4051,-0.532412)--(5.40491,-0.532377)--(5.40473,-0.532343)--(5.40454,-0.532308)--(5.40435,-0.532274)--(5.40416,-0.532239)--(5.40398,-0.532205)--(5.40379,-0.53217)--(5.4036,-0.532136)--(5.40341,-0.532102)--(5.40323,-0.532067)--(5.40304,-0.532033)--(5.40285,-0.531999)--(5.40266,-0.531964)--(5.40248,-0.53193)--(5.40229,-0.531896)--(5.4021,-0.531862)--(5.40191,-0.531828)--(5.40173,-0.531794)--(5.40154,-0.53176)--(5.40135,-0.531726)--(5.40116,-0.531692)--(5.40098,-0.531658)--(5.40079,-0.531624)--
> (5.4006,-0.53159)--(5.40041,-0.531557)--(5.40022,-0.531523)--(5.40004,-0.531489)--(5.39985,-0.531456)--(5.39966,-0.531422)--(5.39947,-0.531388)--(5.39928,-0.531355)--(5.39909,-0.531321)--(5.39891,-0.531288)--(5.39872,-0.531254)--(5.39853,-0.531221)--(5.39834,-0.531187)--(5.39815,-0.531154)--(5.39796,-0.531121)--(5.39778,-0.531088)--(5.39759,-0.531054)--(5.3974,-0.531021)--(5.39721,-0.530988)--(5.39702,-0.530955)--(5.39683,-0.530922)--(5.39664,-0.530889)--(5.39646,-0.530856)--(5.39627,-0.530823)--
> (5.39608,-0.53079)--(5.39589,-0.530757)--(5.3957,-0.530724)--(5.39551,-0.530691)--(5.39532,-0.530658)--(5.39513,-0.530626)--(5.39494,-0.530593)--(5.39475,-0.53056)--(5.39456,-0.530528)--(5.39438,-0.530495)--(5.39419,-0.530462)--(5.394,-0.53043)--(5.39381,-0.530397)--(5.39362,-0.530365)--(5.39343,-0.530333)--(5.39324,-0.5303)--(5.39305,-0.530268)--(5.39286,-0.530236)--(5.39267,-0.530203)--(5.39248,-0.530171)--(5.39229,-0.530139)--(5.3921,-0.530107)--(5.39191,-0.530075)--(5.39172,-0.530042)--
> (5.39153,-0.53001)--(5.39134,-0.529978)--(5.39115,-0.529946)--(5.39096,-0.529915)--(5.39077,-0.529883)--(5.39058,-0.529851)--(5.39039,-0.529819)--(5.3902,-0.529787)--(5.39001,-0.529755)--(5.38982,-0.529724)--(5.38963,-0.529692)--(5.38944,-0.52966)--(5.38925,-0.529629)--(5.38906,-0.529597)--(5.38887,-0.529566)--(5.38868,-0.529534)--(5.38849,-0.529503)--(5.3883,-0.529471)--(5.38811,-0.52944)--(5.38792,-0.529409)--(5.38773,-0.529377)--(5.38754,-0.529346)--(5.38735,-0.529315)--(5.38716,-0.529284)--
> (5.38696,-0.529252)--(5.38677,-0.529221)--(5.38658,-0.52919)--(5.38639,-0.529159)--(5.3862,-0.529128)--(5.38601,-0.529097)--(5.38582,-0.529066)--(5.38563,-0.529035)--(5.38544,-0.529005)--(5.38525,-0.528974)--(5.38505,-0.528943)--(5.38486,-0.528912)--(5.38467,-0.528882)--(5.38448,-0.528851)--(5.38429,-0.52882)--(5.3841,-0.52879)--(5.38391,-0.528759)--(5.38372,-0.528729)--(5.38352,-0.528698)--(5.38333,-0.528668)--(5.38314,-0.528637)--(5.38295,-0.528607)--(5.38276,-0.528577)--(5.38257,-0.528546)--
> (5.38237,-0.528516)--(5.38218,-0.528486)--(5.38199,-0.528456)--(5.3818,-0.528426)--(5.38161,-0.528395)--(5.38141,-0.528365)--(5.38122,-0.528335)--(5.38103,-0.528305)--(5.38084,-0.528275)--(5.38065,-0.528245)--(5.38045,-0.528216)--(5.38026,-0.528186)--(5.38007,-0.528156)--(5.37988,-0.528126)--(5.37968,-0.528097)--(5.37949,-0.528067)--(5.3793,-0.528037)--(5.37911,-0.528008)--(5.37891,-0.527978)--(5.37872,-0.527948)--(5.37853,-0.527919)--(5.37834,-0.52789)--(5.37814,-0.52786)--(5.37795,-0.527831)--
> (5.37776,-0.527801)--(5.37757,-0.527772)--(5.37737,-0.527743)--(5.37718,-0.527714)--(5.37699,-0.527684)--(5.37679,-0.527655)--(5.3766,-0.527626)--(5.37641,-0.527597)--(5.37622,-0.527568)--(5.37602,-0.527539)--(5.37583,-0.52751)--(5.37564,-0.527481)--(5.37544,-0.527452)--(5.37525,-0.527423)--(5.37506,-0.527395)--(5.37486,-0.527366)--(5.37467,-0.527337)--(5.37448,-0.527308)--(5.37428,-0.52728)--(5.37409,-0.527251)--(5.37389,-0.527223)--(5.3737,-0.527194)--(5.37351,-0.527166)--(5.37331,-0.527137)--
> (5.37312,-0.527109)--(5.37293,-0.52708)--(5.37273,-0.527052)--(5.37254,-0.527024)--(5.37234,-0.526995)--(5.37215,-0.526967)--(5.37196,-0.526939)--(5.37176,-0.526911)--(5.37157,-0.526883)--(5.37137,-0.526855)--(5.37118,-0.526826)--(5.37099,-0.526798)--(5.37079,-0.526771)--(5.3706,-0.526743)--(5.3704,-0.526715)--(5.37021,-0.526687)--(5.37001,-0.526659)--(5.36982,-0.526631)--(5.36963,-0.526604)--(5.36943,-0.526576)--(5.36924,-0.526548)--(5.36904,-0.526521)--(5.36885,-0.526493)--(5.36865,-0.526465)--
> (5.36846,-0.526438)--(5.36826,-0.526411)--(5.36807,-0.526383)--(5.36787,-0.526356)--(5.36768,-0.526328)--(5.36748,-0.526301)--(5.36729,-0.526274)--(5.36709,-0.526247)--(5.3669,-0.526219)--(5.3667,-0.526192)--(5.36651,-0.526165)--(5.36631,-0.526138)--(5.36612,-0.526111)--(5.36592,-0.526084)--(5.36573,-0.526057)--(5.36553,-0.52603)--(5.36533,-0.526003)--(5.36514,-0.525976)--(5.36494,-0.52595)--(5.36475,-0.525923)--(5.36455,-0.525896)--(5.36436,-0.525869)--(5.36416,-0.525843)--(5.36397,-0.525816)--
> (5.36377,-0.52579)--(5.36357,-0.525763)--(5.36338,-0.525737)--(5.36318,-0.52571)--(5.36299,-0.525684)--(5.36279,-0.525657)--(5.36259,-0.525631)--(5.3624,-0.525605)--(5.3622,-0.525578)--(5.362,-0.525552)--(5.36181,-0.525526)--(5.36161,-0.5255)--(5.36142,-0.525474)--(5.36122,-0.525448)--(5.36102,-0.525422)--(5.36083,-0.525396)--(5.36063,-0.52537)--(5.36043,-0.525344)--(5.36024,-0.525318)--(5.36004,-0.525292)--(5.35984,-0.525266)--(5.35965,-0.525241)--(5.35945,-0.525215)--(5.35925,-0.525189)--
> (5.35906,-0.525164)--(5.35886,-0.525138)--(5.35866,-0.525113)--(5.35847,-0.525087)--(5.35827,-0.525062)--(5.35807,-0.525036)--(5.35787,-0.525011)--(5.35768,-0.524985)--(5.35748,-0.52496)--(5.35728,-0.524935)--(5.35709,-0.52491)--(5.35689,-0.524884)--(5.35669,-0.524859)--(5.35649,-0.524834)--(5.3563,-0.524809)--(5.3561,-0.524784)--(5.3559,-0.524759)--(5.3557,-0.524734)--(5.35551,-0.524709)--(5.35531,-0.524684)--(5.35511,-0.524659)--(5.35491,-0.524635)--(5.35471,-0.52461)--(5.35452,-0.524585)--
> (5.35432,-0.52456)--(5.35412,-0.524536)--(5.35392,-0.524511)--(5.35372,-0.524487)--(5.35353,-0.524462)--(5.35333,-0.524438)--(5.35313,-0.524413)--(5.35293,-0.524389)--(5.35273,-0.524364)--(5.35254,-0.52434)--(5.35234,-0.524316)--(5.35214,-0.524292)--(5.35194,-0.524267)--(5.35174,-0.524243)--(5.35154,-0.524219)--(5.35134,-0.524195)--(5.35115,-0.524171)--(5.35095,-0.524147)--(5.35075,-0.524123)--(5.35055,-0.524099)--(5.35035,-0.524075)--(5.35015,-0.524051)--(5.34995,-0.524028)--(5.34975,-0.524004)--
> (5.34955,-0.52398)--(5.34936,-0.523956)--(5.34916,-0.523933)--(5.34896,-0.523909)--(5.34876,-0.523886)--(5.34856,-0.523862)--(5.34836,-0.523839)--(5.34816,-0.523815)--(5.34796,-0.523792)--(5.34776,-0.523768)--(5.34756,-0.523745)--(5.34736,-0.523722)--(5.34716,-0.523699)--(5.34696,-0.523675)--(5.34676,-0.523652)--(5.34656,-0.523629)--(5.34636,-0.523606)--(5.34616,-0.523583)--(5.34596,-0.52356)--(5.34576,-0.523537)--(5.34556,-0.523514)--(5.34536,-0.523491)--(5.34516,-0.523468)--(5.34496,-0.523446)--
> (5.34476,-0.523423)--(5.34456,-0.5234)--(5.34436,-0.523377)--(5.34416,-0.523355)--(5.34396,-0.523332)--(5.34376,-0.52331)--(5.34356,-0.523287)--(5.34336,-0.523265)--(5.34316,-0.523242)--(5.34296,-0.52322)--(5.34276,-0.523198)--(5.34256,-0.523175)--(5.34236,-0.523153)--(5.34216,-0.523131)--(5.34196,-0.523109)--(5.34176,-0.523086)--(5.34156,-0.523064)--(5.34136,-0.523042)--(5.34116,-0.52302)--(5.34095,-0.522998)--(5.34075,-0.522976)--(5.34055,-0.522954)--(5.34035,-0.522933)--(5.34015,-0.522911)--
> (5.33995,-0.522889)--(5.33975,-0.522867)--(5.33955,-0.522846)--(5.33934,-0.522824)--(5.33914,-0.522802)--(5.33894,-0.522781)--(5.33874,-0.522759)--(5.33854,-0.522738)--(5.33834,-0.522716)--(5.33814,-0.522695)--(5.33793,-0.522673)--(5.33773,-0.522652)--(5.33753,-0.522631)--(5.33733,-0.52261)--(5.33713,-0.522588)--(5.33692,-0.522567)--(5.33672,-0.522546)--(5.33652,-0.522525)--(5.33632,-0.522504)--(5.33612,-0.522483)--(5.33591,-0.522462)--(5.33571,-0.522441)--(5.33551,-0.52242)--(5.33531,-0.522399)--
> (5.33511,-0.522379)--(5.3349,-0.522358)--(5.3347,-0.522337)--(5.3345,-0.522316)--(5.3343,-0.522296)--(5.33409,-0.522275)--(5.33389,-0.522255)--(5.33369,-0.522234)--(5.33349,-0.522214)--(5.33328,-0.522193)--(5.33308,-0.522173)--(5.33288,-0.522153)--(5.33267,-0.522132)--(5.33247,-0.522112)--(5.33227,-0.522092)--(5.33206,-0.522072)--(5.33186,-0.522051)--(5.33166,-0.522031)--(5.33146,-0.522011)--(5.33125,-0.521991)--(5.33105,-0.521971)--(5.33085,-0.521951)--(5.33064,-0.521932)--(5.33044,-0.521912)--
> (5.33024,-0.521892)--(5.33003,-0.521872)--(5.32983,-0.521852)--(5.32962,-0.521833)--(5.32942,-0.521813)--(5.32922,-0.521794)--(5.32901,-0.521774)--(5.32881,-0.521754)--(5.32861,-0.521735)--(5.3284,-0.521716)--(5.3282,-0.521696)--(5.32799,-0.521677)--(5.32779,-0.521658)--(5.32759,-0.521638)--(5.32738,-0.521619)--(5.32718,-0.5216)--(5.32697,-0.521581)--(5.32677,-0.521562)--(5.32656,-0.521543)--(5.32636,-0.521524)--(5.32616,-0.521505)--(5.32595,-0.521486)--(5.32575,-0.521467)--(5.32554,-0.521448)--
> (5.32534,-0.521429)--(5.32513,-0.521411)--(5.32493,-0.521392)--(5.32472,-0.521373)--(5.32452,-0.521355)--(5.32431,-0.521336)--(5.32411,-0.521317)--(5.3239,-0.521299)--(5.3237,-0.52128)--(5.32349,-0.521262)--(5.32329,-0.521244)--(5.32308,-0.521225)--(5.32288,-0.521207)--(5.32267,-0.521189)--(5.32247,-0.521171)--(5.32226,-0.521152)--(5.32206,-0.521134)--(5.32185,-0.521116)--(5.32165,-0.521098)--(5.32144,-0.52108)--(5.32123,-0.521062)--(5.32103,-0.521044)--(5.32082,-0.521027)--(5.32062,-0.521009)--
> (5.32041,-0.520991)--(5.32021,-0.520973)--(5.32,-0.520955)--(5.31979,-0.520938)--(5.31959,-0.52092)--(5.31938,-0.520903)--(5.31918,-0.520885)--(5.31897,-0.520868)--(5.31876,-0.52085)--(5.31856,-0.520833)--(5.31835,-0.520815)--(5.31815,-0.520798)--(5.31794,-0.520781)--(5.31773,-0.520764)--(5.31753,-0.520746)--(5.31732,-0.520729)--(5.31711,-0.520712)--(5.31691,-0.520695)--(5.3167,-0.520678)--(5.31649,-0.520661)--(5.31629,-0.520644)--(5.31608,-0.520627)--(5.31587,-0.520611)--(5.31567,-0.520594)--
> (5.31546,-0.520577)--(5.31525,-0.52056)--(5.31504,-0.520544)--(5.31484,-0.520527)--(5.31463,-0.52051)--(5.31442,-0.520494)--(5.31422,-0.520477)--(5.31401,-0.520461)--(5.3138,-0.520445)--(5.31359,-0.520428)--(5.31339,-0.520412)--(5.31318,-0.520396)--(5.31297,-0.520379)--(5.31276,-0.520363)--(5.31256,-0.520347)--(5.31235,-0.520331)--(5.31214,-0.520315)--(5.31193,-0.520299)--(5.31172,-0.520283)--(5.31152,-0.520267)--(5.31131,-0.520251)--(5.3111,-0.520235)--(5.31089,-0.520219)--(5.31068,-0.520204)--
> (5.31048,-0.520188)--(5.31027,-0.520172)--(5.31006,-0.520157)--(5.30985,-0.520141)--(5.30964,-0.520126)--(5.30943,-0.52011)--(5.30923,-0.520095)--(5.30902,-0.520079)--(5.30881,-0.520064)--(5.3086,-0.520048)--(5.30839,-0.520033)--(5.30818,-0.520018)--(5.30797,-0.520003)--(5.30776,-0.519988)--(5.30756,-0.519973)--(5.30735,-0.519957)--(5.30714,-0.519942)--(5.30693,-0.519927)--(5.30672,-0.519913)--(5.30651,-0.519898)--(5.3063,-0.519883)--(5.30609,-0.519868)--(5.30588,-0.519853)--(5.30567,-0.519839)--
> (5.30546,-0.519824)--(5.30525,-0.519809)--(5.30504,-0.519795)--(5.30484,-0.51978)--(5.30463,-0.519766)--(5.30442,-0.519751)--(5.30421,-0.519737)--(5.304,-0.519722)--(5.30379,-0.519708)--(5.30358,-0.519694)--(5.30337,-0.51968)--(5.30316,-0.519665)--(5.30295,-0.519651)--(5.30274,-0.519637)--(5.30253,-0.519623)--(5.30232,-0.519609)--(5.30211,-0.519595)--(5.3019,-0.519581)--(5.30169,-0.519567)--(5.30148,-0.519554)--(5.30126,-0.51954)--(5.30105,-0.519526)--(5.30084,-0.519512)--(5.30063,-0.519499)--
> (5.30042,-0.519485)--(5.30021,-0.519472)--(5.3,-0.519458)--(5.29979,-0.519445)--(5.29958,-0.519431)--(5.29937,-0.519418)--(5.29916,-0.519404)--(5.29895,-0.519391)--(5.29874,-0.519378)--(5.29852,-0.519365)--(5.29831,-0.519352)--(5.2981,-0.519338)--(5.29789,-0.519325)--(5.29768,-0.519312)--(5.29747,-0.519299)--(5.29726,-0.519286)--(5.29704,-0.519274)--(5.29683,-0.519261)--(5.29662,-0.519248)--(5.29641,-0.519235)--(5.2962,-0.519222)--(5.29599,-0.51921)--(5.29577,-0.519197)--(5.29556,-0.519185)--
> (5.29535,-0.519172)--(5.29514,-0.51916)--(5.29493,-0.519147)--(5.29472,-0.519135)--(5.2945,-0.519122)--(5.29429,-0.51911)--(5.29408,-0.519098)--(5.29387,-0.519086)--(5.29365,-0.519073)--(5.29344,-0.519061)--(5.29323,-0.519049)--(5.29302,-0.519037)--(5.2928,-0.519025)--(5.29259,-0.519013)--(5.29238,-0.519001)--(5.29217,-0.518989)--(5.29195,-0.518978)--(5.29174,-0.518966)--(5.29153,-0.518954)--(5.29131,-0.518942)--(5.2911,-0.518931)--(5.29089,-0.518919)--(5.29068,-0.518908)--(5.29046,-0.518896)--
> (5.29025,-0.518885)--(5.29004,-0.518873)--(5.28982,-0.518862)--(5.28961,-0.518851)--(5.2894,-0.518839)--(5.28918,-0.518828)--(5.28897,-0.518817)--(5.28876,-0.518806)--(5.28854,-0.518795)--(5.28833,-0.518784)--(5.28811,-0.518773)--(5.2879,-0.518762)--(5.28769,-0.518751)--(5.28747,-0.51874)--(5.28726,-0.518729)--(5.28705,-0.518719)--(5.28683,-0.518708)--(5.28662,-0.518697)--(5.2864,-0.518687)--(5.28619,-0.518676)--(5.28597,-0.518665)--(5.28576,-0.518655)--(5.28555,-0.518644)--(5.28533,-0.518634)--
> (5.28512,-0.518624)--(5.2849,-0.518613)--(5.28469,-0.518603)--(5.28447,-0.518593)--(5.28426,-0.518583)--(5.28404,-0.518573)--(5.28383,-0.518563)--(5.28361,-0.518553)--(5.2834,-0.518543)--(5.28318,-0.518533)--(5.28297,-0.518523)--(5.28275,-0.518513)--(5.28254,-0.518503)--(5.28232,-0.518493)--(5.28211,-0.518484)--(5.28189,-0.518474)--(5.28168,-0.518464)--(5.28146,-0.518455)--(5.28125,-0.518445)--(5.28103,-0.518436)--(5.28082,-0.518426)--(5.2806,-0.518417)--(5.28038,-0.518408)--(5.28017,-0.518398)--
> (5.27995,-0.518389)--(5.27974,-0.51838)--(5.27952,-0.518371)--(5.27931,-0.518362)--(5.27909,-0.518353)--(5.27887,-0.518344)--(5.27866,-0.518335)--(5.27844,-0.518326)--(5.27823,-0.518317)--(5.27801,-0.518308)--(5.27779,-0.518299)--(5.27758,-0.518291)--(5.27736,-0.518282)--(5.27714,-0.518273)--(5.27693,-0.518265)--(5.27671,-0.518256)--(5.27649,-0.518248)--(5.27628,-0.518239)--(5.27606,-0.518231)--(5.27584,-0.518222)--(5.27563,-0.518214)--(5.27541,-0.518206)--(5.27519,-0.518198)--(5.27498,-0.51819)--
> (5.27476,-0.518181)--(5.27454,-0.518173)--(5.27432,-0.518165)--(5.27411,-0.518157)--(5.27389,-0.518149)--(5.27367,-0.518142)--(5.27345,-0.518134)--(5.27324,-0.518126)--(5.27302,-0.518118)--(5.2728,-0.51811)--(5.27258,-0.518103)--(5.27237,-0.518095)--(5.27215,-0.518088)--(5.27193,-0.51808)--(5.27171,-0.518073)--(5.27149,-0.518065)--(5.27128,-0.518058)--(5.27106,-0.518051)--(5.27084,-0.518043)--(5.27062,-0.518036)--(5.2704,-0.518029)--(5.27019,-0.518022)--(5.26997,-0.518015)--(5.26975,-0.518008)--
> (5.26953,-0.518001)--(5.26931,-0.517994)--(5.26909,-0.517987)--(5.26888,-0.51798)--(5.26866,-0.517973)--(5.26844,-0.517967)--(5.26822,-0.51796)--(5.268,-0.517953)--(5.26778,-0.517947)--(5.26756,-0.51794)--(5.26734,-0.517934)--(5.26712,-0.517927)--(5.2669,-0.517921)--(5.26669,-0.517914)--(5.26647,-0.517908)--(5.26625,-0.517902)--(5.26603,-0.517896)--(5.26581,-0.517889)--(5.26559,-0.517883)--(5.26537,-0.517877)--(5.26515,-0.517871)--(5.26493,-0.517865)--(5.26471,-0.517859)--(5.26449,-0.517854)--
> (5.26427,-0.517848)--(5.26405,-0.517842)--(5.26383,-0.517836)--(5.26361,-0.517831)--(5.26339,-0.517825)--(5.26317,-0.517819)--(5.26295,-0.517814)--(5.26273,-0.517808)--(5.26251,-0.517803)--(5.26229,-0.517797)--(5.26207,-0.517792)--(5.26185,-0.517787)--(5.26163,-0.517782)--(5.26141,-0.517776)--(5.26119,-0.517771)--(5.26097,-0.517766)--(5.26075,-0.517761)--(5.26053,-0.517756)--(5.2603,-0.517751)--(5.26008,-0.517746)--(5.25986,-0.517741)--(5.25964,-0.517737)--(5.25942,-0.517732)--(5.2592,-0.517727)--
> (5.25898,-0.517722)--(5.25876,-0.517718)--(5.25854,-0.517713)--(5.25831,-0.517709)--(5.25809,-0.517704)--(5.25787,-0.5177)--(5.25765,-0.517695)--(5.25743,-0.517691)--(5.25721,-0.517687)--(5.25698,-0.517683)--(5.25676,-0.517678)--(5.25654,-0.517674)--(5.25632,-0.51767)--(5.2561,-0.517666)--(5.25587,-0.517662)--(5.25565,-0.517658)--(5.25543,-0.517654)--(5.25521,-0.517651)--(5.25499,-0.517647)--(5.25476,-0.517643)--(5.25454,-0.517639)--(5.25432,-0.517636)--(5.2541,-0.517632)--(5.25387,-0.517629)--
> (5.25365,-0.517625)--(5.25343,-0.517622)--(5.25321,-0.517618)--(5.25298,-0.517615)--(5.25276,-0.517612)--(5.25254,-0.517609)--(5.25231,-0.517605)--(5.25209,-0.517602)--(5.25187,-0.517599)--(5.25165,-0.517596)--(5.25142,-0.517593)--(5.2512,-0.51759)--(5.25098,-0.517587)--(5.25075,-0.517585)--(5.25053,-0.517582)--(5.2503,-0.517579)--(5.25008,-0.517576)--(5.24986,-0.517574)--(5.24963,-0.517571)--(5.24941,-0.517569)--(5.24919,-0.517566)--(5.24896,-0.517564)--(5.24874,-0.517561)--(5.24851,-0.517559)--
> (5.24829,-0.517557)--(5.24807,-0.517554)--(5.24784,-0.517552)--(5.24762,-0.51755)--(5.24739,-0.517548)--(5.24717,-0.517546)--(5.24695,-0.517544)--(5.24672,-0.517542)--(5.2465,-0.51754)--(5.24627,-0.517538)--(5.24605,-0.517537)--(5.24582,-0.517535)--(5.2456,-0.517533)--(5.24537,-0.517532)--(5.24515,-0.51753)--(5.24492,-0.517528)--(5.2447,-0.517527)--(5.24447,-0.517526)--(5.24425,-0.517524)--(5.24402,-0.517523)--(5.2438,-0.517522)--(5.24357,-0.51752)--(5.24335,-0.517519)--(5.24312,-0.517518)--
> (5.2429,-0.517517)--(5.24267,-0.517516)--(5.24244,-0.517515)--(5.24222,-0.517514)--(5.24199,-0.517513)--(5.24177,-0.517512)--(5.24154,-0.517512)--(5.24132,-0.517511)--(5.24109,-0.51751)--(5.24086,-0.51751)--(5.24064,-0.517509)--(5.24041,-0.517509)--(5.24019,-0.517508)--(5.23996,-0.517508)--(5.23973,-0.517507)--(5.23951,-0.517507)--(5.23928,-0.517507)--(5.23905,-0.517507)--(5.23883,-0.517506)--(5.2386,-0.517506)--(5.23837,-0.517506)--(5.23815,-0.517506)--(5.23792,-0.517506)--(5.23769,-0.517506)--
> (5.23747,-0.517507)--(5.23724,-0.517507)--(5.23701,-0.517507)--(5.23678,-0.517507)--(5.23656,-0.517508)--(5.23633,-0.517508)--(5.2361,-0.517509)--(5.23588,-0.517509)--(5.23565,-0.51751)--(5.23542,-0.51751)--(5.23519,-0.517511)--(5.23497,-0.517512)--(5.23474,-0.517513)--(5.23451,-0.517513)--(5.23428,-0.517514)--(5.23405,-0.517515)--(5.23383,-0.517516)--(5.2336,-0.517517)--(5.23337,-0.517518)--(5.23314,-0.517519)--(5.23291,-0.517521)--(5.23269,-0.517522)--(5.23246,-0.517523)--(5.23223,-0.517524)--
> (5.232,-0.517526)--(5.23177,-0.517527)--(5.23154,-0.517529)--(5.23131,-0.51753)--(5.23109,-0.517532)--(5.23086,-0.517534)--(5.23063,-0.517535)--(5.2304,-0.517537)--(5.23017,-0.517539)--(5.22994,-0.517541)--(5.22971,-0.517543)--(5.22948,-0.517545)--(5.22925,-0.517547)--(5.22902,-0.517549)--(5.2288,-0.517551)--(5.22857,-0.517553)--(5.22834,-0.517555)--(5.22811,-0.517558)--(5.22788,-0.51756)--(5.22765,-0.517562)--(5.22742,-0.517565)--(5.22719,-0.517567)--(5.22696,-0.51757)--(5.22673,-0.517573)--
> (5.2265,-0.517575)--(5.22627,-0.517578)--(5.22604,-0.517581)--(5.22581,-0.517584)--(5.22558,-0.517586)--(5.22535,-0.517589)--(5.22512,-0.517592)--(5.22489,-0.517595)--(5.22466,-0.517598)--(5.22443,-0.517602)--(5.2242,-0.517605)--(5.22397,-0.517608)--(5.22373,-0.517611)--(5.2235,-0.517615)--(5.22327,-0.517618)--(5.22304,-0.517622)--(5.22281,-0.517625)--(5.22258,-0.517629)--(5.22235,-0.517632)--(5.22212,-0.517636)--(5.22189,-0.51764)--(5.22166,-0.517643)--(5.22142,-0.517647)--(5.22119,-0.517651)--
> (5.22096,-0.517655)--(5.22073,-0.517659)--(5.2205,-0.517663)--(5.22027,-0.517667)--(5.22003,-0.517671)--(5.2198,-0.517676)--(5.21957,-0.51768)--(5.21934,-0.517684)--(5.21911,-0.517689)--(5.21887,-0.517693)--(5.21864,-0.517698)--(5.21841,-0.517702)--(5.21818,-0.517707)--(5.21795,-0.517711)--(5.21771,-0.517716)--(5.21748,-0.517721)--(5.21725,-0.517726)--(5.21702,-0.51773)--(5.21678,-0.517735)--(5.21655,-0.51774)--(5.21632,-0.517745)--(5.21609,-0.51775)--(5.21585,-0.517756)--(5.21562,-0.517761)--
> (5.21539,-0.517766)--(5.21515,-0.517771)--(5.21492,-0.517777)--(5.21469,-0.517782)--(5.21445,-0.517787)--(5.21422,-0.517793)--(5.21399,-0.517799)--(5.21375,-0.517804)--(5.21352,-0.51781)--(5.21329,-0.517816)--(5.21305,-0.517821)--(5.21282,-0.517827)--(5.21258,-0.517833)--(5.21235,-0.517839)--(5.21212,-0.517845)--(5.21188,-0.517851)--(5.21165,-0.517857)--(5.21141,-0.517863)--(5.21118,-0.51787)--(5.21095,-0.517876)--(5.21071,-0.517882)--(5.21048,-0.517889)--(5.21024,-0.517895)--(5.21001,-0.517902)--
> (5.20977,-0.517908)--(5.20954,-0.517915)--(5.2093,-0.517921)--(5.20907,-0.517928)--(5.20883,-0.517935)--(5.2086,-0.517942)--(5.20836,-0.517949)--(5.20813,-0.517956)--(5.20789,-0.517963)--(5.20766,-0.51797)--(5.20742,-0.517977)--(5.20719,-0.517984)--(5.20695,-0.517991)--(5.20672,-0.517998)--(5.20648,-0.518006)--(5.20625,-0.518013)--(5.20601,-0.518021)--(5.20578,-0.518028)--(5.20554,-0.518036)--(5.2053,-0.518043)--(5.20507,-0.518051)--(5.20483,-0.518059)--(5.2046,-0.518066)--(5.20436,-0.518074)--
> (5.20412,-0.518082)--(5.20389,-0.51809)--(5.20365,-0.518098)--(5.20341,-0.518106)--(5.20318,-0.518114)--(5.20294,-0.518122)--(5.2027,-0.518131)--(5.20247,-0.518139)--(5.20223,-0.518147)--(5.20199,-0.518156)--(5.20176,-0.518164)--(5.20152,-0.518173)--(5.20128,-0.518181)--(5.20105,-0.51819)--(5.20081,-0.518198)--(5.20057,-0.518207)--(5.20033,-0.518216)--(5.2001,-0.518225)--(5.19986,-0.518234)--(5.19962,-0.518243)--(5.19938,-0.518252)--(5.19915,-0.518261)--(5.19891,-0.51827)--(5.19867,-0.518279)--
> (5.19843,-0.518288)--(5.1982,-0.518298)--(5.19796,-0.518307)--(5.19772,-0.518316)--(5.19748,-0.518326)--(5.19724,-0.518335)--(5.19701,-0.518345)--(5.19677,-0.518355)--(5.19653,-0.518364)--(5.19629,-0.518374)--(5.19605,-0.518384)--(5.19581,-0.518394)--(5.19557,-0.518404)--(5.19534,-0.518414)--(5.1951,-0.518424)--(5.19486,-0.518434)--(5.19462,-0.518444)--(5.19438,-0.518454)--(5.19414,-0.518465)--(5.1939,-0.518475)--(5.19366,-0.518485)--(5.19342,-0.518496)--(5.19318,-0.518506)--(5.19294,-0.518517)--
> (5.19271,-0.518527)--(5.19247,-0.518538)--(5.19223,-0.518549)--(5.19199,-0.51856)--(5.19175,-0.51857)--(5.19151,-0.518581)--(5.19127,-0.518592)--(5.19103,-0.518603)--(5.19079,-0.518614)--(5.19055,-0.518626)--(5.19031,-0.518637)--(5.19007,-0.518648)--(5.18983,-0.518659)--(5.18959,-0.518671)--(5.18935,-0.518682)--(5.1891,-0.518694)--(5.18886,-0.518705)--(5.18862,-0.518717)--(5.18838,-0.518728)--(5.18814,-0.51874)--(5.1879,-0.518752)--(5.18766,-0.518764)--(5.18742,-0.518776)--(5.18718,-0.518788)--
> (5.18694,-0.5188)--(5.1867,-0.518812)--(5.18645,-0.518824)--(5.18621,-0.518836)--(5.18597,-0.518848)--(5.18573,-0.51886)--(5.18549,-0.518873)--(5.18525,-0.518885)--(5.18501,-0.518898)--(5.18476,-0.51891)--(5.18452,-0.518923)--(5.18428,-0.518936)--(5.18404,-0.518948)--(5.1838,-0.518961)--(5.18355,-0.518974)--(5.18331,-0.518987)--(5.18307,-0.519)--(5.18283,-0.519013)--(5.18258,-0.519026)--(5.18234,-0.519039)--(5.1821,-0.519052)--(5.18186,-0.519065)--(5.18161,-0.519079)--(5.18137,-0.519092)--
> (5.18113,-0.519105)--(5.18089,-0.519119)--(5.18064,-0.519133)--(5.1804,-0.519146)--(5.18016,-0.51916)--(5.17991,-0.519174)--(5.17967,-0.519187)--(5.17943,-0.519201)--(5.17918,-0.519215)--(5.17894,-0.519229)--(5.1787,-0.519243)--(5.17845,-0.519257)--(5.17821,-0.519271)--(5.17797,-0.519285)--(5.17772,-0.5193)--(5.17748,-0.519314)--(5.17723,-0.519328)--(5.17699,-0.519343)--(5.17675,-0.519357)--(5.1765,-0.519372)--(5.17626,-0.519387)--(5.17601,-0.519401)--(5.17577,-0.519416)--(5.17552,-0.519431)--
> (5.17528,-0.519446)--(5.17503,-0.519461)--(5.17479,-0.519476)--(5.17454,-0.519491)--(5.1743,-0.519506)--(5.17405,-0.519521)--(5.17381,-0.519536)--(5.17356,-0.519551)--(5.17332,-0.519567)--(5.17307,-0.519582)--(5.17283,-0.519598)--(5.17258,-0.519613)--(5.17234,-0.519629)--(5.17209,-0.519644)--(5.17185,-0.51966)--(5.1716,-0.519676)--(5.17136,-0.519692)--(5.17111,-0.519708)--(5.17086,-0.519724)--(5.17062,-0.51974)--(5.17037,-0.519756)--(5.17013,-0.519772)--(5.16988,-0.519788)--(5.16963,-0.519804)--
> (5.16939,-0.519821)--(5.16914,-0.519837)--(5.16889,-0.519853)--(5.16865,-0.51987)--(5.1684,-0.519886)--(5.16816,-0.519903)--(5.16791,-0.51992)--(5.16766,-0.519937)--(5.16741,-0.519953)--(5.16717,-0.51997)--(5.16692,-0.519987)--(5.16667,-0.520004)--(5.16643,-0.520021)--(5.16618,-0.520038)--(5.16593,-0.520056)--(5.16568,-0.520073)--(5.16544,-0.52009)--(5.16519,-0.520107)--(5.16494,-0.520125)--(5.16469,-0.520142)--(5.16445,-0.52016)--(5.1642,-0.520178)--(5.16395,-0.520195)--(5.1637,-0.520213)--
> (5.16345,-0.520231)--(5.16321,-0.520249)--(5.16296,-0.520267)--(5.16271,-0.520285)--(5.16246,-0.520303)--(5.16221,-0.520321)--(5.16196,-0.520339)--(5.16172,-0.520357)--(5.16147,-0.520375)--(5.16122,-0.520394)--(5.16097,-0.520412)--(5.16072,-0.520431)--(5.16047,-0.520449)--(5.16022,-0.520468)--(5.15997,-0.520487)--(5.15972,-0.520505)--(5.15948,-0.520524)--(5.15923,-0.520543)--(5.15898,-0.520562)--(5.15873,-0.520581)--(5.15848,-0.5206)--(5.15823,-0.520619)--(5.15798,-0.520638)--(5.15773,-0.520657)--
> (5.15748,-0.520677)--(5.15723,-0.520696)--(5.15698,-0.520716)--(5.15673,-0.520735)--(5.15648,-0.520755)--(5.15623,-0.520774)--(5.15598,-0.520794)--(5.15573,-0.520814)--(5.15548,-0.520833)--(5.15523,-0.520853)--(5.15498,-0.520873)--(5.15472,-0.520893)--(5.15447,-0.520913)--(5.15422,-0.520934)--(5.15397,-0.520954)--(5.15372,-0.520974)--(5.15347,-0.520994)--(5.15322,-0.521015)--(5.15297,-0.521035)--(5.15272,-0.521056)--(5.15247,-0.521076)--(5.15221,-0.521097)--(5.15196,-0.521118)--
> (5.15171,-0.521138)--(5.15146,-0.521159)--(5.15121,-0.52118)--(5.15096,-0.521201)--(5.1507,-0.521222)--(5.15045,-0.521243)--(5.1502,-0.521264)--(5.14995,-0.521286)--(5.14969,-0.521307)--(5.14944,-0.521328)--(5.14919,-0.52135)--(5.14894,-0.521371)--(5.14869,-0.521393)--(5.14843,-0.521414)--(5.14818,-0.521436)--(5.14793,-0.521458)--(5.14767,-0.521479)--(5.14742,-0.521501)--(5.14717,-0.521523)--(5.14692,-0.521545)--(5.14666,-0.521567)--(5.14641,-0.521589)--(5.14616,-0.521612)--(5.1459,-0.521634)--
> (5.14565,-0.521656)--(5.1454,-0.521679)--(5.14514,-0.521701)--(5.14489,-0.521724)--(5.14463,-0.521746)--(5.14438,-0.521769)--(5.14413,-0.521792)--(5.14387,-0.521814)--(5.14362,-0.521837)--(5.14336,-0.52186)--(5.14311,-0.521883)--(5.14286,-0.521906)--(5.1426,-0.521929)--(5.14235,-0.521952)--(5.14209,-0.521976)--(5.14184,-0.521999)--(5.14158,-0.522022)--(5.14133,-0.522046)--(5.14107,-0.522069)--(5.14082,-0.522093)--(5.14056,-0.522116)--(5.14031,-0.52214)--(5.14005,-0.522164)--(5.1398,-0.522188)--
> (5.13954,-0.522212)--(5.13929,-0.522236)--(5.13903,-0.52226)--(5.13878,-0.522284)--(5.13852,-0.522308)--(5.13826,-0.522332)--(5.13801,-0.522356)--(5.13775,-0.522381)--(5.1375,-0.522405)--(5.13724,-0.52243)--(5.13698,-0.522454)--(5.13673,-0.522479)--(5.13647,-0.522504)--(5.13622,-0.522528)--(5.13596,-0.522553)--(5.1357,-0.522578)--(5.13545,-0.522603)--(5.13519,-0.522628)--(5.13493,-0.522653)--(5.13468,-0.522678)--(5.13442,-0.522704)--(5.13416,-0.522729)--(5.1339,-0.522754)--(5.13365,-0.52278)--
> (5.13339,-0.522805)--(5.13313,-0.522831)--(5.13288,-0.522856)--(5.13262,-0.522882)--(5.13236,-0.522908)--(5.1321,-0.522934)--(5.13185,-0.52296)--(5.13159,-0.522986)--(5.13133,-0.523012)--(5.13107,-0.523038)--(5.13081,-0.523064)--(5.13056,-0.52309)--(5.1303,-0.523116)--(5.13004,-0.523143)--(5.12978,-0.523169)--(5.12952,-0.523196)--(5.12926,-0.523222)--(5.12901,-0.523249)--(5.12875,-0.523276)--(5.12849,-0.523303)--(5.12823,-0.523329)--(5.12797,-0.523356)--(5.12771,-0.523383)--(5.12745,-0.52341)--
> (5.12719,-0.523437)--(5.12693,-0.523465)--(5.12667,-0.523492)--(5.12641,-0.523519)--(5.12616,-0.523547)--(5.1259,-0.523574)--(5.12564,-0.523602)--(5.12538,-0.523629)--(5.12512,-0.523657)--(5.12486,-0.523685)--(5.1246,-0.523713)--(5.12434,-0.52374)--(5.12408,-0.523768)--(5.12382,-0.523796)--(5.12356,-0.523824)--(5.1233,-0.523853)--(5.12303,-0.523881)--(5.12277,-0.523909)--(5.12251,-0.523938)--(5.12225,-0.523966)--(5.12199,-0.523994)--(5.12173,-0.524023)--(5.12147,-0.524052)--(5.12121,-0.52408)--
> (5.12095,-0.524109)--(5.12069,-0.524138)--(5.12043,-0.524167)--(5.12016,-0.524196)--(5.1199,-0.524225)--(5.11964,-0.524254)--(5.11938,-0.524283)--(5.11912,-0.524313)--(5.11886,-0.524342)--(5.11859,-0.524371)--(5.11833,-0.524401)--(5.11807,-0.52443)--(5.11781,-0.52446)--(5.11755,-0.52449)--(5.11728,-0.52452)--(5.11702,-0.524549)--(5.11676,-0.524579)--(5.1165,-0.524609)--(5.11623,-0.524639)--(5.11597,-0.524669)--(5.11571,-0.5247)--(5.11545,-0.52473)--(5.11518,-0.52476)--(5.11492,-0.524791)--
> (5.11466,-0.524821)--(5.11439,-0.524852)--(5.11413,-0.524882)--(5.11387,-0.524913)--(5.1136,-0.524944)--(5.11334,-0.524974)--(5.11308,-0.525005)--(5.11281,-0.525036)--(5.11255,-0.525067)--(5.11228,-0.525098)--(5.11202,-0.52513)--(5.11176,-0.525161)--(5.11149,-0.525192)--(5.11123,-0.525224)--(5.11096,-0.525255)--(5.1107,-0.525287)--(5.11043,-0.525318)--(5.11017,-0.52535)--(5.10991,-0.525382)--(5.10964,-0.525413)--(5.10938,-0.525445)--(5.10911,-0.525477)--(5.10885,-0.525509)--(5.10858,-0.525541)--
> (5.10832,-0.525574)--(5.10805,-0.525606)--(5.10779,-0.525638)--(5.10752,-0.525671)--(5.10725,-0.525703)--(5.10699,-0.525736)--(5.10672,-0.525768)--(5.10646,-0.525801)--(5.10619,-0.525834)--(5.10593,-0.525866)--(5.10566,-0.525899)--(5.10539,-0.525932)--(5.10513,-0.525965)--(5.10486,-0.525998)--(5.1046,-0.526032)--(5.10433,-0.526065)--(5.10406,-0.526098)--(5.1038,-0.526132)--(5.10353,-0.526165)--(5.10326,-0.526199)--(5.103,-0.526232)--(5.10273,-0.526266)--(5.10246,-0.5263)--(5.10219,-0.526334)--
> (5.10193,-0.526368)--(5.10166,-0.526402)--(5.10139,-0.526436)--(5.10113,-0.52647)--(5.10086,-0.526504)--(5.10059,-0.526538)--(5.10032,-0.526573)--(5.10005,-0.526607)--(5.09979,-0.526642)--(5.09952,-0.526676)--(5.09925,-0.526711)--(5.09898,-0.526746)--(5.09871,-0.52678)--(5.09845,-0.526815)--(5.09818,-0.52685)--(5.09791,-0.526885)--(5.09764,-0.52692)--(5.09737,-0.526955)--(5.0971,-0.526991)--(5.09683,-0.527026)--(5.09657,-0.527061)--(5.0963,-0.527097)--(5.09603,-0.527132)--(5.09576,-0.527168)--
> (5.09549,-0.527204)--(5.09522,-0.52724)--(5.09495,-0.527275)--(5.09468,-0.527311)--(5.09441,-0.527347)--(5.09414,-0.527383)--(5.09387,-0.527419)--(5.0936,-0.527456)--(5.09333,-0.527492)--(5.09306,-0.527528)--(5.09279,-0.527565)--(5.09252,-0.527601)--(5.09225,-0.527638)--(5.09198,-0.527675)--(5.09171,-0.527711)--(5.09144,-0.527748)--(5.09117,-0.527785)--(5.0909,-0.527822)--(5.09063,-0.527859)--(5.09036,-0.527896)--(5.09008,-0.527933)--(5.08981,-0.527971)--(5.08954,-0.528008)--(5.08927,-0.528045)--
> (5.089,-0.528083)--(5.08873,-0.52812)--(5.08846,-0.528158)--(5.08819,-0.528196)--(5.08791,-0.528234)--(5.08764,-0.528271)--(5.08737,-0.528309)--(5.0871,-0.528347)--(5.08683,-0.528385)--(5.08655,-0.528424)--(5.08628,-0.528462)--(5.08601,-0.5285)--(5.08574,-0.528539)--(5.08546,-0.528577)--(5.08519,-0.528616)--(5.08492,-0.528654)--(5.08465,-0.528693)--(5.08437,-0.528732)--(5.0841,-0.528771)--(5.08383,-0.52881)--(5.08355,-0.528849)--(5.08328,-0.528888)--(5.08301,-0.528927)--(5.08273,-0.528966)--
> (5.08246,-0.529005)--(5.08219,-0.529045)--(5.08191,-0.529084)--(5.08164,-0.529124)--(5.08136,-0.529164)--(5.08109,-0.529203)--(5.08082,-0.529243)--(5.08054,-0.529283)--(5.08027,-0.529323)--(5.07999,-0.529363)--(5.07972,-0.529403)--(5.07945,-0.529443)--(5.07917,-0.529483)--(5.0789,-0.529524)--(5.07862,-0.529564)--(5.07835,-0.529605)--(5.07807,-0.529645)--(5.0778,-0.529686)--(5.07752,-0.529727)--(5.07725,-0.529767)--(5.07697,-0.529808)--(5.0767,-0.529849)--(5.07642,-0.52989)--(5.07614,-0.529931)--
> (5.07587,-0.529972)--(5.07559,-0.530014)--(5.07532,-0.530055)--(5.07504,-0.530097)--(5.07476,-0.530138)--(5.07449,-0.53018)--(5.07421,-0.530221)--(5.07394,-0.530263)--(5.07366,-0.530305)--(5.07338,-0.530347)--(5.07311,-0.530389)--(5.07283,-0.530431)--(5.07255,-0.530473)--(5.07228,-0.530515)--(5.072,-0.530557)--(5.07172,-0.5306)--(5.07144,-0.530642)--(5.07117,-0.530685)--(5.07089,-0.530727)--(5.07061,-0.53077)--(5.07033,-0.530813)--(5.07006,-0.530856)--(5.06978,-0.530899)--(5.0695,-0.530942)--
> (5.06922,-0.530985)--(5.06895,-0.531028)--(5.06867,-0.531071)--(5.06839,-0.531114)--(5.06811,-0.531158)--(5.06783,-0.531201)--(5.06755,-0.531245)--(5.06728,-0.531289)--(5.067,-0.531332)--(5.06672,-0.531376)--(5.06644,-0.53142)--(5.06616,-0.531464)--(5.06588,-0.531508)--(5.0656,-0.531552)--(5.06532,-0.531596)--(5.06504,-0.531641)--(5.06476,-0.531685)--(5.06449,-0.531729)--(5.06421,-0.531774)--(5.06393,-0.531819)--(5.06365,-0.531863)--(5.06337,-0.531908)--(5.06309,-0.531953)--(5.06281,-0.531998)--
> (5.06253,-0.532043)--(5.06225,-0.532088)--(5.06197,-0.532133)--(5.06168,-0.532178)--(5.0614,-0.532224)--(5.06112,-0.532269)--(5.06084,-0.532315)--(5.06056,-0.53236)--(5.06028,-0.532406)--(5.06,-0.532452)--(5.05972,-0.532498)--(5.05944,-0.532543)--(5.05916,-0.532589)--(5.05888,-0.532636)--(5.05859,-0.532682)--(5.05831,-0.532728)--(5.05803,-0.532774)--(5.05775,-0.532821)--(5.05747,-0.532867)--(5.05719,-0.532914)--(5.0569,-0.53296)--(5.05662,-0.533007)--(5.05634,-0.533054)--(5.05606,-0.533101)--
> (5.05577,-0.533148)--(5.05549,-0.533195)--(5.05521,-0.533242)--(5.05493,-0.533289)--(5.05464,-0.533337)--(5.05436,-0.533384)--(5.05408,-0.533432)--(5.05379,-0.533479)--(5.05351,-0.533527)--(5.05323,-0.533575)--(5.05294,-0.533622)--(5.05266,-0.53367)--(5.05238,-0.533718)--(5.05209,-0.533766)--(5.05181,-0.533814)--(5.05153,-0.533863)--(5.05124,-0.533911)--(5.05096,-0.533959)--(5.05067,-0.534008)--(5.05039,-0.534056)--(5.0501,-0.534105)--(5.04982,-0.534154)--(5.04954,-0.534203)--(5.04925,-0.534252)--
> (5.04897,-0.534301)--(5.04868,-0.53435)--(5.0484,-0.534399)--(5.04811,-0.534448)--(5.04783,-0.534497)--(5.04754,-0.534547)--(5.04726,-0.534596)--(5.04697,-0.534646)--(5.04669,-0.534696)--(5.0464,-0.534745)--(5.04611,-0.534795)--(5.04583,-0.534845)--(5.04554,-0.534895)--(5.04526,-0.534945)--(5.04497,-0.534995)--(5.04468,-0.535046)--(5.0444,-0.535096)--(5.04411,-0.535146)--(5.04382,-0.535197)--(5.04354,-0.535247)--(5.04325,-0.535298)--(5.04296,-0.535349)--(5.04268,-0.5354)--(5.04239,-0.535451)--
> (5.0421,-0.535502)--(5.04182,-0.535553)--(5.04153,-0.535604)--(5.04124,-0.535655)--(5.04095,-0.535707)--(5.04067,-0.535758)--(5.04038,-0.53581)--(5.04009,-0.535861)--(5.0398,-0.535913)--(5.03952,-0.535965)--(5.03923,-0.536017)--(5.03894,-0.536069)--(5.03865,-0.536121)--(5.03836,-0.536173)--(5.03807,-0.536225)--(5.03779,-0.536278)--(5.0375,-0.53633)--(5.03721,-0.536382)--(5.03692,-0.536435)--(5.03663,-0.536488)--(5.03634,-0.53654)--(5.03605,-0.536593)--(5.03576,-0.536646)--(5.03547,-0.536699)--
> (5.03518,-0.536752)--(5.03489,-0.536806)--(5.0346,-0.536859)--(5.03431,-0.536912)--(5.03402,-0.536966)--(5.03373,-0.537019)--(5.03344,-0.537073)--(5.03315,-0.537127)--(5.03286,-0.53718)--(5.03257,-0.537234)--(5.03228,-0.537288)--(5.03199,-0.537342)--(5.0317,-0.537396)--(5.03141,-0.537451)--(5.03112,-0.537505)--(5.03083,-0.537559)--(5.03054,-0.537614)--(5.03025,-0.537669)--(5.02996,-0.537723)--(5.02966,-0.537778)--(5.02937,-0.537833)--(5.02908,-0.537888)--(5.02879,-0.537943)--(5.0285,-0.537998)--
> (5.02821,-0.538053)--(5.02791,-0.538109)--(5.02762,-0.538164)--(5.02733,-0.538219)--(5.02704,-0.538275)--(5.02674,-0.538331)--(5.02645,-0.538386)--(5.02616,-0.538442)--(5.02587,-0.538498)--(5.02557,-0.538554)--(5.02528,-0.53861)--(5.02499,-0.538667)--(5.02469,-0.538723)--(5.0244,-0.538779)--(5.02411,-0.538836)--(5.02381,-0.538892)--(5.02352,-0.538949)--(5.02323,-0.539006)--(5.02293,-0.539063)--(5.02264,-0.539119)--(5.02235,-0.539177)--(5.02205,-0.539234)--(5.02176,-0.539291)--(5.02146,-0.539348)--
> (5.02117,-0.539405)--(5.02088,-0.539463)--(5.02058,-0.539521)--(5.02029,-0.539578)--(5.01999,-0.539636)--(5.0197,-0.539694)--(5.0194,-0.539752)--(5.01911,-0.53981)--(5.01881,-0.539868)--(5.01852,-0.539926)--(5.01822,-0.539984)--(5.01792,-0.540043)--(5.01763,-0.540101)--(5.01733,-0.54016)--(5.01704,-0.540218)--(5.01674,-0.540277)--(5.01645,-0.540336)--(5.01615,-0.540395)--(5.01585,-0.540454)--(5.01556,-0.540513)--(5.01526,-0.540572)--(5.01496,-0.540631)--(5.01467,-0.540691)--(5.01437,-0.54075)--
> (5.01407,-0.54081)--(5.01378,-0.54087)--(5.01348,-0.540929)--(5.01318,-0.540989)--(5.01289,-0.541049)--(5.01259,-0.541109)--(5.01229,-0.541169)--(5.01199,-0.54123)--(5.0117,-0.54129)--(5.0114,-0.54135)--(5.0111,-0.541411)--(5.0108,-0.541471)--(5.0105,-0.541532)--(5.01021,-0.541593)--(5.00991,-0.541654)--(5.00961,-0.541715)--(5.00931,-0.541776)--(5.00901,-0.541837)--(5.00871,-0.541898)--(5.00841,-0.541959)--(5.00811,-0.542021)--(5.00782,-0.542082)--(5.00752,-0.542144)--(5.00722,-0.542206)--
> (5.00692,-0.542268)--(5.00662,-0.54233)--(5.00632,-0.542392)--(5.00602,-0.542454)--(5.00572,-0.542516)--(5.00542,-0.542578)--(5.00512,-0.54264)--(5.00482,-0.542703)--(5.00452,-0.542766)--(5.00422,-0.542828)--(5.00392,-0.542891)--(5.00362,-0.542954)--(5.00332,-0.543017)--(5.00302,-0.54308)--(5.00271,-0.543143)--(5.00241,-0.543206)--(5.00211,-0.543269)--(5.00181,-0.543333)--(5.00151,-0.543396)--(5.00121,-0.54346)--(5.00091,-0.543524)--(5.00061,-0.543588)--(5.0003,-0.543651)--(5,-0.543715)--
> (4.9997,-0.54378)--(4.9994,-0.543844)--(4.9991,-0.543908)--(4.99879,-0.543972)--(4.99849,-0.544037)--(4.99819,-0.544101)--(4.99789,-0.544166)--(4.99758,-0.544231)--(4.99728,-0.544296)--(4.99698,-0.544361)--(4.99667,-0.544426)--(4.99637,-0.544491)--(4.99607,-0.544556)--(4.99576,-0.544622)--(4.99546,-0.544687)--(4.99516,-0.544753)--(4.99485,-0.544818)--(4.99455,-0.544884)--(4.99425,-0.54495)--(4.99394,-0.545016)--(4.99364,-0.545082)--(4.99333,-0.545148)--(4.99303,-0.545214)--(4.99272,-0.54528)--
> (4.99242,-0.545347)--(4.99212,-0.545413)--(4.99181,-0.54548)--(4.99151,-0.545547)--(4.9912,-0.545613)--(4.9909,-0.54568)--(4.99059,-0.545747)--(4.99029,-0.545814)--(4.98998,-0.545882)--(4.98967,-0.545949)--(4.98937,-0.546016)--(4.98906,-0.546084)--(4.98876,-0.546151)--(4.98845,-0.546219)--(4.98814,-0.546287)--(4.98784,-0.546355)--(4.98753,-0.546423)--(4.98723,-0.546491)--(4.98692,-0.546559)--(4.98661,-0.546627)--(4.98631,-0.546696)--(4.986,-0.546764)--(4.98569,-0.546833)--(4.98538,-0.546902)--
> (4.98508,-0.54697)--(4.98477,-0.547039)--(4.98446,-0.547108)--(4.98415,-0.547177)--(4.98385,-0.547247)--(4.98354,-0.547316)--(4.98323,-0.547385)--(4.98292,-0.547455)--(4.98262,-0.547524)--(4.98231,-0.547594)--(4.982,-0.547664)--(4.98169,-0.547734)--(4.98138,-0.547804)--(4.98107,-0.547874)--(4.98076,-0.547944)--(4.98046,-0.548014)--(4.98015,-0.548085)--(4.97984,-0.548155)--(4.97953,-0.548226)--(4.97922,-0.548296)--(4.97891,-0.548367)--(4.9786,-0.548438)--(4.97829,-0.548509)--(4.97798,-0.54858)--
> (4.97767,-0.548651)--(4.97736,-0.548723)--(4.97705,-0.548794)--(4.97674,-0.548866)--(4.97643,-0.548937)--(4.97612,-0.549009)--(4.97581,-0.549081)--(4.9755,-0.549153)--(4.97519,-0.549225)--(4.97488,-0.549297)--(4.97456,-0.549369)--(4.97425,-0.549441)--(4.97394,-0.549514)--(4.97363,-0.549586)--(4.97332,-0.549659)--(4.97301,-0.549732)--(4.9727,-0.549805)--(4.97238,-0.549878)--(4.97207,-0.549951)--(4.97176,-0.550024)--(4.97145,-0.550097)--(4.97114,-0.55017)--(4.97082,-0.550244)--(4.97051,-0.550317)--
> (4.9702,-0.550391)--(4.96988,-0.550465)--(4.96957,-0.550539)--(4.96926,-0.550613)--(4.96895,-0.550687)--(4.96863,-0.550761)--(4.96832,-0.550835)--(4.96801,-0.55091)--(4.96769,-0.550984)--(4.96738,-0.551059)--(4.96706,-0.551133)--(4.96675,-0.551208)--(4.96644,-0.551283)--(4.96612,-0.551358)--(4.96581,-0.551433)--(4.96549,-0.551509)--(4.96518,-0.551584)--(4.96486,-0.551659)--(4.96455,-0.551735)--(4.96423,-0.551811)--(4.96392,-0.551886)--(4.9636,-0.551962)--(4.96329,-0.552038)--(4.96297,-0.552114)--
> (4.96266,-0.55219)--(4.96234,-0.552267)--(4.96203,-0.552343)--(4.96171,-0.55242)--(4.9614,-0.552496)--(4.96108,-0.552573)--(4.96076,-0.55265)--(4.96045,-0.552727)--(4.96013,-0.552804)--(4.95981,-0.552881)--(4.9595,-0.552958)--(4.95918,-0.553035)--(4.95886,-0.553113)--(4.95855,-0.55319)--(4.95823,-0.553268)--(4.95791,-0.553346)--(4.9576,-0.553424)--(4.95728,-0.553502)--(4.95696,-0.55358)--(4.95664,-0.553658)--(4.95632,-0.553736)--(4.95601,-0.553815)--(4.95569,-0.553893)--(4.95537,-0.553972)--
> (4.95505,-0.554051)--(4.95473,-0.55413)--(4.95442,-0.554209)--(4.9541,-0.554288)--(4.95378,-0.554367)--(4.95346,-0.554446)--(4.95314,-0.554525)--(4.95282,-0.554605)--(4.9525,-0.554685)--(4.95218,-0.554764)--(4.95186,-0.554844)--(4.95154,-0.554924)--(4.95122,-0.555004)--(4.9509,-0.555084)--(4.95058,-0.555165)--(4.95026,-0.555245)--(4.94994,-0.555325)--(4.94962,-0.555406)--(4.9493,-0.555487)--(4.94898,-0.555568)--(4.94866,-0.555648)--(4.94834,-0.555729)--(4.94802,-0.555811)--(4.9477,-0.555892)--
> (4.94738,-0.555973)--(4.94706,-0.556055)--(4.94673,-0.556136)--(4.94641,-0.556218)--(4.94609,-0.5563)--(4.94577,-0.556382)--(4.94545,-0.556464)--(4.94513,-0.556546)--(4.9448,-0.556628)--(4.94448,-0.55671)--(4.94416,-0.556793)--(4.94384,-0.556875)--(4.94351,-0.556958)--(4.94319,-0.557041)--(4.94287,-0.557124)--(4.94255,-0.557207)--(4.94222,-0.55729)--(4.9419,-0.557373)--(4.94158,-0.557457)--(4.94125,-0.55754)--(4.94093,-0.557624)--(4.94061,-0.557707)--(4.94028,-0.557791)--(4.93996,-0.557875)--
> (4.93963,-0.557959)--(4.93931,-0.558043)--(4.93898,-0.558128)--(4.93866,-0.558212)--(4.93834,-0.558296)--(4.93801,-0.558381)--(4.93769,-0.558466)--(4.93736,-0.55855)--(4.93704,-0.558635)--(4.93671,-0.55872)--(4.93639,-0.558806)--(4.93606,-0.558891)--(4.93573,-0.558976)--(4.93541,-0.559062)--(4.93508,-0.559147)--(4.93476,-0.559233)--(4.93443,-0.559319)--(4.93411,-0.559405)--(4.93378,-0.559491)--(4.93345,-0.559577)--(4.93313,-0.559663)--(4.9328,-0.55975)--(4.93247,-0.559836)--(4.93215,-0.559923)--
> (4.93182,-0.56001)--(4.93149,-0.560097)--(4.93116,-0.560184)--(4.93084,-0.560271)--(4.93051,-0.560358)--(4.93018,-0.560445)--(4.92985,-0.560533)--(4.92953,-0.56062)--(4.9292,-0.560708)--(4.92887,-0.560796)--(4.92854,-0.560884)--(4.92821,-0.560972)--(4.92788,-0.56106)--(4.92756,-0.561148)--(4.92723,-0.561236)--(4.9269,-0.561325)--(4.92657,-0.561413)--(4.92624,-0.561502)--(4.92591,-0.561591)--(4.92558,-0.56168)--(4.92525,-0.561769)--(4.92492,-0.561858)--(4.92459,-0.561947)--(4.92426,-0.562037)--
> (4.92393,-0.562126)--(4.9236,-0.562216)--(4.92327,-0.562306)--(4.92294,-0.562396)--(4.92261,-0.562486)--(4.92228,-0.562576)--(4.92195,-0.562666)--(4.92162,-0.562756)--(4.92129,-0.562847)--(4.92096,-0.562937)--(4.92062,-0.563028)--(4.92029,-0.563119)--(4.91996,-0.56321)--(4.91963,-0.563301)--(4.9193,-0.563392)--(4.91897,-0.563483)--(4.91863,-0.563575)--(4.9183,-0.563666)--(4.91797,-0.563758)--(4.91764,-0.56385)--(4.9173,-0.563942)--(4.91697,-0.564034)--(4.91664,-0.564126)--(4.91631,-0.564218)--
> (4.91597,-0.56431)--(4.91564,-0.564403)--(4.91531,-0.564495)--(4.91497,-0.564588)--(4.91464,-0.564681)--(4.9143,-0.564774)--(4.91397,-0.564867)--(4.91364,-0.56496)--(4.9133,-0.565054)--(4.91297,-0.565147)--(4.91263,-0.565241)--(4.9123,-0.565334)--(4.91197,-0.565428)--(4.91163,-0.565522)--(4.9113,-0.565616)--(4.91096,-0.56571)--(4.91063,-0.565804)--(4.91029,-0.565899)--(4.90995,-0.565993)--(4.90962,-0.566088)--(4.90928,-0.566183)--(4.90895,-0.566278)--(4.90861,-0.566373)--(4.90828,-0.566468)--
> (4.90794,-0.566563)--(4.9076,-0.566658)--(4.90727,-0.566754)--(4.90693,-0.56685)--(4.90659,-0.566945)--(4.90626,-0.567041)--(4.90592,-0.567137)--(4.90558,-0.567233)--(4.90524,-0.56733)--(4.90491,-0.567426)--(4.90457,-0.567522)--(4.90423,-0.567619)--(4.90389,-0.567716)--(4.90356,-0.567813)--(4.90322,-0.56791)--(4.90288,-0.568007)--(4.90254,-0.568104)--(4.9022,-0.568201)--(4.90186,-0.568299)--(4.90153,-0.568396)--(4.90119,-0.568494)--(4.90085,-0.568592)--(4.90051,-0.56869)--(4.90017,-0.568788)--
> (4.89983,-0.568886)--(4.89949,-0.568984)--(4.89915,-0.569083)--(4.89881,-0.569181)--(4.89847,-0.56928)--(4.89813,-0.569379)--(4.89779,-0.569478)--(4.89745,-0.569577)--(4.89711,-0.569676)--(4.89677,-0.569776)--(4.89643,-0.569875)--(4.89609,-0.569975)--(4.89575,-0.570074)--(4.89541,-0.570174)--(4.89506,-0.570274)--(4.89472,-0.570374)--(4.89438,-0.570474)--(4.89404,-0.570575)--(4.8937,-0.570675)--(4.89336,-0.570776)--(4.89301,-0.570877)--(4.89267,-0.570977)--(4.89233,-0.571078)--(4.89199,-0.571179)--
> (4.89164,-0.571281)--(4.8913,-0.571382)--(4.89096,-0.571484)--(4.89062,-0.571585)--(4.89027,-0.571687)--(4.88993,-0.571789)--(4.88959,-0.571891)--(4.88924,-0.571993)--(4.8889,-0.572095)--(4.88856,-0.572197)--(4.88821,-0.5723)--(4.88787,-0.572403)--(4.88752,-0.572505)--(4.88718,-0.572608)--(4.88683,-0.572711)--(4.88649,-0.572814)--(4.88614,-0.572918)--(4.8858,-0.573021)--(4.88545,-0.573125)--(4.88511,-0.573228)--(4.88476,-0.573332)--(4.88442,-0.573436)--(4.88407,-0.57354)--(4.88373,-0.573644)--
> (4.88338,-0.573748)--(4.88304,-0.573853)--(4.88269,-0.573957)--(4.88234,-0.574062)--(4.882,-0.574167)--(4.88165,-0.574272)--(4.8813,-0.574377)--(4.88096,-0.574482)--(4.88061,-0.574588)--(4.88026,-0.574693)--(4.87992,-0.574799)--(4.87957,-0.574904)--(4.87922,-0.57501)--(4.87887,-0.575116)--(4.87853,-0.575222)--(4.87818,-0.575329)--(4.87783,-0.575435)--(4.87748,-0.575542)--(4.87713,-0.575648)--(4.87678,-0.575755)--(4.87644,-0.575862)--(4.87609,-0.575969)--(4.87574,-0.576076)--(4.87539,-0.576184)--
> (4.87504,-0.576291)--(4.87469,-0.576399)--(4.87434,-0.576506)--(4.87399,-0.576614)--(4.87364,-0.576722)--(4.87329,-0.57683)--(4.87294,-0.576939)--(4.87259,-0.577047)--(4.87224,-0.577155)--(4.87189,-0.577264)--(4.87154,-0.577373)--(4.87119,-0.577482)--(4.87084,-0.577591)--(4.87049,-0.5777)--(4.87014,-0.577809)--(4.86979,-0.577919)--(4.86943,-0.578028)--(4.86908,-0.578138)--(4.86873,-0.578248)--(4.86838,-0.578358)--(4.86803,-0.578468)--(4.86767,-0.578578)--(4.86732,-0.578689)--(4.86697,-0.578799)--
> (4.86662,-0.57891)--(4.86626,-0.579021)--(4.86591,-0.579132)--(4.86556,-0.579243)--(4.86521,-0.579354)--(4.86485,-0.579465)--(4.8645,-0.579577)--(4.86415,-0.579688)--(4.86379,-0.5798)--(4.86344,-0.579912)--(4.86308,-0.580024)--(4.86273,-0.580136)--(4.86238,-0.580248)--(4.86202,-0.580361)--(4.86167,-0.580473)--(4.86131,-0.580586)--(4.86096,-0.580699)--(4.8606,-0.580812)--(4.86025,-0.580925)--(4.85989,-0.581038)--(4.85954,-0.581152)--(4.85918,-0.581265)--(4.85883,-0.581379)--(4.85847,-0.581493)--
> (4.85811,-0.581607)--(4.85776,-0.581721)--(4.8574,-0.581835)--(4.85705,-0.581949)--(4.85669,-0.582064)--(4.85633,-0.582179)--(4.85597,-0.582293)--(4.85562,-0.582408)--(4.85526,-0.582523)--(4.8549,-0.582638)--(4.85455,-0.582754)--(4.85419,-0.582869)--(4.85383,-0.582985)--(4.85347,-0.583101)--(4.85312,-0.583217)--(4.85276,-0.583333)--(4.8524,-0.583449)--(4.85204,-0.583565)--(4.85168,-0.583682)--(4.85132,-0.583798)--(4.85096,-0.583915)--(4.85061,-0.584032)--(4.85025,-0.584149)--(4.84989,-0.584266)--
> (4.84953,-0.584383)--(4.84917,-0.584501)--(4.84881,-0.584618)--(4.84845,-0.584736)--(4.84809,-0.584854)--(4.84773,-0.584972)--(4.84737,-0.58509)--(4.84701,-0.585208)--(4.84665,-0.585327)--(4.84629,-0.585445)--(4.84592,-0.585564)--(4.84556,-0.585683)--(4.8452,-0.585802)--(4.84484,-0.585921)--(4.84448,-0.58604)--(4.84412,-0.58616)--(4.84376,-0.586279)--(4.84339,-0.586399)--(4.84303,-0.586519)--(4.84267,-0.586639)--(4.84231,-0.586759)--(4.84194,-0.586879)--(4.84158,-0.587)--(4.84122,-0.58712)--
> (4.84086,-0.587241)--(4.84049,-0.587362)--(4.84013,-0.587483)--(4.83977,-0.587604)--(4.8394,-0.587725)--(4.83904,-0.587847)--(4.83868,-0.587968)--(4.83831,-0.58809)--(4.83795,-0.588212)--(4.83758,-0.588334)--(4.83722,-0.588456)--(4.83685,-0.588579)--(4.83649,-0.588701)--(4.83612,-0.588824)--(4.83576,-0.588946)--(4.83539,-0.589069)--(4.83503,-0.589192)--(4.83466,-0.589316)--(4.8343,-0.589439)--(4.83393,-0.589562)--(4.83357,-0.589686)--(4.8332,-0.58981)--(4.83283,-0.589934)--(4.83247,-0.590058)--
> (4.8321,-0.590182)--(4.83173,-0.590306)--(4.83137,-0.590431)--(4.831,-0.590556)--(4.83063,-0.59068)--(4.83026,-0.590805)--(4.8299,-0.59093)--(4.82953,-0.591056)--(4.82916,-0.591181)--(4.82879,-0.591307)--(4.82843,-0.591432)--(4.82806,-0.591558)--(4.82769,-0.591684)--(4.82732,-0.59181)--(4.82695,-0.591937)--(4.82658,-0.592063)--(4.82621,-0.59219)--(4.82584,-0.592316)--(4.82548,-0.592443)--(4.82511,-0.59257)--(4.82474,-0.592698)--(4.82437,-0.592825)--(4.824,-0.592952)--(4.82363,-0.59308)--
> (4.82326,-0.593208)--(4.82289,-0.593336)--(4.82251,-0.593464)--(4.82214,-0.593592)--(4.82177,-0.593721)--(4.8214,-0.593849)--(4.82103,-0.593978)--(4.82066,-0.594107)--(4.82029,-0.594236)--(4.81992,-0.594365)--(4.81955,-0.594494)--(4.81917,-0.594624)--(4.8188,-0.594753)--(4.81843,-0.594883)--(4.81806,-0.595013)--(4.81768,-0.595143)--(4.81731,-0.595273)--(4.81694,-0.595404)--(4.81657,-0.595534)--(4.81619,-0.595665)--(4.81582,-0.595796)--(4.81545,-0.595927)--(4.81507,-0.596058)--(4.8147,-0.596189)--
> (4.81432,-0.596321)--(4.81395,-0.596452)--(4.81358,-0.596584)--(4.8132,-0.596716)--(4.81283,-0.596848)--(4.81245,-0.59698)--(4.81208,-0.597113)--(4.8117,-0.597245)--(4.81133,-0.597378)--(4.81095,-0.597511)--(4.81058,-0.597644)--(4.8102,-0.597777)--(4.80982,-0.59791)--(4.80945,-0.598044)--(4.80907,-0.598177)--(4.8087,-0.598311)--(4.80832,-0.598445)--(4.80794,-0.598579)--(4.80757,-0.598713)--(4.80719,-0.598848)--(4.80681,-0.598982)--(4.80643,-0.599117)--(4.80606,-0.599252)--(4.80568,-0.599387)--
> (4.8053,-0.599522)--(4.80492,-0.599658)--(4.80455,-0.599793)--(4.80417,-0.599929)--(4.80379,-0.600065)--(4.80341,-0.600201)--(4.80303,-0.600337)--(4.80265,-0.600473)--(4.80227,-0.60061)--(4.80189,-0.600746)--(4.80152,-0.600883)--(4.80114,-0.60102)--(4.80076,-0.601157)--(4.80038,-0.601294)--(4.8,-0.601432)--(4.79962,-0.601569)--(4.79924,-0.601707)--(4.79886,-0.601845)--(4.79848,-0.601983)--(4.79809,-0.602121)--(4.79771,-0.602259)--(4.79733,-0.602398)--(4.79695,-0.602537)--(4.79657,-0.602676)--
> (4.79619,-0.602815)--(4.79581,-0.602954)--(4.79542,-0.603093)--(4.79504,-0.603233)--(4.79466,-0.603372)--(4.79428,-0.603512)--(4.7939,-0.603652)--(4.79351,-0.603792)--(4.79313,-0.603933)--(4.79275,-0.604073)--(4.79236,-0.604214)--(4.79198,-0.604354)--(4.7916,-0.604495)--(4.79121,-0.604637)--(4.79083,-0.604778)--(4.79045,-0.604919)--(4.79006,-0.605061)--(4.78968,-0.605203)--(4.78929,-0.605345)--(4.78891,-0.605487)--(4.78852,-0.605629)--(4.78814,-0.605771)--(4.78775,-0.605914)--(4.78737,-0.606057)--
> (4.78698,-0.6062)--(4.7866,-0.606343)--(4.78621,-0.606486)--(4.78582,-0.606629)--(4.78544,-0.606773)--(4.78505,-0.606917)--(4.78467,-0.607061)--(4.78428,-0.607205)--(4.78389,-0.607349)--(4.78351,-0.607493)--(4.78312,-0.607638)--(4.78273,-0.607783)--(4.78234,-0.607928)--(4.78196,-0.608073)--(4.78157,-0.608218)--(4.78118,-0.608363)--(4.78079,-0.608509)--(4.7804,-0.608655)--(4.78001,-0.608801)--(4.77963,-0.608947)--(4.77924,-0.609093)--(4.77885,-0.609239)--(4.77846,-0.609386)--(4.77807,-0.609533)--
> (4.77768,-0.60968)--(4.77729,-0.609827)--(4.7769,-0.609974)--(4.77651,-0.610121)--(4.77612,-0.610269)--(4.77573,-0.610417)--(4.77534,-0.610565)--(4.77495,-0.610713)--(4.77456,-0.610861)--(4.77417,-0.611009)--(4.77378,-0.611158)--(4.77339,-0.611307)--(4.77299,-0.611456)--(4.7726,-0.611605)--(4.77221,-0.611754)--(4.77182,-0.611904)--(4.77143,-0.612053)--(4.77103,-0.612203)--(4.77064,-0.612353)--(4.77025,-0.612503)--(4.76986,-0.612654)--(4.76946,-0.612804)--(4.76907,-0.612955)--(4.76868,-0.613106)--
> (4.76828,-0.613257)--(4.76789,-0.613408)--(4.7675,-0.613559)--(4.7671,-0.613711)--(4.76671,-0.613862)--(4.76631,-0.614014)--(4.76592,-0.614166)--(4.76552,-0.614318)--(4.76513,-0.614471)--(4.76473,-0.614623)--(4.76434,-0.614776)--(4.76394,-0.614929)--(4.76355,-0.615082)--(4.76315,-0.615235)--(4.76276,-0.615389)--(4.76236,-0.615542)--(4.76196,-0.615696)--(4.76157,-0.61585)--(4.76117,-0.616004)--(4.76078,-0.616159)--(4.76038,-0.616313)--(4.75998,-0.616468)--(4.75958,-0.616623)--(4.75919,-0.616778)--
> (4.75879,-0.616933)--(4.75839,-0.617088)--(4.75799,-0.617244)--(4.7576,-0.617399)--(4.7572,-0.617555)--(4.7568,-0.617711)--(4.7564,-0.617868)--(4.756,-0.618024)--(4.7556,-0.618181)--(4.7552,-0.618337)--(4.7548,-0.618494)--(4.7544,-0.618652)--(4.754,-0.618809)--(4.7536,-0.618966)--(4.7532,-0.619124)--(4.7528,-0.619282)--(4.7524,-0.61944)--(4.752,-0.619598)--(4.7516,-0.619756)--(4.7512,-0.619915)--(4.7508,-0.620074)--(4.7504,-0.620233)--(4.75,-0.620392)--(4.7496,-0.620551)--(4.74919,-0.620711)--
> (4.74879,-0.62087)--(4.74839,-0.62103)--(4.74799,-0.62119)--(4.74759,-0.62135)--(4.74718,-0.621511)--(4.74678,-0.621671)--(4.74638,-0.621832)--(4.74597,-0.621993)--(4.74557,-0.622154)--(4.74517,-0.622315)--(4.74476,-0.622477)--(4.74436,-0.622638)--(4.74396,-0.6228)--(4.74355,-0.622962)--(4.74315,-0.623124)--(4.74274,-0.623287)--(4.74234,-0.623449)--(4.74193,-0.623612)--(4.74153,-0.623775)--(4.74112,-0.623938)--(4.74072,-0.624101)--(4.74031,-0.624265)--(4.73991,-0.624428)--(4.7395,-0.624592)--
> (4.73909,-0.624756)--(4.73869,-0.62492)--(4.73828,-0.625085)--(4.73787,-0.625249)--(4.73747,-0.625414)--(4.73706,-0.625579)--(4.73665,-0.625744)--(4.73625,-0.625909)--(4.73584,-0.626075)--(4.73543,-0.626241)--(4.73502,-0.626406)--(4.73461,-0.626573)--(4.73421,-0.626739)--(4.7338,-0.626905)--(4.73339,-0.627072)--(4.73298,-0.627239)--(4.73257,-0.627406)--(4.73216,-0.627573)--(4.73175,-0.62774)--(4.73134,-0.627908)--(4.73093,-0.628075)--(4.73052,-0.628243)--(4.73011,-0.628412)--(4.7297,-0.62858)--
> (4.72929,-0.628748)--(4.72888,-0.628917)--(4.72847,-0.629086)--(4.72806,-0.629255)--(4.72765,-0.629424)--(4.72724,-0.629594)--(4.72682,-0.629763)--(4.72641,-0.629933)--(4.726,-0.630103)--(4.72559,-0.630273)--(4.72518,-0.630444)--(4.72476,-0.630614)--(4.72435,-0.630785)--(4.72394,-0.630956)--(4.72353,-0.631127)--(4.72311,-0.631299)--(4.7227,-0.63147)--(4.72229,-0.631642)--(4.72187,-0.631814)--(4.72146,-0.631986)--(4.72104,-0.632158)--(4.72063,-0.632331)--(4.72021,-0.632503)--(4.7198,-0.632676)--
> (4.71938,-0.632849)--(4.71897,-0.633023)--(4.71855,-0.633196)--(4.71814,-0.63337)--(4.71772,-0.633544)--(4.71731,-0.633718)--(4.71689,-0.633892)--(4.71648,-0.634066)--(4.71606,-0.634241)--(4.71564,-0.634416)--(4.71523,-0.634591)--(4.71481,-0.634766)--(4.71439,-0.634942)--(4.71397,-0.635117)--(4.71356,-0.635293)--(4.71314,-0.635469)--(4.71272,-0.635645)--(4.7123,-0.635822)--(4.71189,-0.635998)--(4.71147,-0.636175)--(4.71105,-0.636352)--(4.71063,-0.636529)--(4.71021,-0.636707)--(4.70979,-0.636884)--
> (4.70937,-0.637062)--(4.70895,-0.63724)--(4.70853,-0.637418)--(4.70811,-0.637596)--(4.70769,-0.637775)--(4.70727,-0.637954)--(4.70685,-0.638133)--(4.70643,-0.638312)--(4.70601,-0.638491)--(4.70559,-0.638671)--(4.70517,-0.638851)--(4.70475,-0.639031)--(4.70432,-0.639211)--(4.7039,-0.639391)--(4.70348,-0.639572)--(4.70306,-0.639752)--(4.70264,-0.639933)--(4.70221,-0.640115)--(4.70179,-0.640296)--(4.70137,-0.640478)--(4.70095,-0.640659)--(4.70052,-0.640841)--(4.7001,-0.641023)--(4.69967,-0.641206)--
> (4.69925,-0.641388)--(4.69883,-0.641571)--(4.6984,-0.641754)--(4.69798,-0.641937)--(4.69755,-0.642121)--(4.69713,-0.642304)--(4.6967,-0.642488)--(4.69628,-0.642672)--(4.69585,-0.642856)--(4.69543,-0.643041)--(4.695,-0.643225)--(4.69458,-0.64341)--(4.69415,-0.643595)--(4.69372,-0.64378)--(4.6933,-0.643966)--(4.69287,-0.644152)--(4.69244,-0.644337)--(4.69202,-0.644523)--(4.69159,-0.64471)--(4.69116,-0.644896)--(4.69073,-0.645083)--(4.6903,-0.64527)--(4.68988,-0.645457)--(4.68945,-0.645644)--
> (4.68902,-0.645832)--(4.68859,-0.646019)--(4.68816,-0.646207)--(4.68773,-0.646395)--(4.6873,-0.646584)--(4.68687,-0.646772)--(4.68644,-0.646961)--(4.68601,-0.64715)--(4.68558,-0.647339)--(4.68515,-0.647528)--(4.68472,-0.647718)--(4.68429,-0.647908)--(4.68386,-0.648098)--(4.68343,-0.648288)--(4.683,-0.648478)--(4.68257,-0.648669)--(4.68214,-0.64886)--(4.68171,-0.649051)--(4.68127,-0.649242)--(4.68084,-0.649434)--(4.68041,-0.649625)--(4.67998,-0.649817)--(4.67954,-0.650009)--(4.67911,-0.650202)--
> (4.67868,-0.650394)--(4.67824,-0.650587)--(4.67781,-0.65078)--(4.67738,-0.650973)--(4.67694,-0.651166)--(4.67651,-0.65136)--(4.67607,-0.651554)--(4.67564,-0.651748)--(4.6752,-0.651942)--(4.67477,-0.652136)--(4.67433,-0.652331)--(4.6739,-0.652526)--(4.67346,-0.652721)--(4.67303,-0.652916)--(4.67259,-0.653112)--(4.67216,-0.653308)--(4.67172,-0.653504)--(4.67128,-0.6537)--(4.67085,-0.653896)--(4.67041,-0.654093)--(4.66997,-0.65429)--(4.66953,-0.654487)--(4.6691,-0.654684)--(4.66866,-0.654881)--
> (4.66822,-0.655079)--(4.66778,-0.655277)--(4.66734,-0.655475)--(4.66691,-0.655673)--(4.66647,-0.655872)--(4.66603,-0.656071)--(4.66559,-0.65627)--(4.66515,-0.656469)--(4.66471,-0.656668)--(4.66427,-0.656868)--(4.66383,-0.657068)--(4.66339,-0.657268)--(4.66295,-0.657468)--(4.66251,-0.657669)--(4.66207,-0.657869)--(4.66163,-0.65807)--(4.66119,-0.658272)--(4.66074,-0.658473)--(4.6603,-0.658675)--(4.65986,-0.658877)--(4.65942,-0.659079)--(4.65898,-0.659281)--(4.65853,-0.659483)--(4.65809,-0.659686)--
> (4.65765,-0.659889)--(4.65721,-0.660092)--(4.65676,-0.660296)--(4.65632,-0.660499)--(4.65588,-0.660703)--(4.65543,-0.660907)--(4.65499,-0.661112)--(4.65454,-0.661316)--(4.6541,-0.661521)--(4.65365,-0.661726)--(4.65321,-0.661931)--(4.65276,-0.662136)--(4.65232,-0.662342)--(4.65187,-0.662548)--(4.65143,-0.662754)--(4.65098,-0.66296)--(4.65054,-0.663167)--(4.65009,-0.663374)--(4.64964,-0.663581)--(4.6492,-0.663788)--(4.64875,-0.663995)--(4.6483,-0.664203)--(4.64785,-0.664411)--(4.64741,-0.664619)--
> (4.64696,-0.664827)--(4.64651,-0.665036)--(4.64606,-0.665245)--(4.64561,-0.665454)--(4.64517,-0.665663)--(4.64472,-0.665873)--(4.64427,-0.666082)--(4.64382,-0.666292)--(4.64337,-0.666503)--(4.64292,-0.666713)--(4.64247,-0.666924)--(4.64202,-0.667135)--(4.64157,-0.667346)--(4.64112,-0.667557)--(4.64067,-0.667769)--(4.64022,-0.66798)--(4.63977,-0.668192)--(4.63932,-0.668405)--(4.63886,-0.668617)--(4.63841,-0.66883)--(4.63796,-0.669043)--(4.63751,-0.669256)--(4.63706,-0.66947)--(4.6366,-0.669683)--
> (4.63615,-0.669897)--(4.6357,-0.670111)--(4.63524,-0.670326)--(4.63479,-0.67054)--(4.63434,-0.670755)--(4.63388,-0.67097)--(4.63343,-0.671185)--(4.63297,-0.671401)--(4.63252,-0.671617)--(4.63207,-0.671833)--(4.63161,-0.672049)--(4.63116,-0.672266)--(4.6307,-0.672482)--(4.63024,-0.672699)--(4.62979,-0.672916)--(4.62933,-0.673134)--(4.62888,-0.673352)--(4.62842,-0.673569)--(4.62796,-0.673788)--(4.62751,-0.674006)--(4.62705,-0.674225)--(4.62659,-0.674443)--(4.62613,-0.674662)--(4.62568,-0.674882)--
> (4.62522,-0.675101)--(4.62476,-0.675321)--(4.6243,-0.675541)--(4.62384,-0.675762)--(4.62339,-0.675982)--(4.62293,-0.676203)--(4.62247,-0.676424)--(4.62201,-0.676645)--(4.62155,-0.676867)--(4.62109,-0.677088)--(4.62063,-0.67731)--(4.62017,-0.677533)--(4.61971,-0.677755)--(4.61925,-0.677978)--(4.61879,-0.678201)--(4.61832,-0.678424)--(4.61786,-0.678647)--(4.6174,-0.678871)--(4.61694,-0.679095)--(4.61648,-0.679319)--(4.61602,-0.679543)--(4.61555,-0.679768)--(4.61509,-0.679993)--(4.61463,-0.680218)--
> (4.61416,-0.680443)--(4.6137,-0.680669)--(4.61324,-0.680895)--(4.61277,-0.681121)--(4.61231,-0.681347)--(4.61185,-0.681574)--(4.61138,-0.681801)--(4.61092,-0.682028)--(4.61045,-0.682255)--(4.60999,-0.682483)--(4.60952,-0.682711)--(4.60906,-0.682939)--(4.60859,-0.683167)--(4.60812,-0.683396)--(4.60766,-0.683625)--(4.60719,-0.683854)--(4.60673,-0.684083)--(4.60626,-0.684313)--(4.60579,-0.684543)--(4.60532,-0.684773)--(4.60486,-0.685003)--(4.60439,-0.685234)--(4.60392,-0.685464)--
> (4.60345,-0.685695)--(4.60298,-0.685927)--(4.60252,-0.686158)--(4.60205,-0.68639)--(4.60158,-0.686622)--(4.60111,-0.686855)--(4.60064,-0.687087)--(4.60017,-0.68732)--(4.5997,-0.687553)--(4.59923,-0.687787)--(4.59876,-0.68802)--(4.59829,-0.688254)--(4.59782,-0.688488)--(4.59735,-0.688722)--(4.59687,-0.688957)--(4.5964,-0.689192)--(4.59593,-0.689427)--(4.59546,-0.689662)--(4.59499,-0.689898)--(4.59451,-0.690134)--(4.59404,-0.69037)--(4.59357,-0.690607)--(4.5931,-0.690843)--(4.59262,-0.69108)--
> (4.59215,-0.691317)--(4.59168,-0.691555)--(4.5912,-0.691792)--(4.59073,-0.69203)--(4.59025,-0.692269)--(4.58978,-0.692507)--(4.5893,-0.692746)--(4.58883,-0.692985)--(4.58835,-0.693224)--(4.58788,-0.693464)--(4.5874,-0.693703)--(4.58693,-0.693943)--(4.58645,-0.694184)--(4.58597,-0.694424)--(4.5855,-0.694665)--(4.58502,-0.694906)--(4.58454,-0.695147)--(4.58406,-0.695389)--(4.58359,-0.695631)--(4.58311,-0.695873)--(4.58263,-0.696115)--(4.58215,-0.696358)--(4.58167,-0.696601)--(4.58119,-0.696844)--
> (4.58072,-0.697087)--(4.58024,-0.697331)--(4.57976,-0.697575)--(4.57928,-0.697819)--(4.5788,-0.698064)--(4.57832,-0.698308)--(4.57784,-0.698553)--(4.57736,-0.698799)--(4.57688,-0.699044)--(4.57639,-0.69929)--(4.57591,-0.699536)--(4.57543,-0.699782)--(4.57495,-0.700029)--(4.57447,-0.700276)--(4.57399,-0.700523)--(4.5735,-0.70077)--(4.57302,-0.701018)--(4.57254,-0.701266)--(4.57205,-0.701514)--(4.57157,-0.701763)--(4.57109,-0.702011)--(4.5706,-0.70226)--(4.57012,-0.70251)--(4.56963,-0.702759)--
> (4.56915,-0.703009)--(4.56867,-0.703259)--(4.56818,-0.70351)--(4.56769,-0.70376)--(4.56721,-0.704011)--(4.56672,-0.704262)--(4.56624,-0.704514)--(4.56575,-0.704765)--(4.56527,-0.705017)--(4.56478,-0.70527)--(4.56429,-0.705522)--(4.5638,-0.705775)--(4.56332,-0.706028)--(4.56283,-0.706282)--(4.56234,-0.706535)--(4.56185,-0.706789)--(4.56136,-0.707043)--(4.56088,-0.707298)--(4.56039,-0.707552)--(4.5599,-0.707807)--(4.55941,-0.708063)--(4.55892,-0.708318)--(4.55843,-0.708574)--(4.55794,-0.70883)--
> (4.55745,-0.709087)--(4.55696,-0.709343)--(4.55647,-0.7096)--(4.55598,-0.709857)--(4.55549,-0.710115)--(4.55499,-0.710373)--(4.5545,-0.710631)--(4.55401,-0.710889)--(4.55352,-0.711148)--(4.55303,-0.711407)--(4.55253,-0.711666)--(4.55204,-0.711925)--(4.55155,-0.712185)--(4.55105,-0.712445)--(4.55056,-0.712705)--(4.55007,-0.712966)--(4.54957,-0.713227)--(4.54908,-0.713488)--(4.54858,-0.713749)--(4.54809,-0.714011)--(4.54759,-0.714273)--(4.5471,-0.714535)--(4.5466,-0.714798)--(4.54611,-0.71506)--
> (4.54561,-0.715324)--(4.54512,-0.715587)--(4.54462,-0.715851)--(4.54412,-0.716115)--(4.54363,-0.716379)--(4.54313,-0.716643)--(4.54263,-0.716908)--(4.54213,-0.717173)--(4.54164,-0.717439)--(4.54114,-0.717704)--(4.54064,-0.71797)--(4.54014,-0.718237)--(4.53964,-0.718503)--(4.53914,-0.71877)--(4.53864,-0.719037)--(4.53814,-0.719304)--(4.53764,-0.719572)--(4.53714,-0.71984)--(4.53664,-0.720108)--(4.53614,-0.720377)--(4.53564,-0.720646)--(4.53514,-0.720915)--(4.53464,-0.721184)--(4.53414,-0.721454)--
> (4.53364,-0.721724)--(4.53313,-0.721994)--(4.53263,-0.722265)--(4.53213,-0.722536)--(4.53163,-0.722807)--(4.53112,-0.723078)--(4.53062,-0.72335)--(4.53012,-0.723622)--(4.52961,-0.723895)--(4.52911,-0.724167)--(4.5286,-0.72444)--(4.5281,-0.724713)--(4.52759,-0.724987)--(4.52709,-0.725261)--(4.52658,-0.725535)--(4.52608,-0.725809)--(4.52557,-0.726084)--(4.52507,-0.726359)--(4.52456,-0.726634)--(4.52405,-0.72691)--(4.52355,-0.727186)--(4.52304,-0.727462)--(4.52253,-0.727738)--(4.52202,-0.728015)--
> (4.52152,-0.728292)--(4.52101,-0.72857)--(4.5205,-0.728847)--(4.51999,-0.729125)--(4.51948,-0.729403)--(4.51897,-0.729682)--(4.51846,-0.729961)--(4.51795,-0.73024)--(4.51744,-0.73052)--(4.51693,-0.730799)--(4.51642,-0.731079)--(4.51591,-0.73136)--(4.5154,-0.73164)--(4.51489,-0.731921)--(4.51438,-0.732203)--(4.51387,-0.732484)--(4.51336,-0.732766)--(4.51285,-0.733048)--(4.51233,-0.733331)--(4.51182,-0.733614)--(4.51131,-0.733897)--(4.51079,-0.73418)--(4.51028,-0.734464)--(4.50977,-0.734748)--
> (4.50925,-0.735032)--(4.50874,-0.735317)--(4.50822,-0.735602)--(4.50771,-0.735887)--(4.5072,-0.736173)--(4.50668,-0.736458)--(4.50616,-0.736745)--(4.50565,-0.737031)--(4.50513,-0.737318)--(4.50462,-0.737605)--(4.5041,-0.737892)--(4.50358,-0.73818)--(4.50307,-0.738468)--(4.50255,-0.738756)--(4.50203,-0.739045)--(4.50151,-0.739334)--(4.501,-0.739623)--(4.50048,-0.739913)--(4.49996,-0.740203)--(4.49944,-0.740493)--(4.49892,-0.740784)--(4.4984,-0.741074)--(4.49788,-0.741365)--(4.49736,-0.741657)--
> (4.49684,-0.741949)--(4.49632,-0.742241)--(4.4958,-0.742533)--(4.49528,-0.742826)--(4.49476,-0.743119)--(4.49424,-0.743412)--(4.49372,-0.743706)--(4.4932,-0.744)--(4.49267,-0.744294)--(4.49215,-0.744589)--(4.49163,-0.744884)--(4.49111,-0.745179)--(4.49058,-0.745474)--(4.49006,-0.74577)--(4.48954,-0.746067)--(4.48901,-0.746363)--(4.48849,-0.74666)--(4.48796,-0.746957)--(4.48744,-0.747254)--(4.48691,-0.747552)--(4.48639,-0.74785)--(4.48586,-0.748149)--(4.48534,-0.748448)--(4.48481,-0.748747)--
> (4.48428,-0.749046)--(4.48376,-0.749346)--(4.48323,-0.749646)--(4.4827,-0.749946)--(4.48218,-0.750247)--(4.48165,-0.750548)--(4.48112,-0.750849)--(4.48059,-0.751151)--(4.48006,-0.751453)--(4.47954,-0.751755)--(4.47901,-0.752058)--(4.47848,-0.752361)--(4.47795,-0.752664)--(4.47742,-0.752968)--(4.47689,-0.753271)--(4.47636,-0.753576)--(4.47583,-0.75388)--(4.4753,-0.754185)--(4.47477,-0.75449)--(4.47423,-0.754796)--(4.4737,-0.755102)--(4.47317,-0.755408)--(4.47264,-0.755715)--(4.47211,-0.756022)--
> (4.47157,-0.756329)--(4.47104,-0.756636)--(4.47051,-0.756944)--(4.46997,-0.757252)--(4.46944,-0.757561)--(4.46891,-0.75787)--(4.46837,-0.758179)--(4.46784,-0.758489)--(4.4673,-0.758799)--(4.46677,-0.759109)--(4.46623,-0.759419)--(4.4657,-0.75973)--(4.46516,-0.760041)--(4.46462,-0.760353)--(4.46409,-0.760665)--(4.46355,-0.760977)--(4.46301,-0.76129)--(4.46248,-0.761602)--(4.46194,-0.761916)--(4.4614,-0.762229)--(4.46086,-0.762543)--(4.46032,-0.762857)--(4.45979,-0.763172)--(4.45925,-0.763487)--
> (4.45871,-0.763802)--(4.45817,-0.764118)--(4.45763,-0.764434)--(4.45709,-0.76475)--(4.45655,-0.765066)--(4.45601,-0.765383)--(4.45547,-0.765701)--(4.45493,-0.766018)--(4.45438,-0.766336)--(4.45384,-0.766655)--(4.4533,-0.766973)--(4.45276,-0.767292)--(4.45222,-0.767611)--(4.45167,-0.767931)--(4.45113,-0.768251)--(4.45059,-0.768572)--(4.45004,-0.768892)--(4.4495,-0.769213)--(4.44896,-0.769535)--(4.44841,-0.769856)--(4.44787,-0.770179)--(4.44732,-0.770501)--(4.44678,-0.770824)--(4.44623,-0.771147)--
> (4.44568,-0.77147)--(4.44514,-0.771794)--(4.44459,-0.772118)--(4.44405,-0.772443)--(4.4435,-0.772768)--(4.44295,-0.773093)--(4.4424,-0.773419)--(4.44186,-0.773745)--(4.44131,-0.774071)--(4.44076,-0.774397)--(4.44021,-0.774724)--(4.43966,-0.775052)--(4.43911,-0.775379)--(4.43856,-0.775707)--(4.43801,-0.776036)--(4.43746,-0.776365)--(4.43691,-0.776694)--(4.43636,-0.777023)--(4.43581,-0.777353)--(4.43526,-0.777683)--(4.43471,-0.778014)--(4.43416,-0.778344)--(4.43361,-0.778676)--(4.43305,-0.779007)--
> (4.4325,-0.779339)--(4.43195,-0.779671)--(4.4314,-0.780004)--(4.43084,-0.780337)--(4.43029,-0.780671)--(4.42974,-0.781004)--(4.42918,-0.781338)--(4.42863,-0.781673)--(4.42807,-0.782008)--(4.42752,-0.782343)--(4.42696,-0.782678)--(4.42641,-0.783014)--(4.42585,-0.78335)--(4.42529,-0.783687)--(4.42474,-0.784024)--(4.42418,-0.784361)--(4.42362,-0.784699)--(4.42307,-0.785037)--(4.42251,-0.785375)--(4.42195,-0.785714)--(4.42139,-0.786053)--(4.42083,-0.786393)--(4.42028,-0.786733)--(4.41972,-0.787073)--
> (4.41916,-0.787414)--(4.4186,-0.787755)--(4.41804,-0.788096)--(4.41748,-0.788438)--(4.41692,-0.78878)--(4.41636,-0.789122)--(4.41579,-0.789465)--(4.41523,-0.789808)--(4.41467,-0.790152)--(4.41411,-0.790496)--(4.41355,-0.79084)--(4.41298,-0.791185)--(4.41242,-0.79153)--(4.41186,-0.791875)--(4.4113,-0.792221)--(4.41073,-0.792567)--(4.41017,-0.792913)--(4.4096,-0.79326)--(4.40904,-0.793608)--(4.40847,-0.793955)--(4.40791,-0.794303)--(4.40734,-0.794652)--(4.40678,-0.795)--(4.40621,-0.795349)--
> (4.40565,-0.795699)--(4.40508,-0.796049)--(4.40451,-0.796399)--(4.40395,-0.79675)--(4.40338,-0.797101)--(4.40281,-0.797452)--(4.40224,-0.797804)--(4.40167,-0.798156)--(4.4011,-0.798509)--(4.40054,-0.798862)--(4.39997,-0.799215)--(4.3994,-0.799569)--(4.39883,-0.799923)--(4.39826,-0.800277)--(4.39769,-0.800632)--(4.39712,-0.800987)--(4.39654,-0.801343)--(4.39597,-0.801699)--(4.3954,-0.802055)--(4.39483,-0.802412)--(4.39426,-0.802769)--(4.39369,-0.803126)--(4.39311,-0.803484)--(4.39254,-0.803842)--
> (4.39197,-0.804201)--(4.39139,-0.80456)--(4.39082,-0.804919)--(4.39024,-0.805279)--(4.38967,-0.805639)--(4.38909,-0.806)--(4.38852,-0.806361)--(4.38794,-0.806722)--(4.38737,-0.807084)--(4.38679,-0.807446)--(4.38622,-0.807809)--(4.38564,-0.808172)--(4.38506,-0.808535)--(4.38449,-0.808899)--(4.38391,-0.809263)--(4.38333,-0.809627)--(4.38275,-0.809992)--(4.38217,-0.810357)--(4.38159,-0.810723)--(4.38102,-0.811089)--(4.38044,-0.811456)--(4.37986,-0.811822)--(4.37928,-0.81219)--(4.3787,-0.812557)--
> (4.37812,-0.812925)--(4.37753,-0.813294)--(4.37695,-0.813663)--(4.37637,-0.814032)--(4.37579,-0.814401)--(4.37521,-0.814771)--(4.37463,-0.815142)--(4.37404,-0.815513)--(4.37346,-0.815884)--(4.37288,-0.816255)--(4.37229,-0.816627)--(4.37171,-0.817)--(4.37112,-0.817373)--(4.37054,-0.817746)--(4.36996,-0.818119)--(4.36937,-0.818493)--(4.36879,-0.818868)--(4.3682,-0.819243)--(4.36761,-0.819618)--(4.36703,-0.819994)--(4.36644,-0.82037)--(4.36585,-0.820746)--(4.36527,-0.821123)--(4.36468,-0.8215)--
> (4.36409,-0.821878)--(4.3635,-0.822256)--(4.36291,-0.822634)--(4.36233,-0.823013)--(4.36174,-0.823393)--(4.36115,-0.823772)--(4.36056,-0.824152)--(4.35997,-0.824533)--(4.35938,-0.824914)--(4.35879,-0.825295)--(4.35819,-0.825677)--(4.3576,-0.826059)--(4.35701,-0.826442)--(4.35642,-0.826825)--(4.35583,-0.827208)--(4.35524,-0.827592)--(4.35464,-0.827976)--(4.35405,-0.828361)--(4.35346,-0.828746)--(4.35286,-0.829131)--(4.35227,-0.829517)--(4.35167,-0.829903)--(4.35108,-0.83029)--(4.35048,-0.830677)--
> (4.34989,-0.831065)--(4.34929,-0.831453)--(4.3487,-0.831841)--(4.3481,-0.83223)--(4.3475,-0.832619)--(4.34691,-0.833009)--(4.34631,-0.833399)--(4.34571,-0.833789)--(4.34511,-0.83418)--(4.34452,-0.834571)--(4.34392,-0.834963)--(4.34332,-0.835355)--(4.34272,-0.835748)--(4.34212,-0.836141)--(4.34152,-0.836534)--(4.34092,-0.836928)--(4.34032,-0.837323)--(4.33972,-0.837717)--(4.33912,-0.838112)--(4.33852,-0.838508)--(4.33792,-0.838904)--(4.33731,-0.8393)--(4.33671,-0.839697)--(4.33611,-0.840094)--
> (4.33551,-0.840492)--(4.3349,-0.84089)--(4.3343,-0.841289)--(4.3337,-0.841688)--(4.33309,-0.842087)--(4.33249,-0.842487)--(4.33188,-0.842887)--(4.33128,-0.843288)--(4.33067,-0.843689)--(4.33007,-0.844091)--(4.32946,-0.844493)--(4.32885,-0.844895)--(4.32825,-0.845298)--(4.32764,-0.845701)--(4.32703,-0.846105)--(4.32642,-0.846509)--(4.32582,-0.846914)--(4.32521,-0.847319)--(4.3246,-0.847725)--(4.32399,-0.848131)--(4.32338,-0.848537)--(4.32277,-0.848944)--(4.32216,-0.849351)--(4.32155,-0.849759)--
> (4.32094,-0.850167)--(4.32033,-0.850575)--(4.31972,-0.850984)--(4.31911,-0.851394)--(4.31849,-0.851804)--(4.31788,-0.852214)--(4.31727,-0.852625)--(4.31666,-0.853036)--(4.31604,-0.853448)--(4.31543,-0.85386)--(4.31482,-0.854272)--(4.3142,-0.854685)--(4.31359,-0.855099)--(4.31297,-0.855513)--(4.31236,-0.855927)--(4.31174,-0.856342)--(4.31113,-0.856757)--(4.31051,-0.857173)--(4.30989,-0.857589)--(4.30928,-0.858005)--(4.30866,-0.858422)--(4.30804,-0.85884)--(4.30742,-0.859258)--(4.30681,-0.859676)--
> (4.30619,-0.860095)--(4.30557,-0.860514)--(4.30495,-0.860934)--(4.30433,-0.861354)--(4.30371,-0.861775)--(4.30309,-0.862196)--(4.30247,-0.862618)--(4.30185,-0.86304)--(4.30123,-0.863462)--(4.30061,-0.863885)--(4.29998,-0.864308)--(4.29936,-0.864732)--(4.29874,-0.865156)--(4.29812,-0.865581)--(4.29749,-0.866006)--(4.29687,-0.866432)--(4.29625,-0.866858)--(4.29562,-0.867285)--(4.295,-0.867712)--(4.29437,-0.868139)--(4.29375,-0.868567)--(4.29312,-0.868996)--(4.2925,-0.869425)--(4.29187,-0.869854)--
> (4.29125,-0.870284)--(4.29062,-0.870714)--(4.28999,-0.871145)--(4.28936,-0.871576)--(4.28874,-0.872008)--(4.28811,-0.87244)--(4.28748,-0.872873)--(4.28685,-0.873306)--(4.28622,-0.873739)--(4.28559,-0.874173)--(4.28496,-0.874608)--(4.28433,-0.875043)--(4.2837,-0.875478)--(4.28307,-0.875914)--(4.28244,-0.876351)--(4.28181,-0.876788)--(4.28118,-0.877225)--(4.28054,-0.877663)--(4.27991,-0.878101)--(4.27928,-0.87854)--(4.27865,-0.878979)--(4.27801,-0.879419)--(4.27738,-0.879859)--(4.27674,-0.880299)--
> (4.27611,-0.880741)--(4.27548,-0.881182)--(4.27484,-0.881624)--(4.2742,-0.882067)--(4.27357,-0.88251)--(4.27293,-0.882953)--(4.2723,-0.883397)--(4.27166,-0.883842)--(4.27102,-0.884287)--(4.27038,-0.884732)--(4.26975,-0.885178)--(4.26911,-0.885625)--(4.26847,-0.886072)--(4.26783,-0.886519)--(4.26719,-0.886967)--(4.26655,-0.887415)--(4.26591,-0.887864)--(4.26527,-0.888313)--(4.26463,-0.888763)--(4.26399,-0.889213)--(4.26335,-0.889664)--(4.26271,-0.890115)--(4.26206,-0.890567)--(4.26142,-0.891019)--
> (4.26078,-0.891472)--(4.26014,-0.891925)--(4.25949,-0.892379)--(4.25885,-0.892833)--(4.2582,-0.893288)--(4.25756,-0.893743)--(4.25692,-0.894199)--(4.25627,-0.894655)--(4.25562,-0.895112)--(4.25498,-0.895569)--(4.25433,-0.896027)--(4.25369,-0.896485)--(4.25304,-0.896943)--(4.25239,-0.897403)--(4.25174,-0.897862)--(4.2511,-0.898322)--(4.25045,-0.898783)--(4.2498,-0.899244)--(4.24915,-0.899706)--(4.2485,-0.900168)--(4.24785,-0.900631)--(4.2472,-0.901094)--(4.24655,-0.901558)--(4.2459,-0.902022)--
> (4.24525,-0.902486)--(4.2446,-0.902952)--(4.24395,-0.903417)--(4.24329,-0.903883)--(4.24264,-0.90435)--(4.24199,-0.904817)--(4.24133,-0.905285)--(4.24068,-0.905753)--(4.24003,-0.906222)--(4.23937,-0.906691)--(4.23872,-0.907161)--(4.23806,-0.907631)--(4.23741,-0.908102)--(4.23675,-0.908573)--(4.2361,-0.909045)--(4.23544,-0.909517)--(4.23478,-0.90999)--(4.23412,-0.910463)--(4.23347,-0.910937)--(4.23281,-0.911411)--(4.23215,-0.911886)--(4.23149,-0.912362)--(4.23083,-0.912837)--(4.23017,-0.913314)--
> (4.22951,-0.913791)--(4.22885,-0.914268)--(4.22819,-0.914746)--(4.22753,-0.915225)--(4.22687,-0.915704)--(4.22621,-0.916183)--(4.22555,-0.916663)--(4.22489,-0.917144)--(4.22422,-0.917625)--(4.22356,-0.918106)--(4.2229,-0.918588)--(4.22224,-0.919071)--(4.22157,-0.919554)--(4.22091,-0.920038)--(4.22024,-0.920522)--(4.21958,-0.921007)--(4.21891,-0.921492)--(4.21825,-0.921978)--(4.21758,-0.922464)--(4.21691,-0.922951)--(4.21625,-0.923439)--(4.21558,-0.923926)--(4.21491,-0.924415)--
> (4.21424,-0.924904)--(4.21358,-0.925393)--(4.21291,-0.925883)--(4.21224,-0.926374)--(4.21157,-0.926865)--(4.2109,-0.927357)--(4.21023,-0.927849)--(4.20956,-0.928342)--(4.20889,-0.928835)--(4.20822,-0.929329)--(4.20754,-0.929823)--(4.20687,-0.930318)--(4.2062,-0.930813)--(4.20553,-0.931309)--(4.20485,-0.931806)--(4.20418,-0.932303)--(4.20351,-0.9328)--(4.20283,-0.933298)--(4.20216,-0.933797)--(4.20148,-0.934296)--(4.20081,-0.934796)--(4.20013,-0.935296)--(4.19946,-0.935797)--(4.19878,-0.936298)--
> (4.1981,-0.9368)--(4.19743,-0.937303)--(4.19675,-0.937806)--(4.19607,-0.938309)--(4.19539,-0.938813)--(4.19471,-0.939318)--(4.19403,-0.939823)--(4.19336,-0.940329)--(4.19268,-0.940835)--(4.192,-0.941342)--(4.19132,-0.941849)--(4.19063,-0.942357)--(4.18995,-0.942866)--(4.18927,-0.943375)--(4.18859,-0.943884)--(4.18791,-0.944395)--(4.18722,-0.944905)--(4.18654,-0.945416)--(4.18586,-0.945928)--(4.18517,-0.946441)--(4.18449,-0.946954)--(4.18381,-0.947467)--(4.18312,-0.947981)--(4.18244,-0.948496)--
> (4.18175,-0.949011)--(4.18106,-0.949527)--(4.18038,-0.950043)--(4.17969,-0.95056)--(4.179,-0.951077)--(4.17832,-0.951595)--(4.17763,-0.952114)--(4.17694,-0.952633)--(4.17625,-0.953153)--(4.17556,-0.953673)--(4.17487,-0.954194)--(4.17418,-0.954715)--(4.17349,-0.955237)--(4.1728,-0.95576)--(4.17211,-0.956283)--(4.17142,-0.956806)--(4.17073,-0.957331)--(4.17004,-0.957855)--(4.16934,-0.958381)--(4.16865,-0.958907)--(4.16796,-0.959433)--(4.16726,-0.95996)--(4.16657,-0.960488)--(4.16587,-0.961016)--
> (4.16518,-0.961545)--(4.16448,-0.962075)--(4.16379,-0.962605)--(4.16309,-0.963135)--(4.1624,-0.963666)--(4.1617,-0.964198)--(4.161,-0.96473)--(4.16031,-0.965263)--(4.15961,-0.965797)--(4.15891,-0.966331)--(4.15821,-0.966865)--(4.15751,-0.967401)--(4.15681,-0.967936)--(4.15611,-0.968473)--(4.15541,-0.96901)--(4.15471,-0.969547)--(4.15401,-0.970085)--(4.15331,-0.970624)--(4.15261,-0.971163)--(4.15191,-0.971703)--(4.1512,-0.972244)--(4.1505,-0.972785)--(4.1498,-0.973327)--(4.14909,-0.973869)--
> (4.14839,-0.974412)--(4.14769,-0.974955)--(4.14698,-0.975499)--(4.14628,-0.976044)--(4.14557,-0.976589)--(4.14486,-0.977135)--(4.14416,-0.977681)--(4.14345,-0.978228)--(4.14274,-0.978776)--(4.14204,-0.979324)--(4.14133,-0.979873)--(4.14062,-0.980423)--(4.13991,-0.980973)--(4.1392,-0.981523)--(4.13849,-0.982074)--(4.13778,-0.982626)--(4.13707,-0.983179)--(4.13636,-0.983732)--(4.13565,-0.984285)--(4.13494,-0.98484)--(4.13423,-0.985394)--(4.13352,-0.98595)--(4.1328,-0.986506)--(4.13209,-0.987063)--
> (4.13138,-0.98762)--(4.13066,-0.988178)--(4.12995,-0.988736)--(4.12923,-0.989295)--(4.12852,-0.989855)--(4.1278,-0.990416)--(4.12709,-0.990977)--(4.12637,-0.991538)--(4.12566,-0.9921)--(4.12494,-0.992663)--(4.12422,-0.993226)--(4.1235,-0.993791)--(4.12278,-0.994355)--(4.12207,-0.99492)--(4.12135,-0.995486)--(4.12063,-0.996053)--(4.11991,-0.99662)--(4.11919,-0.997188)--(4.11847,-0.997756)--(4.11775,-0.998325)--(4.11703,-0.998895)--(4.1163,-0.999465)--(4.11558,-1.00004)--(4.11486,-1.00061)--
> (4.11414,-1.00118)--(4.11341,-1.00175)--(4.11269,-1.00233)--(4.11196,-1.0029)--(4.11124,-1.00347)--(4.11052,-1.00405)--(4.10979,-1.00463)--(4.10906,-1.0052)--(4.10834,-1.00578)--(4.10761,-1.00636)--(4.10688,-1.00694)--(4.10616,-1.00751)--(4.10543,-1.00809)--(4.1047,-1.00867)--(4.10397,-1.00926)--(4.10324,-1.00984)--(4.10251,-1.01042)--(4.10178,-1.011)--(4.10105,-1.01159)--(4.10032,-1.01217)--(4.09959,-1.01275)--(4.09886,-1.01334)--(4.09813,-1.01393)--(4.0974,-1.01451)--(4.09667,-1.0151)--
> (4.09593,-1.01569)--(4.0952,-1.01628)--(4.09446,-1.01687)--(4.09373,-1.01746)--(4.093,-1.01805)--(4.09226,-1.01864)--(4.09153,-1.01923)--(4.09079,-1.01982)--(4.09005,-1.02042)--(4.08932,-1.02101)--(4.08858,-1.0216)--(4.08784,-1.0222)--(4.0871,-1.02279)--(4.08637,-1.02339)--(4.08563,-1.02399)--(4.08489,-1.02459)--(4.08415,-1.02518)--(4.08341,-1.02578)--(4.08267,-1.02638)--(4.08193,-1.02698)--(4.08119,-1.02758)--(4.08044,-1.02819)--(4.0797,-1.02879)--(4.07896,-1.02939)--(4.07822,-1.03)--
> (4.07747,-1.0306)--(4.07673,-1.0312)--(4.07599,-1.03181)--(4.07524,-1.03242)--(4.0745,-1.03302)--(4.07375,-1.03363)--(4.07301,-1.03424)--(4.07226,-1.03485)--(4.07151,-1.03546)--(4.07077,-1.03607)--(4.07002,-1.03668)--(4.06927,-1.03729)--(4.06852,-1.0379)--(4.06777,-1.03852)--(4.06702,-1.03913)--(4.06627,-1.03974)--(4.06552,-1.04036)--(4.06477,-1.04098)--(4.06402,-1.04159)--(4.06327,-1.04221)--(4.06252,-1.04283)--(4.06177,-1.04345)--(4.06102,-1.04406)--(4.06026,-1.04468)--(4.05951,-1.0453)--
> (4.05876,-1.04593)--(4.058,-1.04655)--(4.05725,-1.04717)--(4.05649,-1.04779)--(4.05574,-1.04842)--(4.05498,-1.04904)--(4.05423,-1.04967)--(4.05347,-1.05029)--(4.05271,-1.05092)--(4.05195,-1.05155)--(4.0512,-1.05218)--(4.05044,-1.0528)--(4.04968,-1.05343)--(4.04892,-1.05406)--(4.04816,-1.05469)--(4.0474,-1.05533)--(4.04664,-1.05596)--(4.04588,-1.05659)--(4.04512,-1.05723)--(4.04436,-1.05786)--(4.04359,-1.05849)--(4.04283,-1.05913)--(4.04207,-1.05977)--(4.04131,-1.0604)--(4.04054,-1.06104)--
> (4.03978,-1.06168)--(4.03901,-1.06232)--(4.03825,-1.06296)--(4.03748,-1.0636)--(4.03672,-1.06424)--(4.03595,-1.06488)--(4.03518,-1.06553)--(4.03442,-1.06617)--(4.03365,-1.06681)--(4.03288,-1.06746)--(4.03211,-1.0681)--(4.03134,-1.06875)--(4.03057,-1.0694)--(4.0298,-1.07005)--(4.02903,-1.07069)--(4.02826,-1.07134)--(4.02749,-1.07199)--(4.02672,-1.07264)--(4.02595,-1.07329)--(4.02517,-1.07395)--(4.0244,-1.0746)--(4.02363,-1.07525)--(4.02285,-1.07591)--(4.02208,-1.07656)--(4.02131,-1.07722)--
> (4.02053,-1.07787)--(4.01976,-1.07853)--(4.01898,-1.07919)--(4.0182,-1.07985)--(4.01743,-1.08051)--(4.01665,-1.08117)--(4.01587,-1.08183)--(4.01509,-1.08249)--(4.01432,-1.08315)--(4.01354,-1.08381)--(4.01276,-1.08448)--(4.01198,-1.08514)--(4.0112,-1.08581)--(4.01042,-1.08647)--(4.00964,-1.08714)--(4.00885,-1.08781)--(4.00807,-1.08847)--(4.00729,-1.08914)--(4.00651,-1.08981)--(4.00572,-1.09048)--(4.00494,-1.09115)--(4.00416,-1.09183)--(4.00337,-1.0925)--(4.00259,-1.09317)--(4.0018,-1.09385)--
> (4.00101,-1.09452)--(4.00023,-1.0952)--(3.99944,-1.09587)--(3.99865,-1.09655)--(3.99787,-1.09723)--(3.99708,-1.09791)--(3.99629,-1.09858)--(3.9955,-1.09926)--(3.99471,-1.09995)--(3.99392,-1.10063)--(3.99313,-1.10131)--(3.99234,-1.10199)--(3.99155,-1.10268)--(3.99076,-1.10336)--(3.98996,-1.10405)--(3.98917,-1.10473)--(3.98838,-1.10542)--(3.98759,-1.10611)--(3.98679,-1.10679)--(3.986,-1.10748)--(3.9852,-1.10817)--(3.98441,-1.10886)--(3.98361,-1.10956)--(3.98282,-1.11025)--(3.98202,-1.11094)--
> (3.98122,-1.11163)--(3.98042,-1.11233)--(3.97963,-1.11302)--(3.97883,-1.11372)--(3.97803,-1.11442)--(3.97723,-1.11511)--(3.97643,-1.11581)--(3.97563,-1.11651)--(3.97483,-1.11721)--(3.97403,-1.11791)--(3.97323,-1.11861)--(3.97243,-1.11931)--(3.97162,-1.12002)--(3.97082,-1.12072)--(3.97002,-1.12143)--(3.96921,-1.12213)--(3.96841,-1.12284)--(3.9676,-1.12354)--(3.9668,-1.12425)--(3.96599,-1.12496)--(3.96519,-1.12567)--(3.96438,-1.12638)--(3.96357,-1.12709)--(3.96277,-1.1278)--(3.96196,-1.12851)--
> (3.96115,-1.12923)--(3.96034,-1.12994)--(3.95953,-1.13066)--(3.95872,-1.13137)--(3.95791,-1.13209)--(3.9571,-1.1328)--(3.95629,-1.13352)--(3.95548,-1.13424)--(3.95467,-1.13496)--(3.95386,-1.13568)--(3.95304,-1.1364)--(3.95223,-1.13712)--(3.95142,-1.13785)--(3.9506,-1.13857)--(3.94979,-1.13929)--(3.94897,-1.14002)--(3.94816,-1.14074)--(3.94734,-1.14147)--(3.94652,-1.1422)--(3.94571,-1.14293)--(3.94489,-1.14366)--(3.94407,-1.14439)--(3.94325,-1.14512)--(3.94244,-1.14585)--(3.94162,-1.14658)--
> (3.9408,-1.14731)--(3.93998,-1.14805)--(3.93916,-1.14878)--(3.93833,-1.14952)--(3.93751,-1.15026)--(3.93669,-1.15099)--(3.93587,-1.15173)--(3.93505,-1.15247)--(3.93422,-1.15321)--(3.9334,-1.15395)--(3.93257,-1.15469)--(3.93175,-1.15543)--(3.93092,-1.15618)--(3.9301,-1.15692)--(3.92927,-1.15766)--(3.92845,-1.15841)--(3.92762,-1.15916)--(3.92679,-1.1599)--(3.92596,-1.16065)--(3.92514,-1.1614)--(3.92431,-1.16215)--(3.92348,-1.1629)--(3.92265,-1.16365)--(3.92182,-1.1644)--(3.92099,-1.16516)--
> (3.92016,-1.16591)--(3.91932,-1.16667)--(3.91849,-1.16742)--(3.91766,-1.16818)--(3.91683,-1.16893)--(3.91599,-1.16969)--(3.91516,-1.17045)--(3.91432,-1.17121)--(3.91349,-1.17197)--(3.91265,-1.17273)--(3.91182,-1.1735)--(3.91098,-1.17426)--(3.91014,-1.17502)--(3.90931,-1.17579)--(3.90847,-1.17655)--(3.90763,-1.17732)--(3.90679,-1.17809)--(3.90595,-1.17885)--(3.90511,-1.17962)--(3.90427,-1.18039)--(3.90343,-1.18116)--(3.90259,-1.18194)--(3.90175,-1.18271)--(3.90091,-1.18348)--(3.90007,-1.18426)--
> (3.89922,-1.18503)--(3.89838,-1.18581)--(3.89754,-1.18658)--(3.89669,-1.18736)--(3.89585,-1.18814)--(3.895,-1.18892)--(3.89415,-1.1897)--(3.89331,-1.19048)--(3.89246,-1.19126)--(3.89161,-1.19205)--(3.89077,-1.19283)--(3.88992,-1.19361)--(3.88907,-1.1944)--(3.88822,-1.19519)--(3.88737,-1.19597)--(3.88652,-1.19676)--(3.88567,-1.19755)--(3.88482,-1.19834)--(3.88397,-1.19913)--(3.88312,-1.19992)--(3.88226,-1.20072)--(3.88141,-1.20151)--(3.88056,-1.2023)--(3.8797,-1.2031)--(3.87885,-1.20389)--
> (3.87799,-1.20469)--(3.87714,-1.20549)--(3.87628,-1.20629)--(3.87543,-1.20709)--(3.87457,-1.20789)--(3.87371,-1.20869)--(3.87286,-1.20949)--(3.872,-1.21029)--(3.87114,-1.2111)--(3.87028,-1.2119)--(3.86942,-1.21271)--(3.86856,-1.21352)--(3.8677,-1.21432)--(3.86684,-1.21513)--(3.86598,-1.21594)--(3.86511,-1.21675)--(3.86425,-1.21756)--(3.86339,-1.21838)--(3.86253,-1.21919)--(3.86166,-1.22)--(3.8608,-1.22082)--(3.85993,-1.22163)--(3.85907,-1.22245)--(3.8582,-1.22327)--(3.85733,-1.22409)--
> (3.85647,-1.22491)--(3.8556,-1.22573)--(3.85473,-1.22655)--(3.85386,-1.22737)--(3.853,-1.22819)--(3.85213,-1.22902)--(3.85126,-1.22984)--(3.85039,-1.23067)--(3.84952,-1.2315)--(3.84864,-1.23232)--(3.84777,-1.23315)--(3.8469,-1.23398)--(3.84603,-1.23481)--(3.84515,-1.23564)--(3.84428,-1.23648)--(3.84341,-1.23731)--(3.84253,-1.23814)--(3.84166,-1.23898)--(3.84078,-1.23982)--(3.8399,-1.24065)--(3.83903,-1.24149)--(3.83815,-1.24233)--(3.83727,-1.24317)--(3.8364,-1.24401)--(3.83552,-1.24485)--
> (3.83464,-1.24569)--(3.83376,-1.24654)--(3.83288,-1.24738)--(3.832,-1.24823)--(3.83112,-1.24908)--(3.83024,-1.24992)--(3.82935,-1.25077)--(3.82847,-1.25162)--(3.82759,-1.25247)--(3.8267,-1.25332)--(3.82582,-1.25417)--(3.82494,-1.25503)--(3.82405,-1.25588)--(3.82317,-1.25674)--(3.82228,-1.25759)--(3.82139,-1.25845)--(3.82051,-1.25931)--(3.81962,-1.26017)--(3.81873,-1.26103)--(3.81784,-1.26189)--(3.81695,-1.26275)--(3.81606,-1.26361)--(3.81517,-1.26448)--(3.81428,-1.26534)--(3.81339,-1.26621)--
> (3.8125,-1.26707)--(3.81161,-1.26794)--(3.81072,-1.26881)--(3.80982,-1.26968)--(3.80893,-1.27055)--(3.80804,-1.27142)--(3.80714,-1.27229)--(3.80625,-1.27317)--(3.80535,-1.27404)--(3.80446,-1.27492)--(3.80356,-1.27579)--(3.80266,-1.27667)--(3.80177,-1.27755)--(3.80087,-1.27843)--(3.79997,-1.27931)--(3.79907,-1.28019)--(3.79817,-1.28107)--(3.79727,-1.28195)--(3.79637,-1.28284)--(3.79547,-1.28372)--(3.79457,-1.28461)--(3.79367,-1.2855)--(3.79276,-1.28639)--(3.79186,-1.28727)--(3.79096,-1.28816)--
> (3.79005,-1.28906)--(3.78915,-1.28995)--(3.78825,-1.29084)--(3.78734,-1.29174)--(3.78643,-1.29263)--(3.78553,-1.29353)--(3.78462,-1.29442)--(3.78371,-1.29532)--(3.78281,-1.29622)--(3.7819,-1.29712)--(3.78099,-1.29802)--(3.78008,-1.29893)--(3.77917,-1.29983)--(3.77826,-1.30073)--(3.77735,-1.30164)--(3.77644,-1.30254)--(3.77552,-1.30345)--(3.77461,-1.30436)--(3.7737,-1.30527)--(3.77279,-1.30618)--(3.77187,-1.30709)--(3.77096,-1.308)--(3.77004,-1.30892)--(3.76913,-1.30983)--(3.76821,-1.31075)--
> (3.76729,-1.31166)--(3.76638,-1.31258)--(3.76546,-1.3135)--(3.76454,-1.31442)--(3.76362,-1.31534)--(3.7627,-1.31626)--(3.76179,-1.31719)--(3.76087,-1.31811)--(3.75994,-1.31903)--(3.75902,-1.31996)--(3.7581,-1.32089)--(3.75718,-1.32181)--(3.75626,-1.32274)--(3.75533,-1.32367)--(3.75441,-1.3246)--(3.75349,-1.32554)--(3.75256,-1.32647)--(3.75164,-1.3274)--(3.75071,-1.32834)--(3.74978,-1.32928)--(3.74886,-1.33021)--(3.74793,-1.33115)--(3.747,-1.33209)--(3.74608,-1.33303)--(3.74515,-1.33397)--
> (3.74422,-1.33492)--(3.74329,-1.33586)--(3.74236,-1.3368)--(3.74143,-1.33775)--(3.7405,-1.3387)--(3.73956,-1.33965)--(3.73863,-1.34059)--(3.7377,-1.34154)--(3.73677,-1.3425)--(3.73583,-1.34345)--(3.7349,-1.3444)--(3.73396,-1.34536)--(3.73303,-1.34631)--(3.73209,-1.34727)--(3.73115,-1.34823)--(3.73022,-1.34918)--(3.72928,-1.35014)--(3.72834,-1.3511)--(3.7274,-1.35207)--(3.72646,-1.35303)--(3.72553,-1.35399)--(3.72459,-1.35496)--(3.72364,-1.35592)--(3.7227,-1.35689)--(3.72176,-1.35786)--
> (3.72082,-1.35883)--(3.71988,-1.3598)--(3.71893,-1.36077)--(3.71799,-1.36175)--(3.71705,-1.36272)--(3.7161,-1.36369)--(3.71516,-1.36467)--(3.71421,-1.36565)--(3.71326,-1.36663)--(3.71232,-1.3676)--(3.71137,-1.36859)--(3.71042,-1.36957)--(3.70947,-1.37055)--(3.70853,-1.37153)--(3.70758,-1.37252)--(3.70663,-1.3735)--(3.70568,-1.37449)--(3.70473,-1.37548)--(3.70377,-1.37647)--(3.70282,-1.37746)--(3.70187,-1.37845)--(3.70092,-1.37944)--(3.69996,-1.38044)--(3.69901,-1.38143)--(3.69805,-1.38243)--
> (3.6971,-1.38343)--(3.69614,-1.38442)--(3.69519,-1.38542)--(3.69423,-1.38642)--(3.69327,-1.38743)--(3.69232,-1.38843)--(3.69136,-1.38943)--(3.6904,-1.39044)--(3.68944,-1.39144)--(3.68848,-1.39245)--(3.68752,-1.39346)--(3.68656,-1.39447)--(3.6856,-1.39548)--(3.68464,-1.39649)--(3.68367,-1.3975)--(3.68271,-1.39852)--(3.68175,-1.39953)--(3.68078,-1.40055)--(3.67982,-1.40157)--(3.67885,-1.40259)--(3.67789,-1.40361)--(3.67692,-1.40463)--(3.67596,-1.40565)--(3.67499,-1.40667)--(3.67402,-1.4077)--
> (3.67305,-1.40872)--(3.67208,-1.40975)--(3.67111,-1.41078)--(3.67014,-1.41181)--(3.66917,-1.41284)--(3.6682,-1.41387)--(3.66723,-1.4149)--(3.66626,-1.41594)--(3.66529,-1.41697)--(3.66432,-1.41801)--(3.66334,-1.41904)--(3.66237,-1.42008)--(3.66139,-1.42112)--(3.66042,-1.42216)--(3.65944,-1.4232)--(3.65847,-1.42425)--(3.65749,-1.42529)--(3.65651,-1.42634)--(3.65554,-1.42738)--(3.65456,-1.42843)--(3.65358,-1.42948)--(3.6526,-1.43053)--(3.65162,-1.43158)--(3.65064,-1.43263)--(3.64966,-1.43369)--
> (3.64868,-1.43474)--(3.6477,-1.4358)--(3.64671,-1.43686)--(3.64573,-1.43792)--(3.64475,-1.43897)--(3.64376,-1.44004)--(3.64278,-1.4411)--(3.64179,-1.44216)--(3.64081,-1.44323)--(3.63982,-1.44429)--(3.63883,-1.44536)--(3.63785,-1.44643)--(3.63686,-1.4475)--(3.63587,-1.44857)--(3.63488,-1.44964)--(3.63389,-1.45071)--(3.6329,-1.45178)--(3.63191,-1.45286)--(3.63092,-1.45394)--(3.62993,-1.45501)--(3.62894,-1.45609)--(3.62795,-1.45717)--(3.62695,-1.45826)--(3.62596,-1.45934)--(3.62497,-1.46042)--
> (3.62397,-1.46151)--(3.62298,-1.46259)--(3.62198,-1.46368)--(3.62098,-1.46477)--(3.61999,-1.46586)--(3.61899,-1.46695)--(3.61799,-1.46804)--(3.61699,-1.46914)--(3.616,-1.47023)--(3.615,-1.47133)--(3.614,-1.47243)--(3.613,-1.47352)--(3.61199,-1.47462)--(3.61099,-1.47572)--(3.60999,-1.47683)--(3.60899,-1.47793)--(3.60799,-1.47904)--(3.60698,-1.48014)--(3.60598,-1.48125)--(3.60497,-1.48236)--(3.60397,-1.48347)--(3.60296,-1.48458)--(3.60196,-1.48569)--(3.60095,-1.4868)--(3.59994,-1.48792)--
> (3.59893,-1.48904)--(3.59792,-1.49015)--(3.59692,-1.49127)--(3.59591,-1.49239)--(3.5949,-1.49351)--(3.59389,-1.49464)--(3.59287,-1.49576)--(3.59186,-1.49688)--(3.59085,-1.49801)--(3.58984,-1.49914)--(3.58882,-1.50027)--(3.58781,-1.5014)--(3.5868,-1.50253)--(3.58578,-1.50366)--(3.58477,-1.50479)--(3.58375,-1.50593)--(3.58273,-1.50707)--(3.58172,-1.5082)--(3.5807,-1.50934)--(3.57968,-1.51048)--(3.57866,-1.51162)--(3.57764,-1.51277)--(3.57662,-1.51391)--(3.5756,-1.51506)--(3.57458,-1.5162)--
> (3.57356,-1.51735)--(3.57254,-1.5185)--(3.57152,-1.51965)--(3.57049,-1.5208)--(3.56947,-1.52196)--(3.56845,-1.52311)--(3.56742,-1.52427)--(3.5664,-1.52542)--(3.56537,-1.52658)--(3.56434,-1.52774)--(3.56332,-1.5289)--(3.56229,-1.53007)--(3.56126,-1.53123)--(3.56023,-1.5324)--(3.5592,-1.53356)--(3.55818,-1.53473)--(3.55715,-1.5359)--(3.55611,-1.53707)--(3.55508,-1.53824)--(3.55405,-1.53941)--(3.55302,-1.54059)--(3.55199,-1.54176)--(3.55095,-1.54294)--(3.54992,-1.54412)--(3.54889,-1.5453)--
> (3.54785,-1.54648)--(3.54682,-1.54766)--(3.54578,-1.54884)--(3.54474,-1.55003)--(3.54371,-1.55122)--(3.54267,-1.5524)--(3.54163,-1.55359)--(3.54059,-1.55478)--(3.53955,-1.55597)--(3.53851,-1.55717)--(3.53747,-1.55836)--(3.53643,-1.55956)--(3.53539,-1.56075)--(3.53435,-1.56195)--(3.53331,-1.56315)--(3.53227,-1.56435)--(3.53122,-1.56556)--(3.53018,-1.56676)--(3.52913,-1.56796)--(3.52809,-1.56917)--(3.52704,-1.57038)--(3.526,-1.57159)--(3.52495,-1.5728)--(3.5239,-1.57401)--(3.52285,-1.57522)--
> (3.52181,-1.57644)--(3.52076,-1.57765)--(3.51971,-1.57887)--(3.51866,-1.58009)--(3.51761,-1.58131)--(3.51656,-1.58253)--(3.51551,-1.58376)--(3.51445,-1.58498)--(3.5134,-1.58621)--(3.51235,-1.58743)--(3.51129,-1.58866)--(3.51024,-1.58989)--(3.50919,-1.59112)--(3.50813,-1.59235)--(3.50707,-1.59359)--(3.50602,-1.59482)--(3.50496,-1.59606)--(3.5039,-1.5973)--(3.50285,-1.59854)--(3.50179,-1.59978)--(3.50073,-1.60102)--(3.49967,-1.60227)--(3.49861,-1.60351)--(3.49755,-1.60476)--(3.49649,-1.60601)--
> (3.49542,-1.60726)--(3.49436,-1.60851)--(3.4933,-1.60976)--(3.49224,-1.61101)--(3.49117,-1.61227)--(3.49011,-1.61352)--(3.48904,-1.61478)--(3.48798,-1.61604)--(3.48691,-1.6173)--(3.48584,-1.61856)--(3.48478,-1.61983)--(3.48371,-1.62109)--(3.48264,-1.62236)--(3.48157,-1.62363)--(3.4805,-1.6249)--(3.47943,-1.62617)--(3.47836,-1.62744)--(3.47729,-1.62871)--(3.47622,-1.62999)--(3.47515,-1.63126)--(3.47408,-1.63254)--(3.473,-1.63382)--(3.47193,-1.6351)--(3.47086,-1.63639)--(3.46978,-1.63767)--
> (3.46871,-1.63895)--(3.46763,-1.64024)--(3.46655,-1.64153)--(3.46548,-1.64282)--(3.4644,-1.64411)--(3.46332,-1.6454)--(3.46224,-1.6467)--(3.46116,-1.64799)--(3.46008,-1.64929)--(3.459,-1.65059)--(3.45792,-1.65189)--(3.45684,-1.65319)--(3.45576,-1.65449)--(3.45468,-1.65579)--(3.4536,-1.6571)--(3.45251,-1.65841)--(3.45143,-1.65972)--(3.45034,-1.66103)--(3.44926,-1.66234)--(3.44817,-1.66365)--(3.44709,-1.66496)--(3.446,-1.66628)--(3.44491,-1.6676)--(3.44383,-1.66892)--(3.44274,-1.67024)--
> (3.44165,-1.67156)--(3.44056,-1.67288)--(3.43947,-1.67421)--(3.43838,-1.67553)--(3.43729,-1.67686)--(3.4362,-1.67819)--(3.43511,-1.67952)--(3.43401,-1.68085)--(3.43292,-1.68219)--(3.43183,-1.68352)--(3.43073,-1.68486)--(3.42964,-1.6862)--(3.42854,-1.68754)--(3.42745,-1.68888)--(3.42635,-1.69022)--(3.42526,-1.69157)--(3.42416,-1.69291)--(3.42306,-1.69426)--(3.42196,-1.69561)--(3.42086,-1.69696)--(3.41976,-1.69831)--(3.41866,-1.69967)--(3.41756,-1.70102)--(3.41646,-1.70238)--(3.41536,-1.70374)--
> (3.41426,-1.7051)--(3.41316,-1.70646)--(3.41205,-1.70782)--(3.41095,-1.70918)--(3.40985,-1.71055)--(3.40874,-1.71192)--(3.40764,-1.71329)--(3.40653,-1.71466)--(3.40542,-1.71603)--(3.40432,-1.7174)--(3.40321,-1.71878)--(3.4021,-1.72015)--(3.40099,-1.72153)--(3.39988,-1.72291)--(3.39877,-1.72429)--(3.39766,-1.72568)--(3.39655,-1.72706)--(3.39544,-1.72845)--(3.39433,-1.72983)--(3.39322,-1.73122)--(3.39211,-1.73261)--(3.39099,-1.734)--(3.38988,-1.7354)--(3.38877,-1.73679)--(3.38765,-1.73819)--
> (3.38654,-1.73959)--(3.38542,-1.74099)--(3.3843,-1.74239)--(3.38319,-1.74379)--(3.38207,-1.7452)--(3.38095,-1.7466)--(3.37983,-1.74801)--(3.37871,-1.74942)--(3.37759,-1.75083)--(3.37647,-1.75225)--(3.37535,-1.75366)--(3.37423,-1.75508)--(3.37311,-1.75649)--(3.37199,-1.75791)--(3.37087,-1.75933)--(3.36974,-1.76076)--(3.36862,-1.76218)--(3.36749,-1.7636)--(3.36637,-1.76503)--(3.36524,-1.76646)--(3.36412,-1.76789)--(3.36299,-1.76932)--(3.36186,-1.77076)--(3.36074,-1.77219)--(3.35961,-1.77363)--
> (3.35848,-1.77507)--(3.35735,-1.77651)--(3.35622,-1.77795)--(3.35509,-1.77939)--(3.35396,-1.78084)--(3.35283,-1.78228)--(3.3517,-1.78373)--(3.35057,-1.78518)--(3.34943,-1.78663)--(3.3483,-1.78808)--(3.34717,-1.78954)--(3.34603,-1.79099)--(3.3449,-1.79245)--(3.34376,-1.79391)--(3.34263,-1.79537)--(3.34149,-1.79684)--(3.34035,-1.7983)--(3.33922,-1.79977)--(3.33808,-1.80123)--(3.33694,-1.8027)--(3.3358,-1.80417)--(3.33466,-1.80565)--(3.33352,-1.80712)--(3.33238,-1.8086)--(3.33124,-1.81007)--
> (3.3301,-1.81155)--(3.32896,-1.81303)--(3.32781,-1.81452)--(3.32667,-1.816)--(3.32553,-1.81749)--(3.32438,-1.81897)--(3.32324,-1.82046)--(3.32209,-1.82195)--(3.32095,-1.82345)--(3.3198,-1.82494)--(3.31865,-1.82644)--(3.31751,-1.82793)--(3.31636,-1.82943)--(3.31521,-1.83093)--(3.31406,-1.83244)--(3.31291,-1.83394)--(3.31176,-1.83545)--(3.31061,-1.83695)--(3.30946,-1.83846)--(3.30831,-1.83997)--(3.30716,-1.84149)--(3.30601,-1.843)--(3.30485,-1.84452)--(3.3037,-1.84604)--(3.30255,-1.84755)--
> (3.30139,-1.84908)--(3.30024,-1.8506)--(3.29908,-1.85212)--(3.29792,-1.85365)--(3.29677,-1.85518)--(3.29561,-1.85671)--(3.29445,-1.85824)--(3.2933,-1.85977)--(3.29214,-1.86131)--(3.29098,-1.86284)--(3.28982,-1.86438)--(3.28866,-1.86592)--(3.2875,-1.86746)--(3.28634,-1.86901)--(3.28518,-1.87055)--(3.28401,-1.8721)--(3.28285,-1.87365)--(3.28169,-1.8752)--(3.28052,-1.87675)--(3.27936,-1.8783)--(3.2782,-1.87986)--(3.27703,-1.88142)--(3.27586,-1.88298)--(3.2747,-1.88454)--(3.27353,-1.8861)--
> (3.27237,-1.88766)--(3.2712,-1.88923)--(3.27003,-1.8908)--(3.26886,-1.89237)--(3.26769,-1.89394)--(3.26652,-1.89551)--(3.26535,-1.89709)--(3.26418,-1.89866)--(3.26301,-1.90024)--(3.26184,-1.90182)--(3.26067,-1.9034)--(3.25949,-1.90499)--(3.25832,-1.90657)--(3.25715,-1.90816)--(3.25597,-1.90975)--(3.2548,-1.91134)--(3.25362,-1.91293)--(3.25245,-1.91452)--(3.25127,-1.91612)--(3.2501,-1.91772)--(3.24892,-1.91932)--(3.24774,-1.92092)--(3.24656,-1.92252)--(3.24539,-1.92413)--(3.24421,-1.92573)--
> (3.24303,-1.92734)--(3.24185,-1.92895)--(3.24067,-1.93056)--(3.23949,-1.93218)--(3.2383,-1.93379)--(3.23712,-1.93541)--(3.23594,-1.93703)--(3.23476,-1.93865)--(3.23357,-1.94027)--(3.23239,-1.9419)--(3.23121,-1.94352)--(3.23002,-1.94515)--(3.22883,-1.94678)--(3.22765,-1.94842)--(3.22646,-1.95005)--(3.22528,-1.95168)--(3.22409,-1.95332)--(3.2229,-1.95496)--(3.22171,-1.9566)--(3.22052,-1.95824)--(3.21934,-1.95989)--(3.21815,-1.96154)--(3.21696,-1.96318)--(3.21576,-1.96483)--(3.21457,-1.96649)--
> (3.21338,-1.96814)--(3.21219,-1.96979)--(3.211,-1.97145)--(3.2098,-1.97311)--(3.20861,-1.97477)--(3.20742,-1.97644)--(3.20622,-1.9781)--(3.20503,-1.97977)--(3.20383,-1.98144)--(3.20264,-1.98311)--(3.20144,-1.98478)--(3.20024,-1.98645)--(3.19905,-1.98813)--(3.19785,-1.98981)--(3.19665,-1.99148)--(3.19545,-1.99317)--(3.19425,-1.99485)--(3.19305,-1.99653)--(3.19185,-1.99822)--(3.19065,-1.99991)--(3.18945,-2.0016)--(3.18825,-2.00329)--(3.18705,-2.00499)--(3.18585,-2.00668)--(3.18464,-2.00838)--
> (3.18344,-2.01008)--(3.18224,-2.01179)--(3.18103,-2.01349)--(3.17983,-2.01519)--(3.17862,-2.0169)--(3.17742,-2.01861)--(3.17621,-2.02032)--(3.175,-2.02204)--(3.1738,-2.02375)--(3.17259,-2.02547)--(3.17138,-2.02719)--(3.17017,-2.02891)--(3.16896,-2.03063)--(3.16775,-2.03236)--(3.16654,-2.03408)--(3.16533,-2.03581)--(3.16412,-2.03754)--(3.16291,-2.03927)--(3.1617,-2.04101)--(3.16049,-2.04274)--(3.15928,-2.04448)--(3.15806,-2.04622)--(3.15685,-2.04796)--(3.15564,-2.04971)--(3.15442,-2.05145)--
> (3.15321,-2.0532)--(3.15199,-2.05495)--(3.15078,-2.0567)--(3.14956,-2.05846)--(3.14834,-2.06021)--(3.14713,-2.06197)--(3.14591,-2.06373)--(3.14469,-2.06549)--(3.14347,-2.06725)--(3.14226,-2.06902)--(3.14104,-2.07078)--(3.13982,-2.07255)--(3.1386,-2.07432)--(3.13738,-2.0761)--(3.13616,-2.07787)--(3.13493,-2.07965)--(3.13371,-2.08143)--(3.13249,-2.08321)--(3.13127,-2.08499)--(3.13005,-2.08677)--(3.12882,-2.08856)--(3.1276,-2.09035)--(3.12637,-2.09214)--(3.12515,-2.09393)--(3.12392,-2.09573)--
> (3.1227,-2.09752)--(3.12147,-2.09932)--(3.12025,-2.10112)--(3.11902,-2.10292)--(3.11779,-2.10473)--(3.11656,-2.10653)--(3.11534,-2.10834)--(3.11411,-2.11015)--(3.11288,-2.11196)--(3.11165,-2.11378)--(3.11042,-2.11559)--(3.10919,-2.11741)--(3.10796,-2.11923)--(3.10673,-2.12105)--(3.1055,-2.12288)--(3.10426,-2.1247)--(3.10303,-2.12653)--(3.1018,-2.12836)--(3.10057,-2.13019)--(3.09933,-2.13203)--(3.0981,-2.13386)--(3.09686,-2.1357)--(3.09563,-2.13754)--(3.09439,-2.13938)--(3.09316,-2.14123)--
> (3.09192,-2.14307)--(3.09069,-2.14492)--(3.08945,-2.14677)--(3.08821,-2.14862)--(3.08697,-2.15048)--(3.08574,-2.15233)--(3.0845,-2.15419)--(3.08326,-2.15605)--(3.08202,-2.15791)--(3.08078,-2.15978)--(3.07954,-2.16164)--(3.0783,-2.16351)--(3.07706,-2.16538)--(3.07582,-2.16725)--(3.07458,-2.16913)--(3.07333,-2.17101)--(3.07209,-2.17288)--(3.07085,-2.17476)--(3.06961,-2.17665)--(3.06836,-2.17853)--(3.06712,-2.18042)--(3.06587,-2.18231)--(3.06463,-2.1842)--(3.06338,-2.18609)--(3.06214,-2.18798)--
> (3.06089,-2.18988)--(3.05965,-2.19178)--(3.0584,-2.19368)--(3.05715,-2.19558)--(3.05591,-2.19749)--(3.05466,-2.1994)--(3.05341,-2.20131)--(3.05216,-2.20322)--(3.05091,-2.20513)--(3.04966,-2.20705)--(3.04841,-2.20896)--(3.04716,-2.21088)--(3.04591,-2.2128)--(3.04466,-2.21473)--(3.04341,-2.21665)--(3.04216,-2.21858)--(3.04091,-2.22051)--(3.03966,-2.22244)--(3.0384,-2.22438)--(3.03715,-2.22631)--(3.0359,-2.22825)--(3.03464,-2.23019)--(3.03339,-2.23213)--(3.03213,-2.23408)--(3.03088,-2.23603)--
> (3.02963,-2.23797)--(3.02837,-2.23992)--(3.02711,-2.24188)--(3.02586,-2.24383)--(3.0246,-2.24579)--(3.02334,-2.24775)--(3.02209,-2.24971)--(3.02083,-2.25167)--(3.01957,-2.25364)--(3.01831,-2.25561)--(3.01706,-2.25758)--(3.0158,-2.25955)--(3.01454,-2.26152)--(3.01328,-2.2635)--(3.01202,-2.26548)--(3.01076,-2.26746)--(3.0095,-2.26944)--(3.00824,-2.27142)--(3.00697,-2.27341)--(3.00571,-2.2754)--(3.00445,-2.27739)--(3.00319,-2.27938)--(3.00193,-2.28138)--(3.00066,-2.28338)--(2.9994,-2.28538)--
> (2.99814,-2.28738)--(2.99687,-2.28938)--(2.99561,-2.29139)--(2.99434,-2.2934)--(2.99308,-2.29541)--(2.99181,-2.29742)--(2.99055,-2.29943)--(2.98928,-2.30145)--(2.98802,-2.30347)--(2.98675,-2.30549)--(2.98548,-2.30751)--(2.98422,-2.30954)--(2.98295,-2.31157)--(2.98168,-2.3136)--(2.98041,-2.31563)--(2.97915,-2.31766)--(2.97788,-2.3197)--(2.97661,-2.32174)--(2.97534,-2.32378)--(2.97407,-2.32582)--(2.9728,-2.32786)--(2.97153,-2.32991)--(2.97026,-2.33196)--(2.96899,-2.33401)--(2.96772,-2.33606)--
> (2.96645,-2.33812)--(2.96517,-2.34018)--(2.9639,-2.34224)--(2.96263,-2.3443)--(2.96136,-2.34636)--(2.96008,-2.34843)--(2.95881,-2.3505)--(2.95754,-2.35257)--(2.95626,-2.35464)--(2.95499,-2.35672)--(2.95372,-2.3588)--(2.95244,-2.36088)--(2.95117,-2.36296)--(2.94989,-2.36504)--(2.94862,-2.36713)--(2.94734,-2.36922)--(2.94607,-2.37131)--(2.94479,-2.3734)--(2.94351,-2.3755)--(2.94224,-2.37759)--(2.94096,-2.37969)--(2.93968,-2.3818)--(2.93841,-2.3839)--(2.93713,-2.38601)--(2.93585,-2.38811)--
> (2.93457,-2.39022)--(2.93329,-2.39234)--(2.93201,-2.39445)--(2.93074,-2.39657)--(2.92946,-2.39869)--(2.92818,-2.40081)--(2.9269,-2.40294)--(2.92562,-2.40506)--(2.92434,-2.40719)--(2.92306,-2.40932)--(2.92178,-2.41145)--(2.9205,-2.41359)--(2.91921,-2.41573)--(2.91793,-2.41787)--(2.91665,-2.42001)--(2.91537,-2.42215)--(2.91409,-2.4243)--(2.91281,-2.42645)--(2.91152,-2.4286)--(2.91024,-2.43075)--(2.90896,-2.43291)--(2.90767,-2.43506)--(2.90639,-2.43722)--(2.90511,-2.43939)--(2.90382,-2.44155)--
> (2.90254,-2.44372)--(2.90125,-2.44589)--(2.89997,-2.44806)--(2.89869,-2.45023)--(2.8974,-2.45241)--(2.89612,-2.45458)--(2.89483,-2.45676)--(2.89354,-2.45895)--(2.89226,-2.46113)--(2.89097,-2.46332)--(2.88969,-2.46551)--(2.8884,-2.4677)--(2.88711,-2.46989)--(2.88583,-2.47209)--(2.88454,-2.47429)--(2.88325,-2.47649)--(2.88197,-2.47869)--(2.88068,-2.48089)--(2.87939,-2.4831)--(2.8781,-2.48531)--(2.87681,-2.48752)--(2.87553,-2.48974)--(2.87424,-2.49196)--(2.87295,-2.49417)--(2.87166,-2.4964)--
> (2.87037,-2.49862)--(2.86908,-2.50084)--(2.86779,-2.50307)--(2.8665,-2.5053)--(2.86521,-2.50754)--(2.86392,-2.50977)--(2.86263,-2.51201)--(2.86134,-2.51425)--(2.86005,-2.51649)--(2.85876,-2.51873)--(2.85747,-2.52098)--(2.85618,-2.52323)--(2.85489,-2.52548)--(2.8536,-2.52773)--(2.85231,-2.52999)--(2.85102,-2.53225)--(2.84973,-2.53451)--(2.84843,-2.53677)--(2.84714,-2.53903)--(2.84585,-2.5413)--(2.84456,-2.54357)--(2.84327,-2.54584)--(2.84197,-2.54812)--(2.84068,-2.55039)--(2.83939,-2.55267)--
> (2.8381,-2.55495)--(2.8368,-2.55724)--(2.83551,-2.55952)--(2.83422,-2.56181)--(2.83292,-2.5641)--(2.83163,-2.56639)--(2.83034,-2.56869)--(2.82904,-2.57099)--(2.82775,-2.57329)--(2.82646,-2.57559)--(2.82516,-2.57789)--(2.82387,-2.5802)--(2.82257,-2.58251)--(2.82128,-2.58482)--(2.81999,-2.58713)--(2.81869,-2.58945)--(2.8174,-2.59177)--(2.8161,-2.59409)--(2.81481,-2.59641)--(2.81351,-2.59874)--(2.81222,-2.60107)--(2.81092,-2.6034)--(2.80963,-2.60573)--(2.80833,-2.60806)--(2.80704,-2.6104)--
> (2.80574,-2.61274)--(2.80445,-2.61508)--(2.80315,-2.61743)--(2.80186,-2.61977)--(2.80056,-2.62212)--(2.79927,-2.62448)--(2.79797,-2.62683)--(2.79667,-2.62919)--(2.79538,-2.63154)--(2.79408,-2.6339)--(2.79279,-2.63627)--(2.79149,-2.63863)--(2.79019,-2.641)--(2.7889,-2.64337)--(2.7876,-2.64574)--(2.78631,-2.64812)--(2.78501,-2.6505)--(2.78371,-2.65288)--(2.78242,-2.65526)--(2.78112,-2.65764)--(2.77983,-2.66003)--(2.77853,-2.66242)--(2.77723,-2.66481)--(2.77594,-2.66721)--(2.77464,-2.6696)--
> (2.77334,-2.672)--(2.77205,-2.6744)--(2.77075,-2.67681)--(2.76945,-2.67921)--(2.76816,-2.68162)--(2.76686,-2.68403)--(2.76556,-2.68644)--(2.76427,-2.68886)--(2.76297,-2.69128)--(2.76167,-2.6937)--(2.76038,-2.69612)--(2.75908,-2.69855)--(2.75779,-2.70097)--(2.75649,-2.7034)--(2.75519,-2.70584)--(2.7539,-2.70827)--(2.7526,-2.71071)--(2.7513,-2.71315)--(2.75001,-2.71559)--(2.74871,-2.71803)--(2.74741,-2.72048)--(2.74612,-2.72293)--(2.74482,-2.72538)--(2.74353,-2.72783)--(2.74223,-2.73029)--
> (2.74093,-2.73275)--(2.73964,-2.73521)--(2.73834,-2.73767)--(2.73705,-2.74014)--(2.73575,-2.74261)--(2.73445,-2.74508)--(2.73316,-2.74755)--(2.73186,-2.75003)--(2.73057,-2.75251)--(2.72927,-2.75499)--(2.72797,-2.75747)--(2.72668,-2.75995)--(2.72538,-2.76244)--(2.72409,-2.76493)--(2.72279,-2.76742)--(2.7215,-2.76992)--(2.7202,-2.77242)--(2.71891,-2.77492)--(2.71761,-2.77742)--(2.71632,-2.77992)--(2.71502,-2.78243)--(2.71373,-2.78494)--(2.71243,-2.78745)--(2.71114,-2.78996)--(2.70984,-2.79248)--
> (2.70855,-2.795)--(2.70726,-2.79752)--(2.70596,-2.80005)--(2.70467,-2.80257)--(2.70337,-2.8051)--(2.70208,-2.80763)--(2.70079,-2.81017)--(2.69949,-2.8127)--(2.6982,-2.81524)--(2.69691,-2.81778)--(2.69561,-2.82032)--(2.69432,-2.82287)--(2.69303,-2.82542)--(2.69174,-2.82797)--(2.69044,-2.83052)--(2.68915,-2.83308)--(2.68786,-2.83564)--(2.68657,-2.8382)--(2.68527,-2.84076)--(2.68398,-2.84332)--(2.68269,-2.84589)--(2.6814,-2.84846)--(2.68011,-2.85103)--(2.67882,-2.85361)--(2.67753,-2.85619)--
> (2.67624,-2.85877)--(2.67495,-2.86135)--(2.67365,-2.86393)--(2.67236,-2.86652)--(2.67107,-2.86911)--(2.66979,-2.8717)--(2.6685,-2.8743)--(2.66721,-2.87689)--(2.66592,-2.87949)--(2.66463,-2.88209)--(2.66334,-2.8847)--(2.66205,-2.88731)--(2.66076,-2.88991)--(2.65947,-2.89253)--(2.65819,-2.89514)--(2.6569,-2.89776)--(2.65561,-2.90037)--(2.65432,-2.903)--(2.65304,-2.90562)--(2.65175,-2.90825)--(2.65046,-2.91087)--(2.64918,-2.91351)--(2.64789,-2.91614)--(2.6466,-2.91878)--(2.64532,-2.92141)--
> (2.64403,-2.92405)--(2.64275,-2.9267)--(2.64146,-2.92934)--(2.64018,-2.93199)--(2.63889,-2.93464)--(2.63761,-2.9373)--(2.63633,-2.93995)--(2.63504,-2.94261)--(2.63376,-2.94527)--(2.63248,-2.94793)--(2.63119,-2.9506)--(2.62991,-2.95327)--(2.62863,-2.95594)--(2.62735,-2.95861)--(2.62607,-2.96128)--(2.62479,-2.96396)--(2.6235,-2.96664)--(2.62222,-2.96932)--(2.62094,-2.97201)--(2.61966,-2.9747)--(2.61838,-2.97739)--(2.61711,-2.98008)--(2.61583,-2.98277)--(2.61455,-2.98547)--(2.61327,-2.98817)--
> (2.61199,-2.99087)--(2.61071,-2.99358)--(2.60944,-2.99628)--(2.60816,-2.99899)--(2.60688,-3.00171)--(2.60561,-3.00442)--(2.60433,-3.00714)--(2.60305,-3.00986)--(2.60178,-3.01258)--(2.6005,-3.0153)--(2.59923,-3.01803)--(2.59796,-3.02076)--(2.59668,-3.02349)--(2.59541,-3.02622)--(2.59414,-3.02896)--(2.59286,-3.0317)--(2.59159,-3.03444)--(2.59032,-3.03718)--(2.58905,-3.03993)--(2.58778,-3.04268)--(2.58651,-3.04543)--(2.58524,-3.04818)--(2.58397,-3.05094)--(2.5827,-3.0537)--(2.58143,-3.05646)--
> (2.58016,-3.05922)--(2.57889,-3.06199)--(2.57762,-3.06475)--(2.57636,-3.06753)--(2.57509,-3.0703)--(2.57382,-3.07307)--(2.57256,-3.07585)--(2.57129,-3.07863)--(2.57003,-3.08141)--(2.56876,-3.0842)--(2.5675,-3.08699)--(2.56623,-3.08978)--(2.56497,-3.09257)--(2.56371,-3.09537)--(2.56245,-3.09816)--(2.56118,-3.10096)--(2.55992,-3.10377)--(2.55866,-3.10657)--(2.5574,-3.10938)--(2.55614,-3.11219)--(2.55488,-3.115)--(2.55362,-3.11781)--(2.55236,-3.12063)--(2.55111,-3.12345)--(2.54985,-3.12627)--
> (2.54859,-3.1291)--(2.54734,-3.13192)--(2.54608,-3.13475)--(2.54483,-3.13758)--(2.54357,-3.14042)--(2.54232,-3.14326)--(2.54106,-3.14609)--(2.53981,-3.14894)--(2.53856,-3.15178)--(2.5373,-3.15463)--(2.53605,-3.15747)--(2.5348,-3.16033)--(2.53355,-3.16318)--(2.5323,-3.16603)--(2.53105,-3.16889)--(2.5298,-3.17175)--(2.52856,-3.17462)--(2.52731,-3.17748)--(2.52606,-3.18035)--(2.52482,-3.18322)--(2.52357,-3.18609)--(2.52232,-3.18897)--(2.52108,-3.19185)--(2.51984,-3.19473)--(2.51859,-3.19761)--
> (2.51735,-3.2005)--(2.51611,-3.20338)--(2.51487,-3.20627)--(2.51363,-3.20917)--(2.51238,-3.21206)--(2.51115,-3.21496)--(2.50991,-3.21786)--(2.50867,-3.22076)--(2.50743,-3.22366)--(2.50619,-3.22657)--(2.50496,-3.22948)--(2.50372,-3.23239)--(2.50249,-3.2353)--(2.50125,-3.23822)--(2.50002,-3.24114)--(2.49878,-3.24406)--(2.49755,-3.24698)--(2.49632,-3.24991)--(2.49509,-3.25284)--(2.49386,-3.25577)--(2.49263,-3.2587)--(2.4914,-3.26164)--(2.49017,-3.26458)--(2.48894,-3.26752)--(2.48772,-3.27046)--
> (2.48649,-3.2734)--(2.48527,-3.27635)--(2.48404,-3.2793)--(2.48282,-3.28225)--(2.48159,-3.28521)--(2.48037,-3.28817)--(2.47915,-3.29113)--(2.47793,-3.29409)--(2.47671,-3.29705)--(2.47549,-3.30002)--(2.47427,-3.30299)--(2.47305,-3.30596)--(2.47184,-3.30893)--(2.47062,-3.31191)--(2.4694,-3.31489)--(2.46819,-3.31787)--(2.46698,-3.32085)--(2.46576,-3.32384)--(2.46455,-3.32682)--(2.46334,-3.32981)--(2.46213,-3.33281)--(2.46092,-3.3358)--(2.45971,-3.3388)--(2.4585,-3.3418)--(2.45729,-3.3448)--
> (2.45609,-3.34781)--(2.45488,-3.35081)--(2.45367,-3.35382)--(2.45247,-3.35683)--(2.45127,-3.35985)--(2.45006,-3.36286)--(2.44886,-3.36588)--(2.44766,-3.3689)--(2.44646,-3.37193)--(2.44526,-3.37495)--(2.44406,-3.37798)--(2.44287,-3.38101)--(2.44167,-3.38404)--(2.44048,-3.38708)--(2.43928,-3.39012)--(2.43809,-3.39316)--(2.43689,-3.3962)--(2.4357,-3.39924)--(2.43451,-3.40229)--(2.43332,-3.40534)--(2.43213,-3.40839)--(2.43094,-3.41144)--(2.42976,-3.4145)--(2.42857,-3.41756)--(2.42738,-3.42062)--
> (2.4262,-3.42368)--(6.08607,-1.2168);
> draw(curve, rgb(0,0,255)+solid );
> pair point = (3.76952,3.19697);
> dot(point, rgb(0,0,255));
> pair point = (6.08607,-1.2168);
> dot(point, rgb(0,0,255));
> pair point = (2.4262,-3.42368);
> dot(point, rgb(0,0,255));
> pair point = (-1.69971,2.92283);
> dot(point, rgb(0,0,255));
> path curve = (0.438635,4.06054)--(0.436557,4.06015)--(0.434481,4.05977)--(0.432407,4.05938)--(0.430334,4.059)--(0.428264,4.05861)--(0.426195,4.05823)--(0.424128,4.05785)--(0.422063,4.05746)--(0.42,4.05708)--(0.417938,4.0567)--(0.415879,4.05632)--(0.413821,4.05594)--(0.411765,4.05556)--(0.409711,4.05518)--(0.407659,4.0548)--(0.405608,4.05442)--(0.403559,4.05404)--(0.401513,4.05367)--(0.399468,4.05329)--(0.397424,4.05291)--(0.395383,4.05254)--(0.393343,4.05216)--(0.391305,4.05179)--
> (0.389269,4.05141)--(0.387235,4.05104)--(0.385202,4.05067)--(0.383171,4.05029)--(0.381142,4.04992)--(0.379115,4.04955)--(0.377089,4.04918)--(0.375065,4.04881)--(0.373043,4.04844)--(0.371023,4.04807)--(0.369004,4.0477)--(0.366987,4.04733)--(0.364972,4.04696)--(0.362959,4.0466)--(0.360947,4.04623)--(0.358937,4.04586)--(0.356929,4.0455)--(0.354923,4.04513)--(0.352918,4.04477)--(0.350915,4.0444)--(0.348913,4.04404)--(0.346914,4.04367)--(0.344916,4.04331)--(0.34292,4.04295)--(0.340925,4.04259)--
> (0.338932,4.04223)--(0.336941,4.04187)--(0.334951,4.04151)--(0.332964,4.04115)--(0.330977,4.04079)--(0.328993,4.04043)--(0.32701,4.04007)--(0.325029,4.03971)--(0.32305,4.03935)--(0.321072,4.039)--(0.319095,4.03864)--(0.317121,4.03828)--(0.315148,4.03793)--(0.313177,4.03757)--(0.311207,4.03722)--(0.309239,4.03687)--(0.307273,4.03651)--(0.305308,4.03616)--(0.303345,4.03581)--(0.301384,4.03546)--(0.299424,4.0351)--(0.297466,4.03475)--(0.295509,4.0344)--(0.293554,4.03405)--(0.291601,4.0337)--
> (0.289649,4.03336)--(0.287699,4.03301)--(0.28575,4.03266)--(0.283803,4.03231)--(0.281858,4.03196)--(0.279914,4.03162)--(0.277972,4.03127)--(0.276031,4.03093)--(0.274092,4.03058)--(0.272155,4.03024)--(0.270219,4.02989)--(0.268285,4.02955)--(0.266352,4.02921)--(0.264421,4.02886)--(0.262491,4.02852)--(0.260563,4.02818)--(0.258636,4.02784)--(0.256711,4.0275)--(0.254788,4.02716)--(0.252866,4.02682)--(0.250946,4.02648)--(0.249027,4.02614)--(0.24711,4.0258)--(0.245194,4.02546)--(0.24328,4.02512)--
> (0.241367,4.02479)--(0.239456,4.02445)--(0.237546,4.02411)--(0.235638,4.02378)--(0.233731,4.02344)--(0.231826,4.02311)--(0.229923,4.02277)--(0.228021,4.02244)--(0.22612,4.02211)--(0.224221,4.02177)--(0.222323,4.02144)--(0.220427,4.02111)--(0.218532,4.02078)--(0.216639,4.02045)--(0.214748,4.02011)--(0.212857,4.01978)--(0.210969,4.01945)--(0.209082,4.01913)--(0.207196,4.0188)--(0.205311,4.01847)--(0.203429,4.01814)--(0.201547,4.01781)--(0.199667,4.01749)--(0.197789,4.01716)--(0.195912,4.01683)--
> (0.194036,4.01651)--(0.192162,4.01618)--(0.19029,4.01586)--(0.188418,4.01553)--(0.186549,4.01521)--(0.18468,4.01488)--(0.182813,4.01456)--(0.180948,4.01424)--(0.179084,4.01392)--(0.177221,4.0136)--(0.17536,4.01327)--(0.1735,4.01295)--(0.171642,4.01263)--(0.169785,4.01231)--(0.167929,4.01199)--(0.166075,4.01167)--(0.164222,4.01136)--(0.162371,4.01104)--(0.160521,4.01072)--(0.158672,4.0104)--(0.156825,4.01008)--(0.154979,4.00977)--(0.153135,4.00945)--(0.151292,4.00914)--(0.14945,4.00882)--
> (0.14761,4.00851)--(0.145771,4.00819)--(0.143934,4.00788)--(0.142098,4.00756)--(0.140263,4.00725)--(0.138429,4.00694)--(0.136597,4.00663)--(0.134767,4.00631)--(0.132937,4.006)--(0.131109,4.00569)--(0.129283,4.00538)--(0.127458,4.00507)--(0.125634,4.00476)--(0.123811,4.00445)--(0.12199,4.00414)--(0.12017,4.00383)--(0.118351,4.00353)--(0.116534,4.00322)--(0.114718,4.00291)--(0.112904,4.0026)--(0.11109,4.0023)--(0.109278,4.00199)--(0.107468,4.00169)--(0.105659,4.00138)--(0.103851,4.00108)--
> (0.102044,4.00077)--(0.100239,4.00047)--(0.0984345,4.00016)--(0.0966317,3.99986)--(0.0948302,3.99956)--(0.0930301,3.99926)--(0.0912312,3.99895)--(0.0894336,3.99865)--(0.0876373,3.99835)--(0.0858424,3.99805)--(0.0840486,3.99775)--(0.0822562,3.99745)--(0.0804651,3.99715)--(0.0786752,3.99685)--(0.0768866,3.99655)--(0.0750993,3.99626)--(0.0733132,3.99596)--(0.0715284,3.99566)--(0.0697449,3.99536)--(0.0679626,3.99507)--(0.0661816,3.99477)--(0.0644018,3.99448)--(0.0626234,3.99418)--(0.0608461,3.99388)--
> (0.0590701,3.99359)--(0.0572954,3.9933)--(0.0555219,3.993)--(0.0537496,3.99271)--(0.0519786,3.99242)--(0.0502088,3.99212)--(0.0484402,3.99183)--(0.0466729,3.99154)--(0.0449068,3.99125)--(0.0431419,3.99096)--(0.0413783,3.99067)--(0.0396159,3.99037)--(0.0378547,3.99008)--(0.0360947,3.9898)--(0.0343359,3.98951)--(0.0325783,3.98922)--(0.030822,3.98893)--(0.0290669,3.98864)--(0.0273129,3.98835)--(0.0255602,3.98807)--(0.0238086,3.98778)--(0.0220583,3.98749)--(0.0203092,3.98721)--(0.0185612,3.98692)--
> (0.0168145,3.98664)--(0.0150689,3.98635)--(0.0133245,3.98607)--(0.0115813,3.98578)--(0.00983926,3.9855)--(0.00809842,3.98522)--(0.00635875,3.98493)--(0.00462025,3.98465)--(0.00288293,3.98437)--(0.00114677,3.98409)--(-0.000588217,3.9838)--(-0.00232204,3.98352)--(-0.00405471,3.98324)--(-0.00578621,3.98296)--(-0.00751656,3.98268)--(-0.00924575,3.9824)--(-0.0109738,3.98212)--(-0.0127007,3.98184)--(-0.0144264,3.98157)--(-0.016151,3.98129)--(-0.0178745,3.98101)--(-0.0195968,3.98073)--
> (-0.0213179,3.98046)--(-0.023038,3.98018)--(-0.0247569,3.9799)--(-0.0264746,3.97963)--(-0.0281913,3.97935)--(-0.0299068,3.97908)--(-0.0316212,3.9788)--(-0.0333345,3.97853)--(-0.0350466,3.97825)--(-0.0367576,3.97798)--(-0.0384675,3.97771)--(-0.0401763,3.97743)--(-0.041884,3.97716)--(-0.0435906,3.97689)--(-0.0452961,3.97662)--(-0.0470004,3.97634)--(-0.0487037,3.97607)--(-0.0504058,3.9758)--(-0.0521069,3.97553)--(-0.0538069,3.97526)--(-0.0555057,3.97499)--(-0.0572035,3.97472)--(-0.0589002,3.97445)--
> (-0.0605958,3.97419)--(-0.0622903,3.97392)--(-0.0639838,3.97365)--(-0.0656761,3.97338)--(-0.0673674,3.97311)--(-0.0690576,3.97285)--(-0.0707467,3.97258)--(-0.0724348,3.97231)--(-0.0741217,3.97205)--(-0.0758077,3.97178)--(-0.0774925,3.97152)--(-0.0791763,3.97125)--(-0.080859,3.97099)--(-0.0825407,3.97073)--(-0.0842213,3.97046)--(-0.0859008,3.9702)--(-0.0875793,3.96994)--(-0.0892568,3.96967)--(-0.0909332,3.96941)--(-0.0926086,3.96915)--(-0.0942829,3.96889)--(-0.0959561,3.96863)--
> (-0.0976284,3.96836)--(-0.0992996,3.9681)--(-0.10097,3.96784)--(-0.102639,3.96758)--(-0.104307,3.96732)--(-0.105974,3.96707)--(-0.10764,3.96681)--(-0.109305,3.96655)--(-0.110969,3.96629)--(-0.112632,3.96603)--(-0.114294,3.96578)--(-0.115955,3.96552)--(-0.117615,3.96526)--(-0.119274,3.965)--(-0.120932,3.96475)--(-0.122588,3.96449)--(-0.124244,3.96424)--(-0.125899,3.96398)--(-0.127553,3.96373)--(-0.129206,3.96347)--(-0.130858,3.96322)--(-0.132509,3.96297)--(-0.134158,3.96271)--(-0.135807,3.96246)--
> (-0.137455,3.96221)--(-0.139102,3.96195)--(-0.140748,3.9617)--(-0.142393,3.96145)--(-0.144037,3.9612)--(-0.14568,3.96095)--(-0.147322,3.9607)--(-0.148963,3.96045)--(-0.150603,3.9602)--(-0.152242,3.95995)--(-0.15388,3.9597)--(-0.155517,3.95945)--(-0.157153,3.9592)--(-0.158788,3.95895)--(-0.160423,3.9587)--(-0.162056,3.95846)--(-0.163688,3.95821)--(-0.16532,3.95796)--(-0.16695,3.95772)--(-0.168579,3.95747)--(-0.170208,3.95722)--(-0.171835,3.95698)--(-0.173462,3.95673)--(-0.175088,3.95649)--
> (-0.176712,3.95624)--(-0.178336,3.956)--(-0.179959,3.95575)--(-0.181581,3.95551)--(-0.183202,3.95527)--(-0.184822,3.95502)--(-0.186441,3.95478)--(-0.188059,3.95454)--(-0.189676,3.9543)--(-0.191293,3.95405)--(-0.192908,3.95381)--(-0.194522,3.95357)--(-0.196136,3.95333)--(-0.197749,3.95309)--(-0.19936,3.95285)--(-0.200971,3.95261)--(-0.202581,3.95237)--(-0.20419,3.95213)--(-0.205798,3.95189)--(-0.207405,3.95165)--(-0.209011,3.95142)--(-0.210617,3.95118)--(-0.212221,3.95094)--(-0.213825,3.9507)--
> (-0.215427,3.95047)--(-0.217029,3.95023)--(-0.21863,3.94999)--(-0.22023,3.94976)--(-0.221829,3.94952)--(-0.223427,3.94928)--(-0.225024,3.94905)--(-0.22662,3.94881)--(-0.228216,3.94858)--(-0.229811,3.94835)--(-0.231404,3.94811)--(-0.232997,3.94788)--(-0.234589,3.94765)--(-0.23618,3.94741)--(-0.237771,3.94718)--(-0.23936,3.94695)--(-0.240948,3.94672)--(-0.242536,3.94648)--(-0.244123,3.94625)--(-0.245709,3.94602)--(-0.247294,3.94579)--(-0.248878,3.94556)--(-0.250461,3.94533)--(-0.252044,3.9451)--
> (-0.253625,3.94487)--(-0.255206,3.94464)--(-0.256786,3.94441)--(-0.258365,3.94418)--(-0.259943,3.94395)--(-0.261521,3.94373)--(-0.263097,3.9435)--(-0.264673,3.94327)--(-0.266248,3.94304)--(-0.267822,3.94282)--(-0.269395,3.94259)--(-0.270967,3.94236)--(-0.272539,3.94214)--(-0.274109,3.94191)--(-0.275679,3.94169)--(-0.277248,3.94146)--(-0.278816,3.94124)--(-0.280383,3.94101)--(-0.28195,3.94079)--(-0.283516,3.94056)--(-0.285081,3.94034)--(-0.286645,3.94012)--(-0.288208,3.93989)--(-0.28977,3.93967)--
> (-0.291332,3.93945)--(-0.292893,3.93923)--(-0.294453,3.93901)--(-0.296012,3.93878)--(-0.29757,3.93856)--(-0.299128,3.93834)--(-0.300685,3.93812)--(-0.302241,3.9379)--(-0.303796,3.93768)--(-0.30535,3.93746)--(-0.306904,3.93724)--(-0.308456,3.93702)--(-0.310008,3.9368)--(-0.31156,3.93659)--(-0.31311,3.93637)--(-0.31466,3.93615)--(-0.316208,3.93593)--(-0.317756,3.93571)--(-0.319304,3.9355)--(-0.32085,3.93528)--(-0.322396,3.93506)--(-0.323941,3.93485)--(-0.325485,3.93463)--(-0.327028,3.93442)--
> (-0.328571,3.9342)--(-0.330113,3.93398)--(-0.331654,3.93377)--(-0.333194,3.93356)--(-0.334733,3.93334)--(-0.336272,3.93313)--(-0.33781,3.93291)--(-0.339347,3.9327)--(-0.340884,3.93249)--(-0.34242,3.93227)--(-0.343955,3.93206)--(-0.345489,3.93185)--(-0.347022,3.93164)--(-0.348555,3.93143)--(-0.350087,3.93121)--(-0.351618,3.931)--(-0.353148,3.93079)--(-0.354678,3.93058)--(-0.356207,3.93037)--(-0.357735,3.93016)--(-0.359263,3.92995)--(-0.360789,3.92974)--(-0.362315,3.92953)--(-0.363841,3.92932)--
> (-0.365365,3.92912)--(-0.366889,3.92891)--(-0.368412,3.9287)--(-0.369934,3.92849)--(-0.371456,3.92828)--(-0.372977,3.92808)--(-0.374497,3.92787)--(-0.376016,3.92766)--(-0.377535,3.92746)--(-0.379053,3.92725)--(-0.38057,3.92705)--(-0.382087,3.92684)--(-0.383602,3.92663)--(-0.385118,3.92643)--(-0.386632,3.92622)--(-0.388146,3.92602)--(-0.389659,3.92582)--(-0.391171,3.92561)--(-0.392682,3.92541)--(-0.394193,3.92521)--(-0.395703,3.925)--(-0.397213,3.9248)--(-0.398722,3.9246)--(-0.40023,3.92439)--
> (-0.401737,3.92419)--(-0.403244,3.92399)--(-0.404749,3.92379)--(-0.406255,3.92359)--(-0.407759,3.92339)--(-0.409263,3.92319)--(-0.410766,3.92299)--(-0.412269,3.92279)--(-0.413771,3.92259)--(-0.415272,3.92239)--(-0.416772,3.92219)--(-0.418272,3.92199)--(-0.419771,3.92179)--(-0.421269,3.92159)--(-0.422767,3.92139)--(-0.424264,3.9212)--(-0.425761,3.921)--(-0.427256,3.9208)--(-0.428751,3.9206)--(-0.430246,3.92041)--(-0.431739,3.92021)--(-0.433232,3.92001)--(-0.434725,3.91982)--(-0.436216,3.91962)--
> (-0.437707,3.91943)--(-0.439198,3.91923)--(-0.440688,3.91904)--(-0.442177,3.91884)--(-0.443665,3.91865)--(-0.445153,3.91845)--(-0.44664,3.91826)--(-0.448126,3.91806)--(-0.449612,3.91787)--(-0.451097,3.91768)--(-0.452582,3.91748)--(-0.454066,3.91729)--(-0.455549,3.9171)--(-0.457031,3.91691)--(-0.458513,3.91672)--(-0.459994,3.91652)--(-0.461475,3.91633)--(-0.462955,3.91614)--(-0.464434,3.91595)--(-0.465913,3.91576)--(-0.467391,3.91557)--(-0.468869,3.91538)--(-0.470346,3.91519)--(-0.471822,3.915)--
> (-0.473297,3.91481)--(-0.474772,3.91462)--(-0.476247,3.91443)--(-0.47772,3.91424)--(-0.479193,3.91406)--(-0.480666,3.91387)--(-0.482138,3.91368)--(-0.483609,3.91349)--(-0.48508,3.91331)--(-0.48655,3.91312)--(-0.488019,3.91293)--(-0.489488,3.91275)--(-0.490956,3.91256)--(-0.492423,3.91237)--(-0.49389,3.91219)--(-0.495357,3.912)--(-0.496822,3.91182)--(-0.498287,3.91163)--(-0.499752,3.91145)--(-0.501216,3.91126)--(-0.502679,3.91108)--(-0.504142,3.91089)--(-0.505604,3.91071)--(-0.507066,3.91053)--
> (-0.508526,3.91034)--(-0.509987,3.91016)--(-0.511447,3.90998)--(-0.512906,3.9098)--(-0.514364,3.90961)--(-0.515822,3.90943)--(-0.51728,3.90925)--(-0.518736,3.90907)--(-0.520193,3.90889)--(-0.521648,3.90871)--(-0.523103,3.90852)--(-0.524558,3.90834)--(-0.526012,3.90816)--(-0.527465,3.90798)--(-0.528918,3.9078)--(-0.53037,3.90762)--(-0.531822,3.90745)--(-0.533273,3.90727)--(-0.534723,3.90709)--(-0.536173,3.90691)--(-0.537622,3.90673)--(-0.539071,3.90655)--(-0.540519,3.90638)--(-0.541967,3.9062)--
> (-0.543414,3.90602)--(-0.544861,3.90584)--(-0.546306,3.90567)--(-0.547752,3.90549)--(-0.549197,3.90531)--(-0.550641,3.90514)--(-0.552085,3.90496)--(-0.553528,3.90479)--(-0.55497,3.90461)--(-0.556413,3.90444)--(-0.557854,3.90426)--(-0.559295,3.90409)--(-0.560735,3.90391)--(-0.562175,3.90374)--(-0.563615,3.90356)--(-0.565053,3.90339)--(-0.566492,3.90322)--(-0.567929,3.90304)--(-0.569367,3.90287)--(-0.570803,3.9027)--(-0.572239,3.90253)--(-0.573675,3.90235)--(-0.57511,3.90218)--(-0.576544,3.90201)--
> (-0.577978,3.90184)--(-0.579412,3.90167)--(-0.580845,3.9015)--(-0.582277,3.90132)--(-0.583709,3.90115)--(-0.58514,3.90098)--(-0.586571,3.90081)--(-0.588001,3.90064)--(-0.589431,3.90047)--(-0.590861,3.9003)--(-0.592289,3.90014)--(-0.593717,3.89997)--(-0.595145,3.8998)--(-0.596572,3.89963)--(-0.597999,3.89946)--(-0.599425,3.89929)--(-0.600851,3.89913)--(-0.602276,3.89896)--(-0.603701,3.89879)--(-0.605125,3.89862)--(-0.606548,3.89846)--(-0.607971,3.89829)--(-0.609394,3.89812)--(-0.610816,3.89796)--
> (-0.612238,3.89779)--(-0.613659,3.89763)--(-0.61508,3.89746)--(-0.6165,3.8973)--(-0.617919,3.89713)--(-0.619338,3.89697)--(-0.620757,3.8968)--(-0.622175,3.89664)--(-0.623593,3.89647)--(-0.62501,3.89631)--(-0.626427,3.89615)--(-0.627843,3.89598)--(-0.629259,3.89582)--(-0.630674,3.89566)--(-0.632088,3.89549)--(-0.633503,3.89533)--(-0.634917,3.89517)--(-0.63633,3.89501)--(-0.637743,3.89485)--(-0.639155,3.89468)--(-0.640567,3.89452)--(-0.641978,3.89436)--(-0.643389,3.8942)--(-0.6448,3.89404)--
> (-0.64621,3.89388)--(-0.647619,3.89372)--(-0.649028,3.89356)--(-0.650437,3.8934)--(-0.651845,3.89324)--(-0.653252,3.89308)--(-0.654659,3.89292)--(-0.656066,3.89276)--(-0.657472,3.89261)--(-0.658878,3.89245)--(-0.660284,3.89229)--(-0.661688,3.89213)--(-0.663093,3.89197)--(-0.664497,3.89182)--(-0.6659,3.89166)--(-0.667303,3.8915)--(-0.668706,3.89135)--(-0.670108,3.89119)--(-0.67151,3.89103)--(-0.672911,3.89088)--(-0.674312,3.89072)--(-0.675712,3.89056)--(-0.677112,3.89041)--(-0.678511,3.89025)--
> (-0.67991,3.8901)--(-0.681309,3.88994)--(-0.682707,3.88979)--(-0.684105,3.88964)--(-0.685502,3.88948)--(-0.686899,3.88933)--(-0.688295,3.88917)--(-0.689691,3.88902)--(-0.691087,3.88887)--(-0.692482,3.88871)--(-0.693877,3.88856)--(-0.695271,3.88841)--(-0.696665,3.88826)--(-0.698058,3.8881)--(-0.699451,3.88795)--(-0.700843,3.8878)--(-0.702236,3.88765)--(-0.703627,3.8875)--(-0.705018,3.88735)--(-0.706409,3.8872)--(-0.7078,3.88705)--(-0.70919,3.8869)--(-0.710579,3.88675)--(-0.711968,3.8866)--
> (-0.713357,3.88645)--(-0.714746,3.8863)--(-0.716133,3.88615)--(-0.717521,3.886)--(-0.718908,3.88585)--(-0.720295,3.8857)--(-0.721681,3.88555)--(-0.723067,3.8854)--(-0.724452,3.88526)--(-0.725837,3.88511)--(-0.727222,3.88496)--(-0.728606,3.88481)--(-0.72999,3.88467)--(-0.731374,3.88452)--(-0.732757,3.88437)--(-0.734139,3.88423)--(-0.735522,3.88408)--(-0.736904,3.88393)--(-0.738285,3.88379)--(-0.739666,3.88364)--(-0.741047,3.8835)--(-0.742427,3.88335)--(-0.743807,3.88321)--(-0.745187,3.88306)--
> (-0.746566,3.88292)--(-0.747944,3.88277)--(-0.749323,3.88263)--(-0.750701,3.88248)--(-0.752078,3.88234)--(-0.753456,3.8822)--(-0.754832,3.88205)--(-0.756209,3.88191)--(-0.757585,3.88177)--(-0.758961,3.88163)--(-0.760336,3.88148)--(-0.761711,3.88134)--(-0.763086,3.8812)--(-0.76446,3.88106)--(-0.765834,3.88092)--(-0.767207,3.88077)--(-0.76858,3.88063)--(-0.769953,3.88049)--(-0.771325,3.88035)--(-0.772697,3.88021)--(-0.774069,3.88007)--(-0.77544,3.87993)--(-0.776811,3.87979)--(-0.778181,3.87965)--
> (-0.779552,3.87951)--(-0.780921,3.87937)--(-0.782291,3.87923)--(-0.78366,3.87909)--(-0.785029,3.87895)--(-0.786397,3.87882)--(-0.787765,3.87868)--(-0.789133,3.87854)--(-0.7905,3.8784)--(-0.791867,3.87826)--(-0.793234,3.87813)--(-0.7946,3.87799)--(-0.795966,3.87785)--(-0.797331,3.87772)--(-0.798697,3.87758)--(-0.800061,3.87744)--(-0.801426,3.87731)--(-0.80279,3.87717)--(-0.804154,3.87703)--(-0.805518,3.8769)--(-0.806881,3.87676)--(-0.808244,3.87663)--(-0.809606,3.87649)--(-0.810968,3.87636)--
> (-0.81233,3.87622)--(-0.813692,3.87609)--(-0.815053,3.87596)--(-0.816414,3.87582)--(-0.817774,3.87569)--(-0.819134,3.87555)--(-0.820494,3.87542)--(-0.821854,3.87529)--(-0.823213,3.87515)--(-0.824572,3.87502)--(-0.82593,3.87489)--(-0.827288,3.87476)--(-0.828646,3.87463)--(-0.830004,3.87449)--(-0.831361,3.87436)--(-0.832718,3.87423)--(-0.834075,3.8741)--(-0.835431,3.87397)--(-0.836787,3.87384)--(-0.838142,3.87371)--(-0.839498,3.87358)--(-0.840853,3.87344)--(-0.842208,3.87331)--(-0.843562,3.87318)--
> (-0.844916,3.87306)--(-0.84627,3.87293)--(-0.847623,3.8728)--(-0.848977,3.87267)--(-0.850329,3.87254)--(-0.851682,3.87241)--(-0.853034,3.87228)--(-0.854386,3.87215)--(-0.855738,3.87202)--(-0.857089,3.8719)--(-0.85844,3.87177)--(-0.859791,3.87164)--(-0.861141,3.87151)--(-0.862492,3.87139)--(-0.863841,3.87126)--(-0.865191,3.87113)--(-0.86654,3.87101)--(-0.867889,3.87088)--(-0.869238,3.87075)--(-0.870586,3.87063)--(-0.871935,3.8705)--(-0.873282,3.87038)--(-0.87463,3.87025)--(-0.875977,3.87013)--
> (-0.877324,3.87)--(-0.878671,3.86988)--(-0.880017,3.86975)--(-0.881363,3.86963)--(-0.882709,3.8695)--(-0.884055,3.86938)--(-0.8854,3.86926)--(-0.886745,3.86913)--(-0.88809,3.86901)--(-0.889434,3.86889)--(-0.890778,3.86876)--(-0.892122,3.86864)--(-0.893466,3.86852)--(-0.894809,3.86839)--(-0.896152,3.86827)--(-0.897495,3.86815)--(-0.898838,3.86803)--(-0.90018,3.86791)--(-0.901522,3.86779)--(-0.902864,3.86766)--(-0.904205,3.86754)--(-0.905547,3.86742)--(-0.906888,3.8673)--(-0.908228,3.86718)--
> (-0.909569,3.86706)--(-0.910909,3.86694)--(-0.912249,3.86682)--(-0.913588,3.8667)--(-0.914928,3.86658)--(-0.916267,3.86646)--(-0.917606,3.86634)--(-0.918944,3.86622)--(-0.920283,3.86611)--(-0.921621,3.86599)--(-0.922959,3.86587)--(-0.924297,3.86575)--(-0.925634,3.86563)--(-0.926971,3.86551)--(-0.928308,3.8654)--(-0.929645,3.86528)--(-0.930981,3.86516)--(-0.932317,3.86505)--(-0.933653,3.86493)--(-0.934989,3.86481)--(-0.936324,3.8647)--(-0.937659,3.86458)--(-0.938994,3.86446)--(-0.940329,3.86435)--
> (-0.941664,3.86423)--(-0.942998,3.86412)--(-0.944332,3.864)--(-0.945666,3.86389)--(-0.946999,3.86377)--(-0.948332,3.86366)--(-0.949666,3.86354)--(-0.950998,3.86343)--(-0.952331,3.86331)--(-0.953663,3.8632)--(-0.954996,3.86309)--(-0.956327,3.86297)--(-0.957659,3.86286)--(-0.958991,3.86275)--(-0.960322,3.86263)--(-0.961653,3.86252)--(-0.962984,3.86241)--(-0.964314,3.86229)--(-0.965645,3.86218)--(-0.966975,3.86207)--(-0.968305,3.86196)--(-0.969635,3.86185)--(-0.970964,3.86173)--(-0.972294,3.86162)--
> (-0.973623,3.86151)--(-0.974951,3.8614)--(-0.97628,3.86129)--(-0.977609,3.86118)--(-0.978937,3.86107)--(-0.980265,3.86096)--(-0.981593,3.86085)--(-0.98292,3.86074)--(-0.984248,3.86063)--(-0.985575,3.86052)--(-0.986902,3.86041)--(-0.988229,3.8603)--(-0.989555,3.86019)--(-0.990882,3.86008)--(-0.992208,3.85998)--(-0.993534,3.85987)--(-0.99486,3.85976)--(-0.996186,3.85965)--(-0.997511,3.85954)--(-0.998836,3.85944)--(-1.00016,3.85933)--(-1.00149,3.85922)--(-1.00281,3.85911)--(-1.00414,3.85901)--
> (-1.00546,3.8589)--(-1.00678,3.85879)--(-1.00811,3.85869)--(-1.00943,3.85858)--(-1.01075,3.85848)--(-1.01208,3.85837)--(-1.0134,3.85826)--(-1.01472,3.85816)--(-1.01605,3.85805)--(-1.01737,3.85795)--(-1.01869,3.85784)--(-1.02001,3.85774)--(-1.02134,3.85763)--(-1.02266,3.85753)--(-1.02398,3.85743)--(-1.0253,3.85732)--(-1.02662,3.85722)--(-1.02794,3.85711)--(-1.02926,3.85701)--(-1.03059,3.85691)--(-1.03191,3.8568)--(-1.03323,3.8567)--(-1.03455,3.8566)--(-1.03587,3.8565)--(-1.03719,3.85639)--
> (-1.03851,3.85629)--(-1.03983,3.85619)--(-1.04115,3.85609)--(-1.04247,3.85599)--(-1.04378,3.85589)--(-1.0451,3.85578)--(-1.04642,3.85568)--(-1.04774,3.85558)--(-1.04906,3.85548)--(-1.05038,3.85538)--(-1.0517,3.85528)--(-1.05301,3.85518)--(-1.05433,3.85508)--(-1.05565,3.85498)--(-1.05697,3.85488)--(-1.05829,3.85478)--(-1.0596,3.85468)--(-1.06092,3.85458)--(-1.06224,3.85449)--(-1.06355,3.85439)--(-1.06487,3.85429)--(-1.06619,3.85419)--(-1.0675,3.85409)--(-1.06882,3.85399)--(-1.07014,3.8539)--
> (-1.07145,3.8538)--(-1.07277,3.8537)--(-1.07408,3.8536)--(-1.0754,3.85351)--(-1.07671,3.85341)--(-1.07803,3.85331)--(-1.07934,3.85322)--(-1.08066,3.85312)--(-1.08197,3.85302)--(-1.08329,3.85293)--(-1.0846,3.85283)--(-1.08592,3.85274)--(-1.08723,3.85264)--(-1.08855,3.85255)--(-1.08986,3.85245)--(-1.09117,3.85236)--(-1.09249,3.85226)--(-1.0938,3.85217)--(-1.09512,3.85207)--(-1.09643,3.85198)--(-1.09774,3.85188)--(-1.09906,3.85179)--(-1.10037,3.8517)--(-1.10168,3.8516)--(-1.10299,3.85151)--
> (-1.10431,3.85142)--(-1.10562,3.85132)--(-1.10693,3.85123)--(-1.10824,3.85114)--(-1.10956,3.85104)--(-1.11087,3.85095)--(-1.11218,3.85086)--(-1.11349,3.85077)--(-1.11481,3.85068)--(-1.11612,3.85059)--(-1.11743,3.85049)--(-1.11874,3.8504)--(-1.12005,3.85031)--(-1.12136,3.85022)--(-1.12267,3.85013)--(-1.12398,3.85004)--(-1.1253,3.84995)--(-1.12661,3.84986)--(-1.12792,3.84977)--(-1.12923,3.84968)--(-1.13054,3.84959)--(-1.13185,3.8495)--(-1.13316,3.84941)--(-1.13447,3.84932)--(-1.13578,3.84923)--
> (-1.13709,3.84914)--(-1.1384,3.84906)--(-1.13971,3.84897)--(-1.14102,3.84888)--(-1.14233,3.84879)--(-1.14364,3.8487)--(-1.14495,3.84861)--(-1.14626,3.84853)--(-1.14757,3.84844)--(-1.14888,3.84835)--(-1.15018,3.84827)--(-1.15149,3.84818)--(-1.1528,3.84809)--(-1.15411,3.84801)--(-1.15542,3.84792)--(-1.15673,3.84783)--(-1.15804,3.84775)--(-1.15935,3.84766)--(-1.16065,3.84758)--(-1.16196,3.84749)--(-1.16327,3.8474)--(-1.16458,3.84732)--(-1.16589,3.84723)--(-1.1672,3.84715)--(-1.1685,3.84707)--
> (-1.16981,3.84698)--(-1.17112,3.8469)--(-1.17243,3.84681)--(-1.17374,3.84673)--(-1.17504,3.84664)--(-1.17635,3.84656)--(-1.17766,3.84648)--(-1.17897,3.84639)--(-1.18027,3.84631)--(-1.18158,3.84623)--(-1.18289,3.84615)--(-1.18419,3.84606)--(-1.1855,3.84598)--(-1.18681,3.8459)--(-1.18812,3.84582)--(-1.18942,3.84574)--(-1.19073,3.84565)--(-1.19204,3.84557)--(-1.19334,3.84549)--(-1.19465,3.84541)--(-1.19596,3.84533)--(-1.19726,3.84525)--(-1.19857,3.84517)--(-1.19988,3.84509)--(-1.20118,3.84501)--
> (-1.20249,3.84493)--(-1.2038,3.84485)--(-1.2051,3.84477)--(-1.20641,3.84469)--(-1.20771,3.84461)--(-1.20902,3.84453)--(-1.21033,3.84445)--(-1.21163,3.84437)--(-1.21294,3.84429)--(-1.21424,3.84421)--(-1.21555,3.84413)--(-1.21686,3.84406)--(-1.21816,3.84398)--(-1.21947,3.8439)--(-1.22077,3.84382)--(-1.22208,3.84374)--(-1.22339,3.84367)--(-1.22469,3.84359)--(-1.226,3.84351)--(-1.2273,3.84344)--(-1.22861,3.84336)--(-1.22991,3.84328)--(-1.23122,3.84321)--(-1.23252,3.84313)--(-1.23383,3.84305)--
> (-1.23513,3.84298)--(-1.23644,3.8429)--(-1.23775,3.84283)--(-1.23905,3.84275)--(-1.24036,3.84268)--(-1.24166,3.8426)--(-1.24297,3.84253)--(-1.24427,3.84245)--(-1.24558,3.84238)--(-1.24688,3.8423)--(-1.24819,3.84223)--(-1.24949,3.84215)--(-1.2508,3.84208)--(-1.2521,3.84201)--(-1.25341,3.84193)--(-1.25471,3.84186)--(-1.25602,3.84179)--(-1.25732,3.84171)--(-1.25863,3.84164)--(-1.25993,3.84157)--(-1.26124,3.8415)--(-1.26254,3.84142)--(-1.26385,3.84135)--(-1.26515,3.84128)--(-1.26646,3.84121)--
> (-1.26776,3.84114)--(-1.26907,3.84106)--(-1.27037,3.84099)--(-1.27168,3.84092)--(-1.27298,3.84085)--(-1.27429,3.84078)--(-1.27559,3.84071)--(-1.2769,3.84064)--(-1.2782,3.84057)--(-1.27951,3.8405)--(-1.28081,3.84043)--(-1.28212,3.84036)--(-1.28342,3.84029)--(-1.28473,3.84022)--(-1.28603,3.84015)--(-1.28734,3.84008)--(-1.28864,3.84001)--(-1.28995,3.83994)--(-1.29126,3.83988)--(-1.29256,3.83981)--(-1.29387,3.83974)--(-1.29517,3.83967)--(-1.29648,3.8396)--(-1.29778,3.83953)--(-1.29909,3.83947)--
> (-1.30039,3.8394)--(-1.3017,3.83933)--(-1.303,3.83926)--(-1.30431,3.8392)--(-1.30561,3.83913)--(-1.30692,3.83906)--(-1.30822,3.839)--(-1.30953,3.83893)--(-1.31083,3.83887)--(-1.31214,3.8388)--(-1.31344,3.83873)--(-1.31475,3.83867)--(-1.31606,3.8386)--(-1.31736,3.83854)--(-1.31867,3.83847)--(-1.31997,3.83841)--(-1.32128,3.83834)--(-1.32258,3.83828)--(-1.32389,3.83821)--(-1.32519,3.83815)--(-1.3265,3.83808)--(-1.32781,3.83802)--(-1.32911,3.83796)--(-1.33042,3.83789)--(-1.33172,3.83783)--
> (-1.33303,3.83777)--(-1.33434,3.8377)--(-1.33564,3.83764)--(-1.33695,3.83758)--(-1.33825,3.83752)--(-1.33956,3.83745)--(-1.34087,3.83739)--(-1.34217,3.83733)--(-1.34348,3.83727)--(-1.34478,3.8372)--(-1.34609,3.83714)--(-1.3474,3.83708)--(-1.3487,3.83702)--(-1.35001,3.83696)--(-1.35132,3.8369)--(-1.35262,3.83684)--(-1.35393,3.83678)--(-1.35524,3.83672)--(-1.35654,3.83666)--(-1.35785,3.8366)--(-1.35916,3.83654)--(-1.36047,3.83648)--(-1.36177,3.83642)--(-1.36308,3.83636)--(-1.36439,3.8363)--
> (-1.36569,3.83624)--(-1.367,3.83618)--(-1.36831,3.83612)--(-1.36962,3.83606)--(-1.37092,3.836)--(-1.37223,3.83594)--(-1.37354,3.83589)--(-1.37485,3.83583)--(-1.37615,3.83577)--(-1.37746,3.83571)--(-1.37877,3.83565)--(-1.38008,3.8356)--(-1.38139,3.83554)--(-1.38269,3.83548)--(-1.384,3.83543)--(-1.38531,3.83537)--(-1.38662,3.83531)--(-1.38793,3.83526)--(-1.38924,3.8352)--(-1.39054,3.83514)--(-1.39185,3.83509)--(-1.39316,3.83503)--(-1.39447,3.83498)--(-1.39578,3.83492)--(-1.39709,3.83487)--
> (-1.3984,3.83481)--(-1.39971,3.83476)--(-1.40102,3.8347)--(-1.40233,3.83465)--(-1.40363,3.83459)--(-1.40494,3.83454)--(-1.40625,3.83448)--(-1.40756,3.83443)--(-1.40887,3.83438)--(-1.41018,3.83432)--(-1.41149,3.83427)--(-1.4128,3.83422)--(-1.41411,3.83416)--(-1.41542,3.83411)--(-1.41673,3.83406)--(-1.41805,3.83401)--(-1.41936,3.83395)--(-1.42067,3.8339)--(-1.42198,3.83385)--(-1.42329,3.8338)--(-1.4246,3.83374)--(-1.42591,3.83369)--(-1.42722,3.83364)--(-1.42853,3.83359)--(-1.42984,3.83354)--
> (-1.43116,3.83349)--(-1.43247,3.83344)--(-1.43378,3.83339)--(-1.43509,3.83334)--(-1.4364,3.83329)--(-1.43772,3.83324)--(-1.43903,3.83319)--(-1.44034,3.83314)--(-1.44165,3.83309)--(-1.44296,3.83304)--(-1.44428,3.83299)--(-1.44559,3.83294)--(-1.4469,3.83289)--(-1.44822,3.83284)--(-1.44953,3.83279)--(-1.45084,3.83274)--(-1.45216,3.8327)--(-1.45347,3.83265)--(-1.45478,3.8326)--(-1.4561,3.83255)--(-1.45741,3.8325)--(-1.45873,3.83246)--(-1.46004,3.83241)--(-1.46135,3.83236)--(-1.46267,3.83231)--
> (-1.46398,3.83227)--(-1.4653,3.83222)--(-1.46661,3.83217)--(-1.46793,3.83213)--(-1.46924,3.83208)--(-1.47056,3.83204)--(-1.47187,3.83199)--(-1.47319,3.83194)--(-1.4745,3.8319)--(-1.47582,3.83185)--(-1.47714,3.83181)--(-1.47845,3.83176)--(-1.47977,3.83172)--(-1.48108,3.83167)--(-1.4824,3.83163)--(-1.48372,3.83158)--(-1.48503,3.83154)--(-1.48635,3.8315)--(-1.48767,3.83145)--(-1.48899,3.83141)--(-1.4903,3.83136)--(-1.49162,3.83132)--(-1.49294,3.83128)--(-1.49426,3.83123)--(-1.49557,3.83119)--
> (-1.49689,3.83115)--(-1.49821,3.83111)--(-1.49953,3.83106)--(-1.50085,3.83102)--(-1.50217,3.83098)--(-1.50349,3.83094)--(-1.50481,3.8309)--(-1.50612,3.83085)--(-1.50744,3.83081)--(-1.50876,3.83077)--(-1.51008,3.83073)--(-1.5114,3.83069)--(-1.51272,3.83065)--(-1.51404,3.83061)--(-1.51536,3.83057)--(-1.51668,3.83053)--(-1.51801,3.83049)--(-1.51933,3.83045)--(-1.52065,3.83041)--(-1.52197,3.83037)--(-1.52329,3.83033)--(-1.52461,3.83029)--(-1.52593,3.83025)--(-1.52726,3.83021)--(-1.52858,3.83017)--
> (-1.5299,3.83013)--(-1.53122,3.83009)--(-1.53255,3.83005)--(-1.53387,3.83002)--(-1.53519,3.82998)--(-1.53651,3.82994)--(-1.53784,3.8299)--(-1.53916,3.82987)--(-1.54049,3.82983)--(-1.54181,3.82979)--(-1.54313,3.82975)--(-1.54446,3.82972)--(-1.54578,3.82968)--(-1.54711,3.82964)--(-1.54843,3.82961)--(-1.54976,3.82957)--(-1.55108,3.82953)--(-1.55241,3.8295)--(-1.55373,3.82946)--(-1.55506,3.82943)--(-1.55639,3.82939)--(-1.55771,3.82936)--(-1.55904,3.82932)--(-1.56037,3.82929)--(-1.56169,3.82925)--
> (-1.56302,3.82922)--(-1.56435,3.82918)--(-1.56568,3.82915)--(-1.567,3.82911)--(-1.56833,3.82908)--(-1.56966,3.82905)--(-1.57099,3.82901)--(-1.57232,3.82898)--(-1.57365,3.82895)--(-1.57497,3.82891)--(-1.5763,3.82888)--(-1.57763,3.82885)--(-1.57896,3.82881)--(-1.58029,3.82878)--(-1.58162,3.82875)--(-1.58295,3.82872)--(-1.58428,3.82868)--(-1.58561,3.82865)--(-1.58694,3.82862)--(-1.58828,3.82859)--(-1.58961,3.82856)--(-1.59094,3.82853)--(-1.59227,3.8285)--(-1.5936,3.82847)--(-1.59494,3.82843)--
> (-1.59627,3.8284)--(-1.5976,3.82837)--(-1.59893,3.82834)--(-1.60027,3.82831)--(-1.6016,3.82828)--(-1.60293,3.82825)--(-1.60427,3.82822)--(-1.6056,3.82819)--(-1.60694,3.82817)--(-1.60827,3.82814)--(-1.60961,3.82811)--(-1.61094,3.82808)--(-1.61228,3.82805)--(-1.61361,3.82802)--(-1.61495,3.82799)--(-1.61628,3.82797)--(-1.61762,3.82794)--(-1.61896,3.82791)--(-1.62029,3.82788)--(-1.62163,3.82785)--(-1.62297,3.82783)--(-1.62431,3.8278)--(-1.62564,3.82777)--(-1.62698,3.82775)--(-1.62832,3.82772)--
> (-1.62966,3.82769)--(-1.631,3.82767)--(-1.63234,3.82764)--(-1.63368,3.82761)--(-1.63501,3.82759)--(-1.63635,3.82756)--(-1.63769,3.82754)--(-1.63903,3.82751)--(-1.64038,3.82749)--(-1.64172,3.82746)--(-1.64306,3.82744)--(-1.6444,3.82741)--(-1.64574,3.82739)--(-1.64708,3.82736)--(-1.64842,3.82734)--(-1.64977,3.82732)--(-1.65111,3.82729)--(-1.65245,3.82727)--(-1.6538,3.82725)--(-1.65514,3.82722)--(-1.65648,3.8272)--(-1.65783,3.82718)--(-1.65917,3.82715)--(-1.66052,3.82713)--(-1.66186,3.82711)--
> (-1.66321,3.82709)--(-1.66455,3.82706)--(-1.6659,3.82704)--(-1.66724,3.82702)--(-1.66859,3.827)--(-1.66994,3.82698)--(-1.67128,3.82695)--(-1.67263,3.82693)--(-1.67398,3.82691)--(-1.67533,3.82689)--(-1.67667,3.82687)--(-1.67802,3.82685)--(-1.67937,3.82683)--(-1.68072,3.82681)--(-1.68207,3.82679)--(-1.68342,3.82677)--(-1.68477,3.82675)--(-1.68612,3.82673)--(-1.68747,3.82671)--(-1.68882,3.82669)--(-1.69017,3.82667)--(-1.69152,3.82665)--(-1.69287,3.82664)--(-1.69422,3.82662)--(-1.69558,3.8266)--
> (-1.69693,3.82658)--(-1.69828,3.82656)--(-1.69963,3.82654)--(-1.70099,3.82653)--(-1.70234,3.82651)--(-1.70369,3.82649)--(-1.70505,3.82647)--(-1.7064,3.82646)--(-1.70776,3.82644)--(-1.70911,3.82642)--(-1.71047,3.82641)--(-1.71182,3.82639)--(-1.71318,3.82637)--(-1.71454,3.82636)--(-1.71589,3.82634)--(-1.71725,3.82633)--(-1.71861,3.82631)--(-1.71997,3.8263)--(-1.72132,3.82628)--(-1.72268,3.82626)--(-1.72404,3.82625)--(-1.7254,3.82624)--(-1.72676,3.82622)--(-1.72812,3.82621)--(-1.72948,3.82619)--
> (-1.73084,3.82618)--(-1.7322,3.82616)--(-1.73356,3.82615)--(-1.73492,3.82614)--(-1.73628,3.82612)--(-1.73765,3.82611)--(-1.73901,3.8261)--(-1.74037,3.82608)--(-1.74173,3.82607)--(-1.7431,3.82606)--(-1.74446,3.82605)--(-1.74582,3.82603)--(-1.74719,3.82602)--(-1.74855,3.82601)--(-1.74992,3.826)--(-1.75128,3.82599)--(-1.75265,3.82598)--(-1.75402,3.82596)--(-1.75538,3.82595)--(-1.75675,3.82594)--(-1.75812,3.82593)--(-1.75948,3.82592)--(-1.76085,3.82591)--(-1.76222,3.8259)--(-1.76359,3.82589)--
> (-1.76496,3.82588)--(-1.76633,3.82587)--(-1.7677,3.82586)--(-1.76907,3.82585)--(-1.77044,3.82584)--(-1.77181,3.82583)--(-1.77318,3.82582)--(-1.77455,3.82582)--(-1.77592,3.82581)--(-1.77729,3.8258)--(-1.77867,3.82579)--(-1.78004,3.82578)--(-1.78141,3.82577)--(-1.78279,3.82577)--(-1.78416,3.82576)--(-1.78553,3.82575)--(-1.78691,3.82574)--(-1.78828,3.82574)--(-1.78966,3.82573)--(-1.79103,3.82572)--(-1.79241,3.82572)--(-1.79379,3.82571)--(-1.79516,3.8257)--(-1.79654,3.8257)--(-1.79792,3.82569)--
> (-1.7993,3.82569)--(-1.80068,3.82568)--(-1.80205,3.82568)--(-1.80343,3.82567)--(-1.80481,3.82567)--(-1.80619,3.82566)--(-1.80757,3.82566)--(-1.80895,3.82565)--(-1.81034,3.82565)--(-1.81172,3.82564)--(-1.8131,3.82564)--(-1.81448,3.82564)--(-1.81586,3.82563)--(-1.81725,3.82563)--(-1.81863,3.82563)--(-1.82002,3.82562)--(-1.8214,3.82562)--(-1.82278,3.82562)--(-1.82417,3.82561)--(-1.82556,3.82561)--(-1.82694,3.82561)--(-1.82833,3.82561)--(-1.82971,3.8256)--(-1.8311,3.8256)--(-1.83249,3.8256)--
> (-1.83388,3.8256)--(-1.83527,3.8256)--(-1.83665,3.8256)--(-1.83804,3.8256)--(-1.83943,3.8256)--(-1.84082,3.82559)--(-1.84221,3.82559)--(-1.8436,3.82559)--(-1.845,3.82559)--(-1.84639,3.82559)--(-1.84778,3.82559)--(-1.84917,3.82559)--(-1.85057,3.8256)--(-1.85196,3.8256)--(-1.85335,3.8256)--(-1.85475,3.8256)--(-1.85614,3.8256)--(-1.85754,3.8256)--(-1.85893,3.8256)--(-1.86033,3.8256)--(-1.86173,3.82561)--(-1.86312,3.82561)--(-1.86452,3.82561)--(-1.86592,3.82561)--(-1.86732,3.82562)--
> (-1.86871,3.82562)--(-1.87011,3.82562)--(-1.87151,3.82563)--(-1.87291,3.82563)--(-1.87431,3.82563)--(-1.87571,3.82564)--(-1.87712,3.82564)--(-1.87852,3.82564)--(-1.87992,3.82565)--(-1.88132,3.82565)--(-1.88273,3.82566)--(-1.88413,3.82566)--(-1.88553,3.82567)--(-1.88694,3.82567)--(-1.88834,3.82568)--(-1.88975,3.82568)--(-1.89115,3.82569)--(-1.89256,3.82569)--(-1.89397,3.8257)--(-1.89537,3.82571)--(-1.89678,3.82571)--(-1.89819,3.82572)--(-1.8996,3.82572)--(-1.90101,3.82573)--(-1.90242,3.82574)--
> (-1.90383,3.82575)--(-1.90524,3.82575)--(-1.90665,3.82576)--(-1.90806,3.82577)--(-1.90947,3.82578)--(-1.91088,3.82578)--(-1.9123,3.82579)--(-1.91371,3.8258)--(-1.91512,3.82581)--(-1.91654,3.82582)--(-1.91795,3.82583)--(-1.91937,3.82584)--(-1.92078,3.82585)--(-1.9222,3.82585)--(-1.92362,3.82586)--(-1.92503,3.82587)--(-1.92645,3.82588)--(-1.92787,3.82589)--(-1.92929,3.8259)--(-1.93071,3.82592)--(-1.93213,3.82593)--(-1.93355,3.82594)--(-1.93497,3.82595)--(-1.93639,3.82596)--(-1.93781,3.82597)--
> (-1.93923,3.82598)--(-1.94066,3.82599)--(-1.94208,3.82601)--(-1.9435,3.82602)--(-1.94493,3.82603)--(-1.94635,3.82604)--(-1.94778,3.82605)--(-1.9492,3.82607)--(-1.95063,3.82608)--(-1.95205,3.82609)--(-1.95348,3.82611)--(-1.95491,3.82612)--(-1.95634,3.82613)--(-1.95777,3.82615)--(-1.9592,3.82616)--(-1.96063,3.82618)--(-1.96206,3.82619)--(-1.96349,3.82621)--(-1.96492,3.82622)--(-1.96635,3.82623)--(-1.96778,3.82625)--(-1.96921,3.82627)--(-1.97065,3.82628)--(-1.97208,3.8263)--(-1.97352,3.82631)--
> (-1.97495,3.82633)--(-1.97639,3.82634)--(-1.97782,3.82636)--(-1.97926,3.82638)--(-1.9807,3.82639)--(-1.98213,3.82641)--(-1.98357,3.82643)--(-1.98501,3.82644)--(-1.98645,3.82646)--(-1.98789,3.82648)--(-1.98933,3.8265)--(-1.99077,3.82652)--(-1.99221,3.82653)--(-1.99366,3.82655)--(-1.9951,3.82657)--(-1.99654,3.82659)--(-1.99798,3.82661)--(-1.99943,3.82663)--(-2.00087,3.82665)--(-2.00232,3.82667)--(-2.00376,3.82669)--(-2.00521,3.82671)--(-2.00666,3.82673)--(-2.00811,3.82675)--(-2.00955,3.82677)--
> (-2.011,3.82679)--(-2.01245,3.82681)--(-2.0139,3.82683)--(-2.01535,3.82685)--(-2.0168,3.82687)--(-2.01825,3.82689)--(-2.01971,3.82691)--(-2.02116,3.82693)--(-2.02261,3.82696)--(-2.02407,3.82698)--(-2.02552,3.827)--(-2.02698,3.82702)--(-2.02843,3.82705)--(-2.02989,3.82707)--(-2.03134,3.82709)--(-2.0328,3.82712)--(-2.03426,3.82714)--(-2.03572,3.82716)--(-2.03718,3.82719)--(-2.03864,3.82721)--(-2.0401,3.82723)--(-2.04156,3.82726)--(-2.04302,3.82728)--(-2.04448,3.82731)--(-2.04594,3.82733)--
> (-2.04741,3.82736)--(-2.04887,3.82738)--(-2.05033,3.82741)--(-2.0518,3.82743)--(-2.05326,3.82746)--(-2.05473,3.82749)--(-2.0562,3.82751)--(-2.05766,3.82754)--(-2.05913,3.82756)--(-2.0606,3.82759)--(-2.06207,3.82762)--(-2.06354,3.82765)--(-2.06501,3.82767)--(-2.06648,3.8277)--(-2.06795,3.82773)--(-2.06943,3.82776)--(-2.0709,3.82778)--(-2.07237,3.82781)--(-2.07385,3.82784)--(-2.07532,3.82787)--(-2.0768,3.8279)--(-2.07827,3.82793)--(-2.07975,3.82796)--(-2.08123,3.82799)--(-2.0827,3.82801)--
> (-2.08418,3.82804)--(-2.08566,3.82807)--(-2.08714,3.8281)--(-2.08862,3.82813)--(-2.0901,3.82816)--(-2.09158,3.8282)--(-2.09307,3.82823)--(-2.09455,3.82826)--(-2.09603,3.82829)--(-2.09752,3.82832)--(-2.099,3.82835)--(-2.10049,3.82838)--(-2.10197,3.82842)--(-2.10346,3.82845)--(-2.10495,3.82848)--(-2.10644,3.82851)--(-2.10793,3.82855)--(-2.10941,3.82858)--(-2.1109,3.82861)--(-2.1124,3.82864)--(-2.11389,3.82868)--(-2.11538,3.82871)--(-2.11687,3.82875)--(-2.11837,3.82878)--(-2.11986,3.82881)--
> (-2.12135,3.82885)--(-2.12285,3.82888)--(-2.12435,3.82892)--(-2.12584,3.82895)--(-2.12734,3.82899)--(-2.12884,3.82902)--(-2.13034,3.82906)--(-2.13184,3.82909)--(-2.13334,3.82913)--(-2.13484,3.82917)--(-2.13634,3.8292)--(-2.13784,3.82924)--(-2.13934,3.82928)--(-2.14085,3.82931)--(-2.14235,3.82935)--(-2.14386,3.82939)--(-2.14536,3.82943)--(-2.14687,3.82946)--(-2.14837,3.8295)--(-2.14988,3.82954)--(-2.15139,3.82958)--(-2.1529,3.82962)--(-2.15441,3.82965)--(-2.15592,3.82969)--(-2.15743,3.82973)--
> (-2.15894,3.82977)--(-2.16046,3.82981)--(-2.16197,3.82985)--(-2.16348,3.82989)--(-2.165,3.82993)--(-2.16651,3.82997)--(-2.16803,3.83001)--(-2.16955,3.83005)--(-2.17106,3.83009)--(-2.17258,3.83013)--(-2.1741,3.83017)--(-2.17562,3.83022)--(-2.17714,3.83026)--(-2.17866,3.8303)--(-2.18018,3.83034)--(-2.18171,3.83038)--(-2.18323,3.83043)--(-2.18475,3.83047)--(-2.18628,3.83051)--(-2.1878,3.83055)--(-2.18933,3.8306)--(-2.19086,3.83064)--(-2.19238,3.83068)--(-2.19391,3.83073)--(-2.19544,3.83077)--
> (-2.19697,3.83082)--(-2.1985,3.83086)--(-2.20003,3.83091)--(-2.20157,3.83095)--(-2.2031,3.83099)--(-2.20463,3.83104)--(-2.20617,3.83109)--(-2.2077,3.83113)--(-2.20924,3.83118)--(-2.21078,3.83122)--(-2.21231,3.83127)--(-2.21385,3.83131)--(-2.21539,3.83136)--(-2.21693,3.83141)--(-2.21847,3.83146)--(-2.22001,3.8315)--(-2.22155,3.83155)--(-2.2231,3.8316)--(-2.22464,3.83164)--(-2.22618,3.83169)--(-2.22773,3.83174)--(-2.22928,3.83179)--(-2.23082,3.83184)--(-2.23237,3.83189)--(-2.23392,3.83194)--
> (-2.23547,3.83198)--(-2.23702,3.83203)--(-2.23857,3.83208)--(-2.24012,3.83213)--(-2.24167,3.83218)--(-2.24322,3.83223)--(-2.24478,3.83228)--(-2.24633,3.83233)--(-2.24789,3.83239)--(-2.24944,3.83244)--(-2.251,3.83249)--(-2.25256,3.83254)--(-2.25412,3.83259)--(-2.25568,3.83264)--(-2.25724,3.83269)--(-2.2588,3.83275)--(-2.26036,3.8328)--(-2.26192,3.83285)--(-2.26348,3.8329)--(-2.26505,3.83296)--(-2.26661,3.83301)--(-2.26818,3.83306)--(-2.26975,3.83312)--(-2.27131,3.83317)--(-2.27288,3.83323)--
> (-2.27445,3.83328)--(-2.27602,3.83333)--(-2.27759,3.83339)--(-2.27916,3.83344)--(-2.28074,3.8335)--(-2.28231,3.83355)--(-2.28388,3.83361)--(-2.28546,3.83367)--(-2.28703,3.83372)--(-2.28861,3.83378)--(-2.29019,3.83383)--(-2.29177,3.83389)--(-2.29334,3.83395)--(-2.29492,3.834)--(-2.29651,3.83406)--(-2.29809,3.83412)--(-2.29967,3.83418)--(-2.30125,3.83423)--(-2.30284,3.83429)--(-2.30442,3.83435)--(-2.30601,3.83441)--(-2.30759,3.83447)--(-2.30918,3.83453)--(-2.31077,3.83459)--(-2.31236,3.83465)--
> (-2.31395,3.8347)--(-2.31554,3.83476)--(-2.31713,3.83482)--(-2.31873,3.83488)--(-2.32032,3.83495)--(-2.32191,3.83501)--(-2.32351,3.83507)--(-2.32511,3.83513)--(-2.3267,3.83519)--(-2.3283,3.83525)--(-2.3299,3.83531)--(-2.3315,3.83537)--(-2.3331,3.83544)--(-2.3347,3.8355)--(-2.33631,3.83556)--(-2.33791,3.83562)--(-2.33951,3.83569)--(-2.34112,3.83575)--(-2.34273,3.83581)--(-2.34433,3.83588)--(-2.34594,3.83594)--(-2.34755,3.836)--(-2.34916,3.83607)--(-2.35077,3.83613)--(-2.35238,3.8362)--
> (-2.35399,3.83626)--(-2.35561,3.83633)--(-2.35722,3.83639)--(-2.35884,3.83646)--(-2.36045,3.83652)--(-2.36207,3.83659)--(-2.36369,3.83666)--(-2.36531,3.83672)--(-2.36693,3.83679)--(-2.36855,3.83686)--(-2.37017,3.83692)--(-2.37179,3.83699)--(-2.37342,3.83706)--(-2.37504,3.83713)--(-2.37667,3.83719)--(-2.37829,3.83726)--(-2.37992,3.83733)--(-2.38155,3.8374)--(-2.38318,3.83747)--(-2.38481,3.83754)--(-2.38644,3.83761)--(-2.38807,3.83767)--(-2.3897,3.83774)--(-2.39134,3.83781)--(-2.39297,3.83788)--
> (-2.39461,3.83796)--(-2.39624,3.83803)--(-2.39788,3.8381)--(-2.39952,3.83817)--(-2.40116,3.83824)--(-2.4028,3.83831)--(-2.40444,3.83838)--(-2.40609,3.83845)--(-2.40773,3.83853)--(-2.40937,3.8386)--(-2.41102,3.83867)--(-2.41267,3.83874)--(-2.41431,3.83882)--(-2.41596,3.83889)--(-2.41761,3.83896)--(-2.41926,3.83904)--(-2.42091,3.83911)--(-2.42257,3.83919)--(-2.42422,3.83926)--(-2.42587,3.83933)--(-2.42753,3.83941)--(-2.42919,3.83948)--(-2.43084,3.83956)--(-2.4325,3.83964)--(-2.43416,3.83971)--
> (-2.43582,3.83979)--(-2.43748,3.83986)--(-2.43915,3.83994)--(-2.44081,3.84002)--(-2.44248,3.84009)--(-2.44414,3.84017)--(-2.44581,3.84025)--(-2.44748,3.84033)--(-2.44914,3.8404)--(-2.45081,3.84048)--(-2.45248,3.84056)--(-2.45416,3.84064)--(-2.45583,3.84072)--(-2.4575,3.8408)--(-2.45918,3.84088)--(-2.46085,3.84095)--(-2.46253,3.84103)--(-2.46421,3.84111)--(-2.46589,3.84119)--(-2.46757,3.84127)--(-2.46925,3.84136)--(-2.47093,3.84144)--(-2.47261,3.84152)--(-2.4743,3.8416)--(-2.47598,3.84168)--
> (-2.47767,3.84176)--(-2.47936,3.84184)--(-2.48105,3.84193)--(-2.48274,3.84201)--(-2.48443,3.84209)--(-2.48612,3.84217)--(-2.48781,3.84226)--(-2.48951,3.84234)--(-2.4912,3.84242)--(-2.4929,3.84251)--(-2.49459,3.84259)--(-2.49629,3.84268)--(-2.49799,3.84276)--(-2.49969,3.84285)--(-2.50139,3.84293)--(-2.5031,3.84302)--(-2.5048,3.8431)--(-2.5065,3.84319)--(-2.50821,3.84327)--(-2.50992,3.84336)--(-2.51163,3.84345)--(-2.51333,3.84353)--(-2.51504,3.84362)--(-2.51676,3.84371)--(-2.51847,3.8438)--
> (-2.52018,3.84388)--(-2.5219,3.84397)--(-2.52361,3.84406)--(-2.52533,3.84415)--(-2.52705,3.84424)--(-2.52877,3.84433)--(-2.53049,3.84441)--(-2.53221,3.8445)--(-2.53393,3.84459)--(-2.53566,3.84468)--(-2.53738,3.84477)--(-2.53911,3.84486)--(-2.54083,3.84496)--(-2.54256,3.84505)--(-2.54429,3.84514)--(-2.54602,3.84523)--(-2.54775,3.84532)--(-2.54949,3.84541)--(-2.55122,3.8455)--(-2.55296,3.8456)--(-2.55469,3.84569)--(-2.55643,3.84578)--(-2.55817,3.84588)--(-2.55991,3.84597)--(-2.56165,3.84606)--
> (-2.56339,3.84616)--(-2.56514,3.84625)--(-2.56688,3.84634)--(-2.56863,3.84644)--(-2.57037,3.84653)--(-2.57212,3.84663)--(-2.57387,3.84672)--(-2.57562,3.84682)--(-2.57737,3.84692)--(-2.57913,3.84701)--(-2.58088,3.84711)--(-2.58264,3.8472)--(-2.58439,3.8473)--(-2.58615,3.8474)--(-2.58791,3.8475)--(-2.58967,3.84759)--(-2.59143,3.84769)--(-2.59319,3.84779)--(-2.59496,3.84789)--(-2.59672,3.84799)--(-2.59849,3.84809)--(-2.60026,3.84818)--(-2.60202,3.84828)--(-2.60379,3.84838)--(-2.60556,3.84848)--
> (-2.60734,3.84858)--(-2.60911,3.84868)--(-2.61089,3.84878)--(-2.61266,3.84889)--(-2.61444,3.84899)--(-2.61622,3.84909)--(-2.618,3.84919)--(-2.61978,3.84929)--(-2.62156,3.84939)--(-2.62334,3.8495)--(-2.62513,3.8496)--(-2.62692,3.8497)--(-2.6287,3.84981)--(-2.63049,3.84991)--(-2.63228,3.85001)--(-2.63407,3.85012)--(-2.63586,3.85022)--(-2.63766,3.85033)--(-2.63945,3.85043)--(-2.64125,3.85054)--(-2.64305,3.85064)--(-2.64485,3.85075)--(-2.64665,3.85085)--(-2.64845,3.85096)--(-2.65025,3.85107)--
> (-2.65205,3.85117)--(-2.65386,3.85128)--(-2.65567,3.85139)--(-2.65747,3.85149)--(-2.65928,3.8516)--(-2.66109,3.85171)--(-2.6629,3.85182)--(-2.66472,3.85193)--(-2.66653,3.85204)--(-2.66835,3.85214)--(-2.67016,3.85225)--(-2.67198,3.85236)--(-2.6738,3.85247)--(-2.67562,3.85258)--(-2.67745,3.85269)--(-2.67927,3.8528)--(-2.6811,3.85292)--(-2.68292,3.85303)--(-2.68475,3.85314)--(-2.68658,3.85325)--(-2.68841,3.85336)--(-2.69024,3.85347)--(-2.69207,3.85359)--(-2.69391,3.8537)--(-2.69574,3.85381)--
> (-2.69758,3.85393)--(-2.69942,3.85404)--(-2.70126,3.85415)--(-2.7031,3.85427)--(-2.70494,3.85438)--(-2.70679,3.8545)--(-2.70863,3.85461)--(-2.71048,3.85473)--(-2.71233,3.85484)--(-2.71418,3.85496)--(-2.71603,3.85507)--(-2.71788,3.85519)--(-2.71973,3.85531)--(-2.72159,3.85542)--(-2.72345,3.85554)--(-2.7253,3.85566)--(-2.72716,3.85578)--(-2.72902,3.8559)--(-2.73089,3.85601)--(-2.73275,3.85613)--(-2.73461,3.85625)--(-2.73648,3.85637)--(-2.73835,3.85649)--(-2.74022,3.85661)--(-2.74209,3.85673)--
> (-2.74396,3.85685)--(-2.74583,3.85697)--(-2.74771,3.85709)--(-2.74959,3.85721)--(-2.75146,3.85733)--(-2.75334,3.85746)--(-2.75522,3.85758)--(-2.75711,3.8577)--(-2.75899,3.85782)--(-2.76087,3.85795)--(-2.76276,3.85807)--(-2.76465,3.85819)--(-2.76654,3.85832)--(-2.76843,3.85844)--(-2.77032,3.85856)--(-2.77222,3.85869)--(-2.77411,3.85881)--(-2.77601,3.85894)--(-2.77791,3.85906)--(-2.77981,3.85919)--(-2.78171,3.85932)--(-2.78361,3.85944)--(-2.78552,3.85957)--(-2.78742,3.8597)--(-2.78933,3.85982)--
> (-2.79124,3.85995)--(-2.79315,3.86008)--(-2.79506,3.86021)--(-2.79697,3.86034)--(-2.79889,3.86046)--(-2.8008,3.86059)--(-2.80272,3.86072)--(-2.80464,3.86085)--(-2.80656,3.86098)--(-2.80848,3.86111)--(-2.81041,3.86124)--(-2.81233,3.86137)--(-2.81426,3.8615)--(-2.81619,3.86164)--(-2.81812,3.86177)--(-2.82005,3.8619)--(-2.82199,3.86203)--(-2.82392,3.86216)--(-2.82586,3.8623)--(-2.82779,3.86243)--(-2.82973,3.86256)--(-2.83168,3.8627)--(-2.83362,3.86283)--(-2.83556,3.86297)--(-2.83751,3.8631)--
> (-2.83946,3.86324)--(-2.8414,3.86337)--(-2.84336,3.86351)--(-2.84531,3.86364)--(-2.84726,3.86378)--(-2.84922,3.86391)--(-2.85117,3.86405)--(-2.85313,3.86419)--(-2.85509,3.86433)--(-2.85705,3.86446)--(-2.85902,3.8646)--(-2.86098,3.86474)--(-2.86295,3.86488)--(-2.86492,3.86502)--(-2.86689,3.86516)--(-2.86886,3.8653)--(-2.87083,3.86544)--(-2.87281,3.86558)--(-2.87478,3.86572)--(-2.87676,3.86586)--(-2.87874,3.866)--(-2.88072,3.86614)--(-2.88271,3.86628)--(-2.88469,3.86642)--(-2.88668,3.86657)--
> (-2.88867,3.86671)--(-2.89066,3.86685)--(-2.89265,3.867)--(-2.89464,3.86714)--(-2.89663,3.86728)--(-2.89863,3.86743)--(-2.90063,3.86757)--(-2.90263,3.86772)--(-2.90463,3.86786)--(-2.90663,3.86801)--(-2.90864,3.86815)--(-2.91064,3.8683)--(-2.91265,3.86845)--(-2.91466,3.86859)--(-2.91668,3.86874)--(-2.91869,3.86889)--(-2.9207,3.86903)--(-2.92272,3.86918)--(-2.92474,3.86933)--(-2.92676,3.86948)--(-2.92878,3.86963)--(-2.93081,3.86978)--(-2.93283,3.86993)--(-2.93486,3.87008)--(-2.93689,3.87023)--
> (-2.93892,3.87038)--(-2.94095,3.87053)--(-2.94298,3.87068)--(-2.94502,3.87083)--(-2.94706,3.87098)--(-2.9491,3.87114)--(-2.95114,3.87129)--(-2.95318,3.87144)--(-2.95523,3.8716)--(-2.95727,3.87175)--(-2.95932,3.8719)--(-2.96137,3.87206)--(-2.96343,3.87221)--(-2.96548,3.87237)--(-2.96753,3.87252)--(-2.96959,3.87268)--(-2.97165,3.87283)--(-2.97371,3.87299)--(-2.97578,3.87315)--(-2.97784,3.8733)--(-2.97991,3.87346)--(-2.98198,3.87362)--(-2.98405,3.87378)--(-2.98612,3.87394)--(-2.98819,3.87409)--
> (-2.99027,3.87425)--(-2.99235,3.87441)--(-2.99442,3.87457)--(-2.99651,3.87473)--(-2.99859,3.87489)--(-3.00067,3.87505)--(-3.00276,3.87521)--(-3.00485,3.87538)--(-3.00694,3.87554)--(-3.00903,3.8757)--(-3.01113,3.87586)--(-3.01322,3.87602)--(-3.01532,3.87619)--(-3.01742,3.87635)--(-3.01952,3.87651)--(-3.02163,3.87668)--(-3.02373,3.87684)--(-3.02584,3.87701)--(-3.02795,3.87717)--(-3.03006,3.87734)--(-3.03218,3.87751)--(-3.03429,3.87767)--(-3.03641,3.87784)--(-3.03853,3.878)--(-3.04065,3.87817)--
> (-3.04277,3.87834)--(-3.0449,3.87851)--(-3.04702,3.87868)--(-3.04915,3.87884)--(-3.05128,3.87901)--(-3.05342,3.87918)--(-3.05555,3.87935)--(-3.05769,3.87952)--(-3.05983,3.87969)--(-3.06197,3.87986)--(-3.06411,3.88004)--(-3.06626,3.88021)--(-3.0684,3.88038)--(-3.07055,3.88055)--(-3.0727,3.88072)--(-3.07485,3.8809)--(-3.07701,3.88107)--(-3.07917,3.88124)--(-3.08132,3.88142)--(-3.08349,3.88159)--(-3.08565,3.88177)--(-3.08781,3.88194)--(-3.08998,3.88212)--(-3.09215,3.88229)--(-3.09432,3.88247)--
> (-3.09649,3.88265)--(-3.09867,3.88282)--(-3.10084,3.883)--(-3.10302,3.88318)--(-3.1052,3.88336)--(-3.10739,3.88354)--(-3.10957,3.88371)--(-3.11176,3.88389)--(-3.11395,3.88407)--(-3.11614,3.88425)--(-3.11834,3.88443)--(-3.12053,3.88461)--(-3.12273,3.8848)--(-3.12493,3.88498)--(-3.12713,3.88516)--(-3.12934,3.88534)--(-3.13154,3.88552)--(-3.13375,3.88571)--(-3.13596,3.88589)--(-3.13817,3.88607)--(-3.14039,3.88626)--(-3.14261,3.88644)--(-3.14482,3.88663)--(-3.14705,3.88681)--(-3.14927,3.887)--
> (-3.15149,3.88718)--(-3.15372,3.88737)--(-3.15595,3.88756)--(-3.15818,3.88775)--(-3.16042,3.88793)--(-3.16265,3.88812)--(-3.16489,3.88831)--(-3.16713,3.8885)--(-3.16938,3.88869)--(-3.17162,3.88888)--(-3.17387,3.88907)--(-3.17612,3.88926)--(-3.17837,3.88945)--(-3.18062,3.88964)--(-3.18288,3.88983)--(-3.18514,3.89002)--(-3.1874,3.89021)--(-3.18966,3.89041)--(-3.19193,3.8906)--(-3.19419,3.89079)--(-3.19646,3.89099)--(-3.19874,3.89118)--(-3.20101,3.89138)--(-3.20329,3.89157)--(-3.20557,3.89177)--
> (-3.20785,3.89196)--(-3.21013,3.89216)--(-3.21242,3.89236)--(-3.2147,3.89255)--(-3.21699,3.89275)--(-3.21929,3.89295)--(-3.22158,3.89315)--(-3.22388,3.89334)--(-3.22618,3.89354)--(-3.22848,3.89374)--(-3.23078,3.89394)--(-3.23309,3.89414)--(-3.2354,3.89434)--(-3.23771,3.89455)--(-3.24002,3.89475)--(-3.24234,3.89495)--(-3.24465,3.89515)--(-3.24698,3.89535)--(-3.2493,3.89556)--(-3.25162,3.89576)--(-3.25395,3.89596)--(-3.25628,3.89617)--(-3.25861,3.89637)--(-3.26095,3.89658)--(-3.26328,3.89678)--
> (-3.26562,3.89699)--(-3.26796,3.8972)--(-3.27031,3.8974)--(-3.27266,3.89761)--(-3.275,3.89782)--(-3.27736,3.89803)--(-3.27971,3.89824)--(-3.28207,3.89845)--(-3.28443,3.89865)--(-3.28679,3.89886)--(-3.28915,3.89907)--(-3.29152,3.89929)--(-3.29388,3.8995)--(-3.29626,3.89971)--(-3.29863,3.89992)--(-3.30101,3.90013)--(-3.30338,3.90035)--(-3.30576,3.90056)--(-3.30815,3.90077)--(-3.31053,3.90099)--(-3.31292,3.9012)--(-3.31531,3.90142)--(-3.31771,3.90163)--(-3.3201,3.90185)--(-3.3225,3.90206)--
> (-3.3249,3.90228)--(-3.32731,3.9025)--(-3.32971,3.90272)--(-3.33212,3.90293)--(-3.33453,3.90315)--(-3.33695,3.90337)--(-3.33936,3.90359)--(-3.34178,3.90381)--(-3.3442,3.90403)--(-3.34663,3.90425)--(-3.34905,3.90447)--(-3.35148,3.9047)--(-3.35391,3.90492)--(-3.35635,3.90514)--(-3.35879,3.90536)--(-3.36123,3.90559)--(-3.36367,3.90581)--(-3.36611,3.90603)--(-3.36856,3.90626)--(-3.37101,3.90648)--(-3.37346,3.90671)--(-3.37592,3.90694)--(-3.37838,3.90716)--(-3.38084,3.90739)--(-3.3833,3.90762)--
> (-3.38577,3.90785)--(-3.38824,3.90807)--(-3.39071,3.9083)--(-3.39318,3.90853)--(-3.39566,3.90876)--(-3.39814,3.90899)--(-3.40062,3.90922)--(-3.40311,3.90945)--(-3.4056,3.90969)--(-3.40809,3.90992)--(-3.41058,3.91015)--(-3.41308,3.91038)--(-3.41557,3.91062)--(-3.41808,3.91085)--(-3.42058,3.91109)--(-3.42309,3.91132)--(-3.4256,3.91156)--(-3.42811,3.91179)--(-3.43063,3.91203)--(-3.43314,3.91227)--(-3.43566,3.9125)--(-3.43819,3.91274)--(-3.44071,3.91298)--(-3.44324,3.91322)--(-3.44578,3.91346)--
> (-3.44831,3.9137)--(-3.45085,3.91394)--(-3.45339,3.91418)--(-3.45593,3.91442)--(-3.45848,3.91466)--(-3.46103,3.9149)--(-3.46358,3.91515)--(-3.46614,3.91539)--(-3.46869,3.91563)--(-3.47126,3.91588)--(-3.47382,3.91612)--(-3.47639,3.91637)--(-3.47896,3.91661)--(-3.48153,3.91686)--(-3.4841,3.91711)--(-3.48668,3.91735)--(-3.48926,3.9176)--(-3.49185,3.91785)--(-3.49443,3.9181)--(-3.49702,3.91835)--(-3.49962,3.9186)--(-3.50221,3.91885)--(-3.50481,3.9191)--(-3.50741,3.91935)--(-3.51002,3.9196)--
> (-3.51263,3.91985)--(-3.51524,3.9201)--(-3.51785,3.92036)--(-3.52047,3.92061)--(-3.52309,3.92086)--(-3.52571,3.92112)--(-3.52834,3.92137)--(-3.53097,3.92163)--(-3.5336,3.92189)--(-3.53623,3.92214)--(-3.53887,3.9224)--(-3.54151,3.92266)--(-3.54416,3.92292)--(-3.5468,3.92318)--(-3.54945,3.92343)--(-3.55211,3.92369)--(-3.55476,3.92395)--(-3.55742,3.92422)--(-3.56009,3.92448)--(-3.56275,3.92474)--(-3.56542,3.925)--(-3.5681,3.92526)--(-3.57077,3.92553)--(-3.57345,3.92579)--(-3.57613,3.92606)--
> (-3.57882,3.92632)--(-3.5815,3.92659)--(-3.5842,3.92685)--(-3.58689,3.92712)--(-3.58959,3.92739)--(-3.59229,3.92765)--(-3.59499,3.92792)--(-3.5977,3.92819)--(-3.60041,3.92846)--(-3.60312,3.92873)--(-3.60584,3.929)--(-3.60856,3.92927)--(-3.61129,3.92954)--(-3.61401,3.92982)--(-3.61674,3.93009)--(-3.61948,3.93036)--(-3.62221,3.93064)--(-3.62495,3.93091)--(-3.6277,3.93119)--(-3.63044,3.93146)--(-3.63319,3.93174)--(-3.63595,3.93201)--(-3.6387,3.93229)--(-3.64146,3.93257)--(-3.64422,3.93285)--
> (-3.64699,3.93312)--(-3.64976,3.9334)--(-3.65253,3.93368)--(-3.65531,3.93396)--(-3.65809,3.93425)--(-3.66088,3.93453)--(-3.66366,3.93481)--(-3.66645,3.93509)--(-3.66925,3.93537)--(-3.67204,3.93566)--(-3.67484,3.93594)--(-3.67765,3.93623)--(-3.68046,3.93651)--(-3.68327,3.9368)--(-3.68608,3.93709)--(-3.6889,3.93737)--(-3.69172,3.93766)--(-3.69455,3.93795)--(-3.69737,3.93824)--(-3.70021,3.93853)--(-3.70304,3.93882)--(-3.70588,3.93911)--(-3.70872,3.9394)--(-3.71157,3.93969)--(-3.71442,3.93998)--
> (-3.71727,3.94028)--(-3.72013,3.94057)--(-3.72299,3.94087)--(-3.72585,3.94116)--(-3.72872,3.94146)--(-3.73159,3.94175)--(-3.73447,3.94205)--(-3.73734,3.94235)--(-3.74023,3.94264)--(-3.74311,3.94294)--(-3.746,3.94324)--(-3.74889,3.94354)--(-3.75179,3.94384)--(-3.75469,3.94414)--(-3.75759,3.94444)--(-3.7605,3.94475)--(-3.76341,3.94505)--(-3.76633,3.94535)--(-3.76925,3.94566)--(-3.77217,3.94596)--(-3.77509,3.94627)--(-3.77802,3.94657)--(-3.78096,3.94688)--(-3.7839,3.94719)--(-3.78684,3.94749)--
> (-3.78978,3.9478)--(-3.79273,3.94811)--(-3.79568,3.94842)--(-3.79864,3.94873)--(-3.8016,3.94904)--(-3.80456,3.94935)--(-3.80753,3.94966)--(-3.8105,3.94998)--(-3.81348,3.95029)--(-3.81646,3.9506)--(-3.81944,3.95092)--(-3.82243,3.95123)--(-3.82542,3.95155)--(-3.82842,3.95187)--(-3.83141,3.95218)--(-3.83442,3.9525)--(-3.83742,3.95282)--(-3.84043,3.95314)--(-3.84345,3.95346)--(-3.84647,3.95378)--(-3.84949,3.9541)--(-3.85252,3.95442)--(-3.85555,3.95474)--(-3.85858,3.95507)--(-3.86162,3.95539)--
> (-3.86466,3.95571)--(-3.86771,3.95604)--(-3.87076,3.95636)--(-3.87381,3.95669)--(-3.87687,3.95702)--(-3.87994,3.95735)--(-3.883,3.95767)--(-3.88607,3.958)--(-3.88915,3.95833)--(-3.89223,3.95866)--(-3.89531,3.95899)--(-3.8984,3.95933)--(-3.90149,3.95966)--(-3.90459,3.95999)--(-3.90769,3.96032)--(-3.91079,3.96066)--(-3.9139,3.96099)--(-3.91701,3.96133)--(-3.92013,3.96167)--(-3.92325,3.962)--(-3.92637,3.96234)--(-3.9295,3.96268)--(-3.93263,3.96302)--(-3.93577,3.96336)--(-3.93891,3.9637)--
> (-3.94206,3.96404)--(-3.94521,3.96438)--(-3.94837,3.96472)--(-3.95153,3.96507)--(-3.95469,3.96541)--(-3.95786,3.96576)--(-3.96103,3.9661)--(-3.9642,3.96645)--(-3.96739,3.96679)--(-3.97057,3.96714)--(-3.97376,3.96749)--(-3.97695,3.96784)--(-3.98015,3.96819)--(-3.98336,3.96854)--(-3.98656,3.96889)--(-3.98977,3.96924)--(-3.99299,3.9696)--(-3.99621,3.96995)--(-3.99944,3.9703)--(-4.00267,3.97066)--(-4.0059,3.97101)--(-4.00914,3.97137)--(-4.01238,3.97173)--(-4.01563,3.97208)--(-4.01888,3.97244)--
> (-4.02214,3.9728)--(-4.0254,3.97316)--(-4.02866,3.97352)--(-4.03193,3.97388)--(-4.03521,3.97425)--(-4.03849,3.97461)--(-4.04177,3.97497)--(-4.04506,3.97534)--(-4.04835,3.9757)--(-4.05165,3.97607)--(-4.05496,3.97643)--(-4.05826,3.9768)--(-4.06158,3.97717)--(-4.06489,3.97754)--(-4.06821,3.97791)--(-4.07154,3.97828)--(-4.07487,3.97865)--(-4.07821,3.97902)--(-4.08155,3.9794)--(-4.08489,3.97977)--(-4.08824,3.98014)--(-4.0916,3.98052)--(-4.09496,3.98089)--(-4.09832,3.98127)--(-4.10169,3.98165)--
> (-4.10507,3.98203)--(-4.10844,3.98241)--(-4.11183,3.98278)--(-4.11522,3.98317)--(-4.11861,3.98355)--(-4.12201,3.98393)--(-4.12541,3.98431)--(-4.12882,3.9847)--(-4.13224,3.98508)--(-4.13565,3.98547)--(-4.13908,3.98585)--(-4.14251,3.98624)--(-4.14594,3.98663)--(-4.14938,3.98702)--(-4.15282,3.9874)--(-4.15627,3.98779)--(-4.15972,3.98819)--(-4.16318,3.98858)--(-4.16664,3.98897)--(-4.17011,3.98936)--(-4.17359,3.98976)--(-4.17707,3.99015)--(-4.18055,3.99055)--(-4.18404,3.99095)--(-4.18753,3.99134)--
> (-4.19103,3.99174)--(-4.19454,3.99214)--(-4.19805,3.99254)--(-4.20156,3.99294)--(-4.20509,3.99334)--(-4.20861,3.99375)--(-4.21214,3.99415)--(-4.21568,3.99455)--(-4.21922,3.99496)--(-4.22277,3.99537)--(-4.22632,3.99577)--(-4.22988,3.99618)--(-4.23344,3.99659)--(-4.23701,3.997)--(-4.24058,3.99741)--(-4.24416,3.99782)--(-4.24774,3.99823)--(-4.25133,3.99864)--(-4.25493,3.99906)--(-4.25853,3.99947)--(-4.26214,3.99989)--(-4.26575,4.0003)--(-4.26936,4.00072)--(-4.27299,4.00114)--(-4.27662,4.00156)--
> (-4.28025,4.00198)--(-4.28389,4.0024)--(-4.28753,4.00282)--(-4.29118,4.00324)--(-4.29484,4.00367)--(-4.2985,4.00409)--(-4.30217,4.00452)--(-4.30584,4.00494)--(-4.30952,4.00537)--(-4.3132,4.0058)--(-4.31689,4.00623)--(-4.32059,4.00666)--(-4.32429,4.00709)--(-4.328,4.00752)--(-4.33171,4.00795)--(-4.33543,4.00839)--(-4.33915,4.00882)--(-4.34288,4.00926)--(-4.34662,4.00969)--(-4.35036,4.01013)--(-4.35411,4.01057)--(-4.35786,4.01101)--(-4.36162,4.01145)--(-4.36539,4.01189)--(-4.36916,4.01233)--
> (-4.37293,4.01277)--(-4.37672,4.01322)--(-4.38051,4.01366)--(-4.3843,4.01411)--(-4.3881,4.01455)--(-4.39191,4.015)--(-4.39572,4.01545)--(-4.39954,4.0159)--(-4.40336,4.01635)--(-4.4072,4.0168)--(-4.41103,4.01725)--(-4.41488,4.01771)--(-4.41872,4.01816)--(-4.42258,4.01862)--(-4.42644,4.01907)--(-4.43031,4.01953)--(-4.43418,4.01999)--(-4.43806,4.02045)--(-4.44195,4.02091)--(-4.44584,4.02137)--(-4.44974,4.02183)--(-4.45365,4.02229)--(-4.45756,4.02276)--(-4.46148,4.02322)--(-4.4654,4.02369)--
> (-4.46933,4.02416)--(-4.47327,4.02463)--(-4.47721,4.0251)--(-4.48116,4.02557)--(-4.48512,4.02604)--(-4.48908,4.02651)--(-4.49305,4.02698)--(-4.49702,4.02746)--(-4.501,4.02793)--(-4.50499,4.02841)--(-4.50899,4.02889)--(-4.51299,4.02937)--(-4.517,4.02985)--(-4.52101,4.03033)--(-4.52503,4.03081)--(-4.52906,4.03129)--(-4.53309,4.03177)--(-4.53714,4.03226)--(-4.54118,4.03275)--(-4.54524,4.03323)--(-4.5493,4.03372)--(-4.55337,4.03421)--(-4.55744,4.0347)--(-4.56152,4.03519)--(-4.56561,4.03568)--
> (-4.56971,4.03618)--(-4.57381,4.03667)--(-4.57792,4.03717)--(-4.58203,4.03766)--(-4.58615,4.03816)--(-4.59028,4.03866)--(-4.59442,4.03916)--(-4.59856,4.03966)--(-4.60271,4.04016)--(-4.60687,4.04067)--(-4.61103,4.04117)--(-4.61521,4.04168)--(-4.61938,4.04218)--(-4.62357,4.04269)--(-4.62776,4.0432)--(-4.63196,4.04371)--(-4.63617,4.04422)--(-4.64038,4.04473)--(-4.6446,4.04525)--(-4.64883,4.04576)--(-4.65307,4.04628)--(-4.65731,4.04679)--(-4.66156,4.04731)--(-4.66582,4.04783)--(-4.67008,4.04835)--
> (-4.67435,4.04887)--(-4.67863,4.0494)--(-4.68292,4.04992)--(-4.68721,4.05044)--(-4.69151,4.05097)--(-4.69582,4.0515)--(-4.70014,4.05203)--(-4.70446,4.05256)--(-4.70879,4.05309)--(-4.71313,4.05362)--(-4.71748,4.05415)--(-4.72183,4.05469)--(-4.72619,4.05522)--(-4.73056,4.05576)--(-4.73494,4.0563)--(-4.73932,4.05684)--(-4.74371,4.05738)--(-4.74811,4.05792)--(-4.75252,4.05846)--(-4.75694,4.05901)--(-4.76136,4.05955)--(-4.76579,4.0601)--(-4.77023,4.06065)--(-4.77467,4.06119)--(-4.77913,4.06174)--
> (-4.78359,4.0623)--(-4.78806,4.06285)--(-4.79254,4.0634)--(-4.79702,4.06396)--(-4.80152,4.06451)--(-4.80602,4.06507)--(-4.81053,4.06563)--(-4.81505,4.06619)--(-4.81957,4.06675)--(-4.82411,4.06732)--(-4.82865,4.06788)--(-4.8332,4.06845)--(-4.83776,4.06901)--(-4.84232,4.06958)--(-4.8469,4.07015)--(-4.85148,4.07072)--(-4.85607,4.07129)--(-4.86067,4.07187)--(-4.86528,4.07244)--(-4.8699,4.07302)--(-4.87452,4.07359)--(-4.87916,4.07417)--(-4.8838,4.07475)--(-4.88845,4.07533)--(-4.89311,4.07591)--
> (-4.89777,4.0765)--(-4.90245,4.07708)--(-4.90713,4.07767)--(-4.91182,4.07826)--(-4.91653,4.07885)--(-4.92124,4.07944)--(-4.92595,4.08003)--(-4.93068,4.08062)--(-4.93542,4.08122)--(-4.94016,4.08181)--(-4.94491,4.08241)--(-4.94968,4.08301)--(-4.95445,4.08361)--(-4.95923,4.08421)--(-4.96402,4.08481)--(-4.96881,4.08542)--(-4.97362,4.08602)--(-4.97844,4.08663)--(-4.98326,4.08724)--(-4.98809,4.08785)--(-4.99294,4.08846)--(-4.99779,4.08907)--(-5.00265,4.08969)--(-5.00752,4.0903)--(-5.0124,4.09092)--
> (-5.01729,4.09154)--(-5.02218,4.09216)--(-5.02709,4.09278)--(-5.03201,4.0934)--(-5.03693,4.09403)--(-5.04187,4.09465)--(-5.04681,4.09528)--(-5.05176,4.09591)--(-5.05673,4.09654)--(-5.0617,4.09717)--(-5.06668,4.09781)--(-5.07167,4.09844)--(-5.07667,4.09908)--(-5.08168,4.09971)--(-5.0867,4.10035)--(-5.09173,4.10099)--(-5.09677,4.10164)--(-5.10182,4.10228)--(-5.10688,4.10293)--(-5.11195,4.10357)--(-5.11702,4.10422)--(-5.12211,4.10487)--(-5.12721,4.10552)--(-5.13232,4.10617)--(-5.13744,4.10683)--
> (-5.14256,4.10749)--(-5.1477,4.10814)--(-5.15285,4.1088)--(-5.15801,4.10946)--(-5.16317,4.11013)--(-5.16835,4.11079)--(-5.17354,4.11145)--(-5.17874,4.11212)--(-5.18394,4.11279)--(-5.18916,4.11346)--(-5.19439,4.11413)--(-5.19963,4.11481)--(-5.20488,4.11548)--(-5.21014,4.11616)--(-5.21541,4.11684)--(-5.22069,4.11752)--(-5.22598,4.1182)--(-5.23128,4.11888)--(-5.2366,4.11957)--(-5.24192,4.12025)--(-5.24725,4.12094)--(-5.2526,4.12163)--(-5.25795,4.12232)--(-5.26332,4.12302)--(-5.26869,4.12371)--
> (-5.27408,4.12441)--(-5.27948,4.12511)--(-5.28489,4.12581)--(-5.2903,4.12651)--(-5.29574,4.12721)--(-5.30118,4.12792)--(-5.30663,4.12862)--(-5.31209,4.12933)--(-5.31757,4.13004)--(-5.32305,4.13076)--(-5.32855,4.13147)--(-5.33406,4.13218)--(-5.33958,4.1329)--(-5.34511,4.13362)--(-5.35065,4.13434)--(-5.3562,4.13506)--(-5.36177,4.13579)--(-5.36734,4.13652)--(-5.37293,4.13724)--(-5.37853,4.13797)--(-5.38414,4.13871)--(-5.38976,4.13944)--(-5.39539,4.14017)--(-5.40104,4.14091)--(-5.4067,4.14165)--
> (-5.41237,4.14239)--(-5.41805,4.14313)--(-5.42374,4.14388)--(-5.42944,4.14462)--(-5.43516,4.14537)--(-5.44089,4.14612)--(-5.44663,4.14687)--(-5.45238,4.14763)--(-5.45814,4.14838)--(-5.46392,4.14914)--(-5.46971,4.1499)--(-5.47551,4.15066)--(-5.48132,4.15142)--(-5.48714,4.15219)--(-5.49298,4.15296)--(-5.49883,4.15372)--(-5.50469,4.1545)--(-5.51057,4.15527)--(-5.51645,4.15604)--(-5.52235,4.15682)--(-5.52826,4.1576)--(-5.53419,4.15838)--(-5.54012,4.15916)--(-5.54607,4.15995)--(-5.55204,4.16073)--
> (-5.55801,4.16152)--(-5.564,4.16231)--(-5.57,4.1631)--(-5.57602,4.1639)--(-5.58204,4.16469)--(-5.58808,4.16549)--(-5.59413,4.16629)--(-5.6002,4.1671)--(-5.60628,4.1679)--(-5.61237,4.16871)--(-5.61848,4.16952)--(-5.6246,4.17033)--(-5.63073,4.17114)--(-5.63687,4.17196)--(-5.64303,4.17277)--(-5.64921,4.17359)--(-5.65539,4.17441)--(-5.66159,4.17524)--(-5.6678,4.17606)--(-5.67403,4.17689)--(-5.68027,4.17772)--(-5.68653,4.17855)--(-5.69279,4.17939)--(-5.69908,4.18022)--(-5.70537,4.18106)--
> (-5.71168,4.1819)--(-5.71801,4.18274)--(-5.72434,4.18359)--(-5.7307,4.18444)--(-5.73706,4.18529)--(-5.74344,4.18614)--(-5.74984,4.18699)--(-5.75625,4.18785)--(-5.76267,4.18871)--(-5.76911,4.18957)--(-5.77556,4.19043)--(-5.78203,4.19129)--(-5.78851,4.19216)--(-5.795,4.19303)--(-5.80151,4.1939)--(-5.80804,4.19478)--(-5.81458,4.19565)--(-5.82113,4.19653)--(-5.8277,4.19741)--(-5.83429,4.1983)--(-5.84089,4.19918)--(-5.8475,4.20007)--(-5.85413,4.20096)--(-5.86078,4.20185)--(-5.86744,4.20275)--
> (-5.87412,4.20365)--(-5.88081,4.20455)--(-5.88751,4.20545)--(-5.89424,4.20635)--(-5.90097,4.20726)--(-5.90773,4.20817)--(-5.9145,4.20908)--(-5.92128,4.20999)--(-5.92808,4.21091)--(-5.9349,4.21183)--(-5.94173,4.21275)--(-5.94858,4.21368)--(-5.95544,4.2146)--(-5.96232,4.21553)--(-5.96922,4.21646)--(-5.97613,4.2174)--(-5.98306,4.21834)--(-5.99,4.21927)--(-5.99696,4.22022)--(-6.00394,4.22116)--(-6.01093,4.22211)--(-6.01794,4.22306)--(-6.02497,4.22401)--(-6.03201,4.22496)--(-6.03908,4.22592)--
> (-6.04615,4.22688)--(-6.05325,4.22784)--(-6.06036,4.22881)--(-6.06749,4.22978)--(-6.07463,4.23075)--(-6.08179,4.23172)--(-6.08897,4.23269)--(-6.09617,4.23367)--(-6.10338,4.23465)--(-6.11061,4.23564)--(-6.11786,4.23662)--(-6.12513,4.23761)--(-6.13241,4.23861)--(-6.13971,4.2396)--(-6.14703,4.2406)--(-6.15437,4.2416)--(-6.16173,4.2426)--(-6.1691,4.24361)--(-6.17649,4.24461)--(-6.1839,4.24563)--(-6.19133,4.24664)--(-6.19877,4.24766)--(-6.20623,4.24868)--(-6.21372,4.2497)--(-6.22122,4.25072)--
> (-6.22873,4.25175)--(-6.23627,4.25278)--(-6.24383,4.25382)--(-6.2514,4.25485)--(-6.259,4.25589)--(-6.26661,4.25694)--(-6.27424,4.25798)--(-6.28189,4.25903)--(-6.28956,4.26008)--(-6.29725,4.26114)--(-6.30496,4.2622)--(-6.31268,4.26326)--(-6.32043,4.26432)--(-6.3282,4.26539)--(-6.33598,4.26646)--(-6.34379,4.26753)--(-6.35161,4.2686)--(-6.35946,4.26968)--(-6.36732,4.27076)--(-6.37521,4.27185)--(-6.38311,4.27294)--(-6.39103,4.27403)--(-6.39898,4.27512)--(-6.40694,4.27622)--(-6.41493,4.27732)--
> (-6.42294,4.27842)--(-6.43096,4.27953)--(-6.43901,4.28064)--(-6.44708,4.28176)--(-6.45517,4.28287)--(-6.46328,4.28399)--(-6.47141,4.28511)--(-6.47956,4.28624)--(-6.48773,4.28737)--(-6.49592,4.2885)--(-6.50414,4.28964)--(-6.51237,4.29078)--(-6.52063,4.29192)--(-6.52891,4.29307)--(-6.53721,4.29422)--(-6.54554,4.29537)--(-6.55388,4.29653)--(-6.56225,4.29769)--(-6.57063,4.29885)--(-6.57905,4.30001)--(-6.58748,4.30118)--(-6.59593,4.30236)--(-6.60441,4.30353)--(-6.61291,4.30471)--(-6.62143,4.3059)--
> (-6.62998,4.30709)--(-6.63855,4.30828)--(-6.64714,4.30947)--(-6.65575,4.31067)--(-6.66439,4.31187)--(-6.67305,4.31307)--(-6.68173,4.31428)--(-6.69044,4.31549)--(-6.69917,4.31671)--(-6.70792,4.31793)--(-6.7167,4.31915)--(-6.7255,4.32038)--(-6.73432,4.32161)--(-6.74317,4.32284)--(-6.75204,4.32408)--(-6.76094,4.32532)--(-6.76986,4.32657)--(-6.77881,4.32782)--(-6.78778,4.32907)--(-6.79677,4.33033)--(-6.80579,4.33159)--(-6.81484,4.33285)--(-6.8239,4.33412)--(-6.833,4.33539)--(-6.84212,4.33667)--
> (-6.85126,4.33795)--(-6.86043,4.33923)--(-6.86963,4.34052)--(-6.87885,4.34181)--(-6.88809,4.34311)--(-6.89736,4.34441)--(-6.90666,4.34571)--(-6.91598,4.34702)--(-6.92533,4.34833)--(-6.93471,4.34964)--(-6.94411,4.35096)--(-6.95354,4.35229)--(-6.963,4.35362)--(-6.97248,4.35495)--(-6.98199,4.35628)--(-6.99152,4.35762)--(-7.00109,4.35897)--(-7.01068,4.36032)--(-7.0203,4.36167)--(-7.02994,4.36303)--(-7.03961,4.36439)--(-7.04931,4.36575)--(-7.05904,4.36712)--(-7.0688,4.3685)--(-7.07858,4.36988)--
> (-7.08839,4.37126)--(-7.09823,4.37265)--(-7.1081,4.37404)--(-7.118,4.37543)--(-7.12792,4.37683)--(-7.13788,4.37824)--(-7.14786,4.37965)--(-7.15787,4.38106)--(-7.16792,4.38248)--(-7.17799,4.3839)--(-7.18809,4.38533)--(-7.19822,4.38676)--(-7.20838,4.3882)--(-7.21857,4.38964)--(-7.22879,4.39109)--(-7.23904,4.39254)--(-7.24932,4.39399)--(-7.25963,4.39545)--(-7.26997,4.39692)--(-7.28034,4.39839)--(-7.29075,4.39986)--(-7.30118,4.40134)--(-7.31165,4.40282)--(-7.32214,4.40431)--(-7.33267,4.40581)--
> (-7.34323,4.4073)--(-7.35382,4.40881)--(-7.36445,4.41032)--(-7.3751,4.41183)--(-7.38579,4.41335)--(-7.39651,4.41487)--(-7.40726,4.4164)--(-7.41805,4.41793)--(-7.42886,4.41947)--(-7.43971,4.42101)--(-7.4506,4.42256)--(-7.46152,4.42411)--(-7.47247,4.42567)--(-7.48345,4.42724)--(-7.49447,4.42881)--(-7.50552,4.43038)--(-7.51661,4.43196)--(-7.52773,4.43354)--(-7.53888,4.43513)--(-7.55007,4.43673)--(-7.56129,4.43833)--(-7.57255,4.43994)--(-7.58385,4.44155)--(-7.59518,4.44317)--(-7.60654,4.44479)--
> (-7.61794,4.44642)--(-7.62938,4.44805)--(-7.64085,4.44969)--(-7.65236,4.45133)--(-7.6639,4.45298)--(-7.67548,4.45464)--(-7.6871,4.4563)--(-7.69875,4.45797)--(-7.71044,4.45964)--(-7.72217,4.46132)--(-7.73394,4.463)--(-7.74574,4.46469)--(-7.75758,4.46639)--(-7.76946,4.46809)--(-7.78138,4.4698)--(-7.79334,4.47151)--(-7.80533,4.47323)--(-7.81736,4.47496)--(-7.82944,4.47669)--(-7.84155,4.47843)--(-7.8537,4.48017)--(-7.86589,4.48192)--(-7.87812,4.48368)--(-7.89039,4.48544)--(-7.9027,4.48721)--
> (-7.91505,4.48898)--(-7.92744,4.49076)--(-7.93987,4.49255)--(-7.95234,4.49434)--(-7.96485,4.49614)--(-7.97741,4.49795)--(-7.99,4.49976)--(-8.00264,4.50158)--(-8.01532,4.5034)--(-8.02804,4.50523)--(-8.04081,4.50707)--(-8.05361,4.50892)--(-8.06647,4.51077)--(-8.07936,4.51263)--(-8.09229,4.51449)--(-8.10527,4.51636)--(-8.1183,4.51824)--(-8.13137,4.52013)--(-8.14448,4.52202)--(-8.15763,4.52392)--(-8.17084,4.52582)--(-8.18408,4.52773)--(-8.19737,4.52965)--(-8.21071,4.53158)--(-8.22409,4.53351)--
> (-8.23752,4.53545)--(-8.251,4.5374)--(-8.26452,4.53936)--(-8.27808,4.54132)--(-8.2917,4.54329)--(-8.30536,4.54526)--(-8.31907,4.54725)--(-8.33282,4.54924)--(-8.34663,4.55124)--(-8.36048,4.55324)--(-8.37438,4.55526)--(-8.38833,4.55728)--(-8.40233,4.55931)--(-8.41638,4.56134)--(-8.43047,4.56338)--(-8.44462,4.56544)--(-8.45882,4.56749)--(-8.47307,4.56956)--(-8.48736,4.57164)--(-8.50171,4.57372)--(-8.51611,4.57581)--(-8.53056,4.57791)--(-8.54507,4.58001)--(-8.55962,4.58213)--(-8.57423,4.58425)--
> (-8.58889,4.58638)--(-8.6036,4.58852)--(-8.61837,4.59066)--(-8.63318,4.59282)--(-8.64806,4.59498)--(-8.66298,4.59715)--(-8.67797,4.59933)--(-8.693,4.60152)--(-8.70809,4.60372)--(-8.72324,4.60592)--(-8.73844,4.60813)--(-8.7537,4.61036)--(-8.76901,4.61259)--(-8.78438,4.61483)--(-8.79981,4.61707)--(-8.81529,4.61933)--(-8.83083,4.6216)--(-8.84643,4.62387)--(-8.86209,4.62616)--(-8.87781,4.62845)--(-8.89358,4.63075)--(-8.90942,4.63306)--(-8.92531,4.63538)--(-8.94126,4.63771)--(-8.95728,4.64005)--
> (-8.97335,4.6424)--(-8.98949,4.64475)--(-9.00568,4.64712)--(-9.02194,4.6495)--(-9.03826,4.65188)--(-9.05464,4.65428)--(-9.07109,4.65668)--(-9.0876,4.6591)--(-9.10417,4.66152)--(-9.1208,4.66396)--(-9.1375,4.6664)--(-9.15427,4.66885)--(-9.1711,4.67132)--(-9.18799,4.67379)--(-9.20495,4.67628)--(-9.22198,4.67877)--(-9.23907,4.68128)--(-9.25623,4.68379)--(-9.27346,4.68632)--(-9.29075,4.68885)--(-9.30812,4.6914)--(-9.32555,4.69395)--(-9.34305,4.69652)--(-9.36062,4.6991)--(-9.37826,4.70169)--
> (-9.39597,4.70429)--(-9.41375,4.7069)--(-9.43161,4.70952)--(-9.44953,4.71215)--(-9.46753,4.7148)--(-9.48559,4.71745)--(-9.50373,4.72012)--(-9.52195,4.72279)--(-9.54024,4.72548)--(-9.5586,4.72818)--(-9.57704,4.73089)--(-9.59555,4.73362)--(-9.61414,4.73635)--(-9.6328,4.7391)--(-9.65155,4.74186)--(-9.67036,4.74463)--(-9.68926,4.74741)--(-9.70823,4.7502)--(-9.72729,4.75301)--(-9.74642,4.75583)--(-9.76563,4.75866)--(-9.78492,4.7615)--(-9.80429,4.76435)--(-9.82375,4.76722)--(-9.84328,4.7701)--
> (-9.8629,4.77299)--(-9.8826,4.7759)--(-9.90238,4.77882)--(-9.92225,4.78175)--(-9.9422,4.78469)--(-9.96223,4.78765)--(-9.98235,4.79062)--(-10.0026,4.79361)--(-10.0229,4.7966)--(-10.0432,4.79961)--(-10.0637,4.80264)--(-10.0843,4.80567)--(-10.1049,4.80872)--(-10.1256,4.81179)--(-10.1465,4.81487)--(-10.1674,4.81796)--(-10.1884,4.82107)--(-10.2095,4.82419)--(-10.2307,4.82732)--(-10.252,4.83047)--(-10.2733,4.83364)--(-10.2948,4.83681)--(-10.3164,4.84001)--(-10.3381,4.84321)--(-10.3598,4.84644)--
> (-10.3817,4.84967)--(-10.4036,4.85293)--(-10.4257,4.85619)--(-10.4478,4.85948)--(-10.4701,4.86277)--(-10.4924,4.86609)--(-10.5149,4.86942)--(-10.5374,4.87276)--(-10.5601,4.87612)--(-10.5828,4.8795)--(-10.6057,4.88289)--(-10.6287,4.8863)--(-10.6518,4.88972)--(-10.6749,4.89316)--(-10.6982,4.89662)--(-10.7216,4.90009)--(-10.7451,4.90358)--(-10.7687,4.90709)--(-10.7924,4.91061)--(-10.8163,4.91415)--(-10.8402,4.91771)--(-10.8643,4.92129)--(-10.8884,4.92488)--(-10.9127,4.92849)--(-10.9371,4.93212)--
> (-10.9616,4.93576)--(-10.9863,4.93942)--(-11.011,4.94311)--(-11.0359,4.94681)--(-11.0609,4.95052)--(-11.086,4.95426)--(-11.1112,4.95801)--(-11.1365,4.96179)--(-11.162,4.96558)--(-11.1876,4.96939)--(-11.2133,4.97322)--(-11.2391,4.97707)--(-11.2651,4.98094)--(-11.2912,4.98483)--(-11.3174,4.98873)--(-11.3437,4.99266)--(-11.3702,4.99661)--(-11.3968,5.00058)--(-11.4236,5.00456)--(-11.4505,5.00857)--(-11.4775,5.0126)--(-11.5046,5.01665)--(-11.5319,5.02072)--(-11.5593,5.02481)--(-11.5868,5.02893)--
> (-11.6145,5.03306)--(-11.6424,5.03722)--(-11.6703,5.04139)--(-11.6985,5.04559)--(-11.7267,5.04981)--(-11.7551,5.05406)--(-11.7837,5.05832)--(-11.8124,5.06261)--(-11.8412,5.06692)--(-11.8702,5.07126)--(-11.8993,5.07561)--(-11.9286,5.07999)--(-11.9581,5.0844)--(-11.9877,5.08882)--(-12.0174,5.09328)--(-12.0473,5.09775)--(-12.0774,5.10225)--(-12.1076,5.10677)--(-12.138,5.11132)--(-12.1686,5.1159)--(-12.1993,5.12049)--(-12.2302,5.12512)--(-12.2612,5.12977)--(-12.2924,5.13444)--(-12.3238,5.13914)--
> (-12.3553,5.14387)--(-12.3871,5.14862)--(-12.4189,5.1534)--(-12.451,5.1582)--(-12.4832,5.16304)--(-12.5156,5.1679)--(-12.5482,5.17278)--(-12.581,5.1777)--(-12.614,5.18264)--(-12.6471,5.18761)--(-12.6804,5.19261)--(-12.7139,5.19763)--(-12.7476,5.20269)--(-12.7815,5.20778)--(-12.8156,5.21289)--(-12.8498,5.21803)--(-12.8843,5.22321)--(-12.9189,5.22841)--(-12.9538,5.23364)--(-12.9888,5.23891)--(-13.0241,5.2442)--(-13.0595,5.24953)--(-13.0952,5.25489)--(-13.131,5.26027)--(-13.1671,5.26569)--
> (-13.2034,5.27115)--(-13.2398,5.27663)--(-13.2765,5.28215)--(-13.3135,5.2877)--(-13.3506,5.29329)--(-13.3879,5.2989)--(-13.4255,5.30456)--(-13.4633,5.31024)--(-13.5013,5.31596)--(-13.5396,5.32172)--(-13.578,5.32751)--(-13.6167,5.33333)--(-13.6557,5.3392)--(-13.6949,5.34509)--(-13.7343,5.35103)--(-13.7739,5.357)--(-13.8138,5.36301)--(-13.8539,5.36905)--(-13.8943,5.37514)--(-13.9349,5.38126)--(-13.9758,5.38742)--(-14.017,5.39362)--(-14.0583,5.39986)--(-14.1,5.40614)--(-14.1419,5.41245)--
> (-14.1841,5.41881)--(-14.2265,5.42521)--(-14.2692,5.43165)--(-14.3122,5.43813)--(-14.3554,5.44466)--(-14.3989,5.45122)--(-14.4427,5.45783)--(-14.4868,5.46448)--(-14.5312,5.47118)--(-14.5758,5.47792)--(-14.6208,5.4847)--(-14.666,5.49153)--(-14.7115,5.49841)--(-14.7574,5.50533)--(-14.8035,5.51229)--(-14.8499,5.51931)--(-14.8967,5.52637)--(-14.9437,5.53347)--(-14.9911,5.54063)--(-15.0388,5.54783)--(-15.0868,5.55509)--(-15.1351,5.56239)--(-15.1837,5.56974)--(-15.2327,5.57715)--(-15.282,5.5846)--
> (-15.3317,5.59211)--(-15.3816,5.59967)--(-15.432,5.60728)--(-15.4826,5.61495)--(-15.5337,5.62266)--(-15.585,5.63044)--(-15.6368,5.63827)--(-15.6889,5.64615)--(-15.7413,5.65409)--(-15.7942,5.66209)--(-15.8474,5.67014)--(-15.901,5.67825)--(-15.9549,5.68642)--(-16.0093,5.69465)--(-16.064,5.70294)--(-16.1192,5.71129)--(-16.1747,5.7197)--(-16.2306,5.72817)--(-16.287,5.73671)--(-16.3437,5.74531)--(-16.4009,5.75397)--(-16.4585,5.7627)--(-16.5165,5.77149)--(-16.575,5.78035)--(-16.6338,5.78927)--
> (-16.6932,5.79827)--(-16.7529,5.80733)--(-16.8132,5.81646)--(-16.8738,5.82566)--(-16.935,5.83493)--(-16.9966,5.84427)--(-17.0586,5.85369)--(-17.1212,5.86318)--(-17.1842,5.87274)--(-17.2477,5.88237)--(-17.3117,5.89209)--(-17.3762,5.90188)--(-17.4412,5.91174)--(-17.5068,5.92169)--(-17.5728,5.93171)--(-17.6394,5.94182)--(-17.7065,5.952)--(-17.7741,5.96227)--(-17.8422,5.97262)--(-17.911,5.98306)--(-17.9802,5.99358)--(-18.0501,6.00419)--(-18.1205,6.01488)--(-18.1915,6.02567)--(-18.263,6.03654)--
> (-18.3352,6.0475)--(-18.4079,6.05856)--(-18.4813,6.06971)--(-18.5553,6.08095)--(-18.6299,6.09229)--(-18.7051,6.10373)--(-18.781,6.11526)--(-18.8575,6.12689)--(-18.9346,6.13862)--(-19.0124,6.15046)--(-19.0909,6.16239)--(-19.1701,6.17444)--(-19.25,6.18658)--(-19.3305,6.19884)--(-19.4118,6.2112)--(-19.4938,6.22367)--(-19.5765,6.23625)--(-19.6599,6.24895)--(-19.7441,6.26176)--(-19.829,6.27469)--(-19.9147,6.28773)--(-20.0012,6.3009)--(-20.0885,6.31418)--(-20.1765,6.32759)--(-20.2654,6.34112)--
> (-20.3551,6.35478)--(-20.4456,6.36856)--(-20.537,6.38247)--(-20.6292,6.39652)--(-20.7223,6.4107)--(-20.8163,6.42501)--(-20.9111,6.43946)--(-21.0069,6.45405)--(-21.1035,6.46877)--(-21.2012,6.48365)--(-21.2997,6.49866)--(-21.3992,6.51383)--(-21.4997,6.52914)--(-21.6012,6.54461)--(-21.7036,6.56022)--(-21.8071,6.576)--(-21.9116,6.59193)--(-22.0172,6.60802)--(-22.1238,6.62428)--(-22.2315,6.6407)--(-22.3403,6.65729)--(-22.4502,6.67405)--(-22.5612,6.69099)--(-22.6734,6.7081)--(-22.7868,6.72539)--
> (-22.9013,6.74286)--(-23.017,6.76051)--(-23.134,6.77836)--(-23.2522,6.79639)--(-23.3716,6.81462)--(-23.4923,6.83304)--(-23.6144,6.85166)--(-23.7377,6.87049)--(-23.8624,6.88952)--(-23.9885,6.90876)--(-24.1159,6.92822)--(-24.2448,6.94789)--(-24.3751,6.96778)--(-24.5069,6.9879)--(-24.6401,7.00824)--(-24.7749,7.02882)--(-24.9112,7.04963)--(-25.049,7.07069)--(-25.1885,7.09198)--(-25.3295,7.11353)--(-25.4722,7.13532)--(-25.6166,7.15738)--(-25.7627,7.17969)--(-25.9105,7.20227)--(-26.0601,7.22513)--
> (-26.2114,7.24826)--(-26.3646,7.27167)--(-26.5197,7.29536)--(-26.6767,7.31935)--(-26.8356,7.34363)--(-26.9965,7.36822)--(-27.1593,7.39312)--(-27.3243,7.41832)--(-27.4913,7.44385)--(-27.6604,7.46971)--(-27.8317,7.49589)--(-28.0052,7.52242)--(-28.1809,7.54929)--(-28.3589,7.57651)--(-28.5393,7.60409)--(-28.7221,7.63204)--(-28.9072,7.66036)--(-29.0949,7.68906)--(-29.2851,7.71815)--(-29.4779,7.74763)--(-29.6733,7.77752)--(-29.8714,7.80783)--(-30.0722,7.83855)--(-30.2759,7.86971)--(-30.4824,7.9013)--
> (-30.6918,7.93335)--(-30.9043,7.96585)--(-31.1197,7.99882)--(-31.3383,8.03227)--(-31.5601,8.06621)--(-31.7851,8.10064)--(-32.0135,8.13559)--(-32.2452,8.17106)--(-32.4805,8.20707)--(-32.7193,8.24362)--(-32.9617,8.28073)--(-33.2078,8.31841)--(-33.4578,8.35668)--(-33.7117,8.39555)--(-33.9695,8.43503)--(-34.2315,8.47513)--(-34.4976,8.51588)--(-34.768,8.55729)--(-35.0428,8.59937)--(-35.3221,8.64214)--(-35.606,8.68561)--(-35.8946,8.72982)--(-36.1881,8.77477)--(-36.4865,8.82048)--(-36.7901,8.86697)--
> (-37.0988,8.91426)--(-37.4129,8.96238)--(-37.7326,9.01134)--(-38.0578,9.06117)--(-38.3889,9.11189)--(-38.7259,9.16353)--(-39.0691,9.2161)--(-39.4185,9.26964)--(-39.7744,9.32417)--(-40.1369,9.37973)--(-40.5063,9.43633)--(-40.8827,9.49401)--(-41.2663,9.5528)--(-41.6574,9.61273)--(-42.0561,9.67384)--(-42.4627,9.73615)--(-42.8774,9.79972)--(-43.3005,9.86457)--(-43.7322,9.93074)--(-44.1728,9.99828)--(-44.6226,10.0672)--(-45.0818,10.1376)--(-45.5508,10.2095)--(-46.0299,10.283)--(-46.5193,10.358)--
> (-47.0196,10.4347)--(-47.5309,10.5131)--(-48.0536,10.5933)--(-48.5883,10.6752)--(-49.1352,10.7591)--(-49.6949,10.8449)--(-50.2677,10.9328)--(-50.8541,11.0227)--(-51.4546,11.1148)--(-52.0698,11.2091)--(-52.7001,11.3058)--(-53.3462,11.4049)--(-54.0086,11.5065)--(-54.6879,11.6107)--(-55.3849,11.7176)--(-56.1003,11.8273)--(-56.8347,11.9399)--(-57.5889,12.0556)--(-58.3637,12.1745)--(-59.1601,12.2967)--(-59.9788,12.4223)--(-60.8209,12.5515)--(-61.6875,12.6844)--(-62.5794,12.8212)--(-63.498,12.9622)--
> (-64.4444,13.1074)--(-65.4198,13.257)--(-66.4258,13.4114)--(-67.4636,13.5706)--(-68.5348,13.735)--(-69.6412,13.9047)--(-70.7844,14.0802)--(-71.9663,14.2615)--(-73.1889,14.4491)--(-74.4544,14.6433)--(-75.765,14.8444)--(-77.1232,15.0529)--(-78.5317,15.269)--(-79.9933,15.4933)--(-81.511,15.7263)--(-83.0882,15.9683)--(-84.7284,16.22)--(-86.4355,16.482)--(-88.2136,16.755)--(-90.0673,17.0395)--(-92.0015,17.3363)--(-94.0216,17.6464)--(-96.1334,17.9706)--(-98.3434,18.3098)--(-100.658,18.6651)--
> (-103.086,19.0378)--(-105.635,19.4291)--(-108.315,19.8404)--(-111.135,20.2733)--(-114.108,20.7297)--(-117.246,21.2113)--(-120.563,21.7205)--(-124.074,22.2596)--(-127.798,22.8313)--(-131.755,23.4387)--(-135.966,24.0852)--(-140.458,24.7748)--(-145.259,25.5118)--(-150.403,26.3015)--(-155.927,27.1495)--(-161.875,28.0627)--(-168.298,29.0488)--(-175.255,30.117)--(-182.816,31.2778)--(-191.064,32.5441)--(-200.095,33.9306)--(-210.027,35.4555)--(-221.002,37.1406)--(-233.194,39.0125)--(-246.817,41.1041)--
> (-262.138,43.4565)--(-279.496,46.1216)--(-299.327,49.1663)--(-322.198,52.678)--(-348.868,56.7729)--(-380.368,61.6094)--(-418.142,67.4092)--(-464.27,74.4919);
> draw(curve, rgb(0,0,255)+longdashdotted );
> path curve = (466.545,-68.4314)--(419.587,-61.2214)--(381.2,-55.3274)--(349.233,-50.4192)--(322.2,-46.2686)--(299.041,-42.7127)--(278.978,-39.6323)--(261.43,-36.9379)--(245.951,-34.5613)--(232.196,-32.4495)--(219.892,-30.5604)--(208.821,-28.8606)--(198.807,-27.3231)--(189.705,-25.9256)--(181.395,-24.6499)--(173.779,-23.4806)--(166.774,-22.4051)--(160.308,-21.4124)--(154.322,-20.4934)--(148.764,-19.6401)--(143.59,-18.8458)--(138.761,-18.1045)--(134.245,-17.4111)--(130.011,-16.7611)--
> (126.034,-16.1505)--(122.291,-15.5759)--(118.762,-15.0342)--(115.429,-14.5226)--(112.277,-14.0387)--(109.291,-13.5803)--(106.458,-13.1455)--(103.767,-12.7324)--(101.207,-12.3395)--(98.7694,-11.9653)--(96.4451,-11.6085)--(94.2266,-11.268)--(92.1068,-10.9426)--(90.0792,-10.6314)--(88.1379,-10.3334)--(86.2776,-10.0479)--(84.4933,-9.77404)--(82.7804,-9.51115)--(81.1347,-9.25857)--(79.5523,-9.01572)--(78.0297,-8.78204)--(76.5635,-8.55703)--(75.1507,-8.34021)--(73.7883,-8.13114)--(72.4738,-7.92941)--
> (71.2046,-7.73464)--(69.9785,-7.54649)--(68.7932,-7.36461)--(67.6468,-7.1887)--(66.5374,-7.01847)--(65.4633,-6.85365)--(64.4227,-6.69399)--(63.4142,-6.53924)--(62.4362,-6.38919)--(61.4874,-6.24362)--(60.5665,-6.10234)--(59.6724,-5.96516)--(58.8038,-5.8319)--(57.9596,-5.7024)--(57.1389,-5.5765)--(56.3407,-5.45405)--(55.5641,-5.33491)--(54.8082,-5.21896)--(54.0722,-5.10606)--(53.3553,-4.99609)--(52.6568,-4.88895)--(51.9759,-4.78452)--(51.3121,-4.68271)--(50.6647,-4.58341)--(50.0331,-4.48654)--
> (49.4167,-4.39201)--(48.8149,-4.29972)--(48.2273,-4.20962)--(47.6534,-4.12161)--(47.0927,-4.03562)--(46.5447,-3.95159)--(46.009,-3.86945)--(45.4853,-3.78914)--(44.973,-3.7106)--(44.4719,-3.63377)--(43.9815,-3.55859)--(43.5016,-3.48501)--(43.0318,-3.41298)--(42.5718,-3.34246)--(42.1212,-3.27339)--(41.6798,-3.20573)--(41.2474,-3.13944)--(40.8236,-3.07448)--(40.4082,-3.0108)--(40.0009,-2.94838)--(39.6015,-2.88717)--(39.2098,-2.82714)--(38.8256,-2.76825)--(38.4486,-2.71048)--(38.0787,-2.65379)--
> (37.7156,-2.59815)--(37.3591,-2.54353)--(37.0092,-2.4899)--(36.6655,-2.43725)--(36.328,-2.38553)--(35.9964,-2.33473)--(35.6707,-2.28483)--(35.3506,-2.23579)--(35.036,-2.1876)--(34.7268,-2.14024)--(34.4229,-2.09368)--(34.124,-2.0479)--(33.8301,-2.00289)--(33.5411,-1.95862)--(33.2568,-1.91508)--(32.9771,-1.87225)--(32.702,-1.83011)--(32.4312,-1.78864)--(32.1647,-1.74784)--(31.9024,-1.70768)--(31.6442,-1.66814)--(31.3901,-1.62923)--(31.1398,-1.59091)--(30.8933,-1.55317)--(30.6506,-1.51601)--
> (30.4115,-1.47941)--(30.176,-1.44336)--(29.9439,-1.40784)--(29.7153,-1.37285)--(29.49,-1.33837)--(29.268,-1.30438)--(29.0491,-1.27089)--(28.8334,-1.23788)--(28.6207,-1.20533)--(28.411,-1.17325)--(28.2043,-1.14162)--(28.0004,-1.11042)--(27.7993,-1.07966)--(27.601,-1.04932)--(27.4054,-1.01939)--(27.2124,-0.989869)--(27.022,-0.960744)--(26.8341,-0.932008)--(26.6487,-0.903654)--(26.4658,-0.875674)--(26.2852,-0.848061)--(26.107,-0.820806)--(25.9311,-0.793905)--(25.7574,-0.767349)--(25.586,-0.741132)--
> (25.4167,-0.715248)--(25.2495,-0.68969)--(25.0844,-0.664452)--(24.9214,-0.639529)--(24.7603,-0.614914)--(24.6013,-0.590602)--(24.4442,-0.566587)--(24.2889,-0.542864)--(24.1356,-0.519428)--(23.9841,-0.496273)--(23.8343,-0.473394)--(23.6864,-0.450787)--(23.5402,-0.428447)--(23.3957,-0.406368)--(23.2528,-0.384547)--(23.1116,-0.362979)--(22.9721,-0.34166)--(22.8341,-0.320585)--(22.6977,-0.29975)--(22.5628,-0.279151)--(22.4295,-0.258785)--(22.2976,-0.238646)--(22.1672,-0.218732)--(22.0382,-0.199039)--
> (21.9106,-0.179563)--(21.7845,-0.1603)--(21.6597,-0.141247)--(21.5362,-0.122401)--(21.4141,-0.103759)--(21.2932,-0.0853159)--(21.1737,-0.06707)--(21.0554,-0.0490179)--(20.9384,-0.0311563)--(20.8225,-0.0134825)--(20.7079,0.00400665)--(20.5945,0.0213139)--(20.4822,0.0384422)--(20.3711,0.0553942)--(20.2611,0.0721725)--(20.1522,0.08878)--(20.0445,0.105219)--(19.9378,0.121492)--(19.8321,0.137602)--(19.7275,0.153551)--(19.624,0.169342)--(19.5214,0.184976)--(19.4199,0.200457)--(19.3193,0.215786)--
> (19.2198,0.230966)--(19.1211,0.245998)--(19.0235,0.260885)--(18.9267,0.275629)--(18.8309,0.290233)--(18.736,0.304697)--(18.642,0.319024)--(18.5488,0.333216)--(18.4565,0.347275)--(18.3651,0.361203)--(18.2745,0.375001)--(18.1848,0.388672)--(18.0959,0.402216)--(18.0077,0.415637)--(17.9204,0.428934)--(17.8339,0.442111)--(17.7481,0.455169)--(17.6631,0.468109)--(17.5789,0.480933)--(17.4954,0.493643)--(17.4127,0.506239)--(17.3306,0.518724)--(17.2493,0.531099)--(17.1687,0.543365)--(17.0888,0.555525)--
> (17.0096,0.567578)--(16.9311,0.579527)--(16.8532,0.591373)--(16.776,0.603118)--(16.6995,0.614761)--(16.6236,0.626306)--(16.5483,0.637753)--(16.4737,0.649103)--(16.3996,0.660358)--(16.3262,0.671518)--(16.2535,0.682585)--(16.1813,0.693561)--(16.1097,0.704445)--(16.0386,0.71524)--(15.9682,0.725946)--(15.8983,0.736565)--(15.829,0.747097)--(15.7603,0.757544)--(15.6921,0.767907)--(15.6244,0.778186)--(15.5573,0.788383)--(15.4907,0.798498)--(15.4246,0.808533)--(15.3591,0.818489)--(15.294,0.828366)--
> (15.2295,0.838165)--(15.1655,0.847888)--(15.1019,0.857535)--(15.0389,0.867107)--(14.9763,0.876605)--(14.9142,0.88603)--(14.8526,0.895382)--(14.7914,0.904663)--(14.7307,0.913873)--(14.6705,0.923013)--(14.6107,0.932084)--(14.5514,0.941086)--(14.4924,0.950021)--(14.434,0.95889)--(14.3759,0.967692)--(14.3183,0.976428)--(14.2611,0.9851)--(14.2044,0.993708)--(14.148,1.00225)--(14.092,1.01074)--(14.0365,1.01916)--(13.9813,1.02751)--(13.9266,1.03581)--(13.8722,1.04405)--(13.8182,1.05223)--
> (13.7646,1.06035)--(13.7114,1.06842)--(13.6586,1.07642)--(13.6061,1.08437)--(13.554,1.09226)--(13.5022,1.1001)--(13.4508,1.10788)--(13.3998,1.11561)--(13.3491,1.12328)--(13.2987,1.1309)--(13.2487,1.13847)--(13.1991,1.14599)--(13.1498,1.15345)--(13.1008,1.16086)--(13.0521,1.16822)--(13.0038,1.17554)--(12.9558,1.1828)--(12.9081,1.19001)--(12.8607,1.19718)--(12.8137,1.20429)--(12.7669,1.21136)--(12.7205,1.21838)--(12.6743,1.22536)--(12.6285,1.23229)--(12.583,1.23917)--(12.5377,1.24601)--
> (12.4928,1.2528)--(12.4481,1.25955)--(12.4038,1.26625)--(12.3597,1.27291)--(12.3159,1.27953)--(12.2723,1.2861)--(12.2291,1.29263)--(12.1861,1.29912)--(12.1434,1.30557)--(12.101,1.31198)--(12.0588,1.31835)--(12.0169,1.32467)--(11.9752,1.33096)--(11.9338,1.3372)--(11.8927,1.34341)--(11.8518,1.34958)--(11.8112,1.35571)--(11.7708,1.3618)--(11.7307,1.36786)--(11.6908,1.37387)--(11.6511,1.37985)--(11.6117,1.38579)--(11.5725,1.3917)--(11.5336,1.39757)--(11.4949,1.4034)--(11.4564,1.4092)--
> (11.4182,1.41496)--(11.3802,1.42069)--(11.3424,1.42639)--(11.3048,1.43205)--(11.2674,1.43767)--(11.2303,1.44327)--(11.1934,1.44882)--(11.1567,1.45435)--(11.1202,1.45984)--(11.0839,1.4653)--(11.0479,1.47073)--(11.012,1.47613)--(10.9764,1.48149)--(10.9409,1.48683)--(10.9057,1.49213)--(10.8706,1.4974)--(10.8358,1.50264)--(10.8011,1.50785)--(10.7667,1.51304)--(10.7324,1.51819)--(10.6984,1.52331)--(10.6645,1.5284)--(10.6308,1.53346)--(10.5973,1.5385)--(10.564,1.54351)--(10.5309,1.54848)--
> (10.4979,1.55343)--(10.4652,1.55836)--(10.4326,1.56325)--(10.4002,1.56812)--(10.3679,1.57296)--(10.3359,1.57777)--(10.304,1.58256)--(10.2723,1.58732)--(10.2407,1.59205)--(10.2094,1.59676)--(10.1782,1.60144)--(10.1471,1.6061)--(10.1163,1.61073)--(10.0856,1.61533)--(10.055,1.61992)--(10.0247,1.62447)--(9.99443,1.629)--(9.96437,1.63351)--(9.93447,1.63799)--(9.90472,1.64245)--(9.87513,1.64689)--(9.84569,1.6513)--(9.81641,1.65569)--(9.78727,1.66005)--(9.75829,1.66439)--(9.72946,1.66871)--
> (9.70077,1.67301)--(9.67223,1.67728)--(9.64384,1.68153)--(9.61559,1.68576)--(9.58748,1.68997)--(9.55952,1.69415)--(9.5317,1.69832)--(9.50402,1.70246)--(9.47648,1.70658)--(9.44907,1.71068)--(9.4218,1.71476)--(9.39467,1.71881)--(9.36768,1.72285)--(9.34081,1.72687)--(9.31408,1.73086)--(9.28749,1.73484)--(9.26102,1.73879)--(9.23468,1.74273)--(9.20848,1.74664)--(9.1824,1.75054)--(9.15645,1.75441)--(9.13062,1.75827)--(9.10492,1.76211)--(9.07934,1.76593)--(9.05389,1.76973)--(9.02856,1.77351)--
> (9.00335,1.77727)--(8.97826,1.78101)--(8.95329,1.78474)--(8.92844,1.78845)--(8.90371,1.79214)--(8.8791,1.79581)--(8.8546,1.79946)--(8.83022,1.8031)--(8.80595,1.80671)--(8.78179,1.81031)--(8.75775,1.8139)--(8.73383,1.81746)--(8.71001,1.82101)--(8.6863,1.82454)--(8.66271,1.82806)--(8.63922,1.83155)--(8.61584,1.83504)--(8.59257,1.8385)--(8.56941,1.84195)--(8.54635,1.84538)--(8.5234,1.8488)--(8.50055,1.8522)--(8.47781,1.85558)--(8.45517,1.85895)--(8.43263,1.8623)--(8.41019,1.86564)--
> (8.38786,1.86896)--(8.36562,1.87226)--(8.34349,1.87555)--(8.32145,1.87883)--(8.29951,1.88209)--(8.27767,1.88534)--(8.25593,1.88857)--(8.23429,1.89178)--(8.21273,1.89498)--(8.19128,1.89817)--(8.16992,1.90134)--(8.14865,1.9045)--(8.12748,1.90764)--(8.1064,1.91077)--(8.08541,1.91388)--(8.06451,1.91698)--(8.0437,1.92007)--(8.02298,1.92314)--(8.00236,1.9262)--(7.98182,1.92925)--(7.96137,1.93228)--(7.94101,1.9353)--(7.92073,1.9383)--(7.90054,1.94129)--(7.88044,1.94427)--(7.86042,1.94724)--
> (7.84049,1.95019)--(7.82064,1.95313)--(7.80088,1.95606)--(7.7812,1.95897)--(7.7616,1.96187)--(7.74209,1.96476)--(7.72265,1.96763)--(7.7033,1.9705)--(7.68403,1.97335)--(7.66484,1.97619)--(7.64573,1.97901)--(7.6267,1.98183)--(7.60774,1.98463)--(7.58887,1.98742)--(7.57007,1.9902)--(7.55135,1.99296)--(7.53271,1.99572)--(7.51414,1.99846)--(7.49565,2.00119)--(7.47723,2.00391)--(7.45889,2.00662)--(7.44062,2.00932)--(7.42243,2.012)--(7.40431,2.01468)--(7.38626,2.01734)--(7.36829,2.01999)--
> (7.35039,2.02263)--(7.33256,2.02526)--(7.3148,2.02788)--(7.29711,2.03049)--(7.27949,2.03309)--(7.26194,2.03567)--(7.24446,2.03825)--(7.22705,2.04081)--(7.20971,2.04337)--(7.19244,2.04591)--(7.17524,2.04844)--(7.1581,2.05097)--(7.14103,2.05348)--(7.12402,2.05598)--(7.10709,2.05848)--(7.09022,2.06096)--(7.07341,2.06343)--(7.05667,2.06589)--(7.03999,2.06835)--(7.02338,2.07079)--(7.00683,2.07322)--(6.99035,2.07565)--(6.97393,2.07806)--(6.95757,2.08046)--(6.94127,2.08286)--(6.92504,2.08524)--
> (6.90887,2.08762)--(6.89276,2.08998)--(6.87671,2.09234)--(6.86072,2.09469)--(6.84479,2.09702)--(6.82892,2.09935)--(6.81311,2.10167)--(6.79736,2.10398)--(6.78167,2.10628)--(6.76604,2.10858)--(6.75046,2.11086)--(6.73495,2.11313)--(6.71949,2.1154)--(6.70409,2.11766)--(6.68874,2.11991)--(6.67345,2.12215)--(6.65822,2.12438)--(6.64304,2.1266)--(6.62792,2.12881)--(6.61286,2.13102)--(6.59785,2.13321)--(6.5829,2.1354)--(6.56799,2.13758)--(6.55315,2.13975)--(6.53836,2.14192)--(6.52362,2.14407)--
> (6.50893,2.14622)--(6.4943,2.14836)--(6.47972,2.15049)--(6.46519,2.15261)--(6.45071,2.15473)--(6.43629,2.15683)--(6.42192,2.15893)--(6.40759,2.16102)--(6.39332,2.16311)--(6.3791,2.16518)--(6.36493,2.16725)--(6.35082,2.16931)--(6.33675,2.17136)--(6.32273,2.17341)--(6.30875,2.17545)--(6.29483,2.17748)--(6.28096,2.1795)--(6.26714,2.18151)--(6.25336,2.18352)--(6.23963,2.18552)--(6.22595,2.18751)--(6.21232,2.1895)--(6.19873,2.19148)--(6.18519,2.19345)--(6.1717,2.19541)--(6.15825,2.19737)--
> (6.14485,2.19932)--(6.1315,2.20126)--(6.11819,2.2032)--(6.10493,2.20513)--(6.09171,2.20705)--(6.07854,2.20896)--(6.06541,2.21087)--(6.05233,2.21277)--(6.03929,2.21467)--(6.0263,2.21655)--(6.01335,2.21843)--(6.00044,2.22031)--(5.98758,2.22218)--(5.97476,2.22404)--(5.96198,2.22589)--(5.94925,2.22774)--(5.93655,2.22958)--(5.9239,2.23141)--(5.9113,2.23324)--(5.89873,2.23506)--(5.88621,2.23688)--(5.87372,2.23869)--(5.86128,2.24049)--(5.84888,2.24229)--(5.83652,2.24408)--(5.8242,2.24586)--
> (5.81192,2.24764)--(5.79968,2.24941)--(5.78749,2.25118)--(5.77533,2.25294)--(5.76321,2.25469)--(5.75113,2.25644)--(5.73909,2.25818)--(5.72709,2.25991)--(5.71512,2.26164)--(5.7032,2.26336)--(5.69131,2.26508)--(5.67946,2.26679)--(5.66766,2.2685)--(5.65588,2.2702)--(5.64415,2.27189)--(5.63245,2.27358)--(5.62079,2.27526)--(5.60917,2.27694)--(5.59759,2.27861)--(5.58604,2.28028)--(5.57453,2.28194)--(5.56305,2.28359)--(5.55161,2.28524)--(5.54021,2.28688)--(5.52884,2.28852)--(5.51751,2.29016)--
> (5.50621,2.29178)--(5.49495,2.2934)--(5.48372,2.29502)--(5.47253,2.29663)--(5.46138,2.29824)--(5.45026,2.29984)--(5.43917,2.30143)--(5.42812,2.30302)--(5.4171,2.3046)--(5.40611,2.30618)--(5.39516,2.30776)--(5.38425,2.30933)--(5.37336,2.31089)--(5.36251,2.31245)--(5.35169,2.314)--(5.34091,2.31555)--(5.33016,2.31709)--(5.31944,2.31863)--(5.30876,2.32016)--(5.2981,2.32169)--(5.28748,2.32322)--(5.27689,2.32473)--(5.26634,2.32625)--(5.25581,2.32776)--(5.24532,2.32926)--(5.23486,2.33076)--
> (5.22443,2.33225)--(5.21403,2.33374)--(5.20366,2.33523)--(5.19332,2.33671)--(5.18301,2.33818)--(5.17274,2.33965)--(5.16249,2.34112)--(5.15228,2.34258)--(5.14209,2.34403)--(5.13194,2.34549)--(5.12181,2.34693)--(5.11172,2.34838)--(5.10165,2.34981)--(5.09162,2.35125)--(5.08161,2.35268)--(5.07164,2.3541)--(5.06169,2.35552)--(5.05177,2.35694)--(5.04188,2.35835)--(5.03202,2.35975)--(5.02219,2.36116)--(5.01238,2.36255)--(5.00261,2.36395)--(4.99286,2.36534)--(4.98314,2.36672)--(4.97345,2.3681)--
> (4.96379,2.36948)--(4.95415,2.37085)--(4.94454,2.37222)--(4.93496,2.37358)--(4.92541,2.37494)--(4.91588,2.3763)--(4.90638,2.37765)--(4.89691,2.37899)--(4.88747,2.38034)--(4.87805,2.38168)--(4.86866,2.38301)--(4.85929,2.38434)--(4.84995,2.38567)--(4.84064,2.38699)--(4.83136,2.38831)--(4.8221,2.38962)--(4.81286,2.39093)--(4.80365,2.39224)--(4.79447,2.39354)--(4.78531,2.39484)--(4.77618,2.39613)--(4.76708,2.39743)--(4.758,2.39871)--(4.74894,2.4)--(4.73991,2.40127)--(4.73091,2.40255)--
> (4.72192,2.40382)--(4.71297,2.40509)--(4.70404,2.40635)--(4.69513,2.40761)--(4.68625,2.40887)--(4.67739,2.41012)--(4.66856,2.41137)--(4.65975,2.41262)--(4.65096,2.41386)--(4.6422,2.4151)--(4.63346,2.41633)--(4.62475,2.41756)--(4.61606,2.41879)--(4.60739,2.42001)--(4.59875,2.42123)--(4.59013,2.42245)--(4.58153,2.42366)--(4.57296,2.42487)--(4.56441,2.42607)--(4.55588,2.42728)--(4.54737,2.42848)--(4.53889,2.42967)--(4.53043,2.43086)--(4.52199,2.43205)--(4.51358,2.43323)--(4.50519,2.43442)--
> (4.49682,2.43559)--(4.48847,2.43677)--(4.48014,2.43794)--(4.47184,2.43911)--(4.46356,2.44027)--(4.4553,2.44143)--(4.44706,2.44259)--(4.43884,2.44374)--(4.43065,2.44489)--(4.42247,2.44604)--(4.41432,2.44719)--(4.40619,2.44833)--(4.39808,2.44947)--(4.38999,2.4506)--(4.38192,2.45173)--(4.37387,2.45286)--(4.36585,2.45399)--(4.35784,2.45511)--(4.34986,2.45623)--(4.34189,2.45734)--(4.33395,2.45845)--(4.32603,2.45956)--(4.31812,2.46067)--(4.31024,2.46177)--(4.30238,2.46287)--(4.29454,2.46397)--
> (4.28671,2.46506)--(4.27891,2.46615)--(4.27113,2.46724)--(4.26337,2.46833)--(4.25562,2.46941)--(4.2479,2.47049)--(4.2402,2.47156)--(4.23251,2.47263)--(4.22485,2.4737)--(4.2172,2.47477)--(4.20958,2.47583)--(4.20197,2.47689)--(4.19438,2.47795)--(4.18681,2.47901)--(4.17926,2.48006)--(4.17173,2.48111)--(4.16422,2.48215)--(4.15672,2.4832)--(4.14925,2.48424)--(4.14179,2.48528)--(4.13435,2.48631)--(4.12693,2.48734)--(4.11953,2.48837)--(4.11215,2.4894)--(4.10478,2.49042)--(4.09744,2.49144)--
> (4.09011,2.49246)--(4.0828,2.49347)--(4.07551,2.49449)--(4.06823,2.4955)--(4.06097,2.4965)--(4.05373,2.49751)--(4.04651,2.49851)--(4.03931,2.49951)--(4.03212,2.5005)--(4.02495,2.5015)--(4.0178,2.50249)--(4.01067,2.50348)--(4.00355,2.50446)--(3.99645,2.50545)--(3.98937,2.50643)--(3.9823,2.5074)--(3.97525,2.50838)--(3.96822,2.50935)--(3.96121,2.51032)--(3.95421,2.51129)--(3.94723,2.51225)--(3.94026,2.51321)--(3.93331,2.51417)--(3.92638,2.51513)--(3.91947,2.51609)--(3.91257,2.51704)--
> (3.90568,2.51799)--(3.89882,2.51893)--(3.89197,2.51988)--(3.88514,2.52082)--(3.87832,2.52176)--(3.87152,2.5227)--(3.86473,2.52363)--(3.85796,2.52456)--(3.85121,2.52549)--(3.84447,2.52642)--(3.83775,2.52735)--(3.83104,2.52827)--(3.82435,2.52919)--(3.81768,2.53011)--(3.81102,2.53102)--(3.80437,2.53193)--(3.79774,2.53284)--(3.79113,2.53375)--(3.78453,2.53466)--(3.77795,2.53556)--(3.77138,2.53646)--(3.76483,2.53736)--(3.75829,2.53826)--(3.75177,2.53915)--(3.74526,2.54004)--(3.73877,2.54093)--
> (3.73229,2.54182)--(3.72583,2.54271)--(3.71938,2.54359)--(3.71295,2.54447)--(3.70653,2.54535)--(3.70013,2.54622)--(3.69374,2.5471)--(3.68736,2.54797)--(3.681,2.54884)--(3.67465,2.5497)--(3.66832,2.55057)--(3.66201,2.55143)--(3.6557,2.55229)--(3.64941,2.55315)--(3.64314,2.55401)--(3.63688,2.55486)--(3.63063,2.55571)--(3.6244,2.55656)--(3.61818,2.55741)--(3.61197,2.55826)--(3.60578,2.5591)--(3.5996,2.55994)--(3.59344,2.56078)--(3.58729,2.56162)--(3.58115,2.56245)--(3.57503,2.56328)--
> (3.56892,2.56412)--(3.56283,2.56494)--(3.55674,2.56577)--(3.55068,2.5666)--(3.54462,2.56742)--(3.53858,2.56824)--(3.53255,2.56906)--(3.52653,2.56987)--(3.52053,2.57069)--(3.51454,2.5715)--(3.50856,2.57231)--(3.5026,2.57312)--(3.49665,2.57392)--(3.49071,2.57473)--(3.48479,2.57553)--(3.47888,2.57633)--(3.47298,2.57713)--(3.46709,2.57793)--(3.46122,2.57872)--(3.45536,2.57951)--(3.44951,2.5803)--(3.44367,2.58109)--(3.43785,2.58188)--(3.43204,2.58266)--(3.42624,2.58345)--(3.42046,2.58423)--
> (3.41468,2.58501)--(3.40892,2.58578)--(3.40317,2.58656)--(3.39744,2.58733)--(3.39171,2.58811)--(3.386,2.58887)--(3.3803,2.58964)--(3.37461,2.59041)--(3.36894,2.59117)--(3.36328,2.59194)--(3.35762,2.5927)--(3.35198,2.59345)--(3.34636,2.59421)--(3.34074,2.59497)--(3.33514,2.59572)--(3.32954,2.59647)--(3.32396,2.59722)--(3.31839,2.59797)--(3.31284,2.59871)--(3.30729,2.59946)--(3.30176,2.6002)--(3.29623,2.60094)--(3.29072,2.60168)--(3.28522,2.60242)--(3.27973,2.60315)--(3.27426,2.60389)--
> (3.26879,2.60462)--(3.26334,2.60535)--(3.25789,2.60608)--(3.25246,2.6068)--(3.24704,2.60753)--(3.24163,2.60825)--(3.23623,2.60897)--(3.23084,2.60969)--(3.22547,2.61041)--(3.2201,2.61113)--(3.21475,2.61184)--(3.20941,2.61256)--(3.20407,2.61327)--(3.19875,2.61398)--(3.19344,2.61468)--(3.18814,2.61539)--(3.18285,2.6161)--(3.17757,2.6168)--(3.1723,2.6175)--(3.16705,2.6182)--(3.1618,2.6189)--(3.15656,2.6196)--(3.15134,2.62029)--(3.14612,2.62098)--(3.14092,2.62168)--(3.13572,2.62237)--
> (3.13054,2.62305)--(3.12537,2.62374)--(3.1202,2.62443)--(3.11505,2.62511)--(3.10991,2.62579)--(3.10478,2.62647)--(3.09966,2.62715)--(3.09454,2.62783)--(3.08944,2.62851)--(3.08435,2.62918)--(3.07927,2.62985)--(3.0742,2.63052)--(3.06914,2.63119)--(3.06409,2.63186)--(3.05904,2.63253)--(3.05401,2.63319)--(3.04899,2.63386)--(3.04398,2.63452)--(3.03898,2.63518)--(3.03399,2.63584)--(3.029,2.6365)--(3.02403,2.63715)--(3.01907,2.63781)--(3.01411,2.63846)--(3.00917,2.63911)--(3.00424,2.63976)--
> (2.99931,2.64041)--(2.9944,2.64106)--(2.98949,2.6417)--(2.9846,2.64235)--(2.97971,2.64299)--(2.97483,2.64363)--(2.96997,2.64427)--(2.96511,2.64491)--(2.96026,2.64555)--(2.95542,2.64618)--(2.95059,2.64682)--(2.94577,2.64745)--(2.94096,2.64808)--(2.93615,2.64871)--(2.93136,2.64934)--(2.92658,2.64997)--(2.9218,2.65059)--(2.91703,2.65122)--(2.91228,2.65184)--(2.90753,2.65246)--(2.90279,2.65308)--(2.89806,2.6537)--(2.89334,2.65432)--(2.88863,2.65493)--(2.88392,2.65555)--(2.87923,2.65616)--
> (2.87455,2.65677)--(2.86987,2.65739)--(2.8652,2.65799)--(2.86054,2.6586)--(2.85589,2.65921)--(2.85125,2.65981)--(2.84662,2.66042)--(2.84199,2.66102)--(2.83738,2.66162)--(2.83277,2.66222)--(2.82817,2.66282)--(2.82358,2.66342)--(2.819,2.66401)--(2.81443,2.66461)--(2.80986,2.6652)--(2.80531,2.66579)--(2.80076,2.66638)--(2.79622,2.66697)--(2.79169,2.66756)--(2.78717,2.66815)--(2.78265,2.66873)--(2.77815,2.66932)--(2.77365,2.6699)--(2.76916,2.67048)--(2.76468,2.67106)--(2.7602,2.67164)--
> (2.75574,2.67222)--(2.75128,2.6728)--(2.74684,2.67337)--(2.74239,2.67395)--(2.73796,2.67452)--(2.73354,2.67509)--(2.72912,2.67566)--(2.72471,2.67623)--(2.72031,2.6768)--(2.71592,2.67737)--(2.71154,2.67793)--(2.70716,2.6785)--(2.70279,2.67906)--(2.69843,2.67962)--(2.69408,2.68018)--(2.68973,2.68074)--(2.6854,2.6813)--(2.68107,2.68186)--(2.67674,2.68241)--(2.67243,2.68297)--(2.66812,2.68352)--(2.66383,2.68408)--(2.65953,2.68463)--(2.65525,2.68518)--(2.65098,2.68573)--(2.64671,2.68627)--
> (2.64245,2.68682)--(2.63819,2.68737)--(2.63395,2.68791)--(2.62971,2.68845)--(2.62548,2.68899)--(2.62126,2.68954)--(2.61704,2.69007)--(2.61283,2.69061)--(2.60863,2.69115)--(2.60444,2.69169)--(2.60025,2.69222)--(2.59607,2.69276)--(2.5919,2.69329)--(2.58774,2.69382)--(2.58358,2.69435)--(2.57943,2.69488)--(2.57529,2.69541)--(2.57115,2.69594)--(2.56703,2.69646)--(2.56291,2.69699)--(2.55879,2.69751)--(2.55469,2.69803)--(2.55059,2.69856)--(2.54649,2.69908)--(2.54241,2.6996)--(2.53833,2.70012)--
> (2.53426,2.70063)--(2.53019,2.70115)--(2.52614,2.70166)--(2.52209,2.70218)--(2.51804,2.70269)--(2.51401,2.7032)--(2.50998,2.70371)--(2.50595,2.70422)--(2.50194,2.70473)--(2.49793,2.70524)--(2.49393,2.70575)--(2.48993,2.70625)--(2.48594,2.70676)--(2.48196,2.70726)--(2.47799,2.70776)--(2.47402,2.70827)--(2.47006,2.70877)--(2.4661,2.70927)--(2.46216,2.70976)--(2.45821,2.71026)--(2.45428,2.71076)--(2.45035,2.71125)--(2.44643,2.71175)--(2.44251,2.71224)--(2.43861,2.71273)--(2.4347,2.71323)--
> (2.43081,2.71372)--(2.42692,2.7142)--(2.42304,2.71469)--(2.41916,2.71518)--(2.41529,2.71567)--(2.41143,2.71615)--(2.40757,2.71664)--(2.40372,2.71712)--(2.39988,2.7176)--(2.39604,2.71808)--(2.39221,2.71856)--(2.38839,2.71904)--(2.38457,2.71952)--(2.38075,2.72)--(2.37695,2.72048)--(2.37315,2.72095)--(2.36936,2.72143)--(2.36557,2.7219)--(2.36179,2.72237)--(2.35801,2.72284)--(2.35424,2.72332)--(2.35048,2.72378)--(2.34673,2.72425)--(2.34298,2.72472)--(2.33923,2.72519)--(2.33549,2.72565)--
> (2.33176,2.72612)--(2.32804,2.72658)--(2.32432,2.72705)--(2.3206,2.72751)--(2.3169,2.72797)--(2.31319,2.72843)--(2.3095,2.72889)--(2.30581,2.72935)--(2.30213,2.72981)--(2.29845,2.73026)--(2.29478,2.73072)--(2.29111,2.73117)--(2.28745,2.73163)--(2.2838,2.73208)--(2.28015,2.73253)--(2.27651,2.73299)--(2.27287,2.73344)--(2.26924,2.73389)--(2.26561,2.73433)--(2.26199,2.73478)--(2.25838,2.73523)--(2.25477,2.73568)--(2.25117,2.73612)--(2.24757,2.73656)--(2.24398,2.73701)--(2.2404,2.73745)--
> (2.23682,2.73789)--(2.23325,2.73833)--(2.22968,2.73877)--(2.22612,2.73921)--(2.22256,2.73965)--(2.21901,2.74009)--(2.21546,2.74052)--(2.21192,2.74096)--(2.20839,2.74139)--(2.20486,2.74183)--(2.20134,2.74226)--(2.19782,2.74269)--(2.19431,2.74312)--(2.1908,2.74355)--(2.1873,2.74398)--(2.1838,2.74441)--(2.18031,2.74484)--(2.17683,2.74527)--(2.17335,2.74569)--(2.16987,2.74612)--(2.1664,2.74654)--(2.16294,2.74697)--(2.15948,2.74739)--(2.15603,2.74781)--(2.15258,2.74823)--(2.14914,2.74865)--
> (2.1457,2.74907)--(2.14227,2.74949)--(2.13884,2.74991)--(2.13542,2.75033)--(2.13201,2.75074)--(2.1286,2.75116)--(2.12519,2.75157)--(2.12179,2.75199)--(2.1184,2.7524)--(2.11501,2.75281)--(2.11162,2.75322)--(2.10824,2.75364)--(2.10487,2.75405)--(2.1015,2.75445)--(2.09813,2.75486)--(2.09477,2.75527)--(2.09142,2.75568)--(2.08807,2.75608)--(2.08473,2.75649)--(2.08139,2.75689)--(2.07806,2.7573)--(2.07473,2.7577)--(2.0714,2.7581)--(2.06808,2.7585)--(2.06477,2.7589)--(2.06146,2.7593)--(2.05816,2.7597)--
> (2.05486,2.7601)--(2.05157,2.7605)--(2.04828,2.7609)--(2.04499,2.76129)--(2.04171,2.76169)--(2.03844,2.76208)--(2.03517,2.76247)--(2.0319,2.76287)--(2.02865,2.76326)--(2.02539,2.76365)--(2.02214,2.76404)--(2.01889,2.76443)--(2.01565,2.76482)--(2.01242,2.76521)--(2.00919,2.7656)--(2.00596,2.76598)--(2.00274,2.76637)--(1.99952,2.76676)--(1.99631,2.76714)--(1.9931,2.76753)--(1.9899,2.76791)--(1.9867,2.76829)--(1.98351,2.76867)--(1.98032,2.76905)--(1.97714,2.76944)--(1.97396,2.76982)--
> (1.97078,2.77019)--(1.96761,2.77057)--(1.96445,2.77095)--(1.96129,2.77133)--(1.95813,2.7717)--(1.95498,2.77208)--(1.95183,2.77245)--(1.94869,2.77283)--(1.94555,2.7732)--(1.94242,2.77357)--(1.93929,2.77395)--(1.93617,2.77432)--(1.93305,2.77469)--(1.92993,2.77506)--(1.92682,2.77543)--(1.92371,2.7758)--(1.92061,2.77616)--(1.91751,2.77653)--(1.91442,2.7769)--(1.91133,2.77726)--(1.90825,2.77763)--(1.90517,2.77799)--(1.90209,2.77836)--(1.89902,2.77872)--(1.89596,2.77908)--(1.89289,2.77944)--
> (1.88983,2.7798)--(1.88678,2.78016)--(1.88373,2.78052)--(1.88069,2.78088)--(1.87765,2.78124)--(1.87461,2.7816)--(1.87158,2.78196)--(1.86855,2.78231)--(1.86553,2.78267)--(1.86251,2.78302)--(1.85949,2.78338)--(1.85648,2.78373)--(1.85347,2.78408)--(1.85047,2.78444)--(1.84747,2.78479)--(1.84448,2.78514)--(1.84149,2.78549)--(1.8385,2.78584)--(1.83552,2.78619)--(1.83254,2.78654)--(1.82957,2.78689)--(1.8266,2.78723)--(1.82364,2.78758)--(1.82068,2.78793)--(1.81772,2.78827)--(1.81477,2.78862)--
> (1.81182,2.78896)--(1.80887,2.7893)--(1.80593,2.78965)--(1.803,2.78999)--(1.80006,2.79033)--(1.79713,2.79067)--(1.79421,2.79101)--(1.79129,2.79135)--(1.78837,2.79169)--(1.78546,2.79203)--(1.78255,2.79237)--(1.77965,2.7927)--(1.77675,2.79304)--(1.77385,2.79338)--(1.77096,2.79371)--(1.76807,2.79405)--(1.76519,2.79438)--(1.7623,2.79471)--(1.75943,2.79505)--(1.75656,2.79538)--(1.75369,2.79571)--(1.75082,2.79604)--(1.74796,2.79637)--(1.7451,2.7967)--(1.74225,2.79703)--(1.7394,2.79736)--
> (1.73655,2.79769)--(1.73371,2.79802)--(1.73087,2.79834)--(1.72804,2.79867)--(1.72521,2.799)--(1.72238,2.79932)--(1.71956,2.79964)--(1.71674,2.79997)--(1.71392,2.80029)--(1.71111,2.80062)--(1.7083,2.80094)--(1.7055,2.80126)--(1.7027,2.80158)--(1.6999,2.8019)--(1.69711,2.80222)--(1.69432,2.80254)--(1.69153,2.80286)--(1.68875,2.80318)--(1.68597,2.80349)--(1.6832,2.80381)--(1.68043,2.80413)--(1.67766,2.80444)--(1.6749,2.80476)--(1.67214,2.80507)--(1.66938,2.80539)--(1.66663,2.8057)--
> (1.66388,2.80602)--(1.66113,2.80633)--(1.65839,2.80664)--(1.65565,2.80695)--(1.65292,2.80726)--(1.65019,2.80757)--(1.64746,2.80788)--(1.64474,2.80819)--(1.64202,2.8085)--(1.6393,2.80881)--(1.63659,2.80912)--(1.63388,2.80942)--(1.63117,2.80973)--(1.62847,2.81003)--(1.62577,2.81034)--(1.62307,2.81064)--(1.62038,2.81095)--(1.61769,2.81125)--(1.615,2.81156)--(1.61232,2.81186)--(1.60964,2.81216)--(1.60697,2.81246)--(1.6043,2.81276)--(1.60163,2.81306)--(1.59896,2.81336)--(1.5963,2.81366)--
> (1.59365,2.81396)--(1.59099,2.81426)--(1.58834,2.81456)--(1.58569,2.81486)--(1.58305,2.81515)--(1.58041,2.81545)--(1.57777,2.81574)--(1.57513,2.81604)--(1.5725,2.81633)--(1.56988,2.81663)--(1.56725,2.81692)--(1.56463,2.81722)--(1.56201,2.81751)--(1.5594,2.8178)--(1.55679,2.81809)--(1.55418,2.81838)--(1.55158,2.81867)--(1.54897,2.81896)--(1.54638,2.81925)--(1.54378,2.81954)--(1.54119,2.81983)--(1.5386,2.82012)--(1.53602,2.82041)--(1.53344,2.82069)--(1.53086,2.82098)--(1.52828,2.82127)--
> (1.52571,2.82155)--(1.52314,2.82184)--(1.52058,2.82212)--(1.51801,2.82241)--(1.51545,2.82269)--(1.5129,2.82297)--(1.51035,2.82325)--(1.5078,2.82354)--(1.50525,2.82382)--(1.50271,2.8241)--(1.50017,2.82438)--(1.49763,2.82466)--(1.49509,2.82494)--(1.49256,2.82522)--(1.49004,2.8255)--(1.48751,2.82578)--(1.48499,2.82605)--(1.48247,2.82633)--(1.47996,2.82661)--(1.47744,2.82688)--(1.47494,2.82716)--(1.47243,2.82743)--(1.46993,2.82771)--(1.46743,2.82798)--(1.46493,2.82826)--(1.46244,2.82853)--
> (1.45994,2.8288)--(1.45746,2.82908)--(1.45497,2.82935)--(1.45249,2.82962)--(1.45001,2.82989)--(1.44754,2.83016)--(1.44506,2.83043)--(1.44259,2.8307)--(1.44013,2.83097)--(1.43766,2.83124)--(1.4352,2.83151)--(1.43274,2.83177)--(1.43029,2.83204)--(1.42784,2.83231)--(1.42539,2.83257)--(1.42294,2.83284)--(1.4205,2.83311)--(1.41806,2.83337)--(1.41562,2.83363)--(1.41319,2.8339)--(1.41076,2.83416)--(1.40833,2.83443)--(1.4059,2.83469)--(1.40348,2.83495)--(1.40106,2.83521)--(1.39864,2.83547)--
> (1.39623,2.83573)--(1.39382,2.83599)--(1.39141,2.83625)--(1.389,2.83651)--(1.3866,2.83677)--(1.3842,2.83703)--(1.3818,2.83729)--(1.37941,2.83755)--(1.37702,2.8378)--(1.37463,2.83806)--(1.37224,2.83832)--(1.36986,2.83857)--(1.36748,2.83883)--(1.3651,2.83908)--(1.36273,2.83934)--(1.36036,2.83959)--(1.35799,2.83985)--(1.35562,2.8401)--(1.35326,2.84035)--(1.3509,2.84061)--(1.34854,2.84086)--(1.34619,2.84111)--(1.34383,2.84136)--(1.34148,2.84161)--(1.33914,2.84186)--(1.33679,2.84211)--
> (1.33445,2.84236)--(1.33211,2.84261)--(1.32978,2.84286)--(1.32744,2.84311)--(1.32511,2.84336)--(1.32278,2.8436)--(1.32046,2.84385)--(1.31814,2.8441)--(1.31582,2.84434)--(1.3135,2.84459)--(1.31118,2.84483)--(1.30887,2.84508)--(1.30656,2.84532)--(1.30426,2.84557)--(1.30195,2.84581)--(1.29965,2.84605)--(1.29735,2.8463)--(1.29505,2.84654)--(1.29276,2.84678)--(1.29047,2.84702)--(1.28818,2.84726)--(1.2859,2.8475)--(1.28361,2.84774)--(1.28133,2.84798)--(1.27905,2.84822)--(1.27678,2.84846)--
> (1.27451,2.8487)--(1.27224,2.84894)--(1.26997,2.84918)--(1.2677,2.84942)--(1.26544,2.84965)--(1.26318,2.84989)--(1.26092,2.85013)--(1.25867,2.85036)--(1.25642,2.8506)--(1.25417,2.85083)--(1.25192,2.85107)--(1.24967,2.8513)--(1.24743,2.85154)--(1.24519,2.85177)--(1.24295,2.852)--(1.24072,2.85223)--(1.23849,2.85247)--(1.23626,2.8527)--(1.23403,2.85293)--(1.23181,2.85316)--(1.22958,2.85339)--(1.22736,2.85362)--(1.22515,2.85385)--(1.22293,2.85408)--(1.22072,2.85431)--(1.21851,2.85454)--
> (1.2163,2.85477)--(1.21409,2.855)--(1.21189,2.85523)--(1.20969,2.85545)--(1.20749,2.85568)--(1.2053,2.85591)--(1.2031,2.85613)--(1.20091,2.85636)--(1.19873,2.85658)--(1.19654,2.85681)--(1.19436,2.85703)--(1.19218,2.85726)--(1.19,2.85748)--(1.18782,2.8577)--(1.18565,2.85793)--(1.18347,2.85815)--(1.1813,2.85837)--(1.17914,2.8586)--(1.17697,2.85882)--(1.17481,2.85904)--(1.17265,2.85926)--(1.17049,2.85948)--(1.16834,2.8597)--(1.16619,2.85992)--(1.16404,2.86014)--(1.16189,2.86036)--(1.15974,2.86058)--
> (1.1576,2.8608)--(1.15546,2.86101)--(1.15332,2.86123)--(1.15118,2.86145)--(1.14905,2.86167)--(1.14691,2.86188)--(1.14478,2.8621)--(1.14266,2.86231)--(1.14053,2.86253)--(1.13841,2.86274)--(1.13629,2.86296)--(1.13417,2.86317)--(1.13205,2.86339)--(1.12994,2.8636)--(1.12783,2.86381)--(1.12572,2.86403)--(1.12361,2.86424)--(1.12151,2.86445)--(1.1194,2.86466)--(1.1173,2.86488)--(1.1152,2.86509)--(1.11311,2.8653)--(1.11101,2.86551)--(1.10892,2.86572)--(1.10683,2.86593)--(1.10475,2.86614)--
> (1.10266,2.86635)--(1.10058,2.86656)--(1.0985,2.86676)--(1.09642,2.86697)--(1.09434,2.86718)--(1.09227,2.86739)--(1.0902,2.86759)--(1.08813,2.8678)--(1.08606,2.86801)--(1.08399,2.86821)--(1.08193,2.86842)--(1.07987,2.86862)--(1.07781,2.86883)--(1.07575,2.86903)--(1.0737,2.86924)--(1.07164,2.86944)--(1.06959,2.86965)--(1.06755,2.86985)--(1.0655,2.87005)--(1.06345,2.87026)--(1.06141,2.87046)--(1.05937,2.87066)--(1.05733,2.87086)--(1.0553,2.87106)--(1.05327,2.87126)--(1.05123,2.87146)--
> (1.0492,2.87166)--(1.04718,2.87186)--(1.04515,2.87206)--(1.04313,2.87226)--(1.04111,2.87246)--(1.03909,2.87266)--(1.03707,2.87286)--(1.03506,2.87306)--(1.03304,2.87326)--(1.03103,2.87345)--(1.02902,2.87365)--(1.02702,2.87385)--(1.02501,2.87404)--(1.02301,2.87424)--(1.02101,2.87443)--(1.01901,2.87463)--(1.01701,2.87482)--(1.01502,2.87502)--(1.01303,2.87521)--(1.01104,2.87541)--(1.00905,2.8756)--(1.00706,2.8758)--(1.00508,2.87599)--(1.00309,2.87618)--(1.00111,2.87637)--(0.999133,2.87657)--
> (0.997157,2.87676)--(0.995182,2.87695)--(0.99321,2.87714)--(0.991239,2.87733)--(0.98927,2.87752)--(0.987303,2.87771)--(0.985338,2.8779)--(0.983376,2.87809)--(0.981415,2.87828)--(0.979456,2.87847)--(0.977499,2.87866)--(0.975544,2.87885)--(0.973591,2.87904)--(0.971639,2.87922)--(0.96969,2.87941)--(0.967743,2.8796)--(0.965798,2.87979)--(0.963854,2.87997)--(0.961912,2.88016)--(0.959973,2.88035)--(0.958035,2.88053)--(0.956099,2.88072)--(0.954165,2.8809)--(0.952233,2.88109)--(0.950303,2.88127)--
> (0.948375,2.88145)--(0.946449,2.88164)--(0.944524,2.88182)--(0.942602,2.88201)--(0.940681,2.88219)--(0.938762,2.88237)--(0.936845,2.88255)--(0.93493,2.88274)--(0.933017,2.88292)--(0.931105,2.8831)--(0.929196,2.88328)--(0.927288,2.88346)--(0.925383,2.88364)--(0.923479,2.88382)--(0.921576,2.884)--(0.919676,2.88418)--(0.917778,2.88436)--(0.915881,2.88454)--(0.913986,2.88472)--(0.912093,2.8849)--(0.910202,2.88508)--(0.908313,2.88525)--(0.906426,2.88543)--(0.90454,2.88561)--(0.902656,2.88579)--
> (0.900774,2.88596)--(0.898894,2.88614)--(0.897015,2.88632)--(0.895139,2.88649)--(0.893264,2.88667)--(0.891391,2.88684)--(0.889519,2.88702)--(0.88765,2.88719)--(0.885782,2.88737)--(0.883916,2.88754)--(0.882052,2.88772)--(0.880189,2.88789)--(0.878329,2.88806)--(0.87647,2.88824)--(0.874613,2.88841)--(0.872757,2.88858)--(0.870904,2.88875)--(0.869052,2.88893)--(0.867202,2.8891)--(0.865353,2.88927)--(0.863507,2.88944)--(0.861662,2.88961)--(0.859819,2.88978)--(0.857977,2.88995)--(0.856138,2.89012)--
> (0.8543,2.89029)--(0.852463,2.89046)--(0.850629,2.89063)--(0.848796,2.8908)--(0.846965,2.89097)--(0.845135,2.89114)--(0.843308,2.8913)--(0.841482,2.89147)--(0.839657,2.89164)--(0.837835,2.89181)--(0.836014,2.89197)--(0.834195,2.89214)--(0.832377,2.89231)--(0.830561,2.89247)--(0.828747,2.89264)--(0.826934,2.8928)--(0.825124,2.89297)--(0.823314,2.89313)--(0.821507,2.8933)--(0.819701,2.89346)--(0.817897,2.89363)--(0.816094,2.89379)--(0.814294,2.89396)--(0.812494,2.89412)--(0.810697,2.89428)--
> (0.808901,2.89445)--(0.807107,2.89461)--(0.805314,2.89477)--(0.803523,2.89493)--(0.801734,2.89509)--(0.799946,2.89526)--(0.79816,2.89542)--(0.796375,2.89558)--(0.794593,2.89574)--(0.792811,2.8959)--(0.791032,2.89606)--(0.789254,2.89622)--(0.787477,2.89638)--(0.785703,2.89654)--(0.78393,2.8967)--(0.782158,2.89686)--(0.780388,2.89702)--(0.77862,2.89718)--(0.776853,2.89733)--(0.775088,2.89749)--(0.773324,2.89765)--(0.771562,2.89781)--(0.769802,2.89796)--(0.768043,2.89812)--(0.766286,2.89828)--
> (0.76453,2.89843)--(0.762776,2.89859)--(0.761023,2.89875)--(0.759272,2.8989)--(0.757523,2.89906)--(0.755775,2.89921)--(0.754029,2.89937)--(0.752284,2.89952)--(0.750541,2.89968)--(0.748799,2.89983)--(0.747059,2.89999)--(0.74532,2.90014)--(0.743583,2.90029)--(0.741848,2.90045)--(0.740114,2.9006)--(0.738382,2.90075)--(0.736651,2.9009)--(0.734921,2.90106)--(0.733193,2.90121)--(0.731467,2.90136)--(0.729742,2.90151)--(0.728019,2.90166)--(0.726297,2.90181)--(0.724577,2.90196)--(0.722858,2.90211)--
> (0.721141,2.90226)--(0.719425,2.90241)--(0.717711,2.90256)--(0.715998,2.90271)--(0.714287,2.90286)--(0.712577,2.90301)--(0.710869,2.90316)--(0.709162,2.90331)--(0.707457,2.90346)--(0.705753,2.90361)--(0.704051,2.90375)--(0.70235,2.9039)--(0.700651,2.90405)--(0.698953,2.9042)--(0.697256,2.90434)--(0.695561,2.90449)--(0.693868,2.90463)--(0.692176,2.90478)--(0.690485,2.90493)--(0.688796,2.90507)--(0.687108,2.90522)--(0.685422,2.90536)--(0.683737,2.90551)--(0.682054,2.90565)--(0.680372,2.9058)--
> (0.678692,2.90594)--(0.677013,2.90609)--(0.675335,2.90623)--(0.673659,2.90637)--(0.671984,2.90652)--(0.670311,2.90666)--(0.668639,2.9068)--(0.666969,2.90694)--(0.6653,2.90709)--(0.663632,2.90723)--(0.661966,2.90737)--(0.660301,2.90751)--(0.658638,2.90765)--(0.656976,2.9078)--(0.655315,2.90794)--(0.653656,2.90808)--(0.651998,2.90822)--(0.650342,2.90836)--(0.648687,2.9085)--(0.647033,2.90864)--(0.645381,2.90878)--(0.64373,2.90892)--(0.642081,2.90906)--(0.640433,2.90919)--(0.638786,2.90933)--
> (0.637141,2.90947)--(0.635497,2.90961)--(0.633855,2.90975)--(0.632213,2.90989)--(0.630574,2.91002)--(0.628935,2.91016)--(0.627298,2.9103)--(0.625663,2.91043)--(0.624028,2.91057)--(0.622395,2.91071)--(0.620764,2.91084)--(0.619133,2.91098)--(0.617505,2.91112)--(0.615877,2.91125)--(0.614251,2.91139)--(0.612626,2.91152)--(0.611002,2.91166)--(0.60938,2.91179)--(0.607759,2.91193)--(0.60614,2.91206)--(0.604522,2.91219)--(0.602905,2.91233)--(0.601289,2.91246)--(0.599675,2.9126)--(0.598062,2.91273)--
> (0.596451,2.91286)--(0.59484,2.91299)--(0.593232,2.91313)--(0.591624,2.91326)--(0.590018,2.91339)--(0.588413,2.91352)--(0.586809,2.91365)--(0.585207,2.91379)--(0.583606,2.91392)--(0.582006,2.91405)--(0.580407,2.91418)--(0.57881,2.91431)--(0.577214,2.91444)--(0.57562,2.91457)--(0.574026,2.9147)--(0.572434,2.91483)--(0.570844,2.91496)--(0.569254,2.91509)--(0.567666,2.91522)--(0.566079,2.91535)--(0.564493,2.91547)--(0.562909,2.9156)--(0.561326,2.91573)--(0.559744,2.91586)--(0.558164,2.91599)--
> (0.556584,2.91611)--(0.555006,2.91624)--(0.55343,2.91637)--(0.551854,2.9165)--(0.55028,2.91662)--(0.548707,2.91675)--(0.547135,2.91688)--(0.545565,2.917)--(0.543996,2.91713)--(0.542428,2.91725)--(0.540861,2.91738)--(0.539295,2.9175)--(0.537731,2.91763)--(0.536168,2.91775)--(0.534606,2.91788)--(0.533046,2.918)--(0.531486,2.91813)--(0.529928,2.91825)--(0.528371,2.91838)--(0.526816,2.9185)--(0.525261,2.91862)--(0.523708,2.91875)--(0.522156,2.91887)--(0.520606,2.91899)--(0.519056,2.91911)--
> (0.517508,2.91924)--(0.515961,2.91936)--(0.514415,2.91948)--(0.51287,2.9196)--(0.511326,2.91972)--(0.509784,2.91985)--(0.508243,2.91997)--(0.506703,2.92009)--(0.505164,2.92021)--(0.503627,2.92033)--(0.502091,2.92045)--(0.500556,2.92057)--(0.499022,2.92069)--(0.497489,2.92081)--(0.495957,2.92093)--(0.494427,2.92105)--(0.492898,2.92117)--(0.49137,2.92129)--(0.489843,2.92141)--(0.488317,2.92153)--(0.486793,2.92164)--(0.485269,2.92176)--(0.483747,2.92188)--(0.482226,2.922)--(0.480706,2.92212)--
> (0.479188,2.92223)--(0.47767,2.92235)--(0.476154,2.92247)--(0.474639,2.92259)--(0.473125,2.9227)--(0.471612,2.92282)--(0.4701,2.92293)--(0.468589,2.92305)--(0.46708,2.92317)--(0.465572,2.92328)--(0.464065,2.9234)--(0.462559,2.92351)--(0.461054,2.92363)--(0.45955,2.92374)--(0.458047,2.92386)--(0.456546,2.92397)--(0.455046,2.92409)--(0.453546,2.9242)--(0.452048,2.92432)--(0.450551,2.92443)--(0.449056,2.92454)--(0.447561,2.92466)--(0.446067,2.92477)--(0.444575,2.92488)--(0.443084,2.925)--
> (0.441593,2.92511)--(0.440104,2.92522)--(0.438616,2.92533)--(0.437129,2.92545)--(0.435644,2.92556)--(0.434159,2.92567)--(0.432675,2.92578)--(0.431193,2.92589)--(0.429712,2.926)--(0.428231,2.92611)--(0.426752,2.92623)--(0.425274,2.92634)--(0.423797,2.92645)--(0.422321,2.92656)--(0.420847,2.92667)--(0.419373,2.92678)--(0.4179,2.92689)--(0.416429,2.927)--(0.414958,2.92711)--(0.413489,2.92722)--(0.412021,2.92732)--(0.410553,2.92743)--(0.409087,2.92754)--(0.407622,2.92765)--(0.406158,2.92776)--
> (0.404695,2.92787)--(0.403233,2.92797)--(0.401773,2.92808)--(0.400313,2.92819)--(0.398854,2.9283)--(0.397397,2.9284)--(0.39594,2.92851)--(0.394485,2.92862)--(0.39303,2.92872)--(0.391577,2.92883)--(0.390125,2.92894)--(0.388673,2.92904)--(0.387223,2.92915)--(0.385774,2.92926)--(0.384326,2.92936)--(0.382879,2.92947)--(0.381433,2.92957)--(0.379988,2.92968)--(0.378544,2.92978)--(0.377101,2.92989)--(0.375659,2.92999)--(0.374218,2.9301)--(0.372779,2.9302)--(0.37134,2.9303)--(0.369902,2.93041)--
> (0.368465,2.93051)--(0.36703,2.93061)--(0.365595,2.93072)--(0.364161,2.93082)--(0.362729,2.93092)--(0.361297,2.93103)--(0.359867,2.93113)--(0.358437,2.93123)--(0.357008,2.93133)--(0.355581,2.93144)--(0.354154,2.93154)--(0.352729,2.93164)--(0.351304,2.93174)--(0.349881,2.93184)--(0.348458,2.93194)--(0.347037,2.93204)--(0.345616,2.93215)--(0.344197,2.93225)--(0.342778,2.93235)--(0.341361,2.93245)--(0.339944,2.93255)--(0.338529,2.93265)--(0.337114,2.93275)--(0.335701,2.93285)--(0.334288,2.93295)--
> (0.332877,2.93305)--(0.331466,2.93315)--(0.330056,2.93324)--(0.328648,2.93334)--(0.32724,2.93344)--(0.325834,2.93354)--(0.324428,2.93364)--(0.323023,2.93374)--(0.321619,2.93383)--(0.320217,2.93393)--(0.318815,2.93403)--(0.317414,2.93413)--(0.316014,2.93422)--(0.314615,2.93432)--(0.313218,2.93442)--(0.311821,2.93452)--(0.310425,2.93461)--(0.30903,2.93471)--(0.307636,2.93481)--(0.306242,2.9349)--(0.30485,2.935)--(0.303459,2.93509)--(0.302069,2.93519)--(0.30068,2.93528)--(0.299291,2.93538)--
> (0.297904,2.93547)--(0.296517,2.93557)--(0.295132,2.93566)--(0.293747,2.93576)--(0.292364,2.93585)--(0.290981,2.93595)--(0.289599,2.93604)--(0.288218,2.93614)--(0.286839,2.93623)--(0.28546,2.93632)--(0.284082,2.93642)--(0.282705,2.93651)--(0.281328,2.9366)--(0.279953,2.9367)--(0.278579,2.93679)--(0.277206,2.93688)--(0.275833,2.93698)--(0.274462,2.93707)--(0.273091,2.93716)--(0.271721,2.93725)--(0.270353,2.93734)--(0.268985,2.93744)--(0.267618,2.93753)--(0.266252,2.93762)--(0.264887,2.93771)--
> (0.263523,2.9378)--(0.262159,2.93789)--(0.260797,2.93798)--(0.259435,2.93807)--(0.258075,2.93816)--(0.256715,2.93826)--(0.255357,2.93835)--(0.253999,2.93844)--(0.252642,2.93853)--(0.251286,2.93861)--(0.249931,2.9387)--(0.248576,2.93879)--(0.247223,2.93888)--(0.24587,2.93897)--(0.244519,2.93906)--(0.243168,2.93915)--(0.241818,2.93924)--(0.240469,2.93933)--(0.239121,2.93942)--(0.237774,2.9395)--(0.236428,2.93959)--(0.235083,2.93968)--(0.233738,2.93977)--(0.232394,2.93985)--(0.231052,2.93994)--
> (0.22971,2.94003)--(0.228369,2.94012)--(0.227029,2.9402)--(0.225689,2.94029)--(0.224351,2.94038)--(0.223013,2.94046)--(0.221677,2.94055)--(0.220341,2.94064)--(0.219006,2.94072)--(0.217672,2.94081)--(0.216339,2.94089)--(0.215006,2.94098)--(0.213675,2.94106)--(0.212344,2.94115)--(0.211015,2.94123)--(0.209686,2.94132)--(0.208358,2.9414)--(0.20703,2.94149)--(0.205704,2.94157)--(0.204379,2.94166)--(0.203054,2.94174)--(0.20173,2.94183)--(0.200407,2.94191)--(0.199085,2.94199)--(0.197764,2.94208)--
> (0.196443,2.94216)--(0.195124,2.94224)--(0.193805,2.94233)--(0.192487,2.94241)--(0.19117,2.94249)--(0.189854,2.94258)--(0.188538,2.94266)--(0.187224,2.94274)--(0.18591,2.94282)--(0.184597,2.94291)--(0.183285,2.94299)--(0.181974,2.94307)--(0.180663,2.94315)--(0.179354,2.94323)--(0.178045,2.94331)--(0.176737,2.94339)--(0.17543,2.94348)--(0.174123,2.94356)--(0.172818,2.94364)--(0.171513,2.94372)--(0.170209,2.9438)--(0.168906,2.94388)--(0.167604,2.94396)--(0.166302,2.94404)--(0.165002,2.94412)--
> (0.163702,2.9442)--(0.162403,2.94428)--(0.161105,2.94436)--(0.159807,2.94444)--(0.158511,2.94452)--(0.157215,2.9446)--(0.15592,2.94467)--(0.154626,2.94475)--(0.153332,2.94483)--(0.15204,2.94491)--(0.150748,2.94499)--(0.149457,2.94507)--(0.148167,2.94515)--(0.146877,2.94522)--(0.145589,2.9453)--(0.144301,2.94538)--(0.143014,2.94546)--(0.141728,2.94553)--(0.140442,2.94561)--(0.139157,2.94569)--(0.137873,2.94576)--(0.13659,2.94584)--(0.135308,2.94592)--(0.134026,2.94599)--(0.132746,2.94607)--
> (0.131466,2.94615)--(0.130186,2.94622)--(0.128908,2.9463)--(0.12763,2.94638)--(0.126353,2.94645)--(0.125077,2.94653)--(0.123802,2.9466)--(0.122527,2.94668)--(0.121254,2.94675)--(0.119981,2.94683)--(0.118708,2.9469)--(0.117437,2.94698)--(0.116166,2.94705)--(0.114896,2.94713)--(0.113627,2.9472)--(0.112358,2.94727)--(0.111091,2.94735)--(0.109824,2.94742)--(0.108557,2.9475)--(0.107292,2.94757)--(0.106027,2.94764)--(0.104763,2.94772)--(0.1035,2.94779)--(0.102238,2.94786)--(0.100976,2.94793)--
> (0.0997151,2.94801)--(0.0984549,2.94808)--(0.0971955,2.94815)--(0.0959368,2.94823)--(0.0946788,2.9483)--(0.0934216,2.94837)--(0.0921651,2.94844)--(0.0909094,2.94851)--(0.0896544,2.94858)--(0.0884002,2.94866)--(0.0871467,2.94873)--(0.0858939,2.9488)--(0.0846418,2.94887)--(0.0833905,2.94894)--(0.08214,2.94901)--(0.0808901,2.94908)--(0.079641,2.94915)--(0.0783926,2.94922)--(0.077145,2.94929)--(0.075898,2.94936)--(0.0746518,2.94943)--(0.0734064,2.9495)--(0.0721616,2.94957)--(0.0709176,2.94964)--
> (0.0696743,2.94971)--(0.0684317,2.94978)--(0.0671898,2.94985)--(0.0659486,2.94992)--(0.0647082,2.94999)--(0.0634685,2.95006)--(0.0622295,2.95013)--(0.0609912,2.9502)--(0.0597536,2.95026)--(0.0585167,2.95033)--(0.0572806,2.9504)--(0.0560451,2.95047)--(0.0548104,2.95054)--(0.0535764,2.95061)--(0.052343,2.95067)--(0.0511104,2.95074)--(0.0498785,2.95081)--(0.0486473,2.95088)--(0.0474167,2.95094)--(0.0461869,2.95101)--(0.0449578,2.95108)--(0.0437294,2.95114)--(0.0425017,2.95121)--(0.0412747,2.95128)--
> (0.0400483,2.95134)--(0.0388227,2.95141)--(0.0375977,2.95148)--(0.0363735,2.95154)--(0.0351499,2.95161)--(0.0339271,2.95167)--(0.0327049,2.95174)--(0.0314834,2.9518)--(0.0302626,2.95187)--(0.0290425,2.95193)--(0.027823,2.952)--(0.0266043,2.95206)--(0.0253862,2.95213)--(0.0241688,2.95219)--(0.0229521,2.95226)--(0.0217361,2.95232)--(0.0205207,2.95239)--(0.0193061,2.95245)--(0.0180921,2.95252)--(0.0168787,2.95258)--(0.0156661,2.95264)--(0.0144541,2.95271)--(0.0132428,2.95277)--(0.0120322,2.95283)--
> (0.0108222,2.9529)--(0.00961292,2.95296)--(0.0084043,2.95302)--(0.00719634,2.95309)--(0.00598904,2.95315)--(0.00478242,2.95321)--(0.00357645,2.95328)--(0.00237115,2.95334)--(0.00116651,2.9534)--(-3.74664e-05,2.95346)--(-0.00124079,2.95352)--(-0.00244345,2.95359)--(-0.00364545,2.95365)--(-0.00484679,2.95371)--(-0.00604748,2.95377)--(-0.00724752,2.95383)--(-0.0084469,2.95389)--(-0.00964563,2.95396)--(-0.0108437,2.95402)--(-0.0120411,2.95408)--(-0.0132379,2.95414)--(-0.014434,2.9542)--
> (-0.0156295,2.95426)--(-0.0168243,2.95432)--(-0.0180185,2.95438)--(-0.0192121,2.95444)--(-0.020405,2.9545)--(-0.0215972,2.95456)--(-0.0227888,2.95462)--(-0.0239798,2.95468)--(-0.0251701,2.95474)--(-0.0263598,2.9548)--(-0.0275489,2.95486)--(-0.0287373,2.95492)--(-0.0299251,2.95498)--(-0.0311123,2.95504)--(-0.0322988,2.95509)--(-0.0334846,2.95515)--(-0.0346699,2.95521)--(-0.0358545,2.95527)--(-0.0370385,2.95533)--(-0.0382219,2.95539)--(-0.0394046,2.95545)--(-0.0405867,2.9555)--(-0.0417682,2.95556)--
> (-0.042949,2.95562)--(-0.0441292,2.95568)--(-0.0453088,2.95573)--(-0.0464878,2.95579)--(-0.0476662,2.95585)--(-0.0488439,2.95591)--(-0.050021,2.95596)--(-0.0511975,2.95602)--(-0.0523734,2.95608)--(-0.0535487,2.95613)--(-0.0547233,2.95619)--(-0.0558974,2.95625)--(-0.0570708,2.9563)--(-0.0582436,2.95636)--(-0.0594158,2.95642)--(-0.0605874,2.95647)--(-0.0617584,2.95653)--(-0.0629287,2.95658)--(-0.0640985,2.95664)--(-0.0652676,2.9567)--(-0.0664362,2.95675)--(-0.0676041,2.95681)--(-0.0687714,2.95686)--
> (-0.0699382,2.95692)--(-0.0711043,2.95697)--(-0.0722698,2.95703)--(-0.0734347,2.95708)--(-0.074599,2.95714)--(-0.0757628,2.95719)--(-0.0769259,2.95724)--(-0.0780884,2.9573)--(-0.0792503,2.95735)--(-0.0804117,2.95741)--(-0.0815724,2.95746)--(-0.0827326,2.95751)--(-0.0838921,2.95757)--(-0.0850511,2.95762)--(-0.0862094,2.95767)--(-0.0873672,2.95773)--(-0.0885244,2.95778)--(-0.089681,2.95783)--(-0.090837,2.95789)--(-0.0919924,2.95794)--(-0.0931473,2.95799)--(-0.0943015,2.95805)--(-0.0954552,2.9581)--
> (-0.0966083,2.95815)--(-0.0977608,2.9582)--(-0.0989127,2.95826)--(-0.100064,2.95831)--(-0.101215,2.95836)--(-0.102365,2.95841)--(-0.103515,2.95846)--(-0.104664,2.95851)--(-0.105812,2.95857)--(-0.10696,2.95862)--(-0.108107,2.95867)--(-0.109254,2.95872)--(-0.1104,2.95877)--(-0.111546,2.95882)--(-0.112691,2.95887)--(-0.113835,2.95892)--(-0.114979,2.95897)--(-0.116122,2.95902)--(-0.117265,2.95907)--(-0.118407,2.95912)--(-0.119549,2.95918)--(-0.12069,2.95923)--(-0.121831,2.95928)--(-0.12297,2.95932)--
> (-0.12411,2.95937)--(-0.125249,2.95942)--(-0.126387,2.95947)--(-0.127525,2.95952)--(-0.128662,2.95957)--(-0.129798,2.95962)--(-0.130934,2.95967)--(-0.13207,2.95972)--(-0.133205,2.95977)--(-0.134339,2.95982)--(-0.135473,2.95987)--(-0.136606,2.95991)--(-0.137739,2.95996)--(-0.138871,2.96001)--(-0.140002,2.96006)--(-0.141133,2.96011)--(-0.142264,2.96015)--(-0.143394,2.9602)--(-0.144523,2.96025)--(-0.145652,2.9603)--(-0.14678,2.96035)--(-0.147908,2.96039)--(-0.149035,2.96044)--(-0.150162,2.96049)--
> (-0.151288,2.96053)--(-0.152414,2.96058)--(-0.153539,2.96063)--(-0.154663,2.96067)--(-0.155787,2.96072)--(-0.156911,2.96077)--(-0.158033,2.96081)--(-0.159156,2.96086)--(-0.160278,2.96091)--(-0.161399,2.96095)--(-0.16252,2.961)--(-0.16364,2.96104)--(-0.16476,2.96109)--(-0.165879,2.96114)--(-0.166997,2.96118)--(-0.168115,2.96123)--(-0.169233,2.96127)--(-0.17035,2.96132)--(-0.171467,2.96136)--(-0.172583,2.96141)--(-0.173698,2.96145)--(-0.174813,2.9615)--(-0.175927,2.96154)--(-0.177041,2.96159)--
> (-0.178155,2.96163)--(-0.179267,2.96167)--(-0.18038,2.96172)--(-0.181492,2.96176)--(-0.182603,2.96181)--(-0.183714,2.96185)--(-0.184824,2.96189)--(-0.185934,2.96194)--(-0.187043,2.96198)--(-0.188151,2.96203)--(-0.18926,2.96207)--(-0.190367,2.96211)--(-0.191474,2.96216)--(-0.192581,2.9622)--(-0.193687,2.96224)--(-0.194793,2.96228)--(-0.195898,2.96233)--(-0.197003,2.96237)--(-0.198107,2.96241)--(-0.19921,2.96245)--(-0.200313,2.9625)--(-0.201416,2.96254)--(-0.202518,2.96258)--(-0.203619,2.96262)--
> (-0.204721,2.96266)--(-0.205821,2.96271)--(-0.206921,2.96275)--(-0.208021,2.96279)--(-0.20912,2.96283)--(-0.210218,2.96287)--(-0.211316,2.96291)--(-0.212414,2.96296)--(-0.213511,2.963)--(-0.214608,2.96304)--(-0.215704,2.96308)--(-0.216799,2.96312)--(-0.217894,2.96316)--(-0.218989,2.9632)--(-0.220083,2.96324)--(-0.221177,2.96328)--(-0.22227,2.96332)--(-0.223362,2.96336)--(-0.224454,2.9634)--(-0.225546,2.96344)--(-0.226637,2.96348)--(-0.227728,2.96352)--(-0.228818,2.96356)--(-0.229908,2.9636)--
> (-0.230997,2.96364)--(-0.232086,2.96368)--(-0.233174,2.96372)--(-0.234262,2.96376)--(-0.235349,2.9638)--(-0.236436,2.96384)--(-0.237522,2.96387)--(-0.238608,2.96391)--(-0.239693,2.96395)--(-0.240778,2.96399)--(-0.241862,2.96403)--(-0.242946,2.96407)--(-0.24403,2.9641)--(-0.245113,2.96414)--(-0.246195,2.96418)--(-0.247277,2.96422)--(-0.248359,2.96426)--(-0.24944,2.96429)--(-0.25052,2.96433)--(-0.2516,2.96437)--(-0.25268,2.96441)--(-0.253759,2.96444)--(-0.254838,2.96448)--(-0.255916,2.96452)--
> (-0.256994,2.96455)--(-0.258071,2.96459)--(-0.259148,2.96463)--(-0.260224,2.96467)--(-0.2613,2.9647)--(-0.262376,2.96474)--(-0.263451,2.96477)--(-0.264525,2.96481)--(-0.265599,2.96485)--(-0.266673,2.96488)--(-0.267746,2.96492)--(-0.268819,2.96496)--(-0.269891,2.96499)--(-0.270963,2.96503)--(-0.272034,2.96506)--(-0.273105,2.9651)--(-0.274175,2.96513)--(-0.275245,2.96517)--(-0.276314,2.9652)--(-0.277383,2.96524)--(-0.278452,2.96527)--(-0.27952,2.96531)--(-0.280588,2.96534)--(-0.281655,2.96538)--
> (-0.282722,2.96541)--(-0.283788,2.96545)--(-0.284854,2.96548)--(-0.285919,2.96552)--(-0.286984,2.96555)--(-0.288049,2.96558)--(-0.289113,2.96562)--(-0.290176,2.96565)--(-0.29124,2.96569)--(-0.292302,2.96572)--(-0.293365,2.96575)--(-0.294426,2.96579)--(-0.295488,2.96582)--(-0.296549,2.96585)--(-0.297609,2.96589)--(-0.298669,2.96592)--(-0.299729,2.96595)--(-0.300788,2.96599)--(-0.301847,2.96602)--(-0.302905,2.96605)--(-0.303963,2.96608)--(-0.30502,2.96612)--(-0.306077,2.96615)--(-0.307134,2.96618)--
> (-0.30819,2.96621)--(-0.309246,2.96625)--(-0.310301,2.96628)--(-0.311356,2.96631)--(-0.31241,2.96634)--(-0.313464,2.96637)--(-0.314518,2.96641)--(-0.315571,2.96644)--(-0.316624,2.96647)--(-0.317676,2.9665)--(-0.318728,2.96653)--(-0.319779,2.96656)--(-0.32083,2.96659)--(-0.321881,2.96662)--(-0.322931,2.96666)--(-0.32398,2.96669)--(-0.32503,2.96672)--(-0.326078,2.96675)--(-0.327127,2.96678)--(-0.328175,2.96681)--(-0.329222,2.96684)--(-0.33027,2.96687)--(-0.331316,2.9669)--(-0.332363,2.96693)--
> (-0.333409,2.96696)--(-0.334454,2.96699)--(-0.335499,2.96702)--(-0.336544,2.96705)--(-0.337588,2.96708)--(-0.338632,2.96711)--(-0.339675,2.96714)--(-0.340718,2.96717)--(-0.341761,2.9672)--(-0.342803,2.96722)--(-0.343845,2.96725)--(-0.344886,2.96728)--(-0.345927,2.96731)--(-0.346967,2.96734)--(-0.348008,2.96737)--(-0.349047,2.9674)--(-0.350086,2.96743)--(-0.351125,2.96745)--(-0.352164,2.96748)--(-0.353202,2.96751)--(-0.35424,2.96754)--(-0.355277,2.96757)--(-0.356314,2.96759)--(-0.35735,2.96762)--
> (-0.358386,2.96765)--(-0.359422,2.96768)--(-0.360457,2.9677)--(-0.361492,2.96773)--(-0.362526,2.96776)--(-0.36356,2.96779)--(-0.364594,2.96781)--(-0.365627,2.96784)--(-0.36666,2.96787)--(-0.367692,2.9679)--(-0.368724,2.96792)--(-0.369756,2.96795)--(-0.370787,2.96798)--(-0.371818,2.968)--(-0.372849,2.96803)--(-0.373879,2.96805)--(-0.374908,2.96808)--(-0.375938,2.96811)--(-0.376967,2.96813)--(-0.377995,2.96816)--(-0.379023,2.96818)--(-0.380051,2.96821)--(-0.381078,2.96824)--(-0.382105,2.96826)--
> (-0.383132,2.96829)--(-0.384158,2.96831)--(-0.385184,2.96834)--(-0.386209,2.96836)--(-0.387234,2.96839)--(-0.388259,2.96841)--(-0.389283,2.96844)--(-0.390307,2.96846)--(-0.39133,2.96849)--(-0.392353,2.96851)--(-0.393376,2.96854)--(-0.394398,2.96856)--(-0.39542,2.96859)--(-0.396442,2.96861)--(-0.397463,2.96863)--(-0.398484,2.96866)--(-0.399504,2.96868)--(-0.400524,2.96871)--(-0.401544,2.96873)--(-0.402563,2.96875)--(-0.403582,2.96878)--(-0.404601,2.9688)--(-0.405619,2.96882)--(-0.406636,2.96885)--
> (-0.407654,2.96887)--(-0.408671,2.96889)--(-0.409688,2.96892)--(-0.410704,2.96894)--(-0.41172,2.96896)--(-0.412735,2.96899)--(-0.413751,2.96901)--(-0.414765,2.96903)--(-0.41578,2.96906)--(-0.416794,2.96908)--(-0.417808,2.9691)--(-0.418821,2.96912)--(-0.419834,2.96914)--(-0.420846,2.96917)--(-0.421859,2.96919)--(-0.422871,2.96921)--(-0.423882,2.96923)--(-0.424893,2.96925)--(-0.425904,2.96928)--(-0.426914,2.9693)--(-0.427924,2.96932)--(-0.428934,2.96934)--(-0.429943,2.96936)--(-0.430952,2.96938)--
> (-0.431961,2.9694)--(-0.432969,2.96943)--(-0.433977,2.96945)--(-0.434985,2.96947)--(-0.435992,2.96949)--(-0.436999,2.96951)--(-0.438005,2.96953)--(-0.439011,2.96955)--(-0.440017,2.96957)--(-0.441022,2.96959)--(-0.442027,2.96961)--(-0.443032,2.96963)--(-0.444036,2.96965)--(-0.44504,2.96967)--(-0.446044,2.96969)--(-0.447047,2.96971)--(-0.44805,2.96973)--(-0.449053,2.96975)--(-0.450055,2.96977)--(-0.451057,2.96979)--(-0.452058,2.96981)--(-0.45306,2.96983)--(-0.45406,2.96985)--(-0.455061,2.96987)--
> (-0.456061,2.96989)--(-0.457061,2.96991)--(-0.45806,2.96992)--(-0.459059,2.96994)--(-0.460058,2.96996)--(-0.461057,2.96998)--(-0.462055,2.97)--(-0.463052,2.97002)--(-0.46405,2.97004)--(-0.465047,2.97005)--(-0.466044,2.97007)--(-0.46704,2.97009)--(-0.468036,2.97011)--(-0.469032,2.97013)--(-0.470027,2.97014)--(-0.471022,2.97016)--(-0.472017,2.97018)--(-0.473011,2.9702)--(-0.474005,2.97022)--(-0.474999,2.97023)--(-0.475992,2.97025)--(-0.476985,2.97027)--(-0.477978,2.97028)--(-0.47897,2.9703)--
> (-0.479962,2.97032)--(-0.480954,2.97034)--(-0.481945,2.97035)--(-0.482936,2.97037)--(-0.483927,2.97039)--(-0.484917,2.9704)--(-0.485907,2.97042)--(-0.486897,2.97043)--(-0.487886,2.97045)--(-0.488875,2.97047)--(-0.489864,2.97048)--(-0.490852,2.9705)--(-0.49184,2.97052)--(-0.492828,2.97053)--(-0.493815,2.97055)--(-0.494802,2.97056)--(-0.495789,2.97058)--(-0.496775,2.97059)--(-0.497762,2.97061)--(-0.498747,2.97063)--(-0.499733,2.97064)--(-0.500718,2.97066)--(-0.501703,2.97067)--(-0.502687,2.97069)--
> (-0.503671,2.9707)--(-0.504655,2.97072)--(-0.505639,2.97073)--(-0.506622,2.97075)--(-0.507605,2.97076)--(-0.508587,2.97077)--(-0.50957,2.97079)--(-0.510552,2.9708)--(-0.511533,2.97082)--(-0.512515,2.97083)--(-0.513496,2.97085)--(-0.514476,2.97086)--(-0.515457,2.97087)--(-0.516437,2.97089)--(-0.517416,2.9709)--(-0.518396,2.97092)--(-0.519375,2.97093)--(-0.520354,2.97094)--(-0.521332,2.97096)--(-0.52231,2.97097)--(-0.523288,2.97098)--(-0.524266,2.971)--(-0.525243,2.97101)--(-0.52622,2.97102)--
> (-0.527197,2.97103)--(-0.528173,2.97105)--(-0.529149,2.97106)--(-0.530125,2.97107)--(-0.5311,2.97109)--(-0.532075,2.9711)--(-0.53305,2.97111)--(-0.534025,2.97112)--(-0.534999,2.97114)--(-0.535973,2.97115)--(-0.536946,2.97116)--(-0.537919,2.97117)--(-0.538892,2.97118)--(-0.539865,2.9712)--(-0.540838,2.97121)--(-0.54181,2.97122)--(-0.542781,2.97123)--(-0.543753,2.97124)--(-0.544724,2.97125)--(-0.545695,2.97126)--(-0.546666,2.97128)--(-0.547636,2.97129)--(-0.548606,2.9713)--(-0.549576,2.97131)--
> (-0.550545,2.97132)--(-0.551514,2.97133)--(-0.552483,2.97134)--(-0.553451,2.97135)--(-0.55442,2.97136)--(-0.555388,2.97137)--(-0.556355,2.97138)--(-0.557323,2.97139)--(-0.55829,2.97141)--(-0.559256,2.97142)--(-0.560223,2.97143)--(-0.561189,2.97144)--(-0.562155,2.97145)--(-0.563121,2.97146)--(-0.564086,2.97147)--(-0.565051,2.97147)--(-0.566016,2.97148)--(-0.56698,2.97149)--(-0.567944,2.9715)--(-0.568908,2.97151)--(-0.569872,2.97152)--(-0.570835,2.97153)--(-0.571798,2.97154)--(-0.572761,2.97155)--
> (-0.573723,2.97156)--(-0.574686,2.97157)--(-0.575648,2.97158)--(-0.576609,2.97159)--(-0.577571,2.97159)--(-0.578532,2.9716)--(-0.579492,2.97161)--(-0.580453,2.97162)--(-0.581413,2.97163)--(-0.582373,2.97164)--(-0.583333,2.97164)--(-0.584292,2.97165)--(-0.585251,2.97166)--(-0.58621,2.97167)--(-0.587169,2.97168)--(-0.588127,2.97168)--(-0.589085,2.97169)--(-0.590043,2.9717)--(-0.591,2.97171)--(-0.591957,2.97171)--(-0.592914,2.97172)--(-0.593871,2.97173)--(-0.594827,2.97174)--(-0.595783,2.97174)--
> (-0.596739,2.97175)--(-0.597694,2.97176)--(-0.59865,2.97176)--(-0.599605,2.97177)--(-0.600559,2.97178)--(-0.601514,2.97178)--(-0.602468,2.97179)--(-0.603422,2.9718)--(-0.604376,2.9718)--(-0.605329,2.97181)--(-0.606282,2.97182)--(-0.607235,2.97182)--(-0.608188,2.97183)--(-0.60914,2.97184)--(-0.610092,2.97184)--(-0.611044,2.97185)--(-0.611995,2.97185)--(-0.612947,2.97186)--(-0.613898,2.97186)--(-0.614848,2.97187)--(-0.615799,2.97188)--(-0.616749,2.97188)--(-0.617699,2.97189)--(-0.618649,2.97189)--
> (-0.619598,2.9719)--(-0.620547,2.9719)--(-0.621496,2.97191)--(-0.622445,2.97191)--(-0.623393,2.97192)--(-0.624341,2.97192)--(-0.625289,2.97193)--(-0.626237,2.97193)--(-0.627184,2.97193)--(-0.628131,2.97194)--(-0.629078,2.97194)--(-0.630025,2.97195)--(-0.630971,2.97195)--(-0.631917,2.97196)--(-0.632863,2.97196)--(-0.633808,2.97196)--(-0.634754,2.97197)--(-0.635699,2.97197)--(-0.636644,2.97198)--(-0.637588,2.97198)--(-0.638533,2.97198)--(-0.639477,2.97199)--(-0.64042,2.97199)--(-0.641364,2.97199)--
> (-0.642307,2.972)--(-0.64325,2.972)--(-0.644193,2.972)--(-0.645136,2.97201)--(-0.646078,2.97201)--(-0.64702,2.97201)--(-0.647962,2.97201)--(-0.648903,2.97202)--(-0.649845,2.97202)--(-0.650786,2.97202)--(-0.651727,2.97202)--(-0.652667,2.97203)--(-0.653608,2.97203)--(-0.654548,2.97203)--(-0.655488,2.97203)--(-0.656427,2.97204)--(-0.657367,2.97204)--(-0.658306,2.97204)--(-0.659245,2.97204)--(-0.660183,2.97204)--(-0.661122,2.97205)--(-0.66206,2.97205)--(-0.662998,2.97205)--(-0.663936,2.97205)--
> (-0.664873,2.97205)--(-0.66581,2.97205)--(-0.666747,2.97205)--(-0.667684,2.97205)--(-0.66862,2.97206)--(-0.669557,2.97206)--(-0.670493,2.97206)--(-0.671429,2.97206)--(-0.672364,2.97206)--(-0.673299,2.97206)--(-0.674235,2.97206)--(-0.675169,2.97206)--(-0.676104,2.97206)--(-0.677038,2.97206)--(-0.677973,2.97206)--(-0.678907,2.97206)--(-0.67984,2.97206)--(-0.680774,2.97206)--(-0.681707,2.97206)--(-0.68264,2.97206)--(-0.683573,2.97206)--(-0.684505,2.97206)--(-0.685438,2.97206)--(-0.68637,2.97206)--
> (-0.687302,2.97206)--(-0.688233,2.97206)--(-0.689165,2.97206)--(-0.690096,2.97206)--(-0.691027,2.97206)--(-0.691957,2.97206)--(-0.692888,2.97206)--(-0.693818,2.97206)--(-0.694748,2.97205)--(-0.695678,2.97205)--(-0.696608,2.97205)--(-0.697537,2.97205)--(-0.698466,2.97205)--(-0.699395,2.97205)--(-0.700324,2.97205)--(-0.701252,2.97205)--(-0.702181,2.97204)--(-0.703109,2.97204)--(-0.704036,2.97204)--(-0.704964,2.97204)--(-0.705891,2.97204)--(-0.706819,2.97203)--(-0.707746,2.97203)--
> (-0.708672,2.97203)--(-0.709599,2.97203)--(-0.710525,2.97203)--(-0.711451,2.97202)--(-0.712377,2.97202)--(-0.713303,2.97202)--(-0.714228,2.97201)--(-0.715153,2.97201)--(-0.716078,2.97201)--(-0.717003,2.97201)--(-0.717928,2.972)--(-0.718852,2.972)--(-0.719776,2.972)--(-0.7207,2.97199)--(-0.721624,2.97199)--(-0.722547,2.97199)--(-0.723471,2.97198)--(-0.724394,2.97198)--(-0.725317,2.97198)--(-0.726239,2.97197)--(-0.727162,2.97197)--(-0.728084,2.97197)--(-0.729006,2.97196)--(-0.729928,2.97196)--
> (-0.73085,2.97195)--(-0.731771,2.97195)--(-0.732692,2.97195)--(-0.733613,2.97194)--(-0.734534,2.97194)--(-0.735455,2.97193)--(-0.736375,2.97193)--(-0.737295,2.97192)--(-0.738215,2.97192)--(-0.739135,2.97191)--(-0.740054,2.97191)--(-0.740974,2.9719)--(-0.741893,2.9719)--(-0.742812,2.97189)--(-0.743731,2.97189)--(-0.744649,2.97188)--(-0.745567,2.97188)--(-0.746486,2.97187)--(-0.747404,2.97187)--(-0.748321,2.97186)--(-0.749239,2.97186)--(-0.750156,2.97185)--(-0.751073,2.97185)--(-0.75199,2.97184)--
> (-0.752907,2.97183)--(-0.753824,2.97183)--(-0.75474,2.97182)--(-0.755656,2.97182)--(-0.756572,2.97181)--(-0.757488,2.9718)--(-0.758403,2.9718)--(-0.759319,2.97179)--(-0.760234,2.97178)--(-0.761149,2.97178)--(-0.762064,2.97177)--(-0.762978,2.97177)--(-0.763893,2.97176)--(-0.764807,2.97175)--(-0.765721,2.97174)--(-0.766635,2.97174)--(-0.767548,2.97173)--(-0.768462,2.97172)--(-0.769375,2.97172)--(-0.770288,2.97171)--(-0.771201,2.9717)--(-0.772114,2.97169)--(-0.773026,2.97169)--(-0.773938,2.97168)--
> (-0.774851,2.97167)--(-0.775762,2.97166)--(-0.776674,2.97166)--(-0.777586,2.97165)--(-0.778497,2.97164)--(-0.779408,2.97163)--(-0.780319,2.97162)--(-0.78123,2.97162)--(-0.782141,2.97161)--(-0.783051,2.9716)--(-0.783961,2.97159)--(-0.784871,2.97158)--(-0.785781,2.97157)--(-0.786691,2.97157)--(-0.787601,2.97156)--(-0.78851,2.97155)--(-0.789419,2.97154)--(-0.790328,2.97153)--(-0.791237,2.97152)--(-0.792145,2.97151)--(-0.793054,2.9715)--(-0.793962,2.97149)--(-0.79487,2.97149)--(-0.795778,2.97148)--
> (-0.796686,2.97147)--(-0.797593,2.97146)--(-0.798501,2.97145)--(-0.799408,2.97144)--(-0.800315,2.97143)--(-0.801222,2.97142)--(-0.802128,2.97141)--(-0.803035,2.9714)--(-0.803941,2.97139)--(-0.804847,2.97138)--(-0.805753,2.97137)--(-0.806659,2.97136)--(-0.807564,2.97135)--(-0.80847,2.97134)--(-0.809375,2.97133)--(-0.81028,2.97132)--(-0.811185,2.97131)--(-0.81209,2.9713)--(-0.812994,2.97128)--(-0.813899,2.97127)--(-0.814803,2.97126)--(-0.815707,2.97125)--(-0.816611,2.97124)--(-0.817515,2.97123)--
> (-0.818418,2.97122)--(-0.819321,2.97121)--(-0.820225,2.9712)--(-0.821128,2.97118)--(-0.822031,2.97117)--(-0.822933,2.97116)--(-0.823836,2.97115)--(-0.824738,2.97114)--(-0.82564,2.97113)--(-0.826542,2.97111)--(-0.827444,2.9711)--(-0.828346,2.97109)--(-0.829247,2.97108)--(-0.830149,2.97107)--(-0.83105,2.97105)--(-0.831951,2.97104)--(-0.832852,2.97103)--(-0.833753,2.97102)--(-0.834653,2.971)--(-0.835553,2.97099)--(-0.836454,2.97098)--(-0.837354,2.97097)--(-0.838254,2.97095)--(-0.839153,2.97094)--
> (-0.840053,2.97093)--(-0.840952,2.97092)--(-0.841852,2.9709)--(-0.842751,2.97089)--(-0.84365,2.97088)--(-0.844548,2.97086)--(-0.845447,2.97085)--(-0.846346,2.97084)--(-0.847244,2.97082)--(-0.848142,2.97081)--(-0.84904,2.9708)--(-0.849938,2.97078)--(-0.850836,2.97077)--(-0.851733,2.97075)--(-0.85263,2.97074)--(-0.853528,2.97073)--(-0.854425,2.97071)--(-0.855322,2.9707)--(-0.856218,2.97068)--(-0.857115,2.97067)--(-0.858011,2.97065)--(-0.858908,2.97064)--(-0.859804,2.97063)--(-0.8607,2.97061)--
> (-0.861596,2.9706)--(-0.862491,2.97058)--(-0.863387,2.97057)--(-0.864282,2.97055)--(-0.865178,2.97054)--(-0.866073,2.97052)--(-0.866968,2.97051)--(-0.867862,2.97049)--(-0.868757,2.97048)--(-0.869651,2.97046)--(-0.870546,2.97045)--(-0.87144,2.97043)--(-0.872334,2.97041)--(-0.873228,2.9704)--(-0.874122,2.97038)--(-0.875015,2.97037)--(-0.875909,2.97035)--(-0.876802,2.97034)--(-0.877695,2.97032)--(-0.878588,2.9703)--(-0.879481,2.97029)--(-0.880374,2.97027)--(-0.881267,2.97026)--(-0.882159,2.97024)--
> (-0.883051,2.97022)--(-0.883944,2.97021)--(-0.884836,2.97019)--(-0.885728,2.97017)--(-0.886619,2.97016)--(-0.887511,2.97014)--(-0.888402,2.97012)--(-0.889294,2.97011)--(-0.890185,2.97009)--(-0.891076,2.97007)--(-0.891967,2.97005)--(-0.892858,2.97004)--(-0.893748,2.97002)--(-0.894639,2.97)--(-0.895529,2.96999)--(-0.896419,2.96997)--(-0.897309,2.96995)--(-0.898199,2.96993)--(-0.899089,2.96991)--(-0.899979,2.9699)--(-0.900868,2.96988)--(-0.901758,2.96986)--(-0.902647,2.96984)--(-0.903536,2.96983)--
> (-0.904425,2.96981)--(-0.905314,2.96979)--(-0.906203,2.96977)--(-0.907092,2.96975)--(-0.90798,2.96973)--(-0.908868,2.96972)--(-0.909757,2.9697)--(-0.910645,2.96968)--(-0.911533,2.96966)--(-0.91242,2.96964)--(-0.913308,2.96962)--(-0.914196,2.9696)--(-0.915083,2.96958)--(-0.91597,2.96956)--(-0.916858,2.96955)--(-0.917745,2.96953)--(-0.918632,2.96951)--(-0.919518,2.96949)--(-0.920405,2.96947)--(-0.921292,2.96945)--(-0.922178,2.96943)--(-0.923064,2.96941)--(-0.923951,2.96939)--(-0.924837,2.96937)--
> (-0.925722,2.96935)--(-0.926608,2.96933)--(-0.927494,2.96931)--(-0.928379,2.96929)--(-0.929265,2.96927)--(-0.93015,2.96925)--(-0.931035,2.96923)--(-0.93192,2.96921)--(-0.932805,2.96919)--(-0.93369,2.96917)--(-0.934575,2.96915)--(-0.935459,2.96913)--(-0.936344,2.96911)--(-0.937228,2.96909)--(-0.938112,2.96906)--(-0.938996,2.96904)--(-0.93988,2.96902)--(-0.940764,2.969)--(-0.941648,2.96898)--(-0.942532,2.96896)--(-0.943415,2.96894)--(-0.944298,2.96892)--(-0.945182,2.9689)--(-0.946065,2.96887)--
> (-0.946948,2.96885)--(-0.947831,2.96883)--(-0.948714,2.96881)--(-0.949596,2.96879)--(-0.950479,2.96877)--(-0.951361,2.96874)--(-0.952244,2.96872)--(-0.953126,2.9687)--(-0.954008,2.96868)--(-0.95489,2.96865)--(-0.955772,2.96863)--(-0.956654,2.96861)--(-0.957535,2.96859)--(-0.958417,2.96857)--(-0.959298,2.96854)--(-0.960179,2.96852)--(-0.961061,2.9685)--(-0.961942,2.96847)--(-0.962823,2.96845)--(-0.963704,2.96843)--(-0.964584,2.96841)--(-0.965465,2.96838)--(-0.966346,2.96836)--(-0.967226,2.96834)--
> (-0.968106,2.96831)--(-0.968987,2.96829)--(-0.969867,2.96827)--(-0.970747,2.96824)--(-0.971627,2.96822)--(-0.972506,2.9682)--(-0.973386,2.96817)--(-0.974266,2.96815)--(-0.975145,2.96812)--(-0.976025,2.9681)--(-0.976904,2.96808)--(-0.977783,2.96805)--(-0.978662,2.96803)--(-0.979541,2.968)--(-0.98042,2.96798)--(-0.981299,2.96795)--(-0.982177,2.96793)--(-0.983056,2.96791)--(-0.983934,2.96788)--(-0.984813,2.96786)--(-0.985691,2.96783)--(-0.986569,2.96781)--(-0.987447,2.96778)--(-0.988325,2.96776)--
> (-0.989203,2.96773)--(-0.990081,2.96771)--(-0.990958,2.96768)--(-0.991836,2.96766)--(-0.992713,2.96763)--(-0.993591,2.96761)--(-0.994468,2.96758)--(-0.995345,2.96756)--(-0.996222,2.96753)--(-0.997099,2.9675)--(-0.997976,2.96748)--(-0.998853,2.96745)--(-0.999729,2.96743)--(-1.00061,2.9674)--(-1.00148,2.96737)--(-1.00236,2.96735)--(-1.00324,2.96732)--(-1.00411,2.9673)--(-1.00499,2.96727)--(-1.00586,2.96724)--(-1.00674,2.96722)--(-1.00762,2.96719)--(-1.00849,2.96716)--(-1.00937,2.96714)--
> (-1.01024,2.96711)--(-1.01112,2.96708)--(-1.01199,2.96706)--(-1.01287,2.96703)--(-1.01374,2.967)--(-1.01462,2.96698)--(-1.01549,2.96695)--(-1.01637,2.96692)--(-1.01724,2.96689)--(-1.01812,2.96687)--(-1.01899,2.96684)--(-1.01987,2.96681)--(-1.02074,2.96678)--(-1.02162,2.96676)--(-1.02249,2.96673)--(-1.02336,2.9667)--(-1.02424,2.96667)--(-1.02511,2.96665)--(-1.02599,2.96662)--(-1.02686,2.96659)--(-1.02773,2.96656)--(-1.02861,2.96653)--(-1.02948,2.96651)--(-1.03036,2.96648)--(-1.03123,2.96645)--
> (-1.0321,2.96642)--(-1.03298,2.96639)--(-1.03385,2.96636)--(-1.03472,2.96633)--(-1.0356,2.96631)--(-1.03647,2.96628)--(-1.03734,2.96625)--(-1.03821,2.96622)--(-1.03909,2.96619)--(-1.03996,2.96616)--(-1.04083,2.96613)--(-1.0417,2.9661)--(-1.04258,2.96607)--(-1.04345,2.96604)--(-1.04432,2.96601)--(-1.04519,2.96598)--(-1.04607,2.96595)--(-1.04694,2.96592)--(-1.04781,2.9659)--(-1.04868,2.96587)--(-1.04955,2.96584)--(-1.05043,2.96581)--(-1.0513,2.96578)--(-1.05217,2.96575)--(-1.05304,2.96571)--
> (-1.05391,2.96568)--(-1.05478,2.96565)--(-1.05565,2.96562)--(-1.05653,2.96559)--(-1.0574,2.96556)--(-1.05827,2.96553)--(-1.05914,2.9655)--(-1.06001,2.96547)--(-1.06088,2.96544)--(-1.06175,2.96541)--(-1.06262,2.96538)--(-1.06349,2.96535)--(-1.06436,2.96532)--(-1.06523,2.96528)--(-1.0661,2.96525)--(-1.06697,2.96522)--(-1.06784,2.96519)--(-1.06871,2.96516)--(-1.06958,2.96513)--(-1.07045,2.9651)--(-1.07132,2.96506)--(-1.07219,2.96503)--(-1.07306,2.965)--(-1.07393,2.96497)--(-1.0748,2.96494)--
> (-1.07567,2.9649)--(-1.07654,2.96487)--(-1.07741,2.96484)--(-1.07828,2.96481)--(-1.07915,2.96478)--(-1.08002,2.96474)--(-1.08089,2.96471)--(-1.08176,2.96468)--(-1.08263,2.96465)--(-1.0835,2.96461)--(-1.08437,2.96458)--(-1.08524,2.96455)--(-1.0861,2.96451)--(-1.08697,2.96448)--(-1.08784,2.96445)--(-1.08871,2.96442)--(-1.08958,2.96438)--(-1.09045,2.96435)--(-1.09132,2.96432)--(-1.09219,2.96428)--(-1.09305,2.96425)--(-1.09392,2.96422)--(-1.09479,2.96418)--(-1.09566,2.96415)--(-1.09653,2.96411)--
> (-1.09739,2.96408)--(-1.09826,2.96405)--(-1.09913,2.96401)--(-1.1,2.96398)--(-1.10087,2.96394)--(-1.10173,2.96391)--(-1.1026,2.96388)--(-1.10347,2.96384)--(-1.10434,2.96381)--(-1.10521,2.96377)--(-1.10607,2.96374)--(-1.10694,2.9637)--(-1.10781,2.96367)--(-1.10868,2.96363)--(-1.10954,2.9636)--(-1.11041,2.96356)--(-1.11128,2.96353)--(-1.11214,2.96349)--(-1.11301,2.96346)--(-1.11388,2.96342)--(-1.11475,2.96339)--(-1.11561,2.96335)--(-1.11648,2.96332)--(-1.11735,2.96328)--(-1.11821,2.96325)--
> (-1.11908,2.96321)--(-1.11995,2.96318)--(-1.12081,2.96314)--(-1.12168,2.9631)--(-1.12255,2.96307)--(-1.12341,2.96303)--(-1.12428,2.963)--(-1.12515,2.96296)--(-1.12601,2.96292)--(-1.12688,2.96289)--(-1.12775,2.96285)--(-1.12861,2.96281)--(-1.12948,2.96278)--(-1.13034,2.96274)--(-1.13121,2.96271)--(-1.13208,2.96267)--(-1.13294,2.96263)--(-1.13381,2.96259)--(-1.13467,2.96256)--(-1.13554,2.96252)--(-1.13641,2.96248)--(-1.13727,2.96245)--(-1.13814,2.96241)--(-1.139,2.96237)--(-1.13987,2.96233)--
> (-1.14073,2.9623)--(-1.1416,2.96226)--(-1.14247,2.96222)--(-1.14333,2.96218)--(-1.1442,2.96215)--(-1.14506,2.96211)--(-1.14593,2.96207)--(-1.14679,2.96203)--(-1.14766,2.962)--(-1.14852,2.96196)--(-1.14939,2.96192)--(-1.15025,2.96188)--(-1.15112,2.96184)--(-1.15198,2.9618)--(-1.15285,2.96177)--(-1.15372,2.96173)--(-1.15458,2.96169)--(-1.15545,2.96165)--(-1.15631,2.96161)--(-1.15718,2.96157)--(-1.15804,2.96153)--(-1.1589,2.9615)--(-1.15977,2.96146)--(-1.16063,2.96142)--(-1.1615,2.96138)--
> (-1.16236,2.96134)--(-1.16323,2.9613)--(-1.16409,2.96126)--(-1.16496,2.96122)--(-1.16582,2.96118)--(-1.16669,2.96114)--(-1.16755,2.9611)--(-1.16842,2.96106)--(-1.16928,2.96102)--(-1.17015,2.96098)--(-1.17101,2.96094)--(-1.17187,2.9609)--(-1.17274,2.96086)--(-1.1736,2.96082)--(-1.17447,2.96078)--(-1.17533,2.96074)--(-1.1762,2.9607)--(-1.17706,2.96066)--(-1.17792,2.96062)--(-1.17879,2.96058)--(-1.17965,2.96054)--(-1.18052,2.9605)--(-1.18138,2.96046)--(-1.18224,2.96042)--(-1.18311,2.96038)--
> (-1.18397,2.96034)--(-1.18484,2.96029)--(-1.1857,2.96025)--(-1.18656,2.96021)--(-1.18743,2.96017)--(-1.18829,2.96013)--(-1.18916,2.96009)--(-1.19002,2.96005)--(-1.19088,2.96)--(-1.19175,2.95996)--(-1.19261,2.95992)--(-1.19347,2.95988)--(-1.19434,2.95984)--(-1.1952,2.9598)--(-1.19607,2.95975)--(-1.19693,2.95971)--(-1.19779,2.95967)--(-1.19866,2.95963)--(-1.19952,2.95959)--(-1.20038,2.95954)--(-1.20125,2.9595)--(-1.20211,2.95946)--(-1.20297,2.95942)--(-1.20384,2.95937)--(-1.2047,2.95933)--
> (-1.20557,2.95929)--(-1.20643,2.95924)--(-1.20729,2.9592)--(-1.20816,2.95916)--(-1.20902,2.95911)--(-1.20988,2.95907)--(-1.21075,2.95903)--(-1.21161,2.95899)--(-1.21247,2.95894)--(-1.21334,2.9589)--(-1.2142,2.95885)--(-1.21506,2.95881)--(-1.21593,2.95877)--(-1.21679,2.95872)--(-1.21765,2.95868)--(-1.21852,2.95864)--(-1.21938,2.95859)--(-1.22024,2.95855)--(-1.22111,2.9585)--(-1.22197,2.95846)--(-1.22283,2.95842)--(-1.22369,2.95837)--(-1.22456,2.95833)--(-1.22542,2.95828)--(-1.22628,2.95824)--
> (-1.22715,2.95819)--(-1.22801,2.95815)--(-1.22887,2.9581)--(-1.22974,2.95806)--(-1.2306,2.95801)--(-1.23146,2.95797)--(-1.23233,2.95792)--(-1.23319,2.95788)--(-1.23405,2.95783)--(-1.23492,2.95779)--(-1.23578,2.95774)--(-1.23664,2.9577)--(-1.23751,2.95765)--(-1.23837,2.95761)--(-1.23923,2.95756)--(-1.24009,2.95751)--(-1.24096,2.95747)--(-1.24182,2.95742)--(-1.24268,2.95738)--(-1.24355,2.95733)--(-1.24441,2.95728)--(-1.24527,2.95724)--(-1.24614,2.95719)--(-1.247,2.95715)--(-1.24786,2.9571)--
> (-1.24872,2.95705)--(-1.24959,2.95701)--(-1.25045,2.95696)--(-1.25131,2.95691)--(-1.25218,2.95687)--(-1.25304,2.95682)--(-1.2539,2.95677)--(-1.25477,2.95673)--(-1.25563,2.95668)--(-1.25649,2.95663)--(-1.25736,2.95658)--(-1.25822,2.95654)--(-1.25908,2.95649)--(-1.25994,2.95644)--(-1.26081,2.9564)--(-1.26167,2.95635)--(-1.26253,2.9563)--(-1.2634,2.95625)--(-1.26426,2.9562)--(-1.26512,2.95616)--(-1.26599,2.95611)--(-1.26685,2.95606)--(-1.26771,2.95601)--(-1.26858,2.95596)--(-1.26944,2.95592)--
> (-1.2703,2.95587)--(-1.27116,2.95582)--(-1.27203,2.95577)--(-1.27289,2.95572)--(-1.27375,2.95567)--(-1.27462,2.95563)--(-1.27548,2.95558)--(-1.27634,2.95553)--(-1.27721,2.95548)--(-1.27807,2.95543)--(-1.27893,2.95538)--(-1.2798,2.95533)--(-1.28066,2.95528)--(-1.28152,2.95523)--(-1.28239,2.95518)--(-1.28325,2.95513)--(-1.28411,2.95508)--(-1.28498,2.95504)--(-1.28584,2.95499)--(-1.2867,2.95494)--(-1.28757,2.95489)--(-1.28843,2.95484)--(-1.28929,2.95479)--(-1.29016,2.95474)--(-1.29102,2.95469)--
> (-1.29188,2.95464)--(-1.29275,2.95459)--(-1.29361,2.95454)--(-1.29447,2.95449)--(-1.29534,2.95443)--(-1.2962,2.95438)--(-1.29706,2.95433)--(-1.29793,2.95428)--(-1.29879,2.95423)--(-1.29965,2.95418)--(-1.30052,2.95413)--(-1.30138,2.95408)--(-1.30225,2.95403)--(-1.30311,2.95398)--(-1.30397,2.95393)--(-1.30484,2.95387)--(-1.3057,2.95382)--(-1.30656,2.95377)--(-1.30743,2.95372)--(-1.30829,2.95367)--(-1.30916,2.95362)--(-1.31002,2.95357)--(-1.31088,2.95351)--(-1.31175,2.95346)--(-1.31261,2.95341)--
> (-1.31347,2.95336)--(-1.31434,2.95331)--(-1.3152,2.95325)--(-1.31607,2.9532)--(-1.31693,2.95315)--(-1.31779,2.9531)--(-1.31866,2.95304)--(-1.31952,2.95299)--(-1.32039,2.95294)--(-1.32125,2.95289)--(-1.32211,2.95283)--(-1.32298,2.95278)--(-1.32384,2.95273)--(-1.32471,2.95267)--(-1.32557,2.95262)--(-1.32644,2.95257)--(-1.3273,2.95252)--(-1.32816,2.95246)--(-1.32903,2.95241)--(-1.32989,2.95236)--(-1.33076,2.9523)--(-1.33162,2.95225)--(-1.33249,2.95219)--(-1.33335,2.95214)--(-1.33422,2.95209)--
> (-1.33508,2.95203)--(-1.33595,2.95198)--(-1.33681,2.95193)--(-1.33767,2.95187)--(-1.33854,2.95182)--(-1.3394,2.95176)--(-1.34027,2.95171)--(-1.34113,2.95165)--(-1.342,2.9516)--(-1.34286,2.95154)--(-1.34373,2.95149)--(-1.34459,2.95144)--(-1.34546,2.95138)--(-1.34632,2.95133)--(-1.34719,2.95127)--(-1.34805,2.95122)--(-1.34892,2.95116)--(-1.34978,2.95111)--(-1.35065,2.95105)--(-1.35151,2.95099)--(-1.35238,2.95094)--(-1.35324,2.95088)--(-1.35411,2.95083)--(-1.35498,2.95077)--(-1.35584,2.95072)--
> (-1.35671,2.95066)--(-1.35757,2.95061)--(-1.35844,2.95055)--(-1.3593,2.95049)--(-1.36017,2.95044)--(-1.36103,2.95038)--(-1.3619,2.95032)--(-1.36277,2.95027)--(-1.36363,2.95021)--(-1.3645,2.95016)--(-1.36536,2.9501)--(-1.36623,2.95004)--(-1.3671,2.94999)--(-1.36796,2.94993)--(-1.36883,2.94987)--(-1.36969,2.94981)--(-1.37056,2.94976)--(-1.37143,2.9497)--(-1.37229,2.94964)--(-1.37316,2.94959)--(-1.37403,2.94953)--(-1.37489,2.94947)--(-1.37576,2.94941)--(-1.37662,2.94936)--(-1.37749,2.9493)--
> (-1.37836,2.94924)--(-1.37922,2.94918)--(-1.38009,2.94913)--(-1.38096,2.94907)--(-1.38182,2.94901)--(-1.38269,2.94895)--(-1.38356,2.94889)--(-1.38442,2.94884)--(-1.38529,2.94878)--(-1.38616,2.94872)--(-1.38703,2.94866)--(-1.38789,2.9486)--(-1.38876,2.94854)--(-1.38963,2.94848)--(-1.39049,2.94843)--(-1.39136,2.94837)--(-1.39223,2.94831)--(-1.3931,2.94825)--(-1.39396,2.94819)--(-1.39483,2.94813)--(-1.3957,2.94807)--(-1.39657,2.94801)--(-1.39744,2.94795)--(-1.3983,2.94789)--(-1.39917,2.94783)--
> (-1.40004,2.94777)--(-1.40091,2.94771)--(-1.40177,2.94765)--(-1.40264,2.94759)--(-1.40351,2.94753)--(-1.40438,2.94747)--(-1.40525,2.94741)--(-1.40612,2.94735)--(-1.40698,2.94729)--(-1.40785,2.94723)--(-1.40872,2.94717)--(-1.40959,2.94711)--(-1.41046,2.94705)--(-1.41133,2.94699)--(-1.4122,2.94693)--(-1.41306,2.94687)--(-1.41393,2.94681)--(-1.4148,2.94675)--(-1.41567,2.94669)--(-1.41654,2.94663)--(-1.41741,2.94656)--(-1.41828,2.9465)--(-1.41915,2.94644)--(-1.42002,2.94638)--(-1.42089,2.94632)--
> (-1.42176,2.94626)--(-1.42262,2.9462)--(-1.42349,2.94613)--(-1.42436,2.94607)--(-1.42523,2.94601)--(-1.4261,2.94595)--(-1.42697,2.94589)--(-1.42784,2.94582)--(-1.42871,2.94576)--(-1.42958,2.9457)--(-1.43045,2.94564)--(-1.43132,2.94557)--(-1.43219,2.94551)--(-1.43306,2.94545)--(-1.43393,2.94539)--(-1.4348,2.94532)--(-1.43567,2.94526)--(-1.43655,2.9452)--(-1.43742,2.94513)--(-1.43829,2.94507)--(-1.43916,2.94501)--(-1.44003,2.94495)--(-1.4409,2.94488)--(-1.44177,2.94482)--(-1.44264,2.94476)--
> (-1.44351,2.94469)--(-1.44438,2.94463)--(-1.44525,2.94456)--(-1.44613,2.9445)--(-1.447,2.94444)--(-1.44787,2.94437)--(-1.44874,2.94431)--(-1.44961,2.94424)--(-1.45048,2.94418)--(-1.45136,2.94412)--(-1.45223,2.94405)--(-1.4531,2.94399)--(-1.45397,2.94392)--(-1.45484,2.94386)--(-1.45572,2.94379)--(-1.45659,2.94373)--(-1.45746,2.94366)--(-1.45833,2.9436)--(-1.45921,2.94353)--(-1.46008,2.94347)--(-1.46095,2.9434)--(-1.46182,2.94334)--(-1.4627,2.94327)--(-1.46357,2.94321)--(-1.46444,2.94314)--
> (-1.46531,2.94308)--(-1.46619,2.94301)--(-1.46706,2.94295)--(-1.46793,2.94288)--(-1.46881,2.94281)--(-1.46968,2.94275)--(-1.47055,2.94268)--(-1.47143,2.94262)--(-1.4723,2.94255)--(-1.47318,2.94248)--(-1.47405,2.94242)--(-1.47492,2.94235)--(-1.4758,2.94228)--(-1.47667,2.94222)--(-1.47755,2.94215)--(-1.47842,2.94208)--(-1.47929,2.94202)--(-1.48017,2.94195)--(-1.48104,2.94188)--(-1.48192,2.94182)--(-1.48279,2.94175)--(-1.48367,2.94168)--(-1.48454,2.94161)--(-1.48542,2.94155)--(-1.48629,2.94148)--
> (-1.48717,2.94141)--(-1.48804,2.94134)--(-1.48892,2.94128)--(-1.48979,2.94121)--(-1.49067,2.94114)--(-1.49155,2.94107)--(-1.49242,2.941)--(-1.4933,2.94094)--(-1.49417,2.94087)--(-1.49505,2.9408)--(-1.49593,2.94073)--(-1.4968,2.94066)--(-1.49768,2.94059)--(-1.49855,2.94053)--(-1.49943,2.94046)--(-1.50031,2.94039)--(-1.50118,2.94032)--(-1.50206,2.94025)--(-1.50294,2.94018)--(-1.50381,2.94011)--(-1.50469,2.94004)--(-1.50557,2.93997)--(-1.50645,2.9399)--(-1.50732,2.93983)--(-1.5082,2.93977)--
> (-1.50908,2.9397)--(-1.50996,2.93963)--(-1.51083,2.93956)--(-1.51171,2.93949)--(-1.51259,2.93942)--(-1.51347,2.93935)--(-1.51435,2.93928)--(-1.51522,2.93921)--(-1.5161,2.93914)--(-1.51698,2.93907)--(-1.51786,2.93899)--(-1.51874,2.93892)--(-1.51962,2.93885)--(-1.5205,2.93878)--(-1.52137,2.93871)--(-1.52225,2.93864)--(-1.52313,2.93857)--(-1.52401,2.9385)--(-1.52489,2.93843)--(-1.52577,2.93836)--(-1.52665,2.93829)--(-1.52753,2.93821)--(-1.52841,2.93814)--(-1.52929,2.93807)--(-1.53017,2.938)--
> (-1.53105,2.93793)--(-1.53193,2.93786)--(-1.53281,2.93778)--(-1.53369,2.93771)--(-1.53457,2.93764)--(-1.53545,2.93757)--(-1.53633,2.9375)--(-1.53721,2.93742)--(-1.53809,2.93735)--(-1.53898,2.93728)--(-1.53986,2.93721)--(-1.54074,2.93713)--(-1.54162,2.93706)--(-1.5425,2.93699)--(-1.54338,2.93692)--(-1.54426,2.93684)--(-1.54515,2.93677)--(-1.54603,2.9367)--(-1.54691,2.93662)--(-1.54779,2.93655)--(-1.54868,2.93648)--(-1.54956,2.9364)--(-1.55044,2.93633)--(-1.55132,2.93626)--(-1.55221,2.93618)--
> (-1.55309,2.93611)--(-1.55397,2.93603)--(-1.55486,2.93596)--(-1.55574,2.93589)--(-1.55662,2.93581)--(-1.55751,2.93574)--(-1.55839,2.93566)--(-1.55927,2.93559)--(-1.56016,2.93552)--(-1.56104,2.93544)--(-1.56192,2.93537)--(-1.56281,2.93529)--(-1.56369,2.93522)--(-1.56458,2.93514)--(-1.56546,2.93507)--(-1.56635,2.93499)--(-1.56723,2.93492)--(-1.56812,2.93484)--(-1.569,2.93477)--(-1.56989,2.93469)--(-1.57077,2.93462)--(-1.57166,2.93454)--(-1.57254,2.93446)--(-1.57343,2.93439)--(-1.57431,2.93431)--
> (-1.5752,2.93424)--(-1.57609,2.93416)--(-1.57697,2.93408)--(-1.57786,2.93401)--(-1.57875,2.93393)--(-1.57963,2.93386)--(-1.58052,2.93378)--(-1.58141,2.9337)--(-1.58229,2.93363)--(-1.58318,2.93355)--(-1.58407,2.93347)--(-1.58495,2.9334)--(-1.58584,2.93332)--(-1.58673,2.93324)--(-1.58762,2.93316)--(-1.5885,2.93309)--(-1.58939,2.93301)--(-1.59028,2.93293)--(-1.59117,2.93286)--(-1.59206,2.93278)--(-1.59295,2.9327)--(-1.59383,2.93262)--(-1.59472,2.93254)--(-1.59561,2.93247)--(-1.5965,2.93239)--
> (-1.59739,2.93231)--(-1.59828,2.93223)--(-1.59917,2.93215)--(-1.60006,2.93208)--(-1.60095,2.932)--(-1.60184,2.93192)--(-1.60273,2.93184)--(-1.60362,2.93176)--(-1.60451,2.93168)--(-1.6054,2.9316)--(-1.60629,2.93153)--(-1.60718,2.93145)--(-1.60807,2.93137)--(-1.60896,2.93129)--(-1.60985,2.93121)--(-1.61074,2.93113)--(-1.61164,2.93105)--(-1.61253,2.93097)--(-1.61342,2.93089)--(-1.61431,2.93081)--(-1.6152,2.93073)--(-1.61609,2.93065)--(-1.61699,2.93057)--(-1.61788,2.93049)--(-1.61877,2.93041)--
> (-1.61966,2.93033)--(-1.62056,2.93025)--(-1.62145,2.93017)--(-1.62234,2.93009)--(-1.62324,2.93001)--(-1.62413,2.92993)--(-1.62502,2.92985)--(-1.62592,2.92977)--(-1.62681,2.92969)--(-1.6277,2.9296)--(-1.6286,2.92952)--(-1.62949,2.92944)--(-1.63039,2.92936)--(-1.63128,2.92928)--(-1.63218,2.9292)--(-1.63307,2.92912)--(-1.63397,2.92903)--(-1.63486,2.92895)--(-1.63576,2.92887)--(-1.63665,2.92879)--(-1.63755,2.92871)--(-1.63844,2.92863)--(-1.63934,2.92854)--(-1.64023,2.92846)--(-1.64113,2.92838)--
> (-1.64203,2.9283)--(-1.64292,2.92821)--(-1.64382,2.92813)--(-1.64472,2.92805)--(-1.64561,2.92796)--(-1.64651,2.92788)--(-1.64741,2.9278)--(-1.64831,2.92772)--(-1.6492,2.92763)--(-1.6501,2.92755)--(-1.651,2.92747)--(-1.6519,2.92738)--(-1.65279,2.9273)--(-1.65369,2.92722)--(-1.65459,2.92713)--(-1.65549,2.92705)--(-1.65639,2.92696)--(-1.65729,2.92688)--(-1.65819,2.9268)--(-1.65909,2.92671)--(-1.65999,2.92663)--(-1.66089,2.92654)--(-1.66179,2.92646)--(-1.66269,2.92637)--(-1.66359,2.92629)--
> (-1.66449,2.9262)--(-1.66539,2.92612)--(-1.66629,2.92603)--(-1.66719,2.92595)--(-1.66809,2.92586)--(-1.66899,2.92578)--(-1.66989,2.92569)--(-1.67079,2.92561)--(-1.67169,2.92552)--(-1.6726,2.92544)--(-1.6735,2.92535)--(-1.6744,2.92527)--(-1.6753,2.92518)--(-1.6762,2.92509)--(-1.67711,2.92501)--(-1.67801,2.92492)--(-1.67891,2.92484)--(-1.67982,2.92475)--(-1.68072,2.92466)--(-1.68162,2.92458)--(-1.68253,2.92449)--(-1.68343,2.9244)--(-1.68433,2.92432)--(-1.68524,2.92423)--(-1.68614,2.92414)--
> (-1.68705,2.92406)--(-1.68795,2.92397)--(-1.68886,2.92388)--(-1.68976,2.92379)--(-1.69067,2.92371)--(-1.69157,2.92362)--(-1.69248,2.92353)--(-1.69338,2.92344)--(-1.69429,2.92336)--(-1.69519,2.92327)--(-1.6961,2.92318)--(-1.69701,2.92309)--(-1.69791,2.923)--(-1.69882,2.92292)--(-1.69973,2.92283)--(-1.70063,2.92274)--(-1.70154,2.92265)--(-1.70245,2.92256)--(-1.70336,2.92247)--(-1.70426,2.92239)--(-1.70517,2.9223)--(-1.70608,2.92221)--(-1.70699,2.92212)--(-1.7079,2.92203)--(-1.70881,2.92194)--
> (-1.70971,2.92185)--(-1.71062,2.92176)--(-1.71153,2.92167)--(-1.71244,2.92158)--(-1.71335,2.92149)--(-1.71426,2.9214)--(-1.71517,2.92131)--(-1.71608,2.92122)--(-1.71699,2.92113)--(-1.7179,2.92104)--(-1.71881,2.92095)--(-1.71972,2.92086)--(-1.72063,2.92077)--(-1.72155,2.92068)--(-1.72246,2.92059)--(-1.72337,2.9205)--(-1.72428,2.92041)--(-1.72519,2.92032)--(-1.7261,2.92023)--(-1.72702,2.92013)--(-1.72793,2.92004)--(-1.72884,2.91995)--(-1.72976,2.91986)--(-1.73067,2.91977)--(-1.73158,2.91968)--
> (-1.7325,2.91959)--(-1.73341,2.91949)--(-1.73432,2.9194)--(-1.73524,2.91931)--(-1.73615,2.91922)--(-1.73707,2.91913)--(-1.73798,2.91903)--(-1.7389,2.91894)--(-1.73981,2.91885)--(-1.74073,2.91876)--(-1.74164,2.91866)--(-1.74256,2.91857)--(-1.74347,2.91848)--(-1.74439,2.91838)--(-1.74531,2.91829)--(-1.74622,2.9182)--(-1.74714,2.9181)--(-1.74806,2.91801)--(-1.74897,2.91792)--(-1.74989,2.91782)--(-1.75081,2.91773)--(-1.75172,2.91764)--(-1.75264,2.91754)--(-1.75356,2.91745)--(-1.75448,2.91736)--
> (-1.7554,2.91726)--(-1.75632,2.91717)--(-1.75723,2.91707)--(-1.75815,2.91698)--(-1.75907,2.91688)--(-1.75999,2.91679)--(-1.76091,2.91669)--(-1.76183,2.9166)--(-1.76275,2.9165)--(-1.76367,2.91641)--(-1.76459,2.91631)--(-1.76551,2.91622)--(-1.76643,2.91612)--(-1.76736,2.91603)--(-1.76828,2.91593)--(-1.7692,2.91584)--(-1.77012,2.91574)--(-1.77104,2.91565)--(-1.77196,2.91555)--(-1.77289,2.91545)--(-1.77381,2.91536)--(-1.77473,2.91526)--(-1.77565,2.91516)--(-1.77658,2.91507)--(-1.7775,2.91497)--
> (-1.77843,2.91488)--(-1.77935,2.91478)--(-1.78027,2.91468)--(-1.7812,2.91458)--(-1.78212,2.91449)--(-1.78305,2.91439)--(-1.78397,2.91429)--(-1.7849,2.9142)--(-1.78582,2.9141)--(-1.78675,2.914)--(-1.78767,2.9139)--(-1.7886,2.91381)--(-1.78953,2.91371)--(-1.79045,2.91361)--(-1.79138,2.91351)--(-1.79231,2.91341)--(-1.79323,2.91332)--(-1.79416,2.91322)--(-1.79509,2.91312)--(-1.79601,2.91302)--(-1.79694,2.91292)--(-1.79787,2.91282)--(-1.7988,2.91272)--(-1.79973,2.91263)--(-1.80066,2.91253)--
> (-1.80159,2.91243)--(-1.80252,2.91233)--(-1.80344,2.91223)--(-1.80437,2.91213)--(-1.8053,2.91203)--(-1.80623,2.91193)--(-1.80717,2.91183)--(-1.8081,2.91173)--(-1.80903,2.91163)--(-1.80996,2.91153)--(-1.81089,2.91143)--(-1.81182,2.91133)--(-1.81275,2.91123)--(-1.81368,2.91113)--(-1.81462,2.91103)--(-1.81555,2.91093)--(-1.81648,2.91083)--(-1.81741,2.91073)--(-1.81835,2.91063)--(-1.81928,2.91052)--(-1.82021,2.91042)--(-1.82115,2.91032)--(-1.82208,2.91022)--(-1.82302,2.91012)--(-1.82395,2.91002)--
> (-1.82489,2.90992)--(-1.82582,2.90981)--(-1.82676,2.90971)--(-1.82769,2.90961)--(-1.82863,2.90951)--(-1.82956,2.90941)--(-1.8305,2.9093)--(-1.83144,2.9092)--(-1.83237,2.9091)--(-1.83331,2.909)--(-1.83425,2.90889)--(-1.83518,2.90879)--(-1.83612,2.90869)--(-1.83706,2.90859)--(-1.838,2.90848)--(-1.83894,2.90838)--(-1.83988,2.90828)--(-1.84081,2.90817)--(-1.84175,2.90807)--(-1.84269,2.90796)--(-1.84363,2.90786)--(-1.84457,2.90776)--(-1.84551,2.90765)--(-1.84645,2.90755)--(-1.84739,2.90744)--
> (-1.84833,2.90734)--(-1.84927,2.90724)--(-1.85022,2.90713)--(-1.85116,2.90703)--(-1.8521,2.90692)--(-1.85304,2.90682)--(-1.85398,2.90671)--(-1.85493,2.90661)--(-1.85587,2.9065)--(-1.85681,2.9064)--(-1.85776,2.90629)--(-1.8587,2.90619)--(-1.85964,2.90608)--(-1.86059,2.90598)--(-1.86153,2.90587)--(-1.86248,2.90576)--(-1.86342,2.90566)--(-1.86436,2.90555)--(-1.86531,2.90545)--(-1.86626,2.90534)--(-1.8672,2.90523)--(-1.86815,2.90513)--(-1.86909,2.90502)--(-1.87004,2.90491)--(-1.87099,2.90481)--
> (-1.87193,2.9047)--(-1.87288,2.90459)--(-1.87383,2.90448)--(-1.87478,2.90438)--(-1.87573,2.90427)--(-1.87667,2.90416)--(-1.87762,2.90406)--(-1.87857,2.90395)--(-1.87952,2.90384)--(-1.88047,2.90373)--(-1.88142,2.90362)--(-1.88237,2.90352)--(-1.88332,2.90341)--(-1.88427,2.9033)--(-1.88522,2.90319)--(-1.88617,2.90308)--(-1.88712,2.90297)--(-1.88807,2.90286)--(-1.88903,2.90276)--(-1.88998,2.90265)--(-1.89093,2.90254)--(-1.89188,2.90243)--(-1.89284,2.90232)--(-1.89379,2.90221)--(-1.89474,2.9021)--
> (-1.8957,2.90199)--(-1.89665,2.90188)--(-1.8976,2.90177)--(-1.89856,2.90166)--(-1.89951,2.90155)--(-1.90047,2.90144)--(-1.90142,2.90133)--(-1.90238,2.90122)--(-1.90333,2.90111)--(-1.90429,2.901)--(-1.90525,2.90089)--(-1.9062,2.90078)--(-1.90716,2.90067)--(-1.90812,2.90055)--(-1.90907,2.90044)--(-1.91003,2.90033)--(-1.91099,2.90022)--(-1.91195,2.90011)--(-1.91291,2.9)--(-1.91387,2.89989)--(-1.91483,2.89977)--(-1.91578,2.89966)--(-1.91674,2.89955)--(-1.9177,2.89944)--(-1.91866,2.89933)--
> (-1.91962,2.89921)--(-1.92059,2.8991)--(-1.92155,2.89899)--(-1.92251,2.89887)--(-1.92347,2.89876)--(-1.92443,2.89865)--(-1.92539,2.89854)--(-1.92636,2.89842)--(-1.92732,2.89831)--(-1.92828,2.8982)--(-1.92925,2.89808)--(-1.93021,2.89797)--(-1.93117,2.89785)--(-1.93214,2.89774)--(-1.9331,2.89763)--(-1.93407,2.89751)--(-1.93503,2.8974)--(-1.936,2.89728)--(-1.93696,2.89717)--(-1.93793,2.89705)--(-1.93889,2.89694)--(-1.93986,2.89683)--(-1.94083,2.89671)--(-1.94179,2.8966)--(-1.94276,2.89648)--
> (-1.94373,2.89637)--(-1.9447,2.89625)--(-1.94567,2.89613)--(-1.94663,2.89602)--(-1.9476,2.8959)--(-1.94857,2.89579)--(-1.94954,2.89567)--(-1.95051,2.89555)--(-1.95148,2.89544)--(-1.95245,2.89532)--(-1.95342,2.89521)--(-1.95439,2.89509)--(-1.95537,2.89497)--(-1.95634,2.89486)--(-1.95731,2.89474)--(-1.95828,2.89462)--(-1.95925,2.89451)--(-1.96023,2.89439)--(-1.9612,2.89427)--(-1.96217,2.89415)--(-1.96315,2.89404)--(-1.96412,2.89392)--(-1.96509,2.8938)--(-1.96607,2.89368)--(-1.96704,2.89356)--
> (-1.96802,2.89345)--(-1.96899,2.89333)--(-1.96997,2.89321)--(-1.97095,2.89309)--(-1.97192,2.89297)--(-1.9729,2.89285)--(-1.97388,2.89273)--(-1.97485,2.89262)--(-1.97583,2.8925)--(-1.97681,2.89238)--(-1.97779,2.89226)--(-1.97877,2.89214)--(-1.97974,2.89202)--(-1.98072,2.8919)--(-1.9817,2.89178)--(-1.98268,2.89166)--(-1.98366,2.89154)--(-1.98464,2.89142)--(-1.98562,2.8913)--(-1.98661,2.89118)--(-1.98759,2.89106)--(-1.98857,2.89094)--(-1.98955,2.89082)--(-1.99053,2.8907)--(-1.99152,2.89057)--
> (-1.9925,2.89045)--(-1.99348,2.89033)--(-1.99447,2.89021)--(-1.99545,2.89009)--(-1.99643,2.88997)--(-1.99742,2.88985)--(-1.9984,2.88972)--(-1.99939,2.8896)--(-2.00037,2.88948)--(-2.00136,2.88936)--(-2.00235,2.88924)--(-2.00333,2.88911)--(-2.00432,2.88899)--(-2.00531,2.88887)--(-2.00629,2.88874)--(-2.00728,2.88862)--(-2.00827,2.8885)--(-2.00926,2.88838)--(-2.01025,2.88825)--(-2.01124,2.88813)--(-2.01223,2.88801)--(-2.01322,2.88788)--(-2.01421,2.88776)--(-2.0152,2.88763)--(-2.01619,2.88751)--
> (-2.01718,2.88739)--(-2.01817,2.88726)--(-2.01916,2.88714)--(-2.02015,2.88701)--(-2.02115,2.88689)--(-2.02214,2.88676)--(-2.02313,2.88664)--(-2.02413,2.88651)--(-2.02512,2.88639)--(-2.02611,2.88626)--(-2.02711,2.88614)--(-2.0281,2.88601)--(-2.0291,2.88589)--(-2.03009,2.88576)--(-2.03109,2.88563)--(-2.03208,2.88551)--(-2.03308,2.88538)--(-2.03408,2.88526)--(-2.03508,2.88513)--(-2.03607,2.885)--(-2.03707,2.88488)--(-2.03807,2.88475)--(-2.03907,2.88462)--(-2.04007,2.8845)--(-2.04107,2.88437)--
> (-2.04207,2.88424)--(-2.04307,2.88411)--(-2.04407,2.88399)--(-2.04507,2.88386)--(-2.04607,2.88373)--(-2.04707,2.8836)--(-2.04807,2.88348)--(-2.04907,2.88335)--(-2.05007,2.88322)--(-2.05108,2.88309)--(-2.05208,2.88296)--(-2.05308,2.88283)--(-2.05409,2.8827)--(-2.05509,2.88258)--(-2.0561,2.88245)--(-2.0571,2.88232)--(-2.05811,2.88219)--(-2.05911,2.88206)--(-2.06012,2.88193)--(-2.06112,2.8818)--(-2.06213,2.88167)--(-2.06314,2.88154)--(-2.06415,2.88141)--(-2.06515,2.88128)--(-2.06616,2.88115)--
> (-2.06717,2.88102)--(-2.06818,2.88089)--(-2.06919,2.88076)--(-2.0702,2.88063)--(-2.07121,2.8805)--(-2.07222,2.88036)--(-2.07323,2.88023)--(-2.07424,2.8801)--(-2.07525,2.87997)--(-2.07626,2.87984)--(-2.07727,2.87971)--(-2.07829,2.87958)--(-2.0793,2.87944)--(-2.08031,2.87931)--(-2.08133,2.87918)--(-2.08234,2.87905)--(-2.08335,2.87891)--(-2.08437,2.87878)--(-2.08538,2.87865)--(-2.0864,2.87852)--(-2.08742,2.87838)--(-2.08843,2.87825)--(-2.08945,2.87812)--(-2.09046,2.87798)--(-2.09148,2.87785)--
> (-2.0925,2.87772)--(-2.09352,2.87758)--(-2.09454,2.87745)--(-2.09555,2.87731)--(-2.09657,2.87718)--(-2.09759,2.87705)--(-2.09861,2.87691)--(-2.09963,2.87678)--(-2.10065,2.87664)--(-2.10168,2.87651)--(-2.1027,2.87637)--(-2.10372,2.87624)--(-2.10474,2.8761)--(-2.10576,2.87597)--(-2.10679,2.87583)--(-2.10781,2.87569)--(-2.10883,2.87556)--(-2.10986,2.87542)--(-2.11088,2.87529)--(-2.11191,2.87515)--(-2.11293,2.87501)--(-2.11396,2.87488)--(-2.11498,2.87474)--(-2.11601,2.8746)--(-2.11704,2.87447)--
> (-2.11806,2.87433)--(-2.11909,2.87419)--(-2.12012,2.87406)--(-2.12115,2.87392)--(-2.12218,2.87378)--(-2.12321,2.87364)--(-2.12424,2.87351)--(-2.12527,2.87337)--(-2.1263,2.87323)--(-2.12733,2.87309)--(-2.12836,2.87295)--(-2.12939,2.87281)--(-2.13042,2.87268)--(-2.13145,2.87254)--(-2.13249,2.8724)--(-2.13352,2.87226)--(-2.13455,2.87212)--(-2.13559,2.87198)--(-2.13662,2.87184)--(-2.13766,2.8717)--(-2.13869,2.87156)--(-2.13973,2.87142)--(-2.14076,2.87128)--(-2.1418,2.87114)--(-2.14284,2.871)--
> (-2.14387,2.87086)--(-2.14491,2.87072)--(-2.14595,2.87058)--(-2.14699,2.87044)--(-2.14803,2.8703)--(-2.14907,2.87016)--(-2.15011,2.87001)--(-2.15115,2.86987)--(-2.15219,2.86973)--(-2.15323,2.86959)--(-2.15427,2.86945)--(-2.15531,2.86931)--(-2.15635,2.86916)--(-2.15739,2.86902)--(-2.15844,2.86888)--(-2.15948,2.86874)--(-2.16052,2.86859)--(-2.16157,2.86845)--(-2.16261,2.86831)--(-2.16366,2.86817)--(-2.1647,2.86802)--(-2.16575,2.86788)--(-2.1668,2.86774)--(-2.16784,2.86759)--(-2.16889,2.86745)--
> (-2.16994,2.8673)--(-2.17099,2.86716)--(-2.17203,2.86702)--(-2.17308,2.86687)--(-2.17413,2.86673)--(-2.17518,2.86658)--(-2.17623,2.86644)--(-2.17728,2.86629)--(-2.17833,2.86615)--(-2.17938,2.866)--(-2.18044,2.86586)--(-2.18149,2.86571)--(-2.18254,2.86557)--(-2.18359,2.86542)--(-2.18465,2.86527)--(-2.1857,2.86513)--(-2.18676,2.86498)--(-2.18781,2.86483)--(-2.18887,2.86469)--(-2.18992,2.86454)--(-2.19098,2.86439)--(-2.19204,2.86425)--(-2.19309,2.8641)--(-2.19415,2.86395)--(-2.19521,2.86381)--
> (-2.19627,2.86366)--(-2.19732,2.86351)--(-2.19838,2.86336)--(-2.19944,2.86321)--(-2.2005,2.86307)--(-2.20156,2.86292)--(-2.20263,2.86277)--(-2.20369,2.86262)--(-2.20475,2.86247)--(-2.20581,2.86232)--(-2.20687,2.86217)--(-2.20794,2.86203)--(-2.209,2.86188)--(-2.21006,2.86173)--(-2.21113,2.86158)--(-2.21219,2.86143)--(-2.21326,2.86128)--(-2.21433,2.86113)--(-2.21539,2.86098)--(-2.21646,2.86083)--(-2.21753,2.86068)--(-2.21859,2.86053)--(-2.21966,2.86037)--(-2.22073,2.86022)--(-2.2218,2.86007)--
> (-2.22287,2.85992)--(-2.22394,2.85977)--(-2.22501,2.85962)--(-2.22608,2.85947)--(-2.22715,2.85932)--(-2.22822,2.85916)--(-2.2293,2.85901)--(-2.23037,2.85886)--(-2.23144,2.85871)--(-2.23252,2.85855)--(-2.23359,2.8584)--(-2.23466,2.85825)--(-2.23574,2.85809)--(-2.23682,2.85794)--(-2.23789,2.85779)--(-2.23897,2.85763)--(-2.24004,2.85748)--(-2.24112,2.85733)--(-2.2422,2.85717)--(-2.24328,2.85702)--(-2.24436,2.85686)--(-2.24544,2.85671)--(-2.24652,2.85656)--(-2.2476,2.8564)--(-2.24868,2.85625)--
> (-2.24976,2.85609)--(-2.25084,2.85594)--(-2.25192,2.85578)--(-2.253,2.85563)--(-2.25409,2.85547)--(-2.25517,2.85531)--(-2.25626,2.85516)--(-2.25734,2.855)--(-2.25843,2.85485)--(-2.25951,2.85469)--(-2.2606,2.85453)--(-2.26168,2.85438)--(-2.26277,2.85422)--(-2.26386,2.85406)--(-2.26495,2.8539)--(-2.26603,2.85375)--(-2.26712,2.85359)--(-2.26821,2.85343)--(-2.2693,2.85327)--(-2.27039,2.85312)--(-2.27148,2.85296)--(-2.27257,2.8528)--(-2.27367,2.85264)--(-2.27476,2.85248)--(-2.27585,2.85232)--
> (-2.27694,2.85216)--(-2.27804,2.85201)--(-2.27913,2.85185)--(-2.28023,2.85169)--(-2.28132,2.85153)--(-2.28242,2.85137)--(-2.28352,2.85121)--(-2.28461,2.85105)--(-2.28571,2.85089)--(-2.28681,2.85073)--(-2.28791,2.85057)--(-2.289,2.85041)--(-2.2901,2.85024)--(-2.2912,2.85008)--(-2.2923,2.84992)--(-2.2934,2.84976)--(-2.29451,2.8496)--(-2.29561,2.84944)--(-2.29671,2.84928)--(-2.29781,2.84911)--(-2.29892,2.84895)--(-2.30002,2.84879)--(-2.30112,2.84863)--(-2.30223,2.84846)--(-2.30333,2.8483)--
> (-2.30444,2.84814)--(-2.30555,2.84798)--(-2.30665,2.84781)--(-2.30776,2.84765)--(-2.30887,2.84748)--(-2.30998,2.84732)--(-2.31109,2.84716)--(-2.3122,2.84699)--(-2.31331,2.84683)--(-2.31442,2.84666)--(-2.31553,2.8465)--(-2.31664,2.84633)--(-2.31775,2.84617)--(-2.31886,2.846)--(-2.31998,2.84584)--(-2.32109,2.84567)--(-2.3222,2.84551)--(-2.32332,2.84534)--(-2.32443,2.84518)--(-2.32555,2.84501)--(-2.32667,2.84484)--(-2.32778,2.84468)--(-2.3289,2.84451)--(-2.33002,2.84434)--(-2.33114,2.84418)--
> (-2.33226,2.84401)--(-2.33338,2.84384)--(-2.3345,2.84368)--(-2.33562,2.84351)--(-2.33674,2.84334)--(-2.33786,2.84317)--(-2.33898,2.843)--(-2.3401,2.84284)--(-2.34123,2.84267)--(-2.34235,2.8425)--(-2.34348,2.84233)--(-2.3446,2.84216)--(-2.34573,2.84199)--(-2.34685,2.84182)--(-2.34798,2.84165)--(-2.34911,2.84148)--(-2.35023,2.84131)--(-2.35136,2.84114)--(-2.35249,2.84097)--(-2.35362,2.8408)--(-2.35475,2.84063)--(-2.35588,2.84046)--(-2.35701,2.84029)--(-2.35814,2.84012)--(-2.35927,2.83995)--
> (-2.36041,2.83978)--(-2.36154,2.83961)--(-2.36267,2.83944)--(-2.36381,2.83926)--(-2.36494,2.83909)--(-2.36608,2.83892)--(-2.36721,2.83875)--(-2.36835,2.83857)--(-2.36949,2.8384)--(-2.37062,2.83823)--(-2.37176,2.83806)--(-2.3729,2.83788)--(-2.37404,2.83771)--(-2.37518,2.83754)--(-2.37632,2.83736)--(-2.37746,2.83719)--(-2.3786,2.83701)--(-2.37975,2.83684)--(-2.38089,2.83666)--(-2.38203,2.83649)--(-2.38318,2.83632)--(-2.38432,2.83614)--(-2.38546,2.83596)--(-2.38661,2.83579)--(-2.38776,2.83561)--
> (-2.3889,2.83544)--(-2.39005,2.83526)--(-2.3912,2.83509)--(-2.39235,2.83491)--(-2.3935,2.83473)--(-2.39465,2.83456)--(-2.3958,2.83438)--(-2.39695,2.8342)--(-2.3981,2.83403)--(-2.39925,2.83385)--(-2.4004,2.83367)--(-2.40155,2.83349)--(-2.40271,2.83332)--(-2.40386,2.83314)--(-2.40502,2.83296)--(-2.40617,2.83278)--(-2.40733,2.8326)--(-2.40849,2.83242)--(-2.40964,2.83224)--(-2.4108,2.83207)--(-2.41196,2.83189)--(-2.41312,2.83171)--(-2.41428,2.83153)--(-2.41544,2.83135)--(-2.4166,2.83117)--
> (-2.41776,2.83099)--(-2.41892,2.83081)--(-2.42008,2.83063)--(-2.42125,2.83045)--(-2.42241,2.83026)--(-2.42358,2.83008)--(-2.42474,2.8299)--(-2.42591,2.82972)--(-2.42707,2.82954)--(-2.42824,2.82936)--(-2.42941,2.82917)--(-2.43057,2.82899)--(-2.43174,2.82881)--(-2.43291,2.82863)--(-2.43408,2.82844)--(-2.43525,2.82826)--(-2.43642,2.82808)--(-2.4376,2.82789)--(-2.43877,2.82771)--(-2.43994,2.82753)--(-2.44111,2.82734)--(-2.44229,2.82716)--(-2.44346,2.82698)--(-2.44464,2.82679)--(-2.44581,2.82661)--
> (-2.44699,2.82642)--(-2.44817,2.82624)--(-2.44935,2.82605)--(-2.45052,2.82587)--(-2.4517,2.82568)--(-2.45288,2.82549)--(-2.45406,2.82531)--(-2.45524,2.82512)--(-2.45643,2.82494)--(-2.45761,2.82475)--(-2.45879,2.82456)--(-2.45997,2.82438)--(-2.46116,2.82419)--(-2.46234,2.824)--(-2.46353,2.82381)--(-2.46472,2.82363)--(-2.4659,2.82344)--(-2.46709,2.82325)--(-2.46828,2.82306)--(-2.46947,2.82287)--(-2.47066,2.82268)--(-2.47184,2.8225)--(-2.47304,2.82231)--(-2.47423,2.82212)--(-2.47542,2.82193)--
> (-2.47661,2.82174)--(-2.4778,2.82155)--(-2.479,2.82136)--(-2.48019,2.82117)--(-2.48139,2.82098)--(-2.48258,2.82079)--(-2.48378,2.8206)--(-2.48498,2.8204)--(-2.48617,2.82021)--(-2.48737,2.82002)--(-2.48857,2.81983)--(-2.48977,2.81964)--(-2.49097,2.81945)--(-2.49217,2.81925)--(-2.49337,2.81906)--(-2.49458,2.81887)--(-2.49578,2.81868)--(-2.49698,2.81848)--(-2.49819,2.81829)--(-2.49939,2.8181)--(-2.5006,2.8179)--(-2.5018,2.81771)--(-2.50301,2.81752)--(-2.50422,2.81732)--(-2.50543,2.81713)--
> (-2.50664,2.81693)--(-2.50784,2.81674)--(-2.50906,2.81654)--(-2.51027,2.81635)--(-2.51148,2.81615)--(-2.51269,2.81596)--(-2.5139,2.81576)--(-2.51512,2.81556)--(-2.51633,2.81537)--(-2.51755,2.81517)--(-2.51876,2.81498)--(-2.51998,2.81478)--(-2.5212,2.81458)--(-2.52241,2.81438)--(-2.52363,2.81419)--(-2.52485,2.81399)--(-2.52607,2.81379)--(-2.52729,2.81359)--(-2.52851,2.8134)--(-2.52973,2.8132)--(-2.53096,2.813)--(-2.53218,2.8128)--(-2.5334,2.8126)--(-2.53463,2.8124)--(-2.53585,2.8122)--
> (-2.53708,2.812)--(-2.53831,2.8118)--(-2.53953,2.8116)--(-2.54076,2.8114)--(-2.54199,2.8112)--(-2.54322,2.811)--(-2.54445,2.8108)--(-2.54568,2.8106)--(-2.54691,2.8104)--(-2.54815,2.8102)--(-2.54938,2.80999)--(-2.55061,2.80979)--(-2.55185,2.80959)--(-2.55308,2.80939)--(-2.55432,2.80918)--(-2.55555,2.80898)--(-2.55679,2.80878)--(-2.55803,2.80858)--(-2.55927,2.80837)--(-2.56051,2.80817)--(-2.56175,2.80796)--(-2.56299,2.80776)--(-2.56423,2.80756)--(-2.56547,2.80735)--(-2.56672,2.80715)--
> (-2.56796,2.80694)--(-2.56921,2.80674)--(-2.57045,2.80653)--(-2.5717,2.80633)--(-2.57294,2.80612)--(-2.57419,2.80591)--(-2.57544,2.80571)--(-2.57669,2.8055)--(-2.57794,2.80529)--(-2.57919,2.80509)--(-2.58044,2.80488)--(-2.58169,2.80467)--(-2.58294,2.80447)--(-2.5842,2.80426)--(-2.58545,2.80405)--(-2.58671,2.80384)--(-2.58796,2.80363)--(-2.58922,2.80343)--(-2.59048,2.80322)--(-2.59173,2.80301)--(-2.59299,2.8028)--(-2.59425,2.80259)--(-2.59551,2.80238)--(-2.59677,2.80217)--(-2.59803,2.80196)--
> (-2.5993,2.80175)--(-2.60056,2.80154)--(-2.60182,2.80133)--(-2.60309,2.80112)--(-2.60435,2.8009)--(-2.60562,2.80069)--(-2.60689,2.80048)--(-2.60815,2.80027)--(-2.60942,2.80006)--(-2.61069,2.79985)--(-2.61196,2.79963)--(-2.61323,2.79942)--(-2.6145,2.79921)--(-2.61578,2.79899)--(-2.61705,2.79878)--(-2.61832,2.79857)--(-2.6196,2.79835)--(-2.62087,2.79814)--(-2.62215,2.79792)--(-2.62343,2.79771)--(-2.6247,2.79749)--(-2.62598,2.79728)--(-2.62726,2.79706)--(-2.62854,2.79685)--(-2.62982,2.79663)--
> (-2.6311,2.79642)--(-2.63239,2.7962)--(-2.63367,2.79598)--(-2.63495,2.79577)--(-2.63624,2.79555)--(-2.63752,2.79533)--(-2.63881,2.79512)--(-2.6401,2.7949)--(-2.64138,2.79468)--(-2.64267,2.79446)--(-2.64396,2.79424)--(-2.64525,2.79403)--(-2.64654,2.79381)--(-2.64784,2.79359)--(-2.64913,2.79337)--(-2.65042,2.79315)--(-2.65172,2.79293)--(-2.65301,2.79271)--(-2.65431,2.79249)--(-2.6556,2.79227)--(-2.6569,2.79205)--(-2.6582,2.79183)--(-2.6595,2.79161)--(-2.6608,2.79139)--(-2.6621,2.79116)--
> (-2.6634,2.79094)--(-2.6647,2.79072)--(-2.66601,2.7905)--(-2.66731,2.79028)--(-2.66862,2.79005)--(-2.66992,2.78983)--(-2.67123,2.78961)--(-2.67254,2.78938)--(-2.67384,2.78916)--(-2.67515,2.78894)--(-2.67646,2.78871)--(-2.67777,2.78849)--(-2.67908,2.78826)--(-2.6804,2.78804)--(-2.68171,2.78781)--(-2.68302,2.78759)--(-2.68434,2.78736)--(-2.68565,2.78714)--(-2.68697,2.78691)--(-2.68829,2.78668)--(-2.68961,2.78646)--(-2.69093,2.78623)--(-2.69225,2.786)--(-2.69357,2.78577)--(-2.69489,2.78555)--
> (-2.69621,2.78532)--(-2.69753,2.78509)--(-2.69886,2.78486)--(-2.70018,2.78463)--(-2.70151,2.78441)--(-2.70283,2.78418)--(-2.70416,2.78395)--(-2.70549,2.78372)--(-2.70682,2.78349)--(-2.70815,2.78326)--(-2.70948,2.78303)--(-2.71081,2.7828)--(-2.71215,2.78257)--(-2.71348,2.78234)--(-2.71481,2.7821)--(-2.71615,2.78187)--(-2.71748,2.78164)--(-2.71882,2.78141)--(-2.72016,2.78118)--(-2.7215,2.78094)--(-2.72284,2.78071)--(-2.72418,2.78048)--(-2.72552,2.78025)--(-2.72686,2.78001)--(-2.72821,2.77978)--
> (-2.72955,2.77954)--(-2.73089,2.77931)--(-2.73224,2.77908)--(-2.73359,2.77884)--(-2.73493,2.77861)--(-2.73628,2.77837)--(-2.73763,2.77814)--(-2.73898,2.7779)--(-2.74033,2.77766)--(-2.74169,2.77743)--(-2.74304,2.77719)--(-2.74439,2.77695)--(-2.74575,2.77672)--(-2.7471,2.77648)--(-2.74846,2.77624)--(-2.74982,2.776)--(-2.75118,2.77577)--(-2.75254,2.77553)--(-2.7539,2.77529)--(-2.75526,2.77505)--(-2.75662,2.77481)--(-2.75798,2.77457)--(-2.75935,2.77433)--(-2.76071,2.77409)--(-2.76208,2.77385)--
> (-2.76344,2.77361)--(-2.76481,2.77337)--(-2.76618,2.77313)--(-2.76755,2.77289)--(-2.76892,2.77265)--(-2.77029,2.77241)--(-2.77166,2.77216)--(-2.77303,2.77192)--(-2.77441,2.77168)--(-2.77578,2.77144)--(-2.77716,2.77119)--(-2.77854,2.77095)--(-2.77991,2.77071)--(-2.78129,2.77046)--(-2.78267,2.77022)--(-2.78405,2.76997)--(-2.78543,2.76973)--(-2.78682,2.76948)--(-2.7882,2.76924)--(-2.78958,2.76899)--(-2.79097,2.76875)--(-2.79236,2.7685)--(-2.79374,2.76825)--(-2.79513,2.76801)--(-2.79652,2.76776)--
> (-2.79791,2.76751)--(-2.7993,2.76727)--(-2.80069,2.76702)--(-2.80209,2.76677)--(-2.80348,2.76652)--(-2.80488,2.76627)--(-2.80627,2.76603)--(-2.80767,2.76578)--(-2.80907,2.76553)--(-2.81046,2.76528)--(-2.81186,2.76503)--(-2.81327,2.76478)--(-2.81467,2.76453)--(-2.81607,2.76428)--(-2.81747,2.76403)--(-2.81888,2.76377)--(-2.82028,2.76352)--(-2.82169,2.76327)--(-2.8231,2.76302)--(-2.82451,2.76277)--(-2.82592,2.76251)--(-2.82733,2.76226)--(-2.82874,2.76201)--(-2.83015,2.76175)--(-2.83156,2.7615)--
> (-2.83298,2.76125)--(-2.83439,2.76099)--(-2.83581,2.76074)--(-2.83723,2.76048)--(-2.83865,2.76023)--(-2.84007,2.75997)--(-2.84149,2.75972)--(-2.84291,2.75946)--(-2.84433,2.7592)--(-2.84575,2.75895)--(-2.84718,2.75869)--(-2.8486,2.75843)--(-2.85003,2.75818)--(-2.85146,2.75792)--(-2.85289,2.75766)--(-2.85432,2.7574)--(-2.85575,2.75714)--(-2.85718,2.75689)--(-2.85861,2.75663)--(-2.86005,2.75637)--(-2.86148,2.75611)--(-2.86292,2.75585)--(-2.86435,2.75559)--(-2.86579,2.75533)--(-2.86723,2.75507)--
> (-2.86867,2.7548)--(-2.87011,2.75454)--(-2.87155,2.75428)--(-2.873,2.75402)--(-2.87444,2.75376)--(-2.87588,2.75349)--(-2.87733,2.75323)--(-2.87878,2.75297)--(-2.88023,2.7527)--(-2.88168,2.75244)--(-2.88313,2.75218)--(-2.88458,2.75191)--(-2.88603,2.75165)--(-2.88748,2.75138)--(-2.88894,2.75112)--(-2.89039,2.75085)--(-2.89185,2.75059)--(-2.89331,2.75032)--(-2.89477,2.75005)--(-2.89623,2.74979)--(-2.89769,2.74952)--(-2.89915,2.74925)--(-2.90061,2.74898)--(-2.90208,2.74872)--(-2.90354,2.74845)--
> (-2.90501,2.74818)--(-2.90648,2.74791)--(-2.90795,2.74764)--(-2.90942,2.74737)--(-2.91089,2.7471)--(-2.91236,2.74683)--(-2.91383,2.74656)--(-2.91531,2.74629)--(-2.91678,2.74602)--(-2.91826,2.74575)--(-2.91973,2.74548)--(-2.92121,2.7452)--(-2.92269,2.74493)--(-2.92417,2.74466)--(-2.92566,2.74439)--(-2.92714,2.74411)--(-2.92862,2.74384)--(-2.93011,2.74357)--(-2.93159,2.74329)--(-2.93308,2.74302)--(-2.93457,2.74274)--(-2.93606,2.74247)--(-2.93755,2.74219)--(-2.93904,2.74192)--(-2.94053,2.74164)--
> (-2.94203,2.74136)--(-2.94352,2.74109)--(-2.94502,2.74081)--(-2.94652,2.74053)--(-2.94802,2.74025)--(-2.94952,2.73998)--(-2.95102,2.7397)--(-2.95252,2.73942)--(-2.95402,2.73914)--(-2.95553,2.73886)--(-2.95703,2.73858)--(-2.95854,2.7383)--(-2.96005,2.73802)--(-2.96156,2.73774)--(-2.96307,2.73746)--(-2.96458,2.73718)--(-2.96609,2.7369)--(-2.9676,2.73662)--(-2.96912,2.73633)--(-2.97063,2.73605)--(-2.97215,2.73577)--(-2.97367,2.73549)--(-2.97519,2.7352)--(-2.97671,2.73492)--(-2.97823,2.73464)--
> (-2.97975,2.73435)--(-2.98128,2.73407)--(-2.9828,2.73378)--(-2.98433,2.7335)--(-2.98586,2.73321)--(-2.98739,2.73292)--(-2.98892,2.73264)--(-2.99045,2.73235)--(-2.99198,2.73206)--(-2.99351,2.73178)--(-2.99505,2.73149)--(-2.99658,2.7312)--(-2.99812,2.73091)--(-2.99966,2.73062)--(-3.0012,2.73034)--(-3.00274,2.73005)--(-3.00428,2.72976)--(-3.00583,2.72947)--(-3.00737,2.72918)--(-3.00892,2.72889)--(-3.01046,2.72859)--(-3.01201,2.7283)--(-3.01356,2.72801)--(-3.01511,2.72772)--(-3.01666,2.72743)--
> (-3.01821,2.72713)--(-3.01977,2.72684)--(-3.02132,2.72655)--(-3.02288,2.72625)--(-3.02444,2.72596)--(-3.026,2.72567)--(-3.02756,2.72537)--(-3.02912,2.72508)--(-3.03068,2.72478)--(-3.03225,2.72448)--(-3.03381,2.72419)--(-3.03538,2.72389)--(-3.03695,2.7236)--(-3.03852,2.7233)--(-3.04009,2.723)--(-3.04166,2.7227)--(-3.04323,2.7224)--(-3.04481,2.72211)--(-3.04638,2.72181)--(-3.04796,2.72151)--(-3.04954,2.72121)--(-3.05111,2.72091)--(-3.0527,2.72061)--(-3.05428,2.72031)--(-3.05586,2.72001)--
> (-3.05744,2.7197)--(-3.05903,2.7194)--(-3.06062,2.7191)--(-3.06221,2.7188)--(-3.06379,2.7185)--(-3.06539,2.71819)--(-3.06698,2.71789)--(-3.06857,2.71759)--(-3.07017,2.71728)--(-3.07176,2.71698)--(-3.07336,2.71667)--(-3.07496,2.71637)--(-3.07656,2.71606)--(-3.07816,2.71575)--(-3.07976,2.71545)--(-3.08137,2.71514)--(-3.08297,2.71483)--(-3.08458,2.71453)--(-3.08618,2.71422)--(-3.08779,2.71391)--(-3.0894,2.7136)--(-3.09102,2.71329)--(-3.09263,2.71298)--(-3.09424,2.71267)--(-3.09586,2.71236)--
> (-3.09748,2.71205)--(-3.09909,2.71174)--(-3.10071,2.71143)--(-3.10234,2.71112)--(-3.10396,2.71081)--(-3.10558,2.7105)--(-3.10721,2.71018)--(-3.10883,2.70987)--(-3.11046,2.70956)--(-3.11209,2.70924)--(-3.11372,2.70893)--(-3.11535,2.70861)--(-3.11699,2.7083)--(-3.11862,2.70798)--(-3.12026,2.70767)--(-3.12189,2.70735)--(-3.12353,2.70704)--(-3.12517,2.70672)--(-3.12682,2.7064)--(-3.12846,2.70609)--(-3.1301,2.70577)--(-3.13175,2.70545)--(-3.1334,2.70513)--(-3.13504,2.70481)--(-3.13669,2.70449)--
> (-3.13835,2.70417)--(-3.14,2.70385)--(-3.14165,2.70353)--(-3.14331,2.70321)--(-3.14496,2.70289)--(-3.14662,2.70257)--(-3.14828,2.70225)--(-3.14994,2.70192)--(-3.15161,2.7016)--(-3.15327,2.70128)--(-3.15494,2.70095)--(-3.1566,2.70063)--(-3.15827,2.7003)--(-3.15994,2.69998)--(-3.16161,2.69965)--(-3.16328,2.69933)--(-3.16496,2.699)--(-3.16663,2.69868)--(-3.16831,2.69835)--(-3.16999,2.69802)--(-3.17167,2.69769)--(-3.17335,2.69737)--(-3.17503,2.69704)--(-3.17672,2.69671)--(-3.1784,2.69638)--
> (-3.18009,2.69605)--(-3.18178,2.69572)--(-3.18347,2.69539)--(-3.18516,2.69506)--(-3.18685,2.69473)--(-3.18855,2.6944)--(-3.19024,2.69406)--(-3.19194,2.69373)--(-3.19364,2.6934)--(-3.19534,2.69307)--(-3.19704,2.69273)--(-3.19874,2.6924)--(-3.20045,2.69206)--(-3.20215,2.69173)--(-3.20386,2.69139)--(-3.20557,2.69106)--(-3.20728,2.69072)--(-3.20899,2.69039)--(-3.21071,2.69005)--(-3.21242,2.68971)--(-3.21414,2.68937)--(-3.21586,2.68904)--(-3.21758,2.6887)--(-3.2193,2.68836)--(-3.22102,2.68802)--
> (-3.22275,2.68768)--(-3.22447,2.68734)--(-3.2262,2.687)--(-3.22793,2.68666)--(-3.22966,2.68632)--(-3.23139,2.68597)--(-3.23313,2.68563)--(-3.23486,2.68529)--(-3.2366,2.68495)--(-3.23834,2.6846)--(-3.24008,2.68426)--(-3.24182,2.68391)--(-3.24356,2.68357)--(-3.2453,2.68322)--(-3.24705,2.68288)--(-3.2488,2.68253)--(-3.25055,2.68219)--(-3.2523,2.68184)--(-3.25405,2.68149)--(-3.2558,2.68114)--(-3.25756,2.68079)--(-3.25932,2.68045)--(-3.26108,2.6801)--(-3.26284,2.67975)--(-3.2646,2.6794)--
> (-3.26636,2.67905)--(-3.26813,2.6787)--(-3.26989,2.67834)--(-3.27166,2.67799)--(-3.27343,2.67764)--(-3.2752,2.67729)--(-3.27698,2.67693)--(-3.27875,2.67658)--(-3.28053,2.67623)--(-3.2823,2.67587)--(-3.28408,2.67552)--(-3.28587,2.67516)--(-3.28765,2.67481)--(-3.28943,2.67445)--(-3.29122,2.67409)--(-3.29301,2.67374)--(-3.2948,2.67338)--(-3.29659,2.67302)--(-3.29838,2.67266)--(-3.30017,2.6723)--(-3.30197,2.67194)--(-3.30377,2.67158)--(-3.30557,2.67122)--(-3.30737,2.67086)--(-3.30917,2.6705)--
> (-3.31098,2.67014)--(-3.31278,2.66978)--(-3.31459,2.66942)--(-3.3164,2.66905)--(-3.31821,2.66869)--(-3.32002,2.66833)--(-3.32184,2.66796)--(-3.32365,2.6676)--(-3.32547,2.66723)--(-3.32729,2.66687)--(-3.32911,2.6665)--(-3.33094,2.66613)--(-3.33276,2.66577)--(-3.33459,2.6654)--(-3.33641,2.66503)--(-3.33824,2.66466)--(-3.34008,2.66429)--(-3.34191,2.66392)--(-3.34374,2.66355)--(-3.34558,2.66318)--(-3.34742,2.66281)--(-3.34926,2.66244)--(-3.3511,2.66207)--(-3.35294,2.6617)--(-3.35479,2.66132)--
> (-3.35664,2.66095)--(-3.35849,2.66058)--(-3.36034,2.6602)--(-3.36219,2.65983)--(-3.36404,2.65945)--(-3.3659,2.65908)--(-3.36776,2.6587)--(-3.36962,2.65833)--(-3.37148,2.65795)--(-3.37334,2.65757)--(-3.37521,2.65719)--(-3.37707,2.65681)--(-3.37894,2.65644)--(-3.38081,2.65606)--(-3.38268,2.65568)--(-3.38456,2.6553)--(-3.38643,2.65492)--(-3.38831,2.65453)--(-3.39019,2.65415)--(-3.39207,2.65377)--(-3.39395,2.65339)--(-3.39584,2.653)--(-3.39773,2.65262)--(-3.39961,2.65223)--(-3.4015,2.65185)--
> (-3.4034,2.65146)--(-3.40529,2.65108)--(-3.40719,2.65069)--(-3.40908,2.65031)--(-3.41098,2.64992)--(-3.41288,2.64953)--(-3.41479,2.64914)--(-3.41669,2.64875)--(-3.4186,2.64836)--(-3.42051,2.64797)--(-3.42242,2.64758)--(-3.42433,2.64719)--(-3.42625,2.6468)--(-3.42816,2.64641)--(-3.43008,2.64602)--(-3.432,2.64562)--(-3.43392,2.64523)--(-3.43585,2.64484)--(-3.43777,2.64444)--(-3.4397,2.64405)--(-3.44163,2.64365)--(-3.44356,2.64326)--(-3.44549,2.64286)--(-3.44743,2.64246)--(-3.44936,2.64206)--
> (-3.4513,2.64167)--(-3.45324,2.64127)--(-3.45519,2.64087)--(-3.45713,2.64047)--(-3.45908,2.64007)--(-3.46103,2.63967)--(-3.46298,2.63927)--(-3.46493,2.63887)--(-3.46689,2.63846)--(-3.46884,2.63806)--(-3.4708,2.63766)--(-3.47276,2.63725)--(-3.47472,2.63685)--(-3.47669,2.63644)--(-3.47866,2.63604)--(-3.48062,2.63563)--(-3.48259,2.63523)--(-3.48457,2.63482)--(-3.48654,2.63441)--(-3.48852,2.634)--(-3.4905,2.63359)--(-3.49248,2.63319)--(-3.49446,2.63278)--(-3.49644,2.63237)--(-3.49843,2.63195)--
> (-3.50042,2.63154)--(-3.50241,2.63113)--(-3.5044,2.63072)--(-3.50639,2.63031)--(-3.50839,2.62989)--(-3.51039,2.62948)--(-3.51239,2.62906)--(-3.51439,2.62865)--(-3.5164,2.62823)--(-3.5184,2.62782)--(-3.52041,2.6274)--(-3.52242,2.62698)--(-3.52444,2.62656)--(-3.52645,2.62614)--(-3.52847,2.62573)--(-3.53049,2.62531)--(-3.53251,2.62489)--(-3.53453,2.62447)--(-3.53656,2.62404)--(-3.53859,2.62362)--(-3.54062,2.6232)--(-3.54265,2.62278)--(-3.54468,2.62235)--(-3.54672,2.62193)--(-3.54876,2.6215)--
> (-3.5508,2.62108)--(-3.55284,2.62065)--(-3.55488,2.62023)--(-3.55693,2.6198)--(-3.55898,2.61937)--(-3.56103,2.61894)--(-3.56308,2.61851)--(-3.56514,2.61808)--(-3.56719,2.61765)--(-3.56925,2.61722)--(-3.57131,2.61679)--(-3.57338,2.61636)--(-3.57544,2.61593)--(-3.57751,2.6155)--(-3.57958,2.61506)--(-3.58166,2.61463)--(-3.58373,2.61419)--(-3.58581,2.61376)--(-3.58789,2.61332)--(-3.58997,2.61289)--(-3.59205,2.61245)--(-3.59414,2.61201)--(-3.59622,2.61157)--(-3.59831,2.61114)--(-3.60041,2.6107)--
> (-3.6025,2.61026)--(-3.6046,2.60982)--(-3.6067,2.60937)--(-3.6088,2.60893)--(-3.6109,2.60849)--(-3.61301,2.60805)--(-3.61512,2.6076)--(-3.61723,2.60716)--(-3.61934,2.60671)--(-3.62145,2.60627)--(-3.62357,2.60582)--(-3.62569,2.60538)--(-3.62781,2.60493)--(-3.62994,2.60448)--(-3.63206,2.60403)--(-3.63419,2.60358)--(-3.63632,2.60313)--(-3.63845,2.60268)--(-3.64059,2.60223)--(-3.64273,2.60178)--(-3.64487,2.60133)--(-3.64701,2.60088)--(-3.64916,2.60042)--(-3.6513,2.59997)--(-3.65345,2.59951)--
> (-3.6556,2.59906)--(-3.65776,2.5986)--(-3.65991,2.59815)--(-3.66207,2.59769)--(-3.66423,2.59723)--(-3.6664,2.59677)--(-3.66856,2.59631)--(-3.67073,2.59585)--(-3.6729,2.59539)--(-3.67508,2.59493)--(-3.67725,2.59447)--(-3.67943,2.59401)--(-3.68161,2.59355)--(-3.68379,2.59308)--(-3.68598,2.59262)--(-3.68816,2.59215)--(-3.69035,2.59169)--(-3.69255,2.59122)--(-3.69474,2.59075)--(-3.69694,2.59029)--(-3.69914,2.58982)--(-3.70134,2.58935)--(-3.70354,2.58888)--(-3.70575,2.58841)--(-3.70796,2.58794)--
> (-3.71017,2.58747)--(-3.71239,2.587)--(-3.7146,2.58652)--(-3.71682,2.58605)--(-3.71905,2.58558)--(-3.72127,2.5851)--(-3.7235,2.58463)--(-3.72573,2.58415)--(-3.72796,2.58367)--(-3.73019,2.58319)--(-3.73243,2.58272)--(-3.73467,2.58224)--(-3.73691,2.58176)--(-3.73915,2.58128)--(-3.7414,2.5808)--(-3.74365,2.58032)--(-3.7459,2.57983)--(-3.74816,2.57935)--(-3.75041,2.57887)--(-3.75267,2.57838)--(-3.75494,2.5779)--(-3.7572,2.57741)--(-3.75947,2.57693)--(-3.76174,2.57644)--(-3.76401,2.57595)--
> (-3.76629,2.57546)--(-3.76856,2.57497)--(-3.77085,2.57448)--(-3.77313,2.57399)--(-3.77541,2.5735)--(-3.7777,2.57301)--(-3.77999,2.57252)--(-3.78229,2.57202)--(-3.78458,2.57153)--(-3.78688,2.57104)--(-3.78918,2.57054)--(-3.79149,2.57004)--(-3.79379,2.56955)--(-3.7961,2.56905)--(-3.79842,2.56855)--(-3.80073,2.56805)--(-3.80305,2.56755)--(-3.80537,2.56705)--(-3.80769,2.56655)--(-3.81002,2.56605)--(-3.81235,2.56555)--(-3.81468,2.56504)--(-3.81701,2.56454)--(-3.81935,2.56403)--(-3.82169,2.56353)--
> (-3.82403,2.56302)--(-3.82637,2.56252)--(-3.82872,2.56201)--(-3.83107,2.5615)--(-3.83342,2.56099)--(-3.83578,2.56048)--(-3.83814,2.55997)--(-3.8405,2.55946)--(-3.84286,2.55895)--(-3.84523,2.55843)--(-3.8476,2.55792)--(-3.84997,2.55741)--(-3.85235,2.55689)--(-3.85472,2.55637)--(-3.8571,2.55586)--(-3.85949,2.55534)--(-3.86188,2.55482)--(-3.86426,2.5543)--(-3.86666,2.55378)--(-3.86905,2.55326)--(-3.87145,2.55274)--(-3.87385,2.55222)--(-3.87625,2.5517)--(-3.87866,2.55117)--(-3.88107,2.55065)--
> (-3.88348,2.55012)--(-3.8859,2.5496)--(-3.88832,2.54907)--(-3.89074,2.54854)--(-3.89316,2.54802)--(-3.89559,2.54749)--(-3.89802,2.54696)--(-3.90045,2.54643)--(-3.90288,2.5459)--(-3.90532,2.54536)--(-3.90776,2.54483)--(-3.91021,2.5443)--(-3.91266,2.54376)--(-3.91511,2.54323)--(-3.91756,2.54269)--(-3.92002,2.54215)--(-3.92248,2.54162)--(-3.92494,2.54108)--(-3.9274,2.54054)--(-3.92987,2.54)--(-3.93234,2.53946)--(-3.93482,2.53892)--(-3.93729,2.53837)--(-3.93978,2.53783)--(-3.94226,2.53729)--
> (-3.94475,2.53674)--(-3.94723,2.5362)--(-3.94973,2.53565)--(-3.95222,2.5351)--(-3.95472,2.53455)--(-3.95722,2.53401)--(-3.95973,2.53346)--(-3.96224,2.53291)--(-3.96475,2.53235)--(-3.96726,2.5318)--(-3.96978,2.53125)--(-3.9723,2.53069)--(-3.97482,2.53014)--(-3.97735,2.52958)--(-3.97988,2.52903)--(-3.98241,2.52847)--(-3.98495,2.52791)--(-3.98749,2.52735)--(-3.99003,2.52679)--(-3.99258,2.52623)--(-3.99513,2.52567)--(-3.99768,2.52511)--(-4.00023,2.52455)--(-4.00279,2.52398)--(-4.00535,2.52342)--
> (-4.00792,2.52285)--(-4.01049,2.52228)--(-4.01306,2.52172)--(-4.01563,2.52115)--(-4.01821,2.52058)--(-4.02079,2.52001)--(-4.02338,2.51944)--(-4.02596,2.51887)--(-4.02855,2.51829)--(-4.03115,2.51772)--(-4.03375,2.51715)--(-4.03635,2.51657)--(-4.03895,2.51599)--(-4.04156,2.51542)--(-4.04417,2.51484)--(-4.04678,2.51426)--(-4.0494,2.51368)--(-4.05202,2.5131)--(-4.05465,2.51252)--(-4.05727,2.51194)--(-4.0599,2.51135)--(-4.06254,2.51077)--(-4.06518,2.51018)--(-4.06782,2.5096)--(-4.07046,2.50901)--
> (-4.07311,2.50842)--(-4.07576,2.50783)--(-4.07841,2.50724)--(-4.08107,2.50665)--(-4.08373,2.50606)--(-4.0864,2.50547)--(-4.08907,2.50488)--(-4.09174,2.50428)--(-4.09442,2.50369)--(-4.09709,2.50309)--(-4.09978,2.50249)--(-4.10246,2.5019)--(-4.10515,2.5013)--(-4.10784,2.5007)--(-4.11054,2.5001)--(-4.11324,2.49949)--(-4.11594,2.49889)--(-4.11865,2.49829)--(-4.12136,2.49768)--(-4.12408,2.49708)--(-4.12679,2.49647)--(-4.12951,2.49586)--(-4.13224,2.49526)--(-4.13497,2.49465)--(-4.1377,2.49404)--
> (-4.14043,2.49343)--(-4.14317,2.49281)--(-4.14592,2.4922)--(-4.14866,2.49159)--(-4.15141,2.49097)--(-4.15417,2.49036)--(-4.15692,2.48974)--(-4.15969,2.48912)--(-4.16245,2.4885)--(-4.16522,2.48788)--(-4.16799,2.48726)--(-4.17077,2.48664)--(-4.17355,2.48602)--(-4.17633,2.48539)--(-4.17912,2.48477)--(-4.18191,2.48414)--(-4.1847,2.48351)--(-4.1875,2.48289)--(-4.1903,2.48226)--(-4.19311,2.48163)--(-4.19592,2.481)--(-4.19873,2.48036)--(-4.20155,2.47973)--(-4.20437,2.4791)--(-4.20719,2.47846)--
> (-4.21002,2.47783)--(-4.21285,2.47719)--(-4.21569,2.47655)--(-4.21853,2.47591)--(-4.22137,2.47527)--(-4.22422,2.47463)--(-4.22707,2.47399)--(-4.22993,2.47335)--(-4.23279,2.4727)--(-4.23565,2.47206)--(-4.23852,2.47141)--(-4.24139,2.47076)--(-4.24427,2.47012)--(-4.24714,2.46947)--(-4.25003,2.46882)--(-4.25291,2.46816)--(-4.25581,2.46751)--(-4.2587,2.46686)--(-4.2616,2.4662)--(-4.2645,2.46555)--(-4.26741,2.46489)--(-4.27032,2.46423)--(-4.27324,2.46357)--(-4.27615,2.46291)--(-4.27908,2.46225)--
> (-4.282,2.46159)--(-4.28494,2.46093)--(-4.28787,2.46026)--(-4.29081,2.4596)--(-4.29375,2.45893)--(-4.2967,2.45826)--(-4.29965,2.4576)--(-4.30261,2.45693)--(-4.30557,2.45625)--(-4.30853,2.45558)--(-4.3115,2.45491)--(-4.31447,2.45424)--(-4.31745,2.45356)--(-4.32043,2.45288)--(-4.32342,2.45221)--(-4.3264,2.45153)--(-4.3294,2.45085)--(-4.3324,2.45017)--(-4.3354,2.44949)--(-4.3384,2.4488)--(-4.34141,2.44812)--(-4.34443,2.44743)--(-4.34745,2.44675)--(-4.35047,2.44606)--(-4.3535,2.44537)--
> (-4.35653,2.44468)--(-4.35957,2.44399)--(-4.36261,2.4433)--(-4.36565,2.4426)--(-4.3687,2.44191)--(-4.37175,2.44121)--(-4.37481,2.44052)--(-4.37787,2.43982)--(-4.38094,2.43912)--(-4.38401,2.43842)--(-4.38709,2.43772)--(-4.39017,2.43701)--(-4.39325,2.43631)--(-4.39634,2.4356)--(-4.39943,2.4349)--(-4.40253,2.43419)--(-4.40563,2.43348)--(-4.40874,2.43277)--(-4.41185,2.43206)--(-4.41497,2.43135)--(-4.41809,2.43064)--(-4.42121,2.42992)--(-4.42434,2.42921)--(-4.42748,2.42849)--(-4.43062,2.42777)--
> (-4.43376,2.42705)--(-4.43691,2.42633)--(-4.44006,2.42561)--(-4.44322,2.42489)--(-4.44638,2.42416)--(-4.44954,2.42344)--(-4.45271,2.42271)--(-4.45589,2.42198)--(-4.45907,2.42125)--(-4.46225,2.42052)--(-4.46544,2.41979)--(-4.46864,2.41906)--(-4.47184,2.41832)--(-4.47504,2.41759)--(-4.47825,2.41685)--(-4.48146,2.41611)--(-4.48468,2.41537)--(-4.4879,2.41463)--(-4.49113,2.41389)--(-4.49436,2.41315)--(-4.4976,2.4124)--(-4.50084,2.41166)--(-4.50409,2.41091)--(-4.50734,2.41016)--(-4.5106,2.40941)--
> (-4.51386,2.40866)--(-4.51713,2.40791)--(-4.5204,2.40715)--(-4.52367,2.4064)--(-4.52696,2.40564)--(-4.53024,2.40489)--(-4.53353,2.40413)--(-4.53683,2.40337)--(-4.54013,2.40261)--(-4.54344,2.40184)--(-4.54675,2.40108)--(-4.55006,2.40031)--(-4.55338,2.39955)--(-4.55671,2.39878)--(-4.56004,2.39801)--(-4.56338,2.39724)--(-4.56672,2.39647)--(-4.57007,2.39569)--(-4.57342,2.39492)--(-4.57677,2.39414)--(-4.58014,2.39336)--(-4.5835,2.39259)--(-4.58688,2.39181)--(-4.59025,2.39102)--(-4.59364,2.39024)--
> (-4.59702,2.38946)--(-4.60042,2.38867)--(-4.60381,2.38788)--(-4.60722,2.3871)--(-4.61063,2.38631)--(-4.61404,2.38551)--(-4.61746,2.38472)--(-4.62088,2.38393)--(-4.62431,2.38313)--(-4.62775,2.38233)--(-4.63119,2.38154)--(-4.63464,2.38074)--(-4.63809,2.37994)--(-4.64154,2.37913)--(-4.64501,2.37833)--(-4.64847,2.37752)--(-4.65195,2.37672)--(-4.65543,2.37591)--(-4.65891,2.3751)--(-4.6624,2.37429)--(-4.66589,2.37347)--(-4.66939,2.37266)--(-4.6729,2.37184)--(-4.67641,2.37103)--(-4.67993,2.37021)--
> (-4.68345,2.36939)--(-4.68698,2.36857)--(-4.69051,2.36774)--(-4.69405,2.36692)--(-4.6976,2.36609)--(-4.70115,2.36527)--(-4.7047,2.36444)--(-4.70826,2.36361)--(-4.71183,2.36277)--(-4.71541,2.36194)--(-4.71898,2.36111)--(-4.72257,2.36027)--(-4.72616,2.35943)--(-4.72976,2.35859)--(-4.73336,2.35775)--(-4.73696,2.35691)--(-4.74058,2.35606)--(-4.7442,2.35522)--(-4.74782,2.35437)--(-4.75145,2.35352)--(-4.75509,2.35267)--(-4.75873,2.35182)--(-4.76238,2.35097)--(-4.76604,2.35011)--(-4.7697,2.34926)--
> (-4.77336,2.3484)--(-4.77704,2.34754)--(-4.78071,2.34668)--(-4.7844,2.34581)--(-4.78809,2.34495)--(-4.79178,2.34408)--(-4.79549,2.34321)--(-4.7992,2.34235)--(-4.80291,2.34147)--(-4.80663,2.3406)--(-4.81036,2.33973)--(-4.81409,2.33885)--(-4.81783,2.33797)--(-4.82157,2.3371)--(-4.82533,2.33621)--(-4.82908,2.33533)--(-4.83285,2.33445)--(-4.83662,2.33356)--(-4.84039,2.33268)--(-4.84418,2.33179)--(-4.84796,2.3309)--(-4.85176,2.33)--(-4.85556,2.32911)--(-4.85937,2.32821)--(-4.86318,2.32732)--
> (-4.867,2.32642)--(-4.87083,2.32552)--(-4.87466,2.32462)--(-4.8785,2.32371)--(-4.88235,2.32281)--(-4.8862,2.3219)--(-4.89006,2.32099)--(-4.89393,2.32008)--(-4.8978,2.31917)--(-4.90168,2.31825)--(-4.90556,2.31734)--(-4.90945,2.31642)--(-4.91335,2.3155)--(-4.91726,2.31458)--(-4.92117,2.31365)--(-4.92508,2.31273)--(-4.92901,2.3118)--(-4.93294,2.31087)--(-4.93688,2.30994)--(-4.94082,2.30901)--(-4.94477,2.30808)--(-4.94873,2.30714)--(-4.9527,2.30621)--(-4.95667,2.30527)--(-4.96065,2.30433)--
> (-4.96463,2.30338)--(-4.96863,2.30244)--(-4.97263,2.30149)--(-4.97663,2.30054)--(-4.98064,2.29959)--(-4.98466,2.29864)--(-4.98869,2.29769)--(-4.99273,2.29673)--(-4.99677,2.29578)--(-5.00081,2.29482)--(-5.00487,2.29386)--(-5.00893,2.29289)--(-5.013,2.29193)--(-5.01708,2.29096)--(-5.02116,2.28999)--(-5.02525,2.28902)--(-5.02935,2.28805)--(-5.03345,2.28708)--(-5.03756,2.2861)--(-5.04168,2.28512)--(-5.04581,2.28414)--(-5.04994,2.28316)--(-5.05408,2.28218)--(-5.05823,2.28119)--(-5.06238,2.2802)--
> (-5.06655,2.27921)--(-5.07072,2.27822)--(-5.07489,2.27723)--(-5.07908,2.27623)--(-5.08327,2.27524)--(-5.08747,2.27424)--(-5.09168,2.27324)--(-5.09589,2.27223)--(-5.10012,2.27123)--(-5.10434,2.27022)--(-5.10858,2.26921)--(-5.11283,2.2682)--(-5.11708,2.26719)--(-5.12134,2.26617)--(-5.12561,2.26515)--(-5.12988,2.26414)--(-5.13416,2.26311)--(-5.13846,2.26209)--(-5.14275,2.26107)--(-5.14706,2.26004)--(-5.15137,2.25901)--(-5.1557,2.25798)--(-5.16003,2.25694)--(-5.16436,2.25591)--(-5.16871,2.25487)--
> (-5.17306,2.25383)--(-5.17742,2.25279)--(-5.18179,2.25174)--(-5.18617,2.2507)--(-5.19055,2.24965)--(-5.19495,2.2486)--(-5.19935,2.24755)--(-5.20376,2.24649)--(-5.20817,2.24543)--(-5.2126,2.24438)--(-5.21703,2.24331)--(-5.22147,2.24225)--(-5.22592,2.24119)--(-5.23038,2.24012)--(-5.23485,2.23905)--(-5.23932,2.23798)--(-5.2438,2.2369)--(-5.2483,2.23583)--(-5.2528,2.23475)--(-5.2573,2.23367)--(-5.26182,2.23258)--(-5.26634,2.2315)--(-5.27088,2.23041)--(-5.27542,2.22932)--(-5.27997,2.22823)--
> (-5.28453,2.22713)--(-5.28909,2.22604)--(-5.29367,2.22494)--(-5.29825,2.22384)--(-5.30285,2.22274)--(-5.30745,2.22163)--(-5.31206,2.22052)--(-5.31668,2.21941)--(-5.3213,2.2183)--(-5.32594,2.21718)--(-5.33058,2.21607)--(-5.33524,2.21495)--(-5.3399,2.21383)--(-5.34457,2.2127)--(-5.34925,2.21158)--(-5.35394,2.21045)--(-5.35864,2.20932)--(-5.36335,2.20818)--(-5.36806,2.20705)--(-5.37279,2.20591)--(-5.37752,2.20477)--(-5.38227,2.20362)--(-5.38702,2.20248)--(-5.39178,2.20133)--(-5.39655,2.20018)--
> (-5.40133,2.19903)--(-5.40612,2.19787)--(-5.41092,2.19672)--(-5.41573,2.19555)--(-5.42054,2.19439)--(-5.42537,2.19323)--(-5.4302,2.19206)--(-5.43505,2.19089)--(-5.4399,2.18972)--(-5.44477,2.18854)--(-5.44964,2.18737)--(-5.45452,2.18619)--(-5.45942,2.185)--(-5.46432,2.18382)--(-5.46923,2.18263);
> draw(curve, rgb(0,0,255)+longdashdotted );
> pair point = (-5.46923,2.18263);
> dot(point, rgb(0,0,255));
> pair point = (3.75582,0.332135);
> dot(point, rgb(0,0,255));
> pair point = (3.5365,-1.55948);
> dot(point, rgb(0,0,255));
> path frame = (-7.12823,-3.86232)--(-7.12823,4.06054)--(7.56687,4.06054)--(7.56687,-3.86232)--cycle;
> draw(frame, black);
> clip(frame);
> 
> \end{asy}
> \end{document}

> _______________________________________________
> kde-edu mailing list
> kde-edu at mail.kde.org
> https://mail.kde.org/mailman/listinfo/kde-edu



More information about the kde-edu mailing list